commit 67699bc2ee61173daeee656faeb1843e6df3e749 Author: 刘政 <3443290081@qq.com> Date: Fri Mar 13 09:34:55 2026 +0800 first commit diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..cc38abf --- /dev/null +++ b/.editorconfig @@ -0,0 +1,7 @@ +root = true + +[*] +end_of_line = lf +charset = utf-8 +indent_style = space +indent_size = 2 \ No newline at end of file diff --git a/.env b/.env new file mode 100644 index 0000000..b6d7d05 --- /dev/null +++ b/.env @@ -0,0 +1,12 @@ +# title +VITE_APP_TITLE='重庆电力公司' + +# 本地运行端口号 +VITE_PORT=9848 + +# 启动时自动打开浏览器 +VITE_OPEN=true +# clientId +VITE_APP_CLIENT_ID ="195da9fcce574852b850068771cde034" +# 请求最大超时时间(ms)120s +VITE_APP_HTTP_TIMEOUT=120000 diff --git a/.env.development b/.env.development new file mode 100644 index 0000000..5b0bd00 --- /dev/null +++ b/.env.development @@ -0,0 +1,16 @@ +# 本地环境 +VITE_USER_NODE_ENV=development + +# 公共基础路径 +VITE_PUBLIC_PATH=/ + +# 开发环境接口地址 +VITE_API_URL=http://127.0.0.1:9991/api +## 启用WebSocket连接 +## 若需启用WebSocket,请设置VITE_SOCKET_URL为有效的WebSocket地址 +## 若不设置或留空,WebSocket功能将不会启用。例: +# VITE_SOCKET_URL=ws://127.0.0.1:9993/socket +VITE_SOCKET_URL=ws://127.0.0.1:9993/socket +VITE_APP_CLIENT_ID ="195da9fcce574852b850068771cde034" +# 是否对admin(超管)用户放行前端按钮权限验证,默认放行 +VITE_ADMIN_BYPASS_PERMISSION=true diff --git a/.env.production b/.env.production new file mode 100644 index 0000000..684114a --- /dev/null +++ b/.env.production @@ -0,0 +1,15 @@ +# 线上环境 +VITE_USER_NODE_ENV=production + +# 公共基础路径 +VITE_PUBLIC_PATH=/ + +# 线上环境接口地址 +## 这里的线上环境使用了nginx 反向代理来实现了 api 和 websocket的转发 +## 具体请结合/nginx/default.conf 文件查看使用方式 +VITE_API_URL="/api" +VITE_APP_CLIENT_ID ="195da9fcce574852b850068771cde034" +# 是否对admin(超管)用户放行前端按钮权限验证,默认放行 +VITE_ADMIN_BYPASS_PERMISSION=true +# 是否启用websocket,如不需要请注释 +VITE_SOCKET_URL="/socket" diff --git a/.github/workflows/Docker Sz-Admin CI.yml b/.github/workflows/Docker Sz-Admin CI.yml new file mode 100644 index 0000000..40fc797 --- /dev/null +++ b/.github/workflows/Docker Sz-Admin CI.yml @@ -0,0 +1,139 @@ +name: Docker Sz-Admin CI + +on: + push: + branches: [ "preview" ] + pull_request: + branches: [ "preview" ] + workflow_dispatch: + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + env: + # 项目服务名(容器名) + APP_NAME: sz-admin + # 应用运行环境 + RUNNING_ACTIVE: preview + # 服务监听端口(注意需与 Dockerfile 中 EXPOSE 保持一致) + SERVICE_PORT: 9800 + # 可选:nginx配置目录(挂载到容器的 /etc/nginx/conf.d) + NGINX_CONF_DIR: /home/conf/sz-admin-nginx/conf.d + # 阿里云 Docker 仓库域名 + ACR_DOMAIN: registry.cn-beijing.aliyuncs.com + # 阿里云命名空间(仓库分组) + ACR_ZONE: sz-action + # 镜像版本号(预览环境固定为 latest) + VERSION: latest + # 可选:容器启动脚本存放目录 + SHELL_RUN_DIR: /home/run + # 前端预览环境标识(某些 feature 会被禁用) + VITE_PREVIEW: true + # 可选:docker-compose 目录路径 + DOCKER_COMPOSE_PATH: /home/docker-compose/sz-admin + steps: + # 1. 拉取代码 + - name: Checkout source code + uses: actions/checkout@v4 + + # 2. 配置 Node.js 环境 + - name: Set up Node.js 20.x + uses: actions/setup-node@v4 + with: + node-version: '20' + + # 3. 安装 pnpm 包管理工具 + - name: Install pnpm globally + run: npm install -g pnpm + + # 4. 安装依赖 + - name: Install dependencies + run: pnpm install + + # 5. 构建前端项目 + - name: Build frontend project + env: + VITE_PREVIEW: ${{ env.VITE_PREVIEW }} + run: pnpm run build + + # 6. 安装 sshpass(用于非 GitHub Action ssh 操作,可选) + - name: Install sshpass + run: sudo apt-get update && sudo apt-get install -y sshpass + + # --- 下面内容为docker可选,若你未启用自动 nginx 配置则可忽略 --- + # 检查远程 default.conf 是否存在 + # - name: Check remote default.conf + # id: check-file + # run: | + # file_exists=$(sshpass -p ${{ secrets.REMOTE_PASSWORD }} \ + # ssh -o StrictHostKeyChecking=no \ + # ${{ secrets.REMOTE_USER }}@${{ secrets.REMOTE_HOST }} \ + # "if [ -f ${{ env.NGINX_CONF_DIR }}/default.conf ]; then echo true; else echo false; fi") + # echo "file_exists=$file_exists" >> $GITHUB_ENV + # 上传 default.conf 到远程 + # - name: Upload default.conf if missing + # if: ${{ env.file_exists == 'false' }} + # run: sshpass -p ${{ secrets.REMOTE_PASSWORD }} \ + # scp -o StrictHostKeyChecking=no ./nginx/default.conf \ + # ${{ secrets.REMOTE_USER }}@${{ secrets.REMOTE_HOST }}:${{ env.NGINX_CONF_DIR }} + + # 7. 构建 Docker 镜像 + - name: Build Docker image + run: docker build -t ${{ env.APP_NAME }}:${{ env.VERSION }} . + + # 8. 登录阿里云 ACR 仓库 + - name: Login to Aliyun Container Registry + run: echo "${{ secrets.ACR_PASSWORD }}" | docker login --username=${{ secrets.ACR_USERNAME }} ${{ env.ACR_DOMAIN }} --password-stdin + + # 9. 镜像打标签(推送前命名规范) + - name: Tag Docker image for ACR + run: docker tag ${{ env.APP_NAME }}:${{ env.VERSION }} ${{ env.ACR_DOMAIN }}/${{ env.ACR_ZONE }}/${{ env.APP_NAME }}:${{ env.VERSION }} + + # 10. 推送镜像到 ACR + - name: Push Docker image to ACR + run: docker push ${{ env.ACR_DOMAIN }}/${{ env.ACR_ZONE }}/${{ env.APP_NAME }}:${{ env.VERSION }} + + # 11. (选用) 使用 docker-compose 自动部署(推荐,与 sz-deploy-v3 脚本结合) + - name: Deploy using docker-compose on remote server + uses: appleboy/ssh-action@v1.2.0 + with: + host: ${{ secrets.REMOTE_HOST }} + username: ${{ secrets.REMOTE_USER }} + password: ${{ secrets.REMOTE_PASSWORD }} + script: | + cd ${{ env.DOCKER_COMPOSE_PATH }} + bash upgrade.sh + + # 12. (可选) 直接在远程主机用 docker 启动容器 + # - name: Deploy container on remote server (direct docker) + # uses: appleboy/ssh-action@v1.2.0 + # with: + # host: ${{ secrets.REMOTE_HOST }} + # username: ${{ secrets.REMOTE_USER }} + # password: ${{ secrets.REMOTE_PASSWORD }} + # script: | + # docker pull ${{ env.ACR_DOMAIN }}/${{ env.ACR_ZONE }}/${{ env.APP_NAME }}:${{ env.VERSION }} + # echo "========= 生成容器启动脚本 =========" + # mkdir -p ${{ env.SHELL_RUN_DIR }} + # START_SCRIPT="${{ env.SHELL_RUN_DIR }}/docker_run_${{ env.APP_NAME }}_${{ env.RUNNING_ACTIVE }}.sh" + # cat > $START_SCRIPT <> $GITHUB_ENV + + - name: Upload default.conf if needed + if: ${{ env.file_exists == 'false' }} + run: sshpass -p ${{ secrets.REMOTE_PASSWORD_TEST }} scp -o StrictHostKeyChecking=no ./nginx/default.conf ${{ secrets.REMOTE_USER_TEST }}@${{ secrets.REMOTE_HOST_TEST }}:${{ env.NGINX_CONF_DIR }} + + - name: Build Docker image + run: docker build -t ${{ env.APP_NAME }}:${{ env.VERSION }} . + + - name: Log in to ACR + run: echo "${{ secrets.ACR_PASSWORD }}" | docker login --username=${{ secrets.ACR_USERNAME }} ${{ env.ACR_DOMAIN }} --password-stdin + + - name: Tag Docker image + run: docker tag ${{ env.APP_NAME }}:${{ env.VERSION }} ${{ env.ACR_DOMAIN }}/${{ env.ACR_ZONE }}/${{ env.APP_NAME }}:${{ env.VERSION }} + + - name: Push Docker image to ACR + run: docker push ${{ env.ACR_DOMAIN }}/${{ env.ACR_ZONE }}/${{ env.APP_NAME }}:${{ env.VERSION }} + + - name: Deploy to remote server + uses: appleboy/ssh-action@v1.2.0 + with: + host: ${{ secrets.REMOTE_HOST_TEST }} + username: ${{ secrets.REMOTE_USER_TEST }} + password: ${{ secrets.REMOTE_PASSWORD_TEST }} + script: | + docker pull ${{ env.ACR_DOMAIN }}/${{ env.ACR_ZONE }}/${{ env.APP_NAME }}:${{ env.VERSION }} + + echo "==================== 生成启动命令脚本 ====================" + mkdir -p ${{ env.SHELL_RUN_DIR }} + START_SCRIPT="${{ env.SHELL_RUN_DIR }}/docker_run_${{ env.APP_NAME }}_${{ env.RUNNING_ACTIVE }}-${{ env.VERSION }}.sh" + cat > $START_SCRIPT <" + quoteProps: 'as-needed', + // 在JSX中使用单引号而不是双引号 (true:单引号,false:双引号) + jsxSingleQuote: false, + // 多行时尽可能打印尾随逗号 可选值"" + trailingComma: 'none', + // 在对象,数组括号与文字之间加空格 "{ foo: bar }" (true:有,false:没有) + bracketSpacing: true, + // 将 > 多行元素放在最后一行的末尾,而不是单独放在下一行 (true:放末尾,false:单独一行) + bracketSameLine: false, + // (x) => {} 箭头函数参数只有一个时是否要有小括号 (avoid:省略括号,always:不省略括号) + arrowParens: 'avoid', + // 指定要使用的解析器,不需要写文件开头的 @prettier + requirePragma: false, + // 可以在文件顶部插入一个特殊标记,指定该文件已使用 Prettier 格式化 + insertPragma: false, + // 用于控制文本是否应该被换行以及如何进行换行 + proseWrap: 'preserve', + // 在html中空格是否是敏感的 "css" - 遵守 CSS 显示属性的默认值, "strict" - 空格被认为是敏感的 ,"ignore" - 空格被认为是不敏感的 + htmlWhitespaceSensitivity: 'css', + // 控制在 Vue 单文件组件中 + + diff --git a/nginx/default.conf b/nginx/default.conf new file mode 100644 index 0000000..2e1a2d1 --- /dev/null +++ b/nginx/default.conf @@ -0,0 +1,41 @@ +server { + listen 9800; + listen [::]:9800; + server_name localhost; + access_log /var/log/nginx/default.access.log; + error_log /var/log/nginx/default.error.log; + + location / { + root /usr/share/nginx/sz-admin; + try_files $uri $uri/ /index.html; + index index.html; + } + + location /api { + client_max_body_size 200M; # 设置最大文件上传大小 + proxy_set_header Host $http_host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header REMOTE-HOST $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + # proxy_pass $NGINX_PROXY_PASS; + proxy_pass http://sz-service-admin:9991/api; + } + + # websocket 支持,如不需要请手动注释 + location /socket { + proxy_pass http://sz-service-websocket:9993; # 后端 WebSocket 服务器的地址 + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + proxy_set_header Host $host; + proxy_cache_bypass $http_upgrade; + + proxy_read_timeout 3600s; # 设置为1小时 + proxy_send_timeout 3600s; # 设置为1小时 + } + + error_page 500 502 503 504 /50x.html; + location = /50x.html { + root /usr/share/nginx/sz-admin; + } +} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..236a23c --- /dev/null +++ b/package-lock.json @@ -0,0 +1,18189 @@ +{ + "name": "sz-admin", + "version": "1.3.2-beta", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "sz-admin", + "version": "1.3.2-beta", + "dependencies": { + "@element-plus/icons-vue": "^2.3.2", + "@eslint/js": "^9.39.1", + "@highlightjs/vue-plugin": "^2.1.0", + "@rushstack/eslint-patch": "^1.15.0", + "@vueuse/core": "^10.11.1", + "ace-builds": "^1.43.6", + "animate.css": "^4.1.1", + "axios": "^1.13.2", + "canvg": "^4.0.1", + "element-plus": "^2.11.9", + "eslint-plugin-prettier": "^5.5.4", + "eslint-plugin-vue": "^10.6.2", + "globals": "^16.5.0", + "highlight.js": "^11.11.1", + "html2canvas": "^1.4.1", + "jodit": "^4.7.9", + "lodash.merge": "^4.6.2", + "mitt": "^3.0.1", + "nprogress": "^0.2.0", + "pinia": "^2.3.1", + "pinia-plugin-persistedstate": "^3.2.3", + "screenfull": "^6.0.2", + "sortablejs": "^1.15.6", + "typescript-eslint": "^8.48.0", + "vite-plugin-svg-icons": "^2.0.1", + "vue": "^3.5.25", + "vue-eslint-parser": "^10.2.0", + "vue-i18n": "^9.14.5", + "vue-router": "^4.6.3", + "vue3-ace-editor": "^2.2.4" + }, + "devDependencies": { + "@tsconfig/node18": "^18.2.6", + "@types/lodash.merge": "^4.6.9", + "@types/node": "^18.19.130", + "@types/node-forge": "^1.3.14", + "@types/nprogress": "^0.2.3", + "@types/sortablejs": "^1.15.9", + "@vitejs/plugin-vue": "^6.0.2", + "@vitejs/plugin-vue-jsx": "^5.1.2", + "@vue/eslint-config-prettier": "^8.0.0", + "@vue/eslint-config-typescript": "^12.0.0", + "@vue/tsconfig": "^0.5.1", + "eslint": "^9.39.1", + "less": "^4.6.3", + "node-forge": "^1.3.2", + "npm-run-all2": "^6.2.6", + "prettier": "^3.7.3", + "sass": "~1.87.0", + "typescript": "~5.2.2", + "unocss": "^66.6.6", + "vite": "6.3.4", + "vite-plugin-compression": "^0.5.1", + "vite-plugin-vue-devtools": "^7.7.9", + "vue-tsc": "^2.2.12" + } + }, + "node_modules/@antfu/install-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/@antfu/install-pkg/-/install-pkg-1.1.0.tgz", + "integrity": "sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "package-manager-detector": "^1.3.0", + "tinyexec": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@antfu/utils": { + "version": "0.7.10", + "resolved": "https://registry.npmmirror.com/@antfu/utils/-/utils-0.7.10.tgz", + "integrity": "sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.29.0", + "resolved": "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.29.0.tgz", + "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.28.5", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.29.0", + "resolved": "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.29.0.tgz", + "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.29.0", + "resolved": "https://registry.npmmirror.com/@babel/core/-/core-7.29.0.tgz", + "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helpers": "^7.28.6", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.29.1", + "resolved": "https://registry.npmmirror.com/@babel/generator/-/generator-7.29.1.tgz", + "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.27.3", + "resolved": "https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", + "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.28.6", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.6.tgz", + "integrity": "sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-member-expression-to-functions": "^7.28.5", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/helper-replace-supers": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/traverse": "^7.28.6", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmmirror.com/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.28.5", + "resolved": "https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz", + "integrity": "sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", + "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz", + "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", + "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz", + "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.28.6.tgz", + "integrity": "sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.28.5", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.27.1", + "resolved": "https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", + "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.28.6.tgz", + "integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.29.0", + "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.29.0.tgz", + "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.29.0", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.29.0.tgz", + "integrity": "sha512-CVBVv3VY/XRMxRYq5dwr2DS7/MvqPm23cOCjbwNnVrfOqcWlnefua1uUs0sjdKOGjvPUG633o07uWzJq4oI6dA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/plugin-syntax-decorators": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.28.6.tgz", + "integrity": "sha512-71EYI0ONURHJBL4rSFXnITXqXrrY8q4P0q006DPfN+Rk+ASM+++IBXem/ruokgBZR8YNEWZ8R6B+rCb8VcUTqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.28.6.tgz", + "integrity": "sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.28.6.tgz", + "integrity": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.28.6.tgz", + "integrity": "sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.6.tgz", + "integrity": "sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-syntax-typescript": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.29.0", + "resolved": "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.29.0.tgz", + "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.29.0", + "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.29.0.tgz", + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@ctrl/tinycolor": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-4.2.0.tgz", + "integrity": "sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==", + "license": "MIT", + "engines": { + "node": ">=14" + } + }, + "node_modules/@element-plus/icons-vue": { + "version": "2.3.2", + "resolved": "https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.3.2.tgz", + "integrity": "sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==", + "license": "MIT", + "peerDependencies": { + "vue": "^3.2.0" + } + }, + "node_modules/@emnapi/core": { + "version": "1.8.1", + "resolved": "https://registry.npmmirror.com/@emnapi/core/-/core-1.8.1.tgz", + "integrity": "sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/wasi-threads": "1.1.0", + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.8.1", + "resolved": "https://registry.npmmirror.com/@emnapi/runtime/-/runtime-1.8.1.tgz", + "integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/wasi-threads": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz", + "integrity": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz", + "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.25.12.tgz", + "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz", + "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.25.12.tgz", + "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz", + "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz", + "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz", + "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz", + "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz", + "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz", + "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz", + "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz", + "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz", + "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz", + "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz", + "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz", + "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz", + "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz", + "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz", + "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz", + "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz", + "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz", + "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz", + "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz", + "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz", + "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz", + "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.1", + "resolved": "https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmmirror.com/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.2", + "resolved": "https://registry.npmmirror.com/@eslint/config-array/-/config-array-0.21.2.tgz", + "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.5" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-array/node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/config-array/node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmmirror.com/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmmirror.com/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.5", + "resolved": "https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-3.3.5.tgz", + "integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.14.0", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.1", + "minimatch": "^3.1.5", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmmirror.com/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/js": { + "version": "9.39.4", + "resolved": "https://registry.npmmirror.com/@eslint/js/-/js-9.39.4.tgz", + "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==", + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmmirror.com/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.6.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@floating-ui/core/-/core-1.6.8.tgz", + "integrity": "sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==", + "license": "MIT", + "dependencies": { + "@floating-ui/utils": "^0.2.8" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.6.11", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@floating-ui/dom/-/dom-1.6.11.tgz", + "integrity": "sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==", + "license": "MIT", + "dependencies": { + "@floating-ui/core": "^1.6.0", + "@floating-ui/utils": "^0.2.8" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@floating-ui/utils/-/utils-0.2.8.tgz", + "integrity": "sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==", + "license": "MIT" + }, + "node_modules/@highlightjs/vue-plugin": { + "version": "2.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@highlightjs/vue-plugin/-/vue-plugin-2.1.0.tgz", + "integrity": "sha512-E+bmk4ncca+hBEYRV2a+1aIzIV0VSY/e5ArjpuSN9IO7wBJrzUE2u4ESCwrbQD7sAy+jWQjkV5qCCWgc+pu7CQ==", + "license": "BSD-3-Clause", + "peerDependencies": { + "highlight.js": "^11.0.1", + "vue": "^3" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmmirror.com/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.7", + "resolved": "https://registry.npmmirror.com/@humanfs/node/-/node-0.16.7.tgz", + "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmmirror.com/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@iconify/types": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/@iconify/types/-/types-2.0.0.tgz", + "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@iconify/utils": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/@iconify/utils/-/utils-3.1.0.tgz", + "integrity": "sha512-Zlzem1ZXhI1iHeeERabLNzBHdOa4VhQbqAcOQaMKuTuyZCpwKbC2R4Dd0Zo3g9EAc+Y4fiarO8HIHRAth7+skw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@antfu/install-pkg": "^1.1.0", + "@iconify/types": "^2.0.0", + "mlly": "^1.8.0" + } + }, + "node_modules/@intlify/core-base": { + "version": "9.14.5", + "resolved": "https://registry.npmmirror.com/@intlify/core-base/-/core-base-9.14.5.tgz", + "integrity": "sha512-5ah5FqZG4pOoHjkvs8mjtv+gPKYU0zCISaYNjBNNqYiaITxW8ZtVih3GS/oTOqN8d9/mDLyrjD46GBApNxmlsA==", + "license": "MIT", + "dependencies": { + "@intlify/message-compiler": "9.14.5", + "@intlify/shared": "9.14.5" + }, + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/kazupon" + } + }, + "node_modules/@intlify/message-compiler": { + "version": "9.14.5", + "resolved": "https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.14.5.tgz", + "integrity": "sha512-IHzgEu61/YIpQV5Pc3aRWScDcnFKWvQA9kigcINcCBXN8mbW+vk9SK+lDxA6STzKQsVJxUPg9ACC52pKKo3SVQ==", + "license": "MIT", + "dependencies": { + "@intlify/shared": "9.14.5", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/kazupon" + } + }, + "node_modules/@intlify/shared": { + "version": "9.14.5", + "resolved": "https://registry.npmmirror.com/@intlify/shared/-/shared-9.14.5.tgz", + "integrity": "sha512-9gB+E53BYuAEMhbCAxVgG38EZrk59sxBtv3jSizNL2hEWlgjBjAw1AwpLHtNaeda12pe6W20OGEa0TwuMSRbyQ==", + "license": "MIT", + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/kazupon" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmmirror.com/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@napi-rs/wasm-runtime": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.1.tgz", + "integrity": "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.7.1", + "@emnapi/runtime": "^1.7.1", + "@tybys/wasm-util": "^0.10.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Brooooooklyn" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@oxc-parser/binding-android-arm-eabi": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-android-arm-eabi/-/binding-android-arm-eabi-0.115.0.tgz", + "integrity": "sha512-VoB2rhgoqgYf64d6Qs5emONQW8ASiTc0xp+aUE4JUhxjX+0pE3gblTYDO0upcN5vt9UlBNmUhAwfSifkfre7nw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-android-arm64": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-android-arm64/-/binding-android-arm64-0.115.0.tgz", + "integrity": "sha512-lWRX75u+gqfB4TF3pWCHuvhaeneAmRl2b2qNBcl4S6yJ0HtnT4VXOMEZrq747i4Zby1ZTxj6mtOe678Bg8gRLw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-darwin-arm64": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-darwin-arm64/-/binding-darwin-arm64-0.115.0.tgz", + "integrity": "sha512-ii/oOZjfGY1aszXTy29Z5DRyCEnBOrAXDVCvfdfXFQsOZlbbOa7NMHD7D+06YFe5qdxfmbWAYv4yn6QJi/0d2g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-darwin-x64": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-darwin-x64/-/binding-darwin-x64-0.115.0.tgz", + "integrity": "sha512-R/sW/p8l77wglbjpMcF+h/3rWbp9zk1mRP3U14mxTYIC2k3m+aLBpXXgk2zksqf9qKk5mcc4GIYsuCn9l8TgDg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-freebsd-x64": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-freebsd-x64/-/binding-freebsd-x64-0.115.0.tgz", + "integrity": "sha512-CSJ5ldNm9wIGGkhaIJeGmxRMZbgxThRN+X1ufYQQUNi5jZDV/U3C2QDMywpP93fczNBj961hXtcUPO/oVGq4Pw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-linux-arm-gnueabihf": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-0.115.0.tgz", + "integrity": "sha512-uWFwssE5dHfQ8lH+ktrsD9JA49+Qa0gtxZHUs62z1e91NgGz6O7jefHGI6aygNyKNS45pnnBSDSP/zV977MsOQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-linux-arm-musleabihf": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-0.115.0.tgz", + "integrity": "sha512-fZbqt8y/sKQ+v6bBCuv/mYYFoC0+fZI3mGDDEemmDOhT78+aUs2+4ZMdbd2btlXmnLaScl37r8IRbhnok5Ka9w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-linux-arm64-gnu": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.115.0.tgz", + "integrity": "sha512-1ej/MjuTY9tJEunU/hUPIFmgH5PqgMQoRjNOvOkibtJ3Zqlw/+Lc+HGHDNET8sjbgIkWzdhX+p4J96A5CPdbag==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-linux-arm64-musl": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.115.0.tgz", + "integrity": "sha512-HjsZbJPH9mMd4swJRywVMsDZsJX0hyKb1iNHo5ijRl5yhtbO3lj7ImSrrL1oZ1VEg0te4iKmDGGz/6YPLd1G8w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-linux-ppc64-gnu": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-0.115.0.tgz", + "integrity": "sha512-zhhePoBrd7kQx3oClX/W6NldsuCbuMqaN9rRsY+6/WoorAb4j490PG/FjqgAXscWp2uSW2WV9L+ksn0wHrvsrg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-linux-riscv64-gnu": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-0.115.0.tgz", + "integrity": "sha512-t/IRojvUE9XrKu+/H1b8YINug+7Q6FLls5rsm2lxB5mnS8GN/eYAYrPgHkcg9/1SueRDSzGpDYu3lGWTObk1zw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-linux-riscv64-musl": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-0.115.0.tgz", + "integrity": "sha512-79jBHSSh/YpQRAmvYoaCfpyToRbJ/HBrdB7hxK2ku2JMehjopTVo+xMJss/RV7/ZYqeezgjvKDQzapJbgcjVZA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-linux-s390x-gnu": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-0.115.0.tgz", + "integrity": "sha512-nA1TpxkhNTIOMMyiSSsa7XIVJVoOU/SsVrHIz3gHvWweB5PHCQfO7w+Lb2EP0lBWokv7HtA/KbF7aLDoXzmuMw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-linux-x64-gnu": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.115.0.tgz", + "integrity": "sha512-9iVX789DoC3SaOOG+X6NcF/tVChgLp2vcHffzOC2/Z1JTPlz6bMG2ogvcW6/9s0BG2qvhNQImd+gbWYeQbOwVw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-linux-x64-musl": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-x64-musl/-/binding-linux-x64-musl-0.115.0.tgz", + "integrity": "sha512-RmQmk+mjCB0nMNfEYhaCxwofLo1Z95ebHw1AGvRiWGCd4zhCNOyskgCbMogIcQzSB3SuEKWgkssyaiQYVAA4hQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-openharmony-arm64": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-openharmony-arm64/-/binding-openharmony-arm64-0.115.0.tgz", + "integrity": "sha512-viigraWWQhhDvX5aGq+wrQq58k00Xq3MHz/0R4AFMxGlZ8ogNonpEfNc73Q5Ly87Z6sU9BvxEdG0dnYTfVnmew==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-wasm32-wasi": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-wasm32-wasi/-/binding-wasm32-wasi-0.115.0.tgz", + "integrity": "sha512-IzGCrMwXhpb4kTXy/8lnqqqwjI7eOvy+r9AhVw+hsr8t1ecBBEHprcNy0aKatFHN6hsX7UMHHQmBAQjVvL/p1A==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@napi-rs/wasm-runtime": "^1.1.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@oxc-parser/binding-win32-arm64-msvc": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.115.0.tgz", + "integrity": "sha512-/ym+Absk/TLFvbhh3se9XYuI1D7BrUVHw4RaG/2dmWKgBenrZHaJsgnRb7NJtaOyjEOLIPtULx1wDdVL0SX2eg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-win32-ia32-msvc": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-0.115.0.tgz", + "integrity": "sha512-AQSZjIR+b+Te7uaO/hGTMjT8/oxlYrvKrOTi4KTHF/O6osjHEatUQ3y6ZW2+8+lJxy20zIcGz6iQFmFq/qDKkg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-parser/binding-win32-x64-msvc": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.115.0.tgz", + "integrity": "sha512-oxUl82N+fIO9jIaXPph8SPPHQXrA08BHokBBJW8ct9F/x6o6bZE6eUAhUtWajbtvFhL8UYcCWRMba+kww6MBlA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@oxc-project/types": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-project/types/-/types-0.115.0.tgz", + "integrity": "sha512-4n91DKnebUS4yjUHl2g3/b2T+IUdCfmoZGhmwsovZCDaJSs+QkVAM+0AqqTxHSsHfeiMuueT75cZaZcT/m0pSw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/Boshen" + } + }, + "node_modules/@parcel/watcher": { + "version": "2.4.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher/-/watcher-2.4.1.tgz", + "integrity": "sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.4.1", + "@parcel/watcher-darwin-arm64": "2.4.1", + "@parcel/watcher-darwin-x64": "2.4.1", + "@parcel/watcher-freebsd-x64": "2.4.1", + "@parcel/watcher-linux-arm-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-musl": "2.4.1", + "@parcel/watcher-linux-x64-glibc": "2.4.1", + "@parcel/watcher-linux-x64-musl": "2.4.1", + "@parcel/watcher-win32-arm64": "2.4.1", + "@parcel/watcher-win32-ia32": "2.4.1", + "@parcel/watcher-win32-x64": "2.4.1" + } + }, + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.4.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz", + "integrity": "sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@pkgr/core": { + "version": "0.2.9", + "resolved": "https://registry.npmmirror.com/@pkgr/core/-/core-0.2.9.tgz", + "integrity": "sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/pkgr" + } + }, + "node_modules/@polka/url": { + "version": "1.0.0-next.29", + "resolved": "https://registry.npmmirror.com/@polka/url/-/url-1.0.0-next.29.tgz", + "integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==", + "dev": true, + "license": "MIT" + }, + "node_modules/@popperjs/core": { + "name": "@sxzz/popperjs-es", + "version": "2.11.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz", + "integrity": "sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@quansync/fs": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/@quansync/fs/-/fs-1.0.0.tgz", + "integrity": "sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "quansync": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sxzz" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-rc.2", + "resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.2.tgz", + "integrity": "sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/pluginutils": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-5.3.0.tgz", + "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/pluginutils/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz", + "integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz", + "integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz", + "integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz", + "integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz", + "integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz", + "integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz", + "integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz", + "integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz", + "integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz", + "integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz", + "integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz", + "integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz", + "integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz", + "integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz", + "integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz", + "integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz", + "integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz", + "integrity": "sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz", + "integrity": "sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz", + "integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz", + "integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz", + "integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz", + "integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz", + "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz", + "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.16.1", + "resolved": "https://registry.npmmirror.com/@rushstack/eslint-patch/-/eslint-patch-1.16.1.tgz", + "integrity": "sha512-TvZbIpeKqGQQ7X0zSCvPH9riMSFQFSggnfBjFZ1mEoILW+UuXCKwOoPcgjMwiUtRqFZ8jWhPJc4um14vC6I4ag==", + "license": "MIT" + }, + "node_modules/@sec-ant/readable-stream": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz", + "integrity": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@sindresorhus/merge-streams": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz", + "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "license": "ISC", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@tsconfig/node18": { + "version": "18.2.6", + "resolved": "https://registry.npmmirror.com/@tsconfig/node18/-/node18-18.2.6.tgz", + "integrity": "sha512-eAWQzAjPj18tKnDzmWstz4OyWewLUNBm9tdoN9LayzoboRktYx3Enk1ZXPmThj55L7c4VWYq/Bzq0A51znZfhw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tybys/wasm-util": { + "version": "0.10.1", + "resolved": "https://registry.npmmirror.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz", + "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/lodash": { + "version": "4.17.24", + "resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.17.24.tgz", + "integrity": "sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==", + "license": "MIT" + }, + "node_modules/@types/lodash-es": { + "version": "4.17.12", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/lodash-es/-/lodash-es-4.17.12.tgz", + "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==", + "license": "MIT", + "dependencies": { + "@types/lodash": "*" + } + }, + "node_modules/@types/lodash.merge": { + "version": "4.6.9", + "resolved": "https://registry.npmmirror.com/@types/lodash.merge/-/lodash.merge-4.6.9.tgz", + "integrity": "sha512-23sHDPmzd59kUgWyKGiOMO2Qb9YtqRO/x4IhkgNUiPQ1+5MUVqi6bCZeq9nBJ17msjIMbEIO5u+XW4Kz6aGUhQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/lodash": "*" + } + }, + "node_modules/@types/node": { + "version": "18.19.130", + "resolved": "https://registry.npmmirror.com/@types/node/-/node-18.19.130.tgz", + "integrity": "sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg==", + "license": "MIT", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/node-forge": { + "version": "1.3.14", + "resolved": "https://registry.npmmirror.com/@types/node-forge/-/node-forge-1.3.14.tgz", + "integrity": "sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/nprogress": { + "version": "0.2.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/nprogress/-/nprogress-0.2.3.tgz", + "integrity": "sha512-k7kRA033QNtC+gLc4VPlfnue58CM1iQLgn1IMAU8VPHGOj7oIHPp9UlhedEnD/Gl8evoCjwkZjlBORtZ3JByUA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/raf": { + "version": "3.4.3", + "resolved": "https://registry.npmmirror.com/@types/raf/-/raf-3.4.3.tgz", + "integrity": "sha512-c4YAvMedbPZ5tEyxzQdMoOhhJ4RD3rngZIdwC2/qDN3d7JpEhB6fiBRKVY1lg5B7Wk+uPBjn5f39j1/2MY1oOw==", + "license": "MIT" + }, + "node_modules/@types/semver": { + "version": "7.5.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/sortablejs": { + "version": "1.15.9", + "resolved": "https://registry.npmmirror.com/@types/sortablejs/-/sortablejs-1.15.9.tgz", + "integrity": "sha512-7HP+rZGE2p886PKV9c9OJzLBI6BBJu1O7lJGYnPyG3fS4/duUCcngkNCjsLwIMV+WMqANe3tt4irrXHSIe68OQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/svgo": { + "version": "2.6.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/svgo/-/svgo-2.6.4.tgz", + "integrity": "sha512-l4cmyPEckf8moNYHdJ+4wkHvFxjyW6ulm9l4YGaOxeyBWPhBOT0gvni1InpFPdzx1dKf/2s62qGITwxNWnPQng==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/web-bluetooth": { + "version": "0.0.20", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz", + "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==", + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "6.21.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz", + "integrity": "sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.5.1", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/type-utils": "6.21.0", + "@typescript-eslint/utils": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.4", + "natural-compare": "^1.4.0", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "6.21.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@typescript-eslint/parser/-/parser-6.21.0.tgz", + "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/project-service/-/project-service-8.57.0.tgz", + "integrity": "sha512-pR+dK0BlxCLxtWfaKQWtYr7MhKmzqZxuii+ZjuFlZlIGRZm22HnXFqa2eY+90MUz8/i80YJmzFGDUsi8dMOV5w==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.57.0", + "@typescript-eslint/types": "^8.57.0", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/project-service/node_modules/@typescript-eslint/types": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/types/-/types-8.57.0.tgz", + "integrity": "sha512-dTLI8PEXhjUC7B9Kre+u0XznO696BhXcTlOn0/6kf1fHaQW8+VjJAVHJ3eTI14ZapTxdkOmc80HblPQLaEeJdg==", + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "6.21.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz", + "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.57.0.tgz", + "integrity": "sha512-LtXRihc5ytjJIQEH+xqjB0+YgsV4/tW35XKX3GTZHpWtcC8SPkT/d4tqdf1cKtesryHm2bgp6l555NYcT2NLvA==", + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "6.21.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz", + "integrity": "sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/utils": "6.21.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "6.21.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@typescript-eslint/types/-/types-6.21.0.tgz", + "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "6.21.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz", + "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "9.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "6.21.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@typescript-eslint/utils/-/utils-6.21.0.tgz", + "integrity": "sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "semver": "^7.5.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "6.21.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz", + "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@unocss/cli": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/cli/-/cli-66.6.6.tgz", + "integrity": "sha512-78SY8j4hAVelK+vP/adsDGaSjEITasYLFECJLHWxUJSzK+G9UIc5wtL/u4jA+zKvwVkHcDvbkcO5K6wwwpAixg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/remapping": "^2.3.5", + "@unocss/config": "66.6.6", + "@unocss/core": "66.6.6", + "@unocss/preset-wind3": "66.6.6", + "@unocss/preset-wind4": "66.6.6", + "@unocss/transformer-directives": "66.6.6", + "cac": "^6.7.14", + "chokidar": "^5.0.0", + "colorette": "^2.0.20", + "consola": "^3.4.2", + "magic-string": "^0.30.21", + "pathe": "^2.0.3", + "perfect-debounce": "^2.1.0", + "tinyglobby": "^0.2.15", + "unplugin-utils": "^0.3.1" + }, + "bin": { + "unocss": "bin/unocss.mjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/cli/node_modules/chokidar": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-5.0.0.tgz", + "integrity": "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==", + "dev": true, + "license": "MIT", + "dependencies": { + "readdirp": "^5.0.0" + }, + "engines": { + "node": ">= 20.19.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@unocss/cli/node_modules/pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@unocss/cli/node_modules/perfect-debounce": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-2.1.0.tgz", + "integrity": "sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==", + "dev": true, + "license": "MIT" + }, + "node_modules/@unocss/cli/node_modules/readdirp": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-5.0.0.tgz", + "integrity": "sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 20.19.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@unocss/config": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/config/-/config-66.6.6.tgz", + "integrity": "sha512-menlnkqAFX/4wR2aandY8hSqrt01JE+rOzvtQxWaBt8kf1du62b0sS72FE5Z40n6HlEsEbF91N9FCfhnzG6i6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/core": "66.6.6", + "colorette": "^2.0.20", + "consola": "^3.4.2", + "unconfig": "^7.5.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/core": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/core/-/core-66.6.6.tgz", + "integrity": "sha512-Sbbx0ZQqmV8K2lg8E+z9MJzWb1MgRtJnvqzxDIrNuBjXasKhbcFt5wEMBtEZJOr63Z4ck0xThhZK53HmYT2jmg==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/extractor-arbitrary-variants": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/extractor-arbitrary-variants/-/extractor-arbitrary-variants-66.6.6.tgz", + "integrity": "sha512-uMzekF2miZRUwSZGvy3yYQiBAcSAs9LiXK8e3NjldxEw8xcRDWgTErxgStRoBeAD6UyzDcg/Cvwtf2guMbtR+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/core": "66.6.6" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/inspector": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/inspector/-/inspector-66.6.6.tgz", + "integrity": "sha512-CpXIsqHwxCXJtUjUz6S29diHCIA+EJ1u5WML/6m2YPI4ObgWAVKrExy09inSg2icS52lFkWWdWQSeqc9kl5W6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/core": "66.6.6", + "@unocss/rule-utils": "66.6.6", + "colorette": "^2.0.20", + "gzip-size": "^6.0.0", + "sirv": "^3.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/preset-attributify": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-attributify/-/preset-attributify-66.6.6.tgz", + "integrity": "sha512-3H12UI1rBt60PQy+S4IEeFYWu1/WQFuc2yhJ5mu/RCvX5/qwlIGanBpuh+xzTPXU1fWBlZN68yyO9uWOQgTqZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/core": "66.6.6" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/preset-icons": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-icons/-/preset-icons-66.6.6.tgz", + "integrity": "sha512-HfIEEqf3jyKexOB2Sux556n0NkPoUftb2H4+Cf7prJvKHopMkZ/OUkXjwvUlxt1e5UpAEaIa0A2Ir7+ApxXoGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@iconify/utils": "^3.1.0", + "@unocss/core": "66.6.6", + "ofetch": "^1.5.1" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/preset-mini": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-mini/-/preset-mini-66.6.6.tgz", + "integrity": "sha512-k+/95PKMPOK57cJcSmz34VkIFem8BlujRRx6/L0Yusw7vLJMh98k0rPhC5s+NomZ/d9ZPgbNylskLhItJlak3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/core": "66.6.6", + "@unocss/extractor-arbitrary-variants": "66.6.6", + "@unocss/rule-utils": "66.6.6" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/preset-tagify": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-tagify/-/preset-tagify-66.6.6.tgz", + "integrity": "sha512-KgBXYPYS0g4TVC3NLiIB78YIqUlvDLanz1EHIDo34rOTUfMgY8Uf5VuDJAzMu4Sc0LiwwBJbk6nIG9/Zm7ufWg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/core": "66.6.6" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/preset-typography": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-typography/-/preset-typography-66.6.6.tgz", + "integrity": "sha512-SM1km5nqt15z4sTabfOobSC633I5Ol5nnme6JFTra4wiyCUNs+Cg31nJ6jnopWDUT4SEAXqfUH7jKSSoCnI6ZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/core": "66.6.6", + "@unocss/rule-utils": "66.6.6" + } + }, + "node_modules/@unocss/preset-uno": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-uno/-/preset-uno-66.6.6.tgz", + "integrity": "sha512-40PcBDtlhW7QP7e/WOxC684IhN5T1dXvj1dgx9ZzK+8lEDGjcX7bN2noW4aSenzSrHymeSsMrL/0ltL4ED/5Zw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/core": "66.6.6", + "@unocss/preset-wind3": "66.6.6" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/preset-web-fonts": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-web-fonts/-/preset-web-fonts-66.6.6.tgz", + "integrity": "sha512-5ikwgrJB8VPzKd0bqgGNgYUGix90KFnVtKJPjWTP5qsv3+ZtZnea1rRbAFl8i2t52hg35msNBsQo+40IC3xB6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/core": "66.6.6", + "ofetch": "^1.5.1" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/preset-wind": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-wind/-/preset-wind-66.6.6.tgz", + "integrity": "sha512-TMy3lZ35FP/4QqDHOLWZmV+RoOGWUDqnDEOTjOKI1CQARGta0ppUmq+IZMuI1ZJLuOa4OZ9V6SfnwMXwRLgXmw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/core": "66.6.6", + "@unocss/preset-wind3": "66.6.6" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/preset-wind3": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-wind3/-/preset-wind3-66.6.6.tgz", + "integrity": "sha512-rk6gPPIQ7z2DVucOqp7XZ4vGpKAuzBV1vtUDvDh5WscxzO/QlqaeTfTALk5YgGpmLaF4+ns6FrTgLjV+wHgHuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/core": "66.6.6", + "@unocss/preset-mini": "66.6.6", + "@unocss/rule-utils": "66.6.6" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/preset-wind4": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-wind4/-/preset-wind4-66.6.6.tgz", + "integrity": "sha512-caTDM9rZSlp4tyPWWAnwMvQr2PXq53LsEYwd3N8zj0ou2hcsqptJvF+mFvyhvGF66x26wWJr/FwuUEhh7qycaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/core": "66.6.6", + "@unocss/extractor-arbitrary-variants": "66.6.6", + "@unocss/rule-utils": "66.6.6" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/rule-utils": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/rule-utils/-/rule-utils-66.6.6.tgz", + "integrity": "sha512-krWtQKGshOaqQMuxeGq1NOA8NL35VdpYlmQEWOe39BY6TACT51bgQFu40MRfsAIMZZtoGS2YYTrnHojgR92omw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/core": "^66.6.6", + "magic-string": "^0.30.21" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/transformer-attributify-jsx": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/transformer-attributify-jsx/-/transformer-attributify-jsx-66.6.6.tgz", + "integrity": "sha512-NnDchmN2EeFLy4lfVqDgNe9j1+w2RLL2L9zKECXs5g6rDVfeeEK6FNgxSq3XnPcKltjNCy1pF4MaDOROG7r8yA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/core": "66.6.6", + "oxc-parser": "^0.115.0", + "oxc-walker": "^0.7.0" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/transformer-compile-class": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/transformer-compile-class/-/transformer-compile-class-66.6.6.tgz", + "integrity": "sha512-KKssJxU8fZ9x84yznIirbtta2sB0LN/3lm0bp+Wl1298HITaNiVeG2n26iStQ3N7r240xRN2RarxncSVCMFwWw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/core": "66.6.6" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/transformer-directives": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/transformer-directives/-/transformer-directives-66.6.6.tgz", + "integrity": "sha512-CReFTcBfMtKkRvzIqxL20VptWt5C1Om27dwoKzyVFBXv0jzViWysbu0y0AQg3bsgD4cFqndFyAGyeL84j0nbKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/core": "66.6.6", + "@unocss/rule-utils": "66.6.6", + "css-tree": "^3.1.0" + } + }, + "node_modules/@unocss/transformer-directives/node_modules/css-tree": { + "version": "3.2.1", + "resolved": "https://registry.npmmirror.com/css-tree/-/css-tree-3.2.1.tgz", + "integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "mdn-data": "2.27.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + } + }, + "node_modules/@unocss/transformer-directives/node_modules/mdn-data": { + "version": "2.27.1", + "resolved": "https://registry.npmmirror.com/mdn-data/-/mdn-data-2.27.1.tgz", + "integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/@unocss/transformer-variant-group": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/transformer-variant-group/-/transformer-variant-group-66.6.6.tgz", + "integrity": "sha512-j4L/0Tw6AdMVB2dDnuBlDbevyL1/0CAk88a77VF/VjgEIBwB9VXsCCUsxz+2Dohcl7N2GMm7+kpaWA6qt2PSaA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/core": "66.6.6" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/vite": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/vite/-/vite-66.6.6.tgz", + "integrity": "sha512-DgG7KcUUMtoDhPOlFf2l4dR+66xZ23SdZvTYpikk5nZfLCzZd62vedutD7x0bTR6VpK2YRq39B+F+Z6TktNY/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/remapping": "^2.3.5", + "@unocss/config": "66.6.6", + "@unocss/core": "66.6.6", + "@unocss/inspector": "66.6.6", + "chokidar": "^5.0.0", + "magic-string": "^0.30.21", + "pathe": "^2.0.3", + "tinyglobby": "^0.2.15", + "unplugin-utils": "^0.3.1" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0 || ^8.0.0-0" + } + }, + "node_modules/@unocss/vite/node_modules/chokidar": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-5.0.0.tgz", + "integrity": "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==", + "dev": true, + "license": "MIT", + "dependencies": { + "readdirp": "^5.0.0" + }, + "engines": { + "node": ">= 20.19.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@unocss/vite/node_modules/pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@unocss/vite/node_modules/readdirp": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-5.0.0.tgz", + "integrity": "sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 20.19.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@vitejs/plugin-vue": { + "version": "6.0.4", + "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-6.0.4.tgz", + "integrity": "sha512-uM5iXipgYIn13UUQCZNdWkYk+sysBeA97d5mHsAoAt1u/wpN3+zxOmsVJWosuzX+IMGRzeYUNytztrYznboIkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rolldown/pluginutils": "1.0.0-rc.2" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "peerDependencies": { + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", + "vue": "^3.2.25" + } + }, + "node_modules/@vitejs/plugin-vue-jsx": { + "version": "5.1.4", + "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-5.1.4.tgz", + "integrity": "sha512-70LmoVk9riR7qc4W2CpjsbNMWTPnuZb9dpFKX1emru0yP57nsc9k8nhLA6U93ngQapv5VDIUq2JatNfLbBIkrA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.29.0", + "@babel/plugin-syntax-typescript": "^7.28.6", + "@babel/plugin-transform-typescript": "^7.28.6", + "@rolldown/pluginutils": "^1.0.0-rc.2", + "@vue/babel-plugin-jsx": "^2.0.1" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "peerDependencies": { + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", + "vue": "^3.0.0" + } + }, + "node_modules/@volar/language-core": { + "version": "2.4.15", + "resolved": "https://registry.npmmirror.com/@volar/language-core/-/language-core-2.4.15.tgz", + "integrity": "sha512-3VHw+QZU0ZG9IuQmzT68IyN4hZNd9GchGPhbD9+pa8CVv7rnoOZwo7T8weIbrRmihqy3ATpdfXFnqRrfPVK6CA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/source-map": "2.4.15" + } + }, + "node_modules/@volar/source-map": { + "version": "2.4.15", + "resolved": "https://registry.npmmirror.com/@volar/source-map/-/source-map-2.4.15.tgz", + "integrity": "sha512-CPbMWlUN6hVZJYGcU/GSoHu4EnCHiLaXI9n8c9la6RaI9W5JHX+NqG+GSQcB0JdC2FIBLdZJwGsfKyBB71VlTg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@volar/typescript": { + "version": "2.4.15", + "resolved": "https://registry.npmmirror.com/@volar/typescript/-/typescript-2.4.15.tgz", + "integrity": "sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/language-core": "2.4.15", + "path-browserify": "^1.0.1", + "vscode-uri": "^3.0.8" + } + }, + "node_modules/@vue/babel-helper-vue-transform-on": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-2.0.1.tgz", + "integrity": "sha512-uZ66EaFbnnZSYqYEyplWvn46GhZ1KuYSThdT68p+am7MgBNbQ3hphTL9L+xSIsWkdktwhPYLwPgVWqo96jDdRA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@vue/babel-plugin-jsx": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-2.0.1.tgz", + "integrity": "sha512-a8CaLQjD/s4PVdhrLD/zT574ZNPnZBOY+IhdtKWRB4HRZ0I2tXBi5ne7d9eCfaYwp5gU5+4KIyFTV1W1YL9xZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-syntax-jsx": "^7.27.1", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.4", + "@babel/types": "^7.28.4", + "@vue/babel-helper-vue-transform-on": "2.0.1", + "@vue/babel-plugin-resolve-type": "2.0.1", + "@vue/shared": "^3.5.22" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + } + } + }, + "node_modules/@vue/babel-plugin-resolve-type": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-2.0.1.tgz", + "integrity": "sha512-ybwgIuRGRRBhOU37GImDoWQoz+TlSqap65qVI6iwg/J7FfLTLmMf97TS7xQH9I7Qtr/gp161kYVdhr1ZMraSYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/parser": "^7.28.4", + "@vue/compiler-sfc": "^3.5.22" + }, + "funding": { + "url": "https://github.com/sponsors/sxzz" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.30.tgz", + "integrity": "sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.0", + "@vue/shared": "3.5.30", + "entities": "^7.0.1", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.1" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.30.tgz", + "integrity": "sha512-eCFYESUEVYHhiMuK4SQTldO3RYxyMR/UQL4KdGD1Yrkfdx4m/HYuZ9jSfPdA+nWJY34VWndiYdW/wZXyiPEB9g==", + "license": "MIT", + "dependencies": { + "@vue/compiler-core": "3.5.30", + "@vue/shared": "3.5.30" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.30.tgz", + "integrity": "sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.0", + "@vue/compiler-core": "3.5.30", + "@vue/compiler-dom": "3.5.30", + "@vue/compiler-ssr": "3.5.30", + "@vue/shared": "3.5.30", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.21", + "postcss": "^8.5.8", + "source-map-js": "^1.2.1" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.30.tgz", + "integrity": "sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==", + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.5.30", + "@vue/shared": "3.5.30" + } + }, + "node_modules/@vue/compiler-vue2": { + "version": "2.7.16", + "resolved": "https://registry.npmmirror.com/@vue/compiler-vue2/-/compiler-vue2-2.7.16.tgz", + "integrity": "sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==", + "dev": true, + "license": "MIT", + "dependencies": { + "de-indent": "^1.0.2", + "he": "^1.2.0" + } + }, + "node_modules/@vue/devtools-api": { + "version": "6.6.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vue/devtools-api/-/devtools-api-6.6.4.tgz", + "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==", + "license": "MIT" + }, + "node_modules/@vue/devtools-core": { + "version": "7.7.9", + "resolved": "https://registry.npmmirror.com/@vue/devtools-core/-/devtools-core-7.7.9.tgz", + "integrity": "sha512-48jrBSwG4GVQRvVeeXn9p9+dlx+ISgasM7SxZZKczseohB0cBz+ITKr4YbLWjmJdy45UHL7UMPlR4Y0CWTRcSQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/devtools-kit": "^7.7.9", + "@vue/devtools-shared": "^7.7.9", + "mitt": "^3.0.1", + "nanoid": "^5.1.0", + "pathe": "^2.0.3", + "vite-hot-client": "^2.0.4" + }, + "peerDependencies": { + "vue": "^3.0.0" + } + }, + "node_modules/@vue/devtools-core/node_modules/nanoid": { + "version": "5.1.6", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-5.1.6.tgz", + "integrity": "sha512-c7+7RQ+dMB5dPwwCp4ee1/iV/q2P6aK1mTZcfr1BTuVlyW9hJYiMPybJCcnBlQtuSmTIWNeazm/zqNoZSSElBg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^18 || >=20" + } + }, + "node_modules/@vue/devtools-core/node_modules/pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@vue/devtools-kit": { + "version": "7.7.9", + "resolved": "https://registry.npmmirror.com/@vue/devtools-kit/-/devtools-kit-7.7.9.tgz", + "integrity": "sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/devtools-shared": "^7.7.9", + "birpc": "^2.3.0", + "hookable": "^5.5.3", + "mitt": "^3.0.1", + "perfect-debounce": "^1.0.0", + "speakingurl": "^14.0.1", + "superjson": "^2.2.2" + } + }, + "node_modules/@vue/devtools-shared": { + "version": "7.7.9", + "resolved": "https://registry.npmmirror.com/@vue/devtools-shared/-/devtools-shared-7.7.9.tgz", + "integrity": "sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==", + "dev": true, + "license": "MIT", + "dependencies": { + "rfdc": "^1.4.1" + } + }, + "node_modules/@vue/eslint-config-prettier": { + "version": "8.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vue/eslint-config-prettier/-/eslint-config-prettier-8.0.0.tgz", + "integrity": "sha512-55dPqtC4PM/yBjhAr+yEw6+7KzzdkBuLmnhBrDfp4I48+wy+Giqqj9yUr5T2uD/BkBROjjmqnLZmXRdOx/VtQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-config-prettier": "^8.8.0", + "eslint-plugin-prettier": "^5.0.0" + }, + "peerDependencies": { + "eslint": ">= 8.0.0", + "prettier": ">= 3.0.0" + } + }, + "node_modules/@vue/eslint-config-typescript": { + "version": "12.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vue/eslint-config-typescript/-/eslint-config-typescript-12.0.0.tgz", + "integrity": "sha512-StxLFet2Qe97T8+7L8pGlhYBBr8Eg05LPuTDVopQV6il+SK6qqom59BA/rcFipUef2jD8P2X44Vd8tMFytfvlg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "^6.7.0", + "@typescript-eslint/parser": "^6.7.0", + "vue-eslint-parser": "^9.3.1" + }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0", + "eslint-plugin-vue": "^9.0.0", + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@vue/eslint-config-typescript/node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@vue/eslint-config-typescript/node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmmirror.com/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@vue/eslint-config-typescript/node_modules/semver": { + "version": "7.7.4", + "resolved": "https://registry.npmmirror.com/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@vue/eslint-config-typescript/node_modules/vue-eslint-parser": { + "version": "9.4.3", + "resolved": "https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-9.4.3.tgz", + "integrity": "sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4", + "eslint-scope": "^7.1.1", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.3.1", + "esquery": "^1.4.0", + "lodash": "^4.17.21", + "semver": "^7.3.6" + }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=6.0.0" + } + }, + "node_modules/@vue/language-core": { + "version": "2.2.12", + "resolved": "https://registry.npmmirror.com/@vue/language-core/-/language-core-2.2.12.tgz", + "integrity": "sha512-IsGljWbKGU1MZpBPN+BvPAdr55YPkj2nB/TBNGNC32Vy2qLG25DYu/NBN2vNtZqdRbTRjaoYrahLrToim2NanA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/language-core": "2.4.15", + "@vue/compiler-dom": "^3.5.0", + "@vue/compiler-vue2": "^2.7.16", + "@vue/shared": "^3.5.0", + "alien-signals": "^1.0.3", + "minimatch": "^9.0.3", + "muggle-string": "^0.4.1", + "path-browserify": "^1.0.1" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@vue/reactivity": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.30.tgz", + "integrity": "sha512-179YNgKATuwj9gB+66snskRDOitDiuOZqkYia7mHKJaidOMo/WJxHKF8DuGc4V4XbYTJANlfEKb0yxTQotnx4Q==", + "license": "MIT", + "dependencies": { + "@vue/shared": "3.5.30" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.30.tgz", + "integrity": "sha512-e0Z+8PQsUTdwV8TtEsLzUM7SzC7lQwYKePydb7K2ZnmS6jjND+WJXkmmfh/swYzRyfP1EY3fpdesyYoymCzYfg==", + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.5.30", + "@vue/shared": "3.5.30" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.30.tgz", + "integrity": "sha512-2UIGakjU4WSQ0T4iwDEW0W7vQj6n7AFn7taqZ9Cvm0Q/RA2FFOziLESrDL4GmtI1wV3jXg5nMoJSYO66egDUBw==", + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.5.30", + "@vue/runtime-core": "3.5.30", + "@vue/shared": "3.5.30", + "csstype": "^3.2.3" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.30.tgz", + "integrity": "sha512-v+R34icapydRwbZRD0sXwtHqrQJv38JuMB4JxbOxd8NEpGLny7cncMp53W9UH/zo4j8eDHjQ1dEJXwzFQknjtQ==", + "license": "MIT", + "dependencies": { + "@vue/compiler-ssr": "3.5.30", + "@vue/shared": "3.5.30" + }, + "peerDependencies": { + "vue": "3.5.30" + } + }, + "node_modules/@vue/shared": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.30.tgz", + "integrity": "sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==", + "license": "MIT" + }, + "node_modules/@vue/tsconfig": { + "version": "0.5.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vue/tsconfig/-/tsconfig-0.5.1.tgz", + "integrity": "sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@vueuse/core": { + "version": "10.11.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vueuse/core/-/core-10.11.1.tgz", + "integrity": "sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==", + "license": "MIT", + "dependencies": { + "@types/web-bluetooth": "^0.0.20", + "@vueuse/metadata": "10.11.1", + "@vueuse/shared": "10.11.1", + "vue-demi": ">=0.14.8" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/core/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, + "node_modules/@vueuse/metadata": { + "version": "10.11.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vueuse/metadata/-/metadata-10.11.1.tgz", + "integrity": "sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/shared": { + "version": "10.11.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vueuse/shared/-/shared-10.11.1.tgz", + "integrity": "sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==", + "license": "MIT", + "dependencies": { + "vue-demi": ">=0.14.8" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/shared/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, + "node_modules/ace-builds": { + "version": "1.43.6", + "resolved": "https://registry.npmmirror.com/ace-builds/-/ace-builds-1.43.6.tgz", + "integrity": "sha512-L1ddibQ7F3vyXR2k2fg+I8TQTPWVA6CKeDQr/h2+8CeyTp3W6EQL8xNFZRTztuP8xNOAqL3IYPqdzs31GCjDvg==", + "license": "BSD-3-Clause" + }, + "node_modules/acorn": { + "version": "8.16.0", + "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.16.0.tgz", + "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.14.0", + "resolved": "https://registry.npmmirror.com/ajv/-/ajv-6.14.0.tgz", + "integrity": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/alien-signals": { + "version": "1.0.13", + "resolved": "https://registry.npmmirror.com/alien-signals/-/alien-signals-1.0.13.tgz", + "integrity": "sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==", + "dev": true, + "license": "MIT" + }, + "node_modules/animate.css": { + "version": "4.1.1", + "resolved": "https://registry.npmmirror.com/animate.css/-/animate.css-4.1.1.tgz", + "integrity": "sha512-+mRmCTv6SbCmtYJCN4faJMNFVNN5EuCTTprDTAo7YzIGji2KADmakjVA3+8mVDkZ2Bf09vayB35lSQIex2+QaQ==", + "license": "MIT" + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/async-validator": { + "version": "4.2.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/async-validator/-/async-validator-4.2.5.tgz", + "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==", + "license": "MIT" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "license": "(MIT OR Apache-2.0)", + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axios": { + "version": "1.13.6", + "resolved": "https://registry.npmmirror.com/axios/-/axios-1.13.6.tgz", + "integrity": "sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.11", + "form-data": "^4.0.5", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "license": "MIT", + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base64-arraybuffer": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/baseline-browser-mapping": { + "version": "2.10.0", + "resolved": "https://registry.npmmirror.com/baseline-browser-mapping/-/baseline-browser-mapping-2.10.0.tgz", + "integrity": "sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/birpc": { + "version": "2.9.0", + "resolved": "https://registry.npmmirror.com/birpc/-/birpc-2.9.0.tgz", + "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "license": "MIT" + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "license": "ISC" + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.28.1", + "resolved": "https://registry.npmmirror.com/browserslist/-/browserslist-4.28.1.tgz", + "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.9.0", + "caniuse-lite": "^1.0.30001759", + "electron-to-chromium": "^1.5.263", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.2.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bundle-name": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/bundle-name/-/bundle-name-4.1.0.tgz", + "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "run-applescript": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmmirror.com/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "license": "MIT", + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cache-base/node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001778", + "resolved": "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001778.tgz", + "integrity": "sha512-PN7uxFL+ExFJO61aVmP1aIEG4i9whQd4eoSCebav62UwDyp5OHh06zN4jqKSMePVgxHifCw1QJxdRkA1Pisekg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/canvg": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/canvg/-/canvg-4.0.3.tgz", + "integrity": "sha512-fKzMoMBwus3CWo1Uy8XJc4tqqn98RoRrGV6CsIkaNiQT5lOeHuMh4fOt+LXLzn2Wqtr4p/c2TOLz4xtu4oBlFA==", + "license": "MIT", + "dependencies": { + "@types/raf": "^3.4.0", + "raf": "^3.4.1", + "rgbcolor": "^1.0.1", + "stackblur-canvas": "^2.0.0", + "svg-pathdata": "^6.0.3" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "4.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/chokidar/-/chokidar-4.0.1.tgz", + "integrity": "sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "license": "MIT", + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/class-utils/node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "license": "MIT", + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmmirror.com/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/component-emitter": { + "version": "1.3.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/component-emitter/-/component-emitter-1.3.1.tgz", + "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/confbox": { + "version": "0.1.8", + "resolved": "https://registry.npmmirror.com/confbox/-/confbox-0.1.8.tgz", + "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/consola": { + "version": "3.4.2", + "resolved": "https://registry.npmmirror.com/consola/-/consola-3.4.2.tgz", + "integrity": "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/copy-anything": { + "version": "4.0.5", + "resolved": "https://registry.npmmirror.com/copy-anything/-/copy-anything-4.0.5.tgz", + "integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-what": "^5.2.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cors": { + "version": "2.8.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "license": "MIT", + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css-line-break": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/css-line-break/-/css-line-break-2.1.0.tgz", + "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", + "license": "MIT", + "dependencies": { + "utrie": "^1.0.2" + } + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-select/node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/css-select/node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/css-select/node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/css-select/node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/css-select/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "license": "MIT", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "license": "MIT" + }, + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/dayjs": { + "version": "1.11.19", + "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.19.tgz", + "integrity": "sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==", + "license": "MIT" + }, + "node_modules/de-indent": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/de-indent/-/de-indent-1.0.2.tgz", + "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==", + "dev": true, + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/default-browser": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/default-browser/-/default-browser-5.5.0.tgz", + "integrity": "sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "bundle-name": "^4.1.0", + "default-browser-id": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-browser-id": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/default-browser-id/-/default-browser-id-5.0.1.tgz", + "integrity": "sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/defu": { + "version": "6.1.4", + "resolved": "https://registry.npmmirror.com/defu/-/defu-6.1.4.tgz", + "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==", + "dev": true, + "license": "MIT" + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/destr": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/destr/-/destr-2.0.5.tgz", + "integrity": "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==", + "dev": true, + "license": "MIT" + }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "dev": true, + "license": "Apache-2.0", + "optional": true, + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/dom-serializer/node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/dom-serializer/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "license": "BSD-2-Clause" + }, + "node_modules/domhandler": { + "version": "2.4.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "1" + } + }, + "node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmmirror.com/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true, + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.307", + "resolved": "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.5.307.tgz", + "integrity": "sha512-5z3uFKBWjiNR44nFcYdkcXjKMbg5KXNdciu7mhTPo9tB7NbqSNP2sSnGR+fqknZSCwKkBN+oxiiajWs4dT6ORg==", + "dev": true, + "license": "ISC" + }, + "node_modules/element-plus": { + "version": "2.13.5", + "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.13.5.tgz", + "integrity": "sha512-dmY24fhSREfZN/PuUt0YZigMso7wWzl+B5o+YKNN15kQIn/0hzamsPU+ebj9SES0IbUqsLX1wkrzYmzU8VrVOQ==", + "license": "MIT", + "dependencies": { + "@ctrl/tinycolor": "^4.2.0", + "@element-plus/icons-vue": "^2.3.2", + "@floating-ui/dom": "^1.0.1", + "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7", + "@types/lodash": "^4.17.20", + "@types/lodash-es": "^4.17.12", + "@vueuse/core": "12.0.0", + "async-validator": "^4.2.5", + "dayjs": "^1.11.19", + "lodash": "^4.17.23", + "lodash-es": "^4.17.23", + "lodash-unified": "^1.0.3", + "memoize-one": "^6.0.0", + "normalize-wheel-es": "^1.2.0" + }, + "peerDependencies": { + "vue": "^3.3.0" + } + }, + "node_modules/element-plus/node_modules/@vueuse/core": { + "version": "12.0.0", + "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-12.0.0.tgz", + "integrity": "sha512-C12RukhXiJCbx4MGhjmd/gH52TjJsc3G0E0kQj/kb19H3Nt6n1CA4DRWuTdWWcaFRdlTe0npWDS942mvacvNBw==", + "license": "MIT", + "dependencies": { + "@types/web-bluetooth": "^0.0.20", + "@vueuse/metadata": "12.0.0", + "@vueuse/shared": "12.0.0", + "vue": "^3.5.13" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/element-plus/node_modules/@vueuse/metadata": { + "version": "12.0.0", + "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-12.0.0.tgz", + "integrity": "sha512-Yzimd1D3sjxTDOlF05HekU5aSGdKjxhuhRFHA7gDWLn57PRbBIh+SF5NmjhJ0WRgF3my7T8LBucyxdFJjIfRJQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/element-plus/node_modules/@vueuse/shared": { + "version": "12.0.0", + "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-12.0.0.tgz", + "integrity": "sha512-3i6qtcq2PIio5i/vVYidkkcgvmTjCqrf26u+Fd4LhnbBmIT6FN8y6q/GJERp8lfcB9zVEfjdV0Br0443qZuJpw==", + "license": "MIT", + "dependencies": { + "vue": "^3.5.13" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/entities": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/entities/-/entities-7.0.1.tgz", + "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmmirror.com/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error-stack-parser-es": { + "version": "0.1.5", + "resolved": "https://registry.npmmirror.com/error-stack-parser-es/-/error-stack-parser-es-0.1.5.tgz", + "integrity": "sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/es-abstract": { + "version": "1.23.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/esbuild": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.25.12.tgz", + "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.12", + "@esbuild/android-arm": "0.25.12", + "@esbuild/android-arm64": "0.25.12", + "@esbuild/android-x64": "0.25.12", + "@esbuild/darwin-arm64": "0.25.12", + "@esbuild/darwin-x64": "0.25.12", + "@esbuild/freebsd-arm64": "0.25.12", + "@esbuild/freebsd-x64": "0.25.12", + "@esbuild/linux-arm": "0.25.12", + "@esbuild/linux-arm64": "0.25.12", + "@esbuild/linux-ia32": "0.25.12", + "@esbuild/linux-loong64": "0.25.12", + "@esbuild/linux-mips64el": "0.25.12", + "@esbuild/linux-ppc64": "0.25.12", + "@esbuild/linux-riscv64": "0.25.12", + "@esbuild/linux-s390x": "0.25.12", + "@esbuild/linux-x64": "0.25.12", + "@esbuild/netbsd-arm64": "0.25.12", + "@esbuild/netbsd-x64": "0.25.12", + "@esbuild/openbsd-arm64": "0.25.12", + "@esbuild/openbsd-x64": "0.25.12", + "@esbuild/openharmony-arm64": "0.25.12", + "@esbuild/sunos-x64": "0.25.12", + "@esbuild/win32-arm64": "0.25.12", + "@esbuild/win32-ia32": "0.25.12", + "@esbuild/win32-x64": "0.25.12" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint": { + "version": "9.39.4", + "resolved": "https://registry.npmmirror.com/eslint/-/eslint-9.39.4.tgz", + "integrity": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.2", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.5", + "@eslint/js": "9.39.4", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.14.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.5", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-config-prettier": { + "version": "8.10.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz", + "integrity": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==", + "dev": true, + "license": "MIT", + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-plugin-prettier": { + "version": "5.5.5", + "resolved": "https://registry.npmmirror.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.5.5.tgz", + "integrity": "sha512-hscXkbqUZ2sPithAuLm5MXL+Wph+U7wHngPBv9OMWwlP8iaflyxpjTYZkmdgB4/vPIhemRlBEoLrH7UC1n7aUw==", + "license": "MIT", + "dependencies": { + "prettier-linter-helpers": "^1.0.1", + "synckit": "^0.11.12" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-plugin-prettier" + }, + "peerDependencies": { + "@types/eslint": ">=8.0.0", + "eslint": ">=8.0.0", + "eslint-config-prettier": ">= 7.0.0 <10.0.0 || >=10.1.0", + "prettier": ">=3.0.0" + }, + "peerDependenciesMeta": { + "@types/eslint": { + "optional": true + }, + "eslint-config-prettier": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-vue": { + "version": "10.8.0", + "resolved": "https://registry.npmmirror.com/eslint-plugin-vue/-/eslint-plugin-vue-10.8.0.tgz", + "integrity": "sha512-f1J/tcbnrpgC8suPN5AtdJ5MQjuXbSU9pGRSSYAuF3SHoiYCOdEX6O22pLaRyLHXvDcOe+O5ENgc1owQ587agA==", + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "natural-compare": "^1.4.0", + "nth-check": "^2.1.1", + "postcss-selector-parser": "^7.1.0", + "semver": "^7.6.3", + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "peerDependencies": { + "@stylistic/eslint-plugin": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0", + "@typescript-eslint/parser": "^7.0.0 || ^8.0.0", + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "vue-eslint-parser": "^10.0.0" + }, + "peerDependenciesMeta": { + "@stylistic/eslint-plugin": { + "optional": true + }, + "@typescript-eslint/parser": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-vue/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://registry.npmmirror.com/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "license": "MIT" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/execa": { + "version": "9.6.1", + "resolved": "https://registry.npmmirror.com/execa/-/execa-9.6.1.tgz", + "integrity": "sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sindresorhus/merge-streams": "^4.0.0", + "cross-spawn": "^7.0.6", + "figures": "^6.1.0", + "get-stream": "^9.0.0", + "human-signals": "^8.0.1", + "is-plain-obj": "^4.1.0", + "is-stream": "^4.0.1", + "npm-run-path": "^6.0.0", + "pretty-ms": "^9.2.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^4.0.0", + "yoctocolors": "^2.1.1" + }, + "engines": { + "node": "^18.19.0 || >=20.5.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/execa/node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "license": "MIT", + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "license": "MIT", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "license": "MIT", + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-diff": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", + "license": "Apache-2.0" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/figures": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/figures/-/figures-6.1.0.tgz", + "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-unicode-supported": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.4.1", + "resolved": "https://registry.npmmirror.com/flatted/-/flatted-3.4.1.tgz", + "integrity": "sha512-IxfVbRFVlV8V/yRaGzk0UVIcsKKHMSfYw66T/u4nTwlWteQePsxe//LjudR1AMX4tZW3WFCh3Zqa/sjlqpbURQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/follow-redirects": { + "version": "1.15.11", + "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.11.tgz", + "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/form-data": { + "version": "4.0.5", + "resolved": "https://registry.npmmirror.com/form-data/-/form-data-4.0.5.tgz", + "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "license": "MIT", + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-stream": { + "version": "9.0.1", + "resolved": "https://registry.npmmirror.com/get-stream/-/get-stream-9.0.1.tgz", + "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sec-ant/readable-stream": "^0.4.1", + "is-stream": "^4.0.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "16.5.0", + "resolved": "https://registry.npmmirror.com/globals/-/globals-16.5.0.tgz", + "integrity": "sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/has-ansi": { + "version": "2.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-ansi/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "license": "MIT", + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-value/node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "license": "MIT", + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "license": "MIT", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/highlight.js": { + "version": "11.11.1", + "resolved": "https://registry.npmmirror.com/highlight.js/-/highlight.js-11.11.1.tgz", + "integrity": "sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/hookable": { + "version": "5.5.3", + "resolved": "https://registry.npmmirror.com/hookable/-/hookable-5.5.3.tgz", + "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/html2canvas": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/html2canvas/-/html2canvas-1.4.1.tgz", + "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", + "license": "MIT", + "dependencies": { + "css-line-break": "^2.1.0", + "text-segmentation": "^1.0.3" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/htmlparser2": { + "version": "3.10.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "license": "MIT", + "dependencies": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + } + }, + "node_modules/htmlparser2/node_modules/entities": { + "version": "1.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", + "license": "BSD-2-Clause" + }, + "node_modules/human-signals": { + "version": "8.0.1", + "resolved": "https://registry.npmmirror.com/human-signals/-/human-signals-8.0.1.tgz", + "integrity": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/image-size": { + "version": "0.5.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", + "license": "MIT", + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/immutable": { + "version": "5.1.5", + "resolved": "https://registry.npmmirror.com/immutable/-/immutable-5.1.5.tgz", + "integrity": "sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==", + "dev": true, + "license": "MIT" + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", + "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "license": "MIT" + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", + "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "license": "MIT", + "dependencies": { + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "dev": true, + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object/node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/is-stream/-/is-stream-4.0.1.tgz", + "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-unicode-supported": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", + "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-what": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/is-what/-/is-what-5.5.0.tgz", + "integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/is-wsl/-/is-wsl-3.1.1.tgz", + "integrity": "sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-inside-container": "^1.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "license": "MIT", + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jiti": { + "version": "2.6.1", + "resolved": "https://registry.npmmirror.com/jiti/-/jiti-2.6.1.tgz", + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/jodit": { + "version": "4.11.13", + "resolved": "https://registry.npmmirror.com/jodit/-/jodit-4.11.13.tgz", + "integrity": "sha512-G/Tx18n7dYxS8Ewpm21sIpARQzIKk/DombIgR9tll/so+HwIAlf3/vjG/nWmm7+w8Sr31JeCZicoGQ1+pYNHSQ==", + "license": "MIT" + }, + "node_modules/js-base64": { + "version": "2.6.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/js-base64/-/js-base64-2.6.4.tgz", + "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==", + "license": "BSD-3-Clause" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-parse-even-better-errors": { + "version": "3.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.2.tgz", + "integrity": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmmirror.com/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kolorist": { + "version": "1.8.0", + "resolved": "https://registry.npmmirror.com/kolorist/-/kolorist-1.8.0.tgz", + "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/less": { + "version": "4.6.3", + "resolved": "https://registry.npmmirror.com/less/-/less-4.6.3.tgz", + "integrity": "sha512-xxjVIiz0rvWAhx49t8YLA/Dj6Uig4XdJgTRI5hbYHGmiDSh+S8hi2Wxsed2trjl/uur4kbW2+e2a8Mrk9Rcgbw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "copy-anything": "^3.0.5", + "parse-node-version": "^1.0.1" + }, + "bin": { + "lessc": "bin/lessc" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^3.1.0", + "source-map": "~0.6.0" + } + }, + "node_modules/less/node_modules/copy-anything": { + "version": "3.0.5", + "resolved": "https://registry.npmmirror.com/copy-anything/-/copy-anything-3.0.5.tgz", + "integrity": "sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-what": "^4.1.8" + }, + "engines": { + "node": ">=12.13" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/less/node_modules/is-what": { + "version": "4.1.16", + "resolved": "https://registry.npmmirror.com/is-what/-/is-what-4.1.16.tgz", + "integrity": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.13" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/loader-utils/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "license": "MIT" + }, + "node_modules/lodash-es": { + "version": "4.17.23", + "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.23.tgz", + "integrity": "sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==", + "license": "MIT" + }, + "node_modules/lodash-unified": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/lodash-unified/-/lodash-unified-1.0.3.tgz", + "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==", + "license": "MIT", + "peerDependencies": { + "@types/lodash-es": "*", + "lodash": "*", + "lodash-es": "*" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "license": "MIT" + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/magic-regexp": { + "version": "0.10.0", + "resolved": "https://registry.npmmirror.com/magic-regexp/-/magic-regexp-0.10.0.tgz", + "integrity": "sha512-Uly1Bu4lO1hwHUW0CQeSWuRtzCMNO00CmXtS8N6fyvB3B979GOEEeAkiTUDsmbYLAbvpUS/Kt5c4ibosAzVyVg==", + "dev": true, + "license": "MIT", + "dependencies": { + "estree-walker": "^3.0.3", + "magic-string": "^0.30.12", + "mlly": "^1.7.2", + "regexp-tree": "^0.1.27", + "type-level-regexp": "~0.1.17", + "ufo": "^1.5.4", + "unplugin": "^2.0.0" + } + }, + "node_modules/magic-regexp/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmmirror.com/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "license": "ISC", + "optional": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "license": "MIT", + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "license": "CC0-1.0" + }, + "node_modules/memoize-one": { + "version": "6.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==", + "license": "MIT" + }, + "node_modules/memorystream": { + "version": "0.3.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", + "dev": true, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/merge-options": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/merge-options/-/merge-options-1.0.1.tgz", + "integrity": "sha512-iuPV41VWKWBIOpBsjoxjDZw8/GbSfZ2mk7N1453bwMrfzdrIk7EzBd+8UVR6rkw67th7xnk9Dytl3J+lHPdxvg==", + "license": "MIT", + "dependencies": { + "is-plain-obj": "^1.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "license": "MIT", + "optional": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mitt": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", + "license": "MIT" + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "license": "MIT", + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mlly": { + "version": "1.8.1", + "resolved": "https://registry.npmmirror.com/mlly/-/mlly-1.8.1.tgz", + "integrity": "sha512-SnL6sNutTwRWWR/vcmCYHSADjiEesp5TGQQ0pXyLhW5IoeibRlF/CbSLailbB3CNqJUk9cVJ9dUDnbD7GrcHBQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.16.0", + "pathe": "^2.0.3", + "pkg-types": "^1.3.1", + "ufo": "^1.6.3" + } + }, + "node_modules/mlly/node_modules/pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true, + "license": "MIT" + }, + "node_modules/mrmime": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/mrmime/-/mrmime-2.0.1.tgz", + "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/muggle-string": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/muggle-string/-/muggle-string-0.4.1.tgz", + "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "license": "MIT" + }, + "node_modules/needle": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/needle/-/needle-3.3.1.tgz", + "integrity": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "iconv-lite": "^0.6.3", + "sax": "^1.2.4" + }, + "bin": { + "needle": "bin/needle" + }, + "engines": { + "node": ">= 4.4.x" + } + }, + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/node-fetch-native": { + "version": "1.6.7", + "resolved": "https://registry.npmmirror.com/node-fetch-native/-/node-fetch-native-1.6.7.tgz", + "integrity": "sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-forge": { + "version": "1.3.3", + "resolved": "https://registry.npmmirror.com/node-forge/-/node-forge-1.3.3.tgz", + "integrity": "sha512-rLvcdSyRCyouf6jcOIPe/BgwG/d7hKjzMKOas33/pHEr6gbq18IK9zV7DiPvzsz0oBJPme6qr6H6kGZuI9/DZg==", + "dev": true, + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-releases": { + "version": "2.0.36", + "resolved": "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.36.tgz", + "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-wheel-es": { + "version": "1.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz", + "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==", + "license": "BSD-3-Clause" + }, + "node_modules/npm-normalize-package-bin": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz", + "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm-run-all2": { + "version": "6.2.6", + "resolved": "https://registry.npmmirror.com/npm-run-all2/-/npm-run-all2-6.2.6.tgz", + "integrity": "sha512-tkyb4pc0Zb0oOswCb5tORPk9MvVL6gcDq1cMItQHmsbVk1skk7YF6cH+UU2GxeNLHMuk6wFEOSmEmJ2cnAK1jg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.2.1", + "cross-spawn": "^7.0.3", + "memorystream": "^0.3.1", + "minimatch": "^9.0.0", + "pidtree": "^0.6.0", + "read-package-json-fast": "^3.0.2", + "shell-quote": "^1.7.3", + "which": "^3.0.1" + }, + "bin": { + "npm-run-all": "bin/npm-run-all/index.js", + "npm-run-all2": "bin/npm-run-all/index.js", + "run-p": "bin/run-p/index.js", + "run-s": "bin/run-s/index.js" + }, + "engines": { + "node": "^14.18.0 || ^16.13.0 || >=18.0.0", + "npm": ">= 8" + } + }, + "node_modules/npm-run-all2/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/npm-run-all2/node_modules/which": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/which/-/which-3.0.1.tgz", + "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/which.js" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm-run-path": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-6.0.0.tgz", + "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^4.0.0", + "unicorn-magic": "^0.3.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/nprogress": { + "version": "0.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/nprogress/-/nprogress-0.2.0.tgz", + "integrity": "sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==", + "license": "MIT" + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "license": "MIT", + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-visit/node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.pick/node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ofetch": { + "version": "1.5.1", + "resolved": "https://registry.npmmirror.com/ofetch/-/ofetch-1.5.1.tgz", + "integrity": "sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "destr": "^2.0.5", + "node-fetch-native": "^1.6.7", + "ufo": "^1.6.1" + } + }, + "node_modules/open": { + "version": "10.2.0", + "resolved": "https://registry.npmmirror.com/open/-/open-10.2.0.tgz", + "integrity": "sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "wsl-utils": "^0.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/oxc-parser": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/oxc-parser/-/oxc-parser-0.115.0.tgz", + "integrity": "sha512-2w7Xn3CbS/zwzSY82S5WLemrRu3CT57uF7Lx8llrE/2bul6iMTcJE4Rbls7GDNbLn3ttATI68PfOz2Pt3KZ2cQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@oxc-project/types": "^0.115.0" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/sponsors/Boshen" + }, + "optionalDependencies": { + "@oxc-parser/binding-android-arm-eabi": "0.115.0", + "@oxc-parser/binding-android-arm64": "0.115.0", + "@oxc-parser/binding-darwin-arm64": "0.115.0", + "@oxc-parser/binding-darwin-x64": "0.115.0", + "@oxc-parser/binding-freebsd-x64": "0.115.0", + "@oxc-parser/binding-linux-arm-gnueabihf": "0.115.0", + "@oxc-parser/binding-linux-arm-musleabihf": "0.115.0", + "@oxc-parser/binding-linux-arm64-gnu": "0.115.0", + "@oxc-parser/binding-linux-arm64-musl": "0.115.0", + "@oxc-parser/binding-linux-ppc64-gnu": "0.115.0", + "@oxc-parser/binding-linux-riscv64-gnu": "0.115.0", + "@oxc-parser/binding-linux-riscv64-musl": "0.115.0", + "@oxc-parser/binding-linux-s390x-gnu": "0.115.0", + "@oxc-parser/binding-linux-x64-gnu": "0.115.0", + "@oxc-parser/binding-linux-x64-musl": "0.115.0", + "@oxc-parser/binding-openharmony-arm64": "0.115.0", + "@oxc-parser/binding-wasm32-wasi": "0.115.0", + "@oxc-parser/binding-win32-arm64-msvc": "0.115.0", + "@oxc-parser/binding-win32-ia32-msvc": "0.115.0", + "@oxc-parser/binding-win32-x64-msvc": "0.115.0" + } + }, + "node_modules/oxc-walker": { + "version": "0.7.0", + "resolved": "https://registry.npmmirror.com/oxc-walker/-/oxc-walker-0.7.0.tgz", + "integrity": "sha512-54B4KUhrzbzc4sKvKwVYm7E2PgeROpGba0/2nlNZMqfDyca+yOor5IMb4WLGBatGDT0nkzYdYuzylg7n3YfB7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "magic-regexp": "^0.10.0" + }, + "peerDependencies": { + "oxc-parser": ">=0.98.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-manager-detector": { + "version": "1.6.0", + "resolved": "https://registry.npmmirror.com/package-manager-detector/-/package-manager-detector-1.6.0.tgz", + "integrity": "sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==", + "dev": true, + "license": "MIT" + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-ms": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/parse-ms/-/parse-ms-4.0.0.tgz", + "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/pathe": { + "version": "0.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/pathe/-/pathe-0.2.0.tgz", + "integrity": "sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==", + "license": "MIT" + }, + "node_modules/perfect-debounce": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz", + "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==", + "dev": true, + "license": "MIT" + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pidtree": { + "version": "0.6.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "dev": true, + "license": "MIT", + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pinia": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/pinia/-/pinia-2.3.1.tgz", + "integrity": "sha512-khUlZSwt9xXCaTbbxFYBKDc/bWAGWJjOgvxETwkTN7KRm66EeT1ZdZj6i2ceh9sP2Pzqsbc704r2yngBrxBVug==", + "license": "MIT", + "dependencies": { + "@vue/devtools-api": "^6.6.3", + "vue-demi": "^0.14.10" + }, + "funding": { + "url": "https://github.com/sponsors/posva" + }, + "peerDependencies": { + "typescript": ">=4.4.4", + "vue": "^2.7.0 || ^3.5.11" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/pinia-plugin-persistedstate": { + "version": "3.2.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/pinia-plugin-persistedstate/-/pinia-plugin-persistedstate-3.2.3.tgz", + "integrity": "sha512-Cm819WBj/s5K5DGw55EwbXDtx+EZzM0YR5AZbq9XE3u0xvXwvX2JnWoFpWIcdzISBHqy9H1UiSIUmXyXqWsQRQ==", + "license": "MIT", + "peerDependencies": { + "pinia": "^2.0.0" + } + }, + "node_modules/pinia/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, + "node_modules/pkg-types": { + "version": "1.3.1", + "resolved": "https://registry.npmmirror.com/pkg-types/-/pkg-types-1.3.1.tgz", + "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "confbox": "^0.1.8", + "mlly": "^1.7.4", + "pathe": "^2.0.1" + } + }, + "node_modules/pkg-types/node_modules/pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true, + "license": "MIT" + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.5.8", + "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.8.tgz", + "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-prefix-selector": { + "version": "1.16.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/postcss-prefix-selector/-/postcss-prefix-selector-1.16.1.tgz", + "integrity": "sha512-Umxu+FvKMwlY6TyDzGFoSUnzW+NOfMBLyC1tAkIjgX+Z/qGspJeRjVC903D7mx7TuBpJlwti2ibXtWuA7fKMeQ==", + "license": "MIT", + "peerDependencies": { + "postcss": ">4 <9" + } + }, + "node_modules/postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/posthtml": { + "version": "0.9.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/posthtml/-/posthtml-0.9.2.tgz", + "integrity": "sha512-spBB5sgC4cv2YcW03f/IAUN1pgDJWNWD8FzkyY4mArLUMJW+KlQhlmUdKAHQuPfb00Jl5xIfImeOsf6YL8QK7Q==", + "license": "MIT", + "dependencies": { + "posthtml-parser": "^0.2.0", + "posthtml-render": "^1.0.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/posthtml-parser": { + "version": "0.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/posthtml-parser/-/posthtml-parser-0.2.1.tgz", + "integrity": "sha512-nPC53YMqJnc/+1x4fRYFfm81KV2V+G9NZY+hTohpYg64Ay7NemWWcV4UWuy/SgMupqQ3kJ88M/iRfZmSnxT+pw==", + "license": "MIT", + "dependencies": { + "htmlparser2": "^3.8.3", + "isobject": "^2.1.0" + } + }, + "node_modules/posthtml-rename-id": { + "version": "1.0.12", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/posthtml-rename-id/-/posthtml-rename-id-1.0.12.tgz", + "integrity": "sha512-UKXf9OF/no8WZo9edRzvuMenb6AD5hDLzIepJW+a4oJT+T/Lx7vfMYWT4aWlGNQh0WMhnUx1ipN9OkZ9q+ddEw==", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "1.0.5" + } + }, + "node_modules/posthtml-render": { + "version": "1.4.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/posthtml-render/-/posthtml-render-1.4.0.tgz", + "integrity": "sha512-W1779iVHGfq0Fvh2PROhCe2QhB8mEErgqzo1wpIt36tCgChafP+hbXIhLDOM8ePJrZcFs0vkNEtdibEWVqChqw==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/posthtml-svg-mode": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/posthtml-svg-mode/-/posthtml-svg-mode-1.0.3.tgz", + "integrity": "sha512-hEqw9NHZ9YgJ2/0G7CECOeuLQKZi8HjWLkBaSVtOWjygQ9ZD8P7tqeowYs7WrFdKsWEKG7o+IlsPY8jrr0CJpQ==", + "license": "MIT", + "dependencies": { + "merge-options": "1.0.1", + "posthtml": "^0.9.2", + "posthtml-parser": "^0.2.1", + "posthtml-render": "^1.0.6" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "3.8.1", + "resolved": "https://registry.npmmirror.com/prettier/-/prettier-3.8.1.tgz", + "integrity": "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-linter-helpers": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.1.tgz", + "integrity": "sha512-SxToR7P8Y2lWmv/kTzVLC1t/GDI2WGjMwNhLLE9qtH8Q13C+aEmuRlzDst4Up4s0Wc8sF2M+J57iB3cMLqftfg==", + "license": "MIT", + "dependencies": { + "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/pretty-ms": { + "version": "9.3.0", + "resolved": "https://registry.npmmirror.com/pretty-ms/-/pretty-ms-9.3.0.tgz", + "integrity": "sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parse-ms": "^4.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT" + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/quansync": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/quansync/-/quansync-1.0.0.tgz", + "integrity": "sha512-5xZacEEufv3HSTPQuchrvV6soaiACMFnq1H8wkVioctoH3TRha9Sz66lOxRwPK/qZj7HPiSveih9yAyh98gvqA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/antfu" + }, + { + "type": "individual", + "url": "https://github.com/sponsors/sxzz" + } + ], + "license": "MIT" + }, + "node_modules/query-string": { + "version": "4.3.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/query-string/-/query-string-4.3.4.tgz", + "integrity": "sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==", + "license": "MIT", + "dependencies": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/raf": { + "version": "3.4.1", + "resolved": "https://registry.npmmirror.com/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "license": "MIT", + "dependencies": { + "performance-now": "^2.1.0" + } + }, + "node_modules/read-package-json-fast": { + "version": "3.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz", + "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==", + "dev": true, + "license": "ISC", + "dependencies": { + "json-parse-even-better-errors": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "4.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/readdirp/-/readdirp-4.0.2.tgz", + "integrity": "sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "license": "MIT", + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regexp-tree": { + "version": "0.1.27", + "resolved": "https://registry.npmmirror.com/regexp-tree/-/regexp-tree-0.1.27.tgz", + "integrity": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==", + "dev": true, + "license": "MIT", + "bin": { + "regexp-tree": "bin/regexp-tree" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz", + "integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/resize-observer-polyfill": { + "version": "1.5.1", + "resolved": "https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", + "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==", + "license": "MIT" + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "deprecated": "https://github.com/lydell/resolve-url#deprecated", + "license": "MIT" + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "license": "MIT", + "engines": { + "node": ">=0.12" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "dev": true, + "license": "MIT" + }, + "node_modules/rgbcolor": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/rgbcolor/-/rgbcolor-1.0.1.tgz", + "integrity": "sha512-9aZLIrhRaD97sgVhtJOW6ckOEh6/GnvQtdVNfdZ6s67+3/XwLS9lBcQYzEEhYVeUowN7pRzMLsyGhK2i/xvWbw==", + "license": "MIT OR SEE LICENSE IN FEEL-FREE.md", + "engines": { + "node": ">= 0.8.15" + } + }, + "node_modules/rollup": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/rollup/-/rollup-4.59.0.tgz", + "integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.59.0", + "@rollup/rollup-android-arm64": "4.59.0", + "@rollup/rollup-darwin-arm64": "4.59.0", + "@rollup/rollup-darwin-x64": "4.59.0", + "@rollup/rollup-freebsd-arm64": "4.59.0", + "@rollup/rollup-freebsd-x64": "4.59.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.59.0", + "@rollup/rollup-linux-arm-musleabihf": "4.59.0", + "@rollup/rollup-linux-arm64-gnu": "4.59.0", + "@rollup/rollup-linux-arm64-musl": "4.59.0", + "@rollup/rollup-linux-loong64-gnu": "4.59.0", + "@rollup/rollup-linux-loong64-musl": "4.59.0", + "@rollup/rollup-linux-ppc64-gnu": "4.59.0", + "@rollup/rollup-linux-ppc64-musl": "4.59.0", + "@rollup/rollup-linux-riscv64-gnu": "4.59.0", + "@rollup/rollup-linux-riscv64-musl": "4.59.0", + "@rollup/rollup-linux-s390x-gnu": "4.59.0", + "@rollup/rollup-linux-x64-gnu": "4.59.0", + "@rollup/rollup-linux-x64-musl": "4.59.0", + "@rollup/rollup-openbsd-x64": "4.59.0", + "@rollup/rollup-openharmony-arm64": "4.59.0", + "@rollup/rollup-win32-arm64-msvc": "4.59.0", + "@rollup/rollup-win32-ia32-msvc": "4.59.0", + "@rollup/rollup-win32-x64-gnu": "4.59.0", + "@rollup/rollup-win32-x64-msvc": "4.59.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-applescript": { + "version": "7.1.0", + "resolved": "https://registry.npmmirror.com/run-applescript/-/run-applescript-7.1.0.tgz", + "integrity": "sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-array-concat/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "license": "MIT" + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "license": "MIT", + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/sass": { + "version": "1.87.0", + "resolved": "https://registry.npmmirror.com/sass/-/sass-1.87.0.tgz", + "integrity": "sha512-d0NoFH4v6SjEK7BoX810Jsrhj7IQSYHAHLi/iSpgqKc7LaIDshFRlSg5LOymf9FqQhxEHs2W5ZQXlvy0KD45Uw==", + "dev": true, + "license": "MIT", + "dependencies": { + "chokidar": "^4.0.0", + "immutable": "^5.0.2", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "@parcel/watcher": "^2.4.1" + } + }, + "node_modules/sax": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/sax/-/sax-1.5.0.tgz", + "integrity": "sha512-21IYA3Q5cQf089Z6tgaUTr7lDAyzoTPx5HRtbhsME8Udispad8dC/+sziTNugOEx54ilvatQ9YCzl4KQLPcRHA==", + "dev": true, + "license": "BlueOak-1.0.0", + "optional": true, + "engines": { + "node": ">=11.0.0" + } + }, + "node_modules/screenfull": { + "version": "6.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/screenfull/-/screenfull-6.0.2.tgz", + "integrity": "sha512-AQdy8s4WhNvUZ6P8F6PB21tSPIYKniic+Ogx0AacBMjKP1GUHN2E9URxQHtCusiwxudnCKkdy4GrHXPPJSkCCw==", + "license": "MIT", + "engines": { + "node": "^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "license": "MIT", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sirv": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/sirv/-/sirv-3.0.2.tgz", + "integrity": "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@polka/url": "^1.0.0-next.24", + "mrmime": "^2.0.0", + "totalist": "^3.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "license": "MIT", + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "license": "MIT", + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "license": "MIT", + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/snapdragon/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sortablejs": { + "version": "1.15.7", + "resolved": "https://registry.npmmirror.com/sortablejs/-/sortablejs-1.15.7.tgz", + "integrity": "sha512-Kk8wLQPlS+yi1ZEf48a4+fzHa4yxjC30M/Sr2AnQu+f/MPwvvX9XjZ6OWejiz8crBsLwSq8GHqaxaET7u6ux0A==", + "license": "MIT" + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", + "license": "MIT", + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated", + "license": "MIT" + }, + "node_modules/speakingurl": { + "version": "14.0.1", + "resolved": "https://registry.npmmirror.com/speakingurl/-/speakingurl-14.0.1.tgz", + "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "license": "MIT", + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility", + "license": "MIT" + }, + "node_modules/stackblur-canvas": { + "version": "2.7.0", + "resolved": "https://registry.npmmirror.com/stackblur-canvas/-/stackblur-canvas-2.7.0.tgz", + "integrity": "sha512-yf7OENo23AGJhBriGx0QivY5JP6Y1HbrrDI6WLt6C5auYZXlQrheoY8hD4ibekFKz1HOfE48Ww8kMWMnJD/zcQ==", + "license": "MIT", + "engines": { + "node": ">=0.1.14" + } + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "license": "MIT", + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-final-newline": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-4.0.0.tgz", + "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/superjson": { + "version": "2.2.6", + "resolved": "https://registry.npmmirror.com/superjson/-/superjson-2.2.6.tgz", + "integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "copy-anything": "^4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/svg-baker": { + "version": "1.7.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/svg-baker/-/svg-baker-1.7.0.tgz", + "integrity": "sha512-nibslMbkXOIkqKVrfcncwha45f97fGuAOn1G99YwnwTj8kF9YiM6XexPcUso97NxOm6GsP0SIvYVIosBis1xLg==", + "license": "MIT", + "dependencies": { + "bluebird": "^3.5.0", + "clone": "^2.1.1", + "he": "^1.1.1", + "image-size": "^0.5.1", + "loader-utils": "^1.1.0", + "merge-options": "1.0.1", + "micromatch": "3.1.0", + "postcss": "^5.2.17", + "postcss-prefix-selector": "^1.6.0", + "posthtml-rename-id": "^1.0", + "posthtml-svg-mode": "^1.0.3", + "query-string": "^4.3.2", + "traverse": "^0.6.6" + } + }, + "node_modules/svg-baker/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/svg-baker/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/svg-baker/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "license": "MIT", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/svg-baker/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/svg-baker/node_modules/chalk/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/svg-baker/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "license": "MIT", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/svg-baker/node_modules/has-flag": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/svg-baker/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "license": "MIT", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/svg-baker/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/svg-baker/node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/svg-baker/node_modules/micromatch": { + "version": "3.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/micromatch/-/micromatch-3.1.0.tgz", + "integrity": "sha512-3StSelAE+hnRvMs8IdVW7Uhk8CVed5tp+kLLGlBP6WiRAXS21GPGu/Nat4WNPXj2Eoc24B02SaeoyozPMfj0/g==", + "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.2.2", + "define-property": "^1.0.0", + "extend-shallow": "^2.0.1", + "extglob": "^2.0.2", + "fragment-cache": "^0.2.1", + "kind-of": "^5.0.2", + "nanomatch": "^1.2.1", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/svg-baker/node_modules/postcss": { + "version": "5.2.18", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "license": "MIT", + "dependencies": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/svg-baker/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/svg-baker/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/svg-baker/node_modules/supports-color": { + "version": "3.2.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==", + "license": "MIT", + "dependencies": { + "has-flag": "^1.0.0" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/svg-baker/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "license": "MIT", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/svg-pathdata": { + "version": "6.0.3", + "resolved": "https://registry.npmmirror.com/svg-pathdata/-/svg-pathdata-6.0.3.tgz", + "integrity": "sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==", + "license": "MIT", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "license": "MIT", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/synckit": { + "version": "0.11.12", + "resolved": "https://registry.npmmirror.com/synckit/-/synckit-0.11.12.tgz", + "integrity": "sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==", + "license": "MIT", + "dependencies": { + "@pkgr/core": "^0.2.9" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/synckit" + } + }, + "node_modules/text-segmentation": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/text-segmentation/-/text-segmentation-1.0.3.tgz", + "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==", + "license": "MIT", + "dependencies": { + "utrie": "^1.0.2" + } + }, + "node_modules/tinyexec": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/tinyexec/-/tinyexec-1.0.2.tgz", + "integrity": "sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "license": "MIT", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "license": "MIT", + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/to-regex/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/totalist": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/totalist/-/totalist-3.0.1.tgz", + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/traverse": { + "version": "0.6.10", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/traverse/-/traverse-0.6.10.tgz", + "integrity": "sha512-hN4uFRxbK+PX56DxYiGHsTn2dME3TVr9vbNqlQGcGcPhJAn+tdP126iA+TArMpI4YSgnTkMWyoLl5bf81Hi5TA==", + "license": "MIT", + "dependencies": { + "gopd": "^1.0.1", + "typedarray.prototype.slice": "^1.0.3", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ts-api-utils": { + "version": "1.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ts-api-utils/-/ts-api-utils-1.3.0.tgz", + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "license": "0BSD", + "optional": true + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-level-regexp": { + "version": "0.1.17", + "resolved": "https://registry.npmmirror.com/type-level-regexp/-/type-level-regexp-0.1.17.tgz", + "integrity": "sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==", + "dev": true, + "license": "MIT" + }, + "node_modules/typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.6", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray.prototype.slice": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.3.tgz", + "integrity": "sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-errors": "^1.3.0", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-offset": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.2.tgz", + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/typescript-eslint/-/typescript-eslint-8.57.0.tgz", + "integrity": "sha512-W8GcigEMEeB07xEZol8oJ26rigm3+bfPHxHvwbYUlu1fUDsGuQ7Hiskx5xGW/xM4USc9Ephe3jtv7ZYPQntHeA==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.57.0", + "@typescript-eslint/parser": "8.57.0", + "@typescript-eslint/typescript-estree": "8.57.0", + "@typescript-eslint/utils": "8.57.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/typescript-eslint/node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.57.0.tgz", + "integrity": "sha512-qeu4rTHR3/IaFORbD16gmjq9+rEs9fGKdX0kF6BKSfi+gCuG3RCKLlSBYzn/bGsY9Tj7KE/DAQStbp8AHJGHEQ==", + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.12.2", + "@typescript-eslint/scope-manager": "8.57.0", + "@typescript-eslint/type-utils": "8.57.0", + "@typescript-eslint/utils": "8.57.0", + "@typescript-eslint/visitor-keys": "8.57.0", + "ignore": "^7.0.5", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.57.0", + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/typescript-eslint/node_modules/@typescript-eslint/parser": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-8.57.0.tgz", + "integrity": "sha512-XZzOmihLIr8AD1b9hL9ccNMzEMWt/dE2u7NyTY9jJG6YNiNthaD5XtUHVF2uCXZ15ng+z2hT3MVuxnUYhq6k1g==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.57.0", + "@typescript-eslint/types": "8.57.0", + "@typescript-eslint/typescript-estree": "8.57.0", + "@typescript-eslint/visitor-keys": "8.57.0", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/typescript-eslint/node_modules/@typescript-eslint/scope-manager": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-8.57.0.tgz", + "integrity": "sha512-nvExQqAHF01lUM66MskSaZulpPL5pgy5hI5RfrxviLgzZVffB5yYzw27uK/ft8QnKXI2X0LBrHJFr1TaZtAibw==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.57.0", + "@typescript-eslint/visitor-keys": "8.57.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/typescript-eslint/node_modules/@typescript-eslint/type-utils": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-8.57.0.tgz", + "integrity": "sha512-yjgh7gmDcJ1+TcEg8x3uWQmn8ifvSupnPfjP21twPKrDP/pTHlEQgmKcitzF/rzPSmv7QjJ90vRpN4U+zoUjwQ==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.57.0", + "@typescript-eslint/typescript-estree": "8.57.0", + "@typescript-eslint/utils": "8.57.0", + "debug": "^4.4.3", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/typescript-eslint/node_modules/@typescript-eslint/types": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/types/-/types-8.57.0.tgz", + "integrity": "sha512-dTLI8PEXhjUC7B9Kre+u0XznO696BhXcTlOn0/6kf1fHaQW8+VjJAVHJ3eTI14ZapTxdkOmc80HblPQLaEeJdg==", + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/typescript-eslint/node_modules/@typescript-eslint/typescript-estree": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.57.0.tgz", + "integrity": "sha512-m7faHcyVg0BT3VdYTlX8GdJEM7COexXxS6KqGopxdtkQRvBanK377QDHr4W/vIPAR+ah9+B/RclSW5ldVniO1Q==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.57.0", + "@typescript-eslint/tsconfig-utils": "8.57.0", + "@typescript-eslint/types": "8.57.0", + "@typescript-eslint/visitor-keys": "8.57.0", + "debug": "^4.4.3", + "minimatch": "^10.2.2", + "semver": "^7.7.3", + "tinyglobby": "^0.2.15", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/typescript-eslint/node_modules/@typescript-eslint/utils": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-8.57.0.tgz", + "integrity": "sha512-5iIHvpD3CZe06riAsbNxxreP+MuYgVUsV0n4bwLH//VJmgtt54sQeY2GszntJ4BjYCpMzrfVh2SBnUQTtys2lQ==", + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.9.1", + "@typescript-eslint/scope-manager": "8.57.0", + "@typescript-eslint/types": "8.57.0", + "@typescript-eslint/typescript-estree": "8.57.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/typescript-eslint/node_modules/@typescript-eslint/visitor-keys": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.57.0.tgz", + "integrity": "sha512-zm6xx8UT/Xy2oSr2ZXD0pZo7Jx2XsCoID2IUh9YSTFRu7z+WdwYTRk6LhUftm1crwqbuoF6I8zAFeCMw0YjwDg==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.57.0", + "eslint-visitor-keys": "^5.0.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/typescript-eslint/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/typescript-eslint/node_modules/brace-expansion": { + "version": "5.0.4", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-5.0.4.tgz", + "integrity": "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==", + "license": "MIT", + "dependencies": { + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/typescript-eslint/node_modules/eslint-visitor-keys": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", + "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==", + "license": "Apache-2.0", + "engines": { + "node": "^20.19.0 || ^22.13.0 || >=24" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/typescript-eslint/node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmmirror.com/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/typescript-eslint/node_modules/minimatch": { + "version": "10.2.4", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-10.2.4.tgz", + "integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==", + "license": "BlueOak-1.0.0", + "dependencies": { + "brace-expansion": "^5.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/typescript-eslint/node_modules/semver": { + "version": "7.7.4", + "resolved": "https://registry.npmmirror.com/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/typescript-eslint/node_modules/ts-api-utils": { + "version": "2.4.0", + "resolved": "https://registry.npmmirror.com/ts-api-utils/-/ts-api-utils-2.4.0.tgz", + "integrity": "sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==", + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/ufo": { + "version": "1.6.3", + "resolved": "https://registry.npmmirror.com/ufo/-/ufo-1.6.3.tgz", + "integrity": "sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unconfig": { + "version": "7.5.0", + "resolved": "https://registry.npmmirror.com/unconfig/-/unconfig-7.5.0.tgz", + "integrity": "sha512-oi8Qy2JV4D3UQ0PsopR28CzdQ3S/5A1zwsUwp/rosSbfhJ5z7b90bIyTwi/F7hCLD4SGcZVjDzd4XoUQcEanvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@quansync/fs": "^1.0.0", + "defu": "^6.1.4", + "jiti": "^2.6.1", + "quansync": "^1.0.0", + "unconfig-core": "7.5.0" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/unconfig-core": { + "version": "7.5.0", + "resolved": "https://registry.npmmirror.com/unconfig-core/-/unconfig-core-7.5.0.tgz", + "integrity": "sha512-Su3FauozOGP44ZmKdHy2oE6LPjk51M/TRRjHv2HNCWiDvfvCoxC2lno6jevMA91MYAdCdwP05QnWdWpSbncX/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@quansync/fs": "^1.0.0", + "quansync": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "license": "MIT" + }, + "node_modules/unicorn-magic": { + "version": "0.3.0", + "resolved": "https://registry.npmmirror.com/unicorn-magic/-/unicorn-magic-0.3.0.tgz", + "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "license": "MIT", + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unocss": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/unocss/-/unocss-66.6.6.tgz", + "integrity": "sha512-PRKK945e2oZKHV664MA5Z9CDHbvY/V79IvTOUWKZ514jpl3UsJU3sS+skgxmKJSmwrWvXE5OVcmPthJrD/7vxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@unocss/cli": "66.6.6", + "@unocss/core": "66.6.6", + "@unocss/preset-attributify": "66.6.6", + "@unocss/preset-icons": "66.6.6", + "@unocss/preset-mini": "66.6.6", + "@unocss/preset-tagify": "66.6.6", + "@unocss/preset-typography": "66.6.6", + "@unocss/preset-uno": "66.6.6", + "@unocss/preset-web-fonts": "66.6.6", + "@unocss/preset-wind": "66.6.6", + "@unocss/preset-wind3": "66.6.6", + "@unocss/preset-wind4": "66.6.6", + "@unocss/transformer-attributify-jsx": "66.6.6", + "@unocss/transformer-compile-class": "66.6.6", + "@unocss/transformer-directives": "66.6.6", + "@unocss/transformer-variant-group": "66.6.6", + "@unocss/vite": "66.6.6" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@unocss/astro": "66.6.6", + "@unocss/postcss": "66.6.6", + "@unocss/webpack": "66.6.6" + }, + "peerDependenciesMeta": { + "@unocss/astro": { + "optional": true + }, + "@unocss/postcss": { + "optional": true + }, + "@unocss/webpack": { + "optional": true + } + } + }, + "node_modules/unplugin": { + "version": "2.3.11", + "resolved": "https://registry.npmmirror.com/unplugin/-/unplugin-2.3.11.tgz", + "integrity": "sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/remapping": "^2.3.5", + "acorn": "^8.15.0", + "picomatch": "^4.0.3", + "webpack-virtual-modules": "^0.6.2" + }, + "engines": { + "node": ">=18.12.0" + } + }, + "node_modules/unplugin-utils": { + "version": "0.3.1", + "resolved": "https://registry.npmmirror.com/unplugin-utils/-/unplugin-utils-0.3.1.tgz", + "integrity": "sha512-5lWVjgi6vuHhJ526bI4nlCOmkCIF3nnfXkCMDeMJrtdvxTs6ZFCM8oNufGTsDbKv/tJ/xj8RpvXjRuPBZJuJog==", + "dev": true, + "license": "MIT", + "dependencies": { + "pathe": "^2.0.3", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=20.19.0" + }, + "funding": { + "url": "https://github.com/sponsors/sxzz" + } + }, + "node_modules/unplugin-utils/node_modules/pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true, + "license": "MIT" + }, + "node_modules/unplugin-utils/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/unplugin/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "license": "MIT", + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "license": "MIT", + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "license": "MIT", + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "deprecated": "Please see https://github.com/lydell/urix#deprecated", + "license": "MIT" + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, + "node_modules/utrie": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/utrie/-/utrie-1.0.2.tgz", + "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==", + "license": "MIT", + "dependencies": { + "base64-arraybuffer": "^1.0.2" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vite": { + "version": "6.3.4", + "resolved": "https://registry.npmmirror.com/vite/-/vite-6.3.4.tgz", + "integrity": "sha512-BiReIiMS2fyFqbqNT/Qqt4CVITDU9M9vE+DKcVAsB+ZV0wvTKd+3hMbkpxz1b+NmEDMegpVbisKiAZOnvO92Sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.25.0", + "fdir": "^6.4.4", + "picomatch": "^4.0.2", + "postcss": "^8.5.3", + "rollup": "^4.34.9", + "tinyglobby": "^0.2.13" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "jiti": ">=1.21.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vite-hot-client": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/vite-hot-client/-/vite-hot-client-2.1.0.tgz", + "integrity": "sha512-7SpgZmU7R+dDnSmvXE1mfDtnHLHQSisdySVR7lO8ceAXvM0otZeuQQ6C8LrS5d/aYyP/QZ0hI0L+dIPrm4YlFQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "vite": "^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0" + } + }, + "node_modules/vite-plugin-compression": { + "version": "0.5.1", + "resolved": "https://registry.npmmirror.com/vite-plugin-compression/-/vite-plugin-compression-0.5.1.tgz", + "integrity": "sha512-5QJKBDc+gNYVqL/skgFAP81Yuzo9R+EAf19d+EtsMF/i8kFUpNi3J/H01QD3Oo8zBQn+NzoCIFkpPLynoOzaJg==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.2", + "debug": "^4.3.3", + "fs-extra": "^10.0.0" + }, + "peerDependencies": { + "vite": ">=2.0.0" + } + }, + "node_modules/vite-plugin-inspect": { + "version": "0.8.9", + "resolved": "https://registry.npmmirror.com/vite-plugin-inspect/-/vite-plugin-inspect-0.8.9.tgz", + "integrity": "sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@antfu/utils": "^0.7.10", + "@rollup/pluginutils": "^5.1.3", + "debug": "^4.3.7", + "error-stack-parser-es": "^0.1.5", + "fs-extra": "^11.2.0", + "open": "^10.1.0", + "perfect-debounce": "^1.0.0", + "picocolors": "^1.1.1", + "sirv": "^3.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "vite": "^3.1.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.1" + }, + "peerDependenciesMeta": { + "@nuxt/kit": { + "optional": true + } + } + }, + "node_modules/vite-plugin-inspect/node_modules/fs-extra": { + "version": "11.3.4", + "resolved": "https://registry.npmmirror.com/fs-extra/-/fs-extra-11.3.4.tgz", + "integrity": "sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/vite-plugin-svg-icons": { + "version": "2.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vite-plugin-svg-icons/-/vite-plugin-svg-icons-2.0.1.tgz", + "integrity": "sha512-6ktD+DhV6Rz3VtedYvBKKVA2eXF+sAQVaKkKLDSqGUfnhqXl3bj5PPkVTl3VexfTuZy66PmINi8Q6eFnVfRUmA==", + "license": "MIT", + "dependencies": { + "@types/svgo": "^2.6.1", + "cors": "^2.8.5", + "debug": "^4.3.3", + "etag": "^1.8.1", + "fs-extra": "^10.0.0", + "pathe": "^0.2.0", + "svg-baker": "1.7.0", + "svgo": "^2.8.0" + }, + "peerDependencies": { + "vite": ">=2.0.0" + } + }, + "node_modules/vite-plugin-vue-devtools": { + "version": "7.7.9", + "resolved": "https://registry.npmmirror.com/vite-plugin-vue-devtools/-/vite-plugin-vue-devtools-7.7.9.tgz", + "integrity": "sha512-08DvePf663SxqLFJeMVNW537zzVyakp9KIrI2K7lwgaTqA5R/ydN/N2K8dgZO34tg/Qmw0ch84fOKoBtCEdcGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/devtools-core": "^7.7.9", + "@vue/devtools-kit": "^7.7.9", + "@vue/devtools-shared": "^7.7.9", + "execa": "^9.5.2", + "sirv": "^3.0.1", + "vite-plugin-inspect": "0.8.9", + "vite-plugin-vue-inspector": "^5.3.1" + }, + "engines": { + "node": ">=v14.21.3" + }, + "peerDependencies": { + "vite": "^3.1.0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0" + } + }, + "node_modules/vite-plugin-vue-inspector": { + "version": "5.3.2", + "resolved": "https://registry.npmmirror.com/vite-plugin-vue-inspector/-/vite-plugin-vue-inspector-5.3.2.tgz", + "integrity": "sha512-YvEKooQcSiBTAs0DoYLfefNja9bLgkFM7NI2b07bE2SruuvX0MEa9cMaxjKVMkeCp5Nz9FRIdcN1rOdFVBeL6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.23.0", + "@babel/plugin-proposal-decorators": "^7.23.0", + "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-transform-typescript": "^7.22.15", + "@vue/babel-plugin-jsx": "^1.1.5", + "@vue/compiler-dom": "^3.3.4", + "kolorist": "^1.8.0", + "magic-string": "^0.30.4" + }, + "peerDependencies": { + "vite": "^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0" + } + }, + "node_modules/vite-plugin-vue-inspector/node_modules/@vue/babel-helper-vue-transform-on": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.5.0.tgz", + "integrity": "sha512-0dAYkerNhhHutHZ34JtTl2czVQHUNWv6xEbkdF5W+Yrv5pCWsqjeORdOgbtW2I9gWlt+wBmVn+ttqN9ZxR5tzA==", + "dev": true, + "license": "MIT" + }, + "node_modules/vite-plugin-vue-inspector/node_modules/@vue/babel-plugin-jsx": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.5.0.tgz", + "integrity": "sha512-mneBhw1oOqCd2247O0Yw/mRwC9jIGACAJUlawkmMBiNmL4dGA2eMzuNZVNqOUfYTa6vqmND4CtOPzmEEEqLKFw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-syntax-jsx": "^7.27.1", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.0", + "@babel/types": "^7.28.2", + "@vue/babel-helper-vue-transform-on": "1.5.0", + "@vue/babel-plugin-resolve-type": "1.5.0", + "@vue/shared": "^3.5.18" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + } + } + }, + "node_modules/vite-plugin-vue-inspector/node_modules/@vue/babel-plugin-resolve-type": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-1.5.0.tgz", + "integrity": "sha512-Wm/60o+53JwJODm4Knz47dxJnLDJ9FnKnGZJbUUf8nQRAtt6P+undLUAVU3Ha33LxOJe6IPoifRQ6F/0RrU31w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/parser": "^7.28.0", + "@vue/compiler-sfc": "^3.5.18" + }, + "funding": { + "url": "https://github.com/sponsors/sxzz" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/vite/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/vscode-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/vscode-uri/-/vscode-uri-3.1.0.tgz", + "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/vue": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.30.tgz", + "integrity": "sha512-hTHLc6VNZyzzEH/l7PFGjpcTvUgiaPK5mdLkbjrTeWSRcEfxFrv56g/XckIYlE9ckuobsdwqd5mk2g1sBkMewg==", + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.5.30", + "@vue/compiler-sfc": "3.5.30", + "@vue/runtime-dom": "3.5.30", + "@vue/server-renderer": "3.5.30", + "@vue/shared": "3.5.30" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/vue-eslint-parser": { + "version": "10.4.0", + "resolved": "https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-10.4.0.tgz", + "integrity": "sha512-Vxi9pJdbN3ZnVGLODVtZ7y4Y2kzAAE2Cm0CZ3ZDRvydVYxZ6VrnBhLikBsRS+dpwj4Jv4UCv21PTEwF5rQ9WXg==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.0", + "eslint-scope": "^8.2.0 || ^9.0.0", + "eslint-visitor-keys": "^4.2.0 || ^5.0.0", + "espree": "^10.3.0 || ^11.0.0", + "esquery": "^1.6.0", + "semver": "^7.6.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0" + } + }, + "node_modules/vue-eslint-parser/node_modules/eslint-visitor-keys": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", + "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==", + "license": "Apache-2.0", + "engines": { + "node": "^20.19.0 || ^22.13.0 || >=24" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/vue-eslint-parser/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/vue-i18n": { + "version": "9.14.5", + "resolved": "https://registry.npmmirror.com/vue-i18n/-/vue-i18n-9.14.5.tgz", + "integrity": "sha512-0jQ9Em3ymWngyiIkj0+c/k7WgaPO+TNzjKSNq9BvBQaKJECqn9cd9fL4tkDhB5G1QBskGl9YxxbDAhgbFtpe2g==", + "deprecated": "v9 and v10 no longer supported. please migrate to v11. about maintenance status, see https://vue-i18n.intlify.dev/guide/maintenance.html", + "license": "MIT", + "dependencies": { + "@intlify/core-base": "9.14.5", + "@intlify/shared": "9.14.5", + "@vue/devtools-api": "^6.5.0" + }, + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/kazupon" + }, + "peerDependencies": { + "vue": "^3.0.0" + } + }, + "node_modules/vue-router": { + "version": "4.6.4", + "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.6.4.tgz", + "integrity": "sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg==", + "license": "MIT", + "dependencies": { + "@vue/devtools-api": "^6.6.4" + }, + "funding": { + "url": "https://github.com/sponsors/posva" + }, + "peerDependencies": { + "vue": "^3.5.0" + } + }, + "node_modules/vue-tsc": { + "version": "2.2.12", + "resolved": "https://registry.npmmirror.com/vue-tsc/-/vue-tsc-2.2.12.tgz", + "integrity": "sha512-P7OP77b2h/Pmk+lZdJ0YWs+5tJ6J2+uOQPo7tlBnY44QqQSPYvS0qVT4wqDJgwrZaLe47etJLLQRFia71GYITw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/typescript": "2.4.15", + "@vue/language-core": "2.2.12" + }, + "bin": { + "vue-tsc": "bin/vue-tsc.js" + }, + "peerDependencies": { + "typescript": ">=5.0.0" + } + }, + "node_modules/vue3-ace-editor": { + "version": "2.2.4", + "resolved": "https://registry.npmmirror.com/vue3-ace-editor/-/vue3-ace-editor-2.2.4.tgz", + "integrity": "sha512-FZkEyfpbH068BwjhMyNROxfEI8135Sc+x8ouxkMdCNkuj/Tuw83VP/gStFQqZHqljyX9/VfMTCdTqtOnJZGN8g==", + "license": "MIT", + "dependencies": { + "resize-observer-polyfill": "^1.5.1" + }, + "peerDependencies": { + "ace-builds": "*", + "vue": "^3" + } + }, + "node_modules/webpack-virtual-modules": { + "version": "0.6.2", + "resolved": "https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz", + "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "license": "MIT", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wsl-utils": { + "version": "0.1.0", + "resolved": "https://registry.npmmirror.com/wsl-utils/-/wsl-utils-0.1.0.tgz", + "integrity": "sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-wsl": "^3.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "license": "Apache-2.0", + "engines": { + "node": ">=12" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yoctocolors": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/yoctocolors/-/yoctocolors-2.1.2.tgz", + "integrity": "sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + }, + "dependencies": { + "@antfu/install-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/@antfu/install-pkg/-/install-pkg-1.1.0.tgz", + "integrity": "sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==", + "dev": true, + "requires": { + "package-manager-detector": "^1.3.0", + "tinyexec": "^1.0.1" + } + }, + "@antfu/utils": { + "version": "0.7.10", + "resolved": "https://registry.npmmirror.com/@antfu/utils/-/utils-0.7.10.tgz", + "integrity": "sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==", + "dev": true + }, + "@babel/code-frame": { + "version": "7.29.0", + "resolved": "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.29.0.tgz", + "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.28.5", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + } + }, + "@babel/compat-data": { + "version": "7.29.0", + "resolved": "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.29.0.tgz", + "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==", + "dev": true + }, + "@babel/core": { + "version": "7.29.0", + "resolved": "https://registry.npmmirror.com/@babel/core/-/core-7.29.0.tgz", + "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helpers": "^7.28.6", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + } + }, + "@babel/generator": { + "version": "7.29.1", + "resolved": "https://registry.npmmirror.com/@babel/generator/-/generator-7.29.1.tgz", + "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==", + "dev": true, + "requires": { + "@babel/parser": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.27.3", + "resolved": "https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", + "dev": true, + "requires": { + "@babel/types": "^7.27.3" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", + "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.28.6", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.6.tgz", + "integrity": "sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-member-expression-to-functions": "^7.28.5", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/helper-replace-supers": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/traverse": "^7.28.6", + "semver": "^6.3.1" + } + }, + "@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmmirror.com/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.28.5", + "resolved": "https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz", + "integrity": "sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==", + "dev": true, + "requires": { + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5" + } + }, + "@babel/helper-module-imports": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", + "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==", + "dev": true, + "requires": { + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6" + } + }, + "@babel/helper-module-transforms": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz", + "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.28.6" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", + "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", + "dev": true, + "requires": { + "@babel/types": "^7.27.1" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz", + "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==", + "dev": true + }, + "@babel/helper-replace-supers": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.28.6.tgz", + "integrity": "sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==", + "dev": true, + "requires": { + "@babel/helper-member-expression-to-functions": "^7.28.5", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/traverse": "^7.28.6" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.27.1", + "resolved": "https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", + "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", + "dev": true, + "requires": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + } + }, + "@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==" + }, + "@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==" + }, + "@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true + }, + "@babel/helpers": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.28.6.tgz", + "integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==", + "dev": true, + "requires": { + "@babel/template": "^7.28.6", + "@babel/types": "^7.28.6" + } + }, + "@babel/parser": { + "version": "7.29.0", + "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.29.0.tgz", + "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==", + "requires": { + "@babel/types": "^7.29.0" + } + }, + "@babel/plugin-proposal-decorators": { + "version": "7.29.0", + "resolved": "https://registry.npmmirror.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.29.0.tgz", + "integrity": "sha512-CVBVv3VY/XRMxRYq5dwr2DS7/MvqPm23cOCjbwNnVrfOqcWlnefua1uUs0sjdKOGjvPUG633o07uWzJq4oI6dA==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/plugin-syntax-decorators": "^7.28.6" + } + }, + "@babel/plugin-syntax-decorators": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.28.6.tgz", + "integrity": "sha512-71EYI0ONURHJBL4rSFXnITXqXrrY8q4P0q006DPfN+Rk+ASM+++IBXem/ruokgBZR8YNEWZ8R6B+rCb8VcUTqA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.28.6" + } + }, + "@babel/plugin-syntax-import-attributes": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.28.6.tgz", + "integrity": "sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.28.6" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.28.6.tgz", + "integrity": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.28.6" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.28.6.tgz", + "integrity": "sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.28.6" + } + }, + "@babel/plugin-transform-typescript": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.6.tgz", + "integrity": "sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-syntax-typescript": "^7.28.6" + } + }, + "@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmmirror.com/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" + } + }, + "@babel/traverse": { + "version": "7.29.0", + "resolved": "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.29.0.tgz", + "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0", + "debug": "^4.3.1" + } + }, + "@babel/types": { + "version": "7.29.0", + "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.29.0.tgz", + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", + "requires": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + } + }, + "@ctrl/tinycolor": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-4.2.0.tgz", + "integrity": "sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==" + }, + "@element-plus/icons-vue": { + "version": "2.3.2", + "resolved": "https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.3.2.tgz", + "integrity": "sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==" + }, + "@emnapi/core": { + "version": "1.8.1", + "resolved": "https://registry.npmmirror.com/@emnapi/core/-/core-1.8.1.tgz", + "integrity": "sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==", + "dev": true, + "optional": true, + "requires": { + "@emnapi/wasi-threads": "1.1.0", + "tslib": "^2.4.0" + } + }, + "@emnapi/runtime": { + "version": "1.8.1", + "resolved": "https://registry.npmmirror.com/@emnapi/runtime/-/runtime-1.8.1.tgz", + "integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==", + "dev": true, + "optional": true, + "requires": { + "tslib": "^2.4.0" + } + }, + "@emnapi/wasi-threads": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz", + "integrity": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==", + "dev": true, + "optional": true, + "requires": { + "tslib": "^2.4.0" + } + }, + "@esbuild/aix-ppc64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz", + "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==", + "dev": true, + "optional": true + }, + "@esbuild/android-arm": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.25.12.tgz", + "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==", + "dev": true, + "optional": true + }, + "@esbuild/android-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz", + "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==", + "dev": true, + "optional": true + }, + "@esbuild/android-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.25.12.tgz", + "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz", + "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz", + "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz", + "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz", + "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz", + "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz", + "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ia32": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz", + "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-loong64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz", + "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==", + "dev": true, + "optional": true + }, + "@esbuild/linux-mips64el": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz", + "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ppc64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz", + "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-riscv64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz", + "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==", + "dev": true, + "optional": true + }, + "@esbuild/linux-s390x": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz", + "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz", + "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==", + "dev": true, + "optional": true + }, + "@esbuild/netbsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz", + "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==", + "dev": true, + "optional": true + }, + "@esbuild/netbsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz", + "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==", + "dev": true, + "optional": true + }, + "@esbuild/openbsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz", + "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==", + "dev": true, + "optional": true + }, + "@esbuild/openbsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz", + "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==", + "dev": true, + "optional": true + }, + "@esbuild/openharmony-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz", + "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==", + "dev": true, + "optional": true + }, + "@esbuild/sunos-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz", + "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==", + "dev": true, + "optional": true + }, + "@esbuild/win32-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz", + "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==", + "dev": true, + "optional": true + }, + "@esbuild/win32-ia32": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz", + "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==", + "dev": true, + "optional": true + }, + "@esbuild/win32-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz", + "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==", + "dev": true, + "optional": true + }, + "@eslint-community/eslint-utils": { + "version": "4.9.1", + "resolved": "https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", + "requires": { + "eslint-visitor-keys": "^3.4.3" + } + }, + "@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmmirror.com/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==" + }, + "@eslint/config-array": { + "version": "0.21.2", + "resolved": "https://registry.npmmirror.com/@eslint/config-array/-/config-array-0.21.2.tgz", + "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==", + "dev": true, + "requires": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.5" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } + } + }, + "@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmmirror.com/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "requires": { + "@eslint/core": "^0.17.0" + } + }, + "@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmmirror.com/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.15" + } + }, + "@eslint/eslintrc": { + "version": "3.3.5", + "resolved": "https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-3.3.5.tgz", + "integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==", + "dev": true, + "requires": { + "ajv": "^6.14.0", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.1", + "minimatch": "^3.1.5", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "globals": { + "version": "14.0.0", + "resolved": "https://registry.npmmirror.com/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true + }, + "minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } + } + }, + "@eslint/js": { + "version": "9.39.4", + "resolved": "https://registry.npmmirror.com/@eslint/js/-/js-9.39.4.tgz", + "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==" + }, + "@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmmirror.com/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true + }, + "@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "requires": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + } + }, + "@floating-ui/core": { + "version": "1.6.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@floating-ui/core/-/core-1.6.8.tgz", + "integrity": "sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==", + "requires": { + "@floating-ui/utils": "^0.2.8" + } + }, + "@floating-ui/dom": { + "version": "1.6.11", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@floating-ui/dom/-/dom-1.6.11.tgz", + "integrity": "sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==", + "requires": { + "@floating-ui/core": "^1.6.0", + "@floating-ui/utils": "^0.2.8" + } + }, + "@floating-ui/utils": { + "version": "0.2.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@floating-ui/utils/-/utils-0.2.8.tgz", + "integrity": "sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==" + }, + "@highlightjs/vue-plugin": { + "version": "2.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@highlightjs/vue-plugin/-/vue-plugin-2.1.0.tgz", + "integrity": "sha512-E+bmk4ncca+hBEYRV2a+1aIzIV0VSY/e5ArjpuSN9IO7wBJrzUE2u4ESCwrbQD7sAy+jWQjkV5qCCWgc+pu7CQ==" + }, + "@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmmirror.com/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true + }, + "@humanfs/node": { + "version": "0.16.7", + "resolved": "https://registry.npmmirror.com/@humanfs/node/-/node-0.16.7.tgz", + "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", + "dev": true, + "requires": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.4.0" + } + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true + }, + "@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmmirror.com/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true + }, + "@iconify/types": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/@iconify/types/-/types-2.0.0.tgz", + "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==", + "dev": true + }, + "@iconify/utils": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/@iconify/utils/-/utils-3.1.0.tgz", + "integrity": "sha512-Zlzem1ZXhI1iHeeERabLNzBHdOa4VhQbqAcOQaMKuTuyZCpwKbC2R4Dd0Zo3g9EAc+Y4fiarO8HIHRAth7+skw==", + "dev": true, + "requires": { + "@antfu/install-pkg": "^1.1.0", + "@iconify/types": "^2.0.0", + "mlly": "^1.8.0" + } + }, + "@intlify/core-base": { + "version": "9.14.5", + "resolved": "https://registry.npmmirror.com/@intlify/core-base/-/core-base-9.14.5.tgz", + "integrity": "sha512-5ah5FqZG4pOoHjkvs8mjtv+gPKYU0zCISaYNjBNNqYiaITxW8ZtVih3GS/oTOqN8d9/mDLyrjD46GBApNxmlsA==", + "requires": { + "@intlify/message-compiler": "9.14.5", + "@intlify/shared": "9.14.5" + } + }, + "@intlify/message-compiler": { + "version": "9.14.5", + "resolved": "https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.14.5.tgz", + "integrity": "sha512-IHzgEu61/YIpQV5Pc3aRWScDcnFKWvQA9kigcINcCBXN8mbW+vk9SK+lDxA6STzKQsVJxUPg9ACC52pKKo3SVQ==", + "requires": { + "@intlify/shared": "9.14.5", + "source-map-js": "^1.0.2" + } + }, + "@intlify/shared": { + "version": "9.14.5", + "resolved": "https://registry.npmmirror.com/@intlify/shared/-/shared-9.14.5.tgz", + "integrity": "sha512-9gB+E53BYuAEMhbCAxVgG38EZrk59sxBtv3jSizNL2hEWlgjBjAw1AwpLHtNaeda12pe6W20OGEa0TwuMSRbyQ==" + }, + "@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "requires": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmmirror.com/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==" + }, + "@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "@napi-rs/wasm-runtime": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.1.tgz", + "integrity": "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==", + "dev": true, + "optional": true, + "requires": { + "@emnapi/core": "^1.7.1", + "@emnapi/runtime": "^1.7.1", + "@tybys/wasm-util": "^0.10.1" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@oxc-parser/binding-android-arm-eabi": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-android-arm-eabi/-/binding-android-arm-eabi-0.115.0.tgz", + "integrity": "sha512-VoB2rhgoqgYf64d6Qs5emONQW8ASiTc0xp+aUE4JUhxjX+0pE3gblTYDO0upcN5vt9UlBNmUhAwfSifkfre7nw==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-android-arm64": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-android-arm64/-/binding-android-arm64-0.115.0.tgz", + "integrity": "sha512-lWRX75u+gqfB4TF3pWCHuvhaeneAmRl2b2qNBcl4S6yJ0HtnT4VXOMEZrq747i4Zby1ZTxj6mtOe678Bg8gRLw==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-darwin-arm64": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-darwin-arm64/-/binding-darwin-arm64-0.115.0.tgz", + "integrity": "sha512-ii/oOZjfGY1aszXTy29Z5DRyCEnBOrAXDVCvfdfXFQsOZlbbOa7NMHD7D+06YFe5qdxfmbWAYv4yn6QJi/0d2g==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-darwin-x64": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-darwin-x64/-/binding-darwin-x64-0.115.0.tgz", + "integrity": "sha512-R/sW/p8l77wglbjpMcF+h/3rWbp9zk1mRP3U14mxTYIC2k3m+aLBpXXgk2zksqf9qKk5mcc4GIYsuCn9l8TgDg==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-freebsd-x64": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-freebsd-x64/-/binding-freebsd-x64-0.115.0.tgz", + "integrity": "sha512-CSJ5ldNm9wIGGkhaIJeGmxRMZbgxThRN+X1ufYQQUNi5jZDV/U3C2QDMywpP93fczNBj961hXtcUPO/oVGq4Pw==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-linux-arm-gnueabihf": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-0.115.0.tgz", + "integrity": "sha512-uWFwssE5dHfQ8lH+ktrsD9JA49+Qa0gtxZHUs62z1e91NgGz6O7jefHGI6aygNyKNS45pnnBSDSP/zV977MsOQ==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-linux-arm-musleabihf": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-0.115.0.tgz", + "integrity": "sha512-fZbqt8y/sKQ+v6bBCuv/mYYFoC0+fZI3mGDDEemmDOhT78+aUs2+4ZMdbd2btlXmnLaScl37r8IRbhnok5Ka9w==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-linux-arm64-gnu": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.115.0.tgz", + "integrity": "sha512-1ej/MjuTY9tJEunU/hUPIFmgH5PqgMQoRjNOvOkibtJ3Zqlw/+Lc+HGHDNET8sjbgIkWzdhX+p4J96A5CPdbag==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-linux-arm64-musl": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.115.0.tgz", + "integrity": "sha512-HjsZbJPH9mMd4swJRywVMsDZsJX0hyKb1iNHo5ijRl5yhtbO3lj7ImSrrL1oZ1VEg0te4iKmDGGz/6YPLd1G8w==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-linux-ppc64-gnu": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-0.115.0.tgz", + "integrity": "sha512-zhhePoBrd7kQx3oClX/W6NldsuCbuMqaN9rRsY+6/WoorAb4j490PG/FjqgAXscWp2uSW2WV9L+ksn0wHrvsrg==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-linux-riscv64-gnu": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-0.115.0.tgz", + "integrity": "sha512-t/IRojvUE9XrKu+/H1b8YINug+7Q6FLls5rsm2lxB5mnS8GN/eYAYrPgHkcg9/1SueRDSzGpDYu3lGWTObk1zw==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-linux-riscv64-musl": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-0.115.0.tgz", + "integrity": "sha512-79jBHSSh/YpQRAmvYoaCfpyToRbJ/HBrdB7hxK2ku2JMehjopTVo+xMJss/RV7/ZYqeezgjvKDQzapJbgcjVZA==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-linux-s390x-gnu": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-0.115.0.tgz", + "integrity": "sha512-nA1TpxkhNTIOMMyiSSsa7XIVJVoOU/SsVrHIz3gHvWweB5PHCQfO7w+Lb2EP0lBWokv7HtA/KbF7aLDoXzmuMw==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-linux-x64-gnu": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.115.0.tgz", + "integrity": "sha512-9iVX789DoC3SaOOG+X6NcF/tVChgLp2vcHffzOC2/Z1JTPlz6bMG2ogvcW6/9s0BG2qvhNQImd+gbWYeQbOwVw==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-linux-x64-musl": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-linux-x64-musl/-/binding-linux-x64-musl-0.115.0.tgz", + "integrity": "sha512-RmQmk+mjCB0nMNfEYhaCxwofLo1Z95ebHw1AGvRiWGCd4zhCNOyskgCbMogIcQzSB3SuEKWgkssyaiQYVAA4hQ==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-openharmony-arm64": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-openharmony-arm64/-/binding-openharmony-arm64-0.115.0.tgz", + "integrity": "sha512-viigraWWQhhDvX5aGq+wrQq58k00Xq3MHz/0R4AFMxGlZ8ogNonpEfNc73Q5Ly87Z6sU9BvxEdG0dnYTfVnmew==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-wasm32-wasi": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-wasm32-wasi/-/binding-wasm32-wasi-0.115.0.tgz", + "integrity": "sha512-IzGCrMwXhpb4kTXy/8lnqqqwjI7eOvy+r9AhVw+hsr8t1ecBBEHprcNy0aKatFHN6hsX7UMHHQmBAQjVvL/p1A==", + "dev": true, + "optional": true, + "requires": { + "@napi-rs/wasm-runtime": "^1.1.1" + } + }, + "@oxc-parser/binding-win32-arm64-msvc": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.115.0.tgz", + "integrity": "sha512-/ym+Absk/TLFvbhh3se9XYuI1D7BrUVHw4RaG/2dmWKgBenrZHaJsgnRb7NJtaOyjEOLIPtULx1wDdVL0SX2eg==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-win32-ia32-msvc": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-0.115.0.tgz", + "integrity": "sha512-AQSZjIR+b+Te7uaO/hGTMjT8/oxlYrvKrOTi4KTHF/O6osjHEatUQ3y6ZW2+8+lJxy20zIcGz6iQFmFq/qDKkg==", + "dev": true, + "optional": true + }, + "@oxc-parser/binding-win32-x64-msvc": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-parser/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.115.0.tgz", + "integrity": "sha512-oxUl82N+fIO9jIaXPph8SPPHQXrA08BHokBBJW8ct9F/x6o6bZE6eUAhUtWajbtvFhL8UYcCWRMba+kww6MBlA==", + "dev": true, + "optional": true + }, + "@oxc-project/types": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/@oxc-project/types/-/types-0.115.0.tgz", + "integrity": "sha512-4n91DKnebUS4yjUHl2g3/b2T+IUdCfmoZGhmwsovZCDaJSs+QkVAM+0AqqTxHSsHfeiMuueT75cZaZcT/m0pSw==", + "dev": true + }, + "@parcel/watcher": { + "version": "2.4.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher/-/watcher-2.4.1.tgz", + "integrity": "sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==", + "dev": true, + "optional": true, + "requires": { + "@parcel/watcher-android-arm64": "2.4.1", + "@parcel/watcher-darwin-arm64": "2.4.1", + "@parcel/watcher-darwin-x64": "2.4.1", + "@parcel/watcher-freebsd-x64": "2.4.1", + "@parcel/watcher-linux-arm-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-musl": "2.4.1", + "@parcel/watcher-linux-x64-glibc": "2.4.1", + "@parcel/watcher-linux-x64-musl": "2.4.1", + "@parcel/watcher-win32-arm64": "2.4.1", + "@parcel/watcher-win32-ia32": "2.4.1", + "@parcel/watcher-win32-x64": "2.4.1", + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + } + }, + "@parcel/watcher-win32-x64": { + "version": "2.4.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz", + "integrity": "sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==", + "dev": true, + "optional": true + }, + "@pkgr/core": { + "version": "0.2.9", + "resolved": "https://registry.npmmirror.com/@pkgr/core/-/core-0.2.9.tgz", + "integrity": "sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==" + }, + "@polka/url": { + "version": "1.0.0-next.29", + "resolved": "https://registry.npmmirror.com/@polka/url/-/url-1.0.0-next.29.tgz", + "integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==", + "dev": true + }, + "@popperjs/core": { + "version": "npm:@sxzz/popperjs-es@2.11.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz", + "integrity": "sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==" + }, + "@quansync/fs": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/@quansync/fs/-/fs-1.0.0.tgz", + "integrity": "sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==", + "dev": true, + "requires": { + "quansync": "^1.0.0" + } + }, + "@rolldown/pluginutils": { + "version": "1.0.0-rc.2", + "resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.2.tgz", + "integrity": "sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==", + "dev": true + }, + "@rollup/pluginutils": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-5.3.0.tgz", + "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==", + "dev": true, + "requires": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^4.0.2" + }, + "dependencies": { + "picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true + } + } + }, + "@rollup/rollup-android-arm-eabi": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz", + "integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==", + "dev": true, + "optional": true + }, + "@rollup/rollup-android-arm64": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz", + "integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==", + "dev": true, + "optional": true + }, + "@rollup/rollup-darwin-arm64": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz", + "integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==", + "dev": true, + "optional": true + }, + "@rollup/rollup-darwin-x64": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz", + "integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==", + "dev": true, + "optional": true + }, + "@rollup/rollup-freebsd-arm64": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz", + "integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==", + "dev": true, + "optional": true + }, + "@rollup/rollup-freebsd-x64": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz", + "integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz", + "integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-arm-musleabihf": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz", + "integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-arm64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz", + "integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-arm64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz", + "integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-loong64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz", + "integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-loong64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz", + "integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-ppc64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz", + "integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-ppc64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz", + "integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-riscv64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz", + "integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-riscv64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz", + "integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-s390x-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz", + "integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-x64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz", + "integrity": "sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-x64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz", + "integrity": "sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==", + "dev": true, + "optional": true + }, + "@rollup/rollup-openbsd-x64": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz", + "integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==", + "dev": true, + "optional": true + }, + "@rollup/rollup-openharmony-arm64": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz", + "integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==", + "dev": true, + "optional": true + }, + "@rollup/rollup-win32-arm64-msvc": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz", + "integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==", + "dev": true, + "optional": true + }, + "@rollup/rollup-win32-ia32-msvc": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz", + "integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==", + "dev": true, + "optional": true + }, + "@rollup/rollup-win32-x64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz", + "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==", + "dev": true, + "optional": true + }, + "@rollup/rollup-win32-x64-msvc": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz", + "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==", + "dev": true, + "optional": true + }, + "@rushstack/eslint-patch": { + "version": "1.16.1", + "resolved": "https://registry.npmmirror.com/@rushstack/eslint-patch/-/eslint-patch-1.16.1.tgz", + "integrity": "sha512-TvZbIpeKqGQQ7X0zSCvPH9riMSFQFSggnfBjFZ1mEoILW+UuXCKwOoPcgjMwiUtRqFZ8jWhPJc4um14vC6I4ag==" + }, + "@sec-ant/readable-stream": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz", + "integrity": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==", + "dev": true + }, + "@sindresorhus/merge-streams": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz", + "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==", + "dev": true + }, + "@trysound/sax": { + "version": "0.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" + }, + "@tsconfig/node18": { + "version": "18.2.6", + "resolved": "https://registry.npmmirror.com/@tsconfig/node18/-/node18-18.2.6.tgz", + "integrity": "sha512-eAWQzAjPj18tKnDzmWstz4OyWewLUNBm9tdoN9LayzoboRktYx3Enk1ZXPmThj55L7c4VWYq/Bzq0A51znZfhw==", + "dev": true + }, + "@tybys/wasm-util": { + "version": "0.10.1", + "resolved": "https://registry.npmmirror.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz", + "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==", + "dev": true, + "optional": true, + "requires": { + "tslib": "^2.4.0" + } + }, + "@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true + }, + "@types/json-schema": { + "version": "7.0.15", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true + }, + "@types/lodash": { + "version": "4.17.24", + "resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.17.24.tgz", + "integrity": "sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==" + }, + "@types/lodash-es": { + "version": "4.17.12", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/lodash-es/-/lodash-es-4.17.12.tgz", + "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==", + "requires": { + "@types/lodash": "*" + } + }, + "@types/lodash.merge": { + "version": "4.6.9", + "resolved": "https://registry.npmmirror.com/@types/lodash.merge/-/lodash.merge-4.6.9.tgz", + "integrity": "sha512-23sHDPmzd59kUgWyKGiOMO2Qb9YtqRO/x4IhkgNUiPQ1+5MUVqi6bCZeq9nBJ17msjIMbEIO5u+XW4Kz6aGUhQ==", + "dev": true, + "requires": { + "@types/lodash": "*" + } + }, + "@types/node": { + "version": "18.19.130", + "resolved": "https://registry.npmmirror.com/@types/node/-/node-18.19.130.tgz", + "integrity": "sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg==", + "requires": { + "undici-types": "~5.26.4" + } + }, + "@types/node-forge": { + "version": "1.3.14", + "resolved": "https://registry.npmmirror.com/@types/node-forge/-/node-forge-1.3.14.tgz", + "integrity": "sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/nprogress": { + "version": "0.2.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/nprogress/-/nprogress-0.2.3.tgz", + "integrity": "sha512-k7kRA033QNtC+gLc4VPlfnue58CM1iQLgn1IMAU8VPHGOj7oIHPp9UlhedEnD/Gl8evoCjwkZjlBORtZ3JByUA==", + "dev": true + }, + "@types/raf": { + "version": "3.4.3", + "resolved": "https://registry.npmmirror.com/@types/raf/-/raf-3.4.3.tgz", + "integrity": "sha512-c4YAvMedbPZ5tEyxzQdMoOhhJ4RD3rngZIdwC2/qDN3d7JpEhB6fiBRKVY1lg5B7Wk+uPBjn5f39j1/2MY1oOw==" + }, + "@types/semver": { + "version": "7.5.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", + "dev": true + }, + "@types/sortablejs": { + "version": "1.15.9", + "resolved": "https://registry.npmmirror.com/@types/sortablejs/-/sortablejs-1.15.9.tgz", + "integrity": "sha512-7HP+rZGE2p886PKV9c9OJzLBI6BBJu1O7lJGYnPyG3fS4/duUCcngkNCjsLwIMV+WMqANe3tt4irrXHSIe68OQ==", + "dev": true + }, + "@types/svgo": { + "version": "2.6.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/svgo/-/svgo-2.6.4.tgz", + "integrity": "sha512-l4cmyPEckf8moNYHdJ+4wkHvFxjyW6ulm9l4YGaOxeyBWPhBOT0gvni1InpFPdzx1dKf/2s62qGITwxNWnPQng==", + "requires": { + "@types/node": "*" + } + }, + "@types/web-bluetooth": { + "version": "0.0.20", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz", + "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==" + }, + "@typescript-eslint/eslint-plugin": { + "version": "6.21.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz", + "integrity": "sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==", + "dev": true, + "requires": { + "@eslint-community/regexpp": "^4.5.1", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/type-utils": "6.21.0", + "@typescript-eslint/utils": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.4", + "natural-compare": "^1.4.0", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "dependencies": { + "semver": { + "version": "7.6.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true + } + } + }, + "@typescript-eslint/parser": { + "version": "6.21.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@typescript-eslint/parser/-/parser-6.21.0.tgz", + "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4" + } + }, + "@typescript-eslint/project-service": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/project-service/-/project-service-8.57.0.tgz", + "integrity": "sha512-pR+dK0BlxCLxtWfaKQWtYr7MhKmzqZxuii+ZjuFlZlIGRZm22HnXFqa2eY+90MUz8/i80YJmzFGDUsi8dMOV5w==", + "requires": { + "@typescript-eslint/tsconfig-utils": "^8.57.0", + "@typescript-eslint/types": "^8.57.0", + "debug": "^4.4.3" + }, + "dependencies": { + "@typescript-eslint/types": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/types/-/types-8.57.0.tgz", + "integrity": "sha512-dTLI8PEXhjUC7B9Kre+u0XznO696BhXcTlOn0/6kf1fHaQW8+VjJAVHJ3eTI14ZapTxdkOmc80HblPQLaEeJdg==" + } + } + }, + "@typescript-eslint/scope-manager": { + "version": "6.21.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz", + "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==", + "dev": true, + "requires": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0" + } + }, + "@typescript-eslint/tsconfig-utils": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.57.0.tgz", + "integrity": "sha512-LtXRihc5ytjJIQEH+xqjB0+YgsV4/tW35XKX3GTZHpWtcC8SPkT/d4tqdf1cKtesryHm2bgp6l555NYcT2NLvA==" + }, + "@typescript-eslint/type-utils": { + "version": "6.21.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz", + "integrity": "sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==", + "dev": true, + "requires": { + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/utils": "6.21.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.0.1" + } + }, + "@typescript-eslint/types": { + "version": "6.21.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@typescript-eslint/types/-/types-6.21.0.tgz", + "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "6.21.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz", + "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==", + "dev": true, + "requires": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "9.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "dependencies": { + "semver": { + "version": "7.6.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true + } + } + }, + "@typescript-eslint/utils": { + "version": "6.21.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@typescript-eslint/utils/-/utils-6.21.0.tgz", + "integrity": "sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "semver": "^7.5.4" + }, + "dependencies": { + "semver": { + "version": "7.6.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true + } + } + }, + "@typescript-eslint/visitor-keys": { + "version": "6.21.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz", + "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==", + "dev": true, + "requires": { + "@typescript-eslint/types": "6.21.0", + "eslint-visitor-keys": "^3.4.1" + } + }, + "@unocss/cli": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/cli/-/cli-66.6.6.tgz", + "integrity": "sha512-78SY8j4hAVelK+vP/adsDGaSjEITasYLFECJLHWxUJSzK+G9UIc5wtL/u4jA+zKvwVkHcDvbkcO5K6wwwpAixg==", + "dev": true, + "requires": { + "@jridgewell/remapping": "^2.3.5", + "@unocss/config": "66.6.6", + "@unocss/core": "66.6.6", + "@unocss/preset-wind3": "66.6.6", + "@unocss/preset-wind4": "66.6.6", + "@unocss/transformer-directives": "66.6.6", + "cac": "^6.7.14", + "chokidar": "^5.0.0", + "colorette": "^2.0.20", + "consola": "^3.4.2", + "magic-string": "^0.30.21", + "pathe": "^2.0.3", + "perfect-debounce": "^2.1.0", + "tinyglobby": "^0.2.15", + "unplugin-utils": "^0.3.1" + }, + "dependencies": { + "chokidar": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-5.0.0.tgz", + "integrity": "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==", + "dev": true, + "requires": { + "readdirp": "^5.0.0" + } + }, + "pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true + }, + "perfect-debounce": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-2.1.0.tgz", + "integrity": "sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==", + "dev": true + }, + "readdirp": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-5.0.0.tgz", + "integrity": "sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==", + "dev": true + } + } + }, + "@unocss/config": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/config/-/config-66.6.6.tgz", + "integrity": "sha512-menlnkqAFX/4wR2aandY8hSqrt01JE+rOzvtQxWaBt8kf1du62b0sS72FE5Z40n6HlEsEbF91N9FCfhnzG6i6g==", + "dev": true, + "requires": { + "@unocss/core": "66.6.6", + "colorette": "^2.0.20", + "consola": "^3.4.2", + "unconfig": "^7.5.0" + } + }, + "@unocss/core": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/core/-/core-66.6.6.tgz", + "integrity": "sha512-Sbbx0ZQqmV8K2lg8E+z9MJzWb1MgRtJnvqzxDIrNuBjXasKhbcFt5wEMBtEZJOr63Z4ck0xThhZK53HmYT2jmg==", + "dev": true + }, + "@unocss/extractor-arbitrary-variants": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/extractor-arbitrary-variants/-/extractor-arbitrary-variants-66.6.6.tgz", + "integrity": "sha512-uMzekF2miZRUwSZGvy3yYQiBAcSAs9LiXK8e3NjldxEw8xcRDWgTErxgStRoBeAD6UyzDcg/Cvwtf2guMbtR+g==", + "dev": true, + "requires": { + "@unocss/core": "66.6.6" + } + }, + "@unocss/inspector": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/inspector/-/inspector-66.6.6.tgz", + "integrity": "sha512-CpXIsqHwxCXJtUjUz6S29diHCIA+EJ1u5WML/6m2YPI4ObgWAVKrExy09inSg2icS52lFkWWdWQSeqc9kl5W6Q==", + "dev": true, + "requires": { + "@unocss/core": "66.6.6", + "@unocss/rule-utils": "66.6.6", + "colorette": "^2.0.20", + "gzip-size": "^6.0.0", + "sirv": "^3.0.2" + } + }, + "@unocss/preset-attributify": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-attributify/-/preset-attributify-66.6.6.tgz", + "integrity": "sha512-3H12UI1rBt60PQy+S4IEeFYWu1/WQFuc2yhJ5mu/RCvX5/qwlIGanBpuh+xzTPXU1fWBlZN68yyO9uWOQgTqZQ==", + "dev": true, + "requires": { + "@unocss/core": "66.6.6" + } + }, + "@unocss/preset-icons": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-icons/-/preset-icons-66.6.6.tgz", + "integrity": "sha512-HfIEEqf3jyKexOB2Sux556n0NkPoUftb2H4+Cf7prJvKHopMkZ/OUkXjwvUlxt1e5UpAEaIa0A2Ir7+ApxXoGA==", + "dev": true, + "requires": { + "@iconify/utils": "^3.1.0", + "@unocss/core": "66.6.6", + "ofetch": "^1.5.1" + } + }, + "@unocss/preset-mini": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-mini/-/preset-mini-66.6.6.tgz", + "integrity": "sha512-k+/95PKMPOK57cJcSmz34VkIFem8BlujRRx6/L0Yusw7vLJMh98k0rPhC5s+NomZ/d9ZPgbNylskLhItJlak3w==", + "dev": true, + "requires": { + "@unocss/core": "66.6.6", + "@unocss/extractor-arbitrary-variants": "66.6.6", + "@unocss/rule-utils": "66.6.6" + } + }, + "@unocss/preset-tagify": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-tagify/-/preset-tagify-66.6.6.tgz", + "integrity": "sha512-KgBXYPYS0g4TVC3NLiIB78YIqUlvDLanz1EHIDo34rOTUfMgY8Uf5VuDJAzMu4Sc0LiwwBJbk6nIG9/Zm7ufWg==", + "dev": true, + "requires": { + "@unocss/core": "66.6.6" + } + }, + "@unocss/preset-typography": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-typography/-/preset-typography-66.6.6.tgz", + "integrity": "sha512-SM1km5nqt15z4sTabfOobSC633I5Ol5nnme6JFTra4wiyCUNs+Cg31nJ6jnopWDUT4SEAXqfUH7jKSSoCnI6ZA==", + "dev": true, + "requires": { + "@unocss/core": "66.6.6", + "@unocss/rule-utils": "66.6.6" + } + }, + "@unocss/preset-uno": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-uno/-/preset-uno-66.6.6.tgz", + "integrity": "sha512-40PcBDtlhW7QP7e/WOxC684IhN5T1dXvj1dgx9ZzK+8lEDGjcX7bN2noW4aSenzSrHymeSsMrL/0ltL4ED/5Zw==", + "dev": true, + "requires": { + "@unocss/core": "66.6.6", + "@unocss/preset-wind3": "66.6.6" + } + }, + "@unocss/preset-web-fonts": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-web-fonts/-/preset-web-fonts-66.6.6.tgz", + "integrity": "sha512-5ikwgrJB8VPzKd0bqgGNgYUGix90KFnVtKJPjWTP5qsv3+ZtZnea1rRbAFl8i2t52hg35msNBsQo+40IC3xB6A==", + "dev": true, + "requires": { + "@unocss/core": "66.6.6", + "ofetch": "^1.5.1" + } + }, + "@unocss/preset-wind": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-wind/-/preset-wind-66.6.6.tgz", + "integrity": "sha512-TMy3lZ35FP/4QqDHOLWZmV+RoOGWUDqnDEOTjOKI1CQARGta0ppUmq+IZMuI1ZJLuOa4OZ9V6SfnwMXwRLgXmw==", + "dev": true, + "requires": { + "@unocss/core": "66.6.6", + "@unocss/preset-wind3": "66.6.6" + } + }, + "@unocss/preset-wind3": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-wind3/-/preset-wind3-66.6.6.tgz", + "integrity": "sha512-rk6gPPIQ7z2DVucOqp7XZ4vGpKAuzBV1vtUDvDh5WscxzO/QlqaeTfTALk5YgGpmLaF4+ns6FrTgLjV+wHgHuQ==", + "dev": true, + "requires": { + "@unocss/core": "66.6.6", + "@unocss/preset-mini": "66.6.6", + "@unocss/rule-utils": "66.6.6" + } + }, + "@unocss/preset-wind4": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/preset-wind4/-/preset-wind4-66.6.6.tgz", + "integrity": "sha512-caTDM9rZSlp4tyPWWAnwMvQr2PXq53LsEYwd3N8zj0ou2hcsqptJvF+mFvyhvGF66x26wWJr/FwuUEhh7qycaw==", + "dev": true, + "requires": { + "@unocss/core": "66.6.6", + "@unocss/extractor-arbitrary-variants": "66.6.6", + "@unocss/rule-utils": "66.6.6" + } + }, + "@unocss/rule-utils": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/rule-utils/-/rule-utils-66.6.6.tgz", + "integrity": "sha512-krWtQKGshOaqQMuxeGq1NOA8NL35VdpYlmQEWOe39BY6TACT51bgQFu40MRfsAIMZZtoGS2YYTrnHojgR92omw==", + "dev": true, + "requires": { + "@unocss/core": "^66.6.6", + "magic-string": "^0.30.21" + } + }, + "@unocss/transformer-attributify-jsx": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/transformer-attributify-jsx/-/transformer-attributify-jsx-66.6.6.tgz", + "integrity": "sha512-NnDchmN2EeFLy4lfVqDgNe9j1+w2RLL2L9zKECXs5g6rDVfeeEK6FNgxSq3XnPcKltjNCy1pF4MaDOROG7r8yA==", + "dev": true, + "requires": { + "@unocss/core": "66.6.6", + "oxc-parser": "^0.115.0", + "oxc-walker": "^0.7.0" + } + }, + "@unocss/transformer-compile-class": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/transformer-compile-class/-/transformer-compile-class-66.6.6.tgz", + "integrity": "sha512-KKssJxU8fZ9x84yznIirbtta2sB0LN/3lm0bp+Wl1298HITaNiVeG2n26iStQ3N7r240xRN2RarxncSVCMFwWw==", + "dev": true, + "requires": { + "@unocss/core": "66.6.6" + } + }, + "@unocss/transformer-directives": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/transformer-directives/-/transformer-directives-66.6.6.tgz", + "integrity": "sha512-CReFTcBfMtKkRvzIqxL20VptWt5C1Om27dwoKzyVFBXv0jzViWysbu0y0AQg3bsgD4cFqndFyAGyeL84j0nbKg==", + "dev": true, + "requires": { + "@unocss/core": "66.6.6", + "@unocss/rule-utils": "66.6.6", + "css-tree": "^3.1.0" + }, + "dependencies": { + "css-tree": { + "version": "3.2.1", + "resolved": "https://registry.npmmirror.com/css-tree/-/css-tree-3.2.1.tgz", + "integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==", + "dev": true, + "requires": { + "mdn-data": "2.27.1", + "source-map-js": "^1.2.1" + } + }, + "mdn-data": { + "version": "2.27.1", + "resolved": "https://registry.npmmirror.com/mdn-data/-/mdn-data-2.27.1.tgz", + "integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==", + "dev": true + } + } + }, + "@unocss/transformer-variant-group": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/transformer-variant-group/-/transformer-variant-group-66.6.6.tgz", + "integrity": "sha512-j4L/0Tw6AdMVB2dDnuBlDbevyL1/0CAk88a77VF/VjgEIBwB9VXsCCUsxz+2Dohcl7N2GMm7+kpaWA6qt2PSaA==", + "dev": true, + "requires": { + "@unocss/core": "66.6.6" + } + }, + "@unocss/vite": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/@unocss/vite/-/vite-66.6.6.tgz", + "integrity": "sha512-DgG7KcUUMtoDhPOlFf2l4dR+66xZ23SdZvTYpikk5nZfLCzZd62vedutD7x0bTR6VpK2YRq39B+F+Z6TktNY/w==", + "dev": true, + "requires": { + "@jridgewell/remapping": "^2.3.5", + "@unocss/config": "66.6.6", + "@unocss/core": "66.6.6", + "@unocss/inspector": "66.6.6", + "chokidar": "^5.0.0", + "magic-string": "^0.30.21", + "pathe": "^2.0.3", + "tinyglobby": "^0.2.15", + "unplugin-utils": "^0.3.1" + }, + "dependencies": { + "chokidar": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-5.0.0.tgz", + "integrity": "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==", + "dev": true, + "requires": { + "readdirp": "^5.0.0" + } + }, + "pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true + }, + "readdirp": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-5.0.0.tgz", + "integrity": "sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==", + "dev": true + } + } + }, + "@vitejs/plugin-vue": { + "version": "6.0.4", + "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-6.0.4.tgz", + "integrity": "sha512-uM5iXipgYIn13UUQCZNdWkYk+sysBeA97d5mHsAoAt1u/wpN3+zxOmsVJWosuzX+IMGRzeYUNytztrYznboIkQ==", + "dev": true, + "requires": { + "@rolldown/pluginutils": "1.0.0-rc.2" + } + }, + "@vitejs/plugin-vue-jsx": { + "version": "5.1.4", + "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-5.1.4.tgz", + "integrity": "sha512-70LmoVk9riR7qc4W2CpjsbNMWTPnuZb9dpFKX1emru0yP57nsc9k8nhLA6U93ngQapv5VDIUq2JatNfLbBIkrA==", + "dev": true, + "requires": { + "@babel/core": "^7.29.0", + "@babel/plugin-syntax-typescript": "^7.28.6", + "@babel/plugin-transform-typescript": "^7.28.6", + "@rolldown/pluginutils": "^1.0.0-rc.2", + "@vue/babel-plugin-jsx": "^2.0.1" + } + }, + "@volar/language-core": { + "version": "2.4.15", + "resolved": "https://registry.npmmirror.com/@volar/language-core/-/language-core-2.4.15.tgz", + "integrity": "sha512-3VHw+QZU0ZG9IuQmzT68IyN4hZNd9GchGPhbD9+pa8CVv7rnoOZwo7T8weIbrRmihqy3ATpdfXFnqRrfPVK6CA==", + "dev": true, + "requires": { + "@volar/source-map": "2.4.15" + } + }, + "@volar/source-map": { + "version": "2.4.15", + "resolved": "https://registry.npmmirror.com/@volar/source-map/-/source-map-2.4.15.tgz", + "integrity": "sha512-CPbMWlUN6hVZJYGcU/GSoHu4EnCHiLaXI9n8c9la6RaI9W5JHX+NqG+GSQcB0JdC2FIBLdZJwGsfKyBB71VlTg==", + "dev": true + }, + "@volar/typescript": { + "version": "2.4.15", + "resolved": "https://registry.npmmirror.com/@volar/typescript/-/typescript-2.4.15.tgz", + "integrity": "sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==", + "dev": true, + "requires": { + "@volar/language-core": "2.4.15", + "path-browserify": "^1.0.1", + "vscode-uri": "^3.0.8" + } + }, + "@vue/babel-helper-vue-transform-on": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-2.0.1.tgz", + "integrity": "sha512-uZ66EaFbnnZSYqYEyplWvn46GhZ1KuYSThdT68p+am7MgBNbQ3hphTL9L+xSIsWkdktwhPYLwPgVWqo96jDdRA==", + "dev": true + }, + "@vue/babel-plugin-jsx": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-2.0.1.tgz", + "integrity": "sha512-a8CaLQjD/s4PVdhrLD/zT574ZNPnZBOY+IhdtKWRB4HRZ0I2tXBi5ne7d9eCfaYwp5gU5+4KIyFTV1W1YL9xZA==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-syntax-jsx": "^7.27.1", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.4", + "@babel/types": "^7.28.4", + "@vue/babel-helper-vue-transform-on": "2.0.1", + "@vue/babel-plugin-resolve-type": "2.0.1", + "@vue/shared": "^3.5.22" + } + }, + "@vue/babel-plugin-resolve-type": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-2.0.1.tgz", + "integrity": "sha512-ybwgIuRGRRBhOU37GImDoWQoz+TlSqap65qVI6iwg/J7FfLTLmMf97TS7xQH9I7Qtr/gp161kYVdhr1ZMraSYQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.27.1", + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/parser": "^7.28.4", + "@vue/compiler-sfc": "^3.5.22" + } + }, + "@vue/compiler-core": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.30.tgz", + "integrity": "sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==", + "requires": { + "@babel/parser": "^7.29.0", + "@vue/shared": "3.5.30", + "entities": "^7.0.1", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.1" + } + }, + "@vue/compiler-dom": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.30.tgz", + "integrity": "sha512-eCFYESUEVYHhiMuK4SQTldO3RYxyMR/UQL4KdGD1Yrkfdx4m/HYuZ9jSfPdA+nWJY34VWndiYdW/wZXyiPEB9g==", + "requires": { + "@vue/compiler-core": "3.5.30", + "@vue/shared": "3.5.30" + } + }, + "@vue/compiler-sfc": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.30.tgz", + "integrity": "sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==", + "requires": { + "@babel/parser": "^7.29.0", + "@vue/compiler-core": "3.5.30", + "@vue/compiler-dom": "3.5.30", + "@vue/compiler-ssr": "3.5.30", + "@vue/shared": "3.5.30", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.21", + "postcss": "^8.5.8", + "source-map-js": "^1.2.1" + } + }, + "@vue/compiler-ssr": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.30.tgz", + "integrity": "sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==", + "requires": { + "@vue/compiler-dom": "3.5.30", + "@vue/shared": "3.5.30" + } + }, + "@vue/compiler-vue2": { + "version": "2.7.16", + "resolved": "https://registry.npmmirror.com/@vue/compiler-vue2/-/compiler-vue2-2.7.16.tgz", + "integrity": "sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==", + "dev": true, + "requires": { + "de-indent": "^1.0.2", + "he": "^1.2.0" + } + }, + "@vue/devtools-api": { + "version": "6.6.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vue/devtools-api/-/devtools-api-6.6.4.tgz", + "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==" + }, + "@vue/devtools-core": { + "version": "7.7.9", + "resolved": "https://registry.npmmirror.com/@vue/devtools-core/-/devtools-core-7.7.9.tgz", + "integrity": "sha512-48jrBSwG4GVQRvVeeXn9p9+dlx+ISgasM7SxZZKczseohB0cBz+ITKr4YbLWjmJdy45UHL7UMPlR4Y0CWTRcSQ==", + "dev": true, + "requires": { + "@vue/devtools-kit": "^7.7.9", + "@vue/devtools-shared": "^7.7.9", + "mitt": "^3.0.1", + "nanoid": "^5.1.0", + "pathe": "^2.0.3", + "vite-hot-client": "^2.0.4" + }, + "dependencies": { + "nanoid": { + "version": "5.1.6", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-5.1.6.tgz", + "integrity": "sha512-c7+7RQ+dMB5dPwwCp4ee1/iV/q2P6aK1mTZcfr1BTuVlyW9hJYiMPybJCcnBlQtuSmTIWNeazm/zqNoZSSElBg==", + "dev": true + }, + "pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true + } + } + }, + "@vue/devtools-kit": { + "version": "7.7.9", + "resolved": "https://registry.npmmirror.com/@vue/devtools-kit/-/devtools-kit-7.7.9.tgz", + "integrity": "sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==", + "dev": true, + "requires": { + "@vue/devtools-shared": "^7.7.9", + "birpc": "^2.3.0", + "hookable": "^5.5.3", + "mitt": "^3.0.1", + "perfect-debounce": "^1.0.0", + "speakingurl": "^14.0.1", + "superjson": "^2.2.2" + } + }, + "@vue/devtools-shared": { + "version": "7.7.9", + "resolved": "https://registry.npmmirror.com/@vue/devtools-shared/-/devtools-shared-7.7.9.tgz", + "integrity": "sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==", + "dev": true, + "requires": { + "rfdc": "^1.4.1" + } + }, + "@vue/eslint-config-prettier": { + "version": "8.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vue/eslint-config-prettier/-/eslint-config-prettier-8.0.0.tgz", + "integrity": "sha512-55dPqtC4PM/yBjhAr+yEw6+7KzzdkBuLmnhBrDfp4I48+wy+Giqqj9yUr5T2uD/BkBROjjmqnLZmXRdOx/VtQg==", + "dev": true, + "requires": { + "eslint-config-prettier": "^8.8.0", + "eslint-plugin-prettier": "^5.0.0" + } + }, + "@vue/eslint-config-typescript": { + "version": "12.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vue/eslint-config-typescript/-/eslint-config-typescript-12.0.0.tgz", + "integrity": "sha512-StxLFet2Qe97T8+7L8pGlhYBBr8Eg05LPuTDVopQV6il+SK6qqom59BA/rcFipUef2jD8P2X44Vd8tMFytfvlg==", + "dev": true, + "requires": { + "@typescript-eslint/eslint-plugin": "^6.7.0", + "@typescript-eslint/parser": "^6.7.0", + "vue-eslint-parser": "^9.3.1" + }, + "dependencies": { + "eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "espree": { + "version": "9.6.1", + "resolved": "https://registry.npmmirror.com/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "requires": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + } + }, + "semver": { + "version": "7.7.4", + "resolved": "https://registry.npmmirror.com/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "dev": true + }, + "vue-eslint-parser": { + "version": "9.4.3", + "resolved": "https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-9.4.3.tgz", + "integrity": "sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==", + "dev": true, + "requires": { + "debug": "^4.3.4", + "eslint-scope": "^7.1.1", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.3.1", + "esquery": "^1.4.0", + "lodash": "^4.17.21", + "semver": "^7.3.6" + } + } + } + }, + "@vue/language-core": { + "version": "2.2.12", + "resolved": "https://registry.npmmirror.com/@vue/language-core/-/language-core-2.2.12.tgz", + "integrity": "sha512-IsGljWbKGU1MZpBPN+BvPAdr55YPkj2nB/TBNGNC32Vy2qLG25DYu/NBN2vNtZqdRbTRjaoYrahLrToim2NanA==", + "dev": true, + "requires": { + "@volar/language-core": "2.4.15", + "@vue/compiler-dom": "^3.5.0", + "@vue/compiler-vue2": "^2.7.16", + "@vue/shared": "^3.5.0", + "alien-signals": "^1.0.3", + "minimatch": "^9.0.3", + "muggle-string": "^0.4.1", + "path-browserify": "^1.0.1" + } + }, + "@vue/reactivity": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.30.tgz", + "integrity": "sha512-179YNgKATuwj9gB+66snskRDOitDiuOZqkYia7mHKJaidOMo/WJxHKF8DuGc4V4XbYTJANlfEKb0yxTQotnx4Q==", + "requires": { + "@vue/shared": "3.5.30" + } + }, + "@vue/runtime-core": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.30.tgz", + "integrity": "sha512-e0Z+8PQsUTdwV8TtEsLzUM7SzC7lQwYKePydb7K2ZnmS6jjND+WJXkmmfh/swYzRyfP1EY3fpdesyYoymCzYfg==", + "requires": { + "@vue/reactivity": "3.5.30", + "@vue/shared": "3.5.30" + } + }, + "@vue/runtime-dom": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.30.tgz", + "integrity": "sha512-2UIGakjU4WSQ0T4iwDEW0W7vQj6n7AFn7taqZ9Cvm0Q/RA2FFOziLESrDL4GmtI1wV3jXg5nMoJSYO66egDUBw==", + "requires": { + "@vue/reactivity": "3.5.30", + "@vue/runtime-core": "3.5.30", + "@vue/shared": "3.5.30", + "csstype": "^3.2.3" + } + }, + "@vue/server-renderer": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.30.tgz", + "integrity": "sha512-v+R34icapydRwbZRD0sXwtHqrQJv38JuMB4JxbOxd8NEpGLny7cncMp53W9UH/zo4j8eDHjQ1dEJXwzFQknjtQ==", + "requires": { + "@vue/compiler-ssr": "3.5.30", + "@vue/shared": "3.5.30" + } + }, + "@vue/shared": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.30.tgz", + "integrity": "sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==" + }, + "@vue/tsconfig": { + "version": "0.5.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vue/tsconfig/-/tsconfig-0.5.1.tgz", + "integrity": "sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==", + "dev": true + }, + "@vueuse/core": { + "version": "10.11.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vueuse/core/-/core-10.11.1.tgz", + "integrity": "sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==", + "requires": { + "@types/web-bluetooth": "^0.0.20", + "@vueuse/metadata": "10.11.1", + "@vueuse/shared": "10.11.1", + "vue-demi": ">=0.14.8" + }, + "dependencies": { + "vue-demi": { + "version": "0.14.10", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==" + } + } + }, + "@vueuse/metadata": { + "version": "10.11.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vueuse/metadata/-/metadata-10.11.1.tgz", + "integrity": "sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==" + }, + "@vueuse/shared": { + "version": "10.11.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vueuse/shared/-/shared-10.11.1.tgz", + "integrity": "sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==", + "requires": { + "vue-demi": ">=0.14.8" + }, + "dependencies": { + "vue-demi": { + "version": "0.14.10", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==" + } + } + }, + "ace-builds": { + "version": "1.43.6", + "resolved": "https://registry.npmmirror.com/ace-builds/-/ace-builds-1.43.6.tgz", + "integrity": "sha512-L1ddibQ7F3vyXR2k2fg+I8TQTPWVA6CKeDQr/h2+8CeyTp3W6EQL8xNFZRTztuP8xNOAqL3IYPqdzs31GCjDvg==" + }, + "acorn": { + "version": "8.16.0", + "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.16.0.tgz", + "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==" + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" + }, + "ajv": { + "version": "6.14.0", + "resolved": "https://registry.npmmirror.com/ajv/-/ajv-6.14.0.tgz", + "integrity": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "alien-signals": { + "version": "1.0.13", + "resolved": "https://registry.npmmirror.com/alien-signals/-/alien-signals-1.0.13.tgz", + "integrity": "sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==", + "dev": true + }, + "animate.css": { + "version": "4.1.1", + "resolved": "https://registry.npmmirror.com/animate.css/-/animate.css-4.1.1.tgz", + "integrity": "sha512-+mRmCTv6SbCmtYJCN4faJMNFVNN5EuCTTprDTAo7YzIGji2KADmakjVA3+8mVDkZ2Bf09vayB35lSQIex2+QaQ==" + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==" + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==" + }, + "array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "requires": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + } + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==" + }, + "arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "requires": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + } + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==" + }, + "async-validator": { + "version": "4.2.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/async-validator/-/async-validator-4.2.5.tgz", + "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "atob": { + "version": "2.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" + }, + "available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "requires": { + "possible-typed-array-names": "^1.0.0" + } + }, + "axios": { + "version": "1.13.6", + "resolved": "https://registry.npmmirror.com/axios/-/axios-1.13.6.tgz", + "integrity": "sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==", + "requires": { + "follow-redirects": "^1.15.11", + "form-data": "^4.0.5", + "proxy-from-env": "^1.1.0" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "base": { + "version": "0.11.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + } + }, + "base64-arraybuffer": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==" + }, + "baseline-browser-mapping": { + "version": "2.10.0", + "resolved": "https://registry.npmmirror.com/baseline-browser-mapping/-/baseline-browser-mapping-2.10.0.tgz", + "integrity": "sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==", + "dev": true + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "birpc": { + "version": "2.9.0", + "resolved": "https://registry.npmmirror.com/birpc/-/birpc-2.9.0.tgz", + "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==", + "dev": true + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + }, + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "braces": { + "version": "3.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "requires": { + "fill-range": "^7.1.1" + } + }, + "browserslist": { + "version": "4.28.1", + "resolved": "https://registry.npmmirror.com/browserslist/-/browserslist-4.28.1.tgz", + "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", + "dev": true, + "requires": { + "baseline-browser-mapping": "^2.9.0", + "caniuse-lite": "^1.0.30001759", + "electron-to-chromium": "^1.5.263", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.2.0" + } + }, + "bundle-name": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/bundle-name/-/bundle-name-4.1.0.tgz", + "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", + "dev": true, + "requires": { + "run-applescript": "^7.0.0" + } + }, + "cac": { + "version": "6.7.14", + "resolved": "https://registry.npmmirror.com/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + } + }, + "call-bind": { + "version": "1.0.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "requires": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + } + }, + "call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "requires": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30001778", + "resolved": "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001778.tgz", + "integrity": "sha512-PN7uxFL+ExFJO61aVmP1aIEG4i9whQd4eoSCebav62UwDyp5OHh06zN4jqKSMePVgxHifCw1QJxdRkA1Pisekg==", + "dev": true + }, + "canvg": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/canvg/-/canvg-4.0.3.tgz", + "integrity": "sha512-fKzMoMBwus3CWo1Uy8XJc4tqqn98RoRrGV6CsIkaNiQT5lOeHuMh4fOt+LXLzn2Wqtr4p/c2TOLz4xtu4oBlFA==", + "requires": { + "@types/raf": "^3.4.0", + "raf": "^3.4.1", + "rgbcolor": "^1.0.1", + "stackblur-canvas": "^2.0.0", + "svg-pathdata": "^6.0.3" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "chokidar": { + "version": "4.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/chokidar/-/chokidar-4.0.1.tgz", + "integrity": "sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==", + "dev": true, + "requires": { + "readdirp": "^4.0.1" + } + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-descriptor": { + "version": "0.1.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + } + }, + "clone": { + "version": "2.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==" + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmmirror.com/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "7.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + }, + "component-emitter": { + "version": "1.3.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/component-emitter/-/component-emitter-1.3.1.tgz", + "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "confbox": { + "version": "0.1.8", + "resolved": "https://registry.npmmirror.com/confbox/-/confbox-0.1.8.tgz", + "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==", + "dev": true + }, + "consola": { + "version": "3.4.2", + "resolved": "https://registry.npmmirror.com/consola/-/consola-3.4.2.tgz", + "integrity": "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==", + "dev": true + }, + "convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "copy-anything": { + "version": "4.0.5", + "resolved": "https://registry.npmmirror.com/copy-anything/-/copy-anything-4.0.5.tgz", + "integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==", + "dev": true, + "requires": { + "is-what": "^5.2.0" + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==" + }, + "cors": { + "version": "2.8.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "requires": { + "object-assign": "^4", + "vary": "^1" + } + }, + "cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "css-line-break": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/css-line-break/-/css-line-break-2.1.0.tgz", + "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", + "requires": { + "utrie": "^1.0.2" + } + }, + "css-select": { + "version": "4.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "dependencies": { + "dom-serializer": { + "version": "1.4.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + }, + "domhandler": { + "version": "4.3.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + } + } + }, + "css-tree": { + "version": "1.1.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "css-what": { + "version": "6.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + }, + "csso": { + "version": "4.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "requires": { + "css-tree": "^1.1.2" + } + }, + "csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==" + }, + "data-view-buffer": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "requires": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + } + }, + "data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "requires": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + } + }, + "data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "requires": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + } + }, + "dayjs": { + "version": "1.11.19", + "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.19.tgz", + "integrity": "sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==" + }, + "de-indent": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/de-indent/-/de-indent-1.0.2.tgz", + "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==", + "dev": true + }, + "debug": { + "version": "4.4.3", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "requires": { + "ms": "^2.1.3" + } + }, + "decode-uri-component": { + "version": "0.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==" + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "default-browser": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/default-browser/-/default-browser-5.5.0.tgz", + "integrity": "sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==", + "dev": true, + "requires": { + "bundle-name": "^4.1.0", + "default-browser-id": "^5.0.0" + } + }, + "default-browser-id": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/default-browser-id/-/default-browser-id-5.0.1.tgz", + "integrity": "sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==", + "dev": true + }, + "define-data-property": { + "version": "1.1.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "requires": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + } + }, + "define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "dev": true + }, + "define-properties": { + "version": "1.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "requires": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "define-property": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "defu": { + "version": "6.1.4", + "resolved": "https://registry.npmmirror.com/defu/-/defu-6.1.4.tgz", + "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==", + "dev": true + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + }, + "destr": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/destr/-/destr-2.0.5.tgz", + "integrity": "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==", + "dev": true + }, + "detect-libc": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "dev": true, + "optional": true + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + }, + "entities": { + "version": "2.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + } + } + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "domhandler": { + "version": "2.4.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "requires": { + "domelementtype": "1" + } + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "requires": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + } + }, + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmmirror.com/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true + }, + "electron-to-chromium": { + "version": "1.5.307", + "resolved": "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.5.307.tgz", + "integrity": "sha512-5z3uFKBWjiNR44nFcYdkcXjKMbg5KXNdciu7mhTPo9tB7NbqSNP2sSnGR+fqknZSCwKkBN+oxiiajWs4dT6ORg==", + "dev": true + }, + "element-plus": { + "version": "2.13.5", + "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.13.5.tgz", + "integrity": "sha512-dmY24fhSREfZN/PuUt0YZigMso7wWzl+B5o+YKNN15kQIn/0hzamsPU+ebj9SES0IbUqsLX1wkrzYmzU8VrVOQ==", + "requires": { + "@ctrl/tinycolor": "^4.2.0", + "@element-plus/icons-vue": "^2.3.2", + "@floating-ui/dom": "^1.0.1", + "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7", + "@types/lodash": "^4.17.20", + "@types/lodash-es": "^4.17.12", + "@vueuse/core": "12.0.0", + "async-validator": "^4.2.5", + "dayjs": "^1.11.19", + "lodash": "^4.17.23", + "lodash-es": "^4.17.23", + "lodash-unified": "^1.0.3", + "memoize-one": "^6.0.0", + "normalize-wheel-es": "^1.2.0" + }, + "dependencies": { + "@vueuse/core": { + "version": "12.0.0", + "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-12.0.0.tgz", + "integrity": "sha512-C12RukhXiJCbx4MGhjmd/gH52TjJsc3G0E0kQj/kb19H3Nt6n1CA4DRWuTdWWcaFRdlTe0npWDS942mvacvNBw==", + "requires": { + "@types/web-bluetooth": "^0.0.20", + "@vueuse/metadata": "12.0.0", + "@vueuse/shared": "12.0.0", + "vue": "^3.5.13" + } + }, + "@vueuse/metadata": { + "version": "12.0.0", + "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-12.0.0.tgz", + "integrity": "sha512-Yzimd1D3sjxTDOlF05HekU5aSGdKjxhuhRFHA7gDWLn57PRbBIh+SF5NmjhJ0WRgF3my7T8LBucyxdFJjIfRJQ==" + }, + "@vueuse/shared": { + "version": "12.0.0", + "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-12.0.0.tgz", + "integrity": "sha512-3i6qtcq2PIio5i/vVYidkkcgvmTjCqrf26u+Fd4LhnbBmIT6FN8y6q/GJERp8lfcB9zVEfjdV0Br0443qZuJpw==", + "requires": { + "vue": "^3.5.13" + } + } + } + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "entities": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/entities/-/entities-7.0.1.tgz", + "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==" + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmmirror.com/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "optional": true, + "requires": { + "prr": "~1.0.1" + } + }, + "error-stack-parser-es": { + "version": "0.1.5", + "resolved": "https://registry.npmmirror.com/error-stack-parser-es/-/error-stack-parser-es-0.1.5.tgz", + "integrity": "sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==", + "dev": true + }, + "es-abstract": { + "version": "1.23.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "requires": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + } + }, + "es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==" + }, + "es-errors": { + "version": "1.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" + }, + "es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "requires": { + "es-errors": "^1.3.0" + } + }, + "es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "requires": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "esbuild": { + "version": "0.25.12", + "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.25.12.tgz", + "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==", + "dev": true, + "requires": { + "@esbuild/aix-ppc64": "0.25.12", + "@esbuild/android-arm": "0.25.12", + "@esbuild/android-arm64": "0.25.12", + "@esbuild/android-x64": "0.25.12", + "@esbuild/darwin-arm64": "0.25.12", + "@esbuild/darwin-x64": "0.25.12", + "@esbuild/freebsd-arm64": "0.25.12", + "@esbuild/freebsd-x64": "0.25.12", + "@esbuild/linux-arm": "0.25.12", + "@esbuild/linux-arm64": "0.25.12", + "@esbuild/linux-ia32": "0.25.12", + "@esbuild/linux-loong64": "0.25.12", + "@esbuild/linux-mips64el": "0.25.12", + "@esbuild/linux-ppc64": "0.25.12", + "@esbuild/linux-riscv64": "0.25.12", + "@esbuild/linux-s390x": "0.25.12", + "@esbuild/linux-x64": "0.25.12", + "@esbuild/netbsd-arm64": "0.25.12", + "@esbuild/netbsd-x64": "0.25.12", + "@esbuild/openbsd-arm64": "0.25.12", + "@esbuild/openbsd-x64": "0.25.12", + "@esbuild/openharmony-arm64": "0.25.12", + "@esbuild/sunos-x64": "0.25.12", + "@esbuild/win32-arm64": "0.25.12", + "@esbuild/win32-ia32": "0.25.12", + "@esbuild/win32-x64": "0.25.12" + } + }, + "escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + }, + "eslint": { + "version": "9.39.4", + "resolved": "https://registry.npmmirror.com/eslint/-/eslint-9.39.4.tgz", + "integrity": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.2", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.5", + "@eslint/js": "9.39.4", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.14.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.5", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true + }, + "minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } + } + }, + "eslint-config-prettier": { + "version": "8.10.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz", + "integrity": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==", + "dev": true + }, + "eslint-plugin-prettier": { + "version": "5.5.5", + "resolved": "https://registry.npmmirror.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.5.5.tgz", + "integrity": "sha512-hscXkbqUZ2sPithAuLm5MXL+Wph+U7wHngPBv9OMWwlP8iaflyxpjTYZkmdgB4/vPIhemRlBEoLrH7UC1n7aUw==", + "requires": { + "prettier-linter-helpers": "^1.0.1", + "synckit": "^0.11.12" + } + }, + "eslint-plugin-vue": { + "version": "10.8.0", + "resolved": "https://registry.npmmirror.com/eslint-plugin-vue/-/eslint-plugin-vue-10.8.0.tgz", + "integrity": "sha512-f1J/tcbnrpgC8suPN5AtdJ5MQjuXbSU9pGRSSYAuF3SHoiYCOdEX6O22pLaRyLHXvDcOe+O5ENgc1owQ587agA==", + "requires": { + "@eslint-community/eslint-utils": "^4.4.0", + "natural-compare": "^1.4.0", + "nth-check": "^2.1.1", + "postcss-selector-parser": "^7.1.0", + "semver": "^7.6.3", + "xml-name-validator": "^4.0.0" + }, + "dependencies": { + "semver": { + "version": "7.6.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==" + } + } + }, + "eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" + }, + "espree": { + "version": "10.4.0", + "resolved": "https://registry.npmmirror.com/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "requires": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==" + } + } + }, + "esquery": { + "version": "1.6.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + }, + "estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + }, + "execa": { + "version": "9.6.1", + "resolved": "https://registry.npmmirror.com/execa/-/execa-9.6.1.tgz", + "integrity": "sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==", + "dev": true, + "requires": { + "@sindresorhus/merge-streams": "^4.0.0", + "cross-spawn": "^7.0.6", + "figures": "^6.1.0", + "get-stream": "^9.0.0", + "human-signals": "^8.0.1", + "is-plain-obj": "^4.1.0", + "is-stream": "^4.0.1", + "npm-run-path": "^6.0.0", + "pretty-ms": "^9.2.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^4.0.0", + "yoctocolors": "^2.1.1" + }, + "dependencies": { + "is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "dev": true + } + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-descriptor": { + "version": "0.1.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-diff": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==" + }, + "fast-glob": { + "version": "3.3.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "fastq": { + "version": "1.17.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==" + }, + "figures": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/figures/-/figures-6.1.0.tgz", + "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", + "dev": true, + "requires": { + "is-unicode-supported": "^2.0.0" + } + }, + "file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "requires": { + "flat-cache": "^4.0.0" + } + }, + "fill-range": { + "version": "7.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "requires": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + } + }, + "flatted": { + "version": "3.4.1", + "resolved": "https://registry.npmmirror.com/flatted/-/flatted-3.4.1.tgz", + "integrity": "sha512-IxfVbRFVlV8V/yRaGzk0UVIcsKKHMSfYw66T/u4nTwlWteQePsxe//LjudR1AMX4tZW3WFCh3Zqa/sjlqpbURQ==", + "dev": true + }, + "follow-redirects": { + "version": "1.15.11", + "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.11.tgz", + "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==" + }, + "for-each": { + "version": "0.3.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "requires": { + "is-callable": "^1.1.3" + } + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==" + }, + "form-data": { + "version": "4.0.5", + "resolved": "https://registry.npmmirror.com/form-data/-/form-data-4.0.5.tgz", + "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + } + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "requires": { + "map-cache": "^0.2.2" + } + }, + "fs-extra": { + "version": "10.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" + }, + "function.prototype.name": { + "version": "1.1.6", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + } + }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "requires": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + } + }, + "get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "requires": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + } + }, + "get-stream": { + "version": "9.0.1", + "resolved": "https://registry.npmmirror.com/get-stream/-/get-stream-9.0.1.tgz", + "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==", + "dev": true, + "requires": { + "@sec-ant/readable-stream": "^0.4.1", + "is-stream": "^4.0.1" + } + }, + "get-symbol-description": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "requires": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==" + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "globals": { + "version": "16.5.0", + "resolved": "https://registry.npmmirror.com/globals/-/globals-16.5.0.tgz", + "integrity": "sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==" + }, + "globalthis": { + "version": "1.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "requires": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, + "gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==" + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "graphemer": { + "version": "1.4.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dev": true, + "requires": { + "duplexer": "^0.1.2" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==" + } + } + }, + "has-bigints": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "requires": { + "es-define-property": "^1.0.0" + } + }, + "has-proto": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==" + }, + "has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==" + }, + "has-tostringtag": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "requires": { + "has-symbols": "^1.0.3" + } + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hasown": { + "version": "2.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "requires": { + "function-bind": "^1.1.2" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, + "highlight.js": { + "version": "11.11.1", + "resolved": "https://registry.npmmirror.com/highlight.js/-/highlight.js-11.11.1.tgz", + "integrity": "sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==" + }, + "hookable": { + "version": "5.5.3", + "resolved": "https://registry.npmmirror.com/hookable/-/hookable-5.5.3.tgz", + "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==", + "dev": true + }, + "html2canvas": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/html2canvas/-/html2canvas-1.4.1.tgz", + "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", + "requires": { + "css-line-break": "^2.1.0", + "text-segmentation": "^1.0.3" + } + }, + "htmlparser2": { + "version": "3.10.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + }, + "dependencies": { + "entities": { + "version": "1.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" + } + } + }, + "human-signals": { + "version": "8.0.1", + "resolved": "https://registry.npmmirror.com/human-signals/-/human-signals-8.0.1.tgz", + "integrity": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==", + "dev": true + }, + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "optional": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + }, + "ignore": { + "version": "5.3.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true + }, + "image-size": { + "version": "0.5.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==" + }, + "immutable": { + "version": "5.1.5", + "resolved": "https://registry.npmmirror.com/immutable/-/immutable-5.1.5.tgz", + "integrity": "sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==", + "dev": true + }, + "import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "internal-slot": { + "version": "1.0.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "requires": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + } + }, + "is-accessor-descriptor": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", + "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", + "requires": { + "hasown": "^2.0.0" + } + }, + "is-array-buffer": { + "version": "3.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + } + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "is-callable": { + "version": "1.2.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + }, + "is-data-descriptor": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", + "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", + "requires": { + "hasown": "^2.0.0" + } + }, + "is-data-view": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "requires": { + "is-typed-array": "^1.1.13" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-descriptor": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + }, + "is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "dev": true + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==" + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "dev": true, + "requires": { + "is-docker": "^3.0.0" + } + }, + "is-negative-zero": { + "version": "2.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==" + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-number-object": { + "version": "1.0.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + } + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "requires": { + "call-bind": "^1.0.7" + } + }, + "is-stream": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/is-stream/-/is-stream-4.0.1.tgz", + "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", + "dev": true + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-typed-array": { + "version": "1.1.13", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "requires": { + "which-typed-array": "^1.1.14" + } + }, + "is-unicode-supported": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", + "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", + "dev": true + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-what": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/is-what/-/is-what-5.5.0.tgz", + "integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==", + "dev": true + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + }, + "is-wsl": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/is-wsl/-/is-wsl-3.1.1.tgz", + "integrity": "sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==", + "dev": true, + "requires": { + "is-inside-container": "^1.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "requires": { + "isarray": "1.0.0" + } + }, + "jiti": { + "version": "2.6.1", + "resolved": "https://registry.npmmirror.com/jiti/-/jiti-2.6.1.tgz", + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", + "dev": true + }, + "jodit": { + "version": "4.11.13", + "resolved": "https://registry.npmmirror.com/jodit/-/jodit-4.11.13.tgz", + "integrity": "sha512-G/Tx18n7dYxS8Ewpm21sIpARQzIKk/DombIgR9tll/so+HwIAlf3/vjG/nWmm7+w8Sr31JeCZicoGQ1+pYNHSQ==" + }, + "js-base64": { + "version": "2.6.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/js-base64/-/js-base64-2.6.4.tgz", + "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==" + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true + }, + "json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "3.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.2.tgz", + "integrity": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "json5": { + "version": "2.2.3", + "resolved": "https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmmirror.com/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "requires": { + "json-buffer": "3.0.1" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + }, + "kolorist": { + "version": "1.8.0", + "resolved": "https://registry.npmmirror.com/kolorist/-/kolorist-1.8.0.tgz", + "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==", + "dev": true + }, + "less": { + "version": "4.6.3", + "resolved": "https://registry.npmmirror.com/less/-/less-4.6.3.tgz", + "integrity": "sha512-xxjVIiz0rvWAhx49t8YLA/Dj6Uig4XdJgTRI5hbYHGmiDSh+S8hi2Wxsed2trjl/uur4kbW2+e2a8Mrk9Rcgbw==", + "dev": true, + "requires": { + "copy-anything": "^3.0.5", + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^3.1.0", + "parse-node-version": "^1.0.1", + "source-map": "~0.6.0" + }, + "dependencies": { + "copy-anything": { + "version": "3.0.5", + "resolved": "https://registry.npmmirror.com/copy-anything/-/copy-anything-3.0.5.tgz", + "integrity": "sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==", + "dev": true, + "requires": { + "is-what": "^4.1.8" + } + }, + "is-what": { + "version": "4.1.16", + "resolved": "https://registry.npmmirror.com/is-what/-/is-what-4.1.16.tgz", + "integrity": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==", + "dev": true + } + } + }, + "levn": { + "version": "0.4.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "loader-utils": { + "version": "1.4.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "json5": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "requires": { + "minimist": "^1.2.0" + } + } + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==" + }, + "lodash-es": { + "version": "4.17.23", + "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.23.tgz", + "integrity": "sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==" + }, + "lodash-unified": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/lodash-unified/-/lodash-unified-1.0.3.tgz", + "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==" + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "magic-regexp": { + "version": "0.10.0", + "resolved": "https://registry.npmmirror.com/magic-regexp/-/magic-regexp-0.10.0.tgz", + "integrity": "sha512-Uly1Bu4lO1hwHUW0CQeSWuRtzCMNO00CmXtS8N6fyvB3B979GOEEeAkiTUDsmbYLAbvpUS/Kt5c4ibosAzVyVg==", + "dev": true, + "requires": { + "estree-walker": "^3.0.3", + "magic-string": "^0.30.12", + "mlly": "^1.7.2", + "regexp-tree": "^0.1.27", + "type-level-regexp": "~0.1.17", + "ufo": "^1.5.4", + "unplugin": "^2.0.0" + }, + "dependencies": { + "estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "requires": { + "@types/estree": "^1.0.0" + } + } + } + }, + "magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "requires": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "optional": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": { + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmmirror.com/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "optional": true + } + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==" + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "requires": { + "object-visit": "^1.0.0" + } + }, + "math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==" + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "memoize-one": { + "version": "6.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" + }, + "memorystream": { + "version": "0.3.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", + "dev": true + }, + "merge-options": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/merge-options/-/merge-options-1.0.1.tgz", + "integrity": "sha512-iuPV41VWKWBIOpBsjoxjDZw8/GbSfZ2mk7N1453bwMrfzdrIk7EzBd+8UVR6rkw67th7xnk9Dytl3J+lHPdxvg==", + "requires": { + "is-plain-obj": "^1.1" + } + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "micromatch": { + "version": "4.0.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "requires": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "optional": true + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "minimatch": { + "version": "9.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + }, + "mitt": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==" + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mlly": { + "version": "1.8.1", + "resolved": "https://registry.npmmirror.com/mlly/-/mlly-1.8.1.tgz", + "integrity": "sha512-SnL6sNutTwRWWR/vcmCYHSADjiEesp5TGQQ0pXyLhW5IoeibRlF/CbSLailbB3CNqJUk9cVJ9dUDnbD7GrcHBQ==", + "dev": true, + "requires": { + "acorn": "^8.16.0", + "pathe": "^2.0.3", + "pkg-types": "^1.3.1", + "ufo": "^1.6.3" + }, + "dependencies": { + "pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true + } + } + }, + "mrmime": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/mrmime/-/mrmime-2.0.1.tgz", + "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", + "dev": true + }, + "ms": { + "version": "2.1.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "muggle-string": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/muggle-string/-/muggle-string-0.4.1.tgz", + "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==", + "dev": true + }, + "nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "needle": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/needle/-/needle-3.3.1.tgz", + "integrity": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==", + "dev": true, + "optional": true, + "requires": { + "iconv-lite": "^0.6.3", + "sax": "^1.2.4" + } + }, + "node-addon-api": { + "version": "7.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "dev": true, + "optional": true + }, + "node-fetch-native": { + "version": "1.6.7", + "resolved": "https://registry.npmmirror.com/node-fetch-native/-/node-fetch-native-1.6.7.tgz", + "integrity": "sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==", + "dev": true + }, + "node-forge": { + "version": "1.3.3", + "resolved": "https://registry.npmmirror.com/node-forge/-/node-forge-1.3.3.tgz", + "integrity": "sha512-rLvcdSyRCyouf6jcOIPe/BgwG/d7hKjzMKOas33/pHEr6gbq18IK9zV7DiPvzsz0oBJPme6qr6H6kGZuI9/DZg==", + "dev": true + }, + "node-releases": { + "version": "2.0.36", + "resolved": "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.36.tgz", + "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==", + "dev": true + }, + "normalize-wheel-es": { + "version": "1.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz", + "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==" + }, + "npm-normalize-package-bin": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz", + "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==", + "dev": true + }, + "npm-run-all2": { + "version": "6.2.6", + "resolved": "https://registry.npmmirror.com/npm-run-all2/-/npm-run-all2-6.2.6.tgz", + "integrity": "sha512-tkyb4pc0Zb0oOswCb5tORPk9MvVL6gcDq1cMItQHmsbVk1skk7YF6cH+UU2GxeNLHMuk6wFEOSmEmJ2cnAK1jg==", + "dev": true, + "requires": { + "ansi-styles": "^6.2.1", + "cross-spawn": "^7.0.3", + "memorystream": "^0.3.1", + "minimatch": "^9.0.0", + "pidtree": "^0.6.0", + "read-package-json-fast": "^3.0.2", + "shell-quote": "^1.7.3", + "which": "^3.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true + }, + "which": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/which/-/which-3.0.1.tgz", + "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "npm-run-path": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-6.0.0.tgz", + "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==", + "dev": true, + "requires": { + "path-key": "^4.0.0", + "unicorn-magic": "^0.3.0" + }, + "dependencies": { + "path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true + } + } + }, + "nprogress": { + "version": "0.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/nprogress/-/nprogress-0.2.0.tgz", + "integrity": "sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==" + }, + "nth-check": { + "version": "2.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "requires": { + "boolbase": "^1.0.0" + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-descriptor": { + "version": "0.1.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-inspect": { + "version": "1.13.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "requires": { + "isobject": "^3.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + } + }, + "object.assign": { + "version": "4.1.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "requires": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + } + }, + "ofetch": { + "version": "1.5.1", + "resolved": "https://registry.npmmirror.com/ofetch/-/ofetch-1.5.1.tgz", + "integrity": "sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==", + "dev": true, + "requires": { + "destr": "^2.0.5", + "node-fetch-native": "^1.6.7", + "ufo": "^1.6.1" + } + }, + "open": { + "version": "10.2.0", + "resolved": "https://registry.npmmirror.com/open/-/open-10.2.0.tgz", + "integrity": "sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==", + "dev": true, + "requires": { + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "wsl-utils": "^0.1.0" + } + }, + "optionator": { + "version": "0.9.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + } + }, + "oxc-parser": { + "version": "0.115.0", + "resolved": "https://registry.npmmirror.com/oxc-parser/-/oxc-parser-0.115.0.tgz", + "integrity": "sha512-2w7Xn3CbS/zwzSY82S5WLemrRu3CT57uF7Lx8llrE/2bul6iMTcJE4Rbls7GDNbLn3ttATI68PfOz2Pt3KZ2cQ==", + "dev": true, + "requires": { + "@oxc-parser/binding-android-arm-eabi": "0.115.0", + "@oxc-parser/binding-android-arm64": "0.115.0", + "@oxc-parser/binding-darwin-arm64": "0.115.0", + "@oxc-parser/binding-darwin-x64": "0.115.0", + "@oxc-parser/binding-freebsd-x64": "0.115.0", + "@oxc-parser/binding-linux-arm-gnueabihf": "0.115.0", + "@oxc-parser/binding-linux-arm-musleabihf": "0.115.0", + "@oxc-parser/binding-linux-arm64-gnu": "0.115.0", + "@oxc-parser/binding-linux-arm64-musl": "0.115.0", + "@oxc-parser/binding-linux-ppc64-gnu": "0.115.0", + "@oxc-parser/binding-linux-riscv64-gnu": "0.115.0", + "@oxc-parser/binding-linux-riscv64-musl": "0.115.0", + "@oxc-parser/binding-linux-s390x-gnu": "0.115.0", + "@oxc-parser/binding-linux-x64-gnu": "0.115.0", + "@oxc-parser/binding-linux-x64-musl": "0.115.0", + "@oxc-parser/binding-openharmony-arm64": "0.115.0", + "@oxc-parser/binding-wasm32-wasi": "0.115.0", + "@oxc-parser/binding-win32-arm64-msvc": "0.115.0", + "@oxc-parser/binding-win32-ia32-msvc": "0.115.0", + "@oxc-parser/binding-win32-x64-msvc": "0.115.0", + "@oxc-project/types": "^0.115.0" + } + }, + "oxc-walker": { + "version": "0.7.0", + "resolved": "https://registry.npmmirror.com/oxc-walker/-/oxc-walker-0.7.0.tgz", + "integrity": "sha512-54B4KUhrzbzc4sKvKwVYm7E2PgeROpGba0/2nlNZMqfDyca+yOor5IMb4WLGBatGDT0nkzYdYuzylg7n3YfB7A==", + "dev": true, + "requires": { + "magic-regexp": "^0.10.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, + "package-manager-detector": { + "version": "1.6.0", + "resolved": "https://registry.npmmirror.com/package-manager-detector/-/package-manager-detector-1.6.0.tgz", + "integrity": "sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==", + "dev": true + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-ms": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/parse-ms/-/parse-ms-4.0.0.tgz", + "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==", + "dev": true + }, + "parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==" + }, + "path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "pathe": { + "version": "0.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/pathe/-/pathe-0.2.0.tgz", + "integrity": "sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==" + }, + "perfect-debounce": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz", + "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==", + "dev": true + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + }, + "picocolors": { + "version": "1.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pidtree": { + "version": "0.6.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "dev": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "optional": true + }, + "pinia": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/pinia/-/pinia-2.3.1.tgz", + "integrity": "sha512-khUlZSwt9xXCaTbbxFYBKDc/bWAGWJjOgvxETwkTN7KRm66EeT1ZdZj6i2ceh9sP2Pzqsbc704r2yngBrxBVug==", + "requires": { + "@vue/devtools-api": "^6.6.3", + "vue-demi": "^0.14.10" + }, + "dependencies": { + "vue-demi": { + "version": "0.14.10", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==" + } + } + }, + "pinia-plugin-persistedstate": { + "version": "3.2.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/pinia-plugin-persistedstate/-/pinia-plugin-persistedstate-3.2.3.tgz", + "integrity": "sha512-Cm819WBj/s5K5DGw55EwbXDtx+EZzM0YR5AZbq9XE3u0xvXwvX2JnWoFpWIcdzISBHqy9H1UiSIUmXyXqWsQRQ==" + }, + "pkg-types": { + "version": "1.3.1", + "resolved": "https://registry.npmmirror.com/pkg-types/-/pkg-types-1.3.1.tgz", + "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==", + "dev": true, + "requires": { + "confbox": "^0.1.8", + "mlly": "^1.7.4", + "pathe": "^2.0.1" + }, + "dependencies": { + "pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==" + }, + "possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==" + }, + "postcss": { + "version": "8.5.8", + "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.8.tgz", + "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==", + "requires": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + } + }, + "postcss-prefix-selector": { + "version": "1.16.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/postcss-prefix-selector/-/postcss-prefix-selector-1.16.1.tgz", + "integrity": "sha512-Umxu+FvKMwlY6TyDzGFoSUnzW+NOfMBLyC1tAkIjgX+Z/qGspJeRjVC903D7mx7TuBpJlwti2ibXtWuA7fKMeQ==" + }, + "postcss-selector-parser": { + "version": "7.1.1", + "resolved": "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", + "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "posthtml": { + "version": "0.9.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/posthtml/-/posthtml-0.9.2.tgz", + "integrity": "sha512-spBB5sgC4cv2YcW03f/IAUN1pgDJWNWD8FzkyY4mArLUMJW+KlQhlmUdKAHQuPfb00Jl5xIfImeOsf6YL8QK7Q==", + "requires": { + "posthtml-parser": "^0.2.0", + "posthtml-render": "^1.0.5" + } + }, + "posthtml-parser": { + "version": "0.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/posthtml-parser/-/posthtml-parser-0.2.1.tgz", + "integrity": "sha512-nPC53YMqJnc/+1x4fRYFfm81KV2V+G9NZY+hTohpYg64Ay7NemWWcV4UWuy/SgMupqQ3kJ88M/iRfZmSnxT+pw==", + "requires": { + "htmlparser2": "^3.8.3", + "isobject": "^2.1.0" + } + }, + "posthtml-rename-id": { + "version": "1.0.12", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/posthtml-rename-id/-/posthtml-rename-id-1.0.12.tgz", + "integrity": "sha512-UKXf9OF/no8WZo9edRzvuMenb6AD5hDLzIepJW+a4oJT+T/Lx7vfMYWT4aWlGNQh0WMhnUx1ipN9OkZ9q+ddEw==", + "requires": { + "escape-string-regexp": "1.0.5" + } + }, + "posthtml-render": { + "version": "1.4.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/posthtml-render/-/posthtml-render-1.4.0.tgz", + "integrity": "sha512-W1779iVHGfq0Fvh2PROhCe2QhB8mEErgqzo1wpIt36tCgChafP+hbXIhLDOM8ePJrZcFs0vkNEtdibEWVqChqw==" + }, + "posthtml-svg-mode": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/posthtml-svg-mode/-/posthtml-svg-mode-1.0.3.tgz", + "integrity": "sha512-hEqw9NHZ9YgJ2/0G7CECOeuLQKZi8HjWLkBaSVtOWjygQ9ZD8P7tqeowYs7WrFdKsWEKG7o+IlsPY8jrr0CJpQ==", + "requires": { + "merge-options": "1.0.1", + "posthtml": "^0.9.2", + "posthtml-parser": "^0.2.1", + "posthtml-render": "^1.0.6" + } + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "prettier": { + "version": "3.8.1", + "resolved": "https://registry.npmmirror.com/prettier/-/prettier-3.8.1.tgz", + "integrity": "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==", + "dev": true + }, + "prettier-linter-helpers": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.1.tgz", + "integrity": "sha512-SxToR7P8Y2lWmv/kTzVLC1t/GDI2WGjMwNhLLE9qtH8Q13C+aEmuRlzDst4Up4s0Wc8sF2M+J57iB3cMLqftfg==", + "requires": { + "fast-diff": "^1.1.2" + } + }, + "pretty-ms": { + "version": "9.3.0", + "resolved": "https://registry.npmmirror.com/pretty-ms/-/pretty-ms-9.3.0.tgz", + "integrity": "sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==", + "dev": true, + "requires": { + "parse-ms": "^4.0.0" + } + }, + "proxy-from-env": { + "version": "1.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true, + "optional": true + }, + "punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true + }, + "quansync": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/quansync/-/quansync-1.0.0.tgz", + "integrity": "sha512-5xZacEEufv3HSTPQuchrvV6soaiACMFnq1H8wkVioctoH3TRha9Sz66lOxRwPK/qZj7HPiSveih9yAyh98gvqA==", + "dev": true + }, + "query-string": { + "version": "4.3.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/query-string/-/query-string-4.3.4.tgz", + "integrity": "sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==", + "requires": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + } + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "raf": { + "version": "3.4.1", + "resolved": "https://registry.npmmirror.com/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "requires": { + "performance-now": "^2.1.0" + } + }, + "read-package-json-fast": { + "version": "3.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz", + "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==", + "dev": true, + "requires": { + "json-parse-even-better-errors": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" + } + }, + "readable-stream": { + "version": "3.6.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdirp": { + "version": "4.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/readdirp/-/readdirp-4.0.2.tgz", + "integrity": "sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==", + "dev": true + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "regexp-tree": { + "version": "0.1.27", + "resolved": "https://registry.npmmirror.com/regexp-tree/-/regexp-tree-0.1.27.tgz", + "integrity": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==", + "dev": true + }, + "regexp.prototype.flags": { + "version": "1.5.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz", + "integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.2" + } + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==" + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==" + }, + "resize-observer-polyfill": { + "version": "1.5.1", + "resolved": "https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", + "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==" + }, + "ret": { + "version": "0.1.15", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "dev": true + }, + "rgbcolor": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/rgbcolor/-/rgbcolor-1.0.1.tgz", + "integrity": "sha512-9aZLIrhRaD97sgVhtJOW6ckOEh6/GnvQtdVNfdZ6s67+3/XwLS9lBcQYzEEhYVeUowN7pRzMLsyGhK2i/xvWbw==" + }, + "rollup": { + "version": "4.59.0", + "resolved": "https://registry.npmmirror.com/rollup/-/rollup-4.59.0.tgz", + "integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==", + "dev": true, + "requires": { + "@rollup/rollup-android-arm-eabi": "4.59.0", + "@rollup/rollup-android-arm64": "4.59.0", + "@rollup/rollup-darwin-arm64": "4.59.0", + "@rollup/rollup-darwin-x64": "4.59.0", + "@rollup/rollup-freebsd-arm64": "4.59.0", + "@rollup/rollup-freebsd-x64": "4.59.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.59.0", + "@rollup/rollup-linux-arm-musleabihf": "4.59.0", + "@rollup/rollup-linux-arm64-gnu": "4.59.0", + "@rollup/rollup-linux-arm64-musl": "4.59.0", + "@rollup/rollup-linux-loong64-gnu": "4.59.0", + "@rollup/rollup-linux-loong64-musl": "4.59.0", + "@rollup/rollup-linux-ppc64-gnu": "4.59.0", + "@rollup/rollup-linux-ppc64-musl": "4.59.0", + "@rollup/rollup-linux-riscv64-gnu": "4.59.0", + "@rollup/rollup-linux-riscv64-musl": "4.59.0", + "@rollup/rollup-linux-s390x-gnu": "4.59.0", + "@rollup/rollup-linux-x64-gnu": "4.59.0", + "@rollup/rollup-linux-x64-musl": "4.59.0", + "@rollup/rollup-openbsd-x64": "4.59.0", + "@rollup/rollup-openharmony-arm64": "4.59.0", + "@rollup/rollup-win32-arm64-msvc": "4.59.0", + "@rollup/rollup-win32-ia32-msvc": "4.59.0", + "@rollup/rollup-win32-x64-gnu": "4.59.0", + "@rollup/rollup-win32-x64-msvc": "4.59.0", + "@types/estree": "1.0.8", + "fsevents": "~2.3.2" + } + }, + "run-applescript": { + "version": "7.1.0", + "resolved": "https://registry.npmmirror.com/run-applescript/-/run-applescript-7.1.0.tgz", + "integrity": "sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==", + "dev": true + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "safe-array-concat": { + "version": "1.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "requires": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "dependencies": { + "isarray": { + "version": "2.0.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + } + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "requires": { + "ret": "~0.1.10" + } + }, + "safe-regex-test": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "requires": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "optional": true + }, + "sass": { + "version": "1.87.0", + "resolved": "https://registry.npmmirror.com/sass/-/sass-1.87.0.tgz", + "integrity": "sha512-d0NoFH4v6SjEK7BoX810Jsrhj7IQSYHAHLi/iSpgqKc7LaIDshFRlSg5LOymf9FqQhxEHs2W5ZQXlvy0KD45Uw==", + "dev": true, + "requires": { + "@parcel/watcher": "^2.4.1", + "chokidar": "^4.0.0", + "immutable": "^5.0.2", + "source-map-js": ">=0.6.2 <2.0.0" + } + }, + "sax": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/sax/-/sax-1.5.0.tgz", + "integrity": "sha512-21IYA3Q5cQf089Z6tgaUTr7lDAyzoTPx5HRtbhsME8Udispad8dC/+sziTNugOEx54ilvatQ9YCzl4KQLPcRHA==", + "dev": true, + "optional": true + }, + "screenfull": { + "version": "6.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/screenfull/-/screenfull-6.0.2.tgz", + "integrity": "sha512-AQdy8s4WhNvUZ6P8F6PB21tSPIYKniic+Ogx0AacBMjKP1GUHN2E9URxQHtCusiwxudnCKkdy4GrHXPPJSkCCw==" + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + }, + "set-function-length": { + "version": "1.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "requires": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + } + }, + "set-function-name": { + "version": "2.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "requires": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + } + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "shell-quote": { + "version": "1.8.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true + }, + "side-channel": { + "version": "1.0.6", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "requires": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + } + }, + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true + }, + "sirv": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/sirv/-/sirv-3.0.2.tgz", + "integrity": "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==", + "dev": true, + "requires": { + "@polka/url": "^1.0.0-next.24", + "mrmime": "^2.0.0", + "totalist": "^3.0.0" + } + }, + "slash": { + "version": "3.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-descriptor": { + "version": "0.1.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "sortablejs": { + "version": "1.15.7", + "resolved": "https://registry.npmmirror.com/sortablejs/-/sortablejs-1.15.7.tgz", + "integrity": "sha512-Kk8wLQPlS+yi1ZEf48a4+fzHa4yxjC30M/Sr2AnQu+f/MPwvvX9XjZ6OWejiz8crBsLwSq8GHqaxaET7u6ux0A==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "source-map-js": { + "version": "1.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==" + }, + "speakingurl": { + "version": "14.0.1", + "resolved": "https://registry.npmmirror.com/speakingurl/-/speakingurl-14.0.1.tgz", + "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==", + "dev": true + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + }, + "stackblur-canvas": { + "version": "2.7.0", + "resolved": "https://registry.npmmirror.com/stackblur-canvas/-/stackblur-canvas-2.7.0.tgz", + "integrity": "sha512-yf7OENo23AGJhBriGx0QivY5JP6Y1HbrrDI6WLt6C5auYZXlQrheoY8hD4ibekFKz1HOfE48Ww8kMWMnJD/zcQ==" + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-descriptor": { + "version": "0.1.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + } + } + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==" + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + } + }, + "string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + } + }, + "string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + } + }, + "strip-final-newline": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-4.0.0.tgz", + "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==", + "dev": true + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "superjson": { + "version": "2.2.6", + "resolved": "https://registry.npmmirror.com/superjson/-/superjson-2.2.6.tgz", + "integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==", + "dev": true, + "requires": { + "copy-anything": "^4" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "svg-baker": { + "version": "1.7.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/svg-baker/-/svg-baker-1.7.0.tgz", + "integrity": "sha512-nibslMbkXOIkqKVrfcncwha45f97fGuAOn1G99YwnwTj8kF9YiM6XexPcUso97NxOm6GsP0SIvYVIosBis1xLg==", + "requires": { + "bluebird": "^3.5.0", + "clone": "^2.1.1", + "he": "^1.1.1", + "image-size": "^0.5.1", + "loader-utils": "^1.1.0", + "merge-options": "1.0.1", + "micromatch": "3.1.0", + "postcss": "^5.2.17", + "postcss-prefix-selector": "^1.6.0", + "posthtml-rename-id": "^1.0", + "posthtml-svg-mode": "^1.0.3", + "query-string": "^4.3.2", + "traverse": "^0.6.6" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==" + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + } + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==" + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==" + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + }, + "micromatch": { + "version": "3.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/micromatch/-/micromatch-3.1.0.tgz", + "integrity": "sha512-3StSelAE+hnRvMs8IdVW7Uhk8CVed5tp+kLLGlBP6WiRAXS21GPGu/Nat4WNPXj2Eoc24B02SaeoyozPMfj0/g==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.2.2", + "define-property": "^1.0.0", + "extend-shallow": "^2.0.1", + "extglob": "^2.0.2", + "fragment-cache": "^0.2.1", + "kind-of": "^5.0.2", + "nanomatch": "^1.2.1", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==", + "requires": { + "has-flag": "^1.0.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "svg-pathdata": { + "version": "6.0.3", + "resolved": "https://registry.npmmirror.com/svg-pathdata/-/svg-pathdata-6.0.3.tgz", + "integrity": "sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==" + }, + "svgo": { + "version": "2.8.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "requires": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + } + }, + "synckit": { + "version": "0.11.12", + "resolved": "https://registry.npmmirror.com/synckit/-/synckit-0.11.12.tgz", + "integrity": "sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==", + "requires": { + "@pkgr/core": "^0.2.9" + } + }, + "text-segmentation": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/text-segmentation/-/text-segmentation-1.0.3.tgz", + "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==", + "requires": { + "utrie": "^1.0.2" + } + }, + "tinyexec": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/tinyexec/-/tinyexec-1.0.2.tgz", + "integrity": "sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==", + "dev": true + }, + "tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "requires": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "dependencies": { + "picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==" + } + } + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "totalist": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/totalist/-/totalist-3.0.1.tgz", + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", + "dev": true + }, + "traverse": { + "version": "0.6.10", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/traverse/-/traverse-0.6.10.tgz", + "integrity": "sha512-hN4uFRxbK+PX56DxYiGHsTn2dME3TVr9vbNqlQGcGcPhJAn+tdP126iA+TArMpI4YSgnTkMWyoLl5bf81Hi5TA==", + "requires": { + "gopd": "^1.0.1", + "typedarray.prototype.slice": "^1.0.3", + "which-typed-array": "^1.1.15" + } + }, + "ts-api-utils": { + "version": "1.3.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/ts-api-utils/-/ts-api-utils-1.3.0.tgz", + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", + "dev": true + }, + "tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "optional": true + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-level-regexp": { + "version": "0.1.17", + "resolved": "https://registry.npmmirror.com/type-level-regexp/-/type-level-regexp-0.1.17.tgz", + "integrity": "sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==", + "dev": true + }, + "typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "requires": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + } + }, + "typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "requires": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + } + }, + "typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "requires": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + } + }, + "typed-array-length": { + "version": "1.0.6", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "requires": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + } + }, + "typedarray.prototype.slice": { + "version": "1.0.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.3.tgz", + "integrity": "sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A==", + "requires": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-errors": "^1.3.0", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-offset": "^1.0.2" + } + }, + "typescript": { + "version": "5.2.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.2.tgz", + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "dev": true + }, + "typescript-eslint": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/typescript-eslint/-/typescript-eslint-8.57.0.tgz", + "integrity": "sha512-W8GcigEMEeB07xEZol8oJ26rigm3+bfPHxHvwbYUlu1fUDsGuQ7Hiskx5xGW/xM4USc9Ephe3jtv7ZYPQntHeA==", + "requires": { + "@typescript-eslint/eslint-plugin": "8.57.0", + "@typescript-eslint/parser": "8.57.0", + "@typescript-eslint/typescript-estree": "8.57.0", + "@typescript-eslint/utils": "8.57.0" + }, + "dependencies": { + "@typescript-eslint/eslint-plugin": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.57.0.tgz", + "integrity": "sha512-qeu4rTHR3/IaFORbD16gmjq9+rEs9fGKdX0kF6BKSfi+gCuG3RCKLlSBYzn/bGsY9Tj7KE/DAQStbp8AHJGHEQ==", + "requires": { + "@eslint-community/regexpp": "^4.12.2", + "@typescript-eslint/scope-manager": "8.57.0", + "@typescript-eslint/type-utils": "8.57.0", + "@typescript-eslint/utils": "8.57.0", + "@typescript-eslint/visitor-keys": "8.57.0", + "ignore": "^7.0.5", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.4.0" + } + }, + "@typescript-eslint/parser": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-8.57.0.tgz", + "integrity": "sha512-XZzOmihLIr8AD1b9hL9ccNMzEMWt/dE2u7NyTY9jJG6YNiNthaD5XtUHVF2uCXZ15ng+z2hT3MVuxnUYhq6k1g==", + "requires": { + "@typescript-eslint/scope-manager": "8.57.0", + "@typescript-eslint/types": "8.57.0", + "@typescript-eslint/typescript-estree": "8.57.0", + "@typescript-eslint/visitor-keys": "8.57.0", + "debug": "^4.4.3" + } + }, + "@typescript-eslint/scope-manager": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-8.57.0.tgz", + "integrity": "sha512-nvExQqAHF01lUM66MskSaZulpPL5pgy5hI5RfrxviLgzZVffB5yYzw27uK/ft8QnKXI2X0LBrHJFr1TaZtAibw==", + "requires": { + "@typescript-eslint/types": "8.57.0", + "@typescript-eslint/visitor-keys": "8.57.0" + } + }, + "@typescript-eslint/type-utils": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-8.57.0.tgz", + "integrity": "sha512-yjgh7gmDcJ1+TcEg8x3uWQmn8ifvSupnPfjP21twPKrDP/pTHlEQgmKcitzF/rzPSmv7QjJ90vRpN4U+zoUjwQ==", + "requires": { + "@typescript-eslint/types": "8.57.0", + "@typescript-eslint/typescript-estree": "8.57.0", + "@typescript-eslint/utils": "8.57.0", + "debug": "^4.4.3", + "ts-api-utils": "^2.4.0" + } + }, + "@typescript-eslint/types": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/types/-/types-8.57.0.tgz", + "integrity": "sha512-dTLI8PEXhjUC7B9Kre+u0XznO696BhXcTlOn0/6kf1fHaQW8+VjJAVHJ3eTI14ZapTxdkOmc80HblPQLaEeJdg==" + }, + "@typescript-eslint/typescript-estree": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.57.0.tgz", + "integrity": "sha512-m7faHcyVg0BT3VdYTlX8GdJEM7COexXxS6KqGopxdtkQRvBanK377QDHr4W/vIPAR+ah9+B/RclSW5ldVniO1Q==", + "requires": { + "@typescript-eslint/project-service": "8.57.0", + "@typescript-eslint/tsconfig-utils": "8.57.0", + "@typescript-eslint/types": "8.57.0", + "@typescript-eslint/visitor-keys": "8.57.0", + "debug": "^4.4.3", + "minimatch": "^10.2.2", + "semver": "^7.7.3", + "tinyglobby": "^0.2.15", + "ts-api-utils": "^2.4.0" + } + }, + "@typescript-eslint/utils": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-8.57.0.tgz", + "integrity": "sha512-5iIHvpD3CZe06riAsbNxxreP+MuYgVUsV0n4bwLH//VJmgtt54sQeY2GszntJ4BjYCpMzrfVh2SBnUQTtys2lQ==", + "requires": { + "@eslint-community/eslint-utils": "^4.9.1", + "@typescript-eslint/scope-manager": "8.57.0", + "@typescript-eslint/types": "8.57.0", + "@typescript-eslint/typescript-estree": "8.57.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "8.57.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.57.0.tgz", + "integrity": "sha512-zm6xx8UT/Xy2oSr2ZXD0pZo7Jx2XsCoID2IUh9YSTFRu7z+WdwYTRk6LhUftm1crwqbuoF6I8zAFeCMw0YjwDg==", + "requires": { + "@typescript-eslint/types": "8.57.0", + "eslint-visitor-keys": "^5.0.0" + } + }, + "balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==" + }, + "brace-expansion": { + "version": "5.0.4", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-5.0.4.tgz", + "integrity": "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==", + "requires": { + "balanced-match": "^4.0.2" + } + }, + "eslint-visitor-keys": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", + "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==" + }, + "ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmmirror.com/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==" + }, + "minimatch": { + "version": "10.2.4", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-10.2.4.tgz", + "integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==", + "requires": { + "brace-expansion": "^5.0.2" + } + }, + "semver": { + "version": "7.7.4", + "resolved": "https://registry.npmmirror.com/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==" + }, + "ts-api-utils": { + "version": "2.4.0", + "resolved": "https://registry.npmmirror.com/ts-api-utils/-/ts-api-utils-2.4.0.tgz", + "integrity": "sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==" + } + } + }, + "ufo": { + "version": "1.6.3", + "resolved": "https://registry.npmmirror.com/ufo/-/ufo-1.6.3.tgz", + "integrity": "sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==", + "dev": true + }, + "unbox-primitive": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "requires": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + } + }, + "unconfig": { + "version": "7.5.0", + "resolved": "https://registry.npmmirror.com/unconfig/-/unconfig-7.5.0.tgz", + "integrity": "sha512-oi8Qy2JV4D3UQ0PsopR28CzdQ3S/5A1zwsUwp/rosSbfhJ5z7b90bIyTwi/F7hCLD4SGcZVjDzd4XoUQcEanvA==", + "dev": true, + "requires": { + "@quansync/fs": "^1.0.0", + "defu": "^6.1.4", + "jiti": "^2.6.1", + "quansync": "^1.0.0", + "unconfig-core": "7.5.0" + } + }, + "unconfig-core": { + "version": "7.5.0", + "resolved": "https://registry.npmmirror.com/unconfig-core/-/unconfig-core-7.5.0.tgz", + "integrity": "sha512-Su3FauozOGP44ZmKdHy2oE6LPjk51M/TRRjHv2HNCWiDvfvCoxC2lno6jevMA91MYAdCdwP05QnWdWpSbncX/w==", + "dev": true, + "requires": { + "@quansync/fs": "^1.0.0", + "quansync": "^1.0.0" + } + }, + "undici-types": { + "version": "5.26.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" + }, + "unicorn-magic": { + "version": "0.3.0", + "resolved": "https://registry.npmmirror.com/unicorn-magic/-/unicorn-magic-0.3.0.tgz", + "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", + "dev": true + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "universalify": { + "version": "2.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" + }, + "unocss": { + "version": "66.6.6", + "resolved": "https://registry.npmmirror.com/unocss/-/unocss-66.6.6.tgz", + "integrity": "sha512-PRKK945e2oZKHV664MA5Z9CDHbvY/V79IvTOUWKZ514jpl3UsJU3sS+skgxmKJSmwrWvXE5OVcmPthJrD/7vxg==", + "dev": true, + "requires": { + "@unocss/cli": "66.6.6", + "@unocss/core": "66.6.6", + "@unocss/preset-attributify": "66.6.6", + "@unocss/preset-icons": "66.6.6", + "@unocss/preset-mini": "66.6.6", + "@unocss/preset-tagify": "66.6.6", + "@unocss/preset-typography": "66.6.6", + "@unocss/preset-uno": "66.6.6", + "@unocss/preset-web-fonts": "66.6.6", + "@unocss/preset-wind": "66.6.6", + "@unocss/preset-wind3": "66.6.6", + "@unocss/preset-wind4": "66.6.6", + "@unocss/transformer-attributify-jsx": "66.6.6", + "@unocss/transformer-compile-class": "66.6.6", + "@unocss/transformer-directives": "66.6.6", + "@unocss/transformer-variant-group": "66.6.6", + "@unocss/vite": "66.6.6" + } + }, + "unplugin": { + "version": "2.3.11", + "resolved": "https://registry.npmmirror.com/unplugin/-/unplugin-2.3.11.tgz", + "integrity": "sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==", + "dev": true, + "requires": { + "@jridgewell/remapping": "^2.3.5", + "acorn": "^8.15.0", + "picomatch": "^4.0.3", + "webpack-virtual-modules": "^0.6.2" + }, + "dependencies": { + "picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true + } + } + }, + "unplugin-utils": { + "version": "0.3.1", + "resolved": "https://registry.npmmirror.com/unplugin-utils/-/unplugin-utils-0.3.1.tgz", + "integrity": "sha512-5lWVjgi6vuHhJ526bI4nlCOmkCIF3nnfXkCMDeMJrtdvxTs6ZFCM8oNufGTsDbKv/tJ/xj8RpvXjRuPBZJuJog==", + "dev": true, + "requires": { + "pathe": "^2.0.3", + "picomatch": "^4.0.3" + }, + "dependencies": { + "pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true + }, + "picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true + } + } + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==" + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + } + }, + "update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "dev": true, + "requires": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==" + }, + "use": { + "version": "3.1.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "utrie": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/utrie/-/utrie-1.0.2.tgz", + "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==", + "requires": { + "base64-arraybuffer": "^1.0.2" + } + }, + "vary": { + "version": "1.1.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + }, + "vite": { + "version": "6.3.4", + "resolved": "https://registry.npmmirror.com/vite/-/vite-6.3.4.tgz", + "integrity": "sha512-BiReIiMS2fyFqbqNT/Qqt4CVITDU9M9vE+DKcVAsB+ZV0wvTKd+3hMbkpxz1b+NmEDMegpVbisKiAZOnvO92Sw==", + "dev": true, + "requires": { + "esbuild": "^0.25.0", + "fdir": "^6.4.4", + "fsevents": "~2.3.3", + "picomatch": "^4.0.2", + "postcss": "^8.5.3", + "rollup": "^4.34.9", + "tinyglobby": "^0.2.13" + }, + "dependencies": { + "picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true + } + } + }, + "vite-hot-client": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/vite-hot-client/-/vite-hot-client-2.1.0.tgz", + "integrity": "sha512-7SpgZmU7R+dDnSmvXE1mfDtnHLHQSisdySVR7lO8ceAXvM0otZeuQQ6C8LrS5d/aYyP/QZ0hI0L+dIPrm4YlFQ==", + "dev": true + }, + "vite-plugin-compression": { + "version": "0.5.1", + "resolved": "https://registry.npmmirror.com/vite-plugin-compression/-/vite-plugin-compression-0.5.1.tgz", + "integrity": "sha512-5QJKBDc+gNYVqL/skgFAP81Yuzo9R+EAf19d+EtsMF/i8kFUpNi3J/H01QD3Oo8zBQn+NzoCIFkpPLynoOzaJg==", + "dev": true, + "requires": { + "chalk": "^4.1.2", + "debug": "^4.3.3", + "fs-extra": "^10.0.0" + } + }, + "vite-plugin-inspect": { + "version": "0.8.9", + "resolved": "https://registry.npmmirror.com/vite-plugin-inspect/-/vite-plugin-inspect-0.8.9.tgz", + "integrity": "sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==", + "dev": true, + "requires": { + "@antfu/utils": "^0.7.10", + "@rollup/pluginutils": "^5.1.3", + "debug": "^4.3.7", + "error-stack-parser-es": "^0.1.5", + "fs-extra": "^11.2.0", + "open": "^10.1.0", + "perfect-debounce": "^1.0.0", + "picocolors": "^1.1.1", + "sirv": "^3.0.0" + }, + "dependencies": { + "fs-extra": { + "version": "11.3.4", + "resolved": "https://registry.npmmirror.com/fs-extra/-/fs-extra-11.3.4.tgz", + "integrity": "sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + } + } + }, + "vite-plugin-svg-icons": { + "version": "2.0.1", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/vite-plugin-svg-icons/-/vite-plugin-svg-icons-2.0.1.tgz", + "integrity": "sha512-6ktD+DhV6Rz3VtedYvBKKVA2eXF+sAQVaKkKLDSqGUfnhqXl3bj5PPkVTl3VexfTuZy66PmINi8Q6eFnVfRUmA==", + "requires": { + "@types/svgo": "^2.6.1", + "cors": "^2.8.5", + "debug": "^4.3.3", + "etag": "^1.8.1", + "fs-extra": "^10.0.0", + "pathe": "^0.2.0", + "svg-baker": "1.7.0", + "svgo": "^2.8.0" + } + }, + "vite-plugin-vue-devtools": { + "version": "7.7.9", + "resolved": "https://registry.npmmirror.com/vite-plugin-vue-devtools/-/vite-plugin-vue-devtools-7.7.9.tgz", + "integrity": "sha512-08DvePf663SxqLFJeMVNW537zzVyakp9KIrI2K7lwgaTqA5R/ydN/N2K8dgZO34tg/Qmw0ch84fOKoBtCEdcGg==", + "dev": true, + "requires": { + "@vue/devtools-core": "^7.7.9", + "@vue/devtools-kit": "^7.7.9", + "@vue/devtools-shared": "^7.7.9", + "execa": "^9.5.2", + "sirv": "^3.0.1", + "vite-plugin-inspect": "0.8.9", + "vite-plugin-vue-inspector": "^5.3.1" + } + }, + "vite-plugin-vue-inspector": { + "version": "5.3.2", + "resolved": "https://registry.npmmirror.com/vite-plugin-vue-inspector/-/vite-plugin-vue-inspector-5.3.2.tgz", + "integrity": "sha512-YvEKooQcSiBTAs0DoYLfefNja9bLgkFM7NI2b07bE2SruuvX0MEa9cMaxjKVMkeCp5Nz9FRIdcN1rOdFVBeL6Q==", + "dev": true, + "requires": { + "@babel/core": "^7.23.0", + "@babel/plugin-proposal-decorators": "^7.23.0", + "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-transform-typescript": "^7.22.15", + "@vue/babel-plugin-jsx": "^1.1.5", + "@vue/compiler-dom": "^3.3.4", + "kolorist": "^1.8.0", + "magic-string": "^0.30.4" + }, + "dependencies": { + "@vue/babel-helper-vue-transform-on": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.5.0.tgz", + "integrity": "sha512-0dAYkerNhhHutHZ34JtTl2czVQHUNWv6xEbkdF5W+Yrv5pCWsqjeORdOgbtW2I9gWlt+wBmVn+ttqN9ZxR5tzA==", + "dev": true + }, + "@vue/babel-plugin-jsx": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.5.0.tgz", + "integrity": "sha512-mneBhw1oOqCd2247O0Yw/mRwC9jIGACAJUlawkmMBiNmL4dGA2eMzuNZVNqOUfYTa6vqmND4CtOPzmEEEqLKFw==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-syntax-jsx": "^7.27.1", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.0", + "@babel/types": "^7.28.2", + "@vue/babel-helper-vue-transform-on": "1.5.0", + "@vue/babel-plugin-resolve-type": "1.5.0", + "@vue/shared": "^3.5.18" + } + }, + "@vue/babel-plugin-resolve-type": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-1.5.0.tgz", + "integrity": "sha512-Wm/60o+53JwJODm4Knz47dxJnLDJ9FnKnGZJbUUf8nQRAtt6P+undLUAVU3Ha33LxOJe6IPoifRQ6F/0RrU31w==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.27.1", + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/parser": "^7.28.0", + "@vue/compiler-sfc": "^3.5.18" + } + } + } + }, + "vscode-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/vscode-uri/-/vscode-uri-3.1.0.tgz", + "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==", + "dev": true + }, + "vue": { + "version": "3.5.30", + "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.30.tgz", + "integrity": "sha512-hTHLc6VNZyzzEH/l7PFGjpcTvUgiaPK5mdLkbjrTeWSRcEfxFrv56g/XckIYlE9ckuobsdwqd5mk2g1sBkMewg==", + "requires": { + "@vue/compiler-dom": "3.5.30", + "@vue/compiler-sfc": "3.5.30", + "@vue/runtime-dom": "3.5.30", + "@vue/server-renderer": "3.5.30", + "@vue/shared": "3.5.30" + } + }, + "vue-eslint-parser": { + "version": "10.4.0", + "resolved": "https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-10.4.0.tgz", + "integrity": "sha512-Vxi9pJdbN3ZnVGLODVtZ7y4Y2kzAAE2Cm0CZ3ZDRvydVYxZ6VrnBhLikBsRS+dpwj4Jv4UCv21PTEwF5rQ9WXg==", + "requires": { + "debug": "^4.4.0", + "eslint-scope": "^8.2.0 || ^9.0.0", + "eslint-visitor-keys": "^4.2.0 || ^5.0.0", + "espree": "^10.3.0 || ^11.0.0", + "esquery": "^1.6.0", + "semver": "^7.6.3" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", + "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==" + }, + "semver": { + "version": "7.6.3", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==" + } + } + }, + "vue-i18n": { + "version": "9.14.5", + "resolved": "https://registry.npmmirror.com/vue-i18n/-/vue-i18n-9.14.5.tgz", + "integrity": "sha512-0jQ9Em3ymWngyiIkj0+c/k7WgaPO+TNzjKSNq9BvBQaKJECqn9cd9fL4tkDhB5G1QBskGl9YxxbDAhgbFtpe2g==", + "requires": { + "@intlify/core-base": "9.14.5", + "@intlify/shared": "9.14.5", + "@vue/devtools-api": "^6.5.0" + } + }, + "vue-router": { + "version": "4.6.4", + "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.6.4.tgz", + "integrity": "sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg==", + "requires": { + "@vue/devtools-api": "^6.6.4" + } + }, + "vue-tsc": { + "version": "2.2.12", + "resolved": "https://registry.npmmirror.com/vue-tsc/-/vue-tsc-2.2.12.tgz", + "integrity": "sha512-P7OP77b2h/Pmk+lZdJ0YWs+5tJ6J2+uOQPo7tlBnY44QqQSPYvS0qVT4wqDJgwrZaLe47etJLLQRFia71GYITw==", + "dev": true, + "requires": { + "@volar/typescript": "2.4.15", + "@vue/language-core": "2.2.12" + } + }, + "vue3-ace-editor": { + "version": "2.2.4", + "resolved": "https://registry.npmmirror.com/vue3-ace-editor/-/vue3-ace-editor-2.2.4.tgz", + "integrity": "sha512-FZkEyfpbH068BwjhMyNROxfEI8135Sc+x8ouxkMdCNkuj/Tuw83VP/gStFQqZHqljyX9/VfMTCdTqtOnJZGN8g==", + "requires": { + "resize-observer-polyfill": "^1.5.1" + } + }, + "webpack-virtual-modules": { + "version": "0.6.2", + "resolved": "https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz", + "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==", + "dev": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-typed-array": { + "version": "1.1.15", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "requires": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + } + }, + "word-wrap": { + "version": "1.2.5", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true + }, + "wsl-utils": { + "version": "0.1.0", + "resolved": "https://registry.npmmirror.com/wsl-utils/-/wsl-utils-0.1.0.tgz", + "integrity": "sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==", + "dev": true, + "requires": { + "is-wsl": "^3.1.0" + } + }, + "xml-name-validator": { + "version": "4.0.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://mirrors.huaweicloud.com/repository/npm/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true + }, + "yoctocolors": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/yoctocolors/-/yoctocolors-2.1.2.tgz", + "integrity": "sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==", + "dev": true + } + } +} diff --git a/package.d.ts b/package.d.ts new file mode 100644 index 0000000..9154a1c --- /dev/null +++ b/package.d.ts @@ -0,0 +1,7 @@ +// 在 package.d.ts 文件中 +declare module 'package.json' { + const content: { + version: string; + }; + export = content; +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..944f22c --- /dev/null +++ b/package.json @@ -0,0 +1,72 @@ +{ + "name": "sz-admin", + "version": "1.3.2-beta", + "private": true, + "type": "module", + "scripts": { + "dev": "vite", + "build": "run-p type-check \"build-only {@}\" --", + "preview": "vite preview", + "build-only": "vite build", + "type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false", + "lint": "eslint --fix", + "format": "prettier --write src/" + }, + "dependencies": { + "@element-plus/icons-vue": "^2.3.2", + "@eslint/js": "^9.39.1", + "@highlightjs/vue-plugin": "^2.1.0", + "@rushstack/eslint-patch": "^1.15.0", + "@vueuse/core": "^10.11.1", + "ace-builds": "^1.43.6", + "animate.css": "^4.1.1", + "axios": "^1.13.2", + "canvg": "^4.0.1", + "element-plus": "^2.11.9", + "eslint-plugin-prettier": "^5.5.4", + "eslint-plugin-vue": "^10.6.2", + "globals": "^16.5.0", + "highlight.js": "^11.11.1", + "html2canvas": "^1.4.1", + "jodit": "^4.7.9", + "lodash.merge": "^4.6.2", + "mitt": "^3.0.1", + "nprogress": "^0.2.0", + "pinia": "^2.3.1", + "pinia-plugin-persistedstate": "^3.2.3", + "screenfull": "^6.0.2", + "sortablejs": "^1.15.6", + "typescript-eslint": "^8.48.0", + "vite-plugin-svg-icons": "^2.0.1", + "vue": "^3.5.25", + "vue-eslint-parser": "^10.2.0", + "vue-i18n": "^9.14.5", + "vue-router": "^4.6.3", + "vue3-ace-editor": "^2.2.4" + }, + "devDependencies": { + "@tsconfig/node18": "^18.2.6", + "@types/lodash.merge": "^4.6.9", + "@types/node": "^18.19.130", + "@types/node-forge": "^1.3.14", + "@types/nprogress": "^0.2.3", + "@types/sortablejs": "^1.15.9", + "@vitejs/plugin-vue": "^6.0.2", + "@vitejs/plugin-vue-jsx": "^5.1.2", + "@vue/eslint-config-prettier": "^8.0.0", + "@vue/eslint-config-typescript": "^12.0.0", + "@vue/tsconfig": "^0.5.1", + "eslint": "^9.39.1", + "less": "^4.6.3", + "node-forge": "^1.3.2", + "npm-run-all2": "^6.2.6", + "prettier": "^3.7.3", + "sass": "~1.87.0", + "typescript": "~5.2.2", + "unocss": "^66.6.6", + "vite": "6.3.4", + "vite-plugin-compression": "^0.5.1", + "vite-plugin-vue-devtools": "^7.7.9", + "vue-tsc": "^2.2.12" + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..74692f8 --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,6285 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + '@element-plus/icons-vue': + specifier: ^2.3.2 + version: 2.3.2(vue@3.5.25(typescript@5.2.2)) + '@eslint/js': + specifier: ^9.39.1 + version: 9.39.1 + '@highlightjs/vue-plugin': + specifier: ^2.1.0 + version: 2.1.0(highlight.js@11.11.1)(vue@3.5.25(typescript@5.2.2)) + '@rushstack/eslint-patch': + specifier: ^1.15.0 + version: 1.15.0 + '@vueuse/core': + specifier: ^10.11.1 + version: 10.11.1(vue@3.5.25(typescript@5.2.2)) + axios: + specifier: ^1.13.2 + version: 1.13.2 + element-plus: + specifier: ^2.11.9 + version: 2.11.9(vue@3.5.25(typescript@5.2.2)) + eslint-plugin-prettier: + specifier: ^5.5.4 + version: 5.5.4(eslint-config-prettier@8.10.2(eslint@9.39.1))(eslint@9.39.1)(prettier@3.7.3) + eslint-plugin-vue: + specifier: ^10.6.2 + version: 10.6.2(@typescript-eslint/parser@8.48.0(eslint@9.39.1)(typescript@5.2.2))(eslint@9.39.1)(vue-eslint-parser@10.2.0(eslint@9.39.1)) + globals: + specifier: ^16.5.0 + version: 16.5.0 + highlight.js: + specifier: ^11.11.1 + version: 11.11.1 + jodit: + specifier: ^4.7.9 + version: 4.7.9 + lodash.merge: + specifier: ^4.6.2 + version: 4.6.2 + mitt: + specifier: ^3.0.1 + version: 3.0.1 + nprogress: + specifier: ^0.2.0 + version: 0.2.0 + pinia: + specifier: ^2.3.1 + version: 2.3.1(typescript@5.2.2)(vue@3.5.25(typescript@5.2.2)) + pinia-plugin-persistedstate: + specifier: ^3.2.3 + version: 3.2.3(pinia@2.3.1(typescript@5.2.2)(vue@3.5.25(typescript@5.2.2))) + screenfull: + specifier: ^6.0.2 + version: 6.0.2 + sortablejs: + specifier: ^1.15.6 + version: 1.15.6 + typescript-eslint: + specifier: ^8.48.0 + version: 8.48.0(eslint@9.39.1)(typescript@5.2.2) + vite-plugin-svg-icons: + specifier: ^2.0.1 + version: 2.0.1(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0)) + vue: + specifier: ^3.5.25 + version: 3.5.25(typescript@5.2.2) + vue-eslint-parser: + specifier: ^10.2.0 + version: 10.2.0(eslint@9.39.1) + vue-i18n: + specifier: ^9.14.5 + version: 9.14.5(vue@3.5.25(typescript@5.2.2)) + vue-router: + specifier: ^4.6.3 + version: 4.6.3(vue@3.5.25(typescript@5.2.2)) + devDependencies: + '@tsconfig/node18': + specifier: ^18.2.6 + version: 18.2.6 + '@types/lodash.merge': + specifier: ^4.6.9 + version: 4.6.9 + '@types/node': + specifier: ^18.19.130 + version: 18.19.130 + '@types/node-forge': + specifier: ^1.3.14 + version: 1.3.14 + '@types/nprogress': + specifier: ^0.2.3 + version: 0.2.3 + '@types/sortablejs': + specifier: ^1.15.9 + version: 1.15.9 + '@vitejs/plugin-vue': + specifier: ^6.0.2 + version: 6.0.2(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0))(vue@3.5.25(typescript@5.2.2)) + '@vitejs/plugin-vue-jsx': + specifier: ^5.1.2 + version: 5.1.2(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0))(vue@3.5.25(typescript@5.2.2)) + '@vue/eslint-config-prettier': + specifier: ^8.0.0 + version: 8.0.0(eslint@9.39.1)(prettier@3.7.3) + '@vue/eslint-config-typescript': + specifier: ^12.0.0 + version: 12.0.0(eslint-plugin-vue@10.6.2(@typescript-eslint/parser@8.48.0(eslint@9.39.1)(typescript@5.2.2))(eslint@9.39.1)(vue-eslint-parser@10.2.0(eslint@9.39.1)))(eslint@9.39.1)(typescript@5.2.2) + '@vue/tsconfig': + specifier: ^0.5.1 + version: 0.5.1 + eslint: + specifier: ^9.39.1 + version: 9.39.1 + node-forge: + specifier: ^1.3.2 + version: 1.3.2 + npm-run-all2: + specifier: ^6.2.6 + version: 6.2.6 + prettier: + specifier: ^3.7.3 + version: 3.7.3 + sass: + specifier: ~1.87.0 + version: 1.87.0 + typescript: + specifier: ~5.2.2 + version: 5.2.2 + vite: + specifier: 6.3.4 + version: 6.3.4(@types/node@18.19.130)(sass@1.87.0) + vite-plugin-compression: + specifier: ^0.5.1 + version: 0.5.1(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0)) + vite-plugin-vue-devtools: + specifier: ^7.7.9 + version: 7.7.9(rollup@4.53.3)(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0))(vue@3.5.25(typescript@5.2.2)) + vue-tsc: + specifier: ^2.2.12 + version: 2.2.12(typescript@5.2.2) + +packages: + + '@antfu/utils@0.7.10': + resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==} + + '@babel/code-frame@7.27.1': + resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} + engines: {node: '>=6.9.0'} + + '@babel/compat-data@7.28.5': + resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==} + engines: {node: '>=6.9.0'} + + '@babel/core@7.28.5': + resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==} + engines: {node: '>=6.9.0'} + + '@babel/generator@7.28.5': + resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-annotate-as-pure@7.27.3': + resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-compilation-targets@7.27.2': + resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-create-class-features-plugin@7.28.5': + resolution: {integrity: sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-globals@7.28.0': + resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-member-expression-to-functions@7.28.5': + resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.27.1': + resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-transforms@7.28.3': + resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-optimise-call-expression@7.27.1': + resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-plugin-utils@7.27.1': + resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-replace-supers@7.27.1': + resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': + resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.28.5': + resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-option@7.27.1': + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} + engines: {node: '>=6.9.0'} + + '@babel/helpers@7.28.4': + resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.28.5': + resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/plugin-proposal-decorators@7.28.0': + resolution: {integrity: sha512-zOiZqvANjWDUaUS9xMxbMcK/Zccztbe/6ikvUXaG9nsPH3w6qh5UaPGAnirI/WhIbZ8m3OHU0ReyPrknG+ZKeg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-decorators@7.27.1': + resolution: {integrity: sha512-YMq8Z87Lhl8EGkmb0MwYkt36QnxC+fzCgrl66ereamPlYToRpIk5nUjKUY3QKLWq8mwUB1BgbeXcTJhZOCDg5A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-attributes@7.27.1': + resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-meta@7.10.4': + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-jsx@7.27.1': + resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-typescript@7.27.1': + resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typescript@7.28.5': + resolution: {integrity: sha512-x2Qa+v/CuEoX7Dr31iAfr0IhInrVOWZU/2vJMJ00FOR/2nM0BcBEclpaf9sWCDc+v5e9dMrhSH8/atq/kX7+bA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/template@7.27.2': + resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.28.5': + resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.28.5': + resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==} + engines: {node: '>=6.9.0'} + + '@ctrl/tinycolor@3.6.1': + resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==} + engines: {node: '>=10'} + + '@element-plus/icons-vue@2.3.2': + resolution: {integrity: sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==} + peerDependencies: + vue: ^3.2.0 + + '@esbuild/aix-ppc64@0.25.12': + resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.25.12': + resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.25.12': + resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.25.12': + resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.25.12': + resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.25.12': + resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.25.12': + resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.25.12': + resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.25.12': + resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.25.12': + resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.25.12': + resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.25.12': + resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.25.12': + resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.25.12': + resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.25.12': + resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.25.12': + resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.25.12': + resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.25.12': + resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.25.12': + resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.25.12': + resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.25.12': + resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openharmony-arm64@0.25.12': + resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.25.12': + resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.25.12': + resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.25.12': + resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.25.12': + resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@eslint-community/eslint-utils@4.9.0': + resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + + '@eslint-community/regexpp@4.12.2': + resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/config-array@0.21.1': + resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/config-helpers@0.4.2': + resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.17.0': + resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/eslintrc@3.3.3': + resolution: {integrity: sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/js@9.39.1': + resolution: {integrity: sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/object-schema@2.1.7': + resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/plugin-kit@0.4.1': + resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@floating-ui/core@1.7.3': + resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==} + + '@floating-ui/dom@1.7.4': + resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==} + + '@floating-ui/utils@0.2.10': + resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==} + + '@highlightjs/vue-plugin@2.1.0': + resolution: {integrity: sha512-E+bmk4ncca+hBEYRV2a+1aIzIV0VSY/e5ArjpuSN9IO7wBJrzUE2u4ESCwrbQD7sAy+jWQjkV5qCCWgc+pu7CQ==} + peerDependencies: + highlight.js: ^11.0.1 + vue: ^3 + + '@humanfs/core@0.19.1': + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.7': + resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==} + engines: {node: '>=18.18.0'} + + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/retry@0.4.3': + resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} + engines: {node: '>=18.18'} + + '@intlify/core-base@9.14.5': + resolution: {integrity: sha512-5ah5FqZG4pOoHjkvs8mjtv+gPKYU0zCISaYNjBNNqYiaITxW8ZtVih3GS/oTOqN8d9/mDLyrjD46GBApNxmlsA==} + engines: {node: '>= 16'} + + '@intlify/message-compiler@9.14.5': + resolution: {integrity: sha512-IHzgEu61/YIpQV5Pc3aRWScDcnFKWvQA9kigcINcCBXN8mbW+vk9SK+lDxA6STzKQsVJxUPg9ACC52pKKo3SVQ==} + engines: {node: '>= 16'} + + '@intlify/shared@9.14.5': + resolution: {integrity: sha512-9gB+E53BYuAEMhbCAxVgG38EZrk59sxBtv3jSizNL2hEWlgjBjAw1AwpLHtNaeda12pe6W20OGEa0TwuMSRbyQ==} + engines: {node: '>= 16'} + + '@jridgewell/gen-mapping@0.3.13': + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} + + '@jridgewell/remapping@2.3.5': + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + + '@jridgewell/trace-mapping@0.3.31': + resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@parcel/watcher-android-arm64@2.5.1': + resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [android] + + '@parcel/watcher-darwin-arm64@2.5.1': + resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [darwin] + + '@parcel/watcher-darwin-x64@2.5.1': + resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [darwin] + + '@parcel/watcher-freebsd-x64@2.5.1': + resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [freebsd] + + '@parcel/watcher-linux-arm-glibc@2.5.1': + resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==} + engines: {node: '>= 10.0.0'} + cpu: [arm] + os: [linux] + + '@parcel/watcher-linux-arm-musl@2.5.1': + resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==} + engines: {node: '>= 10.0.0'} + cpu: [arm] + os: [linux] + + '@parcel/watcher-linux-arm64-glibc@2.5.1': + resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + + '@parcel/watcher-linux-arm64-musl@2.5.1': + resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + + '@parcel/watcher-linux-x64-glibc@2.5.1': + resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + + '@parcel/watcher-linux-x64-musl@2.5.1': + resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + + '@parcel/watcher-win32-arm64@2.5.1': + resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [win32] + + '@parcel/watcher-win32-ia32@2.5.1': + resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==} + engines: {node: '>= 10.0.0'} + cpu: [ia32] + os: [win32] + + '@parcel/watcher-win32-x64@2.5.1': + resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [win32] + + '@parcel/watcher@2.5.1': + resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==} + engines: {node: '>= 10.0.0'} + + '@pkgr/core@0.2.9': + resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + + '@polka/url@1.0.0-next.29': + resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==} + + '@rolldown/pluginutils@1.0.0-beta.50': + resolution: {integrity: sha512-5e76wQiQVeL1ICOZVUg4LSOVYg9jyhGCin+icYozhsUzM+fHE7kddi1bdiE0jwVqTfkjba3jUFbEkoC9WkdvyA==} + + '@rollup/pluginutils@5.3.0': + resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/rollup-android-arm-eabi@4.53.3': + resolution: {integrity: sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.53.3': + resolution: {integrity: sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.53.3': + resolution: {integrity: sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.53.3': + resolution: {integrity: sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.53.3': + resolution: {integrity: sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.53.3': + resolution: {integrity: sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.53.3': + resolution: {integrity: sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.53.3': + resolution: {integrity: sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.53.3': + resolution: {integrity: sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.53.3': + resolution: {integrity: sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-loong64-gnu@4.53.3': + resolution: {integrity: sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-ppc64-gnu@4.53.3': + resolution: {integrity: sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.53.3': + resolution: {integrity: sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.53.3': + resolution: {integrity: sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.53.3': + resolution: {integrity: sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.53.3': + resolution: {integrity: sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.53.3': + resolution: {integrity: sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-openharmony-arm64@4.53.3': + resolution: {integrity: sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==} + cpu: [arm64] + os: [openharmony] + + '@rollup/rollup-win32-arm64-msvc@4.53.3': + resolution: {integrity: sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.53.3': + resolution: {integrity: sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-gnu@4.53.3': + resolution: {integrity: sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==} + cpu: [x64] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.53.3': + resolution: {integrity: sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==} + cpu: [x64] + os: [win32] + + '@rushstack/eslint-patch@1.15.0': + resolution: {integrity: sha512-ojSshQPKwVvSMR8yT2L/QtUkV5SXi/IfDiJ4/8d6UbTPjiHVmxZzUAzGD8Tzks1b9+qQkZa0isUOvYObedITaw==} + + '@sec-ant/readable-stream@0.4.1': + resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==} + + '@sindresorhus/merge-streams@4.0.0': + resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==} + engines: {node: '>=18'} + + '@sxzz/popperjs-es@2.11.7': + resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==} + + '@trysound/sax@0.2.0': + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + + '@tsconfig/node18@18.2.6': + resolution: {integrity: sha512-eAWQzAjPj18tKnDzmWstz4OyWewLUNBm9tdoN9LayzoboRktYx3Enk1ZXPmThj55L7c4VWYq/Bzq0A51znZfhw==} + + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/lodash-es@4.17.12': + resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==} + + '@types/lodash.merge@4.6.9': + resolution: {integrity: sha512-23sHDPmzd59kUgWyKGiOMO2Qb9YtqRO/x4IhkgNUiPQ1+5MUVqi6bCZeq9nBJ17msjIMbEIO5u+XW4Kz6aGUhQ==} + + '@types/lodash@4.17.21': + resolution: {integrity: sha512-FOvQ0YPD5NOfPgMzJihoT+Za5pdkDJWcbpuj1DjaKZIr/gxodQjY/uWEFlTNqW2ugXHUiL8lRQgw63dzKHZdeQ==} + + '@types/node-forge@1.3.14': + resolution: {integrity: sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==} + + '@types/node@18.19.130': + resolution: {integrity: sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg==} + + '@types/nprogress@0.2.3': + resolution: {integrity: sha512-k7kRA033QNtC+gLc4VPlfnue58CM1iQLgn1IMAU8VPHGOj7oIHPp9UlhedEnD/Gl8evoCjwkZjlBORtZ3JByUA==} + + '@types/semver@7.7.1': + resolution: {integrity: sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==} + + '@types/sortablejs@1.15.9': + resolution: {integrity: sha512-7HP+rZGE2p886PKV9c9OJzLBI6BBJu1O7lJGYnPyG3fS4/duUCcngkNCjsLwIMV+WMqANe3tt4irrXHSIe68OQ==} + + '@types/svgo@2.6.4': + resolution: {integrity: sha512-l4cmyPEckf8moNYHdJ+4wkHvFxjyW6ulm9l4YGaOxeyBWPhBOT0gvni1InpFPdzx1dKf/2s62qGITwxNWnPQng==} + + '@types/web-bluetooth@0.0.16': + resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==} + + '@types/web-bluetooth@0.0.20': + resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==} + + '@typescript-eslint/eslint-plugin@6.21.0': + resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/eslint-plugin@8.48.0': + resolution: {integrity: sha512-XxXP5tL1txl13YFtrECECQYeZjBZad4fyd3cFV4a19LkAY/bIp9fev3US4S5fDVV2JaYFiKAZ/GRTOLer+mbyQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.48.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/parser@6.21.0': + resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/parser@8.48.0': + resolution: {integrity: sha512-jCzKdm/QK0Kg4V4IK/oMlRZlY+QOcdjv89U2NgKHZk1CYTj82/RVSx1mV/0gqCVMJ/DA+Zf/S4NBWNF8GQ+eqQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/project-service@8.48.0': + resolution: {integrity: sha512-Ne4CTZyRh1BecBf84siv42wv5vQvVmgtk8AuiEffKTUo3DrBaGYZueJSxxBZ8fjk/N3DrgChH4TOdIOwOwiqqw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/scope-manager@6.21.0': + resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==} + engines: {node: ^16.0.0 || >=18.0.0} + + '@typescript-eslint/scope-manager@8.48.0': + resolution: {integrity: sha512-uGSSsbrtJrLduti0Q1Q9+BF1/iFKaxGoQwjWOIVNJv0o6omrdyR8ct37m4xIl5Zzpkp69Kkmvom7QFTtue89YQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/tsconfig-utils@8.48.0': + resolution: {integrity: sha512-WNebjBdFdyu10sR1M4OXTt2OkMd5KWIL+LLfeH9KhgP+jzfDV/LI3eXzwJ1s9+Yc0Kzo2fQCdY/OpdusCMmh6w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/type-utils@6.21.0': + resolution: {integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/type-utils@8.48.0': + resolution: {integrity: sha512-zbeVaVqeXhhab6QNEKfK96Xyc7UQuoFWERhEnj3mLVnUWrQnv15cJNseUni7f3g557gm0e46LZ6IJ4NJVOgOpw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/types@6.21.0': + resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==} + engines: {node: ^16.0.0 || >=18.0.0} + + '@typescript-eslint/types@8.48.0': + resolution: {integrity: sha512-cQMcGQQH7kwKoVswD1xdOytxQR60MWKM1di26xSUtxehaDs/32Zpqsu5WJlXTtTTqyAVK8R7hvsUnIXRS+bjvA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/typescript-estree@6.21.0': + resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/typescript-estree@8.48.0': + resolution: {integrity: sha512-ljHab1CSO4rGrQIAyizUS6UGHHCiAYhbfcIZ1zVJr5nMryxlXMVWS3duFPSKvSUbFPwkXMFk1k0EMIjub4sRRQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/utils@6.21.0': + resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + + '@typescript-eslint/utils@8.48.0': + resolution: {integrity: sha512-yTJO1XuGxCsSfIVt1+1UrLHtue8xz16V8apzPYI06W0HbEbEWHxHXgZaAgavIkoh+GeV6hKKd5jm0sS6OYxWXQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/visitor-keys@6.21.0': + resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==} + engines: {node: ^16.0.0 || >=18.0.0} + + '@typescript-eslint/visitor-keys@8.48.0': + resolution: {integrity: sha512-T0XJMaRPOH3+LBbAfzR2jalckP1MSG/L9eUtY0DEzUyVaXJ/t6zN0nR7co5kz0Jko/nkSYCBRkz1djvjajVTTg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@vitejs/plugin-vue-jsx@5.1.2': + resolution: {integrity: sha512-3a2BOryRjG/Iih87x87YXz5c8nw27eSlHytvSKYfp8ZIsp5+FgFQoKeA7k2PnqWpjJrv6AoVTMnvmuKUXb771A==} + engines: {node: ^20.19.0 || >=22.12.0} + peerDependencies: + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 + vue: ^3.0.0 + + '@vitejs/plugin-vue@6.0.2': + resolution: {integrity: sha512-iHmwV3QcVGGvSC1BG5bZ4z6iwa1SOpAPWmnjOErd4Ske+lZua5K9TtAVdx0gMBClJ28DViCbSmZitjWZsWO3LA==} + engines: {node: ^20.19.0 || >=22.12.0} + peerDependencies: + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 + vue: ^3.2.25 + + '@volar/language-core@2.4.15': + resolution: {integrity: sha512-3VHw+QZU0ZG9IuQmzT68IyN4hZNd9GchGPhbD9+pa8CVv7rnoOZwo7T8weIbrRmihqy3ATpdfXFnqRrfPVK6CA==} + + '@volar/source-map@2.4.15': + resolution: {integrity: sha512-CPbMWlUN6hVZJYGcU/GSoHu4EnCHiLaXI9n8c9la6RaI9W5JHX+NqG+GSQcB0JdC2FIBLdZJwGsfKyBB71VlTg==} + + '@volar/typescript@2.4.15': + resolution: {integrity: sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==} + + '@vue/babel-helper-vue-transform-on@1.5.0': + resolution: {integrity: sha512-0dAYkerNhhHutHZ34JtTl2czVQHUNWv6xEbkdF5W+Yrv5pCWsqjeORdOgbtW2I9gWlt+wBmVn+ttqN9ZxR5tzA==} + + '@vue/babel-helper-vue-transform-on@2.0.1': + resolution: {integrity: sha512-uZ66EaFbnnZSYqYEyplWvn46GhZ1KuYSThdT68p+am7MgBNbQ3hphTL9L+xSIsWkdktwhPYLwPgVWqo96jDdRA==} + + '@vue/babel-plugin-jsx@1.5.0': + resolution: {integrity: sha512-mneBhw1oOqCd2247O0Yw/mRwC9jIGACAJUlawkmMBiNmL4dGA2eMzuNZVNqOUfYTa6vqmND4CtOPzmEEEqLKFw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + peerDependenciesMeta: + '@babel/core': + optional: true + + '@vue/babel-plugin-jsx@2.0.1': + resolution: {integrity: sha512-a8CaLQjD/s4PVdhrLD/zT574ZNPnZBOY+IhdtKWRB4HRZ0I2tXBi5ne7d9eCfaYwp5gU5+4KIyFTV1W1YL9xZA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + peerDependenciesMeta: + '@babel/core': + optional: true + + '@vue/babel-plugin-resolve-type@1.5.0': + resolution: {integrity: sha512-Wm/60o+53JwJODm4Knz47dxJnLDJ9FnKnGZJbUUf8nQRAtt6P+undLUAVU3Ha33LxOJe6IPoifRQ6F/0RrU31w==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@vue/babel-plugin-resolve-type@2.0.1': + resolution: {integrity: sha512-ybwgIuRGRRBhOU37GImDoWQoz+TlSqap65qVI6iwg/J7FfLTLmMf97TS7xQH9I7Qtr/gp161kYVdhr1ZMraSYQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@vue/compiler-core@3.5.25': + resolution: {integrity: sha512-vay5/oQJdsNHmliWoZfHPoVZZRmnSWhug0BYT34njkYTPqClh3DNWLkZNJBVSjsNMrg0CCrBfoKkjZQPM/QVUw==} + + '@vue/compiler-dom@3.5.25': + resolution: {integrity: sha512-4We0OAcMZsKgYoGlMjzYvaoErltdFI2/25wqanuTu+S4gismOTRTBPi4IASOjxWdzIwrYSjnqONfKvuqkXzE2Q==} + + '@vue/compiler-sfc@3.5.25': + resolution: {integrity: sha512-PUgKp2rn8fFsI++lF2sO7gwO2d9Yj57Utr5yEsDf3GNaQcowCLKL7sf+LvVFvtJDXUp/03+dC6f2+LCv5aK1ag==} + + '@vue/compiler-ssr@3.5.25': + resolution: {integrity: sha512-ritPSKLBcParnsKYi+GNtbdbrIE1mtuFEJ4U1sWeuOMlIziK5GtOL85t5RhsNy4uWIXPgk+OUdpnXiTdzn8o3A==} + + '@vue/compiler-vue2@2.7.16': + resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==} + + '@vue/devtools-api@6.6.4': + resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==} + + '@vue/devtools-core@7.7.9': + resolution: {integrity: sha512-48jrBSwG4GVQRvVeeXn9p9+dlx+ISgasM7SxZZKczseohB0cBz+ITKr4YbLWjmJdy45UHL7UMPlR4Y0CWTRcSQ==} + peerDependencies: + vue: ^3.0.0 + + '@vue/devtools-kit@7.7.9': + resolution: {integrity: sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==} + + '@vue/devtools-shared@7.7.9': + resolution: {integrity: sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==} + + '@vue/eslint-config-prettier@8.0.0': + resolution: {integrity: sha512-55dPqtC4PM/yBjhAr+yEw6+7KzzdkBuLmnhBrDfp4I48+wy+Giqqj9yUr5T2uD/BkBROjjmqnLZmXRdOx/VtQg==} + peerDependencies: + eslint: '>= 8.0.0' + prettier: '>= 3.0.0' + + '@vue/eslint-config-typescript@12.0.0': + resolution: {integrity: sha512-StxLFet2Qe97T8+7L8pGlhYBBr8Eg05LPuTDVopQV6il+SK6qqom59BA/rcFipUef2jD8P2X44Vd8tMFytfvlg==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 + eslint-plugin-vue: ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@vue/language-core@2.2.12': + resolution: {integrity: sha512-IsGljWbKGU1MZpBPN+BvPAdr55YPkj2nB/TBNGNC32Vy2qLG25DYu/NBN2vNtZqdRbTRjaoYrahLrToim2NanA==} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@vue/reactivity@3.5.25': + resolution: {integrity: sha512-5xfAypCQepv4Jog1U4zn8cZIcbKKFka3AgWHEFQeK65OW+Ys4XybP6z2kKgws4YB43KGpqp5D/K3go2UPPunLA==} + + '@vue/runtime-core@3.5.25': + resolution: {integrity: sha512-Z751v203YWwYzy460bzsYQISDfPjHTl+6Zzwo/a3CsAf+0ccEjQ8c+0CdX1WsumRTHeywvyUFtW6KvNukT/smA==} + + '@vue/runtime-dom@3.5.25': + resolution: {integrity: sha512-a4WrkYFbb19i9pjkz38zJBg8wa/rboNERq3+hRRb0dHiJh13c+6kAbgqCPfMaJ2gg4weWD3APZswASOfmKwamA==} + + '@vue/server-renderer@3.5.25': + resolution: {integrity: sha512-UJaXR54vMG61i8XNIzTSf2Q7MOqZHpp8+x3XLGtE3+fL+nQd+k7O5+X3D/uWrnQXOdMw5VPih+Uremcw+u1woQ==} + peerDependencies: + vue: 3.5.25 + + '@vue/shared@3.5.25': + resolution: {integrity: sha512-AbOPdQQnAnzs58H2FrrDxYj/TJfmeS2jdfEEhgiKINy+bnOANmVizIEgq1r+C5zsbs6l1CCQxtcj71rwNQ4jWg==} + + '@vue/tsconfig@0.5.1': + resolution: {integrity: sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==} + + '@vueuse/core@10.11.1': + resolution: {integrity: sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==} + + '@vueuse/core@9.13.0': + resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==} + + '@vueuse/metadata@10.11.1': + resolution: {integrity: sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==} + + '@vueuse/metadata@9.13.0': + resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==} + + '@vueuse/shared@10.11.1': + resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==} + + '@vueuse/shared@9.13.0': + resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==} + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn@8.15.0: + resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} + engines: {node: '>=0.4.0'} + hasBin: true + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + alien-signals@1.0.13: + resolution: {integrity: sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==} + + ansi-regex@2.1.1: + resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} + engines: {node: '>=0.10.0'} + + ansi-styles@2.2.1: + resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} + engines: {node: '>=0.10.0'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@6.2.3: + resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} + engines: {node: '>=12'} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + arr-diff@4.0.0: + resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} + engines: {node: '>=0.10.0'} + + arr-flatten@1.1.0: + resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} + engines: {node: '>=0.10.0'} + + arr-union@3.1.0: + resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} + engines: {node: '>=0.10.0'} + + array-buffer-byte-length@1.0.2: + resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} + engines: {node: '>= 0.4'} + + array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + array-unique@0.3.2: + resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} + engines: {node: '>=0.10.0'} + + arraybuffer.prototype.slice@1.0.4: + resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} + engines: {node: '>= 0.4'} + + assign-symbols@1.0.0: + resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} + engines: {node: '>=0.10.0'} + + async-function@1.0.0: + resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} + engines: {node: '>= 0.4'} + + async-validator@4.2.5: + resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==} + + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + + atob@2.1.2: + resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} + engines: {node: '>= 4.5.0'} + hasBin: true + + available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + + axios@1.13.2: + resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + base@0.11.2: + resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} + engines: {node: '>=0.10.0'} + + baseline-browser-mapping@2.8.32: + resolution: {integrity: sha512-OPz5aBThlyLFgxyhdwf/s2+8ab3OvT7AdTNvKHBwpXomIYeXqpUUuT8LrdtxZSsWJ4R4CU1un4XGh5Ez3nlTpw==} + hasBin: true + + big.js@5.2.2: + resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + + birpc@2.8.0: + resolution: {integrity: sha512-Bz2a4qD/5GRhiHSwj30c/8kC8QGj12nNDwz3D4ErQ4Xhy35dsSDvF+RA/tWpjyU0pdGtSDiEk6B5fBGE1qNVhw==} + + bluebird@3.7.2: + resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} + + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + + brace-expansion@1.1.12: + resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} + + brace-expansion@2.0.2: + resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} + + braces@2.3.2: + resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} + engines: {node: '>=0.10.0'} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + browserslist@4.28.0: + resolution: {integrity: sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + bundle-name@4.1.0: + resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} + engines: {node: '>=18'} + + cache-base@1.0.1: + resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} + engines: {node: '>=0.10.0'} + + call-bind-apply-helpers@1.0.2: + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} + + call-bind@1.0.8: + resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} + engines: {node: '>= 0.4'} + + call-bound@1.0.4: + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} + engines: {node: '>= 0.4'} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + caniuse-lite@1.0.30001757: + resolution: {integrity: sha512-r0nnL/I28Zi/yjk1el6ilj27tKcdjLsNqAOZr0yVjWPrSQyHgKI2INaEWw21bAQSv2LXRt1XuCS/GomNpWOxsQ==} + + chalk@1.1.3: + resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} + engines: {node: '>=0.10.0'} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + chokidar@4.0.3: + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} + engines: {node: '>= 14.16.0'} + + class-utils@0.3.6: + resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} + engines: {node: '>=0.10.0'} + + clone@2.1.2: + resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} + engines: {node: '>=0.8'} + + collection-visit@1.0.0: + resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} + engines: {node: '>=0.10.0'} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + + commander@7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + + component-emitter@1.3.1: + resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + copy-anything@4.0.5: + resolution: {integrity: sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==} + engines: {node: '>=18'} + + copy-descriptor@0.1.1: + resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} + engines: {node: '>=0.10.0'} + + cors@2.8.5: + resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} + engines: {node: '>= 0.10'} + + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + + css-select@4.3.0: + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + + css-tree@1.1.3: + resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} + engines: {node: '>=8.0.0'} + + css-what@6.2.2: + resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==} + engines: {node: '>= 6'} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + csso@4.2.0: + resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} + engines: {node: '>=8.0.0'} + + csstype@3.2.3: + resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==} + + data-view-buffer@1.0.2: + resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} + engines: {node: '>= 0.4'} + + data-view-byte-length@1.0.2: + resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} + engines: {node: '>= 0.4'} + + data-view-byte-offset@1.0.1: + resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} + engines: {node: '>= 0.4'} + + dayjs@1.11.19: + resolution: {integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==} + + de-indent@1.0.2: + resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} + + debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.3: + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decode-uri-component@0.2.2: + resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} + engines: {node: '>=0.10'} + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + default-browser-id@5.0.1: + resolution: {integrity: sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==} + engines: {node: '>=18'} + + default-browser@5.4.0: + resolution: {integrity: sha512-XDuvSq38Hr1MdN47EDvYtx3U0MTqpCEn+F6ft8z2vYDzMrvQhVp0ui9oQdqW3MvK3vqUETglt1tVGgjLuJ5izg==} + engines: {node: '>=18'} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-lazy-prop@3.0.0: + resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} + engines: {node: '>=12'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + define-property@0.2.5: + resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} + engines: {node: '>=0.10.0'} + + define-property@1.0.0: + resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} + engines: {node: '>=0.10.0'} + + define-property@2.0.2: + resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} + engines: {node: '>=0.10.0'} + + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + + detect-libc@1.0.3: + resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} + engines: {node: '>=0.10'} + hasBin: true + + dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + + dom-serializer@0.2.2: + resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} + + dom-serializer@1.4.1: + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + + domelementtype@1.3.1: + resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} + + domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + + domhandler@2.4.2: + resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==} + + domhandler@4.3.1: + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} + + domutils@1.7.0: + resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} + + domutils@2.8.0: + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + + electron-to-chromium@1.5.263: + resolution: {integrity: sha512-DrqJ11Knd+lo+dv+lltvfMDLU27g14LMdH2b0O3Pio4uk0x+z7OR+JrmyacTPN2M8w3BrZ7/RTwG3R9B7irPlg==} + + element-plus@2.11.9: + resolution: {integrity: sha512-yTckX+fMGDGiBHVL1gpwfmjEc8P8OwuyU5ZX3f4FhMy2OdC2Y+OwQYWUXmuB+jFMukuSdnGYXYgHq6muBjSxTg==} + peerDependencies: + vue: ^3.2.0 + + emojis-list@3.0.0: + resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} + engines: {node: '>= 4'} + + entities@1.1.2: + resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==} + + entities@2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + error-stack-parser-es@0.1.5: + resolution: {integrity: sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==} + + es-abstract@1.24.0: + resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==} + engines: {node: '>= 0.4'} + + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-object-atoms@1.1.1: + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.1.0: + resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} + engines: {node: '>= 0.4'} + + es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} + + esbuild@0.25.12: + resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==} + engines: {node: '>=18'} + hasBin: true + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + eslint-config-prettier@8.10.2: + resolution: {integrity: sha512-/IGJ6+Dka158JnP5n5YFMOszjDWrXggGz1LaK/guZq9vZTmniaKlHcsscvkAhn9y4U+BU3JuUdYvtAMcv30y4A==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + + eslint-plugin-prettier@5.5.4: + resolution: {integrity: sha512-swNtI95SToIz05YINMA6Ox5R057IMAmWZ26GqPxusAp1TZzj+IdY9tXNWWD3vkF/wEqydCONcwjTFpxybBqZsg==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + '@types/eslint': '>=8.0.0' + eslint: '>=8.0.0' + eslint-config-prettier: '>= 7.0.0 <10.0.0 || >=10.1.0' + prettier: '>=3.0.0' + peerDependenciesMeta: + '@types/eslint': + optional: true + eslint-config-prettier: + optional: true + + eslint-plugin-vue@10.6.2: + resolution: {integrity: sha512-nA5yUs/B1KmKzvC42fyD0+l9Yd+LtEpVhWRbXuDj0e+ZURcTtyRbMDWUeJmTAh2wC6jC83raS63anNM2YT3NPw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@stylistic/eslint-plugin': ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 + '@typescript-eslint/parser': ^7.0.0 || ^8.0.0 + eslint: ^8.57.0 || ^9.0.0 + vue-eslint-parser: ^10.0.0 + peerDependenciesMeta: + '@stylistic/eslint-plugin': + optional: true + '@typescript-eslint/parser': + optional: true + + eslint-scope@7.2.2: + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-scope@8.4.0: + resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-visitor-keys@4.2.1: + resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint@9.39.1: + resolution: {integrity: sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + + espree@10.4.0: + resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + etag@1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} + + execa@9.6.1: + resolution: {integrity: sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==} + engines: {node: ^18.19.0 || >=20.5.0} + + expand-brackets@2.1.4: + resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} + engines: {node: '>=0.10.0'} + + extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + + extend-shallow@3.0.2: + resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} + engines: {node: '>=0.10.0'} + + extglob@2.0.4: + resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} + engines: {node: '>=0.10.0'} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-diff@1.3.0: + resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} + + fast-glob@3.3.3: + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} + engines: {node: '>=8.6.0'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fastq@1.19.1: + resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} + + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + figures@6.1.0: + resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==} + engines: {node: '>=18'} + + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + + fill-range@4.0.0: + resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} + engines: {node: '>=0.10.0'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + + flatted@3.3.3: + resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} + + follow-redirects@1.15.11: + resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + + for-each@0.3.5: + resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} + engines: {node: '>= 0.4'} + + for-in@1.0.2: + resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} + engines: {node: '>=0.10.0'} + + form-data@4.0.5: + resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==} + engines: {node: '>= 6'} + + fragment-cache@0.2.1: + resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} + engines: {node: '>=0.10.0'} + + fs-extra@10.1.0: + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} + + fs-extra@11.3.2: + resolution: {integrity: sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A==} + engines: {node: '>=14.14'} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function.prototype.name@1.1.8: + resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} + engines: {node: '>= 0.4'} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + generator-function@2.0.1: + resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==} + engines: {node: '>= 0.4'} + + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + get-intrinsic@1.3.0: + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + engines: {node: '>= 0.4'} + + get-proto@1.0.1: + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} + + get-stream@9.0.1: + resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==} + engines: {node: '>=18'} + + get-symbol-description@1.1.0: + resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} + engines: {node: '>= 0.4'} + + get-value@2.0.6: + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} + engines: {node: '>=0.10.0'} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + + globals@16.5.0: + resolution: {integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==} + engines: {node: '>=18'} + + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + + globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + + has-ansi@2.0.0: + resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} + engines: {node: '>=0.10.0'} + + has-bigints@1.1.0: + resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} + engines: {node: '>= 0.4'} + + has-flag@1.0.0: + resolution: {integrity: sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==} + engines: {node: '>=0.10.0'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.2.0: + resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} + engines: {node: '>= 0.4'} + + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + has-value@0.3.1: + resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} + engines: {node: '>=0.10.0'} + + has-value@1.0.0: + resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} + engines: {node: '>=0.10.0'} + + has-values@0.1.4: + resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} + engines: {node: '>=0.10.0'} + + has-values@1.0.0: + resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} + engines: {node: '>=0.10.0'} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + + highlight.js@11.11.1: + resolution: {integrity: sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==} + engines: {node: '>=12.0.0'} + + hookable@5.5.3: + resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} + + htmlparser2@3.10.1: + resolution: {integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==} + + human-signals@8.0.1: + resolution: {integrity: sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==} + engines: {node: '>=18.18.0'} + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + ignore@7.0.5: + resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} + engines: {node: '>= 4'} + + image-size@0.5.5: + resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} + engines: {node: '>=0.10.0'} + hasBin: true + + immutable@5.1.4: + resolution: {integrity: sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==} + + import-fresh@3.3.1: + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} + engines: {node: '>=6'} + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + internal-slot@1.1.0: + resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} + engines: {node: '>= 0.4'} + + is-accessor-descriptor@1.0.1: + resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==} + engines: {node: '>= 0.10'} + + is-array-buffer@3.0.5: + resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} + engines: {node: '>= 0.4'} + + is-async-function@2.1.1: + resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} + engines: {node: '>= 0.4'} + + is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} + + is-boolean-object@1.2.2: + resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} + engines: {node: '>= 0.4'} + + is-buffer@1.1.6: + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-data-descriptor@1.0.1: + resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==} + engines: {node: '>= 0.4'} + + is-data-view@1.0.2: + resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} + engines: {node: '>= 0.4'} + + is-date-object@1.1.0: + resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} + engines: {node: '>= 0.4'} + + is-descriptor@0.1.7: + resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==} + engines: {node: '>= 0.4'} + + is-descriptor@1.0.3: + resolution: {integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==} + engines: {node: '>= 0.4'} + + is-docker@3.0.0: + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + + is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + + is-extendable@1.0.1: + resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} + engines: {node: '>=0.10.0'} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-finalizationregistry@1.1.1: + resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} + engines: {node: '>= 0.4'} + + is-generator-function@1.1.2: + resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==} + engines: {node: '>= 0.4'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-inside-container@1.0.0: + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} + hasBin: true + + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + + is-negative-zero@2.0.3: + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} + + is-number-object@1.1.1: + resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} + engines: {node: '>= 0.4'} + + is-number@3.0.0: + resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} + engines: {node: '>=0.10.0'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + + is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + + is-regex@1.2.1: + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + engines: {node: '>= 0.4'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + + is-shared-array-buffer@1.0.4: + resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} + engines: {node: '>= 0.4'} + + is-stream@4.0.1: + resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==} + engines: {node: '>=18'} + + is-string@1.1.1: + resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} + engines: {node: '>= 0.4'} + + is-symbol@1.1.1: + resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} + engines: {node: '>= 0.4'} + + is-typed-array@1.1.15: + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} + engines: {node: '>= 0.4'} + + is-unicode-supported@2.1.0: + resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} + engines: {node: '>=18'} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + + is-weakref@1.1.1: + resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} + engines: {node: '>= 0.4'} + + is-weakset@2.0.4: + resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} + engines: {node: '>= 0.4'} + + is-what@5.5.0: + resolution: {integrity: sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==} + engines: {node: '>=18'} + + is-windows@1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} + + is-wsl@3.1.0: + resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} + engines: {node: '>=16'} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + isobject@2.1.0: + resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} + engines: {node: '>=0.10.0'} + + isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + + jodit@4.7.9: + resolution: {integrity: sha512-dPlewnu2+vVXELh9BEJTNQoSBL3Cf2E0fNh30yjSEgUtJHYSUYToDjMDEqr0T/L9iNpqPTODy2b4pzyGpPRUog==} + + js-base64@2.6.4: + resolution: {integrity: sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-yaml@4.1.1: + resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==} + hasBin: true + + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-parse-even-better-errors@3.0.2: + resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonfile@6.2.0: + resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + kind-of@3.2.2: + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} + engines: {node: '>=0.10.0'} + + kind-of@4.0.0: + resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} + engines: {node: '>=0.10.0'} + + kind-of@5.1.0: + resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==} + engines: {node: '>=0.10.0'} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + kolorist@1.8.0: + resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + loader-utils@1.4.2: + resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} + engines: {node: '>=4.0.0'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + lodash-es@4.17.21: + resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} + + lodash-unified@1.0.3: + resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==} + peerDependencies: + '@types/lodash-es': '*' + lodash: '*' + lodash-es: '*' + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + magic-string@0.30.21: + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} + + map-cache@0.2.2: + resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} + engines: {node: '>=0.10.0'} + + map-visit@1.0.0: + resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} + engines: {node: '>=0.10.0'} + + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + + mdn-data@2.0.14: + resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + + memoize-one@6.0.0: + resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==} + + memorystream@0.3.1: + resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} + engines: {node: '>= 0.10.0'} + + merge-options@1.0.1: + resolution: {integrity: sha512-iuPV41VWKWBIOpBsjoxjDZw8/GbSfZ2mk7N1453bwMrfzdrIk7EzBd+8UVR6rkw67th7xnk9Dytl3J+lHPdxvg==} + engines: {node: '>=4'} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + micromatch@3.1.0: + resolution: {integrity: sha512-3StSelAE+hnRvMs8IdVW7Uhk8CVed5tp+kLLGlBP6WiRAXS21GPGu/Nat4WNPXj2Eoc24B02SaeoyozPMfj0/g==} + engines: {node: '>=0.10.0'} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@9.0.3: + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} + engines: {node: '>=16 || 14 >=14.17'} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + mitt@3.0.1: + resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} + + mixin-deep@1.3.2: + resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} + engines: {node: '>=0.10.0'} + + mrmime@2.0.1: + resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} + engines: {node: '>=10'} + + ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + muggle-string@0.4.1: + resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + nanoid@5.1.6: + resolution: {integrity: sha512-c7+7RQ+dMB5dPwwCp4ee1/iV/q2P6aK1mTZcfr1BTuVlyW9hJYiMPybJCcnBlQtuSmTIWNeazm/zqNoZSSElBg==} + engines: {node: ^18 || >=20} + hasBin: true + + nanomatch@1.2.13: + resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} + engines: {node: '>=0.10.0'} + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + node-addon-api@7.1.1: + resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} + + node-forge@1.3.2: + resolution: {integrity: sha512-6xKiQ+cph9KImrRh0VsjH2d8/GXA4FIMlgU4B757iI1ApvcyA9VlouP0yZJha01V+huImO+kKMU7ih+2+E14fw==} + engines: {node: '>= 6.13.0'} + + node-releases@2.0.27: + resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==} + + normalize-wheel-es@1.2.0: + resolution: {integrity: sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==} + + npm-normalize-package-bin@3.0.1: + resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + npm-run-all2@6.2.6: + resolution: {integrity: sha512-tkyb4pc0Zb0oOswCb5tORPk9MvVL6gcDq1cMItQHmsbVk1skk7YF6cH+UU2GxeNLHMuk6wFEOSmEmJ2cnAK1jg==} + engines: {node: ^14.18.0 || ^16.13.0 || >=18.0.0, npm: '>= 8'} + hasBin: true + + npm-run-path@6.0.0: + resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==} + engines: {node: '>=18'} + + nprogress@0.2.0: + resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==} + + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-copy@0.1.0: + resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} + engines: {node: '>=0.10.0'} + + object-inspect@1.13.4: + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} + engines: {node: '>= 0.4'} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object-visit@1.0.1: + resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} + engines: {node: '>=0.10.0'} + + object.assign@4.1.7: + resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} + engines: {node: '>= 0.4'} + + object.pick@1.3.0: + resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} + engines: {node: '>=0.10.0'} + + open@10.2.0: + resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==} + engines: {node: '>=18'} + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + own-keys@1.0.1: + resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} + engines: {node: '>= 0.4'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-ms@4.0.0: + resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==} + engines: {node: '>=18'} + + pascalcase@0.1.1: + resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} + engines: {node: '>=0.10.0'} + + path-browserify@1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-key@4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + pathe@0.2.0: + resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==} + + pathe@2.0.3: + resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} + + perfect-debounce@1.0.0: + resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.3: + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} + engines: {node: '>=12'} + + pidtree@0.6.0: + resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} + engines: {node: '>=0.10'} + hasBin: true + + pinia-plugin-persistedstate@3.2.3: + resolution: {integrity: sha512-Cm819WBj/s5K5DGw55EwbXDtx+EZzM0YR5AZbq9XE3u0xvXwvX2JnWoFpWIcdzISBHqy9H1UiSIUmXyXqWsQRQ==} + peerDependencies: + pinia: ^2.0.0 + + pinia@2.3.1: + resolution: {integrity: sha512-khUlZSwt9xXCaTbbxFYBKDc/bWAGWJjOgvxETwkTN7KRm66EeT1ZdZj6i2ceh9sP2Pzqsbc704r2yngBrxBVug==} + peerDependencies: + typescript: '>=4.4.4' + vue: ^2.7.0 || ^3.5.11 + peerDependenciesMeta: + typescript: + optional: true + + posix-character-classes@0.1.1: + resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} + engines: {node: '>=0.10.0'} + + possible-typed-array-names@1.1.0: + resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} + engines: {node: '>= 0.4'} + + postcss-prefix-selector@1.16.1: + resolution: {integrity: sha512-Umxu+FvKMwlY6TyDzGFoSUnzW+NOfMBLyC1tAkIjgX+Z/qGspJeRjVC903D7mx7TuBpJlwti2ibXtWuA7fKMeQ==} + peerDependencies: + postcss: '>4 <9' + + postcss-selector-parser@7.1.1: + resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==} + engines: {node: '>=4'} + + postcss@5.2.18: + resolution: {integrity: sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==} + engines: {node: '>=0.12'} + + postcss@8.5.6: + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} + engines: {node: ^10 || ^12 || >=14} + + posthtml-parser@0.2.1: + resolution: {integrity: sha512-nPC53YMqJnc/+1x4fRYFfm81KV2V+G9NZY+hTohpYg64Ay7NemWWcV4UWuy/SgMupqQ3kJ88M/iRfZmSnxT+pw==} + + posthtml-rename-id@1.0.12: + resolution: {integrity: sha512-UKXf9OF/no8WZo9edRzvuMenb6AD5hDLzIepJW+a4oJT+T/Lx7vfMYWT4aWlGNQh0WMhnUx1ipN9OkZ9q+ddEw==} + + posthtml-render@1.4.0: + resolution: {integrity: sha512-W1779iVHGfq0Fvh2PROhCe2QhB8mEErgqzo1wpIt36tCgChafP+hbXIhLDOM8ePJrZcFs0vkNEtdibEWVqChqw==} + engines: {node: '>=10'} + + posthtml-svg-mode@1.0.3: + resolution: {integrity: sha512-hEqw9NHZ9YgJ2/0G7CECOeuLQKZi8HjWLkBaSVtOWjygQ9ZD8P7tqeowYs7WrFdKsWEKG7o+IlsPY8jrr0CJpQ==} + + posthtml@0.9.2: + resolution: {integrity: sha512-spBB5sgC4cv2YcW03f/IAUN1pgDJWNWD8FzkyY4mArLUMJW+KlQhlmUdKAHQuPfb00Jl5xIfImeOsf6YL8QK7Q==} + engines: {node: '>=0.10.0'} + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + prettier-linter-helpers@1.0.0: + resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} + engines: {node: '>=6.0.0'} + + prettier@3.7.3: + resolution: {integrity: sha512-QgODejq9K3OzoBbuyobZlUhznP5SKwPqp+6Q6xw6o8gnhr4O85L2U915iM2IDcfF2NPXVaM9zlo9tdwipnYwzg==} + engines: {node: '>=14'} + hasBin: true + + pretty-ms@9.3.0: + resolution: {integrity: sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==} + engines: {node: '>=18'} + + proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + query-string@4.3.4: + resolution: {integrity: sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==} + engines: {node: '>=0.10.0'} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + read-package-json-fast@3.0.2: + resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readdirp@4.1.2: + resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} + engines: {node: '>= 14.18.0'} + + reflect.getprototypeof@1.0.10: + resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} + engines: {node: '>= 0.4'} + + regex-not@1.0.2: + resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} + engines: {node: '>=0.10.0'} + + regexp.prototype.flags@1.5.4: + resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} + engines: {node: '>= 0.4'} + + repeat-element@1.1.4: + resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} + engines: {node: '>=0.10.0'} + + repeat-string@1.6.1: + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-url@0.2.1: + resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} + deprecated: https://github.com/lydell/resolve-url#deprecated + + ret@0.1.15: + resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} + engines: {node: '>=0.12'} + + reusify@1.1.0: + resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + + rollup@4.53.3: + resolution: {integrity: sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + run-applescript@7.1.0: + resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==} + engines: {node: '>=18'} + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + safe-array-concat@1.1.3: + resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} + engines: {node: '>=0.4'} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-push-apply@1.0.0: + resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} + engines: {node: '>= 0.4'} + + safe-regex-test@1.1.0: + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} + engines: {node: '>= 0.4'} + + safe-regex@1.1.0: + resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} + + sass@1.87.0: + resolution: {integrity: sha512-d0NoFH4v6SjEK7BoX810Jsrhj7IQSYHAHLi/iSpgqKc7LaIDshFRlSg5LOymf9FqQhxEHs2W5ZQXlvy0KD45Uw==} + engines: {node: '>=14.0.0'} + hasBin: true + + screenfull@6.0.2: + resolution: {integrity: sha512-AQdy8s4WhNvUZ6P8F6PB21tSPIYKniic+Ogx0AacBMjKP1GUHN2E9URxQHtCusiwxudnCKkdy4GrHXPPJSkCCw==} + engines: {node: ^14.13.1 || >=16.0.0} + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.7.3: + resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} + engines: {node: '>=10'} + hasBin: true + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + + set-proto@1.0.0: + resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} + engines: {node: '>= 0.4'} + + set-value@2.0.1: + resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} + engines: {node: '>=0.10.0'} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shell-quote@1.8.3: + resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==} + engines: {node: '>= 0.4'} + + side-channel-list@1.0.0: + resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + engines: {node: '>= 0.4'} + + side-channel-map@1.0.1: + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + + side-channel@1.1.0: + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} + engines: {node: '>= 0.4'} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + sirv@3.0.2: + resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==} + engines: {node: '>=18'} + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + snapdragon-node@2.1.1: + resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} + engines: {node: '>=0.10.0'} + + snapdragon-util@3.0.1: + resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} + engines: {node: '>=0.10.0'} + + snapdragon@0.8.2: + resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} + engines: {node: '>=0.10.0'} + + sortablejs@1.15.6: + resolution: {integrity: sha512-aNfiuwMEpfBM/CN6LY0ibyhxPfPbyFeBTYJKCvzkJ2GkUpazIt3H+QIPAMHwqQ7tMKaHz1Qj+rJJCqljnf4p3A==} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map-resolve@0.5.3: + resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} + deprecated: See https://github.com/lydell/source-map-resolve#deprecated + + source-map-url@0.4.1: + resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} + deprecated: See https://github.com/lydell/source-map-url#deprecated + + source-map@0.5.7: + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + speakingurl@14.0.1: + resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==} + engines: {node: '>=0.10.0'} + + split-string@3.1.0: + resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} + engines: {node: '>=0.10.0'} + + stable@0.1.8: + resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} + deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' + + static-extend@0.1.2: + resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} + engines: {node: '>=0.10.0'} + + stop-iteration-iterator@1.1.0: + resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} + engines: {node: '>= 0.4'} + + strict-uri-encode@1.1.0: + resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==} + engines: {node: '>=0.10.0'} + + string.prototype.trim@1.2.10: + resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.9: + resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} + engines: {node: '>= 0.4'} + + string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + strip-ansi@3.0.1: + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} + engines: {node: '>=0.10.0'} + + strip-final-newline@4.0.0: + resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==} + engines: {node: '>=18'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + superjson@2.2.6: + resolution: {integrity: sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==} + engines: {node: '>=16'} + + supports-color@2.0.0: + resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} + engines: {node: '>=0.8.0'} + + supports-color@3.2.3: + resolution: {integrity: sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==} + engines: {node: '>=0.8.0'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + svg-baker@1.7.0: + resolution: {integrity: sha512-nibslMbkXOIkqKVrfcncwha45f97fGuAOn1G99YwnwTj8kF9YiM6XexPcUso97NxOm6GsP0SIvYVIosBis1xLg==} + + svgo@2.8.0: + resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} + engines: {node: '>=10.13.0'} + hasBin: true + + synckit@0.11.11: + resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==} + engines: {node: ^14.18.0 || >=16.0.0} + + tinyglobby@0.2.15: + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} + engines: {node: '>=12.0.0'} + + to-object-path@0.3.0: + resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} + engines: {node: '>=0.10.0'} + + to-regex-range@2.1.1: + resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} + engines: {node: '>=0.10.0'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + to-regex@3.0.2: + resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} + engines: {node: '>=0.10.0'} + + totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} + + traverse@0.6.11: + resolution: {integrity: sha512-vxXDZg8/+p3gblxB6BhhG5yWVn1kGRlaL8O78UDXc3wRnPizB5g83dcvWV1jpDMIPnjZjOFuxlMmE82XJ4407w==} + engines: {node: '>= 0.4'} + + ts-api-utils@1.4.3: + resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} + engines: {node: '>=16'} + peerDependencies: + typescript: '>=4.2.0' + + ts-api-utils@2.1.0: + resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} + engines: {node: '>=18.12'} + peerDependencies: + typescript: '>=4.8.4' + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + typed-array-buffer@1.0.3: + resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.3: + resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.4: + resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + engines: {node: '>= 0.4'} + + typedarray.prototype.slice@1.0.5: + resolution: {integrity: sha512-q7QNVDGTdl702bVFiI5eY4l/HkgCM6at9KhcFbgUAzezHFbOVy4+0O/lCjsABEQwbZPravVfBIiBVGo89yzHFg==} + engines: {node: '>= 0.4'} + + typescript-eslint@8.48.0: + resolution: {integrity: sha512-fcKOvQD9GUn3Xw63EgiDqhvWJ5jsyZUaekl3KVpGsDJnN46WJTe3jWxtQP9lMZm1LJNkFLlTaWAxK2vUQR+cqw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + typescript@5.2.2: + resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} + engines: {node: '>=14.17'} + hasBin: true + + unbox-primitive@1.1.0: + resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} + engines: {node: '>= 0.4'} + + undici-types@5.26.5: + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + + unicorn-magic@0.3.0: + resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==} + engines: {node: '>=18'} + + union-value@1.0.1: + resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} + engines: {node: '>=0.10.0'} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + unset-value@1.0.0: + resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} + engines: {node: '>=0.10.0'} + + update-browserslist-db@1.1.4: + resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + urix@0.1.0: + resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} + deprecated: Please see https://github.com/lydell/urix#deprecated + + use@3.1.1: + resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} + engines: {node: '>=0.10.0'} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + + vite-hot-client@2.1.0: + resolution: {integrity: sha512-7SpgZmU7R+dDnSmvXE1mfDtnHLHQSisdySVR7lO8ceAXvM0otZeuQQ6C8LrS5d/aYyP/QZ0hI0L+dIPrm4YlFQ==} + peerDependencies: + vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0 + + vite-plugin-compression@0.5.1: + resolution: {integrity: sha512-5QJKBDc+gNYVqL/skgFAP81Yuzo9R+EAf19d+EtsMF/i8kFUpNi3J/H01QD3Oo8zBQn+NzoCIFkpPLynoOzaJg==} + peerDependencies: + vite: '>=2.0.0' + + vite-plugin-inspect@0.8.9: + resolution: {integrity: sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==} + engines: {node: '>=14'} + peerDependencies: + '@nuxt/kit': '*' + vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.1 + peerDependenciesMeta: + '@nuxt/kit': + optional: true + + vite-plugin-svg-icons@2.0.1: + resolution: {integrity: sha512-6ktD+DhV6Rz3VtedYvBKKVA2eXF+sAQVaKkKLDSqGUfnhqXl3bj5PPkVTl3VexfTuZy66PmINi8Q6eFnVfRUmA==} + peerDependencies: + vite: '>=2.0.0' + + vite-plugin-vue-devtools@7.7.9: + resolution: {integrity: sha512-08DvePf663SxqLFJeMVNW537zzVyakp9KIrI2K7lwgaTqA5R/ydN/N2K8dgZO34tg/Qmw0ch84fOKoBtCEdcGg==} + engines: {node: '>=v14.21.3'} + peerDependencies: + vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0 + + vite-plugin-vue-inspector@5.3.2: + resolution: {integrity: sha512-YvEKooQcSiBTAs0DoYLfefNja9bLgkFM7NI2b07bE2SruuvX0MEa9cMaxjKVMkeCp5Nz9FRIdcN1rOdFVBeL6Q==} + peerDependencies: + vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0 + + vite@6.3.4: + resolution: {integrity: sha512-BiReIiMS2fyFqbqNT/Qqt4CVITDU9M9vE+DKcVAsB+ZV0wvTKd+3hMbkpxz1b+NmEDMegpVbisKiAZOnvO92Sw==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + jiti: '>=1.21.0' + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + vscode-uri@3.1.0: + resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==} + + vue-demi@0.14.10: + resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==} + engines: {node: '>=12'} + hasBin: true + peerDependencies: + '@vue/composition-api': ^1.0.0-rc.1 + vue: ^3.0.0-0 || ^2.6.0 + peerDependenciesMeta: + '@vue/composition-api': + optional: true + + vue-eslint-parser@10.2.0: + resolution: {integrity: sha512-CydUvFOQKD928UzZhTp4pr2vWz1L+H99t7Pkln2QSPdvmURT0MoC4wUccfCnuEaihNsu9aYYyk+bep8rlfkUXw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + + vue-eslint-parser@9.4.3: + resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + + vue-i18n@9.14.5: + resolution: {integrity: sha512-0jQ9Em3ymWngyiIkj0+c/k7WgaPO+TNzjKSNq9BvBQaKJECqn9cd9fL4tkDhB5G1QBskGl9YxxbDAhgbFtpe2g==} + engines: {node: '>= 16'} + peerDependencies: + vue: ^3.0.0 + + vue-router@4.6.3: + resolution: {integrity: sha512-ARBedLm9YlbvQomnmq91Os7ck6efydTSpRP3nuOKCvgJOHNrhRoJDSKtee8kcL1Vf7nz6U+PMBL+hTvR3bTVQg==} + peerDependencies: + vue: ^3.5.0 + + vue-tsc@2.2.12: + resolution: {integrity: sha512-P7OP77b2h/Pmk+lZdJ0YWs+5tJ6J2+uOQPo7tlBnY44QqQSPYvS0qVT4wqDJgwrZaLe47etJLLQRFia71GYITw==} + hasBin: true + peerDependencies: + typescript: '>=5.0.0' + + vue@3.5.25: + resolution: {integrity: sha512-YLVdgv2K13WJ6n+kD5owehKtEXwdwXuj2TTyJMsO7pSeKw2bfRNZGjhB7YzrpbMYj5b5QsUebHpOqR3R3ziy/g==} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + which-boxed-primitive@1.1.1: + resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} + engines: {node: '>= 0.4'} + + which-builtin-type@1.2.1: + resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + + which-typed-array@1.1.19: + resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} + engines: {node: '>= 0.4'} + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + which@3.0.1: + resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wsl-utils@0.1.0: + resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==} + engines: {node: '>=18'} + + xml-name-validator@4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + yoctocolors@2.1.2: + resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==} + engines: {node: '>=18'} + +snapshots: + + '@antfu/utils@0.7.10': {} + + '@babel/code-frame@7.27.1': + dependencies: + '@babel/helper-validator-identifier': 7.28.5 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/compat-data@7.28.5': {} + + '@babel/core@7.28.5': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.5 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5) + '@babel/helpers': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 + '@jridgewell/remapping': 2.3.5 + convert-source-map: 2.0.0 + debug: 4.4.3 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/generator@7.28.5': + dependencies: + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + jsesc: 3.1.0 + + '@babel/helper-annotate-as-pure@7.27.3': + dependencies: + '@babel/types': 7.28.5 + + '@babel/helper-compilation-targets@7.27.2': + dependencies: + '@babel/compat-data': 7.28.5 + '@babel/helper-validator-option': 7.27.1 + browserslist: 4.28.0 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-create-class-features-plugin@7.28.5(@babel/core@7.28.5)': + dependencies: + '@babel/core': 7.28.5 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-member-expression-to-functions': 7.28.5 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.5) + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/traverse': 7.28.5 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-globals@7.28.0': {} + + '@babel/helper-member-expression-to-functions@7.28.5': + dependencies: + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-imports@7.27.1': + dependencies: + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)': + dependencies: + '@babel/core': 7.28.5 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/helper-optimise-call-expression@7.27.1': + dependencies: + '@babel/types': 7.28.5 + + '@babel/helper-plugin-utils@7.27.1': {} + + '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.5)': + dependencies: + '@babel/core': 7.28.5 + '@babel/helper-member-expression-to-functions': 7.28.5 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/traverse': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': + dependencies: + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@babel/helper-string-parser@7.27.1': {} + + '@babel/helper-validator-identifier@7.28.5': {} + + '@babel/helper-validator-option@7.27.1': {} + + '@babel/helpers@7.28.4': + dependencies: + '@babel/template': 7.27.2 + '@babel/types': 7.28.5 + + '@babel/parser@7.28.5': + dependencies: + '@babel/types': 7.28.5 + + '@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.28.5)': + dependencies: + '@babel/core': 7.28.5 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.28.5) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.28.5)': + dependencies: + '@babel/core': 7.28.5 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.5)': + dependencies: + '@babel/core': 7.28.5 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.5)': + dependencies: + '@babel/core': 7.28.5 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.5)': + dependencies: + '@babel/core': 7.28.5 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.5)': + dependencies: + '@babel/core': 7.28.5 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-typescript@7.28.5(@babel/core@7.28.5)': + dependencies: + '@babel/core': 7.28.5 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.5) + transitivePeerDependencies: + - supports-color + + '@babel/template@7.27.2': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 + + '@babel/traverse@7.28.5': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.5 + '@babel/helper-globals': 7.28.0 + '@babel/parser': 7.28.5 + '@babel/template': 7.27.2 + '@babel/types': 7.28.5 + debug: 4.4.3 + transitivePeerDependencies: + - supports-color + + '@babel/types@7.28.5': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 + + '@ctrl/tinycolor@3.6.1': {} + + '@element-plus/icons-vue@2.3.2(vue@3.5.25(typescript@5.2.2))': + dependencies: + vue: 3.5.25(typescript@5.2.2) + + '@esbuild/aix-ppc64@0.25.12': + optional: true + + '@esbuild/android-arm64@0.25.12': + optional: true + + '@esbuild/android-arm@0.25.12': + optional: true + + '@esbuild/android-x64@0.25.12': + optional: true + + '@esbuild/darwin-arm64@0.25.12': + optional: true + + '@esbuild/darwin-x64@0.25.12': + optional: true + + '@esbuild/freebsd-arm64@0.25.12': + optional: true + + '@esbuild/freebsd-x64@0.25.12': + optional: true + + '@esbuild/linux-arm64@0.25.12': + optional: true + + '@esbuild/linux-arm@0.25.12': + optional: true + + '@esbuild/linux-ia32@0.25.12': + optional: true + + '@esbuild/linux-loong64@0.25.12': + optional: true + + '@esbuild/linux-mips64el@0.25.12': + optional: true + + '@esbuild/linux-ppc64@0.25.12': + optional: true + + '@esbuild/linux-riscv64@0.25.12': + optional: true + + '@esbuild/linux-s390x@0.25.12': + optional: true + + '@esbuild/linux-x64@0.25.12': + optional: true + + '@esbuild/netbsd-arm64@0.25.12': + optional: true + + '@esbuild/netbsd-x64@0.25.12': + optional: true + + '@esbuild/openbsd-arm64@0.25.12': + optional: true + + '@esbuild/openbsd-x64@0.25.12': + optional: true + + '@esbuild/openharmony-arm64@0.25.12': + optional: true + + '@esbuild/sunos-x64@0.25.12': + optional: true + + '@esbuild/win32-arm64@0.25.12': + optional: true + + '@esbuild/win32-ia32@0.25.12': + optional: true + + '@esbuild/win32-x64@0.25.12': + optional: true + + '@eslint-community/eslint-utils@4.9.0(eslint@9.39.1)': + dependencies: + eslint: 9.39.1 + eslint-visitor-keys: 3.4.3 + + '@eslint-community/regexpp@4.12.2': {} + + '@eslint/config-array@0.21.1': + dependencies: + '@eslint/object-schema': 2.1.7 + debug: 4.4.3 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/config-helpers@0.4.2': + dependencies: + '@eslint/core': 0.17.0 + + '@eslint/core@0.17.0': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/eslintrc@3.3.3': + dependencies: + ajv: 6.12.6 + debug: 4.4.3 + espree: 10.4.0 + globals: 14.0.0 + ignore: 5.3.2 + import-fresh: 3.3.1 + js-yaml: 4.1.1 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + + '@eslint/js@9.39.1': {} + + '@eslint/object-schema@2.1.7': {} + + '@eslint/plugin-kit@0.4.1': + dependencies: + '@eslint/core': 0.17.0 + levn: 0.4.1 + + '@floating-ui/core@1.7.3': + dependencies: + '@floating-ui/utils': 0.2.10 + + '@floating-ui/dom@1.7.4': + dependencies: + '@floating-ui/core': 1.7.3 + '@floating-ui/utils': 0.2.10 + + '@floating-ui/utils@0.2.10': {} + + '@highlightjs/vue-plugin@2.1.0(highlight.js@11.11.1)(vue@3.5.25(typescript@5.2.2))': + dependencies: + highlight.js: 11.11.1 + vue: 3.5.25(typescript@5.2.2) + + '@humanfs/core@0.19.1': {} + + '@humanfs/node@0.16.7': + dependencies: + '@humanfs/core': 0.19.1 + '@humanwhocodes/retry': 0.4.3 + + '@humanwhocodes/module-importer@1.0.1': {} + + '@humanwhocodes/retry@0.4.3': {} + + '@intlify/core-base@9.14.5': + dependencies: + '@intlify/message-compiler': 9.14.5 + '@intlify/shared': 9.14.5 + + '@intlify/message-compiler@9.14.5': + dependencies: + '@intlify/shared': 9.14.5 + source-map-js: 1.2.1 + + '@intlify/shared@9.14.5': {} + + '@jridgewell/gen-mapping@0.3.13': + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + '@jridgewell/trace-mapping': 0.3.31 + + '@jridgewell/remapping@2.3.5': + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + + '@jridgewell/resolve-uri@3.1.2': {} + + '@jridgewell/sourcemap-codec@1.5.5': {} + + '@jridgewell/trace-mapping@0.3.31': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.5 + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.19.1 + + '@parcel/watcher-android-arm64@2.5.1': + optional: true + + '@parcel/watcher-darwin-arm64@2.5.1': + optional: true + + '@parcel/watcher-darwin-x64@2.5.1': + optional: true + + '@parcel/watcher-freebsd-x64@2.5.1': + optional: true + + '@parcel/watcher-linux-arm-glibc@2.5.1': + optional: true + + '@parcel/watcher-linux-arm-musl@2.5.1': + optional: true + + '@parcel/watcher-linux-arm64-glibc@2.5.1': + optional: true + + '@parcel/watcher-linux-arm64-musl@2.5.1': + optional: true + + '@parcel/watcher-linux-x64-glibc@2.5.1': + optional: true + + '@parcel/watcher-linux-x64-musl@2.5.1': + optional: true + + '@parcel/watcher-win32-arm64@2.5.1': + optional: true + + '@parcel/watcher-win32-ia32@2.5.1': + optional: true + + '@parcel/watcher-win32-x64@2.5.1': + optional: true + + '@parcel/watcher@2.5.1': + dependencies: + detect-libc: 1.0.3 + is-glob: 4.0.3 + micromatch: 4.0.8 + node-addon-api: 7.1.1 + optionalDependencies: + '@parcel/watcher-android-arm64': 2.5.1 + '@parcel/watcher-darwin-arm64': 2.5.1 + '@parcel/watcher-darwin-x64': 2.5.1 + '@parcel/watcher-freebsd-x64': 2.5.1 + '@parcel/watcher-linux-arm-glibc': 2.5.1 + '@parcel/watcher-linux-arm-musl': 2.5.1 + '@parcel/watcher-linux-arm64-glibc': 2.5.1 + '@parcel/watcher-linux-arm64-musl': 2.5.1 + '@parcel/watcher-linux-x64-glibc': 2.5.1 + '@parcel/watcher-linux-x64-musl': 2.5.1 + '@parcel/watcher-win32-arm64': 2.5.1 + '@parcel/watcher-win32-ia32': 2.5.1 + '@parcel/watcher-win32-x64': 2.5.1 + optional: true + + '@pkgr/core@0.2.9': {} + + '@polka/url@1.0.0-next.29': {} + + '@rolldown/pluginutils@1.0.0-beta.50': {} + + '@rollup/pluginutils@5.3.0(rollup@4.53.3)': + dependencies: + '@types/estree': 1.0.8 + estree-walker: 2.0.2 + picomatch: 4.0.3 + optionalDependencies: + rollup: 4.53.3 + + '@rollup/rollup-android-arm-eabi@4.53.3': + optional: true + + '@rollup/rollup-android-arm64@4.53.3': + optional: true + + '@rollup/rollup-darwin-arm64@4.53.3': + optional: true + + '@rollup/rollup-darwin-x64@4.53.3': + optional: true + + '@rollup/rollup-freebsd-arm64@4.53.3': + optional: true + + '@rollup/rollup-freebsd-x64@4.53.3': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.53.3': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.53.3': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.53.3': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.53.3': + optional: true + + '@rollup/rollup-linux-loong64-gnu@4.53.3': + optional: true + + '@rollup/rollup-linux-ppc64-gnu@4.53.3': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.53.3': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.53.3': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.53.3': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.53.3': + optional: true + + '@rollup/rollup-linux-x64-musl@4.53.3': + optional: true + + '@rollup/rollup-openharmony-arm64@4.53.3': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.53.3': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.53.3': + optional: true + + '@rollup/rollup-win32-x64-gnu@4.53.3': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.53.3': + optional: true + + '@rushstack/eslint-patch@1.15.0': {} + + '@sec-ant/readable-stream@0.4.1': {} + + '@sindresorhus/merge-streams@4.0.0': {} + + '@sxzz/popperjs-es@2.11.7': {} + + '@trysound/sax@0.2.0': {} + + '@tsconfig/node18@18.2.6': {} + + '@types/estree@1.0.8': {} + + '@types/json-schema@7.0.15': {} + + '@types/lodash-es@4.17.12': + dependencies: + '@types/lodash': 4.17.21 + + '@types/lodash.merge@4.6.9': + dependencies: + '@types/lodash': 4.17.21 + + '@types/lodash@4.17.21': {} + + '@types/node-forge@1.3.14': + dependencies: + '@types/node': 18.19.130 + + '@types/node@18.19.130': + dependencies: + undici-types: 5.26.5 + + '@types/nprogress@0.2.3': {} + + '@types/semver@7.7.1': {} + + '@types/sortablejs@1.15.9': {} + + '@types/svgo@2.6.4': + dependencies: + '@types/node': 18.19.130 + + '@types/web-bluetooth@0.0.16': {} + + '@types/web-bluetooth@0.0.20': {} + + '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.39.1)(typescript@5.2.2))(eslint@9.39.1)(typescript@5.2.2)': + dependencies: + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 6.21.0(eslint@9.39.1)(typescript@5.2.2) + '@typescript-eslint/scope-manager': 6.21.0 + '@typescript-eslint/type-utils': 6.21.0(eslint@9.39.1)(typescript@5.2.2) + '@typescript-eslint/utils': 6.21.0(eslint@9.39.1)(typescript@5.2.2) + '@typescript-eslint/visitor-keys': 6.21.0 + debug: 4.4.3 + eslint: 9.39.1 + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare: 1.4.0 + semver: 7.7.3 + ts-api-utils: 1.4.3(typescript@5.2.2) + optionalDependencies: + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/eslint-plugin@8.48.0(@typescript-eslint/parser@8.48.0(eslint@9.39.1)(typescript@5.2.2))(eslint@9.39.1)(typescript@5.2.2)': + dependencies: + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 8.48.0(eslint@9.39.1)(typescript@5.2.2) + '@typescript-eslint/scope-manager': 8.48.0 + '@typescript-eslint/type-utils': 8.48.0(eslint@9.39.1)(typescript@5.2.2) + '@typescript-eslint/utils': 8.48.0(eslint@9.39.1)(typescript@5.2.2) + '@typescript-eslint/visitor-keys': 8.48.0 + eslint: 9.39.1 + graphemer: 1.4.0 + ignore: 7.0.5 + natural-compare: 1.4.0 + ts-api-utils: 2.1.0(typescript@5.2.2) + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@6.21.0(eslint@9.39.1)(typescript@5.2.2)': + dependencies: + '@typescript-eslint/scope-manager': 6.21.0 + '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.2.2) + '@typescript-eslint/visitor-keys': 6.21.0 + debug: 4.4.3 + eslint: 9.39.1 + optionalDependencies: + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@8.48.0(eslint@9.39.1)(typescript@5.2.2)': + dependencies: + '@typescript-eslint/scope-manager': 8.48.0 + '@typescript-eslint/types': 8.48.0 + '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.2.2) + '@typescript-eslint/visitor-keys': 8.48.0 + debug: 4.4.3 + eslint: 9.39.1 + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/project-service@8.48.0(typescript@5.2.2)': + dependencies: + '@typescript-eslint/tsconfig-utils': 8.48.0(typescript@5.2.2) + '@typescript-eslint/types': 8.48.0 + debug: 4.4.3 + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/scope-manager@6.21.0': + dependencies: + '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/visitor-keys': 6.21.0 + + '@typescript-eslint/scope-manager@8.48.0': + dependencies: + '@typescript-eslint/types': 8.48.0 + '@typescript-eslint/visitor-keys': 8.48.0 + + '@typescript-eslint/tsconfig-utils@8.48.0(typescript@5.2.2)': + dependencies: + typescript: 5.2.2 + + '@typescript-eslint/type-utils@6.21.0(eslint@9.39.1)(typescript@5.2.2)': + dependencies: + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.2.2) + '@typescript-eslint/utils': 6.21.0(eslint@9.39.1)(typescript@5.2.2) + debug: 4.4.3 + eslint: 9.39.1 + ts-api-utils: 1.4.3(typescript@5.2.2) + optionalDependencies: + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/type-utils@8.48.0(eslint@9.39.1)(typescript@5.2.2)': + dependencies: + '@typescript-eslint/types': 8.48.0 + '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.2.2) + '@typescript-eslint/utils': 8.48.0(eslint@9.39.1)(typescript@5.2.2) + debug: 4.4.3 + eslint: 9.39.1 + ts-api-utils: 2.1.0(typescript@5.2.2) + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/types@6.21.0': {} + + '@typescript-eslint/types@8.48.0': {} + + '@typescript-eslint/typescript-estree@6.21.0(typescript@5.2.2)': + dependencies: + '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/visitor-keys': 6.21.0 + debug: 4.4.3 + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.3 + semver: 7.7.3 + ts-api-utils: 1.4.3(typescript@5.2.2) + optionalDependencies: + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/typescript-estree@8.48.0(typescript@5.2.2)': + dependencies: + '@typescript-eslint/project-service': 8.48.0(typescript@5.2.2) + '@typescript-eslint/tsconfig-utils': 8.48.0(typescript@5.2.2) + '@typescript-eslint/types': 8.48.0 + '@typescript-eslint/visitor-keys': 8.48.0 + debug: 4.4.3 + minimatch: 9.0.5 + semver: 7.7.3 + tinyglobby: 0.2.15 + ts-api-utils: 2.1.0(typescript@5.2.2) + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@6.21.0(eslint@9.39.1)(typescript@5.2.2)': + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1) + '@types/json-schema': 7.0.15 + '@types/semver': 7.7.1 + '@typescript-eslint/scope-manager': 6.21.0 + '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.2.2) + eslint: 9.39.1 + semver: 7.7.3 + transitivePeerDependencies: + - supports-color + - typescript + + '@typescript-eslint/utils@8.48.0(eslint@9.39.1)(typescript@5.2.2)': + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1) + '@typescript-eslint/scope-manager': 8.48.0 + '@typescript-eslint/types': 8.48.0 + '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.2.2) + eslint: 9.39.1 + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/visitor-keys@6.21.0': + dependencies: + '@typescript-eslint/types': 6.21.0 + eslint-visitor-keys: 3.4.3 + + '@typescript-eslint/visitor-keys@8.48.0': + dependencies: + '@typescript-eslint/types': 8.48.0 + eslint-visitor-keys: 4.2.1 + + '@vitejs/plugin-vue-jsx@5.1.2(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0))(vue@3.5.25(typescript@5.2.2))': + dependencies: + '@babel/core': 7.28.5 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-transform-typescript': 7.28.5(@babel/core@7.28.5) + '@rolldown/pluginutils': 1.0.0-beta.50 + '@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.28.5) + vite: 6.3.4(@types/node@18.19.130)(sass@1.87.0) + vue: 3.5.25(typescript@5.2.2) + transitivePeerDependencies: + - supports-color + + '@vitejs/plugin-vue@6.0.2(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0))(vue@3.5.25(typescript@5.2.2))': + dependencies: + '@rolldown/pluginutils': 1.0.0-beta.50 + vite: 6.3.4(@types/node@18.19.130)(sass@1.87.0) + vue: 3.5.25(typescript@5.2.2) + + '@volar/language-core@2.4.15': + dependencies: + '@volar/source-map': 2.4.15 + + '@volar/source-map@2.4.15': {} + + '@volar/typescript@2.4.15': + dependencies: + '@volar/language-core': 2.4.15 + path-browserify: 1.0.1 + vscode-uri: 3.1.0 + + '@vue/babel-helper-vue-transform-on@1.5.0': {} + + '@vue/babel-helper-vue-transform-on@2.0.1': {} + + '@vue/babel-plugin-jsx@1.5.0(@babel/core@7.28.5)': + dependencies: + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5) + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 + '@vue/babel-helper-vue-transform-on': 1.5.0 + '@vue/babel-plugin-resolve-type': 1.5.0(@babel/core@7.28.5) + '@vue/shared': 3.5.25 + optionalDependencies: + '@babel/core': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@vue/babel-plugin-jsx@2.0.1(@babel/core@7.28.5)': + dependencies: + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5) + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 + '@vue/babel-helper-vue-transform-on': 2.0.1 + '@vue/babel-plugin-resolve-type': 2.0.1(@babel/core@7.28.5) + '@vue/shared': 3.5.25 + optionalDependencies: + '@babel/core': 7.28.5 + transitivePeerDependencies: + - supports-color + + '@vue/babel-plugin-resolve-type@1.5.0(@babel/core@7.28.5)': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/core': 7.28.5 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/parser': 7.28.5 + '@vue/compiler-sfc': 3.5.25 + transitivePeerDependencies: + - supports-color + + '@vue/babel-plugin-resolve-type@2.0.1(@babel/core@7.28.5)': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/core': 7.28.5 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/parser': 7.28.5 + '@vue/compiler-sfc': 3.5.25 + transitivePeerDependencies: + - supports-color + + '@vue/compiler-core@3.5.25': + dependencies: + '@babel/parser': 7.28.5 + '@vue/shared': 3.5.25 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.1 + + '@vue/compiler-dom@3.5.25': + dependencies: + '@vue/compiler-core': 3.5.25 + '@vue/shared': 3.5.25 + + '@vue/compiler-sfc@3.5.25': + dependencies: + '@babel/parser': 7.28.5 + '@vue/compiler-core': 3.5.25 + '@vue/compiler-dom': 3.5.25 + '@vue/compiler-ssr': 3.5.25 + '@vue/shared': 3.5.25 + estree-walker: 2.0.2 + magic-string: 0.30.21 + postcss: 8.5.6 + source-map-js: 1.2.1 + + '@vue/compiler-ssr@3.5.25': + dependencies: + '@vue/compiler-dom': 3.5.25 + '@vue/shared': 3.5.25 + + '@vue/compiler-vue2@2.7.16': + dependencies: + de-indent: 1.0.2 + he: 1.2.0 + + '@vue/devtools-api@6.6.4': {} + + '@vue/devtools-core@7.7.9(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0))(vue@3.5.25(typescript@5.2.2))': + dependencies: + '@vue/devtools-kit': 7.7.9 + '@vue/devtools-shared': 7.7.9 + mitt: 3.0.1 + nanoid: 5.1.6 + pathe: 2.0.3 + vite-hot-client: 2.1.0(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0)) + vue: 3.5.25(typescript@5.2.2) + transitivePeerDependencies: + - vite + + '@vue/devtools-kit@7.7.9': + dependencies: + '@vue/devtools-shared': 7.7.9 + birpc: 2.8.0 + hookable: 5.5.3 + mitt: 3.0.1 + perfect-debounce: 1.0.0 + speakingurl: 14.0.1 + superjson: 2.2.6 + + '@vue/devtools-shared@7.7.9': + dependencies: + rfdc: 1.4.1 + + '@vue/eslint-config-prettier@8.0.0(eslint@9.39.1)(prettier@3.7.3)': + dependencies: + eslint: 9.39.1 + eslint-config-prettier: 8.10.2(eslint@9.39.1) + eslint-plugin-prettier: 5.5.4(eslint-config-prettier@8.10.2(eslint@9.39.1))(eslint@9.39.1)(prettier@3.7.3) + prettier: 3.7.3 + transitivePeerDependencies: + - '@types/eslint' + + '@vue/eslint-config-typescript@12.0.0(eslint-plugin-vue@10.6.2(@typescript-eslint/parser@8.48.0(eslint@9.39.1)(typescript@5.2.2))(eslint@9.39.1)(vue-eslint-parser@10.2.0(eslint@9.39.1)))(eslint@9.39.1)(typescript@5.2.2)': + dependencies: + '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.39.1)(typescript@5.2.2))(eslint@9.39.1)(typescript@5.2.2) + '@typescript-eslint/parser': 6.21.0(eslint@9.39.1)(typescript@5.2.2) + eslint: 9.39.1 + eslint-plugin-vue: 10.6.2(@typescript-eslint/parser@8.48.0(eslint@9.39.1)(typescript@5.2.2))(eslint@9.39.1)(vue-eslint-parser@10.2.0(eslint@9.39.1)) + vue-eslint-parser: 9.4.3(eslint@9.39.1) + optionalDependencies: + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + '@vue/language-core@2.2.12(typescript@5.2.2)': + dependencies: + '@volar/language-core': 2.4.15 + '@vue/compiler-dom': 3.5.25 + '@vue/compiler-vue2': 2.7.16 + '@vue/shared': 3.5.25 + alien-signals: 1.0.13 + minimatch: 9.0.5 + muggle-string: 0.4.1 + path-browserify: 1.0.1 + optionalDependencies: + typescript: 5.2.2 + + '@vue/reactivity@3.5.25': + dependencies: + '@vue/shared': 3.5.25 + + '@vue/runtime-core@3.5.25': + dependencies: + '@vue/reactivity': 3.5.25 + '@vue/shared': 3.5.25 + + '@vue/runtime-dom@3.5.25': + dependencies: + '@vue/reactivity': 3.5.25 + '@vue/runtime-core': 3.5.25 + '@vue/shared': 3.5.25 + csstype: 3.2.3 + + '@vue/server-renderer@3.5.25(vue@3.5.25(typescript@5.2.2))': + dependencies: + '@vue/compiler-ssr': 3.5.25 + '@vue/shared': 3.5.25 + vue: 3.5.25(typescript@5.2.2) + + '@vue/shared@3.5.25': {} + + '@vue/tsconfig@0.5.1': {} + + '@vueuse/core@10.11.1(vue@3.5.25(typescript@5.2.2))': + dependencies: + '@types/web-bluetooth': 0.0.20 + '@vueuse/metadata': 10.11.1 + '@vueuse/shared': 10.11.1(vue@3.5.25(typescript@5.2.2)) + vue-demi: 0.14.10(vue@3.5.25(typescript@5.2.2)) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + + '@vueuse/core@9.13.0(vue@3.5.25(typescript@5.2.2))': + dependencies: + '@types/web-bluetooth': 0.0.16 + '@vueuse/metadata': 9.13.0 + '@vueuse/shared': 9.13.0(vue@3.5.25(typescript@5.2.2)) + vue-demi: 0.14.10(vue@3.5.25(typescript@5.2.2)) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + + '@vueuse/metadata@10.11.1': {} + + '@vueuse/metadata@9.13.0': {} + + '@vueuse/shared@10.11.1(vue@3.5.25(typescript@5.2.2))': + dependencies: + vue-demi: 0.14.10(vue@3.5.25(typescript@5.2.2)) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + + '@vueuse/shared@9.13.0(vue@3.5.25(typescript@5.2.2))': + dependencies: + vue-demi: 0.14.10(vue@3.5.25(typescript@5.2.2)) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + + acorn-jsx@5.3.2(acorn@8.15.0): + dependencies: + acorn: 8.15.0 + + acorn@8.15.0: {} + + ajv@6.12.6: + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + + alien-signals@1.0.13: {} + + ansi-regex@2.1.1: {} + + ansi-styles@2.2.1: {} + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + ansi-styles@6.2.3: {} + + argparse@2.0.1: {} + + arr-diff@4.0.0: {} + + arr-flatten@1.1.0: {} + + arr-union@3.1.0: {} + + array-buffer-byte-length@1.0.2: + dependencies: + call-bound: 1.0.4 + is-array-buffer: 3.0.5 + + array-union@2.1.0: {} + + array-unique@0.3.2: {} + + arraybuffer.prototype.slice@1.0.4: + dependencies: + array-buffer-byte-length: 1.0.2 + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + is-array-buffer: 3.0.5 + + assign-symbols@1.0.0: {} + + async-function@1.0.0: {} + + async-validator@4.2.5: {} + + asynckit@0.4.0: {} + + atob@2.1.2: {} + + available-typed-arrays@1.0.7: + dependencies: + possible-typed-array-names: 1.1.0 + + axios@1.13.2: + dependencies: + follow-redirects: 1.15.11 + form-data: 4.0.5 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + + balanced-match@1.0.2: {} + + base@0.11.2: + dependencies: + cache-base: 1.0.1 + class-utils: 0.3.6 + component-emitter: 1.3.1 + define-property: 1.0.0 + isobject: 3.0.1 + mixin-deep: 1.3.2 + pascalcase: 0.1.1 + + baseline-browser-mapping@2.8.32: {} + + big.js@5.2.2: {} + + birpc@2.8.0: {} + + bluebird@3.7.2: {} + + boolbase@1.0.0: {} + + brace-expansion@1.1.12: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + brace-expansion@2.0.2: + dependencies: + balanced-match: 1.0.2 + + braces@2.3.2: + dependencies: + arr-flatten: 1.1.0 + array-unique: 0.3.2 + extend-shallow: 2.0.1 + fill-range: 4.0.0 + isobject: 3.0.1 + repeat-element: 1.1.4 + snapdragon: 0.8.2 + snapdragon-node: 2.1.1 + split-string: 3.1.0 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + + browserslist@4.28.0: + dependencies: + baseline-browser-mapping: 2.8.32 + caniuse-lite: 1.0.30001757 + electron-to-chromium: 1.5.263 + node-releases: 2.0.27 + update-browserslist-db: 1.1.4(browserslist@4.28.0) + + bundle-name@4.1.0: + dependencies: + run-applescript: 7.1.0 + + cache-base@1.0.1: + dependencies: + collection-visit: 1.0.0 + component-emitter: 1.3.1 + get-value: 2.0.6 + has-value: 1.0.0 + isobject: 3.0.1 + set-value: 2.0.1 + to-object-path: 0.3.0 + union-value: 1.0.1 + unset-value: 1.0.0 + + call-bind-apply-helpers@1.0.2: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + + call-bind@1.0.8: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + get-intrinsic: 1.3.0 + set-function-length: 1.2.2 + + call-bound@1.0.4: + dependencies: + call-bind-apply-helpers: 1.0.2 + get-intrinsic: 1.3.0 + + callsites@3.1.0: {} + + caniuse-lite@1.0.30001757: {} + + chalk@1.1.3: + dependencies: + ansi-styles: 2.2.1 + escape-string-regexp: 1.0.5 + has-ansi: 2.0.0 + strip-ansi: 3.0.1 + supports-color: 2.0.0 + + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chokidar@4.0.3: + dependencies: + readdirp: 4.1.2 + + class-utils@0.3.6: + dependencies: + arr-union: 3.1.0 + define-property: 0.2.5 + isobject: 3.0.1 + static-extend: 0.1.2 + + clone@2.1.2: {} + + collection-visit@1.0.0: + dependencies: + map-visit: 1.0.0 + object-visit: 1.0.1 + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.4: {} + + combined-stream@1.0.8: + dependencies: + delayed-stream: 1.0.0 + + commander@7.2.0: {} + + component-emitter@1.3.1: {} + + concat-map@0.0.1: {} + + convert-source-map@2.0.0: {} + + copy-anything@4.0.5: + dependencies: + is-what: 5.5.0 + + copy-descriptor@0.1.1: {} + + cors@2.8.5: + dependencies: + object-assign: 4.1.1 + vary: 1.1.2 + + cross-spawn@7.0.6: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + css-select@4.3.0: + dependencies: + boolbase: 1.0.0 + css-what: 6.2.2 + domhandler: 4.3.1 + domutils: 2.8.0 + nth-check: 2.1.1 + + css-tree@1.1.3: + dependencies: + mdn-data: 2.0.14 + source-map: 0.6.1 + + css-what@6.2.2: {} + + cssesc@3.0.0: {} + + csso@4.2.0: + dependencies: + css-tree: 1.1.3 + + csstype@3.2.3: {} + + data-view-buffer@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-length@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-offset@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + dayjs@1.11.19: {} + + de-indent@1.0.2: {} + + debug@2.6.9: + dependencies: + ms: 2.0.0 + + debug@4.4.3: + dependencies: + ms: 2.1.3 + + decode-uri-component@0.2.2: {} + + deep-is@0.1.4: {} + + default-browser-id@5.0.1: {} + + default-browser@5.4.0: + dependencies: + bundle-name: 4.1.0 + default-browser-id: 5.0.1 + + define-data-property@1.1.4: + dependencies: + es-define-property: 1.0.1 + es-errors: 1.3.0 + gopd: 1.2.0 + + define-lazy-prop@3.0.0: {} + + define-properties@1.2.1: + dependencies: + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 + object-keys: 1.1.1 + + define-property@0.2.5: + dependencies: + is-descriptor: 0.1.7 + + define-property@1.0.0: + dependencies: + is-descriptor: 1.0.3 + + define-property@2.0.2: + dependencies: + is-descriptor: 1.0.3 + isobject: 3.0.1 + + delayed-stream@1.0.0: {} + + detect-libc@1.0.3: + optional: true + + dir-glob@3.0.1: + dependencies: + path-type: 4.0.0 + + dom-serializer@0.2.2: + dependencies: + domelementtype: 2.3.0 + entities: 2.2.0 + + dom-serializer@1.4.1: + dependencies: + domelementtype: 2.3.0 + domhandler: 4.3.1 + entities: 2.2.0 + + domelementtype@1.3.1: {} + + domelementtype@2.3.0: {} + + domhandler@2.4.2: + dependencies: + domelementtype: 1.3.1 + + domhandler@4.3.1: + dependencies: + domelementtype: 2.3.0 + + domutils@1.7.0: + dependencies: + dom-serializer: 0.2.2 + domelementtype: 1.3.1 + + domutils@2.8.0: + dependencies: + dom-serializer: 1.4.1 + domelementtype: 2.3.0 + domhandler: 4.3.1 + + dunder-proto@1.0.1: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-errors: 1.3.0 + gopd: 1.2.0 + + electron-to-chromium@1.5.263: {} + + element-plus@2.11.9(vue@3.5.25(typescript@5.2.2)): + dependencies: + '@ctrl/tinycolor': 3.6.1 + '@element-plus/icons-vue': 2.3.2(vue@3.5.25(typescript@5.2.2)) + '@floating-ui/dom': 1.7.4 + '@popperjs/core': '@sxzz/popperjs-es@2.11.7' + '@types/lodash': 4.17.21 + '@types/lodash-es': 4.17.12 + '@vueuse/core': 9.13.0(vue@3.5.25(typescript@5.2.2)) + async-validator: 4.2.5 + dayjs: 1.11.19 + lodash: 4.17.21 + lodash-es: 4.17.21 + lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21) + memoize-one: 6.0.0 + normalize-wheel-es: 1.2.0 + vue: 3.5.25(typescript@5.2.2) + transitivePeerDependencies: + - '@vue/composition-api' + + emojis-list@3.0.0: {} + + entities@1.1.2: {} + + entities@2.2.0: {} + + entities@4.5.0: {} + + error-stack-parser-es@0.1.5: {} + + es-abstract@1.24.0: + dependencies: + array-buffer-byte-length: 1.0.2 + arraybuffer.prototype.slice: 1.0.4 + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + data-view-buffer: 1.0.2 + data-view-byte-length: 1.0.2 + data-view-byte-offset: 1.0.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-set-tostringtag: 2.1.0 + es-to-primitive: 1.3.0 + function.prototype.name: 1.1.8 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + get-symbol-description: 1.1.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + internal-slot: 1.1.0 + is-array-buffer: 3.0.5 + is-callable: 1.2.7 + is-data-view: 1.0.2 + is-negative-zero: 2.0.3 + is-regex: 1.2.1 + is-set: 2.0.3 + is-shared-array-buffer: 1.0.4 + is-string: 1.1.1 + is-typed-array: 1.1.15 + is-weakref: 1.1.1 + math-intrinsics: 1.1.0 + object-inspect: 1.13.4 + object-keys: 1.1.1 + object.assign: 4.1.7 + own-keys: 1.0.1 + regexp.prototype.flags: 1.5.4 + safe-array-concat: 1.1.3 + safe-push-apply: 1.0.0 + safe-regex-test: 1.1.0 + set-proto: 1.0.0 + stop-iteration-iterator: 1.1.0 + string.prototype.trim: 1.2.10 + string.prototype.trimend: 1.0.9 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.3 + typed-array-byte-length: 1.0.3 + typed-array-byte-offset: 1.0.4 + typed-array-length: 1.0.7 + unbox-primitive: 1.1.0 + which-typed-array: 1.1.19 + + es-define-property@1.0.1: {} + + es-errors@1.3.0: {} + + es-object-atoms@1.1.1: + dependencies: + es-errors: 1.3.0 + + es-set-tostringtag@2.1.0: + dependencies: + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + es-to-primitive@1.3.0: + dependencies: + is-callable: 1.2.7 + is-date-object: 1.1.0 + is-symbol: 1.1.1 + + esbuild@0.25.12: + optionalDependencies: + '@esbuild/aix-ppc64': 0.25.12 + '@esbuild/android-arm': 0.25.12 + '@esbuild/android-arm64': 0.25.12 + '@esbuild/android-x64': 0.25.12 + '@esbuild/darwin-arm64': 0.25.12 + '@esbuild/darwin-x64': 0.25.12 + '@esbuild/freebsd-arm64': 0.25.12 + '@esbuild/freebsd-x64': 0.25.12 + '@esbuild/linux-arm': 0.25.12 + '@esbuild/linux-arm64': 0.25.12 + '@esbuild/linux-ia32': 0.25.12 + '@esbuild/linux-loong64': 0.25.12 + '@esbuild/linux-mips64el': 0.25.12 + '@esbuild/linux-ppc64': 0.25.12 + '@esbuild/linux-riscv64': 0.25.12 + '@esbuild/linux-s390x': 0.25.12 + '@esbuild/linux-x64': 0.25.12 + '@esbuild/netbsd-arm64': 0.25.12 + '@esbuild/netbsd-x64': 0.25.12 + '@esbuild/openbsd-arm64': 0.25.12 + '@esbuild/openbsd-x64': 0.25.12 + '@esbuild/openharmony-arm64': 0.25.12 + '@esbuild/sunos-x64': 0.25.12 + '@esbuild/win32-arm64': 0.25.12 + '@esbuild/win32-ia32': 0.25.12 + '@esbuild/win32-x64': 0.25.12 + + escalade@3.2.0: {} + + escape-string-regexp@1.0.5: {} + + escape-string-regexp@4.0.0: {} + + eslint-config-prettier@8.10.2(eslint@9.39.1): + dependencies: + eslint: 9.39.1 + + eslint-plugin-prettier@5.5.4(eslint-config-prettier@8.10.2(eslint@9.39.1))(eslint@9.39.1)(prettier@3.7.3): + dependencies: + eslint: 9.39.1 + prettier: 3.7.3 + prettier-linter-helpers: 1.0.0 + synckit: 0.11.11 + optionalDependencies: + eslint-config-prettier: 8.10.2(eslint@9.39.1) + + eslint-plugin-vue@10.6.2(@typescript-eslint/parser@8.48.0(eslint@9.39.1)(typescript@5.2.2))(eslint@9.39.1)(vue-eslint-parser@10.2.0(eslint@9.39.1)): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1) + eslint: 9.39.1 + natural-compare: 1.4.0 + nth-check: 2.1.1 + postcss-selector-parser: 7.1.1 + semver: 7.7.3 + vue-eslint-parser: 10.2.0(eslint@9.39.1) + xml-name-validator: 4.0.0 + optionalDependencies: + '@typescript-eslint/parser': 8.48.0(eslint@9.39.1)(typescript@5.2.2) + + eslint-scope@7.2.2: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + + eslint-scope@8.4.0: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + + eslint-visitor-keys@3.4.3: {} + + eslint-visitor-keys@4.2.1: {} + + eslint@9.39.1: + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1) + '@eslint-community/regexpp': 4.12.2 + '@eslint/config-array': 0.21.1 + '@eslint/config-helpers': 0.4.2 + '@eslint/core': 0.17.0 + '@eslint/eslintrc': 3.3.3 + '@eslint/js': 9.39.1 + '@eslint/plugin-kit': 0.4.1 + '@humanfs/node': 0.16.7 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.4.3 + '@types/estree': 1.0.8 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.6 + debug: 4.4.3 + escape-string-regexp: 4.0.0 + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + esquery: 1.6.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.2 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + transitivePeerDependencies: + - supports-color + + espree@10.4.0: + dependencies: + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + eslint-visitor-keys: 4.2.1 + + espree@9.6.1: + dependencies: + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + eslint-visitor-keys: 3.4.3 + + esquery@1.6.0: + dependencies: + estraverse: 5.3.0 + + esrecurse@4.3.0: + dependencies: + estraverse: 5.3.0 + + estraverse@5.3.0: {} + + estree-walker@2.0.2: {} + + esutils@2.0.3: {} + + etag@1.8.1: {} + + execa@9.6.1: + dependencies: + '@sindresorhus/merge-streams': 4.0.0 + cross-spawn: 7.0.6 + figures: 6.1.0 + get-stream: 9.0.1 + human-signals: 8.0.1 + is-plain-obj: 4.1.0 + is-stream: 4.0.1 + npm-run-path: 6.0.0 + pretty-ms: 9.3.0 + signal-exit: 4.1.0 + strip-final-newline: 4.0.0 + yoctocolors: 2.1.2 + + expand-brackets@2.1.4: + dependencies: + debug: 2.6.9 + define-property: 0.2.5 + extend-shallow: 2.0.1 + posix-character-classes: 0.1.1 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + + extend-shallow@2.0.1: + dependencies: + is-extendable: 0.1.1 + + extend-shallow@3.0.2: + dependencies: + assign-symbols: 1.0.0 + is-extendable: 1.0.1 + + extglob@2.0.4: + dependencies: + array-unique: 0.3.2 + define-property: 1.0.0 + expand-brackets: 2.1.4 + extend-shallow: 2.0.1 + fragment-cache: 0.2.1 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + + fast-deep-equal@3.1.3: {} + + fast-diff@1.3.0: {} + + fast-glob@3.3.3: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + + fast-json-stable-stringify@2.1.0: {} + + fast-levenshtein@2.0.6: {} + + fastq@1.19.1: + dependencies: + reusify: 1.1.0 + + fdir@6.5.0(picomatch@4.0.3): + optionalDependencies: + picomatch: 4.0.3 + + figures@6.1.0: + dependencies: + is-unicode-supported: 2.1.0 + + file-entry-cache@8.0.0: + dependencies: + flat-cache: 4.0.1 + + fill-range@4.0.0: + dependencies: + extend-shallow: 2.0.1 + is-number: 3.0.0 + repeat-string: 1.6.1 + to-regex-range: 2.1.1 + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + find-up@5.0.0: + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + + flat-cache@4.0.1: + dependencies: + flatted: 3.3.3 + keyv: 4.5.4 + + flatted@3.3.3: {} + + follow-redirects@1.15.11: {} + + for-each@0.3.5: + dependencies: + is-callable: 1.2.7 + + for-in@1.0.2: {} + + form-data@4.0.5: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + es-set-tostringtag: 2.1.0 + hasown: 2.0.2 + mime-types: 2.1.35 + + fragment-cache@0.2.1: + dependencies: + map-cache: 0.2.2 + + fs-extra@10.1.0: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 6.2.0 + universalify: 2.0.1 + + fs-extra@11.3.2: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 6.2.0 + universalify: 2.0.1 + + fsevents@2.3.3: + optional: true + + function-bind@1.1.2: {} + + function.prototype.name@1.1.8: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + functions-have-names: 1.2.3 + hasown: 2.0.2 + is-callable: 1.2.7 + + functions-have-names@1.2.3: {} + + generator-function@2.0.1: {} + + gensync@1.0.0-beta.2: {} + + get-intrinsic@1.3.0: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + function-bind: 1.1.2 + get-proto: 1.0.1 + gopd: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + math-intrinsics: 1.1.0 + + get-proto@1.0.1: + dependencies: + dunder-proto: 1.0.1 + es-object-atoms: 1.1.1 + + get-stream@9.0.1: + dependencies: + '@sec-ant/readable-stream': 0.4.1 + is-stream: 4.0.1 + + get-symbol-description@1.1.0: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + + get-value@2.0.6: {} + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + glob-parent@6.0.2: + dependencies: + is-glob: 4.0.3 + + globals@14.0.0: {} + + globals@16.5.0: {} + + globalthis@1.0.4: + dependencies: + define-properties: 1.2.1 + gopd: 1.2.0 + + globby@11.1.0: + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.3 + ignore: 5.3.2 + merge2: 1.4.1 + slash: 3.0.0 + + gopd@1.2.0: {} + + graceful-fs@4.2.11: {} + + graphemer@1.4.0: {} + + has-ansi@2.0.0: + dependencies: + ansi-regex: 2.1.1 + + has-bigints@1.1.0: {} + + has-flag@1.0.0: {} + + has-flag@4.0.0: {} + + has-property-descriptors@1.0.2: + dependencies: + es-define-property: 1.0.1 + + has-proto@1.2.0: + dependencies: + dunder-proto: 1.0.1 + + has-symbols@1.1.0: {} + + has-tostringtag@1.0.2: + dependencies: + has-symbols: 1.1.0 + + has-value@0.3.1: + dependencies: + get-value: 2.0.6 + has-values: 0.1.4 + isobject: 2.1.0 + + has-value@1.0.0: + dependencies: + get-value: 2.0.6 + has-values: 1.0.0 + isobject: 3.0.1 + + has-values@0.1.4: {} + + has-values@1.0.0: + dependencies: + is-number: 3.0.0 + kind-of: 4.0.0 + + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + + he@1.2.0: {} + + highlight.js@11.11.1: {} + + hookable@5.5.3: {} + + htmlparser2@3.10.1: + dependencies: + domelementtype: 1.3.1 + domhandler: 2.4.2 + domutils: 1.7.0 + entities: 1.1.2 + inherits: 2.0.4 + readable-stream: 3.6.2 + + human-signals@8.0.1: {} + + ignore@5.3.2: {} + + ignore@7.0.5: {} + + image-size@0.5.5: {} + + immutable@5.1.4: {} + + import-fresh@3.3.1: + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + imurmurhash@0.1.4: {} + + inherits@2.0.4: {} + + internal-slot@1.1.0: + dependencies: + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.1.0 + + is-accessor-descriptor@1.0.1: + dependencies: + hasown: 2.0.2 + + is-array-buffer@3.0.5: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + + is-async-function@2.1.1: + dependencies: + async-function: 1.0.0 + call-bound: 1.0.4 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + + is-bigint@1.1.0: + dependencies: + has-bigints: 1.1.0 + + is-boolean-object@1.2.2: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-buffer@1.1.6: {} + + is-callable@1.2.7: {} + + is-data-descriptor@1.0.1: + dependencies: + hasown: 2.0.2 + + is-data-view@1.0.2: + dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + is-typed-array: 1.1.15 + + is-date-object@1.1.0: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-descriptor@0.1.7: + dependencies: + is-accessor-descriptor: 1.0.1 + is-data-descriptor: 1.0.1 + + is-descriptor@1.0.3: + dependencies: + is-accessor-descriptor: 1.0.1 + is-data-descriptor: 1.0.1 + + is-docker@3.0.0: {} + + is-extendable@0.1.1: {} + + is-extendable@1.0.1: + dependencies: + is-plain-object: 2.0.4 + + is-extglob@2.1.1: {} + + is-finalizationregistry@1.1.1: + dependencies: + call-bound: 1.0.4 + + is-generator-function@1.1.2: + dependencies: + call-bound: 1.0.4 + generator-function: 2.0.1 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-inside-container@1.0.0: + dependencies: + is-docker: 3.0.0 + + is-map@2.0.3: {} + + is-negative-zero@2.0.3: {} + + is-number-object@1.1.1: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-number@3.0.0: + dependencies: + kind-of: 3.2.2 + + is-number@7.0.0: {} + + is-plain-obj@1.1.0: {} + + is-plain-obj@4.1.0: {} + + is-plain-object@2.0.4: + dependencies: + isobject: 3.0.1 + + is-regex@1.2.1: + dependencies: + call-bound: 1.0.4 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + is-set@2.0.3: {} + + is-shared-array-buffer@1.0.4: + dependencies: + call-bound: 1.0.4 + + is-stream@4.0.1: {} + + is-string@1.1.1: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-symbol@1.1.1: + dependencies: + call-bound: 1.0.4 + has-symbols: 1.1.0 + safe-regex-test: 1.1.0 + + is-typed-array@1.1.15: + dependencies: + which-typed-array: 1.1.19 + + is-unicode-supported@2.1.0: {} + + is-weakmap@2.0.2: {} + + is-weakref@1.1.1: + dependencies: + call-bound: 1.0.4 + + is-weakset@2.0.4: + dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + + is-what@5.5.0: {} + + is-windows@1.0.2: {} + + is-wsl@3.1.0: + dependencies: + is-inside-container: 1.0.0 + + isarray@1.0.0: {} + + isarray@2.0.5: {} + + isexe@2.0.0: {} + + isobject@2.1.0: + dependencies: + isarray: 1.0.0 + + isobject@3.0.1: {} + + jodit@4.7.9: {} + + js-base64@2.6.4: {} + + js-tokens@4.0.0: {} + + js-yaml@4.1.1: + dependencies: + argparse: 2.0.1 + + jsesc@3.1.0: {} + + json-buffer@3.0.1: {} + + json-parse-even-better-errors@3.0.2: {} + + json-schema-traverse@0.4.1: {} + + json-stable-stringify-without-jsonify@1.0.1: {} + + json5@1.0.2: + dependencies: + minimist: 1.2.8 + + json5@2.2.3: {} + + jsonfile@6.2.0: + dependencies: + universalify: 2.0.1 + optionalDependencies: + graceful-fs: 4.2.11 + + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 + + kind-of@3.2.2: + dependencies: + is-buffer: 1.1.6 + + kind-of@4.0.0: + dependencies: + is-buffer: 1.1.6 + + kind-of@5.1.0: {} + + kind-of@6.0.3: {} + + kolorist@1.8.0: {} + + levn@0.4.1: + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + + loader-utils@1.4.2: + dependencies: + big.js: 5.2.2 + emojis-list: 3.0.0 + json5: 1.0.2 + + locate-path@6.0.0: + dependencies: + p-locate: 5.0.0 + + lodash-es@4.17.21: {} + + lodash-unified@1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21): + dependencies: + '@types/lodash-es': 4.17.12 + lodash: 4.17.21 + lodash-es: 4.17.21 + + lodash.merge@4.6.2: {} + + lodash@4.17.21: {} + + lru-cache@5.1.1: + dependencies: + yallist: 3.1.1 + + magic-string@0.30.21: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + + map-cache@0.2.2: {} + + map-visit@1.0.0: + dependencies: + object-visit: 1.0.1 + + math-intrinsics@1.1.0: {} + + mdn-data@2.0.14: {} + + memoize-one@6.0.0: {} + + memorystream@0.3.1: {} + + merge-options@1.0.1: + dependencies: + is-plain-obj: 1.1.0 + + merge2@1.4.1: {} + + micromatch@3.1.0: + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + braces: 2.3.2 + define-property: 1.0.0 + extend-shallow: 2.0.1 + extglob: 2.0.4 + fragment-cache: 0.2.1 + kind-of: 5.1.0 + nanomatch: 1.2.13 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + mime-db@1.52.0: {} + + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.12 + + minimatch@9.0.3: + dependencies: + brace-expansion: 2.0.2 + + minimatch@9.0.5: + dependencies: + brace-expansion: 2.0.2 + + minimist@1.2.8: {} + + mitt@3.0.1: {} + + mixin-deep@1.3.2: + dependencies: + for-in: 1.0.2 + is-extendable: 1.0.1 + + mrmime@2.0.1: {} + + ms@2.0.0: {} + + ms@2.1.3: {} + + muggle-string@0.4.1: {} + + nanoid@3.3.11: {} + + nanoid@5.1.6: {} + + nanomatch@1.2.13: + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + define-property: 2.0.2 + extend-shallow: 3.0.2 + fragment-cache: 0.2.1 + is-windows: 1.0.2 + kind-of: 6.0.3 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + + natural-compare@1.4.0: {} + + node-addon-api@7.1.1: + optional: true + + node-forge@1.3.2: {} + + node-releases@2.0.27: {} + + normalize-wheel-es@1.2.0: {} + + npm-normalize-package-bin@3.0.1: {} + + npm-run-all2@6.2.6: + dependencies: + ansi-styles: 6.2.3 + cross-spawn: 7.0.6 + memorystream: 0.3.1 + minimatch: 9.0.5 + pidtree: 0.6.0 + read-package-json-fast: 3.0.2 + shell-quote: 1.8.3 + which: 3.0.1 + + npm-run-path@6.0.0: + dependencies: + path-key: 4.0.0 + unicorn-magic: 0.3.0 + + nprogress@0.2.0: {} + + nth-check@2.1.1: + dependencies: + boolbase: 1.0.0 + + object-assign@4.1.1: {} + + object-copy@0.1.0: + dependencies: + copy-descriptor: 0.1.1 + define-property: 0.2.5 + kind-of: 3.2.2 + + object-inspect@1.13.4: {} + + object-keys@1.1.1: {} + + object-visit@1.0.1: + dependencies: + isobject: 3.0.1 + + object.assign@4.1.7: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + has-symbols: 1.1.0 + object-keys: 1.1.1 + + object.pick@1.3.0: + dependencies: + isobject: 3.0.1 + + open@10.2.0: + dependencies: + default-browser: 5.4.0 + define-lazy-prop: 3.0.0 + is-inside-container: 1.0.0 + wsl-utils: 0.1.0 + + optionator@0.9.4: + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.5 + + own-keys@1.0.1: + dependencies: + get-intrinsic: 1.3.0 + object-keys: 1.1.1 + safe-push-apply: 1.0.0 + + p-limit@3.1.0: + dependencies: + yocto-queue: 0.1.0 + + p-locate@5.0.0: + dependencies: + p-limit: 3.1.0 + + parent-module@1.0.1: + dependencies: + callsites: 3.1.0 + + parse-ms@4.0.0: {} + + pascalcase@0.1.1: {} + + path-browserify@1.0.1: {} + + path-exists@4.0.0: {} + + path-key@3.1.1: {} + + path-key@4.0.0: {} + + path-type@4.0.0: {} + + pathe@0.2.0: {} + + pathe@2.0.3: {} + + perfect-debounce@1.0.0: {} + + picocolors@1.1.1: {} + + picomatch@2.3.1: {} + + picomatch@4.0.3: {} + + pidtree@0.6.0: {} + + pinia-plugin-persistedstate@3.2.3(pinia@2.3.1(typescript@5.2.2)(vue@3.5.25(typescript@5.2.2))): + dependencies: + pinia: 2.3.1(typescript@5.2.2)(vue@3.5.25(typescript@5.2.2)) + + pinia@2.3.1(typescript@5.2.2)(vue@3.5.25(typescript@5.2.2)): + dependencies: + '@vue/devtools-api': 6.6.4 + vue: 3.5.25(typescript@5.2.2) + vue-demi: 0.14.10(vue@3.5.25(typescript@5.2.2)) + optionalDependencies: + typescript: 5.2.2 + transitivePeerDependencies: + - '@vue/composition-api' + + posix-character-classes@0.1.1: {} + + possible-typed-array-names@1.1.0: {} + + postcss-prefix-selector@1.16.1(postcss@5.2.18): + dependencies: + postcss: 5.2.18 + + postcss-selector-parser@7.1.1: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + postcss@5.2.18: + dependencies: + chalk: 1.1.3 + js-base64: 2.6.4 + source-map: 0.5.7 + supports-color: 3.2.3 + + postcss@8.5.6: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + posthtml-parser@0.2.1: + dependencies: + htmlparser2: 3.10.1 + isobject: 2.1.0 + + posthtml-rename-id@1.0.12: + dependencies: + escape-string-regexp: 1.0.5 + + posthtml-render@1.4.0: {} + + posthtml-svg-mode@1.0.3: + dependencies: + merge-options: 1.0.1 + posthtml: 0.9.2 + posthtml-parser: 0.2.1 + posthtml-render: 1.4.0 + + posthtml@0.9.2: + dependencies: + posthtml-parser: 0.2.1 + posthtml-render: 1.4.0 + + prelude-ls@1.2.1: {} + + prettier-linter-helpers@1.0.0: + dependencies: + fast-diff: 1.3.0 + + prettier@3.7.3: {} + + pretty-ms@9.3.0: + dependencies: + parse-ms: 4.0.0 + + proxy-from-env@1.1.0: {} + + punycode@2.3.1: {} + + query-string@4.3.4: + dependencies: + object-assign: 4.1.1 + strict-uri-encode: 1.1.0 + + queue-microtask@1.2.3: {} + + read-package-json-fast@3.0.2: + dependencies: + json-parse-even-better-errors: 3.0.2 + npm-normalize-package-bin: 3.0.1 + + readable-stream@3.6.2: + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + + readdirp@4.1.2: {} + + reflect.getprototypeof@1.0.10: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + which-builtin-type: 1.2.1 + + regex-not@1.0.2: + dependencies: + extend-shallow: 3.0.2 + safe-regex: 1.1.0 + + regexp.prototype.flags@1.5.4: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-errors: 1.3.0 + get-proto: 1.0.1 + gopd: 1.2.0 + set-function-name: 2.0.2 + + repeat-element@1.1.4: {} + + repeat-string@1.6.1: {} + + resolve-from@4.0.0: {} + + resolve-url@0.2.1: {} + + ret@0.1.15: {} + + reusify@1.1.0: {} + + rfdc@1.4.1: {} + + rollup@4.53.3: + dependencies: + '@types/estree': 1.0.8 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.53.3 + '@rollup/rollup-android-arm64': 4.53.3 + '@rollup/rollup-darwin-arm64': 4.53.3 + '@rollup/rollup-darwin-x64': 4.53.3 + '@rollup/rollup-freebsd-arm64': 4.53.3 + '@rollup/rollup-freebsd-x64': 4.53.3 + '@rollup/rollup-linux-arm-gnueabihf': 4.53.3 + '@rollup/rollup-linux-arm-musleabihf': 4.53.3 + '@rollup/rollup-linux-arm64-gnu': 4.53.3 + '@rollup/rollup-linux-arm64-musl': 4.53.3 + '@rollup/rollup-linux-loong64-gnu': 4.53.3 + '@rollup/rollup-linux-ppc64-gnu': 4.53.3 + '@rollup/rollup-linux-riscv64-gnu': 4.53.3 + '@rollup/rollup-linux-riscv64-musl': 4.53.3 + '@rollup/rollup-linux-s390x-gnu': 4.53.3 + '@rollup/rollup-linux-x64-gnu': 4.53.3 + '@rollup/rollup-linux-x64-musl': 4.53.3 + '@rollup/rollup-openharmony-arm64': 4.53.3 + '@rollup/rollup-win32-arm64-msvc': 4.53.3 + '@rollup/rollup-win32-ia32-msvc': 4.53.3 + '@rollup/rollup-win32-x64-gnu': 4.53.3 + '@rollup/rollup-win32-x64-msvc': 4.53.3 + fsevents: 2.3.3 + + run-applescript@7.1.0: {} + + run-parallel@1.2.0: + dependencies: + queue-microtask: 1.2.3 + + safe-array-concat@1.1.3: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + has-symbols: 1.1.0 + isarray: 2.0.5 + + safe-buffer@5.2.1: {} + + safe-push-apply@1.0.0: + dependencies: + es-errors: 1.3.0 + isarray: 2.0.5 + + safe-regex-test@1.1.0: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-regex: 1.2.1 + + safe-regex@1.1.0: + dependencies: + ret: 0.1.15 + + sass@1.87.0: + dependencies: + chokidar: 4.0.3 + immutable: 5.1.4 + source-map-js: 1.2.1 + optionalDependencies: + '@parcel/watcher': 2.5.1 + + screenfull@6.0.2: {} + + semver@6.3.1: {} + + semver@7.7.3: {} + + set-function-length@1.2.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.3.0 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + + set-function-name@2.0.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.2 + + set-proto@1.0.0: + dependencies: + dunder-proto: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + + set-value@2.0.1: + dependencies: + extend-shallow: 2.0.1 + is-extendable: 0.1.1 + is-plain-object: 2.0.4 + split-string: 3.1.0 + + shebang-command@2.0.0: + dependencies: + shebang-regex: 3.0.0 + + shebang-regex@3.0.0: {} + + shell-quote@1.8.3: {} + + side-channel-list@1.0.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.4 + + side-channel-map@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + + side-channel-weakmap@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + side-channel-map: 1.0.1 + + side-channel@1.1.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.4 + side-channel-list: 1.0.0 + side-channel-map: 1.0.1 + side-channel-weakmap: 1.0.2 + + signal-exit@4.1.0: {} + + sirv@3.0.2: + dependencies: + '@polka/url': 1.0.0-next.29 + mrmime: 2.0.1 + totalist: 3.0.1 + + slash@3.0.0: {} + + snapdragon-node@2.1.1: + dependencies: + define-property: 1.0.0 + isobject: 3.0.1 + snapdragon-util: 3.0.1 + + snapdragon-util@3.0.1: + dependencies: + kind-of: 3.2.2 + + snapdragon@0.8.2: + dependencies: + base: 0.11.2 + debug: 2.6.9 + define-property: 0.2.5 + extend-shallow: 2.0.1 + map-cache: 0.2.2 + source-map: 0.5.7 + source-map-resolve: 0.5.3 + use: 3.1.1 + transitivePeerDependencies: + - supports-color + + sortablejs@1.15.6: {} + + source-map-js@1.2.1: {} + + source-map-resolve@0.5.3: + dependencies: + atob: 2.1.2 + decode-uri-component: 0.2.2 + resolve-url: 0.2.1 + source-map-url: 0.4.1 + urix: 0.1.0 + + source-map-url@0.4.1: {} + + source-map@0.5.7: {} + + source-map@0.6.1: {} + + speakingurl@14.0.1: {} + + split-string@3.1.0: + dependencies: + extend-shallow: 3.0.2 + + stable@0.1.8: {} + + static-extend@0.1.2: + dependencies: + define-property: 0.2.5 + object-copy: 0.1.0 + + stop-iteration-iterator@1.1.0: + dependencies: + es-errors: 1.3.0 + internal-slot: 1.1.0 + + strict-uri-encode@1.1.0: {} + + string.prototype.trim@1.2.10: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-data-property: 1.1.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 + has-property-descriptors: 1.0.2 + + string.prototype.trimend@1.0.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + string.prototype.trimstart@1.0.8: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + string_decoder@1.3.0: + dependencies: + safe-buffer: 5.2.1 + + strip-ansi@3.0.1: + dependencies: + ansi-regex: 2.1.1 + + strip-final-newline@4.0.0: {} + + strip-json-comments@3.1.1: {} + + superjson@2.2.6: + dependencies: + copy-anything: 4.0.5 + + supports-color@2.0.0: {} + + supports-color@3.2.3: + dependencies: + has-flag: 1.0.0 + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + svg-baker@1.7.0: + dependencies: + bluebird: 3.7.2 + clone: 2.1.2 + he: 1.2.0 + image-size: 0.5.5 + loader-utils: 1.4.2 + merge-options: 1.0.1 + micromatch: 3.1.0 + postcss: 5.2.18 + postcss-prefix-selector: 1.16.1(postcss@5.2.18) + posthtml-rename-id: 1.0.12 + posthtml-svg-mode: 1.0.3 + query-string: 4.3.4 + traverse: 0.6.11 + transitivePeerDependencies: + - supports-color + + svgo@2.8.0: + dependencies: + '@trysound/sax': 0.2.0 + commander: 7.2.0 + css-select: 4.3.0 + css-tree: 1.1.3 + csso: 4.2.0 + picocolors: 1.1.1 + stable: 0.1.8 + + synckit@0.11.11: + dependencies: + '@pkgr/core': 0.2.9 + + tinyglobby@0.2.15: + dependencies: + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + + to-object-path@0.3.0: + dependencies: + kind-of: 3.2.2 + + to-regex-range@2.1.1: + dependencies: + is-number: 3.0.0 + repeat-string: 1.6.1 + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + to-regex@3.0.2: + dependencies: + define-property: 2.0.2 + extend-shallow: 3.0.2 + regex-not: 1.0.2 + safe-regex: 1.1.0 + + totalist@3.0.1: {} + + traverse@0.6.11: + dependencies: + gopd: 1.2.0 + typedarray.prototype.slice: 1.0.5 + which-typed-array: 1.1.19 + + ts-api-utils@1.4.3(typescript@5.2.2): + dependencies: + typescript: 5.2.2 + + ts-api-utils@2.1.0(typescript@5.2.2): + dependencies: + typescript: 5.2.2 + + type-check@0.4.0: + dependencies: + prelude-ls: 1.2.1 + + typed-array-buffer@1.0.3: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-typed-array: 1.1.15 + + typed-array-byte-length@1.0.3: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + + typed-array-byte-offset@1.0.4: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + reflect.getprototypeof: 1.0.10 + + typed-array-length@1.0.7: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + is-typed-array: 1.1.15 + possible-typed-array-names: 1.1.0 + reflect.getprototypeof: 1.0.10 + + typedarray.prototype.slice@1.0.5: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + get-proto: 1.0.1 + math-intrinsics: 1.1.0 + typed-array-buffer: 1.0.3 + typed-array-byte-offset: 1.0.4 + + typescript-eslint@8.48.0(eslint@9.39.1)(typescript@5.2.2): + dependencies: + '@typescript-eslint/eslint-plugin': 8.48.0(@typescript-eslint/parser@8.48.0(eslint@9.39.1)(typescript@5.2.2))(eslint@9.39.1)(typescript@5.2.2) + '@typescript-eslint/parser': 8.48.0(eslint@9.39.1)(typescript@5.2.2) + '@typescript-eslint/typescript-estree': 8.48.0(typescript@5.2.2) + '@typescript-eslint/utils': 8.48.0(eslint@9.39.1)(typescript@5.2.2) + eslint: 9.39.1 + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + typescript@5.2.2: {} + + unbox-primitive@1.1.0: + dependencies: + call-bound: 1.0.4 + has-bigints: 1.1.0 + has-symbols: 1.1.0 + which-boxed-primitive: 1.1.1 + + undici-types@5.26.5: {} + + unicorn-magic@0.3.0: {} + + union-value@1.0.1: + dependencies: + arr-union: 3.1.0 + get-value: 2.0.6 + is-extendable: 0.1.1 + set-value: 2.0.1 + + universalify@2.0.1: {} + + unset-value@1.0.0: + dependencies: + has-value: 0.3.1 + isobject: 3.0.1 + + update-browserslist-db@1.1.4(browserslist@4.28.0): + dependencies: + browserslist: 4.28.0 + escalade: 3.2.0 + picocolors: 1.1.1 + + uri-js@4.4.1: + dependencies: + punycode: 2.3.1 + + urix@0.1.0: {} + + use@3.1.1: {} + + util-deprecate@1.0.2: {} + + vary@1.1.2: {} + + vite-hot-client@2.1.0(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0)): + dependencies: + vite: 6.3.4(@types/node@18.19.130)(sass@1.87.0) + + vite-plugin-compression@0.5.1(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0)): + dependencies: + chalk: 4.1.2 + debug: 4.4.3 + fs-extra: 10.1.0 + vite: 6.3.4(@types/node@18.19.130)(sass@1.87.0) + transitivePeerDependencies: + - supports-color + + vite-plugin-inspect@0.8.9(rollup@4.53.3)(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0)): + dependencies: + '@antfu/utils': 0.7.10 + '@rollup/pluginutils': 5.3.0(rollup@4.53.3) + debug: 4.4.3 + error-stack-parser-es: 0.1.5 + fs-extra: 11.3.2 + open: 10.2.0 + perfect-debounce: 1.0.0 + picocolors: 1.1.1 + sirv: 3.0.2 + vite: 6.3.4(@types/node@18.19.130)(sass@1.87.0) + transitivePeerDependencies: + - rollup + - supports-color + + vite-plugin-svg-icons@2.0.1(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0)): + dependencies: + '@types/svgo': 2.6.4 + cors: 2.8.5 + debug: 4.4.3 + etag: 1.8.1 + fs-extra: 10.1.0 + pathe: 0.2.0 + svg-baker: 1.7.0 + svgo: 2.8.0 + vite: 6.3.4(@types/node@18.19.130)(sass@1.87.0) + transitivePeerDependencies: + - supports-color + + vite-plugin-vue-devtools@7.7.9(rollup@4.53.3)(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0))(vue@3.5.25(typescript@5.2.2)): + dependencies: + '@vue/devtools-core': 7.7.9(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0))(vue@3.5.25(typescript@5.2.2)) + '@vue/devtools-kit': 7.7.9 + '@vue/devtools-shared': 7.7.9 + execa: 9.6.1 + sirv: 3.0.2 + vite: 6.3.4(@types/node@18.19.130)(sass@1.87.0) + vite-plugin-inspect: 0.8.9(rollup@4.53.3)(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0)) + vite-plugin-vue-inspector: 5.3.2(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0)) + transitivePeerDependencies: + - '@nuxt/kit' + - rollup + - supports-color + - vue + + vite-plugin-vue-inspector@5.3.2(vite@6.3.4(@types/node@18.19.130)(sass@1.87.0)): + dependencies: + '@babel/core': 7.28.5 + '@babel/plugin-proposal-decorators': 7.28.0(@babel/core@7.28.5) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.5) + '@babel/plugin-transform-typescript': 7.28.5(@babel/core@7.28.5) + '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.5) + '@vue/compiler-dom': 3.5.25 + kolorist: 1.8.0 + magic-string: 0.30.21 + vite: 6.3.4(@types/node@18.19.130)(sass@1.87.0) + transitivePeerDependencies: + - supports-color + + vite@6.3.4(@types/node@18.19.130)(sass@1.87.0): + dependencies: + esbuild: 0.25.12 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.6 + rollup: 4.53.3 + tinyglobby: 0.2.15 + optionalDependencies: + '@types/node': 18.19.130 + fsevents: 2.3.3 + sass: 1.87.0 + + vscode-uri@3.1.0: {} + + vue-demi@0.14.10(vue@3.5.25(typescript@5.2.2)): + dependencies: + vue: 3.5.25(typescript@5.2.2) + + vue-eslint-parser@10.2.0(eslint@9.39.1): + dependencies: + debug: 4.4.3 + eslint: 9.39.1 + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + esquery: 1.6.0 + semver: 7.7.3 + transitivePeerDependencies: + - supports-color + + vue-eslint-parser@9.4.3(eslint@9.39.1): + dependencies: + debug: 4.4.3 + eslint: 9.39.1 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + esquery: 1.6.0 + lodash: 4.17.21 + semver: 7.7.3 + transitivePeerDependencies: + - supports-color + + vue-i18n@9.14.5(vue@3.5.25(typescript@5.2.2)): + dependencies: + '@intlify/core-base': 9.14.5 + '@intlify/shared': 9.14.5 + '@vue/devtools-api': 6.6.4 + vue: 3.5.25(typescript@5.2.2) + + vue-router@4.6.3(vue@3.5.25(typescript@5.2.2)): + dependencies: + '@vue/devtools-api': 6.6.4 + vue: 3.5.25(typescript@5.2.2) + + vue-tsc@2.2.12(typescript@5.2.2): + dependencies: + '@volar/typescript': 2.4.15 + '@vue/language-core': 2.2.12(typescript@5.2.2) + typescript: 5.2.2 + + vue@3.5.25(typescript@5.2.2): + dependencies: + '@vue/compiler-dom': 3.5.25 + '@vue/compiler-sfc': 3.5.25 + '@vue/runtime-dom': 3.5.25 + '@vue/server-renderer': 3.5.25(vue@3.5.25(typescript@5.2.2)) + '@vue/shared': 3.5.25 + optionalDependencies: + typescript: 5.2.2 + + which-boxed-primitive@1.1.1: + dependencies: + is-bigint: 1.1.0 + is-boolean-object: 1.2.2 + is-number-object: 1.1.1 + is-string: 1.1.1 + is-symbol: 1.1.1 + + which-builtin-type@1.2.1: + dependencies: + call-bound: 1.0.4 + function.prototype.name: 1.1.8 + has-tostringtag: 1.0.2 + is-async-function: 2.1.1 + is-date-object: 1.1.0 + is-finalizationregistry: 1.1.1 + is-generator-function: 1.1.2 + is-regex: 1.2.1 + is-weakref: 1.1.1 + isarray: 2.0.5 + which-boxed-primitive: 1.1.1 + which-collection: 1.0.2 + which-typed-array: 1.1.19 + + which-collection@1.0.2: + dependencies: + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.4 + + which-typed-array@1.1.19: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + for-each: 0.3.5 + get-proto: 1.0.1 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + + which@2.0.2: + dependencies: + isexe: 2.0.0 + + which@3.0.1: + dependencies: + isexe: 2.0.0 + + word-wrap@1.2.5: {} + + wsl-utils@0.1.0: + dependencies: + is-wsl: 3.1.0 + + xml-name-validator@4.0.0: {} + + yallist@3.1.1: {} + + yocto-queue@0.1.0: {} + + yoctocolors@2.1.2: {} diff --git a/public/dataModes/fireControlAlarmFloor.json b/public/dataModes/fireControlAlarmFloor.json new file mode 100644 index 0000000..9cb538b --- /dev/null +++ b/public/dataModes/fireControlAlarmFloor.json @@ -0,0 +1,140 @@ +{ + "canvasCfg": { + "width": 1920, + "height": 1080, + "scale": 1, + "color": "", + "img": "", + "guide": true, + "adsorp": true, + "adsorp_diff": 5, + "transform_origin": { + "x": 0, + "y": 0 + }, + "drag_offset": { + "x": 0, + "y": 0 + } + }, + "gridCfg": { + "enabled": true, + "align": true, + "size": 10 + }, + "json": [ + { + "id": "vue-my-regulator-iwEp1KifC7", + "title": "vue谣调", + "type": "vue", + "binfo": { + "left": 129.98797607421875, + "top": 70, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-regulator", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-switch-info-XZmvJDTfd8", + "title": "vue遥控", + "type": "vue", + "binfo": { + "left": 240, + "top": 70, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥控", + "moduleId": "" + }, + "tag": "vue-my-switch-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-W1j7n1WBMs", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 180, + "top": 70, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-signal-info-VFdTsqHrqK", + "title": "vue遥信01", + "type": "vue", + "binfo": { + "left": 70, + "top": 140, + "width": 430, + "height": 210, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": {}, + "tag": "vue-my-signal-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + } + ] +} \ No newline at end of file diff --git a/public/dataModes/fireControlAlarmHost.json b/public/dataModes/fireControlAlarmHost.json new file mode 100644 index 0000000..54c7f41 --- /dev/null +++ b/public/dataModes/fireControlAlarmHost.json @@ -0,0 +1,139 @@ +{ + "canvasCfg": { + "width": 1920, + "height": 1080, + "scale": 1, + "color": "", + "img": "", + "guide": true, + "adsorp": true, + "adsorp_diff": 5, + "transform_origin": { + "x": 0, + "y": 0 + }, + "drag_offset": { + "x": 0, + "y": 0 + } + }, + "gridCfg": { + "enabled": true, + "align": true, + "size": 10 + }, + "json": [ + { + "id": "vue-my-regulator-iwEp1KifC7", + "title": "vue谣调", + "type": "vue", + "binfo": { + "left": 129.98797607421875, + "top": 70, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-regulator", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-W1j7n1WBMs", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 330, + "top": 380, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-signal-info-VFdTsqHrqK", + "title": "vue遥信01", + "type": "vue", + "binfo": { + "left": 70, + "top": 140, + "width": 430, + "height": 210, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": {}, + "tag": "vue-my-signal-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-img-DLxtEt9t9A", + "title": "vue图形组件", + "type": "vue", + "binfo": { + "left": 64.97598266601562, + "top": 370, + "width": 130, + "height": 100, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "maxWidth": "" + }, + "tag": "vue-my-img", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + } + ] +} \ No newline at end of file diff --git a/public/dataModes/fireControlAlarmIndex.json b/public/dataModes/fireControlAlarmIndex.json new file mode 100644 index 0000000..64b3550 --- /dev/null +++ b/public/dataModes/fireControlAlarmIndex.json @@ -0,0 +1,147 @@ +{ + "canvasCfg": { + "width": 1920, + "height": 1080, + "scale": 1, + "color": "", + "img": "", + "guide": true, + "adsorp": true, + "adsorp_diff": 5, + "transform_origin": { + "x": 0, + "y": 0 + }, + "drag_offset": { + "x": 0, + "y": 0 + } + }, + "gridCfg": { + "enabled": true, + "align": true, + "size": 10 + }, + "json": [ + { + "id": "vue-my-signal-info-VFdTsqHrqK", + "title": "vue遥信01", + "type": "vue", + "binfo": { + "left": 50, + "top": 50, + "width": 430, + "height": 210, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": {}, + "tag": "vue-my-signal-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-run-info-QOvDKecsyZ", + "title": "vue运行信息", + "type": "vue", + "binfo": { + "left": 500, + "top": 50, + "width": 240, + "height": 180, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "fontFamily": "Segoe UI", + "fontSize": 14, + "testColor": "#000000" + }, + "tag": "vue-my-run-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-multi-type-info-V5rhA1U1PF", + "title": "vue运行状态信息", + "type": "vue", + "binfo": { + "left": 490, + "top": 240, + "width": 270, + "height": 180, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "headline": "11111", + "fontFamily": "Segoe UI", + "fontSize": 14, + "dataSource": "ultraVires", + "testColor": "#000000" + }, + "tag": "vue-my-multi-type-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-multi-type-info-OMI6pUcsA9", + "title": "vue运行状态信息", + "type": "vue", + "binfo": { + "left": 110, + "top": 270, + "width": 310, + "height": 200, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "headline": "2222", + "fontFamily": "Segoe UI", + "fontSize": 14, + "dataSource": "ultraVires", + "testColor": "#000000" + }, + "tag": "vue-my-multi-type-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + } + ] +} \ No newline at end of file diff --git a/public/dataModes/fireControlIndex.json b/public/dataModes/fireControlIndex.json new file mode 100644 index 0000000..f03703c --- /dev/null +++ b/public/dataModes/fireControlIndex.json @@ -0,0 +1,113 @@ +{ + "canvasCfg": { + "width": 1920, + "height": 1080, + "scale": 1, + "color": "", + "img": "", + "guide": true, + "adsorp": true, + "adsorp_diff": 5, + "transform_origin": { + "x": 0, + "y": 0 + }, + "drag_offset": { + "x": 0, + "y": 0 + } + }, + "gridCfg": { + "enabled": true, + "align": true, + "size": 10 + }, + "json": [ + { + "id": "vue-my-signal-info-VFdTsqHrqK11111", + "title": "vue遥信01", + "type": "vue", + "binfo": { + "left": 50, + "top": 50, + "width": 430, + "height": 210, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": {}, + "tag": "vue-my-signal-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-run-info-QOvDKecsyZ", + "title": "vue运行信息", + "type": "vue", + "binfo": { + "left": 500, + "top": 50, + "width": 240, + "height": 180, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "fontFamily": "Segoe UI", + "fontSize": 14, + "testColor": "#000000" + }, + "tag": "vue-my-run-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-tableOnly-a6n14qu2iO", + "title": "单一功能表单", + "type": "vue", + "binfo": { + "left": 40, + "top": 270, + "width": 620, + "height": 250, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "fontFamily": "黑体", + "fontSize": 12, + "testColor": "#767676" + }, + "tag": "vue-my-tableOnly", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + } + ] +} \ No newline at end of file diff --git a/public/dataModes/homeOverview.json b/public/dataModes/homeOverview.json new file mode 100644 index 0000000..881e581 --- /dev/null +++ b/public/dataModes/homeOverview.json @@ -0,0 +1,1542 @@ +{ + "canvasCfg": { + "width": 1920, + "height": 1080, + "scale": 0.5, + "color": "", + "img": "", + "guide": true, + "adsorp": true, + "adsorp_diff": 5, + "transform_origin": { + "x": 0, + "y": 0 + }, + "drag_offset": { + "x": 0, + "y": 0 + } + }, + "gridCfg": { + "enabled": true, + "align": true, + "size": 10 + }, + "json": [ + { + "id": "vue-my-run-info-8Vf0McsdZk", + "title": "vue运行信息", + "type": "vue", + "binfo": { + "left": 359.38401794433594, + "top": 564.9939880371094, + "width": 340, + "height": 200, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "fontFamily": "Segoe UI", + "fontSize": 14, + "testColor": "#000000" + }, + "tag": "vue-my-run-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-multi-type-info-CMI0M8U8YD", + "title": "vue运行状态信息", + "type": "vue", + "binfo": { + "left": 759.4591064453125, + "top": 567.4939880371094, + "width": 340, + "height": 220, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "headline": "越限信息", + "fontFamily": "Segoe UI", + "fontSize": 14, + "dataSource": "ultraVires", + "testColor": "#000000" + }, + "tag": "vue-my-multi-type-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-multi-type-info-oUYtFvmbRj", + "title": "vue运行状态信息", + "type": "vue", + "binfo": { + "left": 758.9182434082031, + "top": 302.4939880371094, + "width": 340, + "height": 220, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "headline": "联动信息", + "fontFamily": "Segoe UI", + "fontSize": 14, + "dataSource": "ultraVires", + "testColor": "#000000" + }, + "tag": "vue-my-multi-type-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-multi-type-info-nAyG9hftSr", + "title": "vue运行状态信息", + "type": "vue", + "binfo": { + "left": 374.69651794433594, + "top": 304.99998474121094, + "width": 340, + "height": 220, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "headline": "异常设备", + "fontFamily": "Segoe UI", + "fontSize": 14, + "dataSource": "ultraVires", + "testColor": "#000000" + }, + "tag": "vue-my-multi-type-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-zBBIqx4ScE", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 30, + "top": 60, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-v8475emAu9", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 97.5, + "top": 60, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-signal-info-bYNjKPBP7J", + "title": "vue遥信01", + "type": "vue", + "binfo": { + "left": 50, + "top": 770, + "width": 540, + "height": 200, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": {}, + "tag": "vue-my-signal-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-regulator-oxzuc0CqbT", + "title": "vue谣调", + "type": "vue", + "binfo": { + "left": 30, + "top": 127.50000762939453, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-regulator", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-regulator-MN5wW4Uyem", + "title": "vue谣调", + "type": "vue", + "binfo": { + "left": 110, + "top": 130, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-regulator", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-regulator-Vu9CGAtO58", + "title": "vue谣调", + "type": "vue", + "binfo": { + "left": 177.5, + "top": 130, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-regulator", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-regulator-BoVVsrLFM4", + "title": "vue谣调", + "type": "vue", + "binfo": { + "left": 242.5, + "top": 130, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-regulator", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-regulator-NQpQASZ2Qs", + "title": "vue谣调", + "type": "vue", + "binfo": { + "left": 322.5, + "top": 130, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-regulator", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-regulator-lNNrB1mjN5", + "title": "vue谣调", + "type": "vue", + "binfo": { + "left": 391.25, + "top": 130, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-regulator", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-regulator-XYWLgAshOv", + "title": "vue谣调", + "type": "vue", + "binfo": { + "left": 448.75, + "top": 130, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-regulator", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-regulator-08Bbf6yFNc", + "title": "vue谣调", + "type": "vue", + "binfo": { + "left": 528.75, + "top": 130, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-regulator", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-regulator-ZMm2YZf4yZ", + "title": "vue谣调", + "type": "vue", + "binfo": { + "left": 596.25, + "top": 130, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-regulator", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-regulator-QzsPJtosIf", + "title": "vue谣调", + "type": "vue", + "binfo": { + "left": 661.25, + "top": 130, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-regulator", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-regulator-1MdaMONw2O", + "title": "vue谣调", + "type": "vue", + "binfo": { + "left": 741.25, + "top": 130, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-regulator", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-regulator-FjZJljPz2U", + "title": "vue谣调", + "type": "vue", + "binfo": { + "left": 806.25, + "top": 130, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-regulator", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-signal-gaudy-T2mxwrop28", + "title": "vue遥信02", + "type": "vue", + "binfo": { + "left": 20, + "top": 199, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥信", + "moduleId": "" + }, + "tag": "vue-my-signal-gaudy", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-signal-gaudy-jmqGz1Bfmw", + "title": "vue遥信02", + "type": "vue", + "binfo": { + "left": 100, + "top": 199, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥信", + "moduleId": "" + }, + "tag": "vue-my-signal-gaudy", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-signal-gaudy-6cbqwK2IHx", + "title": "vue遥信02", + "type": "vue", + "binfo": { + "left": 173.75, + "top": 199, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥信", + "moduleId": "" + }, + "tag": "vue-my-signal-gaudy", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-signal-gaudy-NQj4eiurYv", + "title": "vue遥信02", + "type": "vue", + "binfo": { + "left": 246.25, + "top": 199, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥信", + "moduleId": "" + }, + "tag": "vue-my-signal-gaudy", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-signal-gaudy-GufdPstNgk", + "title": "vue遥信02", + "type": "vue", + "binfo": { + "left": 323.75, + "top": 199, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥信", + "moduleId": "" + }, + "tag": "vue-my-signal-gaudy", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-signal-gaudy-bJGoAnPlEF", + "title": "vue遥信02", + "type": "vue", + "binfo": { + "left": 403.75, + "top": 199, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥信", + "moduleId": "" + }, + "tag": "vue-my-signal-gaudy", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-signal-gaudy-A3pTcDSWol", + "title": "vue遥信02", + "type": "vue", + "binfo": { + "left": 477.5, + "top": 199, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥信", + "moduleId": "" + }, + "tag": "vue-my-signal-gaudy", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-signal-gaudy-i7ZjEU4PLW", + "title": "vue遥信02", + "type": "vue", + "binfo": { + "left": 549.375, + "top": 199, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥信", + "moduleId": "" + }, + "tag": "vue-my-signal-gaudy", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-signal-gaudy-oUl74CLFPM", + "title": "vue遥信02", + "type": "vue", + "binfo": { + "left": 626.25, + "top": 199, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥信", + "moduleId": "" + }, + "tag": "vue-my-signal-gaudy", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-signal-gaudy-2kRjWUyu6t", + "title": "vue遥信02", + "type": "vue", + "binfo": { + "left": 706.25, + "top": 199, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥信", + "moduleId": "" + }, + "tag": "vue-my-signal-gaudy", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-signal-gaudy-vSd4KahEMh", + "title": "vue遥信02", + "type": "vue", + "binfo": { + "left": 777.5, + "top": 199, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥信", + "moduleId": "" + }, + "tag": "vue-my-signal-gaudy", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-switch-info-Fwqd7gdRkT", + "title": "vue遥控", + "type": "vue", + "binfo": { + "left": 8.75, + "top": 263.25, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥控", + "moduleId": "" + }, + "tag": "vue-my-switch-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-switch-info-t7ip1CUKRw", + "title": "vue遥控", + "type": "vue", + "binfo": { + "left": 8.75, + "top": 316.0625, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥控", + "moduleId": "" + }, + "tag": "vue-my-switch-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-switch-info-WBFnw8HIaQ", + "title": "vue遥控", + "type": "vue", + "binfo": { + "left": 8.75, + "top": 368.25, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥控", + "moduleId": "" + }, + "tag": "vue-my-switch-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-switch-info-mTcnFiAWqo", + "title": "vue遥控", + "type": "vue", + "binfo": { + "left": 8.75, + "top": 424.8125, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥控", + "moduleId": "" + }, + "tag": "vue-my-switch-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-ooUSdZiqKr", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 172.5, + "top": 60, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-G4btdjBHUN", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 243.75601196289062, + "top": 60, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-VmoAm7iOnR", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 316.2439880371094, + "top": 60, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-AudYaeGqW7", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 383.7439880371094, + "top": 60, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-6LNTW8yTt8", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 458.7439880371094, + "top": 60, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-aI3Sm9amF0", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 528.125, + "top": 60, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-Pv6qC0xIpA", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 601.875, + "top": 60, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-9M7WG3NARD", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 669.375, + "top": 60, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-KfTdPBFvuk", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 744.375, + "top": 60, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-SlF6a4unBv", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 815.6310119628906, + "top": 60, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-f9MxYrzsgw", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 888.1189880371094, + "top": 60, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-YZ0KzdxRyB", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 955.6189880371094, + "top": 60, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-HFlqmBKlcj", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 1030.6189880371094, + "top": 60, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-num-info-qDZ9ayAHPj", + "title": "vue谣测", + "type": "vue", + "binfo": { + "left": 1097.8125, + "top": 60, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥测", + "moduleId": "" + }, + "tag": "vue-my-num-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-switch-info-tNESoBqtSN", + "title": "vue遥控", + "type": "vue", + "binfo": { + "left": 128.74398803710938, + "top": 261.6225891113281, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥控", + "moduleId": "" + }, + "tag": "vue-my-switch-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-switch-info-Qhejynu2c3", + "title": "vue遥控", + "type": "vue", + "binfo": { + "left": 130, + "top": 312.8125, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥控", + "moduleId": "" + }, + "tag": "vue-my-switch-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-switch-info-86aviflv9L", + "title": "vue遥控", + "type": "vue", + "binfo": { + "left": 130, + "top": 365, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥控", + "moduleId": "" + }, + "tag": "vue-my-switch-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + }, + { + "id": "vue-my-switch-info-4SkpbZMPO7", + "title": "vue遥控", + "type": "vue", + "binfo": { + "left": 130, + "top": 421.5625, + "width": 50, + "height": 50, + "angle": 0 + }, + "resize": true, + "rotate": true, + "lock": false, + "active": false, + "hide": false, + "props": { + "moduleType": "遥控", + "moduleId": "" + }, + "tag": "vue-my-switch-info", + "common_animations": { + "val": "", + "delay": "delay-0s", + "speed": "slow", + "repeat": "infinite" + }, + "events": [] + } + ] +} \ No newline at end of file diff --git a/public/dataModes/index.json b/public/dataModes/index.json new file mode 100644 index 0000000..30add70 --- /dev/null +++ b/public/dataModes/index.json @@ -0,0 +1,19 @@ +[ + { + "id":"1", + "name":"fireControlAlarmFloor.json" + }, + { + "id":"2", + "name":"fireControlAlarmHost.json" + },{ + "id":"3", + "name":"fireControlAlarmIndex.json" + },{ + "id":"4", + "name":"fireControlIndex.json" + },{ + "id":"5", + "name":"homeOverview.json" + } +] \ No newline at end of file diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..df36fcf Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/imgs/bg.jpg b/public/imgs/bg.jpg new file mode 100644 index 0000000..b6418a2 Binary files /dev/null and b/public/imgs/bg.jpg differ diff --git a/public/imgs/change-attr.png b/public/imgs/change-attr.png new file mode 100644 index 0000000..587086a Binary files /dev/null and b/public/imgs/change-attr.png differ diff --git a/public/imgs/edit-load.png b/public/imgs/edit-load.png new file mode 100644 index 0000000..abcb92a Binary files /dev/null and b/public/imgs/edit-load.png differ diff --git a/public/imgs/edit.png b/public/imgs/edit.png new file mode 100644 index 0000000..fe1a3ae Binary files /dev/null and b/public/imgs/edit.png differ diff --git a/public/imgs/event-callback.png b/public/imgs/event-callback.png new file mode 100644 index 0000000..1c1887e Binary files /dev/null and b/public/imgs/event-callback.png differ diff --git a/public/imgs/machine.png b/public/imgs/machine.png new file mode 100644 index 0000000..6b77c19 Binary files /dev/null and b/public/imgs/machine.png differ diff --git a/public/imgs/set-node-attr.gif b/public/imgs/set-node-attr.gif new file mode 100644 index 0000000..b9c4b8a Binary files /dev/null and b/public/imgs/set-node-attr.gif differ diff --git a/public/models/aircondition.jpg b/public/models/aircondition.jpg new file mode 100644 index 0000000..3583da0 Binary files /dev/null and b/public/models/aircondition.jpg differ diff --git a/public/models/cabinet-hover.jpg b/public/models/cabinet-hover.jpg new file mode 100644 index 0000000..0c3fd96 Binary files /dev/null and b/public/models/cabinet-hover.jpg differ diff --git a/public/models/cabinet.jpg b/public/models/cabinet.jpg new file mode 100644 index 0000000..0c77e49 Binary files /dev/null and b/public/models/cabinet.jpg differ diff --git a/public/models/chassis.jpg b/public/models/chassis.jpg new file mode 100644 index 0000000..6e50ca1 Binary files /dev/null and b/public/models/chassis.jpg differ diff --git a/public/models/door.jpg b/public/models/door.jpg new file mode 100644 index 0000000..26328a1 Binary files /dev/null and b/public/models/door.jpg differ diff --git a/public/models/electricBox.jpg b/public/models/electricBox.jpg new file mode 100644 index 0000000..ff8f1bd Binary files /dev/null and b/public/models/electricBox.jpg differ diff --git a/public/models/fireAlarmControl/fire_alarm_control.glb b/public/models/fireAlarmControl/fire_alarm_control.glb new file mode 100644 index 0000000..4fb4c43 Binary files /dev/null and b/public/models/fireAlarmControl/fire_alarm_control.glb differ diff --git a/public/models/floor01.jpg b/public/models/floor01.jpg new file mode 100644 index 0000000..74d1104 Binary files /dev/null and b/public/models/floor01.jpg differ diff --git a/public/models/floor02.jpg b/public/models/floor02.jpg new file mode 100644 index 0000000..abd0a0a Binary files /dev/null and b/public/models/floor02.jpg differ diff --git a/public/models/groundFloor/Bitmaptexture-1.jpg b/public/models/groundFloor/Bitmaptexture-1.jpg new file mode 100644 index 0000000..2296c2a Binary files /dev/null and b/public/models/groundFloor/Bitmaptexture-1.jpg differ diff --git a/public/models/groundFloor/Bitmaptexture.jpg b/public/models/groundFloor/Bitmaptexture.jpg new file mode 100644 index 0000000..1bc3353 Binary files /dev/null and b/public/models/groundFloor/Bitmaptexture.jpg differ diff --git a/public/models/groundFloor/ground_floor08.bin b/public/models/groundFloor/ground_floor08.bin new file mode 100644 index 0000000..d12ba81 Binary files /dev/null and b/public/models/groundFloor/ground_floor08.bin differ diff --git a/public/models/groundFloor/ground_floor08.gltf b/public/models/groundFloor/ground_floor08.gltf new file mode 100644 index 0000000..f99bdd9 --- /dev/null +++ b/public/models/groundFloor/ground_floor08.gltf @@ -0,0 +1,13784 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v5.0.21", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_transmission", + "KHR_materials_specular", + "KHR_materials_ior" + ], + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"model_scene", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.014842470176517963, + 0.014842470176517963, + 0.014842470176517963 + ], + "translation":[ + -14.818470001220703, + 0, + -8.95805835723877 + ] + }, + { + "mesh":1, + "name":"\u7acb\u65b9\u4f53.001", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5819587707519531, + 3.5953621864318848, + 0.5765058994293213 + ], + "translation":[ + -7.484963417053223, + 1.4832736253738403, + 6.443909168243408 + ] + }, + { + "mesh":2, + "name":"\u7acb\u65b9\u4f53.002", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5819587707519531, + 3.5953621864318848, + 0.5765058994293213 + ], + "translation":[ + 0.006341755390167236, + 1.4832736253738403, + 6.443909168243408 + ] + }, + { + "mesh":3, + "name":"\u7acb\u65b9\u4f53.003", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5819587707519531, + 3.5953621864318848, + 0.5765058994293213 + ], + "translation":[ + 7.448461532592773, + 1.4832736253738403, + 6.443909168243408 + ] + }, + { + "mesh":4, + "name":"\u7acb\u65b9\u4f53.004", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5819587707519531, + 3.5953621864318848, + 0.5765058994293213 + ], + "translation":[ + 14.996131896972656, + 1.4832736253738403, + 6.443909168243408 + ] + }, + { + "mesh":5, + "name":"\u7acb\u65b9\u4f53", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5526615977287292, + 4.49843168258667, + 1 + ], + "translation":[ + -11.091999053955078, + 1.4443719387054443, + 6.444415092468262 + ] + }, + { + "mesh":6, + "name":"\u7acb\u65b9\u4f53.005", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5604078769683838, + 4.49843168258667, + 1.0540369749069214 + ], + "translation":[ + -3.758329391479492, + 1.4443719387054443, + 6.444886207580566 + ] + }, + { + "mesh":7, + "name":"\u7acb\u65b9\u4f53.006", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.48934125900268555, + 4.49843168258667, + 1.0485365390777588 + ], + "translation":[ + 3.6906943321228027, + 1.4443719387054443, + 6.4405622482299805 + ] + }, + { + "mesh":8, + "name":"\u7acb\u65b9\u4f53.009", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5819587707519531, + 3.5953621864318848, + 0.5765058994293213 + ], + "translation":[ + -14.632072448730469, + 1.4832736253738403, + 6.443909168243408 + ] + }, + { + "mesh":9, + "name":"\u7acb\u65b9\u4f53.010", + "rotation":[ + 0, + 0, + 1, + 3.7748971948303733e-08 + ], + "scale":[ + 0.5526615977287292, + 4.49843168258667, + 0.4932527542114258 + ], + "translation":[ + -14.632407188415527, + 1.4443719387054443, + 4.83738899230957 + ] + }, + { + "mesh":10, + "name":"\u7acb\u65b9\u4f53.011", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5819587707519531, + 3.5953621864318848, + 0.5765058994293213 + ], + "translation":[ + -14.632072448730469, + 1.4832736253738403, + 2.9910945892333984 + ] + }, + { + "mesh":11, + "name":"\u7acb\u65b9\u4f53.012", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5819587707519531, + 3.5953621864318848, + 0.5765058994293213 + ], + "translation":[ + -14.632072448730469, + 1.4832736253738403, + -0.6158475875854492 + ] + }, + { + "mesh":12, + "name":"\u7acb\u65b9\u4f53.013", + "rotation":[ + 0, + 0, + 1, + 3.7748971948303733e-08 + ], + "scale":[ + 0.5526615977287292, + 4.49843168258667, + 0.4932527542114258 + ], + "translation":[ + -14.632407188415527, + 1.4443719387054443, + 1.2093355655670166 + ] + }, + { + "mesh":13, + "name":"\u7acb\u65b9\u4f53.014", + "rotation":[ + 0, + 0, + 1, + 3.7748971948303733e-08 + ], + "scale":[ + 0.5526615977287292, + 4.49843168258667, + 0.8792715668678284 + ], + "translation":[ + -14.632407188415527, + 1.4443719387054443, + -3.773420572280884 + ] + }, + { + "mesh":14, + "name":"\u7acb\u65b9\u4f53.007", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.48934125900268555, + 4.49843168258667, + 1.083895206451416 + ], + "translation":[ + 11.239561080932617, + 1.4443719387054443, + 6.4405622482299805 + ] + }, + { + "mesh":15, + "name":"\u7acb\u65b9\u4f53.008", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5819587707519531, + 3.5953621864318848, + 0.5765058994293213 + ], + "translation":[ + -7.484963417053223, + 1.4832736253738403, + -6.7830023765563965 + ] + }, + { + "mesh":16, + "name":"\u7acb\u65b9\u4f53.015", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5819587707519531, + 3.5953621864318848, + 0.5765058994293213 + ], + "translation":[ + 0.006341755390167236, + 1.4832736253738403, + -6.7830023765563965 + ] + }, + { + "mesh":17, + "name":"\u7acb\u65b9\u4f53.016", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5819587707519531, + 3.5953621864318848, + 0.5765058994293213 + ], + "translation":[ + 7.448461532592773, + 1.4832736253738403, + -6.7830023765563965 + ] + }, + { + "mesh":18, + "name":"\u7acb\u65b9\u4f53.017", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5819587707519531, + 3.5953621864318848, + 0.5765058994293213 + ], + "translation":[ + 14.996131896972656, + 1.4832736253738403, + -6.7830023765563965 + ] + }, + { + "mesh":19, + "name":"\u7acb\u65b9\u4f53.018", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5526615977287292, + 4.49843168258667, + 1 + ], + "translation":[ + -11.091999053955078, + 1.4443719387054443, + -6.782496452331543 + ] + }, + { + "mesh":20, + "name":"\u7acb\u65b9\u4f53.019", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5604078769683838, + 4.49843168258667, + 1.0540369749069214 + ], + "translation":[ + -3.758329391479492, + 1.4443719387054443, + -6.782025337219238 + ] + }, + { + "mesh":21, + "name":"\u7acb\u65b9\u4f53.020", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.48934125900268555, + 4.49843168258667, + 1.0485365390777588 + ], + "translation":[ + 3.6906943321228027, + 1.4443719387054443, + -6.786349296569824 + ] + }, + { + "mesh":22, + "name":"\u7acb\u65b9\u4f53.021", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5819587707519531, + 3.5953621864318848, + 0.5765058994293213 + ], + "translation":[ + -14.632072448730469, + 1.4832736253738403, + -6.7830023765563965 + ] + }, + { + "mesh":23, + "name":"\u7acb\u65b9\u4f53.022", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.48934125900268555, + 4.49843168258667, + 1.083895206451416 + ], + "translation":[ + 11.239561080932617, + 1.4443719387054443, + -6.786349296569824 + ] + }, + { + "mesh":24, + "name":"\u7acb\u65b9\u4f53.023", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5819587707519531, + 3.5953621864318848, + 0.5765058994293213 + ], + "translation":[ + 14.996131896972656, + 1.4832736253738403, + 2.18668794631958 + ] + }, + { + "mesh":25, + "name":"\u7acb\u65b9\u4f53.024", + "rotation":[ + -0.7071068286895752, + 0, + -0.7071068286895752, + 4.216080373709019e-09 + ], + "scale":[ + 0.5819587707519531, + 3.5953621864318848, + 0.5765058994293213 + ], + "translation":[ + 14.996131896972656, + 1.4832736253738403, + -2.4150688648223877 + ] + }, + { + "mesh":26, + "name":"\u7acb\u65b9\u4f53.025", + "rotation":[ + 0, + 0, + 1, + 3.774897550101741e-08 + ], + "scale":[ + 0.48934125900268555, + 4.49843168258667, + 0.6224116086959839 + ], + "translation":[ + 15.036791801452637, + 1.4628808498382568, + 4.385672092437744 + ] + }, + { + "mesh":27, + "name":"\u7acb\u65b9\u4f53.026", + "rotation":[ + 0, + 0, + 1, + 3.7748971948303733e-08 + ], + "scale":[ + 0.5022600293159485, + 4.49843168258667, + 0.6388434767723083 + ], + "translation":[ + 15.036005973815918, + 1.4628808498382568, + -0.0842900276184082 + ] + }, + { + "mesh":28, + "name":"\u7acb\u65b9\u4f53.027", + "rotation":[ + 0, + 0, + 1, + 3.774897550101741e-08 + ], + "scale":[ + 0.4701958894729614, + 4.49843168258667, + 0.5980598330497742 + ], + "translation":[ + 15.037957191467285, + 1.4628808498382568, + -4.539137363433838 + ] + }, + { + "mesh":29, + "name":"area_oneFloor_3", + "rotation":[ + 0, + -0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.21257124841213226, + 0.7335620522499084, + 1.0368707180023193 + ], + "translation":[ + 6.319515228271484, + 1.7369049787521362, + 0.9023839235305786 + ] + }, + { + "mesh":30, + "name":"area_oneFloor_4", + "rotation":[ + 0, + -0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.21257124841213226, + 0.7335620522499084, + 0.5707659125328064 + ], + "translation":[ + 3.357022285461426, + 1.7369049787521362, + 0.9023839235305786 + ] + }, + { + "mesh":31, + "name":"area_oneFloor_6", + "rotation":[ + 0, + -0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.4022426903247833, + 0.7146603465080261, + 0.5646018981933594 + ], + "translation":[ + 1.169703483581543, + 1.7805448770523071, + 1.9122700691223145 + ] + }, + { + "mesh":32, + "name":"area_oneFloor_7", + "rotation":[ + 0, + -0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.4022426903247833, + 0.7146603465080261, + 0.6747844815254211 + ], + "translation":[ + -1.1586058139801025, + 1.7805448770523071, + 1.9122700691223145 + ] + }, + { + "mesh":33, + "name":"area_oneFloor_8", + "rotation":[ + 0, + -0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.4022426903247833, + 0.7146603465080261, + 0.5250645875930786 + ], + "translation":[ + -3.4341917037963867, + 1.7805448770523071, + 1.9122700691223145 + ] + }, + { + "mesh":34, + "name":"area_oneFloor_9", + "rotation":[ + 0, + -0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.21257124841213226, + 0.7335620522499084, + 0.5707659125328064 + ], + "translation":[ + -5.669098854064941, + 1.7369049787521362, + 0.9023839235305786 + ] + }, + { + "mesh":35, + "name":"area_oneFloor_10", + "rotation":[ + 0, + -0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.13782186806201935, + 0.7335620522499084, + 1.704160451889038 + ], + "translation":[ + -7.438165187835693, + 1.7369049787521362, + 3.3201518058776855 + ] + }, + { + "mesh":36, + "name":"area_oneFloor_11", + "rotation":[ + 0, + -0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.4022426903247833, + 0.7335620522499084, + 0.6661871671676636 + ], + "translation":[ + -11.566232681274414, + 1.7369049787521362, + 1.9122700691223145 + ] + }, + { + "mesh":37, + "name":"area_oneFloor_12", + "rotation":[ + 0, + -0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.21257124841213226, + 0.7335620522499084, + 0.9791874289512634 + ], + "translation":[ + -8.525168418884277, + 1.7369049787521362, + 0.9023839235305786 + ] + }, + { + "mesh":38, + "name":"area_oneFloor_13", + "rotation":[ + 0, + -0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.13782186806201935, + 0.7335620522499084, + 1.766610026359558 + ], + "translation":[ + 5.151973247528076, + 1.7369049787521362, + 3.3201518058776855 + ] + }, + { + "mesh":39, + "name":"area_oneFloor_14", + "rotation":[ + 0, + -0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.4022426903247833, + 0.7335620522499084, + 0.4851452708244324 + ], + "translation":[ + 9.118657112121582, + 1.7369049787521362, + 1.9122700691223145 + ] + }, + { + "mesh":40, + "name":"area_oneFloor_35kV", + "scale":[ + 2.2075014114379883, + 0.7146603465080261, + 1.7242292165756226 + ], + "translation":[ + -2.267503023147583, + 1.7805448770523071, + -3.710536241531372 + ] + }, + { + "mesh":41, + "name":"area_oneFloor_220kV", + "rotation":[ + 0, + -0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.9470660090446472, + 0.7146603465080261, + 0.925947368144989 + ], + "translation":[ + 11.779894828796387, + 1.7805448770523071, + -1.1800193786621094 + ] + }, + { + "mesh":42, + "name":"smokeDetector.05", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + 11.780508995056152, + 3.912808656692505, + -1.4423176050186157 + ] + }, + { + "mesh":43, + "name":"smokeDetector.09", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + -6.347601890563965, + 3.912808656692505, + -3.575286865234375 + ] + }, + { + "mesh":44, + "name":"smokeDetector.11", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + -1.15141761302948, + 3.912808656692505, + 0.48187220096588135 + ] + }, + { + "mesh":45, + "name":"smokeDetector.10", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + 3.682072401046753, + 3.912808656692505, + -3.575286865234375 + ] + }, + { + "mesh":46, + "name":"smokeDetector.07", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + 4.104421615600586, + 3.912808656692505, + 3.2681775093078613 + ] + }, + { + "mesh":47, + "name":"smokeDetector.15", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + -5.69757604598999, + 3.912808656692505, + -0.04254353046417236 + ] + }, + { + "mesh":48, + "name":"smokeDetector.13", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + -8.782206535339355, + 3.912808656692505, + 3.2802894115448 + ] + }, + { + "mesh":49, + "name":"smokeDetector.17", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + -11.976022720336914, + 3.912808656692505, + 5.367649078369141 + ] + }, + { + "mesh":50, + "name":"manual.01", + "rotation":[ + 0, + 0.7071068286895752, + -0.7071068286895752, + 3.090862321641907e-08 + ], + "scale":[ + 0.0013081671204417944, + 0.0013081668876111507, + 0.0013081668876111507 + ], + "translation":[ + -8.377406120300293, + 1.671411395072937, + 6.360738754272461 + ] + }, + { + "mesh":51, + "name":"manual.02", + "rotation":[ + 0, + 0.7071068286895752, + -0.7071068286895752, + 3.090862321641907e-08 + ], + "scale":[ + 0.0013081671204417944, + 0.0013081668876111507, + 0.0013081668876111507 + ], + "translation":[ + 10.213541984558105, + 1.671411395072937, + 6.360738754272461 + ] + }, + { + "mesh":52, + "name":"acoustoOptic.01", + "rotation":[ + 0.70710688829422, + 0, + 0, + 0.7071066498756409 + ], + "scale":[ + 0.0015232861042022705, + 0.0015232863370329142, + 0.0015232863370329142 + ], + "translation":[ + -7.5043745040893555, + 1.495643973350525, + 4.432652950286865 + ] + }, + { + "mesh":53, + "name":"acoustoOptic.02", + "rotation":[ + 0.70710688829422, + 0, + 0, + 0.7071066498756409 + ], + "scale":[ + 0.0015232861042022705, + 0.0015232863370329142, + 0.0015232863370329142 + ], + "translation":[ + 5.353896141052246, + 1.495643973350525, + 4.432652950286865 + ] + }, + { + "mesh":54, + "name":"smokeDetector.03", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + 9.116472244262695, + 3.912808656692505, + 0.5265880227088928 + ] + }, + { + "mesh":55, + "name":"smokeDetector.04", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + 9.131199836730957, + 3.912808656692505, + 2.8495497703552246 + ] + }, + { + "mesh":56, + "name":"smokeDetector.01", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + -9.287100791931152, + 3.8995871543884277, + 0.912246823310852 + ] + }, + { + "mesh":57, + "name":"smokeDetector.02", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + -7.635395526885986, + 3.912808656692505, + 0.8762871026992798 + ] + }, + { + "mesh":58, + "name":"smokeDetector.06", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + 11.887173652648926, + 3.912808656692505, + 2.0839099884033203 + ] + }, + { + "mesh":59, + "name":"smokeDetector.08", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + 6.392271041870117, + 3.912808656692505, + 3.2681775093078613 + ] + }, + { + "mesh":60, + "name":"smokeDetector.12", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + -1.15141761302948, + 3.912808656692505, + 2.6453232765197754 + ] + }, + { + "mesh":61, + "name":"smokeDetector.14", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + -6.218381404876709, + 3.912808656692505, + 3.2802894115448 + ] + }, + { + "mesh":62, + "name":"smokeDetector.16", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + -5.69757604598999, + 3.912808656692505, + 1.2898380756378174 + ] + }, + { + "mesh":63, + "name":"smokeDetector.18", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.00238613854162395, + 0.0023861387744545937, + 0.0023861387744545937 + ], + "translation":[ + 1.4446945190429688, + 3.912808656692505, + 5.367649078369141 + ] + } + ], + "materials":[ + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + }, + "KHR_materials_ior":{ + "ior":1 + } + }, + "name":"wall_1_2.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.8357736468315125, + 0.8326250314712524, + 0.8886098861694336, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.9683772325515747 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0.6000000238418579 + } + }, + "name":"white.001", + "pbrMetallicRoughness":{ + "metallicFactor":0, + "roughnessFactor":0.7550510168075562 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + }, + "KHR_materials_ior":{ + "ior":1.399999976158142 + } + }, + "name":"ground1.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.41237252950668335, + 0.439301073551178, + 0.4515717029571533, + 1 + ], + "metallicFactor":0.0923076942563057, + "roughnessFactor":0.9683772325515747 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.004", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.8682516813278198, + 0.8406069278717041, + 0.8116991519927979, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "alphaMode":"BLEND", + "doubleSided":true, + "name":"\u6750\u8d28.005", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.9426673054695129, + 0.9890609979629517, + 1, + 0.2142857313156128 + ], + "metallicFactor":0, + "roughnessFactor":0.5267857313156128 + } + }, + { + "alphaMode":"BLEND", + "doubleSided":true, + "name":"\u6750\u8d28.010", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.0646882876753807, + 1, + 0, + 0.05000000074505806 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "alphaMode":"BLEND", + "doubleSided":true, + "name":"\u6750\u8d28.012", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.14513267576694489, + 0, + 0.8000074625015259, + 0.05000000074505806 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "alphaMode":"BLEND", + "doubleSided":true, + "name":"\u6750\u8d28.009", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.8000074625015259, + 0.011844722554087639, + 0.7630969285964966, + 0.05000000074505806 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "alphaMode":"BLEND", + "doubleSided":true, + "name":"\u6750\u8d28.008", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.8000074625015259, + 0.7738820314407349, + 0, + 0.05000000074505806 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "alphaMode":"BLEND", + "doubleSided":true, + "name":"\u6750\u8d28.003", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.13898643851280212, + 0.22885896265506744, + 1, + 0.15000000596046448 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"17323384844943326272", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.6666666865348816, + 0, + 0, + 1 + ], + "roughnessFactor":0.8964735269546509 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"8627208545043949574", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.7529411911964417, + 0.7529411911964417, + 0.7529411911964417, + 1 + ], + "roughnessFactor":0.8964735269546509 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._PVC\u767d\u54d1\u5149.001", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":0 + }, + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + } + }, + "name":"17323384844943326272.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.6666666865348816, + 0, + 0, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.8964735269546509 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + } + }, + "name":"8627208545043949574.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.7529411911964417, + 0.7529411911964417, + 0.7529411911964417, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.8964735269546509 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._\u4e9a\u514b\u529b\u900f\u660e\u7ea2\u8272.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.7843137979507446, + 0.7843137979507446, + 0.7843137979507446, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._PVC\u9ed1\u8272\u54d1\u5149.001", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._\u94c1\u5e72\u51c0.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.5960784554481506, + 0.5960784554481506, + 0.5960784554481506, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_transmission":{ + "transmissionFactor":1 + }, + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime__JianE_Mtl_202481416124218725.001", + "pbrMetallicRoughness":{ + "metallicFactor":0, + "roughnessFactor":0.8999999761581421 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_transmission":{ + "transmissionFactor":1 + }, + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime__JianE_Mtl_202481416124218723.001", + "pbrMetallicRoughness":{ + "metallicFactor":0, + "roughnessFactor":0.8999999761581421 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_transmission":{ + "transmissionFactor":1 + }, + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime__JianE_Mtl_202481416124218724.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0, + 0, + 0, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.8999999761581421 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_transmission":{ + "transmissionFactor":1 + }, + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime__JianE_Mtl_202481416124218721.001", + "pbrMetallicRoughness":{ + "metallicFactor":0, + "roughnessFactor":0.8999999761581421 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_transmission":{ + "transmissionFactor":1 + }, + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime__JianE_Mtl_202481416124218614.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.5881999731063843, + 0.058800000697374344, + 0.058800000697374344, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.8999999761581421 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_transmission":{ + "transmissionFactor":1 + }, + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime__JianE_Mtl_202481416124218726.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.8823999762535095, + 0.6431000232696533, + 0, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.8999999761581421 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_transmission":{ + "transmissionFactor":1 + }, + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime__JianE_Mtl_202481416124218722.001", + "pbrMetallicRoughness":{ + "metallicFactor":0, + "roughnessFactor":0.8999999761581421 + } + } + ], + "meshes":[ + { + "name":"\u751f\u4ea7\u7efc\u5408\u697c\u4e00\u697c.001", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + }, + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + }, + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.024", + "primitives":[ + { + "attributes":{ + "POSITION":12, + "NORMAL":13, + "TEXCOORD_0":14 + }, + "indices":15, + "material":3 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.025", + "primitives":[ + { + "attributes":{ + "POSITION":16, + "NORMAL":17, + "TEXCOORD_0":18 + }, + "indices":15, + "material":3 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.026", + "primitives":[ + { + "attributes":{ + "POSITION":19, + "NORMAL":20, + "TEXCOORD_0":21 + }, + "indices":15, + "material":3 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.027", + "primitives":[ + { + "attributes":{ + "POSITION":22, + "NORMAL":23, + "TEXCOORD_0":24 + }, + "indices":15, + "material":3 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.028", + "primitives":[ + { + "attributes":{ + "POSITION":25, + "NORMAL":26, + "TEXCOORD_0":27 + }, + "indices":15, + "material":4 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.029", + "primitives":[ + { + "attributes":{ + "POSITION":28, + "NORMAL":29, + "TEXCOORD_0":30 + }, + "indices":15, + "material":4 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.030", + "primitives":[ + { + "attributes":{ + "POSITION":31, + "NORMAL":32, + "TEXCOORD_0":33 + }, + "indices":15, + "material":4 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.036", + "primitives":[ + { + "attributes":{ + "POSITION":34, + "NORMAL":35, + "TEXCOORD_0":36 + }, + "indices":15, + "material":3 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.037", + "primitives":[ + { + "attributes":{ + "POSITION":37, + "NORMAL":38, + "TEXCOORD_0":39 + }, + "indices":15, + "material":4 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.038", + "primitives":[ + { + "attributes":{ + "POSITION":40, + "NORMAL":41, + "TEXCOORD_0":42 + }, + "indices":15, + "material":3 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.039", + "primitives":[ + { + "attributes":{ + "POSITION":43, + "NORMAL":44, + "TEXCOORD_0":45 + }, + "indices":15, + "material":3 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.040", + "primitives":[ + { + "attributes":{ + "POSITION":46, + "NORMAL":47, + "TEXCOORD_0":48 + }, + "indices":15, + "material":4 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.043", + "primitives":[ + { + "attributes":{ + "POSITION":49, + "NORMAL":50, + "TEXCOORD_0":51 + }, + "indices":52, + "material":4 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.001", + "primitives":[ + { + "attributes":{ + "POSITION":53, + "NORMAL":54, + "TEXCOORD_0":55 + }, + "indices":15, + "material":4 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.002", + "primitives":[ + { + "attributes":{ + "POSITION":56, + "NORMAL":57, + "TEXCOORD_0":58 + }, + "indices":15, + "material":3 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.003", + "primitives":[ + { + "attributes":{ + "POSITION":59, + "NORMAL":60, + "TEXCOORD_0":61 + }, + "indices":15, + "material":3 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.004", + "primitives":[ + { + "attributes":{ + "POSITION":62, + "NORMAL":63, + "TEXCOORD_0":64 + }, + "indices":15, + "material":3 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.005", + "primitives":[ + { + "attributes":{ + "POSITION":65, + "NORMAL":66, + "TEXCOORD_0":67 + }, + "indices":15, + "material":3 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.008", + "primitives":[ + { + "attributes":{ + "POSITION":68, + "NORMAL":69, + "TEXCOORD_0":70 + }, + "indices":15, + "material":4 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.014", + "primitives":[ + { + "attributes":{ + "POSITION":71, + "NORMAL":72, + "TEXCOORD_0":73 + }, + "indices":15, + "material":4 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.017", + "primitives":[ + { + "attributes":{ + "POSITION":74, + "NORMAL":75, + "TEXCOORD_0":76 + }, + "indices":15, + "material":4 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.020", + "primitives":[ + { + "attributes":{ + "POSITION":77, + "NORMAL":78, + "TEXCOORD_0":79 + }, + "indices":15, + "material":3 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.021", + "primitives":[ + { + "attributes":{ + "POSITION":80, + "NORMAL":81, + "TEXCOORD_0":82 + }, + "indices":15, + "material":4 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.022", + "primitives":[ + { + "attributes":{ + "POSITION":83, + "NORMAL":84, + "TEXCOORD_0":85 + }, + "indices":15, + "material":3 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.023", + "primitives":[ + { + "attributes":{ + "POSITION":86, + "NORMAL":87, + "TEXCOORD_0":88 + }, + "indices":15, + "material":3 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.033", + "primitives":[ + { + "attributes":{ + "POSITION":89, + "NORMAL":90, + "TEXCOORD_0":91 + }, + "indices":15, + "material":4 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.034", + "primitives":[ + { + "attributes":{ + "POSITION":92, + "NORMAL":93, + "TEXCOORD_0":94 + }, + "indices":15, + "material":4 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.035", + "primitives":[ + { + "attributes":{ + "POSITION":95, + "NORMAL":96, + "TEXCOORD_0":97 + }, + "indices":15, + "material":4 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.019", + "primitives":[ + { + "attributes":{ + "POSITION":98, + "NORMAL":99, + "TEXCOORD_0":100 + }, + "indices":101, + "material":5 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.018", + "primitives":[ + { + "attributes":{ + "POSITION":102, + "NORMAL":103, + "TEXCOORD_0":104 + }, + "indices":101, + "material":5 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.012", + "primitives":[ + { + "attributes":{ + "POSITION":105, + "NORMAL":106, + "TEXCOORD_0":107 + }, + "indices":101, + "material":6 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.011", + "primitives":[ + { + "attributes":{ + "POSITION":108, + "NORMAL":109, + "TEXCOORD_0":110 + }, + "indices":101, + "material":6 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.010", + "primitives":[ + { + "attributes":{ + "POSITION":111, + "NORMAL":112, + "TEXCOORD_0":113 + }, + "indices":101, + "material":6 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.015", + "primitives":[ + { + "attributes":{ + "POSITION":114, + "NORMAL":115, + "TEXCOORD_0":116 + }, + "indices":101, + "material":5 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.016", + "primitives":[ + { + "attributes":{ + "POSITION":117, + "NORMAL":118, + "TEXCOORD_0":119 + }, + "indices":101, + "material":7 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.009", + "primitives":[ + { + "attributes":{ + "POSITION":120, + "NORMAL":121, + "TEXCOORD_0":122 + }, + "indices":101, + "material":8 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.013", + "primitives":[ + { + "attributes":{ + "POSITION":123, + "NORMAL":124, + "TEXCOORD_0":125 + }, + "indices":101, + "material":5 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.045", + "primitives":[ + { + "attributes":{ + "POSITION":126, + "NORMAL":127, + "TEXCOORD_0":128 + }, + "indices":101, + "material":7 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.044", + "primitives":[ + { + "attributes":{ + "POSITION":129, + "NORMAL":130, + "TEXCOORD_0":131 + }, + "indices":101, + "material":8 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.007", + "primitives":[ + { + "attributes":{ + "POSITION":132, + "NORMAL":133, + "TEXCOORD_0":134 + }, + "indices":101, + "material":9 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.006", + "primitives":[ + { + "attributes":{ + "POSITION":135, + "NORMAL":136, + "TEXCOORD_0":137 + }, + "indices":101, + "material":9 + } + ] + }, + { + "name":"smokeSon.013", + "primitives":[ + { + "attributes":{ + "POSITION":138, + "NORMAL":139, + "TEXCOORD_0":140 + }, + "indices":141, + "material":2 + }, + { + "attributes":{ + "POSITION":142, + "NORMAL":143, + "TEXCOORD_0":144 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":146, + "NORMAL":147, + "TEXCOORD_0":148 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":150, + "NORMAL":151, + "TEXCOORD_0":152 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":154, + "NORMAL":155, + "TEXCOORD_0":156 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":158, + "NORMAL":159, + "TEXCOORD_0":160 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":162, + "NORMAL":163, + "TEXCOORD_0":164 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":166, + "NORMAL":167, + "TEXCOORD_0":168 + }, + "indices":169, + "material":16 + } + ] + }, + { + "name":"smokeSon.007", + "primitives":[ + { + "attributes":{ + "POSITION":170, + "NORMAL":171, + "TEXCOORD_0":172 + }, + "indices":141, + "material":17 + }, + { + "attributes":{ + "POSITION":173, + "NORMAL":174, + "TEXCOORD_0":175 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":176, + "NORMAL":177, + "TEXCOORD_0":178 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":179, + "NORMAL":180, + "TEXCOORD_0":181 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":182, + "NORMAL":183, + "TEXCOORD_0":184 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":185, + "NORMAL":186, + "TEXCOORD_0":187 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":188, + "NORMAL":189, + "TEXCOORD_0":190 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":191, + "NORMAL":192, + "TEXCOORD_0":193 + }, + "indices":169, + "material":16 + } + ] + }, + { + "name":"smokeSon.032", + "primitives":[ + { + "attributes":{ + "POSITION":194, + "NORMAL":195, + "TEXCOORD_0":196 + }, + "indices":141, + "material":17 + }, + { + "attributes":{ + "POSITION":197, + "NORMAL":198, + "TEXCOORD_0":199 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":200, + "NORMAL":201, + "TEXCOORD_0":202 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":203, + "NORMAL":204, + "TEXCOORD_0":205 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":206, + "NORMAL":207, + "TEXCOORD_0":208 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":209, + "NORMAL":210, + "TEXCOORD_0":211 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":212, + "NORMAL":213, + "TEXCOORD_0":214 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":215, + "NORMAL":216, + "TEXCOORD_0":217 + }, + "indices":169, + "material":16 + } + ] + }, + { + "name":"smokeSon.011", + "primitives":[ + { + "attributes":{ + "POSITION":218, + "NORMAL":219, + "TEXCOORD_0":220 + }, + "indices":141, + "material":17 + }, + { + "attributes":{ + "POSITION":221, + "NORMAL":222, + "TEXCOORD_0":223 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":224, + "NORMAL":225, + "TEXCOORD_0":226 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":227, + "NORMAL":228, + "TEXCOORD_0":229 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":230, + "NORMAL":231, + "TEXCOORD_0":232 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":233, + "NORMAL":234, + "TEXCOORD_0":235 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":236, + "NORMAL":237, + "TEXCOORD_0":238 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":239, + "NORMAL":240, + "TEXCOORD_0":241 + }, + "indices":169, + "material":16 + } + ] + }, + { + "name":"smokeSon.018", + "primitives":[ + { + "attributes":{ + "POSITION":242, + "NORMAL":243, + "TEXCOORD_0":244 + }, + "indices":141, + "material":17 + }, + { + "attributes":{ + "POSITION":245, + "NORMAL":246, + "TEXCOORD_0":247 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":248, + "NORMAL":249, + "TEXCOORD_0":250 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":251, + "NORMAL":252, + "TEXCOORD_0":253 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":254, + "NORMAL":255, + "TEXCOORD_0":256 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":257, + "NORMAL":258, + "TEXCOORD_0":259 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":260, + "NORMAL":261, + "TEXCOORD_0":262 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":263, + "NORMAL":264, + "TEXCOORD_0":265 + }, + "indices":169, + "material":16 + } + ] + }, + { + "name":"smokeSon.035", + "primitives":[ + { + "attributes":{ + "POSITION":266, + "NORMAL":267, + "TEXCOORD_0":268 + }, + "indices":141, + "material":17 + }, + { + "attributes":{ + "POSITION":269, + "NORMAL":270, + "TEXCOORD_0":271 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":272, + "NORMAL":273, + "TEXCOORD_0":274 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":275, + "NORMAL":276, + "TEXCOORD_0":277 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":278, + "NORMAL":279, + "TEXCOORD_0":280 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":281, + "NORMAL":282, + "TEXCOORD_0":283 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":284, + "NORMAL":285, + "TEXCOORD_0":286 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":287, + "NORMAL":288, + "TEXCOORD_0":289 + }, + "indices":169, + "material":16 + } + ] + }, + { + "name":"smokeSon.037", + "primitives":[ + { + "attributes":{ + "POSITION":290, + "NORMAL":291, + "TEXCOORD_0":292 + }, + "indices":141, + "material":17 + }, + { + "attributes":{ + "POSITION":293, + "NORMAL":294, + "TEXCOORD_0":295 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":296, + "NORMAL":297, + "TEXCOORD_0":298 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":299, + "NORMAL":300, + "TEXCOORD_0":301 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":302, + "NORMAL":303, + "TEXCOORD_0":304 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":305, + "NORMAL":306, + "TEXCOORD_0":307 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":308, + "NORMAL":309, + "TEXCOORD_0":310 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":311, + "NORMAL":312, + "TEXCOORD_0":313 + }, + "indices":169, + "material":16 + } + ] + }, + { + "name":"smokeSon.040", + "primitives":[ + { + "attributes":{ + "POSITION":314, + "NORMAL":315, + "TEXCOORD_0":316 + }, + "indices":141, + "material":17 + }, + { + "attributes":{ + "POSITION":317, + "NORMAL":318, + "TEXCOORD_0":319 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":320, + "NORMAL":321, + "TEXCOORD_0":322 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":323, + "NORMAL":324, + "TEXCOORD_0":325 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":326, + "NORMAL":327, + "TEXCOORD_0":328 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":329, + "NORMAL":330, + "TEXCOORD_0":331 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":332, + "NORMAL":333, + "TEXCOORD_0":334 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":335, + "NORMAL":336, + "TEXCOORD_0":337 + }, + "indices":169, + "material":16 + } + ] + }, + { + "name":"manualSon.001", + "primitives":[ + { + "attributes":{ + "POSITION":338, + "NORMAL":339, + "TEXCOORD_0":340 + }, + "indices":341, + "material":18 + }, + { + "attributes":{ + "POSITION":342, + "NORMAL":343, + "TEXCOORD_0":344 + }, + "indices":345, + "material":19 + }, + { + "attributes":{ + "POSITION":346, + "NORMAL":347, + "TEXCOORD_0":348 + }, + "indices":349, + "material":20 + }, + { + "attributes":{ + "POSITION":350, + "NORMAL":351, + "TEXCOORD_0":352 + }, + "indices":353, + "material":21 + }, + { + "attributes":{ + "POSITION":354, + "NORMAL":355, + "TEXCOORD_0":356 + }, + "indices":357, + "material":22 + }, + { + "attributes":{ + "POSITION":358, + "NORMAL":359, + "TEXCOORD_0":360 + }, + "indices":361, + "material":23 + } + ] + }, + { + "name":"manualSon.002", + "primitives":[ + { + "attributes":{ + "POSITION":362, + "NORMAL":363, + "TEXCOORD_0":364 + }, + "indices":341, + "material":18 + }, + { + "attributes":{ + "POSITION":365, + "NORMAL":366, + "TEXCOORD_0":367 + }, + "indices":345, + "material":19 + }, + { + "attributes":{ + "POSITION":368, + "NORMAL":369, + "TEXCOORD_0":370 + }, + "indices":349, + "material":20 + }, + { + "attributes":{ + "POSITION":371, + "NORMAL":372, + "TEXCOORD_0":373 + }, + "indices":353, + "material":21 + }, + { + "attributes":{ + "POSITION":374, + "NORMAL":375, + "TEXCOORD_0":376 + }, + "indices":357, + "material":22 + }, + { + "attributes":{ + "POSITION":377, + "NORMAL":378, + "TEXCOORD_0":379 + }, + "indices":361, + "material":23 + } + ] + }, + { + "name":"acoustoSon.003", + "primitives":[ + { + "attributes":{ + "POSITION":380, + "NORMAL":381, + "TEXCOORD_0":382 + }, + "indices":383, + "material":22 + }, + { + "attributes":{ + "POSITION":384, + "NORMAL":385, + "TEXCOORD_0":386 + }, + "indices":387, + "material":21 + }, + { + "attributes":{ + "POSITION":388, + "NORMAL":389, + "TEXCOORD_0":390 + }, + "indices":391, + "material":24 + } + ] + }, + { + "name":"acoustoSon.004", + "primitives":[ + { + "attributes":{ + "POSITION":392, + "NORMAL":393, + "TEXCOORD_0":394 + }, + "indices":383, + "material":22 + }, + { + "attributes":{ + "POSITION":395, + "NORMAL":396, + "TEXCOORD_0":397 + }, + "indices":387, + "material":21 + }, + { + "attributes":{ + "POSITION":398, + "NORMAL":399, + "TEXCOORD_0":400 + }, + "indices":391, + "material":24 + } + ] + }, + { + "name":"smokeSon.001", + "primitives":[ + { + "attributes":{ + "POSITION":401, + "NORMAL":402, + "TEXCOORD_0":403 + }, + "indices":141, + "material":17 + }, + { + "attributes":{ + "POSITION":404, + "NORMAL":405, + "TEXCOORD_0":406 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":407, + "NORMAL":408, + "TEXCOORD_0":409 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":410, + "NORMAL":411, + "TEXCOORD_0":412 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":413, + "NORMAL":414, + "TEXCOORD_0":415 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":416, + "NORMAL":417, + "TEXCOORD_0":418 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":419, + "NORMAL":420, + "TEXCOORD_0":421 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":422, + "NORMAL":423, + "TEXCOORD_0":424 + }, + "indices":169, + "material":16 + } + ] + }, + { + "name":"smokeSon.002", + "primitives":[ + { + "attributes":{ + "POSITION":425, + "NORMAL":426, + "TEXCOORD_0":427 + }, + "indices":141, + "material":17 + }, + { + "attributes":{ + "POSITION":428, + "NORMAL":429, + "TEXCOORD_0":430 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":431, + "NORMAL":432, + "TEXCOORD_0":433 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":434, + "NORMAL":435, + "TEXCOORD_0":436 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":437, + "NORMAL":438, + "TEXCOORD_0":439 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":440, + "NORMAL":441, + "TEXCOORD_0":442 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":443, + "NORMAL":444, + "TEXCOORD_0":445 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":446, + "NORMAL":447, + "TEXCOORD_0":448 + }, + "indices":169, + "material":16 + } + ] + }, + { + "name":"smokeSon.003", + "primitives":[ + { + "attributes":{ + "POSITION":449, + "NORMAL":450, + "TEXCOORD_0":451 + }, + "indices":141, + "material":17 + }, + { + "attributes":{ + "POSITION":452, + "NORMAL":453, + "TEXCOORD_0":454 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":455, + "NORMAL":456, + "TEXCOORD_0":457 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":458, + "NORMAL":459, + "TEXCOORD_0":460 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":461, + "NORMAL":462, + "TEXCOORD_0":463 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":464, + "NORMAL":465, + "TEXCOORD_0":466 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":467, + "NORMAL":468, + "TEXCOORD_0":469 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":470, + "NORMAL":471, + "TEXCOORD_0":472 + }, + "indices":169, + "material":16 + } + ] + }, + { + "name":"smokeSon.004", + "primitives":[ + { + "attributes":{ + "POSITION":473, + "NORMAL":474, + "TEXCOORD_0":475 + }, + "indices":141, + "material":17 + }, + { + "attributes":{ + "POSITION":476, + "NORMAL":477, + "TEXCOORD_0":478 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":479, + "NORMAL":480, + "TEXCOORD_0":481 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":482, + "NORMAL":483, + "TEXCOORD_0":484 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":485, + "NORMAL":486, + "TEXCOORD_0":487 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":488, + "NORMAL":489, + "TEXCOORD_0":490 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":491, + "NORMAL":492, + "TEXCOORD_0":493 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":494, + "NORMAL":495, + "TEXCOORD_0":496 + }, + "indices":169, + "material":16 + } + ] + }, + { + "name":"smokeSon.005", + "primitives":[ + { + "attributes":{ + "POSITION":497, + "NORMAL":498, + "TEXCOORD_0":499 + }, + "indices":141, + "material":17 + }, + { + "attributes":{ + "POSITION":500, + "NORMAL":501, + "TEXCOORD_0":502 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":503, + "NORMAL":504, + "TEXCOORD_0":505 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":506, + "NORMAL":507, + "TEXCOORD_0":508 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":509, + "NORMAL":510, + "TEXCOORD_0":511 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":512, + "NORMAL":513, + "TEXCOORD_0":514 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":515, + "NORMAL":516, + "TEXCOORD_0":517 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":518, + "NORMAL":519, + "TEXCOORD_0":520 + }, + "indices":169, + "material":16 + } + ] + }, + { + "name":"smokeSon.006", + "primitives":[ + { + "attributes":{ + "POSITION":521, + "NORMAL":522, + "TEXCOORD_0":523 + }, + "indices":141, + "material":17 + }, + { + "attributes":{ + "POSITION":524, + "NORMAL":525, + "TEXCOORD_0":526 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":527, + "NORMAL":528, + "TEXCOORD_0":529 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":530, + "NORMAL":531, + "TEXCOORD_0":532 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":533, + "NORMAL":534, + "TEXCOORD_0":535 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":536, + "NORMAL":537, + "TEXCOORD_0":538 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":539, + "NORMAL":540, + "TEXCOORD_0":541 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":542, + "NORMAL":543, + "TEXCOORD_0":544 + }, + "indices":169, + "material":16 + } + ] + }, + { + "name":"smokeSon.008", + "primitives":[ + { + "attributes":{ + "POSITION":545, + "NORMAL":546, + "TEXCOORD_0":547 + }, + "indices":141, + "material":17 + }, + { + "attributes":{ + "POSITION":548, + "NORMAL":549, + "TEXCOORD_0":550 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":551, + "NORMAL":552, + "TEXCOORD_0":553 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":554, + "NORMAL":555, + "TEXCOORD_0":556 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":557, + "NORMAL":558, + "TEXCOORD_0":559 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":560, + "NORMAL":561, + "TEXCOORD_0":562 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":563, + "NORMAL":564, + "TEXCOORD_0":565 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":566, + "NORMAL":567, + "TEXCOORD_0":568 + }, + "indices":169, + "material":16 + } + ] + }, + { + "name":"smokeSon.009", + "primitives":[ + { + "attributes":{ + "POSITION":569, + "NORMAL":570, + "TEXCOORD_0":571 + }, + "indices":141, + "material":17 + }, + { + "attributes":{ + "POSITION":572, + "NORMAL":573, + "TEXCOORD_0":574 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":575, + "NORMAL":576, + "TEXCOORD_0":577 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":578, + "NORMAL":579, + "TEXCOORD_0":580 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":581, + "NORMAL":582, + "TEXCOORD_0":583 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":584, + "NORMAL":585, + "TEXCOORD_0":586 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":587, + "NORMAL":588, + "TEXCOORD_0":589 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":590, + "NORMAL":591, + "TEXCOORD_0":592 + }, + "indices":169, + "material":16 + } + ] + }, + { + "name":"smokeSon.010", + "primitives":[ + { + "attributes":{ + "POSITION":593, + "NORMAL":594, + "TEXCOORD_0":595 + }, + "indices":141, + "material":17 + }, + { + "attributes":{ + "POSITION":596, + "NORMAL":597, + "TEXCOORD_0":598 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":599, + "NORMAL":600, + "TEXCOORD_0":601 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":602, + "NORMAL":603, + "TEXCOORD_0":604 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":605, + "NORMAL":606, + "TEXCOORD_0":607 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":608, + "NORMAL":609, + "TEXCOORD_0":610 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":611, + "NORMAL":612, + "TEXCOORD_0":613 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":614, + "NORMAL":615, + "TEXCOORD_0":616 + }, + "indices":169, + "material":16 + } + ] + }, + { + "name":"smokeSon.012", + "primitives":[ + { + "attributes":{ + "POSITION":617, + "NORMAL":618, + "TEXCOORD_0":619 + }, + "indices":141, + "material":17 + }, + { + "attributes":{ + "POSITION":620, + "NORMAL":621, + "TEXCOORD_0":622 + }, + "indices":145, + "material":10 + }, + { + "attributes":{ + "POSITION":623, + "NORMAL":624, + "TEXCOORD_0":625 + }, + "indices":149, + "material":11 + }, + { + "attributes":{ + "POSITION":626, + "NORMAL":627, + "TEXCOORD_0":628 + }, + "indices":153, + "material":12 + }, + { + "attributes":{ + "POSITION":629, + "NORMAL":630, + "TEXCOORD_0":631 + }, + "indices":157, + "material":13 + }, + { + "attributes":{ + "POSITION":632, + "NORMAL":633, + "TEXCOORD_0":634 + }, + "indices":161, + "material":14 + }, + { + "attributes":{ + "POSITION":635, + "NORMAL":636, + "TEXCOORD_0":637 + }, + "indices":165, + "material":15 + }, + { + "attributes":{ + "POSITION":638, + "NORMAL":639, + "TEXCOORD_0":640 + }, + "indices":169, + "material":16 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + } + ], + "images":[ + { + "mimeType":"image/jpeg", + "name":"Bitmaptexture", + "uri":"Bitmaptexture.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"Bitmaptexture", + "uri":"Bitmaptexture-1.jpg" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":1360, + "max":[ + 2012.05126953125, + 1041.92919921875, + 0 + ], + "min":[ + 11.5355224609375, + 141.42919921875, + -204.30084228515625 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":1360, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":1360, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":2976, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":864, + "max":[ + 1912.3330078125, + 897.771240234375, + 0 + ], + "min":[ + 10.535215377807617, + 299.3778991699219, + -162.80084228515625 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":864, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":864, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":1584, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":4, + "max":[ + 2012.05126953125, + 1041.92919921875, + 0 + ], + "min":[ + 10.53519344329834, + 141.42919921875, + 0 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":6, + "type":"SCALAR" + }, + { + "bufferView":12, + "componentType":5126, + "count":24, + "max":[ + 0.23551702499389648, + 0.4163379669189453, + 0.23551702499389648 + ], + "min":[ + -0.23551702499389648, + -0.4163379669189453, + -0.23551702499389648 + ], + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":16, + "componentType":5126, + "count":24, + "max":[ + 0.23551702499389648, + 0.4163379669189453, + 0.23551702499389648 + ], + "min":[ + -0.23551702499389648, + -0.4163379669189453, + -0.23551702499389648 + ], + "type":"VEC3" + }, + { + "bufferView":17, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19, + "componentType":5126, + "count":24, + "max":[ + 0.23551702499389648, + 0.4163379669189453, + 0.23551702499389648 + ], + "min":[ + -0.23551702499389648, + -0.4163379669189453, + -0.23551702499389648 + ], + "type":"VEC3" + }, + { + "bufferView":20, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":21, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":22, + "componentType":5126, + "count":24, + "max":[ + 0.23551702499389648, + 0.4163379669189453, + 0.23551702499389648 + ], + "min":[ + -0.23551702499389648, + -0.4163379669189453, + -0.23551702499389648 + ], + "type":"VEC3" + }, + { + "bufferView":23, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":24, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":25, + "componentType":5126, + "count":24, + "max":[ + 0.06084561347961426, + 0.326985239982605, + 3.468207359313965 + ], + "min":[ + -0.06084561347961426, + -0.326985239982605, + -3.468207359313965 + ], + "type":"VEC3" + }, + { + "bufferView":26, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":27, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":28, + "componentType":5126, + "count":24, + "max":[ + 0.06084561347961426, + 0.326985239982605, + 3.468207359313965 + ], + "min":[ + -0.06084561347961426, + -0.326985239982605, + -3.468207359313965 + ], + "type":"VEC3" + }, + { + "bufferView":29, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":30, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":31, + "componentType":5126, + "count":24, + "max":[ + 0.06084561347961426, + 0.326985239982605, + 3.468207359313965 + ], + "min":[ + -0.06084561347961426, + -0.326985239982605, + -3.468207359313965 + ], + "type":"VEC3" + }, + { + "bufferView":32, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":33, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":34, + "componentType":5126, + "count":24, + "max":[ + 0.23551702499389648, + 0.4163379669189453, + 0.23551702499389648 + ], + "min":[ + -0.23551702499389648, + -0.4163379669189453, + -0.23551702499389648 + ], + "type":"VEC3" + }, + { + "bufferView":35, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":36, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":37, + "componentType":5126, + "count":24, + "max":[ + 0.06084561347961426, + 0.326985239982605, + 3.468207359313965 + ], + "min":[ + -0.06084561347961426, + -0.326985239982605, + -3.468207359313965 + ], + "type":"VEC3" + }, + { + "bufferView":38, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":39, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":40, + "componentType":5126, + "count":24, + "max":[ + 0.23551702499389648, + 0.4163379669189453, + 0.23551702499389648 + ], + "min":[ + -0.23551702499389648, + -0.4163379669189453, + -0.23551702499389648 + ], + "type":"VEC3" + }, + { + "bufferView":41, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":42, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":43, + "componentType":5126, + "count":24, + "max":[ + 0.23551702499389648, + 0.4163379669189453, + 0.23551702499389648 + ], + "min":[ + -0.23551702499389648, + -0.4163379669189453, + -0.23551702499389648 + ], + "type":"VEC3" + }, + { + "bufferView":44, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":45, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":46, + "componentType":5126, + "count":24, + "max":[ + 0.06084561347961426, + 0.326985239982605, + 3.468207359313965 + ], + "min":[ + -0.06084561347961426, + -0.326985239982605, + -3.468207359313965 + ], + "type":"VEC3" + }, + { + "bufferView":47, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":48, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":49, + "componentType":5126, + "count":48, + "max":[ + 0.06084561347961426, + 0.326985239982605, + 3.468207359313965 + ], + "min":[ + -0.06084561347961426, + -0.326985239982605, + -3.468207359313965 + ], + "type":"VEC3" + }, + { + "bufferView":50, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":51, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":52, + "componentType":5123, + "count":96, + "type":"SCALAR" + }, + { + "bufferView":53, + "componentType":5126, + "count":24, + "max":[ + 0.06084561347961426, + 0.326985239982605, + 3.468207359313965 + ], + "min":[ + -0.06084561347961426, + -0.326985239982605, + -3.468207359313965 + ], + "type":"VEC3" + }, + { + "bufferView":54, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":55, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":56, + "componentType":5126, + "count":24, + "max":[ + 0.23551702499389648, + 0.4163379669189453, + 0.23551702499389648 + ], + "min":[ + -0.23551702499389648, + -0.4163379669189453, + -0.23551702499389648 + ], + "type":"VEC3" + }, + { + "bufferView":57, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":58, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":59, + "componentType":5126, + "count":24, + "max":[ + 0.23551702499389648, + 0.4163379669189453, + 0.23551702499389648 + ], + "min":[ + -0.23551702499389648, + -0.4163379669189453, + -0.23551702499389648 + ], + "type":"VEC3" + }, + { + "bufferView":60, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":61, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":62, + "componentType":5126, + "count":24, + "max":[ + 0.23551702499389648, + 0.4163379669189453, + 0.23551702499389648 + ], + "min":[ + -0.23551702499389648, + -0.4163379669189453, + -0.23551702499389648 + ], + "type":"VEC3" + }, + { + "bufferView":63, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":64, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":65, + "componentType":5126, + "count":24, + "max":[ + 0.23551702499389648, + 0.4163379669189453, + 0.23551702499389648 + ], + "min":[ + -0.23551702499389648, + -0.4163379669189453, + -0.23551702499389648 + ], + "type":"VEC3" + }, + { + "bufferView":66, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":67, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":68, + "componentType":5126, + "count":24, + "max":[ + 0.06084561347961426, + 0.326985239982605, + 3.468207359313965 + ], + "min":[ + -0.06084561347961426, + -0.326985239982605, + -3.468207359313965 + ], + "type":"VEC3" + }, + { + "bufferView":69, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":70, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":71, + "componentType":5126, + "count":24, + "max":[ + 0.06084561347961426, + 0.326985239982605, + 3.468207359313965 + ], + "min":[ + -0.06084561347961426, + -0.326985239982605, + -3.468207359313965 + ], + "type":"VEC3" + }, + { + "bufferView":72, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":73, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":74, + "componentType":5126, + "count":24, + "max":[ + 0.06084561347961426, + 0.326985239982605, + 3.468207359313965 + ], + "min":[ + -0.06084561347961426, + -0.326985239982605, + -3.468207359313965 + ], + "type":"VEC3" + }, + { + "bufferView":75, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":76, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":77, + "componentType":5126, + "count":24, + "max":[ + 0.23551702499389648, + 0.4163379669189453, + 0.23551702499389648 + ], + "min":[ + -0.23551702499389648, + -0.4163379669189453, + -0.23551702499389648 + ], + "type":"VEC3" + }, + { + "bufferView":78, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":79, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":80, + "componentType":5126, + "count":24, + "max":[ + 0.06084561347961426, + 0.326985239982605, + 3.468207359313965 + ], + "min":[ + -0.06084561347961426, + -0.326985239982605, + -3.468207359313965 + ], + "type":"VEC3" + }, + { + "bufferView":81, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":82, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":83, + "componentType":5126, + "count":24, + "max":[ + 0.23551702499389648, + 0.4163379669189453, + 0.23551702499389648 + ], + "min":[ + -0.23551702499389648, + -0.4163379669189453, + -0.23551702499389648 + ], + "type":"VEC3" + }, + { + "bufferView":84, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":85, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":86, + "componentType":5126, + "count":24, + "max":[ + 0.23551702499389648, + 0.4163379669189453, + 0.23551702499389648 + ], + "min":[ + -0.23551702499389648, + -0.4163379669189453, + -0.23551702499389648 + ], + "type":"VEC3" + }, + { + "bufferView":87, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":88, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":89, + "componentType":5126, + "count":24, + "max":[ + 0.06084561347961426, + 0.326985239982605, + 3.468207359313965 + ], + "min":[ + -0.06084561347961426, + -0.326985239982605, + -3.468207359313965 + ], + "type":"VEC3" + }, + { + "bufferView":90, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":91, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":92, + "componentType":5126, + "count":24, + "max":[ + 0.06084561347961426, + 0.326985239982605, + 3.468207359313965 + ], + "min":[ + -0.06084561347961426, + -0.326985239982605, + -3.468207359313965 + ], + "type":"VEC3" + }, + { + "bufferView":93, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":94, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":95, + "componentType":5126, + "count":24, + "max":[ + 0.06084561347961426, + 0.326985239982605, + 3.468207359313965 + ], + "min":[ + -0.06084561347961426, + -0.326985239982605, + -3.468207359313965 + ], + "type":"VEC3" + }, + { + "bufferView":96, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":97, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":98, + "componentType":5126, + "count":864, + "max":[ + 5.324397087097168, + 2.3087825775146484, + 1.519528865814209 + ], + "min":[ + -5.324397087097168, + -2.3087825775146484, + -1.519528865814209 + ], + "type":"VEC3" + }, + { + "bufferView":99, + "componentType":5126, + "count":864, + "type":"VEC3" + }, + { + "bufferView":100, + "componentType":5126, + "count":864, + "type":"VEC2" + }, + { + "bufferView":101, + "componentType":5123, + "count":1284, + "type":"SCALAR" + }, + { + "bufferView":102, + "componentType":5126, + "count":864, + "max":[ + 5.324397087097168, + 2.3087825775146484, + 1.519528865814209 + ], + "min":[ + -5.324397087097168, + -2.3087825775146484, + -1.519528865814209 + ], + "type":"VEC3" + }, + { + "bufferView":103, + "componentType":5126, + "count":864, + "type":"VEC3" + }, + { + "bufferView":104, + "componentType":5126, + "count":864, + "type":"VEC2" + }, + { + "bufferView":105, + "componentType":5126, + "count":864, + "max":[ + 5.324397087097168, + 2.3087825775146484, + 1.519528865814209 + ], + "min":[ + -5.324397087097168, + -2.3087825775146484, + -1.519528865814209 + ], + "type":"VEC3" + }, + { + "bufferView":106, + "componentType":5126, + "count":864, + "type":"VEC3" + }, + { + "bufferView":107, + "componentType":5126, + "count":864, + "type":"VEC2" + }, + { + "bufferView":108, + "componentType":5126, + "count":864, + "max":[ + 5.324397087097168, + 2.3087825775146484, + 1.519528865814209 + ], + "min":[ + -5.324397087097168, + -2.3087825775146484, + -1.519528865814209 + ], + "type":"VEC3" + }, + { + "bufferView":109, + "componentType":5126, + "count":864, + "type":"VEC3" + }, + { + "bufferView":110, + "componentType":5126, + "count":864, + "type":"VEC2" + }, + { + "bufferView":111, + "componentType":5126, + "count":864, + "max":[ + 5.324397087097168, + 2.3087825775146484, + 1.519528865814209 + ], + "min":[ + -5.324397087097168, + -2.3087825775146484, + -1.519528865814209 + ], + "type":"VEC3" + }, + { + "bufferView":112, + "componentType":5126, + "count":864, + "type":"VEC3" + }, + { + "bufferView":113, + "componentType":5126, + "count":864, + "type":"VEC2" + }, + { + "bufferView":114, + "componentType":5126, + "count":864, + "max":[ + 5.324397087097168, + 2.3087825775146484, + 1.519528865814209 + ], + "min":[ + -5.324397087097168, + -2.3087825775146484, + -1.519528865814209 + ], + "type":"VEC3" + }, + { + "bufferView":115, + "componentType":5126, + "count":864, + "type":"VEC3" + }, + { + "bufferView":116, + "componentType":5126, + "count":864, + "type":"VEC2" + }, + { + "bufferView":117, + "componentType":5126, + "count":864, + "max":[ + 5.324397087097168, + 2.3087825775146484, + 1.519528865814209 + ], + "min":[ + -5.324397087097168, + -2.3087825775146484, + -1.519528865814209 + ], + "type":"VEC3" + }, + { + "bufferView":118, + "componentType":5126, + "count":864, + "type":"VEC3" + }, + { + "bufferView":119, + "componentType":5126, + "count":864, + "type":"VEC2" + }, + { + "bufferView":120, + "componentType":5126, + "count":864, + "max":[ + 5.324397087097168, + 2.3087825775146484, + 1.519528865814209 + ], + "min":[ + -5.324397087097168, + -2.3087825775146484, + -1.519528865814209 + ], + "type":"VEC3" + }, + { + "bufferView":121, + "componentType":5126, + "count":864, + "type":"VEC3" + }, + { + "bufferView":122, + "componentType":5126, + "count":864, + "type":"VEC2" + }, + { + "bufferView":123, + "componentType":5126, + "count":864, + "max":[ + 5.324397087097168, + 2.3087825775146484, + 1.519528865814209 + ], + "min":[ + -5.324397087097168, + -2.3087825775146484, + -1.519528865814209 + ], + "type":"VEC3" + }, + { + "bufferView":124, + "componentType":5126, + "count":864, + "type":"VEC3" + }, + { + "bufferView":125, + "componentType":5126, + "count":864, + "type":"VEC2" + }, + { + "bufferView":126, + "componentType":5126, + "count":864, + "max":[ + 5.324397087097168, + 2.3087825775146484, + 1.519528865814209 + ], + "min":[ + -5.324397087097168, + -2.3087825775146484, + -1.519528865814209 + ], + "type":"VEC3" + }, + { + "bufferView":127, + "componentType":5126, + "count":864, + "type":"VEC3" + }, + { + "bufferView":128, + "componentType":5126, + "count":864, + "type":"VEC2" + }, + { + "bufferView":129, + "componentType":5126, + "count":864, + "max":[ + 5.324397087097168, + 2.3087825775146484, + 1.519528865814209 + ], + "min":[ + -5.324397087097168, + -2.3087825775146484, + -1.519528865814209 + ], + "type":"VEC3" + }, + { + "bufferView":130, + "componentType":5126, + "count":864, + "type":"VEC3" + }, + { + "bufferView":131, + "componentType":5126, + "count":864, + "type":"VEC2" + }, + { + "bufferView":132, + "componentType":5126, + "count":864, + "max":[ + 5.324397087097168, + 2.3087825775146484, + 1.519528865814209 + ], + "min":[ + -5.324397087097168, + -2.3087825775146484, + -1.519528865814209 + ], + "type":"VEC3" + }, + { + "bufferView":133, + "componentType":5126, + "count":864, + "type":"VEC3" + }, + { + "bufferView":134, + "componentType":5126, + "count":864, + "type":"VEC2" + }, + { + "bufferView":135, + "componentType":5126, + "count":864, + "max":[ + 5.324397087097168, + 2.3087825775146484, + 1.519528865814209 + ], + "min":[ + -5.324397087097168, + -2.3087825775146484, + -1.519528865814209 + ], + "type":"VEC3" + }, + { + "bufferView":136, + "componentType":5126, + "count":864, + "type":"VEC3" + }, + { + "bufferView":137, + "componentType":5126, + "count":864, + "type":"VEC2" + }, + { + "bufferView":138, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":139, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":140, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":141, + "componentType":5123, + "count":1380, + "type":"SCALAR" + }, + { + "bufferView":142, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":143, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":144, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":145, + "componentType":5123, + "count":159, + "type":"SCALAR" + }, + { + "bufferView":146, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":147, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":148, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":149, + "componentType":5123, + "count":681, + "type":"SCALAR" + }, + { + "bufferView":150, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":151, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":152, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":153, + "componentType":5123, + "count":15510, + "type":"SCALAR" + }, + { + "bufferView":154, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":155, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":156, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":157, + "componentType":5123, + "count":159, + "type":"SCALAR" + }, + { + "bufferView":158, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":159, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":160, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":161, + "componentType":5123, + "count":681, + "type":"SCALAR" + }, + { + "bufferView":162, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":163, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":164, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":165, + "componentType":5123, + "count":4596, + "type":"SCALAR" + }, + { + "bufferView":166, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":167, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":168, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":169, + "componentType":5123, + "count":612, + "type":"SCALAR" + }, + { + "bufferView":170, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":171, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":172, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":173, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":174, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":175, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":176, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":177, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":178, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":179, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":180, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":181, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":182, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":183, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":184, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":185, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":186, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":187, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":188, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":189, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":190, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":191, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":192, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":193, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":194, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":195, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":196, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":197, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":198, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":199, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":200, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":201, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":202, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":203, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":204, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":205, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":206, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":207, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":208, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":209, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":210, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":211, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":212, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":213, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":214, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":215, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":216, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":217, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":218, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":219, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":220, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":221, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":222, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":223, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":224, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":225, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":226, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":227, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":228, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":229, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":230, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":231, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":232, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":233, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":234, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":235, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":236, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":237, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":238, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":239, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":240, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":241, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":242, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":243, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":244, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":245, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":246, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":247, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":248, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":249, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":250, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":251, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":252, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":253, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":254, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":255, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":256, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":257, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":258, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":259, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":260, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":261, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":262, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":263, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":264, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":265, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":266, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":267, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":268, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":269, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":270, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":271, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":272, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":273, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":274, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":275, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":276, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":277, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":278, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":279, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":280, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":281, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":282, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":283, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":284, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":285, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":286, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":287, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":288, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":289, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":290, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":291, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":292, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":293, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":294, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":295, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":296, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":297, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":298, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":299, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":300, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":301, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":302, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":303, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":304, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":305, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":306, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":307, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":308, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":309, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":310, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":311, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":312, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":313, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":314, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":315, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":316, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":317, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":318, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":319, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":320, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":321, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":322, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":323, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":324, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":325, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":326, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":327, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":328, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":329, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":330, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":331, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":332, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":333, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":334, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":335, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":336, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":337, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":338, + "componentType":5126, + "count":24, + "max":[ + 12.444540977478027, + 7.253273963928223, + 65.18238830566406 + ], + "min":[ + -13.598156929016113, + 3.870244026184082, + 50.95979309082031 + ], + "type":"VEC3" + }, + { + "bufferView":339, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":340, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":341, + "componentType":5123, + "count":108, + "type":"SCALAR" + }, + { + "bufferView":342, + "componentType":5126, + "count":24, + "max":[ + 65.37442016601562, + -3.7835493087768555, + 10.754287719726562 + ], + "min":[ + -64.29560852050781, + -7.0711469650268555, + -51.86253356933594 + ], + "type":"VEC3" + }, + { + "bufferView":343, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":344, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":345, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":346, + "componentType":5126, + "count":56, + "max":[ + 5.879171848297119, + 1.5159540176391602, + 2.653949737548828 + ], + "min":[ + -9.041637420654297, + -15.75424861907959, + -12.266822814941406 + ], + "type":"VEC3" + }, + { + "bufferView":347, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":348, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":349, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":350, + "componentType":5126, + "count":264, + "max":[ + 21.279563903808594, + 7.7294511795043945, + 43.91426086425781 + ], + "min":[ + -22.23304557800293, + 2.290127754211426, + -105.47525787353516 + ], + "type":"VEC3" + }, + { + "bufferView":351, + "componentType":5126, + "count":264, + "type":"VEC3" + }, + { + "bufferView":352, + "componentType":5126, + "count":264, + "type":"VEC2" + }, + { + "bufferView":353, + "componentType":5123, + "count":1572, + "type":"SCALAR" + }, + { + "bufferView":354, + "componentType":5126, + "count":359, + "max":[ + 100.9964370727539, + 4.7365617752075195, + 81.60847473144531 + ], + "min":[ + -101.9842758178711, + -39.21023941040039, + -121.37224578857422 + ], + "type":"VEC3" + }, + { + "bufferView":355, + "componentType":5126, + "count":359, + "type":"VEC3" + }, + { + "bufferView":356, + "componentType":5126, + "count":359, + "type":"VEC2" + }, + { + "bufferView":357, + "componentType":5123, + "count":2154, + "type":"SCALAR" + }, + { + "bufferView":358, + "componentType":5126, + "count":320, + "max":[ + 33.61516571044922, + 5.967949867248535, + 81.56056213378906 + ], + "min":[ + -34.77033996582031, + 1.3444490432739258, + 22.772964477539062 + ], + "type":"VEC3" + }, + { + "bufferView":359, + "componentType":5126, + "count":320, + "type":"VEC3" + }, + { + "bufferView":360, + "componentType":5126, + "count":320, + "type":"VEC2" + }, + { + "bufferView":361, + "componentType":5123, + "count":1908, + "type":"SCALAR" + }, + { + "bufferView":362, + "componentType":5126, + "count":24, + "max":[ + 12.444540977478027, + 7.253273963928223, + 65.18238830566406 + ], + "min":[ + -13.598156929016113, + 3.870244026184082, + 50.95979309082031 + ], + "type":"VEC3" + }, + { + "bufferView":363, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":364, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":365, + "componentType":5126, + "count":24, + "max":[ + 65.37442016601562, + -3.7835493087768555, + 10.754287719726562 + ], + "min":[ + -64.29560852050781, + -7.0711469650268555, + -51.86253356933594 + ], + "type":"VEC3" + }, + { + "bufferView":366, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":367, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":368, + "componentType":5126, + "count":56, + "max":[ + 5.879171848297119, + 1.5159540176391602, + 2.653949737548828 + ], + "min":[ + -9.041637420654297, + -15.75424861907959, + -12.266822814941406 + ], + "type":"VEC3" + }, + { + "bufferView":369, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":370, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":371, + "componentType":5126, + "count":264, + "max":[ + 21.279563903808594, + 7.7294511795043945, + 43.91426086425781 + ], + "min":[ + -22.23304557800293, + 2.290127754211426, + -105.47525787353516 + ], + "type":"VEC3" + }, + { + "bufferView":372, + "componentType":5126, + "count":264, + "type":"VEC3" + }, + { + "bufferView":373, + "componentType":5126, + "count":264, + "type":"VEC2" + }, + { + "bufferView":374, + "componentType":5126, + "count":359, + "max":[ + 100.9964370727539, + 4.7365617752075195, + 81.60847473144531 + ], + "min":[ + -101.9842758178711, + -39.21023941040039, + -121.37224578857422 + ], + "type":"VEC3" + }, + { + "bufferView":375, + "componentType":5126, + "count":359, + "type":"VEC3" + }, + { + "bufferView":376, + "componentType":5126, + "count":359, + "type":"VEC2" + }, + { + "bufferView":377, + "componentType":5126, + "count":320, + "max":[ + 33.61516571044922, + 5.967949867248535, + 81.56056213378906 + ], + "min":[ + -34.77033996582031, + 1.3444490432739258, + 22.772964477539062 + ], + "type":"VEC3" + }, + { + "bufferView":378, + "componentType":5126, + "count":320, + "type":"VEC3" + }, + { + "bufferView":379, + "componentType":5126, + "count":320, + "type":"VEC2" + }, + { + "bufferView":380, + "componentType":5126, + "count":473, + "max":[ + 78.80011749267578, + 8.680179595947266, + 117.14396667480469 + ], + "min":[ + -93.22540283203125, + -58.162437438964844, + -86.03450012207031 + ], + "type":"VEC3" + }, + { + "bufferView":381, + "componentType":5126, + "count":473, + "type":"VEC3" + }, + { + "bufferView":382, + "componentType":5126, + "count":473, + "type":"VEC2" + }, + { + "bufferView":383, + "componentType":5123, + "count":2397, + "type":"SCALAR" + }, + { + "bufferView":384, + "componentType":5126, + "count":5454, + "max":[ + 35.53435134887695, + 11.987060546875, + 5.669225692749023 + ], + "min":[ + -47.13536834716797, + -8.277740478515625, + -51.003562927246094 + ], + "type":"VEC3" + }, + { + "bufferView":385, + "componentType":5126, + "count":5454, + "type":"VEC3" + }, + { + "bufferView":386, + "componentType":5126, + "count":5454, + "type":"VEC2" + }, + { + "bufferView":387, + "componentType":5123, + "count":32664, + "type":"SCALAR" + }, + { + "bufferView":388, + "componentType":5126, + "count":193, + "max":[ + 51.37074279785156, + 1.2318801879882812, + 98.74161529541016 + ], + "min":[ + -64.09366607666016, + -54.08161926269531, + 22.253211975097656 + ], + "type":"VEC3" + }, + { + "bufferView":389, + "componentType":5126, + "count":193, + "type":"VEC3" + }, + { + "bufferView":390, + "componentType":5126, + "count":193, + "type":"VEC2" + }, + { + "bufferView":391, + "componentType":5123, + "count":717, + "type":"SCALAR" + }, + { + "bufferView":392, + "componentType":5126, + "count":473, + "max":[ + 78.80011749267578, + 8.680179595947266, + 117.14396667480469 + ], + "min":[ + -93.22540283203125, + -58.162437438964844, + -86.03450012207031 + ], + "type":"VEC3" + }, + { + "bufferView":393, + "componentType":5126, + "count":473, + "type":"VEC3" + }, + { + "bufferView":394, + "componentType":5126, + "count":473, + "type":"VEC2" + }, + { + "bufferView":395, + "componentType":5126, + "count":5454, + "max":[ + 35.53435134887695, + 11.987060546875, + 5.669225692749023 + ], + "min":[ + -47.13536834716797, + -8.277740478515625, + -51.003562927246094 + ], + "type":"VEC3" + }, + { + "bufferView":396, + "componentType":5126, + "count":5454, + "type":"VEC3" + }, + { + "bufferView":397, + "componentType":5126, + "count":5454, + "type":"VEC2" + }, + { + "bufferView":398, + "componentType":5126, + "count":193, + "max":[ + 51.37074279785156, + 1.2318801879882812, + 98.74161529541016 + ], + "min":[ + -64.09366607666016, + -54.08161926269531, + 22.253211975097656 + ], + "type":"VEC3" + }, + { + "bufferView":399, + "componentType":5126, + "count":193, + "type":"VEC3" + }, + { + "bufferView":400, + "componentType":5126, + "count":193, + "type":"VEC2" + }, + { + "bufferView":401, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":402, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":403, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":404, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":405, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":406, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":407, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":408, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":409, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":410, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":411, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":412, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":413, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":414, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":415, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":416, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":417, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":418, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":419, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":420, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":421, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":422, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":423, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":424, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":425, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":426, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":427, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":428, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":429, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":430, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":431, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":432, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":433, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":434, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":435, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":436, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":437, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":438, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":439, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":440, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":441, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":442, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":443, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":444, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":445, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":446, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":447, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":448, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":449, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":450, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":451, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":452, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":453, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":454, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":455, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":456, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":457, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":458, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":459, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":460, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":461, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":462, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":463, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":464, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":465, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":466, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":467, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":468, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":469, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":470, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":471, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":472, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":473, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":474, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":475, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":476, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":477, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":478, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":479, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":480, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":481, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":482, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":483, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":484, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":485, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":486, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":487, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":488, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":489, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":490, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":491, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":492, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":493, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":494, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":495, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":496, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":497, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":498, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":499, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":500, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":501, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":502, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":503, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":504, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":505, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":506, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":507, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":508, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":509, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":510, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":511, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":512, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":513, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":514, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":515, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":516, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":517, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":518, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":519, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":520, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":521, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":522, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":523, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":524, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":525, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":526, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":527, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":528, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":529, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":530, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":531, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":532, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":533, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":534, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":535, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":536, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":537, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":538, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":539, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":540, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":541, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":542, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":543, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":544, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":545, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":546, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":547, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":548, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":549, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":550, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":551, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":552, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":553, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":554, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":555, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":556, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":557, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":558, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":559, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":560, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":561, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":562, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":563, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":564, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":565, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":566, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":567, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":568, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":569, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":570, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":571, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":572, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":573, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":574, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":575, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":576, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":577, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":578, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":579, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":580, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":581, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":582, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":583, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":584, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":585, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":586, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":587, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":588, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":589, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":590, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":591, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":592, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":593, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":594, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":595, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":596, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":597, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":598, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":599, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":600, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":601, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":602, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":603, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":604, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":605, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":606, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":607, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":608, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":609, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":610, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":611, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":612, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":613, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":614, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":615, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":616, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":617, + "componentType":5126, + "count":521, + "max":[ + 67.97317504882812, + 80.05093383789062, + -45.184356689453125 + ], + "min":[ + -67.94009399414062, + -55.79782485961914, + -52.433082580566406 + ], + "type":"VEC3" + }, + { + "bufferView":618, + "componentType":5126, + "count":521, + "type":"VEC3" + }, + { + "bufferView":619, + "componentType":5126, + "count":521, + "type":"VEC2" + }, + { + "bufferView":620, + "componentType":5126, + "count":107, + "max":[ + 0.016816727817058563, + -25.9612979888916, + -45.18525314331055 + ], + "min":[ + 0.016264237463474274, + -25.961307525634766, + -45.185672760009766 + ], + "type":"VEC3" + }, + { + "bufferView":621, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":622, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":623, + "componentType":5126, + "count":345, + "max":[ + 0.016902124509215355, + -25.961288452148438, + -45.18513107299805 + ], + "min":[ + 0.016177253797650337, + -25.961307525634766, + -45.185855865478516 + ], + "type":"VEC3" + }, + { + "bufferView":624, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":625, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":626, + "componentType":5126, + "count":5197, + "max":[ + 72.50361633300781, + 84.5791015625, + 36.35506820678711 + ], + "min":[ + -72.47053527832031, + -60.32619094848633, + -45.18349075317383 + ], + "type":"VEC3" + }, + { + "bufferView":627, + "componentType":5126, + "count":5197, + "type":"VEC3" + }, + { + "bufferView":628, + "componentType":5126, + "count":5197, + "type":"VEC2" + }, + { + "bufferView":629, + "componentType":5126, + "count":118, + "max":[ + 0.016816727817058563, + -25.961450576782227, + -45.18330001831055 + ], + "min":[ + 0.016264237463474274, + -25.96146011352539, + -45.183719635009766 + ], + "type":"VEC3" + }, + { + "bufferView":630, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":631, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":632, + "componentType":5126, + "count":316, + "max":[ + 0.016902124509215355, + -25.961441040039062, + -45.18317794799805 + ], + "min":[ + 0.016177253797650337, + -25.96146011352539, + -45.183902740478516 + ], + "type":"VEC3" + }, + { + "bufferView":633, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":634, + "componentType":5126, + "count":316, + "type":"VEC2" + }, + { + "bufferView":635, + "componentType":5126, + "count":876, + "max":[ + 4.5469818115234375, + -43.1470832824707, + -6.571315765380859 + ], + "min":[ + -4.51390266418457, + -52.203617095947266, + -26.862079620361328 + ], + "type":"VEC3" + }, + { + "bufferView":636, + "componentType":5126, + "count":876, + "type":"VEC3" + }, + { + "bufferView":637, + "componentType":5126, + "count":876, + "type":"VEC2" + }, + { + "bufferView":638, + "componentType":5126, + "count":208, + "max":[ + 47.31435775756836, + 59.40180587768555, + 18.241443634033203 + ], + "min":[ + -47.28127670288086, + -35.14889907836914, + -5.316871643066406 + ], + "type":"VEC3" + }, + { + "bufferView":639, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":640, + "componentType":5126, + "count":208, + "type":"VEC2" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":16320, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":16320, + "byteOffset":16320, + "target":34962 + }, + { + "buffer":0, + "byteLength":10880, + "byteOffset":32640, + "target":34962 + }, + { + "buffer":0, + "byteLength":5952, + "byteOffset":43520, + "target":34963 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":49472, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":59840, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":70208, + "target":34962 + }, + { + "buffer":0, + "byteLength":3168, + "byteOffset":77120, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":80288, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":80336, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":80384, + "target":34962 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":80416, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":80428, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":80716, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":81004, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":81196, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":81268, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":81556, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":81844, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":82036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":82324, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":82612, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":82804, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83092, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":83380, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83572, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83860, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":84148, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84340, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84628, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":84916, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":85108, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":85396, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":85684, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":85876, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":86164, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":86452, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":86644, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":86932, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":87220, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":87412, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":87700, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":87988, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88180, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88468, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":88756, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88948, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":89236, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":89524, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":89716, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":90292, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":90868, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":91252, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":91444, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":91732, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":92020, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":92212, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":92500, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":92788, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":92980, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":93268, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":93556, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":93748, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":94036, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":94324, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":94516, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":94804, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":95092, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":95284, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":95572, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":95860, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":96052, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":96340, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":96628, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":96820, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":97108, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":97396, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":97588, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":97876, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":98164, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":98356, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":98644, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":98932, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":99124, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":99412, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":99700, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":99892, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100180, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":100468, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100660, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100948, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":101236, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":101428, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":101716, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":102004, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":102196, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":102484, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":102772, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":102964, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":113332, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":123700, + "target":34962 + }, + { + "buffer":0, + "byteLength":2568, + "byteOffset":130612, + "target":34963 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":133180, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":143548, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":153916, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":160828, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":171196, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":181564, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":188476, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":198844, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":209212, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":216124, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":226492, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":236860, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":243772, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":254140, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":264508, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":271420, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":281788, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":292156, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":299068, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":309436, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":319804, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":326716, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":337084, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":347452, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":354364, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":364732, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":375100, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":382012, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":392380, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":402748, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":409660, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":420028, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":430396, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":437308, + "target":34962 + }, + { + "buffer":0, + "byteLength":10368, + "byteOffset":447676, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":458044, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":464956, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":471208, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":477460, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":481628, + "target":34963 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":484388, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":485672, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":486956, + "target":34962 + }, + { + "buffer":0, + "byteLength":318, + "byteOffset":487812, + "target":34963 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":488132, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":492272, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":496412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1362, + "byteOffset":499172, + "target":34963 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":500536, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":562900, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":625264, + "target":34962 + }, + { + "buffer":0, + "byteLength":31020, + "byteOffset":666840, + "target":34963 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":697860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":699276, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":700692, + "target":34962 + }, + { + "buffer":0, + "byteLength":318, + "byteOffset":701636, + "target":34963 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":701956, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":705748, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":709540, + "target":34962 + }, + { + "buffer":0, + "byteLength":1362, + "byteOffset":712068, + "target":34963 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":713432, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":723944, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":734456, + "target":34962 + }, + { + "buffer":0, + "byteLength":9192, + "byteOffset":741464, + "target":34963 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":750656, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":753152, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":755648, + "target":34962 + }, + { + "buffer":0, + "byteLength":1224, + "byteOffset":757312, + "target":34963 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":758536, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":764788, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":771040, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":775208, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":776492, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":777776, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":778632, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":782772, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":786912, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":789672, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":852036, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":914400, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":955976, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":957392, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":958808, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":959752, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":963544, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":967336, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":969864, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":980376, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":990888, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":997896, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":1000392, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":1002888, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":1004552, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":1010804, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":1017056, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":1021224, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":1022508, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":1023792, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":1024648, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":1028788, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":1032928, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":1035688, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":1098052, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":1160416, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":1201992, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":1203408, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":1204824, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":1205768, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":1209560, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":1213352, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":1215880, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":1226392, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":1236904, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":1243912, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":1246408, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":1248904, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":1250568, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":1256820, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":1263072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":1267240, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":1268524, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":1269808, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":1270664, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":1274804, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":1278944, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":1281704, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":1344068, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":1406432, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":1448008, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":1449424, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":1450840, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":1451784, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":1455576, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":1459368, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":1461896, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":1472408, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":1482920, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":1489928, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":1492424, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":1494920, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":1496584, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":1502836, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":1509088, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":1513256, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":1514540, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":1515824, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":1516680, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":1520820, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":1524960, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":1527720, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":1590084, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":1652448, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":1694024, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":1695440, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":1696856, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":1697800, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":1701592, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":1705384, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":1707912, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":1718424, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":1728936, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":1735944, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":1738440, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":1740936, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":1742600, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":1748852, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":1755104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":1759272, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":1760556, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":1761840, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":1762696, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":1766836, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":1770976, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":1773736, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":1836100, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":1898464, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":1940040, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":1941456, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":1942872, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":1943816, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":1947608, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":1951400, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":1953928, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":1964440, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":1974952, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":1981960, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":1984456, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":1986952, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":1988616, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":1994868, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":2001120, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":2005288, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":2006572, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":2007856, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":2008712, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":2012852, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":2016992, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":2019752, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":2082116, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":2144480, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":2186056, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":2187472, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":2188888, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":2189832, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":2193624, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":2197416, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":2199944, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":2210456, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":2220968, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":2227976, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":2230472, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":2232968, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":2234632, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":2240884, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":2247136, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":2251304, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":2252588, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":2253872, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":2254728, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":2258868, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":2263008, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":2265768, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":2328132, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":2390496, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":2432072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":2433488, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":2434904, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":2435848, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":2439640, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":2443432, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":2445960, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":2456472, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":2466984, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":2473992, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":2476488, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":2478984, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2480648, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2480936, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":2481224, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":2481416, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2481632, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2481920, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":2482208, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":2482400, + "target":34963 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":2482472, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":2483144, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":2483816, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":2484264, + "target":34963 + }, + { + "buffer":0, + "byteLength":3168, + "byteOffset":2484912, + "target":34962 + }, + { + "buffer":0, + "byteLength":3168, + "byteOffset":2488080, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":2491248, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":2493360, + "target":34963 + }, + { + "buffer":0, + "byteLength":4308, + "byteOffset":2496504, + "target":34962 + }, + { + "buffer":0, + "byteLength":4308, + "byteOffset":2500812, + "target":34962 + }, + { + "buffer":0, + "byteLength":2872, + "byteOffset":2505120, + "target":34962 + }, + { + "buffer":0, + "byteLength":4308, + "byteOffset":2507992, + "target":34963 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":2512300, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":2516140, + "target":34962 + }, + { + "buffer":0, + "byteLength":2560, + "byteOffset":2519980, + "target":34962 + }, + { + "buffer":0, + "byteLength":3816, + "byteOffset":2522540, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2526356, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2526644, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":2526932, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2527124, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2527412, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":2527700, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":2527892, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":2528564, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":2529236, + "target":34962 + }, + { + "buffer":0, + "byteLength":3168, + "byteOffset":2529684, + "target":34962 + }, + { + "buffer":0, + "byteLength":3168, + "byteOffset":2532852, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":2536020, + "target":34962 + }, + { + "buffer":0, + "byteLength":4308, + "byteOffset":2538132, + "target":34962 + }, + { + "buffer":0, + "byteLength":4308, + "byteOffset":2542440, + "target":34962 + }, + { + "buffer":0, + "byteLength":2872, + "byteOffset":2546748, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":2549620, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":2553460, + "target":34962 + }, + { + "buffer":0, + "byteLength":2560, + "byteOffset":2557300, + "target":34962 + }, + { + "buffer":0, + "byteLength":5676, + "byteOffset":2559860, + "target":34962 + }, + { + "buffer":0, + "byteLength":5676, + "byteOffset":2565536, + "target":34962 + }, + { + "buffer":0, + "byteLength":3784, + "byteOffset":2571212, + "target":34962 + }, + { + "buffer":0, + "byteLength":4794, + "byteOffset":2574996, + "target":34963 + }, + { + "buffer":0, + "byteLength":65448, + "byteOffset":2579792, + "target":34962 + }, + { + "buffer":0, + "byteLength":65448, + "byteOffset":2645240, + "target":34962 + }, + { + "buffer":0, + "byteLength":43632, + "byteOffset":2710688, + "target":34962 + }, + { + "buffer":0, + "byteLength":65328, + "byteOffset":2754320, + "target":34963 + }, + { + "buffer":0, + "byteLength":2316, + "byteOffset":2819648, + "target":34962 + }, + { + "buffer":0, + "byteLength":2316, + "byteOffset":2821964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1544, + "byteOffset":2824280, + "target":34962 + }, + { + "buffer":0, + "byteLength":1434, + "byteOffset":2825824, + "target":34963 + }, + { + "buffer":0, + "byteLength":5676, + "byteOffset":2827260, + "target":34962 + }, + { + "buffer":0, + "byteLength":5676, + "byteOffset":2832936, + "target":34962 + }, + { + "buffer":0, + "byteLength":3784, + "byteOffset":2838612, + "target":34962 + }, + { + "buffer":0, + "byteLength":65448, + "byteOffset":2842396, + "target":34962 + }, + { + "buffer":0, + "byteLength":65448, + "byteOffset":2907844, + "target":34962 + }, + { + "buffer":0, + "byteLength":43632, + "byteOffset":2973292, + "target":34962 + }, + { + "buffer":0, + "byteLength":2316, + "byteOffset":3016924, + "target":34962 + }, + { + "buffer":0, + "byteLength":2316, + "byteOffset":3019240, + "target":34962 + }, + { + "buffer":0, + "byteLength":1544, + "byteOffset":3021556, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":3023100, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":3029352, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":3035604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":3039772, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":3041056, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":3042340, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":3043196, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":3047336, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":3051476, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":3054236, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":3116600, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":3178964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":3220540, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":3221956, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":3223372, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":3224316, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":3228108, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":3231900, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":3234428, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":3244940, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":3255452, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":3262460, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":3264956, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":3267452, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":3269116, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":3275368, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":3281620, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":3285788, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":3287072, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":3288356, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":3289212, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":3293352, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":3297492, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":3300252, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":3362616, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":3424980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":3466556, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":3467972, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":3469388, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":3470332, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":3474124, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":3477916, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":3480444, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":3490956, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":3501468, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":3508476, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":3510972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":3513468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":3515132, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":3521384, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":3527636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":3531804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":3533088, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":3534372, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":3535228, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":3539368, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":3543508, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":3546268, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":3608632, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":3670996, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":3712572, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":3713988, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":3715404, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":3716348, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":3720140, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":3723932, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":3726460, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":3736972, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":3747484, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":3754492, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":3756988, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":3759484, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":3761148, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":3767400, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":3773652, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":3777820, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":3779104, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":3780388, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":3781244, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":3785384, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":3789524, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":3792284, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":3854648, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":3917012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":3958588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":3960004, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":3961420, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":3962364, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":3966156, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":3969948, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":3972476, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":3982988, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":3993500, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":4000508, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":4003004, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":4005500, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":4007164, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":4013416, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":4019668, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":4023836, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":4025120, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":4026404, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":4027260, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":4031400, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":4035540, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":4038300, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":4100664, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":4163028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":4204604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":4206020, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":4207436, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":4208380, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":4212172, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":4215964, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":4218492, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":4229004, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":4239516, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":4246524, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":4249020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":4251516, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":4253180, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":4259432, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":4265684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":4269852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":4271136, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":4272420, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":4273276, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":4277416, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":4281556, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":4284316, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":4346680, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":4409044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":4450620, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":4452036, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":4453452, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":4454396, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":4458188, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":4461980, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":4464508, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":4475020, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":4485532, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":4492540, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":4495036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":4497532, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":4499196, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":4505448, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":4511700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":4515868, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":4517152, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":4518436, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":4519292, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":4523432, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":4527572, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":4530332, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":4592696, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":4655060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":4696636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":4698052, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":4699468, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":4700412, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":4704204, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":4707996, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":4710524, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":4721036, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":4731548, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":4738556, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":4741052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":4743548, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":4745212, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":4751464, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":4757716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":4761884, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":4763168, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":4764452, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":4765308, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":4769448, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":4773588, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":4776348, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":4838712, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":4901076, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":4942652, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":4944068, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":4945484, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":4946428, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":4950220, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":4954012, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":4956540, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":4967052, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":4977564, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":4984572, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":4987068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":4989564, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":4991228, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":4997480, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":5003732, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":5007900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":5009184, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":5010468, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":5011324, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":5015464, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":5019604, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":5022364, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":5084728, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":5147092, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":5188668, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":5190084, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":5191500, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":5192444, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":5196236, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":5200028, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":5202556, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":5213068, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":5223580, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":5230588, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":5233084, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":5235580, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":5237244, + "target":34962 + }, + { + "buffer":0, + "byteLength":6252, + "byteOffset":5243496, + "target":34962 + }, + { + "buffer":0, + "byteLength":4168, + "byteOffset":5249748, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":5253916, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":5255200, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":5256484, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":5257340, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":5261480, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":5265620, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":5268380, + "target":34962 + }, + { + "buffer":0, + "byteLength":62364, + "byteOffset":5330744, + "target":34962 + }, + { + "buffer":0, + "byteLength":41576, + "byteOffset":5393108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":5434684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":5436100, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":5437516, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":5438460, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":5442252, + "target":34962 + }, + { + "buffer":0, + "byteLength":2528, + "byteOffset":5446044, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":5448572, + "target":34962 + }, + { + "buffer":0, + "byteLength":10512, + "byteOffset":5459084, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":5469596, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":5476604, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":5479100, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":5481596, + "target":34962 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":5483260, + "uri":"ground_floor08.bin" + } + ] +} diff --git a/public/models/groundFloor/materials_Label.jpg b/public/models/groundFloor/materials_Label.jpg new file mode 100644 index 0000000..6c6af42 Binary files /dev/null and b/public/models/groundFloor/materials_Label.jpg differ diff --git a/public/models/hydrant.jpg b/public/models/hydrant.jpg new file mode 100644 index 0000000..9c5a4bc Binary files /dev/null and b/public/models/hydrant.jpg differ diff --git a/public/models/machineRoom.bin b/public/models/machineRoom.bin new file mode 100644 index 0000000..f19e883 Binary files /dev/null and b/public/models/machineRoom.bin differ diff --git a/public/models/machineRoom.gltf b/public/models/machineRoom.gltf new file mode 100644 index 0000000..656e4b5 --- /dev/null +++ b/public/models/machineRoom.gltf @@ -0,0 +1 @@ +{"asset":{"version":"2.0","generator":"babylon.js glTF exporter for 3dsmax 2018 v20210615.1"},"scene":0,"scenes":[{"nodes":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99]}],"nodes":[{"mesh":0,"translation":[7.08968353,0.0,3.55611348],"name":"cabinet-001"},{"mesh":1,"translation":[7.689683,0.0,3.55611348],"name":"aircondition-001"},{"mesh":2,"translation":[7.689683,0.0,0.791756868],"name":"aircondition-002"},{"mesh":3,"translation":[7.08968353,0.0,0.791756868],"name":"cabinet-011"},{"mesh":4,"translation":[7.689683,0.0,-1.77467191],"name":"aircondition-003"},{"mesh":5,"translation":[7.08968353,0.0,-1.77467191],"name":"cabinet-021"},{"mesh":6,"translation":[7.689683,0.0,-4.377678],"name":"aircondition-004"},{"mesh":7,"translation":[7.08968353,0.0,-4.377678],"name":"cabinet-031"},{"mesh":8,"translation":[-7.728669,-1.22070318E-07,-6.63402176],"rotation":[0.0,-1.0,0.0,7.54979E-08],"name":"electricBox-001"},{"mesh":9,"translation":[-6.96683741,-1.22070318E-07,-6.63402176],"rotation":[0.0,-1.0,0.0,7.54979E-08],"name":"electricBox-002"},{"mesh":10,"translation":[-6.205005,-1.22070318E-07,-6.63402176],"rotation":[0.0,-1.0,0.0,7.54979E-08],"name":"electricBox-003"},{"mesh":11,"translation":[-9.989664,0.5202129,-5.414471],"rotation":[0.0,0.7071068,0.0,0.7071067],"name":"hydrant-001"},{"mesh":11,"translation":[9.989649,0.5202129,-5.414471],"rotation":[0.0,-0.70710665,0.0,0.7071069],"name":"hydrant-002"},{"mesh":12,"translation":[-0.62944293,0.0,-0.892856956],"name":"floor02"},{"mesh":13,"translation":[8.260764,0.0,-7.035022],"name":"door-002"},{"mesh":14,"translation":[-9.26965,0.0,-7.035022],"name":"door-001"},{"mesh":15,"translation":[-0.62944293,0.0,-0.892856956],"name":"floor01"},{"mesh":16,"translation":[1.19791508,0.0,-1.19569242],"rotation":[0.0,7.54979E-08,1.0,0.0],"scale":[1.0,-1.0,1.0],"name":"wall-l"},{"mesh":17,"translation":[1.19791508,0.0,-1.19569242],"rotation":[0.0,7.54979E-08,1.0,0.0],"scale":[1.0,-1.0,1.0],"name":"wall-f"},{"mesh":18,"translation":[1.19791508,0.0,-1.19569242],"rotation":[0.0,7.54979E-08,1.0,0.0],"scale":[1.0,-1.0,1.0],"name":"wall-t"},{"mesh":19,"translation":[6.48968363,0.0,3.55611372],"name":"cabinet-002"},{"mesh":20,"translation":[5.88968325,0.0,3.556114],"name":"cabinet-003"},{"mesh":21,"translation":[5.28968334,0.0,3.5561142],"name":"cabinet-004"},{"mesh":22,"translation":[4.68968344,0.0,3.55611444],"name":"cabinet-005"},{"mesh":23,"translation":[4.08968353,0.0,3.55611467],"name":"cabinet-006"},{"mesh":24,"translation":[3.48968339,0.0,3.556115],"name":"cabinet-007"},{"mesh":25,"translation":[2.88968325,0.0,3.55611515],"name":"cabinet-008"},{"mesh":26,"translation":[2.289683,0.0,3.55611539],"name":"cabinet-009"},{"mesh":27,"translation":[1.6896832,0.0,3.55611563],"name":"cabinet-010"},{"mesh":28,"translation":[6.48968363,0.0,0.791756868],"name":"cabinet-012"},{"mesh":29,"translation":[5.88968325,0.0,0.791756868],"name":"cabinet-013"},{"mesh":30,"translation":[5.28968334,0.0,0.791756868],"name":"cabinet-014"},{"mesh":31,"translation":[4.68968344,0.0,0.791756868],"name":"cabinet-015"},{"mesh":32,"translation":[4.08968353,0.0,0.791756868],"name":"cabinet-016"},{"mesh":33,"translation":[3.48968339,0.0,0.791756868],"name":"cabinet-017"},{"mesh":34,"translation":[2.88968325,0.0,0.791756868],"name":"cabinet-018"},{"mesh":35,"translation":[2.289683,0.0,0.791756868],"name":"cabinet-019"},{"mesh":36,"translation":[1.6896832,0.0,0.791756868],"name":"cabinet-020"},{"mesh":37,"translation":[6.489684,0.0,-1.77467179],"name":"cabinet-022"},{"mesh":38,"translation":[5.889684,0.0,-1.77467167],"name":"cabinet-023"},{"mesh":39,"translation":[5.289685,0.0,-1.77467155],"name":"cabinet-024"},{"mesh":40,"translation":[4.68968534,0.0,-1.77467144],"name":"cabinet-025"},{"mesh":41,"translation":[4.089686,0.0,-1.77467132],"name":"cabinet-026"},{"mesh":42,"translation":[3.48968625,0.0,-1.7746712],"name":"cabinet-027"},{"mesh":43,"translation":[2.88968658,0.0,-1.77467108],"name":"cabinet-028"},{"mesh":44,"translation":[2.28968716,0.0,-1.774671],"name":"cabinet-029"},{"mesh":45,"translation":[1.68968761,0.0,-1.77467084],"name":"cabinet-030"},{"mesh":46,"translation":[6.489683,0.0,-4.377678],"name":"cabinet-032"},{"mesh":47,"translation":[5.889683,0.0,-4.377678],"name":"cabinet-033"},{"mesh":48,"translation":[5.289683,0.0,-4.377678],"name":"cabinet-034"},{"mesh":49,"translation":[4.689683,0.0,-4.377678],"name":"cabinet-035"},{"mesh":50,"translation":[4.08968258,0.0,-4.377678],"name":"cabinet-036"},{"mesh":51,"translation":[3.48968267,0.0,-4.377678],"name":"cabinet-037"},{"mesh":52,"translation":[2.88968277,0.0,-4.377678],"name":"cabinet-038"},{"mesh":53,"translation":[2.28968263,0.0,-4.377678],"name":"cabinet-039"},{"mesh":54,"translation":[1.68968272,0.0,-4.377678],"name":"cabinet-040"},{"mesh":55,"translation":[-1.71594632,0.0,3.55611444],"name":"aircondition-005"},{"mesh":56,"translation":[-1.71594632,0.0,0.7917578],"name":"aircondition-006"},{"mesh":57,"translation":[-1.71594632,0.0,-1.774671],"name":"aircondition-007"},{"mesh":58,"translation":[-1.71594632,0.0,-4.377677],"name":"aircondition-008"},{"mesh":59,"translation":[-2.31594586,0.0,3.55611444],"name":"cabinet-041"},{"mesh":60,"translation":[-2.915946,0.0,3.55611467],"name":"cabinet-042"},{"mesh":61,"translation":[-3.515946,0.0,3.556115],"name":"cabinet-043"},{"mesh":62,"translation":[-4.115946,0.0,3.55611515],"name":"cabinet-044"},{"mesh":63,"translation":[-4.715946,0.0,3.55611539],"name":"cabinet-045"},{"mesh":64,"translation":[-5.315946,0.0,3.55611563],"name":"cabinet-046"},{"mesh":65,"translation":[-5.915946,0.0,3.55611587],"name":"cabinet-047"},{"mesh":66,"translation":[-6.515946,0.0,3.556116],"name":"cabinet-048"},{"mesh":67,"translation":[-7.11594629,0.0,3.55611634],"name":"cabinet-049"},{"mesh":68,"translation":[-7.715946,0.0,3.55611658],"name":"cabinet-050"},{"mesh":69,"translation":[-2.31594586,0.0,0.7917578],"name":"cabinet-051"},{"mesh":70,"translation":[-2.915946,0.0,0.7917578],"name":"cabinet-052"},{"mesh":71,"translation":[-3.515946,0.0,0.7917578],"name":"cabinet-053"},{"mesh":72,"translation":[-4.115946,0.0,0.7917578],"name":"cabinet-054"},{"mesh":73,"translation":[-4.715946,0.0,0.7917578],"name":"cabinet-055"},{"mesh":74,"translation":[-5.315946,0.0,0.7917578],"name":"cabinet-056"},{"mesh":75,"translation":[-5.915946,0.0,0.7917578],"name":"cabinet-057"},{"mesh":76,"translation":[-6.515946,0.0,0.7917578],"name":"cabinet-058"},{"mesh":77,"translation":[-7.11594629,0.0,0.7917578],"name":"cabinet-059"},{"mesh":78,"translation":[-7.715946,0.0,0.7917578],"name":"cabinet-060"},{"mesh":79,"translation":[-2.31594586,0.0,-1.774671],"name":"cabinet-061"},{"mesh":80,"translation":[-2.91594553,0.0,-1.77467084],"name":"cabinet-062"},{"mesh":81,"translation":[-3.515945,0.0,-1.77467072],"name":"cabinet-063"},{"mesh":82,"translation":[-4.11594439,0.0,-1.7746706],"name":"cabinet-064"},{"mesh":83,"translation":[-4.71594429,0.0,-1.77467048],"name":"cabinet-065"},{"mesh":84,"translation":[-5.31594372,0.0,-1.77467036],"name":"cabinet-066"},{"mesh":85,"translation":[-5.915943,0.0,-1.77467024],"name":"cabinet-067"},{"mesh":86,"translation":[-6.51594257,0.0,-1.77467012],"name":"cabinet-068"},{"mesh":87,"translation":[-7.115942,0.0,-1.77467],"name":"cabinet-069"},{"mesh":88,"translation":[-7.715942,0.0,-1.77466989],"name":"cabinet-070"},{"mesh":89,"translation":[-2.31594586,0.0,-4.377677],"name":"cabinet-071"},{"mesh":90,"translation":[-2.91594648,0.0,-4.377677],"name":"cabinet-072"},{"mesh":91,"translation":[-3.51594639,0.0,-4.377677],"name":"cabinet-073"},{"mesh":92,"translation":[-4.11594629,0.0,-4.377677],"name":"cabinet-074"},{"mesh":93,"translation":[-4.71594667,0.0,-4.377677],"name":"cabinet-075"},{"mesh":94,"translation":[-5.31594658,0.0,-4.377677],"name":"cabinet-076"},{"mesh":95,"translation":[-5.91594648,0.0,-4.377677],"name":"cabinet-077"},{"mesh":96,"translation":[-6.51594639,0.0,-4.377677],"name":"cabinet-078"},{"mesh":97,"translation":[-7.115947,0.0,-4.377677],"name":"cabinet-079"},{"mesh":98,"translation":[-7.71594667,0.0,-4.377677],"name":"cabinet-080"}],"meshes":[{"primitives":[{"attributes":{"POSITION":1,"NORMAL":2,"TEXCOORD_0":3},"indices":0,"material":0}],"name":"cabinet-001"},{"primitives":[{"attributes":{"POSITION":5,"NORMAL":6,"TEXCOORD_0":7},"indices":4,"material":1}],"name":"aircondition-001"},{"primitives":[{"attributes":{"POSITION":9,"NORMAL":10,"TEXCOORD_0":11},"indices":8,"material":1}],"name":"aircondition-002"},{"primitives":[{"attributes":{"POSITION":13,"NORMAL":14,"TEXCOORD_0":15},"indices":12,"material":0}],"name":"cabinet-011"},{"primitives":[{"attributes":{"POSITION":17,"NORMAL":18,"TEXCOORD_0":19},"indices":16,"material":1}],"name":"aircondition-003"},{"primitives":[{"attributes":{"POSITION":21,"NORMAL":22,"TEXCOORD_0":23},"indices":20,"material":0}],"name":"cabinet-021"},{"primitives":[{"attributes":{"POSITION":25,"NORMAL":26,"TEXCOORD_0":27},"indices":24,"material":1}],"name":"aircondition-004"},{"primitives":[{"attributes":{"POSITION":29,"NORMAL":30,"TEXCOORD_0":31},"indices":28,"material":0}],"name":"cabinet-031"},{"primitives":[{"attributes":{"POSITION":33,"NORMAL":34,"TEXCOORD_0":35},"indices":32,"material":2}],"name":"electricBox-001"},{"primitives":[{"attributes":{"POSITION":37,"NORMAL":38,"TEXCOORD_0":39},"indices":36,"material":2}],"name":"electricBox-002"},{"primitives":[{"attributes":{"POSITION":41,"NORMAL":42,"TEXCOORD_0":43},"indices":40,"material":2}],"name":"electricBox-003"},{"primitives":[{"attributes":{"POSITION":45,"NORMAL":46,"TEXCOORD_0":47},"indices":44,"material":3}],"name":"hydrant-001"},{"primitives":[{"attributes":{"POSITION":49,"NORMAL":50,"TEXCOORD_0":51},"indices":48,"material":4}],"name":"floor02"},{"primitives":[{"attributes":{"POSITION":53,"NORMAL":54,"TEXCOORD_0":55},"indices":52,"material":5}],"name":"door-002"},{"primitives":[{"attributes":{"POSITION":57,"NORMAL":58,"TEXCOORD_0":59},"indices":56,"material":5}],"name":"door-001"},{"primitives":[{"attributes":{"POSITION":61,"NORMAL":62,"TEXCOORD_0":63},"indices":60,"material":6}],"name":"floor01"},{"primitives":[{"attributes":{"POSITION":65,"NORMAL":66},"indices":64,"material":7}],"name":"wall-l"},{"primitives":[{"attributes":{"POSITION":68,"NORMAL":69},"indices":67,"material":8}],"name":"wall-f"},{"primitives":[{"attributes":{"POSITION":71,"NORMAL":72},"indices":70,"material":9}],"name":"wall-t"},{"primitives":[{"attributes":{"POSITION":74,"NORMAL":75,"TEXCOORD_0":76},"indices":73,"material":0}],"name":"cabinet-002"},{"primitives":[{"attributes":{"POSITION":78,"NORMAL":79,"TEXCOORD_0":80},"indices":77,"material":0}],"name":"cabinet-003"},{"primitives":[{"attributes":{"POSITION":82,"NORMAL":83,"TEXCOORD_0":84},"indices":81,"material":0}],"name":"cabinet-004"},{"primitives":[{"attributes":{"POSITION":86,"NORMAL":87,"TEXCOORD_0":88},"indices":85,"material":0}],"name":"cabinet-005"},{"primitives":[{"attributes":{"POSITION":90,"NORMAL":91,"TEXCOORD_0":92},"indices":89,"material":0}],"name":"cabinet-006"},{"primitives":[{"attributes":{"POSITION":94,"NORMAL":95,"TEXCOORD_0":96},"indices":93,"material":0}],"name":"cabinet-007"},{"primitives":[{"attributes":{"POSITION":98,"NORMAL":99,"TEXCOORD_0":100},"indices":97,"material":0}],"name":"cabinet-008"},{"primitives":[{"attributes":{"POSITION":102,"NORMAL":103,"TEXCOORD_0":104},"indices":101,"material":0}],"name":"cabinet-009"},{"primitives":[{"attributes":{"POSITION":106,"NORMAL":107,"TEXCOORD_0":108},"indices":105,"material":0}],"name":"cabinet-010"},{"primitives":[{"attributes":{"POSITION":110,"NORMAL":111,"TEXCOORD_0":112},"indices":109,"material":0}],"name":"cabinet-012"},{"primitives":[{"attributes":{"POSITION":114,"NORMAL":115,"TEXCOORD_0":116},"indices":113,"material":0}],"name":"cabinet-013"},{"primitives":[{"attributes":{"POSITION":118,"NORMAL":119,"TEXCOORD_0":120},"indices":117,"material":0}],"name":"cabinet-014"},{"primitives":[{"attributes":{"POSITION":122,"NORMAL":123,"TEXCOORD_0":124},"indices":121,"material":0}],"name":"cabinet-015"},{"primitives":[{"attributes":{"POSITION":126,"NORMAL":127,"TEXCOORD_0":128},"indices":125,"material":0}],"name":"cabinet-016"},{"primitives":[{"attributes":{"POSITION":130,"NORMAL":131,"TEXCOORD_0":132},"indices":129,"material":0}],"name":"cabinet-017"},{"primitives":[{"attributes":{"POSITION":134,"NORMAL":135,"TEXCOORD_0":136},"indices":133,"material":0}],"name":"cabinet-018"},{"primitives":[{"attributes":{"POSITION":138,"NORMAL":139,"TEXCOORD_0":140},"indices":137,"material":0}],"name":"cabinet-019"},{"primitives":[{"attributes":{"POSITION":142,"NORMAL":143,"TEXCOORD_0":144},"indices":141,"material":0}],"name":"cabinet-020"},{"primitives":[{"attributes":{"POSITION":146,"NORMAL":147,"TEXCOORD_0":148},"indices":145,"material":0}],"name":"cabinet-022"},{"primitives":[{"attributes":{"POSITION":150,"NORMAL":151,"TEXCOORD_0":152},"indices":149,"material":0}],"name":"cabinet-023"},{"primitives":[{"attributes":{"POSITION":154,"NORMAL":155,"TEXCOORD_0":156},"indices":153,"material":0}],"name":"cabinet-024"},{"primitives":[{"attributes":{"POSITION":158,"NORMAL":159,"TEXCOORD_0":160},"indices":157,"material":0}],"name":"cabinet-025"},{"primitives":[{"attributes":{"POSITION":162,"NORMAL":163,"TEXCOORD_0":164},"indices":161,"material":0}],"name":"cabinet-026"},{"primitives":[{"attributes":{"POSITION":166,"NORMAL":167,"TEXCOORD_0":168},"indices":165,"material":0}],"name":"cabinet-027"},{"primitives":[{"attributes":{"POSITION":170,"NORMAL":171,"TEXCOORD_0":172},"indices":169,"material":0}],"name":"cabinet-028"},{"primitives":[{"attributes":{"POSITION":174,"NORMAL":175,"TEXCOORD_0":176},"indices":173,"material":0}],"name":"cabinet-029"},{"primitives":[{"attributes":{"POSITION":178,"NORMAL":179,"TEXCOORD_0":180},"indices":177,"material":0}],"name":"cabinet-030"},{"primitives":[{"attributes":{"POSITION":182,"NORMAL":183,"TEXCOORD_0":184},"indices":181,"material":0}],"name":"cabinet-032"},{"primitives":[{"attributes":{"POSITION":186,"NORMAL":187,"TEXCOORD_0":188},"indices":185,"material":0}],"name":"cabinet-033"},{"primitives":[{"attributes":{"POSITION":190,"NORMAL":191,"TEXCOORD_0":192},"indices":189,"material":0}],"name":"cabinet-034"},{"primitives":[{"attributes":{"POSITION":194,"NORMAL":195,"TEXCOORD_0":196},"indices":193,"material":0}],"name":"cabinet-035"},{"primitives":[{"attributes":{"POSITION":198,"NORMAL":199,"TEXCOORD_0":200},"indices":197,"material":0}],"name":"cabinet-036"},{"primitives":[{"attributes":{"POSITION":202,"NORMAL":203,"TEXCOORD_0":204},"indices":201,"material":0}],"name":"cabinet-037"},{"primitives":[{"attributes":{"POSITION":206,"NORMAL":207,"TEXCOORD_0":208},"indices":205,"material":0}],"name":"cabinet-038"},{"primitives":[{"attributes":{"POSITION":210,"NORMAL":211,"TEXCOORD_0":212},"indices":209,"material":0}],"name":"cabinet-039"},{"primitives":[{"attributes":{"POSITION":214,"NORMAL":215,"TEXCOORD_0":216},"indices":213,"material":0}],"name":"cabinet-040"},{"primitives":[{"attributes":{"POSITION":218,"NORMAL":219,"TEXCOORD_0":220},"indices":217,"material":1}],"name":"aircondition-005"},{"primitives":[{"attributes":{"POSITION":222,"NORMAL":223,"TEXCOORD_0":224},"indices":221,"material":1}],"name":"aircondition-006"},{"primitives":[{"attributes":{"POSITION":226,"NORMAL":227,"TEXCOORD_0":228},"indices":225,"material":1}],"name":"aircondition-007"},{"primitives":[{"attributes":{"POSITION":230,"NORMAL":231,"TEXCOORD_0":232},"indices":229,"material":1}],"name":"aircondition-008"},{"primitives":[{"attributes":{"POSITION":234,"NORMAL":235,"TEXCOORD_0":236},"indices":233,"material":0}],"name":"cabinet-041"},{"primitives":[{"attributes":{"POSITION":238,"NORMAL":239,"TEXCOORD_0":240},"indices":237,"material":0}],"name":"cabinet-042"},{"primitives":[{"attributes":{"POSITION":242,"NORMAL":243,"TEXCOORD_0":244},"indices":241,"material":0}],"name":"cabinet-043"},{"primitives":[{"attributes":{"POSITION":246,"NORMAL":247,"TEXCOORD_0":248},"indices":245,"material":0}],"name":"cabinet-044"},{"primitives":[{"attributes":{"POSITION":250,"NORMAL":251,"TEXCOORD_0":252},"indices":249,"material":0}],"name":"cabinet-045"},{"primitives":[{"attributes":{"POSITION":254,"NORMAL":255,"TEXCOORD_0":256},"indices":253,"material":0}],"name":"cabinet-046"},{"primitives":[{"attributes":{"POSITION":258,"NORMAL":259,"TEXCOORD_0":260},"indices":257,"material":0}],"name":"cabinet-047"},{"primitives":[{"attributes":{"POSITION":262,"NORMAL":263,"TEXCOORD_0":264},"indices":261,"material":0}],"name":"cabinet-048"},{"primitives":[{"attributes":{"POSITION":266,"NORMAL":267,"TEXCOORD_0":268},"indices":265,"material":0}],"name":"cabinet-049"},{"primitives":[{"attributes":{"POSITION":270,"NORMAL":271,"TEXCOORD_0":272},"indices":269,"material":0}],"name":"cabinet-050"},{"primitives":[{"attributes":{"POSITION":274,"NORMAL":275,"TEXCOORD_0":276},"indices":273,"material":0}],"name":"cabinet-051"},{"primitives":[{"attributes":{"POSITION":278,"NORMAL":279,"TEXCOORD_0":280},"indices":277,"material":0}],"name":"cabinet-052"},{"primitives":[{"attributes":{"POSITION":282,"NORMAL":283,"TEXCOORD_0":284},"indices":281,"material":0}],"name":"cabinet-053"},{"primitives":[{"attributes":{"POSITION":286,"NORMAL":287,"TEXCOORD_0":288},"indices":285,"material":0}],"name":"cabinet-054"},{"primitives":[{"attributes":{"POSITION":290,"NORMAL":291,"TEXCOORD_0":292},"indices":289,"material":0}],"name":"cabinet-055"},{"primitives":[{"attributes":{"POSITION":294,"NORMAL":295,"TEXCOORD_0":296},"indices":293,"material":0}],"name":"cabinet-056"},{"primitives":[{"attributes":{"POSITION":298,"NORMAL":299,"TEXCOORD_0":300},"indices":297,"material":0}],"name":"cabinet-057"},{"primitives":[{"attributes":{"POSITION":302,"NORMAL":303,"TEXCOORD_0":304},"indices":301,"material":0}],"name":"cabinet-058"},{"primitives":[{"attributes":{"POSITION":306,"NORMAL":307,"TEXCOORD_0":308},"indices":305,"material":0}],"name":"cabinet-059"},{"primitives":[{"attributes":{"POSITION":310,"NORMAL":311,"TEXCOORD_0":312},"indices":309,"material":0}],"name":"cabinet-060"},{"primitives":[{"attributes":{"POSITION":314,"NORMAL":315,"TEXCOORD_0":316},"indices":313,"material":0}],"name":"cabinet-061"},{"primitives":[{"attributes":{"POSITION":318,"NORMAL":319,"TEXCOORD_0":320},"indices":317,"material":0}],"name":"cabinet-062"},{"primitives":[{"attributes":{"POSITION":322,"NORMAL":323,"TEXCOORD_0":324},"indices":321,"material":0}],"name":"cabinet-063"},{"primitives":[{"attributes":{"POSITION":326,"NORMAL":327,"TEXCOORD_0":328},"indices":325,"material":0}],"name":"cabinet-064"},{"primitives":[{"attributes":{"POSITION":330,"NORMAL":331,"TEXCOORD_0":332},"indices":329,"material":0}],"name":"cabinet-065"},{"primitives":[{"attributes":{"POSITION":334,"NORMAL":335,"TEXCOORD_0":336},"indices":333,"material":0}],"name":"cabinet-066"},{"primitives":[{"attributes":{"POSITION":338,"NORMAL":339,"TEXCOORD_0":340},"indices":337,"material":0}],"name":"cabinet-067"},{"primitives":[{"attributes":{"POSITION":342,"NORMAL":343,"TEXCOORD_0":344},"indices":341,"material":0}],"name":"cabinet-068"},{"primitives":[{"attributes":{"POSITION":346,"NORMAL":347,"TEXCOORD_0":348},"indices":345,"material":0}],"name":"cabinet-069"},{"primitives":[{"attributes":{"POSITION":350,"NORMAL":351,"TEXCOORD_0":352},"indices":349,"material":0}],"name":"cabinet-070"},{"primitives":[{"attributes":{"POSITION":354,"NORMAL":355,"TEXCOORD_0":356},"indices":353,"material":0}],"name":"cabinet-071"},{"primitives":[{"attributes":{"POSITION":358,"NORMAL":359,"TEXCOORD_0":360},"indices":357,"material":0}],"name":"cabinet-072"},{"primitives":[{"attributes":{"POSITION":362,"NORMAL":363,"TEXCOORD_0":364},"indices":361,"material":0}],"name":"cabinet-073"},{"primitives":[{"attributes":{"POSITION":366,"NORMAL":367,"TEXCOORD_0":368},"indices":365,"material":0}],"name":"cabinet-074"},{"primitives":[{"attributes":{"POSITION":370,"NORMAL":371,"TEXCOORD_0":372},"indices":369,"material":0}],"name":"cabinet-075"},{"primitives":[{"attributes":{"POSITION":374,"NORMAL":375,"TEXCOORD_0":376},"indices":373,"material":0}],"name":"cabinet-076"},{"primitives":[{"attributes":{"POSITION":378,"NORMAL":379,"TEXCOORD_0":380},"indices":377,"material":0}],"name":"cabinet-077"},{"primitives":[{"attributes":{"POSITION":382,"NORMAL":383,"TEXCOORD_0":384},"indices":381,"material":0}],"name":"cabinet-078"},{"primitives":[{"attributes":{"POSITION":386,"NORMAL":387,"TEXCOORD_0":388},"indices":385,"material":0}],"name":"cabinet-079"},{"primitives":[{"attributes":{"POSITION":390,"NORMAL":391,"TEXCOORD_0":392},"indices":389,"material":0}],"name":"cabinet-080"}],"accessors":[{"bufferView":0,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":360,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":60,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":720,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.299999982,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":1080,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":240,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":120,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":1440,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.299999982,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":1800,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":480,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":180,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":2160,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":2520,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":720,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":240,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":2880,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.299999982,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":3240,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":960,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":300,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":3600,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":3960,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":1200,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":360,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":4320,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.299999982,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":4680,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":1440,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":420,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":5040,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":5400,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":1680,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":480,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":5760,"componentType":5126,"count":30,"max":[0.380916148,1.5902127,0.3010001],"min":[-0.380916148,0.0,-0.3010001],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":6120,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":1920,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":540,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":6480,"componentType":5126,"count":30,"max":[0.380916148,1.5902127,0.3010001],"min":[-0.380916148,0.0,-0.3010001],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":6840,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":2160,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":600,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":7200,"componentType":5126,"count":30,"max":[0.380916148,1.5902127,0.3010001],"min":[-0.380916148,0.0,-0.3010001],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":7560,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":2400,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":660,"componentType":5123,"count":24,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":7920,"componentType":5126,"count":24,"max":[0.350000024,1.07,0.130000025],"min":[-0.350000024,0.0,-0.13],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":8208,"componentType":5126,"count":24,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":2640,"componentType":5126,"count":24,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":708,"componentType":5123,"count":78,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":8496,"componentType":5126,"count":78,"max":[10.9490919,0.0,7.42788],"min":[-9.690194,0.0,-6.24216461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":9432,"componentType":5126,"count":78,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":2832,"componentType":5126,"count":78,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":864,"componentType":5123,"count":18,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":10368,"componentType":5126,"count":18,"max":[0.75000006,2.10942578,0.0150000006],"min":[-0.75000006,0.0,-0.0150009776],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":10584,"componentType":5126,"count":18,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":3456,"componentType":5126,"count":18,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":900,"componentType":5123,"count":18,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":10800,"componentType":5126,"count":18,"max":[0.75000006,2.10942578,0.0150000006],"min":[-0.75000006,0.0,-0.0150009776],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":11016,"componentType":5126,"count":18,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":3600,"componentType":5126,"count":18,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":936,"componentType":5123,"count":12,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":11232,"componentType":5126,"count":12,"max":[8.619125,0.0,4.914818],"min":[-7.386507,0.0,-3.96382451],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":11376,"componentType":5126,"count":12,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":3744,"componentType":5126,"count":12,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":960,"componentType":5123,"count":156,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":11520,"componentType":5126,"count":156,"max":[11.5175648,2.10942626,8.330715],"min":[-9.121735,-5.29608769E-07,-5.939329],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":13392,"componentType":5126,"count":156,"type":"VEC3","name":"accessorNormals"},{"bufferView":0,"byteOffset":1272,"componentType":5123,"count":144,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":15264,"componentType":5126,"count":144,"max":[11.5175648,2.10942578,8.330715],"min":[-9.121735,0.0,-5.939329],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":16992,"componentType":5126,"count":144,"type":"VEC3","name":"accessorNormals"},{"bufferView":0,"byteOffset":1560,"componentType":5123,"count":138,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":18720,"componentType":5126,"count":138,"max":[11.5175648,2.109427,8.330715],"min":[-9.121735,2.10942459,-5.93932867],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":20376,"componentType":5126,"count":138,"type":"VEC3","name":"accessorNormals"},{"bufferView":0,"byteOffset":1836,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":22032,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":22392,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":3840,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":1896,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":22752,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":23112,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":4080,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":1956,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":23472,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":23832,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":4320,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2016,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":24192,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":24552,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":4560,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2076,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":24912,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":25272,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":4800,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2136,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":25632,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":25992,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":5040,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2196,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":26352,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":26712,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":5280,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2256,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":27072,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":27432,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":5520,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2316,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":27792,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":28152,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":5760,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2376,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":28512,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":28872,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":6000,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2436,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":29232,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":29592,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":6240,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2496,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":29952,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":30312,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":6480,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2556,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":30672,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":31032,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":6720,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2616,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":31392,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":31752,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":6960,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2676,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":32112,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":32472,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":7200,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2736,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":32832,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":33192,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":7440,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2796,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":33552,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":33912,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":7680,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2856,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":34272,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":34632,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":7920,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2916,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":34992,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":35352,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":8160,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":2976,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":35712,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":36072,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":8400,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":3036,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":36432,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":36792,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":8640,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":3096,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":37152,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":37512,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":8880,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":3156,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":37872,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":38232,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":9120,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":3216,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":38592,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":38952,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":9360,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":3276,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":39312,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":39672,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":9600,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":3336,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":40032,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":40392,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":9840,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":3396,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":40752,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":41112,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":10080,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":3456,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":41472,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":41832,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":10320,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":3516,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":42192,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":42552,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":10560,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":3576,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":42912,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":43272,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":10800,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":3636,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":43632,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":43992,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":11040,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":3696,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":44352,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":44712,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":11280,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":3756,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":45072,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":45432,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":11520,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":3816,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":45792,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":46152,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":11760,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":3876,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":46512,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":46872,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":12000,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":3936,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":47232,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":47592,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":12240,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":3996,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":47952,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.299999982,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":48312,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":12480,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4056,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":48672,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.299999982,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":49032,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":12720,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4116,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":49392,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.299999982,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":49752,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":12960,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4176,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":50112,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.299999982,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":50472,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":13200,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4236,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":50832,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":51192,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":13440,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4296,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":51552,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":51912,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":13680,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4356,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":52272,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":52632,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":13920,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4416,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":52992,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":53352,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":14160,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4476,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":53712,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":54072,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":14400,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4536,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":54432,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":54792,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":14640,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4596,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":55152,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":55512,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":14880,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4656,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":55872,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":56232,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":15120,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4716,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":56592,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":56952,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":15360,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4776,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":57312,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":57672,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":15600,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4836,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":58032,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":58392,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":15840,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4896,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":58752,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":59112,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":16080,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":4956,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":59472,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":59832,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":16320,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5016,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":60192,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":60552,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":16560,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5076,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":60912,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":61272,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":16800,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5136,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":61632,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":61992,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":17040,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5196,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":62352,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":62712,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":17280,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5256,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":63072,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":63432,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":17520,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5316,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":63792,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":64152,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":17760,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5376,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":64512,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":64872,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":18000,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5436,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":65232,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":65592,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":18240,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5496,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":65952,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":66312,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":18480,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5556,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":66672,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":67032,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":18720,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5616,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":67392,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":67752,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":18960,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5676,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":68112,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":68472,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":19200,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5736,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":68832,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":69192,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":19440,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5796,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":69552,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":69912,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":19680,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5856,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":70272,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":70632,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":19920,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5916,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":70992,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":71352,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":20160,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":5976,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":71712,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":72072,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":20400,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":6036,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":72432,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":72792,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":20640,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":6096,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":73152,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":73512,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":20880,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":6156,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":73872,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":74232,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":21120,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":6216,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":74592,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":74952,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":21360,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":6276,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":75312,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":75672,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":21600,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":6336,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":76032,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":76392,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":21840,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":6396,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":76752,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":77112,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":22080,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":6456,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":77472,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":77832,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":22320,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":6516,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":78192,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":78552,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":22560,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"},{"bufferView":0,"byteOffset":6576,"componentType":5123,"count":30,"type":"SCALAR","name":"accessorIndices"},{"bufferView":1,"byteOffset":78912,"componentType":5126,"count":30,"max":[0.3,2.00000048,0.4658461],"min":[-0.3,0.0,-0.4658461],"type":"VEC3","name":"accessorPositions"},{"bufferView":1,"byteOffset":79272,"componentType":5126,"count":30,"type":"VEC3","name":"accessorNormals"},{"bufferView":2,"byteOffset":22800,"componentType":5126,"count":30,"type":"VEC2","name":"accessorUVs"}],"bufferViews":[{"buffer":0,"byteLength":6636,"name":"bufferViewScalar"},{"buffer":0,"byteOffset":6636,"byteLength":79632,"byteStride":12,"name":"bufferViewFloatVec3"},{"buffer":0,"byteOffset":86268,"byteLength":23040,"byteStride":8,"name":"bufferViewFloatVec2"}],"buffers":[{"uri":"machineRoom.bin","byteLength":109308}],"materials":[{"pbrMetallicRoughness":{"baseColorTexture":{"index":0},"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveTexture":{"index":0},"emissiveFactor":[1.0,1.0,1.0],"name":"cabinet"},{"pbrMetallicRoughness":{"baseColorTexture":{"index":1},"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveTexture":{"index":1},"emissiveFactor":[1.0,1.0,1.0],"name":"aircondition"},{"pbrMetallicRoughness":{"baseColorTexture":{"index":2},"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveTexture":{"index":2},"emissiveFactor":[1.0,1.0,1.0],"name":"electricBox"},{"pbrMetallicRoughness":{"baseColorTexture":{"index":3},"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveTexture":{"index":3},"emissiveFactor":[1.0,1.0,1.0],"name":"hydrant"},{"pbrMetallicRoughness":{"baseColorTexture":{"index":4},"metallicFactor":0.0,"roughnessFactor":0.450053632},"name":"floor02"},{"pbrMetallicRoughness":{"baseColorTexture":{"index":5},"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveTexture":{"index":5},"emissiveFactor":[1.0,1.0,1.0],"name":"door"},{"pbrMetallicRoughness":{"baseColorTexture":{"index":6},"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveTexture":{"index":6},"emissiveFactor":[1.0,1.0,1.0],"name":"floor01"},{"pbrMetallicRoughness":{"baseColorFactor":[0.6039216,0.6039216,0.6039216,1.0],"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.6039216,0.6039216,0.6039216],"name":"wall-l"},{"pbrMetallicRoughness":{"baseColorFactor":[0.709803939,0.709803939,0.709803939,1.0],"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.709803939,0.709803939,0.709803939],"name":"wall-f"},{"pbrMetallicRoughness":{"baseColorFactor":[0.5411765,0.5411765,0.5411765,1.0],"metallicFactor":0.0,"roughnessFactor":0.450053632},"emissiveFactor":[0.5411765,0.5411765,0.5411765],"name":"wall-t"}],"textures":[{"sampler":0,"source":0,"name":"cabinet.jpg"},{"sampler":0,"source":1,"name":"aircondition.jpg"},{"sampler":0,"source":2,"name":"electricBox.jpg"},{"sampler":0,"source":3,"name":"hydrant.jpg"},{"sampler":0,"source":4,"name":"floor02.jpg"},{"sampler":0,"source":5,"name":"door.jpg"},{"sampler":0,"source":6,"name":"floor01.jpg"}],"images":[{"uri":"./cabinet.jpg"},{"uri":"./aircondition.jpg"},{"uri":"./electricBox.jpg"},{"uri":"./hydrant.jpg"},{"uri":"./floor02.jpg"},{"uri":"./door.jpg"},{"uri":"./floor01.jpg"}],"samplers":[{"magFilter":9729,"minFilter":9987}]} \ No newline at end of file diff --git a/public/models/pipeline/model.glb b/public/models/pipeline/model.glb new file mode 100644 index 0000000..0275ecb Binary files /dev/null and b/public/models/pipeline/model.glb differ diff --git a/public/models/pipeline/new_model.glb b/public/models/pipeline/new_model.glb new file mode 100644 index 0000000..78a9f5c Binary files /dev/null and b/public/models/pipeline/new_model.glb differ diff --git a/public/models/scene/backe_edit_10.glb b/public/models/scene/backe_edit_10.glb new file mode 100644 index 0000000..9270a36 Binary files /dev/null and b/public/models/scene/backe_edit_10.glb differ diff --git a/public/models/scene/backe_edit_7.glb b/public/models/scene/backe_edit_7.glb new file mode 100644 index 0000000..e4343f5 Binary files /dev/null and b/public/models/scene/backe_edit_7.glb differ diff --git a/public/models/scene/backe_edit_8.glb b/public/models/scene/backe_edit_8.glb new file mode 100644 index 0000000..67ddf36 Binary files /dev/null and b/public/models/scene/backe_edit_8.glb differ diff --git a/public/models/scene/backe_edit_9.glb b/public/models/scene/backe_edit_9.glb new file mode 100644 index 0000000..67ddf36 Binary files /dev/null and b/public/models/scene/backe_edit_9.glb differ diff --git a/public/models/scene/scene_edit.glb b/public/models/scene/scene_edit.glb new file mode 100644 index 0000000..52f429e Binary files /dev/null and b/public/models/scene/scene_edit.glb differ diff --git a/public/models/scene/test.glb b/public/models/scene/test.glb new file mode 100644 index 0000000..27e19f0 Binary files /dev/null and b/public/models/scene/test.glb differ diff --git a/public/models/smokeSiren/smokeSiren.glb b/public/models/smokeSiren/smokeSiren.glb new file mode 100644 index 0000000..43cc1fb Binary files /dev/null and b/public/models/smokeSiren/smokeSiren.glb differ diff --git a/public/models/smokeSiren/threeObject.glb b/public/models/smokeSiren/threeObject.glb new file mode 100644 index 0000000..ca5d89f Binary files /dev/null and b/public/models/smokeSiren/threeObject.glb differ diff --git a/public/models/substation/Lime._Bump_铺地003.jpg.jpg b/public/models/substation/Lime._Bump_铺地003.jpg.jpg new file mode 100644 index 0000000..1e487df Binary files /dev/null and b/public/models/substation/Lime._Bump_铺地003.jpg.jpg differ diff --git a/public/models/substation/Lime._Diff_沙石01.jpg.jpg b/public/models/substation/Lime._Diff_沙石01.jpg.jpg new file mode 100644 index 0000000..3238e13 Binary files /dev/null and b/public/models/substation/Lime._Diff_沙石01.jpg.jpg differ diff --git a/public/models/substation/Lime._Diff_铺地003.jpg.jpg b/public/models/substation/Lime._Diff_铺地003.jpg.jpg new file mode 100644 index 0000000..25bb3b1 Binary files /dev/null and b/public/models/substation/Lime._Diff_铺地003.jpg.jpg differ diff --git a/public/models/substation/Lime._HDM_03_cellular.png b/public/models/substation/Lime._HDM_03_cellular.png new file mode 100644 index 0000000..967f8fb Binary files /dev/null and b/public/models/substation/Lime._HDM_03_cellular.png differ diff --git a/public/models/substation/Lime._HDM_03_felgi_ref.jpg b/public/models/substation/Lime._HDM_03_felgi_ref.jpg new file mode 100644 index 0000000..e946a8a Binary files /dev/null and b/public/models/substation/Lime._HDM_03_felgi_ref.jpg differ diff --git a/public/models/substation/Lime._HDM_03_tyre_sidewall.png b/public/models/substation/Lime._HDM_03_tyre_sidewall.png new file mode 100644 index 0000000..591f14e Binary files /dev/null and b/public/models/substation/Lime._HDM_03_tyre_sidewall.png differ diff --git a/public/models/substation/Lime._Lime._20.jpg b/public/models/substation/Lime._Lime._20.jpg new file mode 100644 index 0000000..fb46d6a Binary files /dev/null and b/public/models/substation/Lime._Lime._20.jpg differ diff --git a/public/models/substation/Lime._Lime._微信图片_20181202141532.png b/public/models/substation/Lime._Lime._微信图片_20181202141532.png new file mode 100644 index 0000000..5fb3e1f Binary files /dev/null and b/public/models/substation/Lime._Lime._微信图片_20181202141532.png differ diff --git a/public/models/substation/Lime._TT06.jpg b/public/models/substation/Lime._TT06.jpg new file mode 100644 index 0000000..70b112d Binary files /dev/null and b/public/models/substation/Lime._TT06.jpg differ diff --git a/public/models/substation/Lime._caopu.jpg b/public/models/substation/Lime._caopu.jpg new file mode 100644 index 0000000..4768c4f Binary files /dev/null and b/public/models/substation/Lime._caopu.jpg differ diff --git a/public/models/substation/Lime._cncr24L.jpg b/public/models/substation/Lime._cncr24L.jpg new file mode 100644 index 0000000..d45b4f5 Binary files /dev/null and b/public/models/substation/Lime._cncr24L.jpg differ diff --git a/public/models/substation/Lime._felgi_ref.jpg b/public/models/substation/Lime._felgi_ref.jpg new file mode 100644 index 0000000..e946a8a Binary files /dev/null and b/public/models/substation/Lime._felgi_ref.jpg differ diff --git a/public/models/substation/Lime._grassHR_q.jpg b/public/models/substation/Lime._grassHR_q.jpg new file mode 100644 index 0000000..29d1b15 Binary files /dev/null and b/public/models/substation/Lime._grassHR_q.jpg differ diff --git a/public/models/substation/Lime._luya.jpg b/public/models/substation/Lime._luya.jpg new file mode 100644 index 0000000..e84a122 Binary files /dev/null and b/public/models/substation/Lime._luya.jpg differ diff --git a/public/models/substation/Lime._tyre_sidewall.png b/public/models/substation/Lime._tyre_sidewall.png new file mode 100644 index 0000000..591f14e Binary files /dev/null and b/public/models/substation/Lime._tyre_sidewall.png differ diff --git a/public/models/substation/Lime._沙石01.jpg b/public/models/substation/Lime._沙石01.jpg new file mode 100644 index 0000000..2e9b9e5 Binary files /dev/null and b/public/models/substation/Lime._沙石01.jpg differ diff --git a/public/models/substation/Lime._碎石01 - 副本.jpg b/public/models/substation/Lime._碎石01 - 副本.jpg new file mode 100644 index 0000000..7a03f7f Binary files /dev/null and b/public/models/substation/Lime._碎石01 - 副本.jpg differ diff --git a/public/models/substation/Lime._铺地003.jpg b/public/models/substation/Lime._铺地003.jpg new file mode 100644 index 0000000..f81760c Binary files /dev/null and b/public/models/substation/Lime._铺地003.jpg differ diff --git a/public/models/substation/Lime._铺地004.jpg b/public/models/substation/Lime._铺地004.jpg new file mode 100644 index 0000000..5c2b00e Binary files /dev/null and b/public/models/substation/Lime._铺地004.jpg differ diff --git a/public/models/substation/substation.bin b/public/models/substation/substation.bin new file mode 100644 index 0000000..253eb96 Binary files /dev/null and b/public/models/substation/substation.bin differ diff --git a/public/models/substation/substation.gltf b/public/models/substation/substation.gltf new file mode 100644 index 0000000..e9c242c --- /dev/null +++ b/public/models/substation/substation.gltf @@ -0,0 +1,522555 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v5.0.21", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular" + ], + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1331, + 1332, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3308, + 3309, + 3310, + 3311, + 3312, + 3313, + 3314, + 3315, + 3316, + 3317, + 3318, + 3319, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999, + 5000, + 5001, + 5002, + 5003, + 5004, + 5005, + 5006, + 5007, + 5008, + 5009, + 5010, + 5011, + 5012, + 5013, + 5014, + 5015, + 5016, + 5017, + 5018, + 5019, + 5020, + 5021, + 5022, + 5023, + 5024, + 5025, + 5026, + 5027, + 5028, + 5029, + 5030, + 5031, + 5032, + 5033, + 5034, + 5035, + 5036, + 5037, + 5038, + 5039, + 5040, + 5041, + 5042, + 5043, + 5044, + 5045, + 5046, + 5047, + 5048, + 5049, + 5050, + 5051, + 5052, + 5053, + 5054, + 5055, + 5056, + 5057, + 5058, + 5059, + 5060, + 5061, + 5062, + 5063, + 5064, + 5065, + 5066, + 5067, + 5068, + 5069, + 5070, + 5071, + 5072, + 5073, + 5074, + 5075, + 5076, + 5077, + 5078, + 5079, + 5080, + 5081, + 5082, + 5083, + 5084, + 5085, + 5086, + 5087, + 5088, + 5089, + 5090, + 5091, + 5092, + 5093, + 5094, + 5095, + 5096, + 5097, + 5098, + 5099, + 5100, + 5101, + 5102, + 5103, + 5104, + 5105, + 5106, + 5107, + 5108, + 5109, + 5110, + 5111, + 5112, + 5113, + 5114, + 5115, + 5116, + 5117, + 5118, + 5119, + 5120, + 5121, + 5122, + 5123, + 5124, + 5125, + 5126, + 5127, + 5128, + 5129, + 5130, + 5131, + 5132, + 5133, + 5134, + 5135, + 5136, + 5137, + 5138, + 5139, + 5140, + 5141, + 5142, + 5143, + 5144, + 5145, + 5146, + 5147, + 5148, + 5149, + 5150, + 5151, + 5152, + 5153, + 5154, + 5155, + 5156, + 5157, + 5158, + 5159, + 5160, + 5161, + 5186, + 5187, + 5188, + 5189, + 5190, + 5191, + 5192, + 5193, + 5194, + 5195, + 5196, + 5197, + 5198, + 5199, + 5200, + 5201, + 5202, + 5203, + 5204, + 5205, + 5206, + 5207, + 5208, + 5209, + 5210, + 5211, + 5212, + 5213, + 5214, + 5215, + 5216, + 5217, + 5218, + 5219, + 5220, + 5221, + 5222, + 5223, + 5224, + 5225, + 5226, + 5227, + 5228, + 5229, + 5230, + 5231, + 5232, + 5233, + 5234, + 5235, + 5236, + 5237, + 5238, + 5239, + 5240, + 5241, + 5242, + 5243, + 5244, + 5245, + 5246, + 5247, + 5248, + 5249, + 5250, + 5251, + 5252, + 5253, + 5254, + 5255, + 5256, + 5257, + 5258, + 5259, + 5260, + 5261, + 5262, + 5263, + 5264, + 5265, + 5266, + 5267, + 5268, + 5269, + 5270, + 5271, + 5272, + 5273, + 5274, + 5275, + 5276, + 5277, + 5278, + 5279, + 5280, + 5281, + 5282, + 5283, + 5284, + 5285, + 5286, + 5287, + 5288, + 5289, + 5290, + 5291, + 5292, + 5293, + 5294, + 5295, + 5296, + 5297, + 5298, + 5299, + 5300, + 5301, + 5302, + 5303, + 5304, + 5305, + 5306, + 5307, + 5308, + 5309, + 5310, + 5311, + 5312, + 5313, + 5314, + 5315, + 5316, + 5317, + 5318, + 5319, + 5320, + 5321, + 5322, + 5323, + 5324, + 5325, + 5326, + 5327, + 5328, + 5329, + 5330, + 5331, + 5332, + 5333, + 5334, + 5335, + 5336, + 5337, + 5338, + 5339, + 5340, + 5341, + 5342, + 5343, + 5344, + 5345, + 5346, + 5347, + 5348, + 5349, + 5350, + 5351, + 5352, + 5353, + 5354, + 5355, + 5356, + 5357, + 5358, + 5359, + 5360, + 5361, + 5362, + 5363, + 5364, + 5365, + 5366, + 5367, + 5368, + 5369, + 5370, + 5371, + 5372, + 5373, + 5374, + 5375, + 5376, + 5377, + 5378, + 5379, + 5380, + 5381, + 5382, + 5383, + 5384, + 5385, + 5386, + 5387, + 5388, + 5389, + 5390, + 5391, + 5392, + 5393, + 5394, + 5395, + 5396, + 5397, + 5398, + 5399, + 5400, + 5401, + 5402, + 5403, + 5404, + 5405, + 5406, + 5407, + 5408, + 5409, + 5410, + 5411, + 5412, + 5413, + 5414, + 5415, + 5416, + 5417, + 5418, + 5419, + 5420, + 5421, + 5422, + 5423, + 5424, + 5425, + 5426, + 5427, + 5428, + 5429, + 5430, + 5431, + 5432, + 5433, + 5434, + 5435, + 5436, + 5437, + 5438, + 5439, + 5440, + 5441, + 5442, + 5443, + 5444, + 5445, + 5446, + 5447, + 5448, + 5449, + 5450, + 5451, + 5452, + 5453, + 5454, + 5455, + 5456, + 5457, + 5458, + 5459, + 5460, + 5461, + 5462, + 5463, + 5464, + 5465, + 5466, + 5467, + 5468, + 5469, + 5470, + 5471, + 5472, + 5473, + 5474, + 5475, + 5476, + 5477, + 5478, + 5479, + 5480, + 5481, + 5482, + 5483, + 5484, + 5485, + 5486, + 5487, + 5488, + 5489, + 5490, + 5491, + 5492, + 5493, + 5494, + 5495, + 5496, + 5497, + 5498, + 5499, + 5500, + 5501, + 5502, + 5503, + 5504, + 5505, + 5506, + 5507, + 5508, + 5509, + 5510, + 5511, + 5512, + 5513, + 5514, + 5515, + 5516, + 5517, + 5518, + 5519, + 5520, + 5521, + 5522, + 5523, + 5524, + 5525, + 5526, + 5527, + 5528, + 5529, + 5530, + 5531, + 5532, + 5533, + 5534, + 5535, + 5536, + 5537, + 5538, + 5539, + 5540, + 5541, + 5542, + 5543, + 5544, + 5545, + 5546, + 5547, + 5548, + 5549, + 5550, + 5551, + 5552, + 5553, + 5554, + 5555, + 5556, + 5557, + 5558, + 5559, + 5560, + 5561, + 5562, + 5563, + 5564, + 5565, + 5566, + 5567, + 5568, + 5569, + 5570, + 5571, + 5572, + 5573, + 5574, + 5575, + 5576, + 5577, + 5578, + 5579, + 5580, + 5581, + 5582, + 5583, + 5584, + 5585, + 5586, + 5587, + 5588, + 5589, + 5590, + 5591, + 5592, + 5593, + 5594, + 5595, + 5596, + 5597, + 5598, + 5599, + 5600, + 5601, + 5602, + 5603, + 5604, + 5605, + 5606, + 5607, + 5608, + 5609, + 5610, + 5611, + 5612, + 5613, + 5614, + 5615, + 5616, + 5617, + 5618, + 5619, + 5620, + 5621, + 5622, + 5623, + 5624, + 5625, + 5626, + 5627, + 5628, + 5629, + 5630, + 5631, + 5632, + 5633, + 5634, + 5635, + 5636, + 5637, + 5638, + 5639, + 5640, + 5641, + 5642, + 5643, + 5644, + 5645, + 5646, + 5647, + 5648, + 5649, + 5650, + 5651, + 5652, + 5653, + 5654, + 5655, + 5656, + 5657, + 5658, + 5659, + 5660, + 5661, + 5662, + 5663, + 5664, + 5665, + 5666, + 5667, + 5668, + 5669, + 5670, + 5671, + 5672, + 5673, + 5674, + 5675, + 5676, + 5677, + 5678, + 5679, + 5680, + 5681, + 5682, + 5683, + 5684, + 5685, + 5686, + 5687, + 5688, + 5689, + 5690, + 5691, + 5692, + 5693, + 5694, + 5695, + 5696, + 5697, + 5698, + 5699, + 5700, + 5701, + 5702, + 5703, + 5704, + 5705, + 5706, + 5707, + 5708, + 5709, + 5710, + 5711, + 5712, + 5713, + 5714, + 5715, + 5716, + 5717, + 5718, + 5719, + 5720, + 5721, + 5722, + 5723, + 5724, + 5725, + 5726, + 5727, + 5728, + 5729, + 5730, + 5731, + 5732, + 5733, + 5734, + 5735, + 5736, + 5737, + 5738, + 5739, + 5740, + 5741, + 5742, + 5743, + 5744, + 5745, + 5746, + 5747, + 5748, + 5749, + 5750, + 5751, + 5752, + 5753, + 5754, + 5755, + 5756, + 5757, + 5758, + 5759, + 5760, + 5761, + 5762, + 5763, + 5764, + 5765, + 5766, + 5767, + 5768, + 5769, + 5770, + 5771, + 5772, + 5773, + 5774, + 5775, + 5776, + 5777, + 5778, + 5779, + 5780, + 5781, + 5782, + 5783, + 5784, + 5785, + 5786, + 5787, + 5788, + 5789, + 5790, + 5791, + 5792, + 5793, + 5794, + 5795, + 5796, + 5797, + 5798, + 5799, + 5800, + 5801, + 5802, + 5803, + 5804, + 5805, + 5806, + 5807, + 5808, + 5809, + 5810, + 5811, + 5812, + 5813, + 5814, + 5815, + 5816, + 5817, + 5818, + 5819, + 5820, + 5821, + 5822, + 5823, + 5824, + 5825, + 5826, + 5827, + 5828, + 5829, + 5830, + 5831, + 5832, + 5833, + 5834, + 5835, + 5836, + 5837, + 5838, + 5839, + 5840, + 5841, + 5842, + 5843, + 5844, + 5845, + 5846, + 5847, + 5848, + 5849, + 5850, + 5851, + 5852, + 5853, + 5854, + 5855, + 5856, + 5857, + 5858, + 5859, + 5860, + 5861, + 5862, + 5863, + 5864, + 5865, + 5866, + 5867, + 5868, + 5869, + 5870, + 5871, + 5872, + 5873, + 5874, + 5875, + 5876, + 5877, + 5878, + 5879, + 5880, + 5881, + 5882, + 5883, + 5884, + 5885, + 5886, + 5887, + 5888, + 5889, + 5890, + 5891, + 5892, + 5893, + 5894, + 5895, + 5896, + 5897, + 5898, + 5899, + 5900, + 5901, + 5902, + 5903, + 5904, + 5905, + 5906, + 5907, + 5908, + 5909, + 5910, + 5911, + 5912, + 5913, + 5914, + 5915, + 5916, + 5917, + 5918, + 5919, + 5920, + 5921, + 5922, + 5923, + 5924, + 5925, + 5926, + 5927, + 5928, + 5929, + 5930, + 5931, + 5932, + 5933, + 5934, + 5935, + 5936, + 5937, + 5938, + 5939, + 5940, + 5941, + 5942, + 5943, + 5944, + 5945, + 5946, + 5947, + 5948, + 5949, + 5950, + 5951, + 5952, + 5953, + 5954, + 5955, + 5956, + 5957, + 5958, + 5959, + 5960, + 5961, + 5962, + 5963, + 5964, + 5965, + 5966, + 5967, + 5968, + 5969, + 5970, + 5971, + 5972, + 5973, + 5974, + 5975, + 5976, + 5977, + 5978, + 5979, + 5980, + 5981, + 5982, + 5983, + 5984, + 5985, + 5986, + 5987, + 5988, + 5989, + 5990, + 5991, + 5992, + 5993, + 5994, + 5995, + 5996, + 5997, + 5998, + 5999, + 6000, + 6001, + 6002, + 6003, + 6004, + 6005, + 6006, + 6007, + 6008, + 6009, + 6010, + 6011, + 6012, + 6013, + 6014, + 6015, + 6016, + 6017, + 6018, + 6019, + 6020, + 6021, + 6022, + 6023, + 6024, + 6025, + 6026, + 6027, + 6028, + 6029, + 6030, + 6031, + 6032, + 6033, + 6034, + 6035, + 6036, + 6037, + 6038, + 6039, + 6040, + 6041, + 6042, + 6043, + 6044, + 6045, + 6046, + 6047, + 6048, + 6049, + 6050, + 6051, + 6052, + 6053, + 6054, + 6055, + 6056, + 6057, + 6058, + 6059, + 6060, + 6061, + 6062, + 6063, + 6064, + 6065, + 6066, + 6067, + 6068, + 6069, + 6070, + 6071, + 6072, + 6073, + 6074, + 6075, + 6076, + 6077, + 6078, + 6079, + 6080, + 6081, + 6082, + 6083, + 6084, + 6085, + 6086, + 6087, + 6088, + 6089, + 6090, + 6091, + 6092, + 6093, + 6094, + 6095, + 6096, + 6097, + 6098, + 6099, + 6100, + 6101, + 6102, + 6103, + 6104, + 6105, + 6106, + 6107, + 6108, + 6109, + 6110, + 6111, + 6112, + 6113, + 6114, + 6115, + 6116, + 6117, + 6118, + 6119, + 6120, + 6121, + 6122, + 6123, + 6124, + 6125, + 6126, + 6127, + 6128, + 6129, + 6130, + 6131, + 6132, + 6133, + 6134, + 6135, + 6136, + 6137, + 6138, + 6139, + 6140, + 6141, + 6142, + 6143, + 6144, + 6145, + 6146, + 6147, + 6148, + 6149, + 6150, + 6151, + 6152, + 6153, + 6154, + 6155, + 6156, + 6157, + 6158, + 6159, + 6160, + 6161, + 6162, + 6163, + 6164, + 6165, + 6166, + 6167, + 6168, + 6169, + 6170, + 6171, + 6172, + 6173, + 6174, + 6175, + 6176, + 6177, + 6178, + 6179, + 6180, + 6181, + 6182, + 6183, + 6184, + 6185, + 6186, + 6187, + 6188, + 6189, + 6190, + 6191, + 6192, + 6193, + 6194, + 6195, + 6196, + 6197, + 6198, + 6199, + 6200, + 6201, + 6202, + 6203, + 6204, + 6205, + 6206, + 6207, + 6208, + 6209, + 6210, + 6211, + 6212, + 6213, + 6214, + 6215, + 6216, + 6217, + 6218, + 6219, + 6220, + 6221, + 6222, + 6223, + 6224, + 6225, + 6226, + 6227, + 6228, + 6229, + 6230, + 6231, + 6232, + 6233, + 6234, + 6235, + 6236, + 6237, + 6238, + 6239, + 6240, + 6241, + 6242, + 6243, + 6244, + 6245, + 6246, + 6247, + 6248, + 6249, + 6250, + 6251, + 6252, + 6253, + 6254, + 6255, + 6256, + 6257, + 6258, + 6259, + 6260, + 6261, + 6262, + 6263, + 6264, + 6265, + 6266, + 6267, + 6268, + 6269, + 6270, + 6271, + 6272, + 6273, + 6274, + 6275, + 6276, + 6277, + 6278, + 6279, + 6280, + 6281, + 6282, + 6283, + 6284, + 6285, + 6286, + 6287, + 6288, + 6289, + 6290, + 6291, + 6292, + 6293, + 6294, + 6295, + 6296, + 6297, + 6298, + 6299, + 6300, + 6301, + 6302, + 6303, + 6304, + 6305, + 6306, + 6307, + 6308, + 6309, + 6310, + 6311, + 6312, + 6313, + 6314, + 6315, + 6316, + 6317, + 6318, + 6319, + 6320, + 6321, + 6322, + 6323, + 6324, + 6325, + 6326, + 6327, + 6328, + 6329, + 6330, + 6331, + 6332, + 6333, + 6334, + 6335, + 6336, + 6337, + 6338, + 6339, + 6340, + 6341, + 6342, + 6343, + 6344, + 6345, + 6346, + 6347, + 6348, + 6349, + 6350, + 6351, + 6352, + 6353, + 6354, + 6355, + 6356, + 6357, + 6358, + 6359, + 6360, + 6361, + 6362, + 6363, + 6364, + 6365, + 6366, + 6367, + 6368, + 6369, + 6370, + 6371, + 6372, + 6373, + 6374, + 6375, + 6376, + 6377, + 6378, + 6379, + 6380, + 6381, + 6382, + 6383, + 6384, + 6385, + 6386, + 6387, + 6388, + 6389, + 6390, + 6391, + 6392, + 6393, + 6394, + 6395, + 6396, + 6397, + 6398, + 6399, + 6400, + 6401, + 6402, + 6403, + 6404, + 6405, + 6406, + 6407, + 6408, + 6409, + 6410, + 6411, + 6412, + 6413, + 6414, + 6415, + 6416, + 6417, + 6418, + 6419, + 6420, + 6421, + 6422, + 6423, + 6424, + 6425, + 6426, + 6427, + 6428, + 6429, + 6430, + 6431, + 6432, + 6433, + 6434, + 6435, + 6436, + 6437, + 6438, + 6439, + 6440, + 6441, + 6442, + 6443, + 6444, + 6445, + 6446, + 6447, + 6448, + 6449, + 6450, + 6451, + 6452, + 6453, + 6454, + 6455, + 6456, + 6457, + 6458, + 6459, + 6460, + 6461, + 6462, + 6463, + 6464, + 6465, + 6466, + 6467, + 6468, + 6469, + 6470, + 6471, + 6472, + 6473, + 6474, + 6475, + 6476, + 6477, + 6478, + 6479, + 6480, + 6481, + 6482, + 6483, + 6484, + 6485, + 6486, + 6487, + 6488, + 6489, + 6490, + 6491, + 6492, + 6493, + 6494, + 6495, + 6496, + 6497, + 6498, + 6499, + 6500, + 6501, + 6502, + 6503, + 6504, + 6505, + 6506, + 6507, + 6508, + 6509, + 6510, + 6511, + 6512, + 6513, + 6514, + 6515, + 6516, + 6517, + 6518, + 6519, + 6520, + 6521, + 6522, + 6523, + 6524, + 6525, + 6526, + 6527, + 6528, + 6529, + 6530, + 6531, + 6532, + 6533, + 6534, + 6535, + 6536, + 6537, + 6538, + 6539, + 6540, + 6541, + 6542, + 6543, + 6544, + 6545, + 6546, + 6547, + 6548, + 6549, + 6550, + 6551, + 6552, + 6553, + 6554, + 6555, + 6556, + 6557, + 6558, + 6559, + 6560, + 6561, + 6562, + 6563, + 6564, + 6565, + 6566, + 6567, + 6568, + 6569, + 6570, + 6571, + 6572, + 6573, + 6574, + 6575, + 6576, + 6577, + 6578, + 6579, + 6580, + 6581, + 6582, + 6583, + 6584, + 6585, + 6586, + 6587, + 6588, + 6589, + 6590, + 6591, + 6592, + 6593, + 6594, + 6595, + 6596, + 6597, + 6598, + 6599, + 6600, + 6601, + 6602, + 6603, + 6604, + 6605, + 6606, + 6607, + 6608, + 6609, + 6610, + 6611, + 6612, + 6613, + 6614, + 6615, + 6616, + 6617, + 6618, + 6619, + 6620, + 6621, + 6622, + 6623, + 6624, + 6625, + 6626, + 6627, + 6628, + 6629, + 6630, + 6631, + 6632, + 6633, + 6634, + 6635, + 6636, + 6637, + 6638, + 6639, + 6640, + 6641, + 6642, + 6643, + 6644, + 6645, + 6646, + 6647, + 6648, + 6649, + 6650, + 6651, + 6652, + 6653, + 6654, + 6655, + 6656, + 6657, + 6658, + 6659, + 6660, + 6661, + 6662, + 6663, + 6664, + 6665, + 6666, + 6667, + 6668, + 6669, + 6670, + 6671, + 6672, + 6673, + 6674, + 6675, + 6676, + 6677, + 6678, + 6679, + 6680, + 6681, + 6682, + 6683, + 6684, + 6685, + 6686, + 6687, + 6688, + 6689, + 6690, + 6691, + 6692, + 6693, + 6694, + 6695, + 6696, + 6697, + 6698, + 6699, + 6700, + 6701, + 6702, + 6703, + 6704, + 6705, + 6706, + 6707, + 6708, + 6709, + 6710, + 6711, + 6712, + 6713, + 6714, + 6715, + 6716, + 6717, + 6718, + 6719, + 6720, + 6721, + 6722, + 6723, + 6724, + 6725, + 6726, + 6727, + 6728, + 6729, + 6730, + 6731, + 6732, + 6733, + 6734, + 6735, + 6736, + 6737, + 6738, + 6739, + 6740, + 6741, + 6742, + 6743, + 6744, + 6745, + 6746, + 6747, + 6748, + 6749, + 6750, + 6751, + 6752, + 6753, + 6754, + 6755, + 6780, + 6781, + 6782, + 6783, + 6784, + 6785, + 6786, + 6787, + 6788, + 6789, + 6790, + 6791, + 6792, + 6793, + 6794, + 6795, + 6796, + 6797, + 6798, + 6799, + 6800, + 6801, + 6802, + 6803, + 6804, + 6805, + 6806, + 6807, + 6808, + 6809, + 6810, + 6811, + 6812, + 6813, + 6814, + 6815, + 6816, + 6817, + 6818, + 6819, + 6820, + 6821, + 6822, + 6823, + 6824, + 6825, + 6826, + 6827, + 6828, + 6829, + 6830, + 6831, + 6832, + 6833, + 6834, + 6835, + 6836, + 6837, + 6838, + 6839, + 6840, + 6841, + 6842, + 6843, + 6844, + 6845, + 6846, + 6847, + 6848, + 6849, + 6850, + 6851, + 6852, + 6853, + 6854, + 6855, + 6856, + 6857, + 6858, + 6859, + 6860, + 6861, + 6862, + 6863, + 6864, + 6865, + 6866, + 6867, + 6868, + 6869, + 6870, + 6871, + 6872, + 6873, + 6874, + 6875, + 6876, + 6877, + 6878, + 6879, + 6880, + 6881, + 6882, + 6883, + 6884, + 6885, + 6886, + 6887, + 6888, + 6889, + 6890, + 6891, + 6892, + 6893, + 6894, + 6895, + 6896, + 6897, + 6898, + 6899, + 6900, + 6901, + 6902, + 6903, + 6904, + 6905, + 6906, + 6907, + 6908, + 6909, + 6910, + 6911, + 6912, + 6913, + 6914, + 6915, + 6916, + 6917, + 6918, + 6919, + 6920, + 6921, + 6922, + 6923, + 6924, + 6925, + 6926, + 6927, + 6928, + 6929, + 6930, + 6931, + 6932, + 6933, + 6934, + 6935, + 6936, + 6937, + 6938, + 6939, + 6940, + 6941, + 6942, + 6943, + 6944, + 6945, + 6946, + 6947, + 6948, + 6949, + 6950, + 6951, + 6952, + 6953, + 6954, + 6955, + 6956, + 6957, + 6958, + 6959, + 6960, + 6961, + 6962, + 6963, + 6964, + 6965, + 6966, + 6967, + 6968, + 6969, + 6970, + 6971, + 6972, + 6973, + 6974, + 6975, + 6976, + 6977, + 6978, + 6979, + 6980, + 6981, + 6982, + 6983, + 6984, + 6985, + 6986, + 6987, + 6988, + 6989, + 6990, + 6991, + 6992, + 6993, + 6994, + 6995, + 6996, + 6997, + 6998, + 6999, + 7000, + 7001, + 7002, + 7003, + 7004, + 7005, + 7006, + 7007, + 7008, + 7009, + 7010, + 7011, + 7012, + 7013, + 7014, + 7015, + 7016, + 7017, + 7018, + 7019, + 7020, + 7021, + 7022, + 7023, + 7024, + 7025, + 7026, + 7027, + 7028, + 7029, + 7030, + 7031, + 7032, + 7033, + 7034, + 7035, + 7036, + 7037, + 7038, + 7039, + 7040, + 7041, + 7042, + 7043, + 7044, + 7045, + 7046, + 7047, + 7048, + 7049, + 7050, + 7051, + 7052, + 7053, + 7054, + 7055, + 7056, + 7057, + 7058, + 7059, + 7060, + 7061, + 7062, + 7063, + 7064, + 7065, + 7066, + 7067, + 7068, + 7069, + 7070, + 7071, + 7072, + 7073, + 7074, + 7075, + 7076, + 7077, + 7078, + 7079, + 7080, + 7081, + 7082, + 7083, + 7084, + 7085, + 7086, + 7087, + 7088, + 7089, + 7090, + 7091, + 7092, + 7093, + 7094, + 7095, + 7096, + 7097, + 7098, + 7099, + 7100, + 7101, + 7102, + 7103, + 7104, + 7105, + 7106, + 7107, + 7108, + 7109, + 7110, + 7111, + 7112, + 7113, + 7114, + 7115, + 7116, + 7117, + 7118, + 7119, + 7120, + 7121, + 7122, + 7123, + 7124, + 7125, + 7126, + 7127, + 7128, + 7129, + 7130, + 7131, + 7132, + 7133, + 7134, + 7135, + 7136, + 7137, + 7138, + 7139, + 7140, + 7141, + 7142, + 7143, + 7144, + 7145, + 7146, + 7147, + 7148, + 7149, + 7150, + 7151, + 7152, + 7153, + 7154, + 7155, + 7156, + 7157, + 7158, + 7159, + 7160, + 7161, + 7162, + 7163, + 7164, + 7165, + 7166, + 7167, + 7168, + 7169, + 7170, + 7171, + 7172, + 7173, + 7174, + 7175, + 7176, + 7177, + 7178, + 7179, + 7180, + 7181, + 7182, + 7183, + 7184, + 7185, + 7186, + 7187, + 7188, + 7189, + 7190, + 7191, + 7192, + 7193, + 7194, + 7195, + 7196, + 7197, + 7198, + 7199, + 7200, + 7201, + 7202, + 7203, + 7204, + 7205, + 7206, + 7207, + 7208, + 7209, + 7210, + 7211, + 7212, + 7213, + 7214, + 7215, + 7216, + 7217, + 7218, + 7219, + 7220, + 7221, + 7222, + 7223, + 7224, + 7225, + 7226, + 7227, + 7228, + 7229, + 7230, + 7231, + 7232, + 7233, + 7234, + 7235, + 7236, + 7237, + 7238, + 7239, + 7240, + 7241, + 7242, + 7243, + 7244, + 7245, + 7246, + 7247, + 7248, + 7249, + 7250, + 7251, + 7252, + 7253, + 7254, + 7255, + 7256, + 7257, + 7258, + 7259, + 7260, + 7261, + 7262, + 7263, + 7264, + 7265, + 7266, + 7267, + 7268, + 7269, + 7270, + 7271, + 7272, + 7273, + 7274, + 7275, + 7276, + 7277, + 7278, + 7279, + 7280, + 7281, + 7282, + 7283, + 7284, + 7285, + 7286, + 7287, + 7288, + 7289, + 7290, + 7291, + 7292, + 7293, + 7294, + 7295, + 7296, + 7297, + 7298, + 7299, + 7300, + 7301, + 7302, + 7303, + 7304, + 7305, + 7306, + 7307, + 7308, + 7309, + 7310, + 7311, + 7312, + 7313, + 7314, + 7315, + 7316, + 7317, + 7318, + 7319, + 7320, + 7321, + 7322, + 7323, + 7324, + 7325, + 7326, + 7327, + 7328, + 7329, + 7330, + 7331, + 7332, + 7333, + 7334, + 7335, + 7336, + 7337, + 7338, + 7339, + 7340, + 7341, + 7342, + 7343, + 7344, + 7345, + 7346, + 7347, + 7348, + 7349, + 7350, + 7351, + 7352, + 7353, + 7354, + 7355, + 7356, + 7357, + 7358, + 7359, + 7360, + 7361, + 7362, + 7363, + 7364, + 7365, + 7366, + 7367, + 7368, + 7369, + 7370, + 7371, + 7372, + 7373, + 7374, + 7375, + 7376, + 7377, + 7378, + 7379, + 7380, + 7381, + 7382, + 7383, + 7384, + 7385, + 7386, + 7387, + 7388, + 7389, + 7390, + 7391, + 7392, + 7393, + 7394, + 7395, + 7396, + 7397, + 7398, + 7399, + 7400, + 7401, + 7402, + 7403, + 7404, + 7405, + 7406, + 7407, + 7408, + 7409, + 7410, + 7411, + 7412, + 7413, + 7414, + 7415, + 7416, + 7417, + 7418, + 7419, + 7420, + 7421, + 7422, + 7423, + 7424, + 7425, + 7426, + 7427, + 7428, + 7429, + 7430, + 7431, + 7432, + 7433, + 7434, + 7435, + 7436, + 7437, + 7438, + 7439, + 7440, + 7441, + 7442, + 7443, + 7444, + 7445, + 7446, + 7447, + 7448, + 7449, + 7450, + 7451, + 7452, + 7453, + 7454, + 7455, + 7456, + 7457, + 7458, + 7459, + 7460, + 7461, + 7462, + 7463, + 7464, + 7465, + 7466, + 7467, + 7468, + 7469, + 7470, + 7471, + 7472, + 7473, + 7474, + 7475, + 7476, + 7477, + 7478, + 7479, + 7480, + 7481, + 7482, + 7483, + 7484, + 7485, + 7486, + 7487, + 7488, + 7489, + 7490, + 7491, + 7492, + 7493, + 7494, + 7495, + 7496, + 7497, + 7498, + 7499, + 7500, + 7501, + 7502, + 7503, + 7504, + 7505, + 7506, + 7507, + 7508, + 7509, + 7510, + 7511, + 7512, + 7513, + 7514, + 7515, + 7516, + 7517, + 7518, + 7519, + 7520, + 7521, + 7522, + 7523, + 7524, + 7525, + 7526, + 7527, + 7528, + 7529, + 7530, + 7531, + 7532, + 7533, + 7534, + 7535, + 7536, + 7537, + 7538, + 7539, + 7540, + 7541, + 7542, + 7543, + 7544, + 7545, + 7546, + 7547, + 7548, + 7549, + 7550, + 7551 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"pasted__pasted__pasted__pCylinder696", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.440046310424805, + 1.2660449743270874, + 16.585969924926758 + ] + }, + { + "mesh":1, + "name":"Circle3055", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.3328157663345337, + 3.6717348098754883 + ] + }, + { + "mesh":2, + "name":"Rectangle1191", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.439973831176758, + 0.2190920114517212, + 16.649982452392578 + ] + }, + { + "mesh":3, + "name":"Object2387", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.129093050956726, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube168", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":4, + "name":"Circle2959", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.896797776222229, + 4.389941692352295 + ] + }, + { + "mesh":5, + "name":"Object2571", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.816843032836914, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6, + "name":"Circle3034", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1214122772216797, + 3.6717348098754883 + ] + }, + { + "mesh":7, + "name":"polySurface311", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.950403213500977, + 1.4009376764297485, + 13.790300369262695 + ] + }, + { + "mesh":8, + "name":"Obj3d66-647191-16-686", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567060470581055, + 1.6718100309371948, + -15.60374927520752 + ] + }, + { + "mesh":9, + "name":"Rectangle603", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.652071952819824, + 0.14451777935028076, + 16.01140785217285 + ] + }, + { + "mesh":10, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube289", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.925851821899414, + 1.3735631704330444, + 0.08590080589056015 + ] + }, + { + "mesh":11, + "name":"Object2675", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.790124893188477, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":12, + "name":"Circle3102", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.997618556022644, + 2.9050936698913574 + ] + }, + { + "mesh":13, + "name":"Circle1759", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.128690719604492, + 1.5584653615951538, + -5.983696460723877 + ] + }, + { + "mesh":14, + "name":"pasted__pasted__pCube666", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939353942871094, + 5.073940753936768, + 2.280115842819214 + ] + }, + { + "mesh":15, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder095", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.101566314697266, + 1.4834917783737183, + 5.366715908050537 + ] + }, + { + "mesh":16, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube413", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073788642883301, + 1.0402315855026245, + 3.0483596324920654 + ] + }, + { + "mesh":17, + "name":"Circle2889", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.035717010498047, + 1.8128453493118286, + 1.3178602457046509 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__polySurface020", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":18, + "name":"Rectangle885", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.624292373657227, + 0.3068186044692993, + -5.439942836761475 + ] + }, + { + "mesh":19, + "name":"Circle3251", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.024694442749023, + 1.8454612493515015, + 4.380280017852783 + ] + }, + { + "mesh":20, + "name":"pasted__pasted__pCylinder676", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.890144348144531, + 2.1370110511779785, + 5.37495231628418 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface755", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 2.3852198123931885 + ] + }, + { + "mesh":21, + "name":"Circle3054", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.2574313879013062, + 3.6717348098754883 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group144", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.285858154296875 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group126", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -6.0519328117370605 + ] + }, + { + "mesh":22, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube581", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 1.2274452447891235, + -2.6826233863830566 + ] + }, + { + "mesh":23, + "name":"Object2175", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.452676773071289, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":24, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube375", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + -2.958895206451416 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube355", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -1.1389737129211426 + ] + }, + { + "mesh":25, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube254", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.925851821899414, + 1.3735631704330444, + -4.717637062072754 + ] + }, + { + "mesh":26, + "name":"Circle3021", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.86788809299469, + 3.6717348098754883 + ] + }, + { + "mesh":27, + "name":"Circle2424", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08123779296875, + 1.809451699256897, + -2.22849702835083 + ] + }, + { + "mesh":28, + "name":"pasted__pasted__pCylinder500", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.939876556396484, + 2.289264678955078, + 0.7688356637954712 + ] + }, + { + "mesh":29, + "name":"Circle1942", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.212594985961914, + 1.357746958732605, + -5.0364484786987305 + ] + }, + { + "mesh":30, + "name":"pasted__pasted__pasted__pCube703", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033937454223633, + 0.8213735818862915, + 16.828125 + ] + }, + { + "mesh":31, + "name":"Object1914", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.057533264160156, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":32, + "name":"Rectangle812", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4617443084716797, + 0.19702470302581787, + -7.999842166900635 + ] + }, + { + "mesh":33, + "name":"Rectangle170", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.079984664916992, + 0.1627582311630249, + -12.833106994628906 + ] + }, + { + "mesh":34, + "name":"Circle1795", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03939437866211, + 1.8019732236862183, + -4.776391983032227 + ] + }, + { + "mesh":35, + "name":"pasted__pasted__pCube739", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.35550880432129, + 5.064015865325928, + -0.5186355710029602 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors163", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":36, + "name":"pasted__pasted__pCylinder700", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.900360107421875, + 2.152317523956299, + 4.7186665534973145 + ] + }, + { + "mesh":37, + "name":"pasted__pasted__pCube408.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.458927154541016, + 5.064015865325928, + -7.785749912261963 + ] + }, + { + "mesh":38, + "name":"pasted__pasted__pCube809", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + 4.241084098815918 + ] + }, + { + "mesh":39, + "name":"pasted__pasted__pCylinder739", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.980253219604492, + 5.043131351470947, + 7.802761554718018 + ] + }, + { + "mesh":40, + "name":"pasted__pasted__pasted__pasted__pCylinder852", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.863826751708984, + 0.6754258871078491, + 13.790817260742188 + ] + }, + { + "mesh":41, + "name":"pasted__pasted__pCube678", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939355850219727, + 5.073940753936768, + -1.0453579425811768 + ] + }, + { + "mesh":42, + "name":"Rectangle1273", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.5818748474121094, + 0.33695781230926514, + -2.9385335445404053 + ] + }, + { + "mesh":43, + "name":"pasted__pasted__pasted__pCylinder733", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9350042343139648, + 1.1917003393173218, + -2.0528178215026855 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__polySurface075", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":44, + "name":"pasted__pasted__pasted__pasted__pCylinder889", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.863826751708984, + 0.6754261255264282, + 15.849641799926758 + ] + }, + { + "mesh":45, + "name":"pasted__pasted__pasted__pPlane085", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.430009841918945, + 0.3886607885360718, + 12.952310562133789 + ] + }, + { + "mesh":46, + "name":"Rectangle1374", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8114662170410156, + 0.5975691080093384, + 3.0043246746063232 + ] + }, + { + "mesh":47, + "name":"Circle2196", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.76585578918457, + 1.4791637659072876, + -5.942732810974121 + ] + }, + { + "mesh":48, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface671", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.071154594421387, + 0.7688859701156616, + -4.224803447723389 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface663", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -6.569958209991455 + ] + }, + { + "mesh":49, + "name":"polySurface333", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.99183464050293, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":50, + "name":"Circle2746", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3354610204696655, + 0.17769096791744232 + ] + }, + { + "mesh":51, + "name":"Object2332", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.470956802368164, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":52, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube82", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 1.3735638856887817, + -6.478302001953125 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors146", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":53, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder090", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.19692611694336, + 0.5950978994369507, + 1.1662623882293701 + ] + }, + { + "mesh":54, + "name":"Obj3d66-647191-25-208", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.588727951049805, + 1.664944052696228, + -9.301790237426758 + ] + }, + { + "mesh":55, + "name":"pasted__pasted__pCylinder702", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.918708801269531, + 2.206972122192383, + 4.709350109100342 + ] + }, + { + "mesh":56, + "name":"Circle2490", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.13319969177246, + 1.545251488685608, + -2.7443180084228516 + ] + }, + { + "mesh":57, + "name":"Rectangle425", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + -9.584650993347168 + ] + }, + { + "mesh":58, + "name":"Obj3d66-647191-28-065", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747915267944336, + 1.6571954488754272, + -9.33092975616455 + ] + }, + { + "mesh":59, + "name":"Object1792", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.124554991722107, + 16.99413299560547 + ] + }, + { + "mesh":60, + "name":"Obj3d66-647191-37-402", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.583301544189453, + 1.6739360094070435, + 5.563638210296631 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__polySurface022", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":61, + "name":"Rectangle1446", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384549379348755, + 7.776988506317139 + ] + }, + { + "mesh":62, + "name":"Object2301", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.514554977416992, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":63, + "name":"Circle2125", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.81294822692871, + 1.7231053113937378, + -5.459476947784424 + ] + }, + { + "mesh":64, + "name":"Circle3137", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.01875877380371, + 2.0183701515197754, + 3.6717348098754883 + ] + }, + { + "mesh":65, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder083", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 0.3832782506942749, + 0.9632367491722107 + ] + }, + { + "mesh":66, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube363", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.840339660644531, + 1.2777515649795532, + 5.995390892028809 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube641", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":67, + "name":"Circle2285", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6973201036453247, + -2.22849702835083 + ] + }, + { + "mesh":68, + "name":"pasted__pasted__pasted__pCube683", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.983596801757812, + 1.572085976600647, + 15.543998718261719 + ] + }, + { + "mesh":69, + "name":"pasted__pasted__pCylinder592", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.38266944885254, + 0.12859117984771729, + -0.744597852230072 + ] + }, + { + "mesh":70, + "name":"Circle2975", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9417961835861206, + 4.415293216705322 + ] + }, + { + "mesh":71, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface712", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.309789657592773, + 1.128020167350769, + 12.764594078063965 + ] + }, + { + "mesh":72, + "name":"Rectangle1420", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.844839096069336, + 0.5665737390518188, + 7.877774715423584 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface686", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -6.0519328117370605 + ] + }, + { + "mesh":73, + "name":"Object2120", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.464223861694336, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":74, + "name":"Circle3219", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.128690719604492, + 1.5584653615951538, + 3.1483559608459473 + ] + }, + { + "mesh":75, + "name":"Sphere036", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.720693588256836, + 1.2826753854751587, + -5.874804973602295 + ] + }, + { + "mesh":76, + "name":"Circle3061", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84649085998535, + 1.374463438987732, + 3.259732246398926 + ] + }, + { + "mesh":77, + "name":"Obj3d66-647191-6-441", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3648033142089844, + 1.7554806470870972, + -15.576261520385742 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface714", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.3501960039138794 + ] + }, + { + "mesh":78, + "name":"Object2344", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.454080581665039, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":79, + "name":"pasted__pasted__pasted__pasted__pCylinder484", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.147626876831055, + 0.28987395763397217, + 15.849641799926758 + ] + }, + { + "mesh":80, + "name":"Obj3d66-647191-37-427", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.58609390258789, + 1.6739360094070435, + -9.328766822814941 + ] + }, + { + "mesh":81, + "name":"Rectangle1433", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.73845374584198, + 3.389453172683716 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube652", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":82, + "name":"Rectangle082", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.2268848419189453, + 0.14451849460601807, + -14.047863006591797 + ] + }, + { + "mesh":83, + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface575", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.64222526550293, + 0.6940604448318481, + -3.8812599182128906 + ] + }, + { + "mesh":84, + "name":"pasted__pasted__pasted__pCylinder691", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.365060806274414, + 0.5030606985092163, + 12.947877883911133 + ] + }, + { + "mesh":85, + "name":"Rectangle1387", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 5.51116943359375 + ] + }, + { + "mesh":86, + "name":"polySurface372", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.43229866027832, + 1.4533334970474243, + 16.16686248779297 + ] + }, + { + "mesh":87, + "name":"Object1979", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.085659027099609, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":88, + "name":"Object2162", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.470956802368164, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":89, + "name":"Rectangle1373", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.505002975463867, + 0.2500876188278198, + 3.0043246746063232 + ] + }, + { + "mesh":90, + "name":"Rectangle1190", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.514720916748047, + 0.3059629201889038, + 16.649982452392578 + ] + }, + { + "mesh":91, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface692", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.071154594421387, + 1.3063827753067017, + 1.8187810182571411 + ] + }, + { + "mesh":92, + "name":"pasted__pasted__pasted__pCylinder627", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.641426086425781, + 1.2660449743270874, + 12.94787883758545 + ] + }, + { + "mesh":93, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder129", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.39808464050293, + 2.0703248977661133, + 6.627656936645508 + ] + }, + { + "mesh":94, + "name":"Obj3d66-647191-7-348", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.735698699951172, + 1.6444579362869263, + -9.321905136108398 + ] + }, + { + "mesh":95, + "name":"Object2447", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.871686935424805, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":96, + "name":"pasted__pasted__pCube726", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.35550880432129, + 5.064015865325928, + 3.3741230964660645 + ] + }, + { + "mesh":97, + "name":"pasted__pasted__pasted__pCylinder159", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.706984519958496, + 0.5030606985092163, + 12.947877883911133 + ] + }, + { + "mesh":98, + "name":"Obj3d66-647191-15-292", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567060470581055, + 1.6626402139663696, + -15.60374927520752 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube205", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.2695987224578857 + ] + }, + { + "mesh":99, + "name":"Rectangle602", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.652071952819824, + 0.14451777935028076, + 16.01140785217285 + ] + }, + { + "mesh":100, + "name":"Box199", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.022212028503418, + 1.0034366846084595, + -13.768403053283691 + ] + }, + { + "mesh":101, + "name":"Circle3101", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.008871555328369, + 2.8987553119659424 + ] + }, + { + "mesh":102, + "name":"Object2356", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.437206268310547, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":103, + "name":"Circle1758", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.124176025390625, + 1.5716794729232788, + -5.9912543296813965 + ] + }, + { + "mesh":104, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface106", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.609533309936523, + 0.699180006980896, + 4.470975399017334 + ] + }, + { + "mesh":105, + "name":"Circle1700", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10328483581543, + 1.7357155084609985, + -5.460317134857178 + ] + }, + { + "mesh":106, + "name":"pasted__pasted__pCube665", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + -1.6126435995101929 + ] + }, + { + "mesh":107, + "name":"pasted__pasted__pasted__pasted__polySurface324", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.977703094482422, + 0.251440167427063, + 15.849641799926758 + ] + }, + { + "mesh":108, + "name":"Circle1765", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.946138381958008, + 2.0792741775512695, + -6.289397239685059 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface754", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 2.3852198123931885 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube400", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.285858154296875 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__polySurface059", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door100", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -6.0519328117370605 + ] + }, + { + "mesh":109, + "name":"Object2174", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.454080581665039, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube561", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":110, + "name":"pasted__pasted__pCube816", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.04460334777832, + 2.603695869445801, + 7.7670063972473145 + ] + }, + { + "mesh":111, + "name":"Circle1982", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.6506258249282837, + -5.459476947784424 + ] + }, + { + "mesh":112, + "name":"Circle2627", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.517868041992188, + 1.1369620561599731, + 0.6277793645858765 + ] + }, + { + "mesh":113, + "name":"polySurface377", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.430700302124023, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":114, + "name":"Rectangle1293", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 0.41887366771698 + ] + }, + { + "mesh":115, + "name":"Rectangle1037", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 7.322399139404297, + 0.14451825618743896, + 13.821612358093262 + ] + }, + { + "mesh":116, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder43", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 1.3803664445877075, + -4.717060565948486 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface722", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -0.00834827870130539 + ] + }, + { + "mesh":117, + "name":"pasted__pasted__pasted__pCube702", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033937454223633, + 0.9795023202896118, + 16.828125 + ] + }, + { + "mesh":118, + "name":"Rectangle079", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.1380653381347656, + 0.6166733503341675, + -13.69323444366455 + ] + }, + { + "mesh":119, + "name":"Rectangle811", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.3848743438720703, + 0.2838946580886841, + -7.999842166900635 + ] + }, + { + "mesh":120, + "name":"Rectangle168", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.323970794677734, + 0.6844395399093628, + -13.036763191223145 + ] + }, + { + "mesh":121, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface727", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.68073081970215, + 1.128020167350769, + 12.764594078063965 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube580", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":122, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder078", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 1.3803664445877075, + 0.37563207745552063 + ] + }, + { + "mesh":123, + "name":"pasted__pasted__pCube407.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.458232879638672, + 5.073940753936768, + -6.917383193969727 + ] + }, + { + "mesh":124, + "name":"Circle2795", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10328483581543, + 1.7357155084609985, + 0.6277796030044556 + ] + }, + { + "mesh":125, + "name":"Rectangle1367", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7360172271728516, + 0.510698676109314, + 3.0043246746063232 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube512", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":126, + "name":"pasted__pasted__pCube677", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + -1.3464406728744507 + ] + }, + { + "mesh":127, + "name":"pasted__pasted__pasted__pCylinder732", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.923750877380371, + 1.0846668481826782, + -1.9208022356033325 + ] + }, + { + "mesh":128, + "name":"pasted__pasted__pCylinder727", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.292848587036133, + 4.9288010597229, + 5.477010726928711 + ] + }, + { + "mesh":129, + "name":"pasted__pasted__pasted__pPlane086", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.8619384765625, + 0.3886607885360718, + 12.952310562133789 + ] + }, + { + "mesh":130, + "name":"Circle2195", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.69016456604004, + 1.29023015499115, + -5.825392246246338 + ] + }, + { + "mesh":131, + "name":"Obj3d66-647191-24-606", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.57307243347168, + 1.658399224281311, + 18.297834396362305 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube471", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":132, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube274", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 0.3764752149581909, + -0.21040046215057373 + ] + }, + { + "mesh":133, + "name":"Circle2703", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6712626218795776, + 0.044943299144506454 + ] + }, + { + "mesh":134, + "name":"Object2625", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.860437393188477, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":135, + "name":"Object2331", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.472362518310547, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":136, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube575", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 0.9979482889175415, + -9.316967964172363 + ] + }, + { + "mesh":137, + "name":"pasted__pasted__pCube769", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + 4.507286548614502 + ] + }, + { + "mesh":138, + "name":"Circle1994", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.1721177101135254, + -5.459476947784424 + ] + }, + { + "mesh":139, + "name":"pasted__pasted__pasted__pCylinder152", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.355897903442383, + 0.9016944169998169, + 12.94787883758545 + ] + }, + { + "mesh":140, + "name":"Obj3d66-647191-24-608", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.592382431030273, + 1.658399224281311, + -9.301790237426758 + ] + }, + { + "mesh":141, + "name":"Circle1946", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116270065307617, + 1.3792201280593872, + -5.074789524078369 + ] + }, + { + "mesh":142, + "name":"Circle2489", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.128690719604492, + 1.5584653615951538, + -2.751875877380371 + ] + }, + { + "mesh":143, + "name":"Circle1840", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.943830490112305, + 2.0095105171203613, + -4.667108535766602 + ] + }, + { + "mesh":144, + "name":"Circle2590", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.585366129875183, + 1.1705245971679688 + ] + }, + { + "mesh":145, + "name":"Rectangle827", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.3848743438720703, + 0.2838946580886841, + -1.6680387258529663 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__polySurface069", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":146, + "name":"Circle1589", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10127067565918, + 1.118975043296814, + -5.460318088531494 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube180", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":147, + "name":"Circle3248", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.969566345214844, + 2.0085415840148926, + 4.472604751586914 + ] + }, + { + "mesh":148, + "name":"Object2658", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.814029693603516, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":149, + "name":"Circle2124", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.81662368774414, + 1.735397219657898, + -5.459476947784424 + ] + }, + { + "mesh":150, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube303", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.925851821899414, + 0.3764752149581909, + 0.9626604914665222 + ] + }, + { + "mesh":151, + "name":"Circle2217", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7955507040023804, + -1.5673332214355469 + ] + }, + { + "mesh":152, + "name":"pasted__pasted__pCube522", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.454730987548828, + 0.8970309495925903, + -7.571356773376465 + ] + }, + { + "mesh":153, + "name":"Circle2284", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7128852605819702, + -2.22849702835083 + ] + }, + { + "mesh":154, + "name":"pasted__pasted__pCylinder591", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.28593635559082, + 5.0585036277771, + 2.3779728412628174 + ] + }, + { + "mesh":155, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube335", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.057670593261719, + 1.4264699220657349, + -4.320192813873291 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube410", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":156, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube259", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + 0.9554089903831482 + ] + }, + { + "mesh":157, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface114", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.421005249023438, + 0.20360338687896729, + 4.525991916656494 + ] + }, + { + "mesh":158, + "name":"pasted__pasted__pasted__pCube634", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 1.0594738721847534, + -1.0830243825912476 + ] + }, + { + "mesh":159, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface110", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.517623901367188, + 0.256367564201355, + 4.382390975952148 + ] + }, + { + "mesh":160, + "name":"pasted__pasted__pCylinder16", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.957210540771484, + 2.344217300415039, + -4.901966571807861 + ] + }, + { + "mesh":161, + "name":"Circle2520", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.021020889282227, + 1.8563331365585327, + -1.513796329498291 + ] + }, + { + "mesh":162, + "name":"Object2365", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.424551010131836, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube595", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":163, + "name":"pasted__pasted__pCube629", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.897438049316406, + 2.6223349571228027, + 2.472987413406372 + ] + }, + { + "mesh":164, + "name":"Circle026", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.02294921875, + 5.602292060852051, + -15.681375503540039 + ] + }, + { + "mesh":165, + "name":"Object2343", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.455486297607422, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":166, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder33", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 1.3803664445877075, + -5.887144565582275 + ] + }, + { + "mesh":167, + "name":"pasted__pasted__pasted__pasted__pCylinder483", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.068897247314453, + 0.28987395763397217, + 15.99779224395752 + ] + }, + { + "mesh":168, + "name":"Circle2373", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.986364483833313, + -2.988800525665283 + ] + }, + { + "mesh":169, + "name":"Obj3d66-647191-36-153", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.58609390258789, + 1.6647711992263794, + -9.328766822814941 + ] + }, + { + "mesh":170, + "name":"Rectangle083", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.2268848419189453, + 0.14451849460601807, + -13.339606285095215 + ] + }, + { + "mesh":171, + "name":"Circle2340", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6937700510025024, + -2.8240091800689697 + ] + }, + { + "mesh":172, + "name":"pasted__pasted__pPipe104", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.67438316345215, + 1.0760306119918823, + -0.7465048432350159 + ] + }, + { + "mesh":173, + "name":"polySurface371", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.321346282958984, + 1.4009381532669067, + 16.16634750366211 + ] + }, + { + "mesh":174, + "name":"Circle001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.596254348754883, + -0.6052366495132446, + 9.123933792114258 + ] + }, + { + "mesh":175, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder124", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.196521759033203, + 0.4397674798965454, + 4.183427333831787 + ] + }, + { + "mesh":176, + "name":"Object2161", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.472362518310547, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":177, + "name":"Object119", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.813268661499023, + 0.6837154626846313, + -13.935766220092773 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube340", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":178, + "name":"Rectangle1252", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.251155853271484, + 0.14451849460601807, + -3.2701363563537598 + ] + }, + { + "mesh":179, + "name":"pasted__pasted__pasted__pCylinder626", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.641426086425781, + 0.9016944169998169, + 12.94787883758545 + ] + }, + { + "mesh":180, + "name":"Circle2498", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3712199926376343, + -2.605056047439575 + ] + }, + { + "mesh":181, + "name":"Obj3d66-647191-14-926", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567289352416992, + 1.672275424003601, + -15.60374927520752 + ] + }, + { + "mesh":182, + "name":"pasted__pasted__pasted__pCylinder671", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.281946182250977, + 1.2660449743270874, + 12.94787883758545 + ] + }, + { + "mesh":183, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube288", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + 0.08924408257007599 + ] + }, + { + "mesh":184, + "name":"polySurface100", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.731483459472656, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":185, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface588", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9352035522460938, + 1.2666808366775513, + -8.006787300109863 + ] + }, + { + "mesh":186, + "name":"Object2355", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.438610076904297, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":187, + "name":"Circle1757", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.119661331176758, + 1.584893822669983, + -5.9988112449646 + ] + }, + { + "mesh":188, + "name":"Rectangle1122", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.557981491088867, + 0.14451777935028076, + 15.133939743041992 + ] + }, + { + "mesh":189, + "name":"pasted__pasted__pCube664", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + -1.913725733757019 + ] + }, + { + "mesh":190, + "name":"pasted__pasted__pCylinder21.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.007722854614258, + 2.4979376792907715, + -5.591787338256836 + ] + }, + { + "mesh":191, + "name":"pasted__pasted__pCube758", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + 5.619746208190918 + ] + }, + { + "mesh":192, + "name":"pasted__pasted__pCube794", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + 6.318831443786621 + ] + }, + { + "mesh":193, + "name":"Circle3241", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.980588912963867, + 1.9759255647659302, + 4.4541401863098145 + ] + }, + { + "mesh":194, + "name":"Obj3d66-647191-20-045", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.528425216674805, + 1.6739333868026733, + 5.563638210296631 + ] + }, + { + "mesh":195, + "name":"Rectangle1178", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.681344985961914, + 0.35186755657196045, + 12.348284721374512 + ] + }, + { + "mesh":196, + "name":"Circle2814", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.000385284423828, + 1.9341775178909302, + -0.11047922819852829 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube399", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.285858154296875 + ] + }, + { + "mesh":197, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface695", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.071154594421387, + 0.9432286024093628, + 1.8187812566757202 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube548", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":198, + "name":"pasted__pasted__pTorus3.007", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.61126708984375, + 5.048586368560791, + -5.679728031158447 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube496", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":199, + "name":"Circle2229", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.896797776222229, + -1.5102903842926025 + ] + }, + { + "mesh":200, + "name":"Object2173", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.455486297607422, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":201, + "name":"Circle3037", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0833840370178223, + 3.6717348098754883 + ] + }, + { + "mesh":202, + "name":"Circle2626", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.934459686279297, + 1.118975043296814, + 0.6277793645858765 + ] + }, + { + "mesh":203, + "name":"pasted__pasted__pasted__pasted__pCylinder481", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.807779312133789, + 0.28987395763397217, + 15.849641799926758 + ] + }, + { + "mesh":204, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube253", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + -5.006476402282715 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube369", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -0.00834827870130539 + ] + }, + { + "mesh":205, + "name":"pasted__pasted__pCylinder498", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.922542572021484, + 2.2343087196350098, + 0.759351909160614 + ] + }, + { + "mesh":206, + "name":"pasted__pasted__pasted__pCube701", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 1.2411547899246216, + 16.828125 + ] + }, + { + "name":"VRaySun001.Target", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 11.083284378051758, + -6.8896613121032715, + 3.4958810806274414 + ] + }, + { + "mesh":207, + "name":"Rectangle810", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.215822219848633, + 0.10969555377960205, + -8.19820499420166 + ] + }, + { + "mesh":208, + "name":"Rectangle167", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.323970794677734, + 0.42382848262786865, + -12.738801002502441 + ] + }, + { + "mesh":209, + "name":"Rectangle1430", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384535074234009, + 2.8004064559936523 + ] + }, + { + "mesh":210, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube336", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + 4.495677471160889 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube397", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":211, + "name":"pasted__pasted__pCylinder730", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.874229431152344, + 4.853360652923584, + 6.812175273895264 + ] + }, + { + "mesh":212, + "name":"Circle3205", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.073888778686523, + 1.7189406156539917, + 3.0565762519836426 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube579", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":213, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube295", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.43475341796875, + 0.37188422679901123, + 0.10443677008152008 + ] + }, + { + "mesh":214, + "name":"pasted__pasted__pCube406.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.458927154541016, + 5.064015865325928, + -7.218465805053711 + ] + }, + { + "mesh":215, + "name":"Rectangle1312", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -0.8613712191581726 + ] + }, + { + "mesh":216, + "name":"pasted__pasted__pCube676", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939355850219727, + 5.073940753936768, + -0.4780728220939636 + ] + }, + { + "mesh":217, + "name":"pasted__pasted__pasted__pCylinder731", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.923750877380371, + 1.2619186639785767, + -1.9208024740219116 + ] + }, + { + "mesh":218, + "name":"pasted__pasted__pTorus057", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.092384338378906, + 5.048586368560791, + 4.145020484924316 + ] + }, + { + "mesh":219, + "name":"Rectangle1372", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.5818748474121094, + 0.33695781230926514, + 3.0043246746063232 + ] + }, + { + "mesh":220, + "name":"Circle2194", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.683805465698242, + 1.2369600534439087, + -5.814737796783447 + ] + }, + { + "mesh":221, + "name":"Circle2504", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.991617202758789, + 1.9433091878890991, + -1.464556336402893 + ] + }, + { + "mesh":222, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube356", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + -9.103116989135742 + ] + }, + { + "mesh":223, + "name":"Obj3d66-647191-23-244", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567060470581055, + 1.6626402139663696, + 18.269939422607422 + ] + }, + { + "mesh":224, + "name":"Circle1575", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84649085998535, + 1.357746958732605, + -5.037290096282959 + ] + }, + { + "mesh":225, + "name":"Object1798", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.0973228216171265, + 16.99413299560547 + ] + }, + { + "mesh":226, + "name":"Circle2698", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.379219889640808, + 0.25411713123321533 + ] + }, + { + "mesh":227, + "name":"Object2330", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.473770141601562, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":228, + "name":"pasted__pasted__pCube391", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + -5.218923091888428 + ] + }, + { + "mesh":229, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube81", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + -6.189472198486328 + ] + }, + { + "mesh":230, + "name":"Circle1993", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.184793472290039, + -5.459476947784424 + ] + }, + { + "mesh":231, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube307", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.403501510620117, + 1.4892536401748657, + 1.0923415422439575 + ] + }, + { + "mesh":232, + "name":"pasted__pasted__pasted__pCylinder151", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.355897903442383, + 1.2660449743270874, + 12.94787883758545 + ] + }, + { + "mesh":233, + "name":"Circle2254", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3296104669570923, + -1.7220503091812134 + ] + }, + { + "mesh":234, + "name":"pasted__pasted__pCylinder12.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.927888870239258, + 2.234297275543213, + -6.262051582336426 + ] + }, + { + "mesh":235, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube574", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 1.3661421537399292, + -9.316967964172363 + ] + }, + { + "mesh":236, + "name":"Circle2634", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.757936477661133, + 1.3985601663589478, + 0.6277793645858765 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube653", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":237, + "name":"Obj3d66-647191-26-578", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747915267944336, + 1.670127511024475, + -9.336718559265137 + ] + }, + { + "mesh":238, + "name":"Object1790", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.1336320638656616, + 16.99413299560547 + ] + }, + { + "mesh":239, + "name":"Obj3d66-647191-35-096", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.528425216674805, + 1.6647711992263794, + 5.563638210296631 + ] + }, + { + "mesh":240, + "name":"Object2299", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.397829055786133, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":241, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube302", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.925851821899414, + 1.3735631704330444, + 0.9626604914665222 + ] + }, + { + "mesh":242, + "name":"pasted__pasted__pCube528", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.472095489501953, + -0.4261718988418579, + -7.501797199249268 + ] + }, + { + "mesh":243, + "name":"pasted__pasted__pCylinder669", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.826833724975586, + 1.9426668882369995, + 5.37495231628418 + ] + }, + { + "name":"Camera011.Target", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -27.219045639038086, + 4.703145980834961, + 21.527223587036133 + ] + }, + { + "mesh":244, + "name":"Rectangle786", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451777935028076, + -4.7472429275512695 + ] + }, + { + "mesh":245, + "name":"Circle2283", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7284499406814575, + -2.22849702835083 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface724", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -0.00834827870130539 + ] + }, + { + "mesh":246, + "name":"pasted__pasted__pTorus3.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.367027282714844, + 5.048586368560791, + -7.037423610687256 + ] + }, + { + "mesh":247, + "name":"pasted__pasted__pasted__pasted__pCylinder867", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.602706909179688, + 0.28987395763397217, + 14.672083854675293 + ] + }, + { + "mesh":248, + "name":"Circle2822", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.967308044433594, + 2.031033992767334, + -0.1658741533756256 + ] + }, + { + "mesh":249, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder055", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.101566314697266, + 1.4834917783737183, + 0.0802735984325409 + ] + }, + { + "mesh":250, + "name":"pasted__pasted__pCylinder15", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.94854736328125, + 2.3167409896850586, + -4.90671443939209 + ] + }, + { + "mesh":251, + "name":"Object2626", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.859031677246094, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":252, + "name":"Object2118", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.477869033813477, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":253, + "name":"Circle3184", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.989358901977539, + 1.96646249294281, + 2.915011405944824 + ] + }, + { + "mesh":254, + "name":"Circle1640", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.020125389099121, + -6.2396345138549805 + ] + }, + { + "mesh":255, + "name":"pasted__pasted__pCube628", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.044599533081055, + 2.603695869445801, + 2.480562686920166 + ] + }, + { + "mesh":256, + "name":"Circle025", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.02294921875, + 2.8380203247070312, + -15.681375503540039 + ] + }, + { + "mesh":257, + "name":"Object2342", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.456893920898438, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":258, + "name":"pasted__pasted__pCylinder335.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.39310646057129, + 4.853360652923584, + -7.023014068603516 + ] + }, + { + "mesh":259, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube238", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + -5.884357452392578 + ] + }, + { + "mesh":260, + "name":"Circle2473", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0665340423584, + 1.7404643297195435, + -2.855966091156006 + ] + }, + { + "mesh":261, + "name":"Circle3127", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.98200798034668, + 2.141263961791992, + 3.6717348098754883 + ] + }, + { + "mesh":262, + "name":"pasted__pasted__pasted__pCylinder447", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.929457664489746, + 0.8645821809768677, + -7.678404808044434 + ] + }, + { + "mesh":263, + "name":"Circle2113", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.857046127319336, + 1.8706048727035522, + -5.459476947784424 + ] + }, + { + "mesh":264, + "name":"Obj3d66-647191-35-121", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.58609390258789, + 1.6647711992263794, + -9.273892402648926 + ] + }, + { + "mesh":265, + "name":"Object2087", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.138170599937439, + 16.99413299560547 + ] + }, + { + "mesh":266, + "name":"Rectangle078", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.390840530395508, + 0.14451849460601807, + -13.339606285095215 + ] + }, + { + "mesh":267, + "name":"Circle2339", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6825164556503296, + -2.817671060562134 + ] + }, + { + "mesh":268, + "name":"pasted__pasted__pCube813", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.309444427490234, + 1.7704380750656128, + 3.155787467956543 + ] + }, + { + "mesh":269, + "name":"polySurface370", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.335481643676758, + 1.4434689283370972, + 16.166187286376953 + ] + }, + { + "mesh":270, + "name":"Shape002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.821920394897461, + 0.14451754093170166, + -0.5458017587661743 + ] + }, + { + "mesh":271, + "name":"Object2311", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.50048828125, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube406", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":272, + "name":"Object2160", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.473770141601562, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":273, + "name":"pasted__pasted__pCube420", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.229730606079102, + 1.5606979131698608, + -5.404972553253174 + ] + }, + { + "mesh":274, + "name":"Rectangle033", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.42422103881836, + 0.14451849460601807, + -14.047863006591797 + ] + }, + { + "mesh":275, + "name":"Circle030", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.491086959838867, + 5.853470802307129, + -3.355707883834839 + ] + }, + { + "mesh":276, + "name":"pasted__pasted__pasted__pasted__pCylinder795", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.492883682250977, + 0.6754258871078491, + 13.790817260742188 + ] + }, + { + "mesh":277, + "name":"Rectangle1188", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.609027862548828, + 0.04489290714263916, + 16.88002586364746 + ] + }, + { + "mesh":278, + "name":"Rectangle1163", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.14859962463379, + 0.5755866765975952, + 15.577927589416504 + ] + }, + { + "mesh":279, + "name":"Line2402", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.174484252929688, + 2.686333179473877, + -4.50252103805542 + ] + }, + { + "mesh":280, + "name":"Obj3d66-647191-9-481", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8686857223510742, + 1.2934056520462036, + -8.654302597045898 + ] + }, + { + "mesh":281, + "name":"pasted__pasted__pasted__pasted__pCylinder848", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.602706909179688, + 0.28987395763397217, + 13.642666816711426 + ] + }, + { + "mesh":282, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface737", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.071154594421387, + 1.3063827753067017, + 7.761640548706055 + ] + }, + { + "mesh":283, + "name":"pasted__pasted__pasted__pCylinder625", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.052242279052734, + 0.5030606985092163, + 12.947877883911133 + ] + }, + { + "mesh":284, + "name":"pasted__pasted__pCylinder3.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.844924926757812, + 1.9981945753097534, + -5.591787338256836 + ] + }, + { + "mesh":285, + "name":"Circle2497", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.418618083000183, + -2.5602052211761475 + ] + }, + { + "mesh":286, + "name":"Obj3d66-647191-13-186", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.568323135375977, + 1.6729644536972046, + -15.60374927520752 + ] + }, + { + "mesh":287, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube357", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + -8.415642738342285 + ] + }, + { + "mesh":288, + "name":"pasted__pasted__pasted__pPlane307", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.579702377319336, + 0.38407838344573975, + 12.949873924255371 + ] + }, + { + "mesh":289, + "name":"Circle1793", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.032041549682617, + 1.8237169981002808, + -4.764081954956055 + ] + }, + { + "mesh":290, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube324", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.88755989074707, + 0.3764752149581909, + 5.365196704864502 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube577", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":291, + "name":"Rectangle1110", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.151447296142578, + 0.14451777935028076, + 12.883796691894531 + ] + }, + { + "mesh":292, + "name":"Obj3d66-647191-17-859", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4524288177490234, + 1.672275424003601, + 12.119864463806152 + ] + }, + { + "mesh":293, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube626", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 1.2274452447891235, + 2.7338707447052 + ] + }, + { + "mesh":294, + "name":"Object2354", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.440017700195312, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":295, + "name":"Circle1756", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.115150451660156, + 1.598108172416687, + -6.006369590759277 + ] + }, + { + "mesh":296, + "name":"pasted__pasted__pCylinder20.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.998678207397461, + 2.470174789428711, + -5.591787338256836 + ] + }, + { + "mesh":297, + "name":"pasted__pasted__pCylinder645", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.025810241699219, + 2.5534653663635254, + 5.37495231628418 + ] + }, + { + "mesh":298, + "name":"Obj3d66-647191-19-268", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.528425216674805, + 1.6718100309371948, + 5.563363075256348 + ] + }, + { + "mesh":299, + "name":"Rectangle1173", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.92892837524414, + 0.14451777935028076, + 15.133939743041992 + ] + }, + { + "mesh":300, + "name":"pasted__pasted__pCylinder733", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.980249404907227, + 5.043131351470947, + 3.1224100589752197 + ] + }, + { + "mesh":301, + "name":"pasted__pasted__pPipe109", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.871406555175781, + 1.845382809638977, + 5.362974166870117 + ] + }, + { + "mesh":302, + "name":"Circle2468", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.048160552978516, + 1.7942734956741333, + -2.8867409229278564 + ] + }, + { + "mesh":303, + "name":"Circle2815", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.974660873413086, + 2.009509563446045, + -0.1535642147064209 + ] + }, + { + "mesh":304, + "name":"Circle2625", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.934459686279297, + 1.118975043296814, + 0.31954097747802734 + ] + }, + { + "mesh":305, + "name":"Rectangle1288", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -0.4316885471343994 + ] + }, + { + "mesh":306, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder42", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 0.3832782506942749, + -5.009254455566406 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube368", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -0.00834827870130539 + ] + }, + { + "mesh":307, + "name":"pasted__pasted__pasted__pCube700", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 1.399283766746521, + 16.828123092651367 + ] + }, + { + "name":"Camera009.Target", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 27.280614852905273, + 8.013439178466797, + 21.45372200012207 + ] + }, + { + "mesh":308, + "name":"Rectangle808", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.215822219848633, + 0.10969555377960205, + -7.810333251953125 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group132", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.3501960039138794 + ] + }, + { + "mesh":309, + "name":"Circle1509", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7730516195297241, + -4.811829566955566 + ] + }, + { + "mesh":310, + "name":"Rectangle166", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.323970794677734, + 0.510698676109314, + -12.818193435668945 + ] + }, + { + "mesh":311, + "name":"Circle2126", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.80927276611328, + 1.7108138799667358, + -5.459476947784424 + ] + }, + { + "mesh":312, + "name":"pasted__pasted__pCube736", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.354814529418945, + 5.073940753936768, + 0.9170178174972534 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface750", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 5.416483402252197 + ] + }, + { + "mesh":313, + "name":"Circle1921", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8850821256637573, + -4.74519157409668 + ] + }, + { + "mesh":314, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube294", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.43475341796875, + 1.429686188697815, + 0.09059258550405502 + ] + }, + { + "mesh":315, + "name":"pasted__pasted__pCube686", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.390501022338867, + 1.082088828086853, + 5.495523452758789 + ] + }, + { + "mesh":316, + "name":"Circle2440", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.4164232015609741, + -2.324821949005127 + ] + }, + { + "mesh":317, + "name":"Circle1501", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6830543279647827, + -4.862534999847412 + ] + }, + { + "mesh":318, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube363", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + -6.647290229797363 + ] + }, + { + "mesh":319, + "name":"pasted__pasted__pCube675", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + -0.7791555523872375 + ] + }, + { + "mesh":320, + "name":"pasted__pasted__pasted__pCube631", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9257087707519531, + 1.055625081062317, + -1.9965523481369019 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube618", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":321, + "name":"pasted__pasted__pasted__pasted__pCylinder810", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231765747070312, + 0.28987395763397217, + 14.672083854675293 + ] + }, + { + "mesh":322, + "name":"Circle3144", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.044485092163086, + 1.9323447942733765, + 3.6717348098754883 + ] + }, + { + "mesh":323, + "name":"Circle3026", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.222822666168213, + 3.6717348098754883 + ] + }, + { + "mesh":324, + "name":"Rectangle1371", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7509279251098633, + 0.1627582311630249, + 3.2898306846618652 + ] + }, + { + "mesh":325, + "name":"polySurface354", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.413721084594727, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":326, + "name":"Obj3d66-647191-22-674", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567289352416992, + 1.6631056070327759, + 18.269939422607422 + ] + }, + { + "mesh":327, + "name":"Rectangle414", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 10.580881118774414, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":328, + "name":"Circle3080", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8850818872451782, + 2.9684746265411377 + ] + }, + { + "mesh":329, + "name":"Circle2697", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1140856742858887, + -0.21095266938209534 + ] + }, + { + "mesh":330, + "name":"pasted__pasted__pCube390", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + -5.750516891479492 + ] + }, + { + "mesh":331, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder28", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + -6.186684608459473 + ] + }, + { + "mesh":332, + "name":"Circle1992", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.197470188140869, + -5.459476947784424 + ] + }, + { + "mesh":333, + "name":"pasted__pasted__pasted__pPlane091", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.653654098510742, + 0.38407886028289795, + 12.949873924255371 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube484", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":334, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder415", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.408634185791016, + 1.1022669076919556, + 5.221619606018066 + ] + }, + { + "mesh":335, + "name":"Circle2253", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3792201280593872, + -1.843550205230713 + ] + }, + { + "mesh":336, + "name":"pasted__pasted__pCylinder11.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.918708801269531, + 2.206972122192383, + -6.257388591766357 + ] + }, + { + "mesh":337, + "name":"Rectangle592", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.652071952819824, + 0.14451825618743896, + 14.283381462097168 + ] + }, + { + "mesh":338, + "name":"Object1828", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.080158233642578, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":339, + "name":"Circle1838", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.9144287109375, + 1.9234157800674438, + -4.716348648071289 + ] + }, + { + "mesh":340, + "name":"Object1789", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.138170599937439, + 16.99413299560547 + ] + }, + { + "mesh":341, + "name":"pasted__pasted__pCylinder731", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.874229431152344, + 4.853360652923584, + 5.47302770614624 + ] + }, + { + "mesh":342, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface238", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.463172912597656, + 1.7867687940597534, + 5.566105365753174 + ] + }, + { + "mesh":343, + "name":"Obj3d66-647191-34-789", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.55632781982422, + 1.6606823205947876, + 5.554258823394775 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors162", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":344, + "name":"Object2298", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.399234771728516, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":345, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder082", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 1.3803664445877075, + 0.9632367491722107 + ] + }, + { + "mesh":346, + "name":"pasted__pasted__pCube565", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.132665634155273, + 3.367274761199951, + -7.466108322143555 + ] + }, + { + "mesh":347, + "name":"pasted__pasted__pCylinder670", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.835880279541016, + 1.9704312086105347, + 5.37495231628418 + ] + }, + { + "mesh":348, + "name":"Circle2529", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.054094314575195, + 1.758485198020935, + -1.569191336631775 + ] + }, + { + "mesh":349, + "name":"Circle2594", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.896797776222229, + 1.3459864854812622 + ] + }, + { + "mesh":350, + "name":"Rectangle785", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -3.886181592941284 + ] + }, + { + "mesh":351, + "name":"Circle2282", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7411259412765503, + -2.22849702835083 + ] + }, + { + "mesh":352, + "name":"pasted__pasted__pCube682", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.309444427490234, + 1.7704380750656128, + 2.4952030181884766 + ] + }, + { + "mesh":353, + "name":"Object2474", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.83371925354004, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":354, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube258", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.723602294921875, + -0.11056673526763916, + 0.09101486206054688 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube536", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":355, + "name":"Rectangle1417", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.255056381225586, + 0.2190920114517212, + 2.7237420082092285 + ] + }, + { + "mesh":356, + "name":"Object2117", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.484697341918945, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":357, + "name":"pasted__pasted__pasted__pCylinder650", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.994119644165039, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "mesh":358, + "name":"pasted__pasted__pPipe081", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.159643173217773, + 2.565361976623535, + 2.4927613735198975 + ] + }, + { + "mesh":359, + "name":"Circle024", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.02294921875, + 0.1445099115371704, + -15.681375503540039 + ] + }, + { + "mesh":360, + "name":"pasted__pasted__pCylinder732", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.874229431152344, + 4.853360652923584, + 4.135452747344971 + ] + }, + { + "mesh":361, + "name":"Rectangle352.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.6212921142578125, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":362, + "name":"Circle3008", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7918308973312378, + 3.6717348098754883 + ] + }, + { + "mesh":363, + "name":"Object2341", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.458301544189453, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":364, + "name":"Circle2103", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.893800735473633, + 1.9935215711593628, + -5.459476947784424 + ] + }, + { + "mesh":365, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube237", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 1.3735631704330444, + -6.178396224975586 + ] + }, + { + "mesh":366, + "name":"Circle2710", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.750038504600525, + 0.0005765259265899658 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube175", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":367, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__polySurface071", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.079298973083496, + 0.7384535074234009, + -3.0780551433563232 + ] + }, + { + "mesh":368, + "name":"Obj3d66-647191-34-814", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.59547233581543, + 1.6606823205947876, + -9.301790237426758 + ] + }, + { + "mesh":369, + "name":"Box203", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457387924194336, + 1.0034366846084595, + 16.95024871826172 + ] + }, + { + "mesh":370, + "name":"Rectangle075", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.390840530395508, + 0.14451849460601807, + -14.047863006591797 + ] + }, + { + "mesh":371, + "name":"Circle2338", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6712626218795776, + -2.811332941055298 + ] + }, + { + "mesh":372, + "name":"pasted__pasted__pPipe037", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.629884719848633, + 1.068055510520935, + -7.326577186584473 + ] + }, + { + "mesh":373, + "name":"polySurface369", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.362777709960938, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":374, + "name":"Shape001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.813207626342773, + 0.06582486629486084, + 1.0856859683990479 + ] + }, + { + "mesh":375, + "name":"Circle3157", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.092260360717773, + 1.7725833654403687, + 3.6717348098754883 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube605", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":376, + "name":"Object2668", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.79996681213379, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":377, + "name":"Rectangle1114", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.557981491088867, + 0.14451825618743896, + 14.283381462097168 + ] + }, + { + "mesh":378, + "name":"Object2159", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.475177764892578, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":379, + "name":"pasted__pasted__pasted__pasted__pCylinder794", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414154052734375, + 0.6754261255264282, + 13.938965797424316 + ] + }, + { + "mesh":380, + "name":"Circle2981", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84649085998535, + 1.357746958732605, + 4.094761848449707 + ] + }, + { + "mesh":381, + "name":"pasted__pasted__pasted__pCylinder624", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.052242279052734, + 0.9016944169998169, + 12.947877883911133 + ] + }, + { + "mesh":382, + "name":"pasted__pasted__pCylinder335.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.58518409729004, + 4.853360652923584, + -4.360419273376465 + ] + }, + { + "mesh":383, + "name":"Rectangle1232", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + -6.56563663482666 + ] + }, + { + "mesh":384, + "name":"Rectangle514", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 0.36425018310546875, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":385, + "name":"pasted__pasted__pCylinder2.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.835880279541016, + 1.9704312086105347, + -5.591787338256836 + ] + }, + { + "mesh":386, + "name":"Circle2496", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3365494012832642, + -2.6810994148254395 + ] + }, + { + "mesh":387, + "name":"Obj3d66-647191-12-205", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.568323135375977, + 1.6637946367263794, + -15.60374927520752 + ] + }, + { + "mesh":388, + "name":"Circle2398", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.985681533813477, + 2.128974437713623, + -2.22849702835083 + ] + }, + { + "mesh":389, + "name":"pasted__pasted__pasted__pPlane306", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.14777946472168, + 0.38407838344573975, + 12.949873924255371 + ] + }, + { + "mesh":390, + "name":"polySurface098", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.765445709228516, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":391, + "name":"Rectangle1347", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384549379348755, + 1.8341283798217773 + ] + }, + { + "mesh":392, + "name":"pasted__pasted__pPipe121", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.25892448425293, + 1.0760306119918823, + 3.1448471546173096 + ] + }, + { + "mesh":393, + "name":"Object2353", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.441425323486328, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":394, + "name":"Circle1755", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.110639572143555, + 1.611322283744812, + -6.013926029205322 + ] + }, + { + "mesh":395, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube243", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 0.3764752149581909, + -6.178396224975586 + ] + }, + { + "mesh":396, + "name":"pasted__pasted__pCylinder19.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.989633560180664, + 2.442410945892334, + -5.591787338256836 + ] + }, + { + "mesh":397, + "name":"Rectangle1453", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.2914772033691406, + 1.4575899839401245, + 5.7430524826049805 + ] + }, + { + "mesh":398, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube632", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 0.8592513799667358, + 3.260234832763672 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube621", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":399, + "name":"Obj3d66-647191-18-820", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.528425216674805, + 1.6729644536972046, + 5.562098503112793 + ] + }, + { + "mesh":400, + "name":"pasted__pasted__pasted__pasted__pCylinder829", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.153039932250977, + 0.6754261255264282, + 15.849641799926758 + ] + }, + { + "mesh":401, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube306", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.409494400024414, + 1.1991132497787476, + 1.2420904636383057 + ] + }, + { + "mesh":402, + "name":"Circle2740", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9638575315475464, + -0.11984755843877792 + ] + }, + { + "mesh":403, + "name":"Rectangle1444", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384544610977173, + 7.1879425048828125 + ] + }, + { + "mesh":404, + "name":"Circle2812", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.007736206054688, + 1.9126533269882202, + -0.09816921502351761 + ] + }, + { + "mesh":405, + "name":"pasted__pasted__pCube763", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939355850219727, + 5.073940753936768, + 3.6737985610961914 + ] + }, + { + "mesh":406, + "name":"Rectangle796", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -6.4752726554870605 + ] + }, + { + "mesh":407, + "name":"Object2497", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801374435424805, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":408, + "name":"Object2171", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.458301544189453, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":409, + "name":"Circle2624", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.517868041992188, + 1.1369620561599731, + 0.31954091787338257 + ] + }, + { + "mesh":410, + "name":"Rectangle1287", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -0.4316885471343994 + ] + }, + { + "mesh":411, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube252", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.925851821899414, + 0.3764752149581909, + -5.009819984436035 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube443", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group134", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -0.00834827870130539 + ] + }, + { + "mesh":412, + "name":"Circle2832", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.044485092163086, + 1.8050354719161987, + -0.03661932796239853 + ] + }, + { + "mesh":413, + "name":"Circle3000", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.705896377563477, + 1.3985601663589478, + 3.6717348098754883 + ] + }, + { + "mesh":414, + "name":"pasted__pasted__pasted__polySurface554", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.040225982666016, + 0.6836510896682739, + 16.377607345581055 + ] + }, + { + "mesh":415, + "name":"pasted__pasted__pCylinder14", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.939876556396484, + 2.289264678955078, + -4.91146183013916 + ] + }, + { + "mesh":416, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface730", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.68073081970215, + 0.718347430229187, + 12.764594078063965 + ] + }, + { + "mesh":417, + "name":"Rectangle806", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.230733871459961, + 0.4576355218887329, + -7.999842166900635 + ] + }, + { + "mesh":418, + "name":"pasted__pasted__pCube612", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.634368896484375, + -0.6245768070220947, + 6.480376243591309 + ] + }, + { + "mesh":419, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube293", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 0.3764752149581909, + 0.08590080589056015 + ] + }, + { + "mesh":420, + "name":"pasted__pasted__pCube685", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.390499114990234, + 1.2804936170578003, + 5.495524883270264 + ] + }, + { + "mesh":421, + "name":"Circle1500", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6605547666549683, + -4.875210762023926 + ] + }, + { + "mesh":422, + "name":"Circle2256", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.426315188407898, + -1.888888955116272 + ] + }, + { + "mesh":423, + "name":"Circle2950", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.829299807548523, + 4.351912498474121 + ] + }, + { + "mesh":424, + "name":"pasted__pasted__pCube674", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939353942871094, + 5.073940753936768, + 0.08921277523040771 + ] + }, + { + "mesh":425, + "name":"pasted__pasted__pasted__pCube630", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.275115966796875, + 0.6769627332687378, + -1.2083239555358887 + ] + }, + { + "mesh":426, + "name":"pasted__pasted__pasted__pasted__pCylinder809", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414453506469727, + 0.28987395763397217, + 14.672256469726562 + ] + }, + { + "mesh":427, + "name":"Rectangle1369", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7509279251098633, + 0.1627582311630249, + 2.718818187713623 + ] + }, + { + "mesh":428, + "name":"pasted__pasted__pasted__pPlane314", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.36985206604004, + 0.38407909870147705, + 16.587963104248047 + ] + }, + { + "mesh":429, + "name":"polySurface353", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.430700302124023, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":430, + "name":"Obj3d66-647191-21-790", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.568323135375977, + 1.6637946367263794, + 18.269939422607422 + ] + }, + { + "mesh":431, + "name":"Rectangle413", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 9.203760147094727, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":432, + "name":"Rectangle1139", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.143777847290039, + 0.3059629201889038, + 16.649982452392578 + ] + }, + { + "mesh":433, + "name":"Obj3d66-647191-24-607", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4582080841064453, + 1.658399224281311, + 12.1477632522583 + ] + }, + { + "mesh":434, + "name":"Circle2696", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84649085998535, + 1.374463438987732, + 0.21577663719654083 + ] + }, + { + "mesh":435, + "name":"pasted__pasted__pCube389", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + -6.3301777839660645 + ] + }, + { + "mesh":436, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube80", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 0.3764752149581909, + -6.186119079589844 + ] + }, + { + "mesh":437, + "name":"Circle1991", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.210145950317383, + -5.459476947784424 + ] + }, + { + "mesh":438, + "name":"Circle3220", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.13319969177246, + 1.545251488685608, + 3.155913829803467 + ] + }, + { + "mesh":439, + "name":"pasted__pasted__pasted__pPlane088", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.221731185913086, + 0.38407886028289795, + 12.949873924255371 + ] + }, + { + "mesh":440, + "name":"Circle2252", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1154088973999023, + -1.3787407875061035 + ] + }, + { + "mesh":441, + "name":"pasted__pasted__pasted__pasted__polySurface381", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.69390106201172, + 0.2514399290084839, + 13.790817260742188 + ] + }, + { + "mesh":442, + "name":"pasted__pasted__pCylinder10.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.909536361694336, + 2.179645538330078, + -6.252725124359131 + ] + }, + { + "mesh":443, + "name":"Object2527", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.87872314453125, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":444, + "name":"Obj3d66-647191-24-609", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.75340461730957, + 1.658399224281311, + -9.301790237426758 + ] + }, + { + "mesh":445, + "name":"Box202", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.114276885986328, + 1.0034366846084595, + 16.95024871826172 + ] + }, + { + "mesh":446, + "name":"Circle2255", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.334945559501648, + -1.767124056816101 + ] + }, + { + "mesh":447, + "name":"Circle2405", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.011409759521484, + 2.0429491996765137, + -2.22849702835083 + ] + }, + { + "mesh":448, + "name":"Obj3d66-647191-33-828", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.556079864501953, + 1.6400068998336792, + 5.5750579833984375 + ] + }, + { + "mesh":449, + "name":"pasted__pasted__pCylinder435", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.03581428527832, + 3.146695137023926, + -6.593062400817871 + ] + }, + { + "mesh":450, + "name":"Object2297", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.400642395019531, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":451, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube301", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + 0.6738201379776001 + ] + }, + { + "mesh":452, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder072", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.876100540161133, + 0.07032907009124756, + 0.5924305319786072 + ] + }, + { + "mesh":453, + "name":"Circle2976", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9305464029312134, + 4.408956050872803 + ] + }, + { + "mesh":454, + "name":"pasted__pasted__pasted__pCube184", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 0.9795023202896118, + 15.57959270477295 + ] + }, + { + "mesh":455, + "name":"pasted__pasted__pCube564", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.83158302307129, + 3.3573498725891113, + -7.466799736022949 + ] + }, + { + "mesh":456, + "name":"Object2043", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.115190505981445, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":457, + "name":"pasted__pasted__pCube771", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + 5.0745720863342285 + ] + }, + { + "mesh":458, + "name":"Circle2281", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7538021802902222, + -2.22849702835083 + ] + }, + { + "mesh":459, + "name":"pasted__pasted__pCube411", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.309444427490234, + 1.7704380750656128, + -3.185093402862549 + ] + }, + { + "mesh":460, + "name":"pasted__pasted__pCube619", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + 0.3333040773868561 + ] + }, + { + "mesh":461, + "name":"pasted__pasted__pCube716", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.45350456237793, + 5.064568996429443, + 2.0294878482818604 + ] + }, + { + "mesh":462, + "name":"Rectangle1416", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.180307388305664, + 0.3059629201889038, + 2.7237420082092285 + ] + }, + { + "mesh":463, + "name":"Object2116", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.491523742675781, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":464, + "name":"pasted__pasted__pCube405.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.458232879638672, + 5.073940753936768, + -6.350098133087158 + ] + }, + { + "mesh":465, + "name":"pasted__pasted__pasted__pCube549", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.023614883422852, + 0.25255119800567627, + 16.590106964111328 + ] + }, + { + "mesh":466, + "name":"Rectangle824", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.215822219848633, + 0.10969555377960205, + -1.4785290956497192 + ] + }, + { + "mesh":467, + "name":"pasted__pasted__pPipe080", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.144113540649414, + 2.7832746505737305, + 2.4927613735198975 + ] + }, + { + "mesh":468, + "name":"pasted__pasted__group22_pCube37", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.02294921875, + 11.211284637451172, + -15.681376457214355 + ] + }, + { + "mesh":469, + "name":"pasted__pasted__pasted__pasted__pCylinder462", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.981288909912109, + 0.10737001895904541, + 13.796781539916992 + ] + }, + { + "mesh":470, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder206", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.41086769104004, + 1.5399528741836548, + 13.959920883178711 + ] + }, + { + "mesh":471, + "name":"Object2340", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.459707260131836, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":472, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder32", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 1.3803664445877075, + -6.177819728851318 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube174", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":473, + "name":"Obj3d66-647191-33-853", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.574676513671875, + 1.6400068998336792, + -9.301545143127441 + ] + }, + { + "mesh":474, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube171", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.92730712890625, + 1.4096461534500122, + -7.404355525970459 + ] + }, + { + "mesh":475, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube268", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 0.3764752149581909, + 0.6627435684204102 + ] + }, + { + "mesh":476, + "name":"Object2086", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.054719924926758, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":477, + "name":"Rectangle069", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.468046188354492, + 0.14451849460601807, + -14.047863006591797 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube331", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -7.182558059692383 + ] + }, + { + "mesh":478, + "name":"polySurface368", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.3797607421875, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":479, + "name":"Rectangle784", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -3.886181592941284 + ] + }, + { + "mesh":480, + "name":"Rectangle006", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.014554977416992, + 0.06582486629486084, + 1.0658206939697266 + ] + }, + { + "mesh":481, + "name":"Circle2743", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9300965070724487, + -0.1008332297205925 + ] + }, + { + "mesh":482, + "name":"Object2309", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.503303527832031, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":483, + "name":"Rectangle329.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + 13.39304256439209 + ] + }, + { + "mesh":484, + "name":"Object2593", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.785905838012695, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":485, + "name":"pasted__pasted__pCube527", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.446073532104492, + -0.5796909332275391, + -7.4137773513793945 + ] + }, + { + "mesh":486, + "name":"Rectangle1186", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.609027862548828, + 0.04489290714263916, + 16.411087036132812 + ] + }, + { + "mesh":487, + "name":"polySurface310", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.964534759521484, + 1.443468689918518, + 13.79013442993164 + ] + }, + { + "mesh":488, + "name":"pasted__pasted__pCylinder334.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.585187911987305, + 4.853360652923584, + -5.697993278503418 + ] + }, + { + "mesh":489, + "name":"Circle2958", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8855479955673218, + 4.383603572845459 + ] + }, + { + "mesh":490, + "name":"Obj3d66-647191-32-919", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980655670166016, + 1.6615828275680542, + 18.264944076538086 + ] + }, + { + "mesh":491, + "name":"Circle2495", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.946138381958008, + 2.0792741775512695, + -3.057576894760132 + ] + }, + { + "mesh":492, + "name":"pasted__pasted__pasted__pCube587", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.256271362304688, + 0.25255048274993896, + 12.952010154724121 + ] + }, + { + "mesh":493, + "name":"polySurface097", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.782425880432129, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":494, + "name":"Circle1601", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.197470188140869, + -5.460317134857178 + ] + }, + { + "mesh":495, + "name":"pasted__pasted__pPipe084", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.159643173217773, + 2.565361976623535, + -2.140505313873291 + ] + }, + { + "mesh":496, + "name":"Rectangle1275", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8114662170410156, + 0.5975691080093384, + -2.9385335445404053 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door104", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -0.5263744592666626 + ] + }, + { + "mesh":497, + "name":"Object2352", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.442831039428711, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":498, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube242", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 0.3764752149581909, + -6.474413871765137 + ] + }, + { + "mesh":499, + "name":"pasted__pasted__pCylinder18.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.980588912963867, + 2.4146475791931152, + -5.591787338256836 + ] + }, + { + "mesh":500, + "name":"Rectangle1452", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.2914762496948242, + 1.4575904607772827, + -1.2070691585540771 + ] + }, + { + "mesh":501, + "name":"pasted__pasted__pCylinder21.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.010469436645508, + 2.4802327156066895, + -6.30396842956543 + ] + }, + { + "mesh":502, + "name":"Circle1875", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.8033390045166, + 1.5981084108352661, + -4.902400493621826 + ] + }, + { + "mesh":503, + "name":"pasted__pasted__pasted__pPlane321", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.936368942260742, + 0.3886607885360718, + 12.952313423156738 + ] + }, + { + "mesh":504, + "name":"Obj3d66-647191-17-835", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.528425216674805, + 1.672275424003601, + 5.563129901885986 + ] + }, + { + "mesh":505, + "name":"Sphere044", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8063907623291, + 1.3557039499282837, + 0.6277793645858765 + ] + }, + { + "mesh":506, + "name":"Circle1861", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.859304428100586, + 1.7619882822036743, + -4.808673858642578 + ] + }, + { + "mesh":507, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door102", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.002043724060059, + 1.5217519998550415, + 1.824259638786316 + ] + }, + { + "mesh":508, + "name":"Circle2811", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.011409759521484, + 1.9018915891647339, + -0.09201426059007645 + ] + }, + { + "mesh":509, + "name":"polySurface128", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.66356086730957, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":510, + "name":"Circle1550", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9059168100357056, + -5.460317134857178 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface773", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.285858154296875 + ] + }, + { + "mesh":511, + "name":"Object2170", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.459707260131836, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":512, + "name":"Obj3d66-647191-14-945", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.58660316467285, + 1.672275424003601, + -9.328777313232422 + ] + }, + { + "mesh":513, + "name":"Circle2564", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10127067565918, + 1.118975043296814, + 0.9389238357543945 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface700", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -1.1389737129211426 + ] + }, + { + "mesh":514, + "name":"Rectangle1286", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 0.41887366771698 + ] + }, + { + "mesh":515, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube251", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.925851821899414, + 1.3735631704330444, + -5.009819984436035 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door108", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -0.00834827870130539 + ] + }, + { + "mesh":516, + "name":"Circle2423", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.07756233215332, + 1.821740746498108, + -2.22849702835083 + ] + }, + { + "mesh":517, + "name":"Circle2898", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.06879234313965, + 1.7149971723556519, + 1.262465476989746 + ] + }, + { + "mesh":518, + "name":"Circle2999", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.757936477661133, + 1.3985601663589478, + 3.6717348098754883 + ] + }, + { + "mesh":519, + "name":"pasted__pasted__pasted__pCube699", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033937454223633, + 0.8213735818862915, + 15.57959270477295 + ] + }, + { + "name":"Text013", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.5037879943847656, + 1.5734864473342896, + -13.136743545532227 + ] + }, + { + "mesh":520, + "name":"Rectangle805", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.7701778411865234, + 0.14451849460601807, + -6.78524923324585 + ] + }, + { + "mesh":521, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube292", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 0.3764752149581909, + -0.2074243724346161 + ] + }, + { + "mesh":522, + "name":"pasted__pasted__pCube403.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.45823860168457, + 5.073940753936768, + -5.782811641693115 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube174", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":523, + "name":"Circle1499", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6493052244186401, + -4.881548881530762 + ] + }, + { + "mesh":524, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pasted__pasted__pasted__polySurface554", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.068794250488281, + 0.6940606832504272, + -3.1761648654937744 + ] + }, + { + "mesh":525, + "name":"Circle2593", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8855479955673218, + 1.3396482467651367 + ] + }, + { + "mesh":526, + "name":"pasted__pasted__pasted__polySurface548", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.040225982666016, + 0.6836510896682739, + 14.421131134033203 + ] + }, + { + "mesh":527, + "name":"Obj3d66-647191-12-224", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.58763313293457, + 1.6637946367263794, + -9.328778266906738 + ] + }, + { + "mesh":528, + "name":"pasted__pasted__pCube821", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.309444427490234, + 1.7704380750656128, + 7.781646251678467 + ] + }, + { + "mesh":529, + "name":"pasted__pasted__pasted__pasted__pCylinder851", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785097122192383, + 0.6754261255264282, + 13.938965797424316 + ] + }, + { + "mesh":530, + "name":"pasted__pasted__pCube673", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + -0.211870014667511 + ] + }, + { + "mesh":531, + "name":"Circle2628", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.934459686279297, + 1.118975043296814, + 0.9389238357543945 + ] + }, + { + "mesh":532, + "name":"pasted__pasted__pasted__pCube629", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.2859411239624023, + 0.6166733503341675, + -1.2165262699127197 + ] + }, + { + "mesh":533, + "name":"pasted__pasted__pasted__pasted__pCylinder808", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.492883682250977, + 0.28987395763397217, + 14.820230484008789 + ] + }, + { + "mesh":534, + "name":"pasted__pasted__pasted__pasted__pCylinder888", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785097122192383, + 0.6754261255264282, + 15.99779224395752 + ] + }, + { + "mesh":535, + "name":"Circle1780", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.976919174194336, + 1.9867974519729614, + -4.671757221221924 + ] + }, + { + "mesh":536, + "name":"pasted__pasted__pasted__pCylinder657", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094709396362305, + 1.2660447359085083, + 12.976770401000977 + ] + }, + { + "mesh":537, + "name":"Circle2191", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.724679946899414, + 1.4287348985671997, + -5.791183948516846 + ] + }, + { + "mesh":538, + "name":"pasted__pasted__pasted__polySurface025", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6949710845947266, + 0.6836510896682739, + 14.722369194030762 + ] + }, + { + "mesh":539, + "name":"Obj3d66-647191-20-068", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.56678581237793, + 1.6739333868026733, + 18.269939422607422 + ] + }, + { + "mesh":540, + "name":"Rectangle412", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 7.826641082763672, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":541, + "name":"Rectangle1138", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.298622131347656, + 0.47970330715179443, + 16.649982452392578 + ] + }, + { + "mesh":542, + "name":"Rectangle209", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8965835571289062, + 0.2500876188278198, + -12.587183952331543 + ] + }, + { + "mesh":543, + "name":"pasted__pasted__pCylinder495", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.896543502807617, + 2.1518783569335938, + 0.7451106905937195 + ] + }, + { + "mesh":544, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface670", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.071154594421387, + 0.9432286024093628, + -4.224803447723389 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface662", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -6.569958209991455 + ] + }, + { + "mesh":545, + "name":"Obj3d66-647191-23-245", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4521961212158203, + 1.6626402139663696, + 12.119864463806152 + ] + }, + { + "mesh":546, + "name":"Circle2695", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.898542404174805, + 1.374463438987732, + 0.2157767117023468 + ] + }, + { + "mesh":547, + "name":"Circle1737", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.044485092163086, + 1.8050354719161987, + -6.124716281890869 + ] + }, + { + "mesh":548, + "name":"pasted__pasted__pCube388", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + -6.913914203643799 + ] + }, + { + "mesh":549, + "name":"Circle1502", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6943036317825317, + -4.856196880340576 + ] + }, + { + "mesh":550, + "name":"pasted__pasted__pasted__pCylinder454", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.929457664489746, + 0.7768594026565552, + -6.931586742401123 + ] + }, + { + "mesh":551, + "name":"Circle1990", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.222822666168213, + -5.459476947784424 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube167", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":552, + "name":"Object2386", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.1336320638656616, + 16.99413299560547 + ] + }, + { + "mesh":553, + "name":"pasted__pasted__pasted__pCylinder150", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.723842620849609, + 0.503059983253479, + 12.947877883911133 + ] + }, + { + "mesh":554, + "name":"pasted__pasted__pasted__pasted__pasted__pCube552", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.22403335571289, + -0.18407440185546875, + 14.710431098937988 + ] + }, + { + "mesh":555, + "name":"pasted__pasted__pCylinder9.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.900360107421875, + 2.152317523956299, + -6.248073577880859 + ] + }, + { + "mesh":556, + "name":"Obj3d66-647191-23-247", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747392654418945, + 1.6626402139663696, + -9.273892402648926 + ] + }, + { + "mesh":557, + "name":"Circle1645", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9638575315475464, + -6.207944393157959 + ] + }, + { + "mesh":558, + "name":"Rectangle821", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.7701778411865234, + 0.14451849460601807, + -0.4534444808959961 + ] + }, + { + "mesh":559, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface239", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.463172912597656, + 1.454501748085022, + 5.872309684753418 + ] + }, + { + "mesh":560, + "name":"Obj3d66-647191-32-898", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.523426055908203, + 1.6615828275680542, + 5.562841892242432 + ] + }, + { + "mesh":561, + "name":"pasted__pasted__pCube517", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.634368896484375, + -0.6245768070220947, + -7.501795768737793 + ] + }, + { + "mesh":562, + "name":"pasted__pasted__pCylinder434", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.049951553344727, + 2.528435707092285, + -7.4060139656066895 + ] + }, + { + "mesh":563, + "name":"Object2654", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.81965446472168, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":564, + "name":"Rectangle1445", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384544610977173, + 6.923722743988037 + ] + }, + { + "mesh":565, + "name":"pasted__pasted__pCube578", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.47318458557129, + 1.0691884756088257, + 6.484004974365234 + ] + }, + { + "mesh":566, + "name":"Rectangle799", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -5.624711513519287 + ] + }, + { + "mesh":567, + "name":"Object2659", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.812623977661133, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":568, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder081", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 0.3832782506942749, + 0.6710430979728699 + ] + }, + { + "mesh":569, + "name":"Rectangle424", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + -10.96176815032959 + ] + }, + { + "mesh":570, + "name":"pasted__pasted__pCube563", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.67784881591797, + 3.367274761199951, + -7.466108322143555 + ] + }, + { + "mesh":571, + "name":"Object2042", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.116595268249512, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":572, + "name":"Circle2280", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7664786577224731, + -2.22849702835083 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube361", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -3.557638645172119 + ] + }, + { + "mesh":573, + "name":"pasted__pasted__pCylinder460", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.928682327270508, + 3.146695137023926, + 5.581186294555664 + ] + }, + { + "mesh":574, + "name":"pasted__pasted__extrudedSurface20", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.204841613769531, + 0.1835993528366089, + -3.1942484378814697 + ] + }, + { + "mesh":575, + "name":"Line2452", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.99513053894043, + 2.195624828338623, + 2.7582168579101562 + ] + }, + { + "mesh":576, + "name":"Rectangle1341", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + 0.06699367612600327 + ] + }, + { + "mesh":577, + "name":"pasted__pasted__pCube715", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.451486587524414, + 5.052017688751221, + 1.7283942699432373 + ] + }, + { + "mesh":578, + "name":"pasted__pasted__pCylinder12", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.922542572021484, + 2.2343087196350098, + -4.920945644378662 + ] + }, + { + "mesh":579, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder205", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.123880386352539, + 0.6623357534408569, + 12.767040252685547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door112", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 4.803884506225586 + ] + }, + { + "mesh":580, + "name":"pasted__pasted__pCube586", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.504825592041016, + 3.574185371398926, + 6.459312915802002 + ] + }, + { + "mesh":581, + "name":"Object2115", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.498348236083984, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":582, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube281", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + -0.8013690114021301 + ] + }, + { + "mesh":583, + "name":"pasted__pasted__pasted__pCylinder649", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.641426086425781, + 0.5030606985092163, + 16.585969924926758 + ] + }, + { + "mesh":584, + "name":"pasted__pasted__pPipe079", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.781641006469727, + 2.5599560737609863, + 2.4945216178894043 + ] + }, + { + "mesh":585, + "name":"pasted__pasted__pasted__pasted__pasted__pCube571", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.386137008666992, + 0.6561340093612671, + 13.81916332244873 + ] + }, + { + "mesh":586, + "name":"Circle3028", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.197470188140869, + 3.6717348098754883 + ] + }, + { + "mesh":587, + "name":"Object2339", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.461111068725586, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":588, + "name":"Circle2665", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1721177101135254, + 0.6277795433998108 + ] + }, + { + "mesh":589, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube236", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + -6.175032615661621 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube173", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":590, + "name":"Circle1525", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8513208627700806, + -6.144563674926758 + ] + }, + { + "mesh":591, + "name":"Rectangle1432", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.73845374584198, + 3.653672218322754 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube651", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":592, + "name":"Object2085", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.056122779846191, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":593, + "name":"Rectangle067", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.468046188354492, + 0.14451849460601807, + -13.339606285095215 + ] + }, + { + "mesh":594, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface669", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.074766159057617, + 0.7311524152755737, + -4.222092151641846 + ] + }, + { + "mesh":595, + "name":"pasted__pasted__pasted__pCylinder690", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.365060806274414, + 0.9016944169998169, + 12.947877883911133 + ] + }, + { + "mesh":596, + "name":"pasted__pasted__pCube516", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.634368896484375, + -0.4261718988418579, + -7.501797199249268 + ] + }, + { + "mesh":597, + "name":"pasted__pasted__pCylinder671", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.844924926757812, + 1.9981945753097534, + 5.37495231628418 + ] + }, + { + "mesh":598, + "name":"Circle3311", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.439908981323242, + 1.8669251203536987, + -5.688488960266113 + ] + }, + { + "mesh":599, + "name":"Circle3229", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3309954404830933, + 3.174013376235962 + ] + }, + { + "mesh":600, + "name":"pasted__pasted__pCylinder662", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.96588134765625, + 2.371694564819336, + 6.0695085525512695 + ] + }, + { + "mesh":601, + "name":"Object2666", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.802778244018555, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":602, + "name":"pasted__pasted__pasted__pasted__pCylinder792", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.153039932250977, + 0.6754261255264282, + 13.790817260742188 + ] + }, + { + "mesh":603, + "name":"Rectangle1185", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.911386489868164, + 0.0907973051071167, + 12.44258975982666 + ] + }, + { + "mesh":604, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pasted__pasted__pasted__polySurface552", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.068794250488281, + 0.683716893196106, + -1.5050078630447388 + ] + }, + { + "mesh":605, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube361", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.403501510620117, + 1.4892536401748657, + 6.3787841796875 + ] + }, + { + "mesh":606, + "name":"pasted__pasted__pCylinder333.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.585187911987305, + 4.853360652923584, + -7.037150859832764 + ] + }, + { + "mesh":607, + "name":"Circle2793", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.095937728881836, + 1.7602943181991577, + 0.6277795433998108 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube534", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":608, + "name":"Rectangle087", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.049402236938477, + 0.14451849460601807, + -13.339606285095215 + ] + }, + { + "mesh":609, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube58", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.840339660644531, + 1.2777515649795532, + -4.971349239349365 + ] + }, + { + "mesh":610, + "name":"Circle2494", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.236181259155273, + 1.3601590394973755, + -2.649724006652832 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube657", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":611, + "name":"Rectangle561", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.364978790283203, + 0.0907975435256958, + 14.191482543945312 + ] + }, + { + "mesh":612, + "name":"polySurface096", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.716100692749023, + 1.4533334970474243, + 13.790817260742188 + ] + }, + { + "mesh":613, + "name":"pasted__pasted__pPipe083", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.781641006469727, + 2.5599560737609863, + -2.1387553215026855 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube396", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":614, + "name":"Sphere047", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.19780158996582, + 1.3344708681106567, + 0.2124515175819397 + ] + }, + { + "mesh":615, + "name":"Object2351", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.444236755371094, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube615", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":616, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder38", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 0.3832782506942749, + -6.4738383293151855 + ] + }, + { + "mesh":617, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface105", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.468704223632812, + 0.699180006980896, + 4.469844818115234 + ] + }, + { + "mesh":618, + "name":"Circle2888", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.032041549682617, + 1.8237169981002808, + 1.3240152597427368 + ] + }, + { + "mesh":619, + "name":"pasted__pasted__pCylinder636", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.063417434692383, + 4.930069446563721, + 4.829448699951172 + ] + }, + { + "mesh":620, + "name":"Object2096", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.0973228216171265, + 16.99413299560547 + ] + }, + { + "mesh":621, + "name":"Obj3d66-647191-16-680", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.583311080932617, + 1.6718100309371948, + 5.563363075256348 + ] + }, + { + "mesh":622, + "name":"Rectangle1230", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + -7.41889762878418 + ] + }, + { + "mesh":623, + "name":"Obj3d66-647191-37-426", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4519214630126953, + 1.6739360094070435, + 12.174738883972168 + ] + }, + { + "mesh":624, + "name":"pasted__pasted__pasted__pasted__pPipe080", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.327337265014648, + 0.43142926692962646, + 15.858174324035645 + ] + }, + { + "mesh":625, + "name":"Circle3250", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.021020889282227, + 1.8563331365585327, + 4.386435031890869 + ] + }, + { + "mesh":626, + "name":"Circle2397", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.98200798034668, + 2.141263961791992, + -2.22849702835083 + ] + }, + { + "mesh":627, + "name":"Circle2810", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.993036270141602, + 1.9557007551193237, + -0.12278913706541061 + ] + }, + { + "mesh":628, + "name":"Circle1549", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8932405710220337, + -5.460317134857178 + ] + }, + { + "mesh":629, + "name":"pasted__pasted__pCube764", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + 3.372716188430786 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube383", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 5.416483402252197 + ] + }, + { + "mesh":630, + "name":"Object2169", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.461111068725586, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":631, + "name":"Rectangle190", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.555379867553711, + 0.42382848262786865, + -12.738801002502441 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors141", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":632, + "name":"Obj3d66-647191-13-205", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.58763313293457, + 1.6729644536972046, + -9.328778266906738 + ] + }, + { + "mesh":633, + "name":"Line2434", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.99513053894043, + 2.195624828338623, + -3.1420154571533203 + ] + }, + { + "mesh":634, + "name":"Rectangle1285", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 0.41887366771698 + ] + }, + { + "mesh":635, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder41", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 1.3803664445877075, + -5.009254455566406 + ] + }, + { + "mesh":636, + "name":"Sphere050", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8063907623291, + 1.3557039499282837, + 3.6717348098754883 + ] + }, + { + "mesh":637, + "name":"pasted__pasted__pasted__pCube698", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 0.9795023202896118, + 15.57959270477295 + ] + }, + { + "mesh":638, + "name":"Box196", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.97010612487793, + 0.6166733503341675, + -13.878995895385742 + ] + }, + { + "mesh":639, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface726", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.68382453918457, + 0.6753274202346802, + 12.768712043762207 + ] + }, + { + "mesh":640, + "name":"Circle3196", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.04081153869629, + 1.815797209739685, + 3.00118088722229 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube535", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":641, + "name":"Circle1918", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.5847944021224976, + -4.914315700531006 + ] + }, + { + "mesh":642, + "name":"pasted__pasted__pCube683", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.44964027404785, + 1.1083356142044067, + 5.477092266082764 + ] + }, + { + "mesh":643, + "name":"Circle2794", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0996150970459, + 1.7480052709579468, + 0.6277796030044556 + ] + }, + { + "mesh":644, + "name":"Circle2718", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8400672674179077, + -0.05012836307287216 + ] + }, + { + "mesh":645, + "name":"Circle1498", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.638055443763733, + -4.887887001037598 + ] + }, + { + "mesh":646, + "name":"Rectangle1366", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9545860290527344, + 0.6844395399093628, + 7.767119407653809 + ] + }, + { + "mesh":647, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door081", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.0043115615844727, + 1.4446450471878052, + -8.001309394836426 + ] + }, + { + "mesh":648, + "name":"pasted__pasted__pasted__pasted__pCylinder807", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414154052734375, + 0.28987395763397217, + 14.968375205993652 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube178", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":649, + "name":"Circle2190", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.724679946899414, + 1.326295018196106, + -5.912342548370361 + ] + }, + { + "mesh":650, + "name":"pasted__pasted__pasted__pCube164", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 0.8213735818862915, + 14.8716459274292 + ] + }, + { + "mesh":651, + "name":"Obj3d66-647191-19-291", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567060470581055, + 1.6718095541000366, + 18.269939422607422 + ] + }, + { + "mesh":652, + "name":"Obj3d66-647191-7-345", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.55536460876465, + 1.6444584131240845, + 18.317949295043945 + ] + }, + { + "mesh":653, + "name":"Circle2702", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6600092649459839, + 0.051281388849020004 + ] + }, + { + "mesh":654, + "name":"pasted__pasted__pCube784", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.975038528442383, + 1.2804936170578003, + 3.1510818004608154 + ] + }, + { + "mesh":655, + "name":"pasted__pasted__pCylinder583", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.06259536743164, + 4.937098026275635, + -0.002050161361694336 + ] + }, + { + "mesh":656, + "name":"Obj3d66-647191-22-675", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4524288177490234, + 1.6631056070327759, + 12.119864463806152 + ] + }, + { + "mesh":657, + "name":"Circle2694", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.705896377563477, + 1.357746958732605, + 0.21577657759189606 + ] + }, + { + "mesh":658, + "name":"Object2181", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.444236755371094, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":659, + "name":"pasted__pasted__pasted__pCylinder453", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9305353164672852, + 0.7768594026565552, + -6.763254642486572 + ] + }, + { + "mesh":660, + "name":"Circle1989", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.2354989051818848, + -5.459476947784424 + ] + }, + { + "mesh":661, + "name":"pasted__pasted__pasted__pCylinder149", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.723842620849609, + 1.2660447359085083, + 12.947877883911133 + ] + }, + { + "mesh":662, + "name":"Object2221", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.50752067565918, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":663, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube356", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 1.3735631704330444, + 6.249102592468262 + ] + }, + { + "mesh":664, + "name":"pasted__pasted__pasted__pasted__pasted__extrudedSurface068", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.270082473754883, + 1.3885892629623413, + 15.15339469909668 + ] + }, + { + "mesh":665, + "name":"pasted__pasted__pCylinder8.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.891183853149414, + 2.1249918937683105, + -6.243419170379639 + ] + }, + { + "mesh":666, + "name":"pasted__pasted__pasted__pasted__pCylinder496", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.147626876831055, + 1.0796922445297241, + 15.849641799926758 + ] + }, + { + "mesh":667, + "name":"Circle1644", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9751108884811401, + -6.2142839431762695 + ] + }, + { + "mesh":668, + "name":"pasted__pasted__pCylinder381", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.980253219604492, + 5.043131351470947, + -3.1639792919158936 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube556", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":669, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface240", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.463172912597656, + 1.438156008720398, + 5.566105365753174 + ] + }, + { + "mesh":670, + "name":"Circle1591", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10127067565918, + 1.118975043296814, + -5.768556594848633 + ] + }, + { + "mesh":671, + "name":"Rectangle1361", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7509279251098633, + 0.1627582311630249, + 7.958535194396973 + ] + }, + { + "mesh":672, + "name":"pasted__pasted__pCylinder433", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.04994010925293, + 3.146695137023926, + -8.400985717773438 + ] + }, + { + "mesh":673, + "name":"Object2295", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.403453826904297, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube510", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":674, + "name":"Rectangle798", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -5.624711513519287 + ] + }, + { + "mesh":675, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube300", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.925851821899414, + 0.3764752149581909, + 0.6704771518707275 + ] + }, + { + "mesh":676, + "name":"pasted__pasted__pasted__pasted__pPipe091", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.698280334472656, + 1.2212477922439575, + 15.858174324035645 + ] + }, + { + "mesh":677, + "name":"pasted__pasted__pCube562", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.37675666809082, + 3.3573498725891113, + -7.466799736022949 + ] + }, + { + "mesh":678, + "name":"Object2041", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.118000030517578, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":679, + "name":"pasted__pasted__pCylinder459", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.651683807373047, + 3.3364663124084473, + 6.475161552429199 + ] + }, + { + "mesh":680, + "name":"pasted__pasted__pCube681", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.309444427490234, + 1.7704380750656128, + -2.130654811859131 + ] + }, + { + "mesh":681, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group123", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.046943664550781, + 0.7328561544418335, + -4.3199262619018555 + ] + }, + { + "mesh":682, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface113", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.421932220458984, + 0.20360338687896729, + 4.410463333129883 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube409", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":683, + "name":"Line2451", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.428354263305664, + 2.348745822906494, + 3.6133882999420166 + ] + }, + { + "mesh":684, + "name":"pasted__pasted__pCube714", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.45350456237793, + 5.064568996429443, + 2.591397285461426 + ] + }, + { + "mesh":685, + "name":"Rectangle1414", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.048496246337891, + 0.04489290714263916, + 2.953784704208374 + ] + }, + { + "mesh":686, + "name":"Circle1930", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.0313796997070312, + -4.6627960205078125 + ] + }, + { + "mesh":687, + "name":"Obj3d66-647191-7-328", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.55536460876465, + 1.6444579362869263, + -15.596877098083496 + ] + }, + { + "mesh":688, + "name":"pasted__pasted__pasted__pCylinder648", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.641426086425781, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "mesh":689, + "name":"pasted__pasted__pPipe078", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.799819946289062, + 2.774721622467041, + 2.4945216178894043 + ] + }, + { + "mesh":690, + "name":"Rectangle1359", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7509279251098633, + 0.1627582311630249, + 7.575701713562012 + ] + }, + { + "mesh":691, + "name":"Circle2664", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.184793472290039, + 0.6277795433998108 + ] + }, + { + "mesh":692, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube235", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 1.3735631704330444, + -6.474413871765137 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__polySurface021", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube481", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":693, + "name":"Rectangle931", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.753278732299805, + 1.1144360303878784, + 0.6364544034004211 + ] + }, + { + "mesh":694, + "name":"Circle2482", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0996150970459, + 1.64360773563385, + -2.8005709648132324 + ] + }, + { + "mesh":695, + "name":"Circle3136", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.015085220336914, + 2.0306596755981445, + 3.6717348098754883 + ] + }, + { + "mesh":696, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder58", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.925460815429688, + 1.5153416395187378, + -7.755075454711914 + ] + }, + { + "mesh":697, + "name":"Circle2671", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.096060276031494, + 0.6277795433998108 + ] + }, + { + "mesh":698, + "name":"Object2084", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.057533264160156, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":699, + "name":"pasted__pasted__pCube515", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.60836410522461, + -0.5796909332275391, + -7.4137773513793945 + ] + }, + { + "mesh":700, + "name":"Circle3310", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.439908981323242, + 1.8338507413864136, + -5.688488960266113 + ] + }, + { + "mesh":701, + "name":"Object1973", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.094094276428223, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":702, + "name":"Object2307", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.506113052368164, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":703, + "name":"Rectangle1079", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.02546501159668, + 0.47970330715179443, + -9.262700080871582 + ] + }, + { + "mesh":704, + "name":"pasted__pasted__pPipe044", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.46693992614746, + 1.0766092538833618, + -7.670869827270508 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube339", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":705, + "name":"pasted__pasted__pCylinder445", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.186412811279297, + 2.564108371734619, + -7.436709880828857 + ] + }, + { + "mesh":706, + "name":"pasted__pasted__pCylinder329.005", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.166837692260742, + 4.930069446563721, + -4.360376358032227 + ] + }, + { + "mesh":707, + "name":"Circle2878", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.987939834594727, + 1.9541813135147095, + 1.397875189781189 + ] + }, + { + "mesh":708, + "name":"Circle1709", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.405131220817566, + -5.416039943695068 + ] + }, + { + "mesh":709, + "name":"pasted__pasted__pasted__pCube638", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9547863006591797, + 1.0161925554275513, + -0.6793608665466309 + ] + }, + { + "mesh":710, + "name":"pasted__pasted__pCylinder23", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.017887115478516, + 2.536557197570801, + -4.86876916885376 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors161", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":711, + "name":"pasted__pasted__pasted__pPlane305", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.4676456451416, + 0.38407886028289795, + 15.696707725524902 + ] + }, + { + "mesh":712, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube060", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137231826782227, + 0.6166743040084839, + 4.44040060043335 + ] + }, + { + "mesh":713, + "name":"Obj3d66-647191-6-457", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.440500259399414, + 1.7554808855056763, + 12.147259712219238 + ] + }, + { + "mesh":714, + "name":"polySurface095", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.605146408081055, + 1.4009376764297485, + 13.790300369262695 + ] + }, + { + "mesh":715, + "name":"pasted__pasted__pPipe082", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.799819946289062, + 2.774721622467041, + -2.1387553215026855 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube395", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":716, + "name":"pasted__pasted__pPipe097", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.575101852416992, + 2.565361976623535, + 5.489278793334961 + ] + }, + { + "mesh":717, + "name":"Circle2809", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.05963897705078, + 1.4321244955062866, + -0.0112205371260643 + ] + }, + { + "mesh":718, + "name":"Object2350", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.44564437866211, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":719, + "name":"Rectangle1121", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.557981491088867, + 0.14451777935028076, + 15.133939743041992 + ] + }, + { + "mesh":720, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder37", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 0.3832782506942749, + -6.177819728851318 + ] + }, + { + "mesh":721, + "name":"Circle1592", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.757936477661133, + 1.3985601663589478, + -5.460318088531494 + ] + }, + { + "mesh":722, + "name":"pasted__pasted__pCylinder16.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.962501525878906, + 2.3591203689575195, + -5.591787338256836 + ] + }, + { + "mesh":723, + "name":"Object2095", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.101861596107483, + 16.99413299560547 + ] + }, + { + "mesh":724, + "name":"Obj3d66-647191-15-286", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.583311080932617, + 1.6626402139663696, + 5.563363075256348 + ] + }, + { + "mesh":725, + "name":"pasted__pasted__pasted__pasted__pCylinder828", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231765747070312, + 0.28987395763397217, + 15.701493263244629 + ] + }, + { + "mesh":726, + "name":"Circle2802", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.13319969177246, + 1.6356881856918335, + 0.6277795433998108 + ] + }, + { + "mesh":727, + "name":"pasted__pasted__pCube765", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939355850219727, + 5.073940753936768, + 4.241084098815918 + ] + }, + { + "mesh":728, + "name":"pasted__pasted__pCylinder329.006", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.812280654907227, + 4.937097072601318, + -4.347738742828369 + ] + }, + { + "mesh":729, + "name":"Circle2908", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10554313659668, + 1.6062771081924438, + 1.2009152173995972 + ] + }, + { + "mesh":730, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube351", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.053747177124023, + 1.0292898416519165, + 1.771352767944336 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube495", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":731, + "name":"Circle2464", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03346061706543, + 1.8373209238052368, + -2.9113609790802 + ] + }, + { + "mesh":732, + "name":"Circle2771", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.015085220336914, + 2.0306596755981445, + 0.6277795433998108 + ] + }, + { + "mesh":733, + "name":"pasted__pasted__pasted__pCube397", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.2859411239624023, + 0.6166733503341675, + -7.548328876495361 + ] + }, + { + "mesh":734, + "name":"Circle2228", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8855479955673218, + -1.5166285037994385 + ] + }, + { + "mesh":735, + "name":"Rectangle1151", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.986879348754883, + 0.35186755657196045, + 13.961438179016113 + ] + }, + { + "mesh":736, + "name":"Object2168", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.462518692016602, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":737, + "name":"pasted__pasted__pCube850", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.486181259155273, + 0.5448082685470581, + 14.84743595123291 + ] + }, + { + "mesh":738, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube013", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.255970001220703, + 0.6166733503341675, + -13.693233489990234 + ] + }, + { + "mesh":739, + "name":"Line2433", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.428354263305664, + 2.348745822906494, + -2.286843776702881 + ] + }, + { + "mesh":740, + "name":"Circle2938", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6830543279647827, + 4.269517421722412 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube367", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 0.6042507886886597 + ] + }, + { + "mesh":741, + "name":"Circle2998", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.5398427248001099, + 3.6717348098754883 + ] + }, + { + "mesh":742, + "name":"pasted__pasted__pasted__pCube697", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 1.399283766746521, + 15.57959270477295 + ] + }, + { + "mesh":743, + "name":"Circle2732", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0538864135742188, + -0.17055240273475647 + ] + }, + { + "mesh":744, + "name":"Obj3d66-647191-9-477", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.543825149536133, + 1.6471415758132935, + 18.266523361206055 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface591", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":745, + "name":"Circle3204", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.070215225219727, + 1.729702353477478, + 3.0504209995269775 + ] + }, + { + "mesh":746, + "name":"pasted__pasted__pPipe093", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.114641189575195, + 1.2917832136154175, + 5.489278793334961 + ] + }, + { + "mesh":747, + "name":"Circle1497", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6268061399459839, + -4.894225120544434 + ] + }, + { + "mesh":748, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface590", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9352035522460938, + 0.7291842699050903, + -8.006786346435547 + ] + }, + { + "mesh":749, + "name":"pasted__pasted__pasted__pasted__pCylinder806", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231466293334961, + 0.28987395763397217, + 14.968205451965332 + ] + }, + { + "mesh":750, + "name":"pasted__pasted__pasted__pPlane322", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.718538284301758, + 0.3886607885360718, + 12.952313423156738 + ] + }, + { + "mesh":751, + "name":"Circle2589", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5991793870925903, + 1.178307056427002 + ] + }, + { + "mesh":752, + "name":"Circle2837", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0628604888916, + 1.7512258291244507, + -0.0058443546295166016 + ] + }, + { + "mesh":753, + "name":"Circle2189", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.972352981567383, + 2.0678763389587402, + -6.288554668426514 + ] + }, + { + "mesh":754, + "name":"Circle2070", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9530457258224487, + -6.198349952697754 + ] + }, + { + "mesh":755, + "name":"Obj3d66-647191-24-591", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3470964431762695, + 1.658399224281311, + -15.576766014099121 + ] + }, + { + "mesh":756, + "name":"Circle2130", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.791223526000977, + 1.65044367313385, + -5.459476947784424 + ] + }, + { + "mesh":757, + "name":"Sphere054", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.19780158996582, + 1.282675862312317, + 4.098086833953857 + ] + }, + { + "mesh":758, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface237", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.870067596435547, + 0.9865857362747192, + 5.562185287475586 + ] + }, + { + "mesh":759, + "name":"Obj3d66-647191-18-843", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.568323135375977, + 1.6729644536972046, + 18.269939422607422 + ] + }, + { + "mesh":760, + "name":"Circle1964", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.212594985961914, + 1.3985601663589478, + -5.459476947784424 + ] + }, + { + "mesh":761, + "name":"Object1797", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.101861596107483, + 16.99413299560547 + ] + }, + { + "mesh":762, + "name":"Rectangle1384", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 6.3617329597473145 + ] + }, + { + "mesh":763, + "name":"Rectangle410", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 5.0724029541015625, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":764, + "name":"pasted__pasted__pTorus043", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.418676376342773, + 5.01207160949707, + 0.020197421312332153 + ] + }, + { + "mesh":765, + "name":"Obj3d66-647191-21-791", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.453460693359375, + 1.6637946367263794, + 12.119864463806152 + ] + }, + { + "mesh":766, + "name":"Circle2693", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.757936477661133, + 1.357746958732605, + 0.21577659249305725 + ] + }, + { + "mesh":767, + "name":"pasted__pasted__pCube386", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + -3.5568361282348633 + ] + }, + { + "mesh":768, + "name":"pasted__pasted__pasted__pCube405", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 0.7962993383407593, + -7.4148268699646 + ] + }, + { + "mesh":769, + "name":"Circle1988", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9059168100357056, + -5.459476947784424 + ] + }, + { + "mesh":770, + "name":"Object2220", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.508928298950195, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":771, + "name":"pasted__pasted__pasted__pasted__pasted__extrudedSurface067", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.279504776000977, + 1.3869057893753052, + 14.707235336303711 + ] + }, + { + "mesh":772, + "name":"pasted__pasted__pCylinder7.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.882011413574219, + 2.0976662635803223, + -6.23875617980957 + ] + }, + { + "mesh":773, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube573", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 1.2274454832077026, + -9.316967964172363 + ] + }, + { + "mesh":774, + "name":"Circle2895", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.057769775390625, + 1.7476130723953247, + 1.2809302806854248 + ] + }, + { + "mesh":775, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube591", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 0.9979482889175415, + -3.273383855819702 + ] + }, + { + "mesh":776, + "name":"pasted__pasted__pTorus012", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.904987335205078, + 3.341920852661133, + -7.374905586242676 + ] + }, + { + "mesh":777, + "name":"Object2652", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.822467803955078, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":778, + "name":"pasted__pasted__pPipe073", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.531618118286133, + 1.5744904279708862, + 0.48180803656578064 + ] + }, + { + "mesh":779, + "name":"pasted__pasted__pasted__pasted__pCylinder819", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414154052734375, + 1.0796922445297241, + 14.968375205993652 + ] + }, + { + "mesh":780, + "name":"Rectangle543", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.8989181518554688, + 1.4494742155075073, + 1.0658206939697266 + ] + }, + { + "mesh":781, + "name":"Rectangle797", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -6.4752726554870605 + ] + }, + { + "mesh":782, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube299", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.925851821899414, + 1.3735631704330444, + 0.6704771518707275 + ] + }, + { + "mesh":783, + "name":"pasted__pasted__pasted__pasted__pCylinder897", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.602706909179688, + 1.0796922445297241, + 15.701493263244629 + ] + }, + { + "mesh":784, + "name":"pasted__pasted__pCube561", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.239755630493164, + 3.367274761199951, + -7.466108322143555 + ] + }, + { + "mesh":785, + "name":"Object2040", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.119411468505859, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube644", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface723", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -0.00834827870130539 + ] + }, + { + "mesh":786, + "name":"pasted__pasted__pCylinder458", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.627161026000977, + -1.4001702070236206, + 6.237325191497803 + ] + }, + { + "mesh":787, + "name":"pasted__pasted__pCylinder579", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.218090057373047, + 0.3064950704574585, + -2.1340503692626953 + ] + }, + { + "mesh":788, + "name":"Circle1569", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9417961835861206, + -4.7167582511901855 + ] + }, + { + "mesh":789, + "name":"Line2450", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.87018394470215, + 2.191924571990967, + 4.494448184967041 + ] + }, + { + "mesh":790, + "name":"pasted__pasted__pCube713", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.451486587524414, + 5.052017688751221, + 2.2903144359588623 + ] + }, + { + "mesh":791, + "name":"pasted__pasted__pCylinder10", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.905208587646484, + 2.179356575012207, + -4.930428981781006 + ] + }, + { + "mesh":792, + "name":"pasted__pasted__pasted__pasted__pasted__pCube573", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.571977615356445, + 1.4680649042129517, + 12.749217987060547 + ] + }, + { + "mesh":793, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube280", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 0.3764752149581909, + -0.7980053424835205 + ] + }, + { + "mesh":794, + "name":"pasted__pasted__pasted__pCylinder647", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.641426086425781, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":795, + "name":"pasted__pasted__pCube627", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.975038528442383, + 1.082088828086853, + 2.49900484085083 + ] + }, + { + "mesh":796, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface721", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40271759033203, + 0.9035907983779907, + 13.954267501831055 + ] + }, + { + "mesh":797, + "name":"Circle2663", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.197470188140869, + 0.6277795433998108 + ] + }, + { + "mesh":798, + "name":"pasted__pasted__pCylinder334.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.39310646057129, + 4.853360652923584, + -5.685439586639404 + ] + }, + { + "mesh":799, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder31", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 1.3803664445877075, + -6.4738383293151855 + ] + }, + { + "mesh":800, + "name":"Circle3126", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.978334426879883, + 2.1535534858703613, + 3.6717348098754883 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube172", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":801, + "name":"Object2326", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.479394912719727, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":802, + "name":"pasted__pasted__pasted__pCube401", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9333295822143555, + 0.7724686861038208, + -7.595371723175049 + ] + }, + { + "mesh":803, + "name":"Line2439", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.357885360717773, + 0.18367278575897217, + 0.6219753623008728 + ] + }, + { + "mesh":804, + "name":"Object2674", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.791528701782227, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":805, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube436", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.927738189697266, + 1.4446173906326294, + -7.753230571746826 + ] + }, + { + "mesh":806, + "name":"Sphere035", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.720693588256836, + 1.3528996706008911, + -5.459476947784424 + ] + }, + { + "mesh":807, + "name":"Object2083", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.058938026428223, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":808, + "name":"pasted__pasted__pCube514", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.61594009399414, + -0.5983297824859619, + -7.560935974121094 + ] + }, + { + "mesh":809, + "name":"Circle3309", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.439908981323242, + 1.5078340768814087, + -5.688488960266113 + ] + }, + { + "mesh":810, + "name":"Object1972", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.095499038696289, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":811, + "name":"Rectangle912", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.537357330322266, + 1.039061188697815, + -5.453815937042236 + ] + }, + { + "mesh":812, + "name":"Object2306", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.50752067565918, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":813, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube384", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + -0.7043430805206299 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube405", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":814, + "name":"Circle2714", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.896335482597351, + -0.08181890100240707 + ] + }, + { + "mesh":815, + "name":"Rectangle1078", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.048496246337891, + 0.04489290714263916, + -9.0326566696167 + ] + }, + { + "mesh":816, + "name":"pasted__pasted__pPipe043", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.46693992614746, + 0.8586965799331665, + -7.6864013671875 + ] + }, + { + "mesh":817, + "name":"Object2052", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.102532386779785, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":818, + "name":"Line2403", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.174552917480469, + 2.6885619163513184, + -5.545894145965576 + ] + }, + { + "mesh":819, + "name":"pasted__pasted__pCylinder339.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.7839298248291, + 4.842443466186523, + -4.360376834869385 + ] + }, + { + "mesh":820, + "name":"pasted__pasted__pasted__polySurface538", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9243946075439453, + 0.6901217699050903, + -0.5274660587310791 + ] + }, + { + "mesh":821, + "name":"Object2638", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.842159271240234, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":822, + "name":"Object2275", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.43157958984375, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":823, + "name":"pasted__pasted__pCylinder22", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.009218215942383, + 2.5090794563293457, + -4.873505592346191 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube571", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":824, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube421", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + 4.750385284423828 + ] + }, + { + "mesh":825, + "name":"Circle1792", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.028366088867188, + 1.8345891237258911, + -4.757926940917969 + ] + }, + { + "mesh":826, + "name":"polySurface094", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.6192779541015625, + 1.443468689918518, + 13.79013442993164 + ] + }, + { + "mesh":827, + "name":"Circle1854", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.885032653808594, + 1.837321162223816, + -4.765588283538818 + ] + }, + { + "mesh":828, + "name":"pasted__pasted__pCube635", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.958223342895508, + 2.577449321746826, + -2.1342718601226807 + ] + }, + { + "mesh":829, + "name":"Obj3d66-647191-16-704", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4521961212158203, + 1.6718095541000366, + 12.174750328063965 + ] + }, + { + "mesh":830, + "name":"Rectangle1109", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.820917129516602, + 0.14451777935028076, + 12.883796691894531 + ] + }, + { + "mesh":831, + "name":"pasted__pasted__pPipe111", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.871406555175781, + 1.845382809638977, + 5.7708282470703125 + ] + }, + { + "mesh":832, + "name":"Circle2232", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.761801838874817, + -1.5863474607467651 + ] + }, + { + "mesh":833, + "name":"Object2349", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.447052001953125, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":834, + "name":"Rectangle562", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.425518035888672, + 0.5256079435348511, + 13.961438179016113 + ] + }, + { + "mesh":835, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder36", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 0.3832782506942749, + -5.887144565582275 + ] + }, + { + "mesh":836, + "name":"pasted__pasted__pasted__pPlane319", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.4676456451416, + 0.38407886028289795, + 15.046956062316895 + ] + }, + { + "mesh":837, + "name":"pasted__pasted__pCylinder635", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.089197158813477, + 4.840120792388916, + 3.95070743560791 + ] + }, + { + "mesh":838, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface217", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.921976089477539, + 1.4112459421157837, + -7.514112949371338 + ] + }, + { + "mesh":839, + "name":"Object2094", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.1064001321792603, + 16.99413299560547 + ] + }, + { + "mesh":840, + "name":"Obj3d66-647191-14-920", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.583311080932617, + 1.672275424003601, + 5.563130855560303 + ] + }, + { + "mesh":841, + "name":"pasted__pasted__pasted__pasted__pCylinder827", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414453506469727, + 0.28987395763397217, + 15.701667785644531 + ] + }, + { + "mesh":842, + "name":"Circle2801", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.128690719604492, + 1.6507774591445923, + 0.6277795433998108 + ] + }, + { + "mesh":843, + "name":"Circle1547", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.86788809299469, + -5.460317134857178 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube211", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 5.934509754180908 + ] + }, + { + "mesh":844, + "name":"Circle2689", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.2574313879013062, + 0.6277793645858765 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube607", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":845, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pasted__pasted__pasted__polySurface479", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.2245235443115234, + 0.6837161779403687, + -13.156245231628418 + ] + }, + { + "mesh":846, + "name":"Line2432", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.87018394470215, + 2.191924571990967, + -1.405784010887146 + ] + }, + { + "mesh":847, + "name":"pasted__pasted__pPipe060", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.62812614440918, + -0.4148823022842407, + 6.756235122680664 + ] + }, + { + "mesh":848, + "name":"Rectangle1283", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451777935028076, + 1.2963411808013916 + ] + }, + { + "mesh":849, + "name":"Line2408", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.033369064331055, + 0.19340407848358154, + -5.454657077789307 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface720", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 0.6042507886886597 + ] + }, + { + "mesh":850, + "name":"Circle2997", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.481918454170227, + 3.6717348098754883 + ] + }, + { + "mesh":851, + "name":"Circle2731", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0651402473449707, + -0.17689061164855957 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube179", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door106", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.3501960039138794 + ] + }, + { + "mesh":852, + "name":"Line2380", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 22.412023544311523, + 0.10359084606170654, + 0.6776700019836426 + ] + }, + { + "mesh":853, + "name":"Object1953", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.122220993041992, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":854, + "name":"pasted__pasted__pCube400.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.458927154541016, + 5.064015865325928, + -5.538721561431885 + ] + }, + { + "mesh":855, + "name":"pasted__pasted__pPipe089", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.243392944335938, + 1.2939432859420776, + -2.1415951251983643 + ] + }, + { + "mesh":856, + "name":"Circle1496", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6129926443099976, + -4.902008056640625 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface762", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 6.547109127044678 + ] + }, + { + "mesh":857, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface589", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9352035522460938, + 0.9035266637802124, + -8.006786346435547 + ] + }, + { + "mesh":858, + "name":"pasted__pasted__pasted__pCylinder637", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.069101333618164, + 0.5030606985092163, + 16.585969924926758 + ] + }, + { + "mesh":859, + "name":"pasted__pasted__pasted__pasted__pCylinder805", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.153039932250977, + 0.28987395763397217, + 14.820230484008789 + ] + }, + { + "mesh":860, + "name":"Circle3025", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.2354989051818848, + 3.6717348098754883 + ] + }, + { + "mesh":861, + "name":"pasted__pasted__pasted__pPlane300", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -13.207189559936523, + 0.38866126537323, + 16.590402603149414 + ] + }, + { + "mesh":862, + "name":"pasted__pasted__pCylinder718", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.872264862060547, + 0.07832396030426025, + 5.248363018035889 + ] + }, + { + "mesh":863, + "name":"Obj3d66-647191-17-858", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567289352416992, + 1.672275424003601, + 18.269939422607422 + ] + }, + { + "mesh":864, + "name":"Circle1588", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.517868041992188, + 1.1369620561599731, + -5.149173736572266 + ] + }, + { + "mesh":865, + "name":"pasted__pasted__pTorus042", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.507848739624023, + 5.048587322235107, + 0.020197421312332153 + ] + }, + { + "mesh":866, + "name":"Obj3d66-647191-20-069", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4519214630126953, + 1.6739333868026733, + 12.119864463806152 + ] + }, + { + "mesh":867, + "name":"pasted__pasted__pasted__pPlane082", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.751443862915039, + 0.38407886028289795, + 16.264780044555664 + ] + }, + { + "mesh":868, + "name":"pasted__pasted__pCylinder343", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.900421142578125, + 5.058504581451416, + -5.502498149871826 + ] + }, + { + "mesh":869, + "name":"pasted__pasted__pasted__pCube404", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 1.320726752281189, + -7.414827346801758 + ] + }, + { + "mesh":870, + "name":"Circle1987", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8932405710220337, + -5.459476947784424 + ] + }, + { + "mesh":871, + "name":"pasted__pasted__pPipe30", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.531618118286133, + 1.5744904279708862, + -5.60634183883667 + ] + }, + { + "mesh":872, + "name":"Object2219", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.510334014892578, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":873, + "name":"pasted__pasted__group22_pCube041", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.6377716064453125, + 11.211284637451172, + 17.31597900390625 + ] + }, + { + "mesh":874, + "name":"Obj3d66-647191-17-855", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980937957763672, + 1.672275424003601, + -15.548868179321289 + ] + }, + { + "mesh":875, + "name":"pasted__pasted__pasted__pasted__pasted__extrudedSurface066", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.261693954467773, + 1.4086898565292358, + 14.2822904586792 + ] + }, + { + "mesh":876, + "name":"Rectangle593", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.652071952819824, + 0.14451825618743896, + 16.87247085571289 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube613", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":877, + "name":"Circle1642", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.997618556022644, + -6.226959228515625 + ] + }, + { + "mesh":878, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface241", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.463172912597656, + 1.454501748085022, + 5.260088920593262 + ] + }, + { + "mesh":879, + "name":"pasted__pasted__pTorus013", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.928977966308594, + 3.341920852661133, + -7.619144439697266 + ] + }, + { + "mesh":880, + "name":"pasted__pasted__pCube727", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.35550880432129, + 5.064015865325928, + 2.840350866317749 + ] + }, + { + "mesh":881, + "name":"pasted__pasted__pPipe072", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.531618118286133, + 1.5744904279708862, + 0.27555492520332336 + ] + }, + { + "mesh":882, + "name":"Rectangle598", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.212726593017578, + 0.14451777935028076, + 15.133939743041992 + ] + }, + { + "mesh":883, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder080", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 1.3803664445877075, + 0.6710430979728699 + ] + }, + { + "mesh":884, + "name":"Sphere045", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8063907623291, + 1.2992044687271118, + 0.21577659249305725 + ] + }, + { + "mesh":885, + "name":"pasted__pasted__pasted__pasted__pCylinder896", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785398483276367, + 1.0796922445297241, + 15.701667785644531 + ] + }, + { + "mesh":886, + "name":"pasted__pasted__pCube560", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.938676834106445, + 3.3573498725891113, + -7.466799736022949 + ] + }, + { + "mesh":887, + "name":"Circle2875", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.976919174194336, + 1.9867974519729614, + 1.4163401126861572 + ] + }, + { + "mesh":888, + "name":"Object2039", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.120815277099609, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":889, + "name":"Circle2528", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.050416946411133, + 1.7693573236465454, + -1.5630364418029785 + ] + }, + { + "mesh":890, + "name":"Rectangle788", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -5.624711513519287 + ] + }, + { + "mesh":891, + "name":"pasted__pasted__extrudedSurface024", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.621416091918945, + -1.5230659246444702, + 6.250572681427002 + ] + }, + { + "mesh":892, + "name":"pasted__pasted__pCylinder346", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.218090057373047, + 0.3064950704574585, + -7.814346790313721 + ] + }, + { + "mesh":893, + "name":"Line2449", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.678508758544922, + 2.347517967224121, + 3.627427339553833 + ] + }, + { + "mesh":894, + "name":"pasted__pasted__pCube712", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.45350456237793, + 5.064568996429443, + 3.1414334774017334 + ] + }, + { + "mesh":895, + "name":"pasted__pasted__pasted__pasted__pasted__pCube572", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.62666130065918, + 1.0152369737625122, + 12.744747161865234 + ] + }, + { + "mesh":896, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube279", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 1.3735638856887817, + -0.7980053424835205 + ] + }, + { + "mesh":897, + "name":"pasted__pasted__pCube397.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.556926727294922, + 5.064568996429443, + -4.125682830810547 + ] + }, + { + "mesh":898, + "name":"pasted__pasted__pasted__pCylinder646", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.052242279052734, + 0.5030611753463745, + 16.585969924926758 + ] + }, + { + "mesh":899, + "name":"pasted__pasted__pCube626", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.975038528442383, + 1.2804936170578003, + 2.499006509780884 + ] + }, + { + "mesh":900, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface720", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40271759033203, + 1.350049376487732, + 13.954267501831055 + ] + }, + { + "mesh":901, + "name":"pasted__pasted__pasted__pCube548", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.671411514282227, + 0.25255119800567627, + 16.590106964111328 + ] + }, + { + "mesh":902, + "name":"Circle3007", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8045071363449097, + 3.6717348098754883 + ] + }, + { + "mesh":903, + "name":"Circle2662", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.210145950317383, + 0.6277795433998108 + ] + }, + { + "mesh":904, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube234", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + -6.471060752868652 + ] + }, + { + "mesh":905, + "name":"pasted__pasted__pasted__pCube187", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 1.2411547899246216, + 16.828125 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube171", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube570", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":906, + "name":"Rectangle1226", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.73845374584198, + -8.007944107055664 + ] + }, + { + "mesh":907, + "name":"Circle2928", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.687036514282227, + 0.19340407848358154, + 0.6334410309791565 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__polySurface070", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":908, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube176", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.92593765258789, + 1.4366048574447632, + -7.625091552734375 + ] + }, + { + "mesh":909, + "name":"pasted__pasted__pasted__pasted__polySurface382", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.69390106201172, + 0.6369913816452026, + 13.790817260742188 + ] + }, + { + "mesh":910, + "name":"Object2082", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.060342788696289, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":911, + "name":"pasted__pasted__pCylinder717", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.176162719726562, + 1.583316683769226, + 5.361969470977783 + ] + }, + { + "mesh":912, + "name":"pasted__pasted__pPipe036", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.62812614440918, + -0.4148823022842407, + -7.225938320159912 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors135", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__polySurface073", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":913, + "name":"Circle1960", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.817222595214844, + 1.118975043296814, + -5.7677154541015625 + ] + }, + { + "mesh":914, + "name":"Object2305", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.508928298950195, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":915, + "name":"Circle2293", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8932405710220337, + -2.22849702835083 + ] + }, + { + "mesh":916, + "name":"Circle2773", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.022436141967773, + 2.0060811042785645, + 0.6277795433998108 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube364", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.3501960039138794 + ] + }, + { + "mesh":917, + "name":"Rectangle1077", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.048496246337891, + 0.04489290714263916, + -9.501599311828613 + ] + }, + { + "mesh":918, + "name":"pasted__pasted__pPipe042", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.468690872192383, + 0.8532906770706177, + -7.308398246765137 + ] + }, + { + "mesh":919, + "name":"Object2051", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.103940010070801, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":920, + "name":"Circle2931", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.4346312284469604, + 4.325755596160889 + ] + }, + { + "mesh":921, + "name":"polySurface351", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.46466064453125, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":922, + "name":"Rectangle775", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7509279251098633, + 0.1627582311630249, + -9.267622947692871 + ] + }, + { + "mesh":923, + "name":"pasted__pasted__pTorus3.005", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.367027282714844, + 5.048586368560791, + -4.3699870109558105 + ] + }, + { + "mesh":924, + "name":"pasted__pasted__pasted__pCylinder741", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9305353164672852, + 0.8645821809768677, + -0.4314507842063904 + ] + }, + { + "mesh":925, + "name":"Object2274", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.432985305786133, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":926, + "name":"pasted__pasted__pCylinder21", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.00054931640625, + 2.481602668762207, + -4.8782525062561035 + ] + }, + { + "mesh":927, + "name":"Rectangle351.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.244171142578125, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":928, + "name":"pasted__pasted__pasted__pCube177", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 0.8213735818862915, + 14.92426586151123 + ] + }, + { + "mesh":929, + "name":"Object2418", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84667205810547, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":930, + "name":"pasted__pasted__pasted__pasted__pPipe022", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.982082366943359, + 1.2212475538253784, + 13.799349784851074 + ] + }, + { + "mesh":931, + "name":"pasted__pasted__pCube634", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.971406936645508, + 2.7758541107177734, + -2.134270429611206 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube393", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":932, + "name":"pasted__pasted__pCylinder341", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.070056915283203, + 5.058504581451416, + -5.502498149871826 + ] + }, + { + "mesh":933, + "name":"Object2348", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.448455810546875, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":934, + "name":"pasted__pasted__pCube409", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + -7.29293966293335 + ] + }, + { + "mesh":935, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder35", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 0.3832782506942749, + -5.593830585479736 + ] + }, + { + "mesh":936, + "name":"pasted__pasted__pasted__pPlane318", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.4676456451416, + 0.38407886028289795, + 14.478879928588867 + ] + }, + { + "mesh":937, + "name":"pasted__pasted__pCylinder14.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.944412231445312, + 2.3035941123962402, + -5.591787338256836 + ] + }, + { + "mesh":938, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder47", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.916704177856445, + 0.19178593158721924, + -7.3567376136779785 + ] + }, + { + "mesh":939, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube631", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 0.9979475736618042, + 3.260234832763672 + ] + }, + { + "mesh":940, + "name":"Object2093", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.1109386682510376, + 16.99413299560547 + ] + }, + { + "mesh":941, + "name":"Obj3d66-647191-13-180", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.583311080932617, + 1.6729644536972046, + 5.562098503112793 + ] + }, + { + "mesh":942, + "name":"Circle2739", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9751108884811401, + -0.12618568539619446 + ] + }, + { + "mesh":943, + "name":"pasted__pasted__pasted__pasted__pCylinder826", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.492883682250977, + 0.28987395763397217, + 15.849641799926758 + ] + }, + { + "mesh":944, + "name":"Circle2800", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.124176025390625, + 1.6658674478530884, + 0.6277795433998108 + ] + }, + { + "mesh":945, + "name":"Circle1546", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8552120923995972, + -5.460317134857178 + ] + }, + { + "mesh":946, + "name":"Object2496", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.802778244018555, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":947, + "name":"pasted__pasted__pasted__pPlane329", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.4700870513916, + 0.3886607885360718, + 15.698271751403809 + ] + }, + { + "mesh":948, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube42", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + -5.6048970222473145 + ] + }, + { + "mesh":949, + "name":"Object2060", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.091281890869141, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":950, + "name":"pasted__pasted__pPipe059", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.62812614440918, + -0.6296476125717163, + 6.774414539337158 + ] + }, + { + "mesh":951, + "name":"Rectangle1282", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 2.1574032306671143 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface719", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 0.6042507886886597 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube442", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":952, + "name":"Circle1812", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.101869583129883, + 1.6171492338180542, + -4.8810272216796875 + ] + }, + { + "mesh":953, + "name":"Circle2831", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.04081153869629, + 1.815797209739685, + -0.04277431219816208 + ] + }, + { + "mesh":954, + "name":"Circle2988", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.2971247434616089, + 4.043710231781006 + ] + }, + { + "mesh":955, + "name":"Circle1817", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.122756958007812, + 1.5553566217422485, + -4.916009902954102 + ] + }, + { + "mesh":956, + "name":"Circle2372", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.997618556022644, + -2.995138645172119 + ] + }, + { + "mesh":957, + "name":"Circle2730", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0763936042785645, + -0.18322867155075073 + ] + }, + { + "mesh":958, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface530", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6865177154541016, + 0.9035907983779907, + 13.954267501831055 + ] + }, + { + "mesh":959, + "name":"pasted__pasted__pCylinder13", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.931211471557617, + 2.261786460876465, + -4.91619873046875 + ] + }, + { + "mesh":960, + "name":"Circle2432", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.110639572143555, + 1.7111369371414185, + -2.22849702835083 + ] + }, + { + "mesh":961, + "name":"Object1791", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.129093050956726, + 16.99413299560547 + ] + }, + { + "mesh":962, + "name":"Object1952", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.123625755310059, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface771", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 5.934509754180908 + ] + }, + { + "mesh":963, + "name":"Rectangle1222", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.73845374584198, + -8.596988677978516 + ] + }, + { + "mesh":964, + "name":"pasted__pasted__pPipe088", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.25892448425293, + 1.0760306119918823, + -2.1415951251983643 + ] + }, + { + "mesh":965, + "name":"Circle1469", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6718045473098755, + -4.868873119354248 + ] + }, + { + "mesh":966, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube355", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + -9.002479553222656 + ] + }, + { + "mesh":967, + "name":"Circle2949", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8180502653121948, + 4.345574855804443 + ] + }, + { + "mesh":968, + "name":"pasted__pasted__pasted__pCylinder636", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.069101333618164, + 1.2660449743270874, + 16.585969924926758 + ] + }, + { + "mesh":969, + "name":"pasted__pasted__pasted__pasted__polySurface375", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.322957992553711, + 0.251440167427063, + 14.820230484008789 + ] + }, + { + "mesh":970, + "name":"pasted__pasted__pasted__pCylinder153", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.355897903442383, + 0.5030606985092163, + 12.94787883758545 + ] + }, + { + "mesh":971, + "name":"Object2105", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.0564748048782349, + 16.99413299560547 + ] + }, + { + "mesh":972, + "name":"pasted__pasted__pasted__pasted__polySurface380", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.322957992553711, + 1.0412582159042358, + 15.849638938903809 + ] + }, + { + "mesh":973, + "name":"pasted__pasted__pasted__pCube161", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 1.399283766746521, + 14.8716459274292 + ] + }, + { + "mesh":974, + "name":"Obj3d66-647191-28-045", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567583084106445, + 1.6571954488754272, + -15.605900764465332 + ] + }, + { + "mesh":975, + "name":"Rectangle408", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3181657791137695, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":976, + "name":"pasted__pasted__pCylinder588", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.481767654418945, + 4.853360652923584, + -0.0035068243741989136 + ] + }, + { + "mesh":977, + "name":"Obj3d66-647191-19-292", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4521961212158203, + 1.6718095541000366, + 12.119864463806152 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube617", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube576", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":978, + "name":"pasted__pasted__pCylinder3.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.845306396484375, + 1.988362193107605, + -6.220124244689941 + ] + }, + { + "mesh":979, + "name":"pasted__pasted__pCylinder342", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.995811462402344, + 5.305135250091553, + -5.508087635040283 + ] + }, + { + "mesh":980, + "name":"pasted__pasted__pasted__pCube403", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 1.0594738721847534, + -7.414827346801758 + ] + }, + { + "mesh":981, + "name":"Circle3068", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6712626218795776, + 3.0888986587524414 + ] + }, + { + "mesh":982, + "name":"polySurface316", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.076736450195312, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":983, + "name":"Object2218", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.511737823486328, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":984, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube340", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + 5.082380771636963 + ] + }, + { + "mesh":985, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder102", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + 5.9486188888549805 + ] + }, + { + "mesh":986, + "name":"pasted__pasted__pasted__pCube595", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.469785690307617, + 0.25255048274993896, + 16.591156005859375 + ] + }, + { + "mesh":987, + "name":"Object2526", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.880128860473633, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":988, + "name":"pasted__pasted__pCylinder5", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.861871719360352, + 2.0419702529907227, + -4.954164981842041 + ] + }, + { + "mesh":989, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface242", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.530279159545898, + 1.515206217765808, + 5.559608459472656 + ] + }, + { + "mesh":990, + "name":"Circle1693", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.07756233215332, + 1.821740746498108, + -5.460317134857178 + ] + }, + { + "mesh":991, + "name":"pasted__pasted__pTorus018", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.92896842956543, + 3.3054070472717285, + -7.529970169067383 + ] + }, + { + "mesh":992, + "name":"pasted__pasted__pPipe071", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.531618118286133, + 1.5744904279708862, + 0.07395495474338531 + ] + }, + { + "mesh":993, + "name":"Circle3069", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6825164556503296, + 3.0825603008270264 + ] + }, + { + "mesh":994, + "name":"Rectangle795", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -3.886181592941284 + ] + }, + { + "mesh":995, + "name":"Rectangle393", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.27181053161621, + 0.14451754093170166, + -16.603012084960938 + ] + }, + { + "mesh":996, + "name":"Circle2262", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.517868041992188, + 1.1369620561599731, + -2.228497266769409 + ] + }, + { + "mesh":997, + "name":"pasted__pasted__pasted__pCube183", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 1.399283766746521, + 15.57959270477295 + ] + }, + { + "mesh":998, + "name":"pasted__pasted__pasted__pasted__pCylinder895", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.863826751708984, + 1.0796922445297241, + 15.849641799926758 + ] + }, + { + "mesh":999, + "name":"pasted__pasted__pCube559", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.789796829223633, + 3.367274761199951, + -7.466108322143555 + ] + }, + { + "mesh":1000, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube45", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 0.3764752149581909, + -5.017553806304932 + ] + }, + { + "mesh":1001, + "name":"Object2038", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.122220993041992, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1002, + "name":"Object2434", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.889972686767578, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1003, + "name":"Object2473", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.835126876831055, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1004, + "name":"pasted__pasted__pCube618", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.63056755065918, + 0.06377255916595459, + 6.145967960357666 + ] + }, + { + "mesh":1005, + "name":"Rectangle939", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.753278732299805, + 1.1144360303878784, + 3.6804096698760986 + ] + }, + { + "mesh":1006, + "name":"pasted__pasted__pCube711", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.451486587524414, + 5.052017688751221, + 2.840350866317749 + ] + }, + { + "mesh":1007, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface715", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.309789657592773, + 0.718347430229187, + 12.764594078063965 + ] + }, + { + "mesh":1008, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder068", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + -0.7985920310020447 + ] + }, + { + "mesh":1009, + "name":"pasted__pasted__pCube404.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.458927154541016, + 5.064015865325928, + -6.651179790496826 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube206", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 4.803884506225586 + ] + }, + { + "mesh":1010, + "name":"pasted__pasted__pCube396.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.554912567138672, + 5.052017688751221, + -4.426765441894531 + ] + }, + { + "mesh":1011, + "name":"pasted__pasted__pasted__pCylinder645", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.052242279052734, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":1012, + "name":"pasted__pasted__extrudedSurface026", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.204841613769531, + 0.1835993528366089, + 2.486049175262451 + ] + }, + { + "mesh":1013, + "name":"pasted__pasted__pCube611", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.634368896484375, + -0.4261718988418579, + 6.480375289916992 + ] + }, + { + "mesh":1014, + "name":"pasted__pasted__pCube625", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.887022018432617, + 1.1269747018814087, + 2.472987413406372 + ] + }, + { + "mesh":1015, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface719", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40271759033203, + 1.1310111284255981, + 13.954267501831055 + ] + }, + { + "mesh":1016, + "name":"Circle2661", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.222822666168213, + 0.6277795433998108 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube170", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":1017, + "name":"Rectangle930", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.687047958374023, + 0.11240279674530029, + 0.6334408521652222 + ] + }, + { + "mesh":1018, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube111", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.030424118041992, + 1.358019232749939, + -6.355925559997559 + ] + }, + { + "mesh":1019, + "name":"pasted__pasted__pasted__pasted__pPipe083", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.698280334472656, + 0.43142926692962646, + 13.799349784851074 + ] + }, + { + "mesh":1020, + "name":"Object2081", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.061748504638672, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1021, + "name":"pasted__pasted__pPipe035", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.62812614440918, + -0.6296476125717163, + -7.207759380340576 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface659", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -7.182558059692383 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube485", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":1022, + "name":"Circle2742", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9413498640060425, + -0.10717134922742844 + ] + }, + { + "mesh":1023, + "name":"Circle1959", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.817222595214844, + 1.118975043296814, + -5.148332595825195 + ] + }, + { + "mesh":1024, + "name":"Object2304", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.510334014892578, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1025, + "name":"Arc03", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.586414337158203, + 0.42619216442108154, + -0.5851044058799744 + ] + }, + { + "mesh":1026, + "name":"Object2592", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.787309646606445, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1027, + "name":"Rectangle793", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.456121444702148, + 0.6124781370162964, + -6.690112113952637 + ] + }, + { + "mesh":1028, + "name":"pasted__pasted__pasted__pasted__pCylinder790", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414453506469727, + 0.28987395763397217, + 13.642838478088379 + ] + }, + { + "mesh":1029, + "name":"Circle1521", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.571553111076355, + -4.925354957580566 + ] + }, + { + "mesh":1030, + "name":"pasted__pasted__pPipe041", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.468690872192383, + 1.068055510520935, + -7.326577186584473 + ] + }, + { + "mesh":1031, + "name":"Object2050", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.105344772338867, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1032, + "name":"Rectangle773", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7360172271728516, + 0.510698676109314, + -8.982117652893066 + ] + }, + { + "mesh":1033, + "name":"pasted__pasted__pCylinder329.004", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.166566848754883, + 4.9288010597229, + -5.701976299285889 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube166", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":1034, + "name":"pasted__pasted__pasted__pCylinder740", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.929457664489746, + 0.8645821809768677, + -0.5997821688652039 + ] + }, + { + "mesh":1035, + "name":"Circle2957", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5577400922775269, + 4.198915004730225 + ] + }, + { + "mesh":1036, + "name":"Object2273", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.434392929077148, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1037, + "name":"pasted__pasted__pCylinder20", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.991880416870117, + 2.4541258811950684, + -4.883000373840332 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube569", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":1038, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder072", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 1.3803664445877075, + -0.20684820413589478 + ] + }, + { + "mesh":1039, + "name":"pasted__pasted__pasted__pasted__pCylinder461", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886508941650391, + 1.079692006111145, + 13.642666816711426 + ] + }, + { + "mesh":1040, + "name":"pasted__pasted__pCylinder421", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.047704696655273, + 3.3518385887145996, + -7.427178382873535 + ] + }, + { + "mesh":1041, + "name":"pasted__pasted__pCube633", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.897441864013672, + 2.6223349571228027, + -2.1602792739868164 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__polySurface058", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube199", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -0.5263744592666626 + ] + }, + { + "mesh":1042, + "name":"Circle2806", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.23468589782715, + 1.2725671529769897, + 0.6277793645858765 + ] + }, + { + "mesh":1043, + "name":"pasted__pasted__pCube408", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + -7.594021320343018 + ] + }, + { + "mesh":1044, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube241", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.925851821899414, + 1.3735631704330444, + -5.594396591186523 + ] + }, + { + "mesh":1045, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube330", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.88755989074707, + 1.3735638856887817, + 4.780620098114014 + ] + }, + { + "mesh":1046, + "name":"pasted__pasted__pasted__pCylinder718", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565055847168, + 0.503059983253479, + 12.976770401000977 + ] + }, + { + "mesh":1047, + "name":"pasted__pasted__pCylinder13.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.935365676879883, + 2.275829315185547, + -5.591787338256836 + ] + }, + { + "mesh":1048, + "name":"pasted__pasted__pCylinder20.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.00129508972168, + 2.452906608581543, + -6.299304962158203 + ] + }, + { + "mesh":1049, + "name":"Rectangle208", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.897684097290039, + 0.1627582311630249, + -12.833106994628906 + ] + }, + { + "mesh":1050, + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface597", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.64222526550293, + 0.6940604448318481, + 8.105183601379395 + ] + }, + { + "mesh":1051, + "name":"Circle2887", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.028366088867188, + 1.8345891237258911, + 1.3301701545715332 + ] + }, + { + "mesh":1052, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder55", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.839139938354492, + 0.12095391750335693, + -7.771591663360596 + ] + }, + { + "mesh":1053, + "name":"pasted__pasted__pPipe116", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.78164291381836, + 2.5599560737609863, + 3.1476871967315674 + ] + }, + { + "mesh":1054, + "name":"Object2092", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.115477442741394, + 16.99413299560547 + ] + }, + { + "mesh":1055, + "name":"Circle2633", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.5398427248001099, + 0.6277793645858765 + ] + }, + { + "mesh":1056, + "name":"pasted__pasted__pasted__pPlane320", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.368288040161133, + 0.3886607885360718, + 12.952313423156738 + ] + }, + { + "mesh":1057, + "name":"pasted__pasted__pasted__pasted__pCylinder825", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414154052734375, + 0.28987395763397217, + 15.99779224395752 + ] + }, + { + "mesh":1058, + "name":"Circle2799", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.119661331176758, + 1.6809571981430054, + 0.6277796030044556 + ] + }, + { + "mesh":1059, + "name":"Circle3198", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.048160552978516, + 1.7942734956741333, + 3.013490915298462 + ] + }, + { + "mesh":1060, + "name":"Circle1545", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8425358533859253, + -5.460317134857178 + ] + }, + { + "mesh":1061, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube571", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 1.2274454832077026, + -8.790603637695312 + ] + }, + { + "mesh":1062, + "name":"Circle2744", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9188429117202759, + -0.09449511021375656 + ] + }, + { + "mesh":1063, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube41", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 1.3735638856887817, + -5.308228015899658 + ] + }, + { + "mesh":1064, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube441", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.927738189697266, + 1.4446173906326294, + -2.072935104370117 + ] + }, + { + "mesh":1065, + "name":"Object2055", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.09831428527832, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1066, + "name":"pasted__pasted__pasted__pasted__pasted__pCube459", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210958480834961, + 0.12430918216705322, + 14.770878791809082 + ] + }, + { + "mesh":1067, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube371", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402330160140991, + -4.291996955871582 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface699", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -1.1389737129211426 + ] + }, + { + "mesh":1068, + "name":"Rectangle1281", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 2.1574032306671143 + ] + }, + { + "mesh":1069, + "name":"Circle3019", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8425358533859253, + 3.6717348098754883 + ] + }, + { + "mesh":1070, + "name":"pasted__pasted__pasted__pasted__pCylinder793", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231466293334961, + 0.6754261255264282, + 13.938788414001465 + ] + }, + { + "mesh":1071, + "name":"Circle2422", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.073888778686523, + 1.8340305089950562, + -2.22849702835083 + ] + }, + { + "mesh":1072, + "name":"Sphere032", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.112104415893555, + 1.299204707145691, + -5.0364484786987305 + ] + }, + { + "mesh":1073, + "name":"Circle2987", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.2372688055038452, + 4.032759189605713 + ] + }, + { + "mesh":1074, + "name":"Circle2729", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.557158350944519, + 0.10920766741037369 + ] + }, + { + "mesh":1075, + "name":"Object1951", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.125036239624023, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube397", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 5.934509754180908 + ] + }, + { + "mesh":1076, + "name":"Circle1914", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.840067744255066, + -4.770544528961182 + ] + }, + { + "mesh":1077, + "name":"pasted__pasted__pPipe087", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.680997848510742, + 1.0770174264907837, + -2.1415953636169434 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube173", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":1078, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door121", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.004312515258789, + 1.444644808769226, + 5.280616283416748 + ] + }, + { + "mesh":1079, + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface586", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.600870132446289, + 0.6940606832504272, + -3.4536144733428955 + ] + }, + { + "mesh":1080, + "name":"Circle2161", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.87542152404785, + 1.7911006212234497, + -6.126222133636475 + ] + }, + { + "mesh":1081, + "name":"Circle2592", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5577400922775269, + 1.154959797859192 + ] + }, + { + "mesh":1082, + "name":"pasted__pasted__pCube848", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.032896041870117, + 1.027711272239685, + 16.581436157226562 + ] + }, + { + "mesh":1083, + "name":"Circle1638", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.042632579803467, + -6.252311706542969 + ] + }, + { + "mesh":1084, + "name":"Sphere043", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8063907623291, + 1.3316925764083862, + 1.0508066415786743 + ] + }, + { + "mesh":1085, + "name":"pasted__pasted__pasted__pCylinder635", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.069101333618164, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":1086, + "name":"pasted__pasted__pasted__pasted__pCylinder804", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.326545715332031, + 0.10737001895904541, + 13.796781539916992 + ] + }, + { + "mesh":1087, + "name":"Object2104", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.0610133409500122, + 16.99413299560547 + ] + }, + { + "mesh":1088, + "name":"pasted__pasted__pasted__pasted__pPipe081", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.327337265014648, + 0.8169807195663452, + 15.858174324035645 + ] + }, + { + "mesh":1089, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface533", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9645328521728516, + 1.128020167350769, + 12.764594078063965 + ] + }, + { + "mesh":1090, + "name":"pasted__pasted__pasted__polySurface024", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6949710845947266, + 0.6836510896682739, + 14.421131134033203 + ] + }, + { + "mesh":1091, + "name":"Circle1586", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.517868041992188, + 1.1369620561599731, + -5.460318088531494 + ] + }, + { + "mesh":1092, + "name":"Rectangle407", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.9921407699584961, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":1093, + "name":"pasted__pasted__pCube374.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.97140884399414, + 2.7758541107177734, + -3.181290864944458 + ] + }, + { + "mesh":1094, + "name":"pasted__pasted__pCylinder601", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.289690017700195, + 4.853360652923584, + 0.01062987744808197 + ] + }, + { + "mesh":1095, + "name":"Circle2522", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.028366088867188, + 1.8345891237258911, + -1.526106357574463 + ] + }, + { + "mesh":1096, + "name":"Circle1730", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.01875877380371, + 1.8803683519363403, + -6.167801380157471 + ] + }, + { + "mesh":1097, + "name":"pasted__pasted__pTorus031", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.188140869140625, + 3.3054070472717285, + 6.452202796936035 + ] + }, + { + "mesh":1098, + "name":"Object2177", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.449861526489258, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1099, + "name":"Object1899", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.0786237716674805, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1100, + "name":"pasted__pasted__pasted__polySurface485", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9275474548339844, + 1.1616288423538208, + -7.606097221374512 + ] + }, + { + "mesh":1101, + "name":"Object2254", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.461111068725586, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1102, + "name":"Object2385", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.138170599937439, + 16.99413299560547 + ] + }, + { + "mesh":1103, + "name":"polySurface315", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.093719482421875, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":1104, + "name":"Object2217", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.513145446777344, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1105, + "name":"pasted__pasted__pCube696", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.30248260498047, + 1.1269747018814087, + -0.7662787437438965 + ] + }, + { + "mesh":1106, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder101", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + 5.6579461097717285 + ] + }, + { + "mesh":1107, + "name":"pasted__pasted__pasted__pCylinder730", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565055847168, + 0.5030604600906372, + 15.404440879821777 + ] + }, + { + "mesh":1108, + "name":"pasted__pasted__pPipe6.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.218059539794922, + 1.2917834520339966, + -3.379265308380127 + ] + }, + { + "mesh":1109, + "name":"pasted__pasted__pCylinder4", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.853204727172852, + 2.014493465423584, + -4.958901405334473 + ] + }, + { + "mesh":1110, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube570", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 1.3661421537399292, + -8.790603637695312 + ] + }, + { + "mesh":1111, + "name":"Circle1692", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.073888778686523, + 1.8340305089950562, + -5.460317134857178 + ] + }, + { + "mesh":1112, + "name":"pasted__pasted__pCylinder411", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.927236557006836, + 3.2304320335388184, + -7.820158004760742 + ] + }, + { + "mesh":1113, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface235", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.530279159545898, + 1.515206217765808, + 0.2731657326221466 + ] + }, + { + "mesh":1114, + "name":"Circle2102", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.897470474243164, + 2.0058135986328125, + -5.459476947784424 + ] + }, + { + "mesh":1115, + "name":"Rectangle794", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -3.886181592941284 + ] + }, + { + "mesh":1116, + "name":"Object1978", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.087064743041992, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1117, + "name":"Circle2261", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.934459686279297, + 1.118975043296814, + -2.228497266769409 + ] + }, + { + "mesh":1118, + "name":"pasted__pasted__pasted__pasted__pCylinder894", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785097122192383, + 1.0796922445297241, + 15.99779224395752 + ] + }, + { + "mesh":1119, + "name":"Object2037", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.123625755310059, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1120, + "name":"pasted__pasted__pCube617", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.635766983032227, + 3.3086066246032715, + 6.474577903747559 + ] + }, + { + "mesh":1121, + "name":"pasted__pasted__pCube710", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.451486587524414, + 5.052017688751221, + 3.3741230964660645 + ] + }, + { + "mesh":1122, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface711", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.31287956237793, + 0.6753274202346802, + 12.768712043762207 + ] + }, + { + "mesh":1123, + "name":"pasted__pasted__pCube861", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.686979293823242, + 1.5766974687576294, + 12.680855751037598 + ] + }, + { + "mesh":1124, + "name":"pasted__pasted__pCylinder1.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.826837539672852, + 1.9426668882369995, + -5.591787338256836 + ] + }, + { + "mesh":1125, + "name":"pasted__pasted__pasted__extrudedSurface070", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.92717170715332, + 1.4143375158309937, + 13.91717529296875 + ] + }, + { + "mesh":1126, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube278", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + -0.5091750025749207 + ] + }, + { + "mesh":1127, + "name":"Circle3059", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.705896377563477, + 1.357746958732605, + 3.2597315311431885 + ] + }, + { + "mesh":1128, + "name":"pasted__pasted__pCube395.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.554912567138672, + 5.052017688751221, + -3.8929929733276367 + ] + }, + { + "mesh":1129, + "name":"pasted__pasted__pCylinder546", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.946239471435547, + 2.2889509201049805, + -0.5910602807998657 + ] + }, + { + "mesh":1130, + "name":"pasted__pasted__pasted__pCylinder644", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.052242279052734, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "mesh":1131, + "name":"pasted__pasted__pasted__pasted__pasted__pCube570", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.381315231323242, + 1.0093942880630493, + 13.878122329711914 + ] + }, + { + "mesh":1132, + "name":"Rectangle442", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + -4.099135398864746 + ] + }, + { + "mesh":1133, + "name":"Circle2660", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.2354989051818848, + 0.6277795433998108 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube169", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":1134, + "name":"Line2438", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.687042236328125, + 0.19340407848358154, + 0.6334408521652222 + ] + }, + { + "mesh":1135, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder49", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.101566314697266, + 1.4834917783737183, + -5.183462142944336 + ] + }, + { + "mesh":1136, + "name":"Circle2077", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11112403869629, + 1.237268090248108, + -5.809476852416992 + ] + }, + { + "mesh":1137, + "name":"Object2080", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.0631561279296875, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube650", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":1138, + "name":"pasted__pasted__pasted__pPlane103", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.002336502075195, + 0.38866126537323, + 16.590402603149414 + ] + }, + { + "mesh":1139, + "name":"pasted__pasted__pCylinder472", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.048494338989258, + 2.564108371734619, + 6.5454630851745605 + ] + }, + { + "mesh":1140, + "name":"Obj3d66-647191-33-849", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.992870330810547, + 1.6400068998336792, + 18.297592163085938 + ] + }, + { + "mesh":1141, + "name":"pasted__pasted__pPipe034", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.62812614440918, + -0.6306344270706177, + -7.785680770874023 + ] + }, + { + "mesh":1142, + "name":"pasted__pasted__pCylinder663", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.974546432495117, + 2.399171829223633, + 6.07425594329834 + ] + }, + { + "mesh":1143, + "name":"pasted__pasted__pCylinder441", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.048494338989258, + 3.2304320335388184, + -7.820158004760742 + ] + }, + { + "mesh":1144, + "name":"Object2303", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.511737823486328, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface781", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.6732590198516846 + ] + }, + { + "mesh":1145, + "name":"Box55", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.391490936279297, + 1.8993436098098755, + -17.693897247314453 + ] + }, + { + "mesh":1146, + "name":"Rectangle792", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.456121444702148, + 0.5755866765975952, + -6.690112113952637 + ] + }, + { + "mesh":1147, + "name":"Circle1520", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.585366129875183, + -4.917572498321533 + ] + }, + { + "mesh":1148, + "name":"pasted__pasted__pCube525", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.473180770874023, + 0.8707844018936157, + -7.484979152679443 + ] + }, + { + "mesh":1149, + "name":"Object2049", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.106752395629883, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1150, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube055", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137231826782227, + 0.6166743040084839, + -1.5024570226669312 + ] + }, + { + "mesh":1151, + "name":"pasted__pasted__pasted__pCylinder162", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.296171188354492, + 0.5030606985092163, + 12.94787883758545 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube444", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":1152, + "name":"Rectangle772", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9545860290527344, + 0.6844395399093628, + -4.219324111938477 + ] + }, + { + "mesh":1153, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube360", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.409494400024414, + 1.1991132497787476, + 6.528532028198242 + ] + }, + { + "mesh":1154, + "name":"pasted__pasted__pCylinder338.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.785995483398438, + 4.837941646575928, + -5.701976299285889 + ] + }, + { + "mesh":1155, + "name":"pasted__pasted__pasted__pCube637", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9333305358886719, + 0.7724684476852417, + -0.5167466402053833 + ] + }, + { + "mesh":1156, + "name":"Obj3d66-647191-4-121", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3648033142089844, + 1.6804250478744507, + -15.576520919799805 + ] + }, + { + "mesh":1157, + "name":"Object2445", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8745059967041, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1158, + "name":"pasted__pasted__pCylinder564", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.528532028198242, + 0.20140540599822998, + 0.2768646478652954 + ] + }, + { + "mesh":1159, + "name":"pasted__pasted__pasted__pCube648", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.275115966796875, + 0.6769624948501587, + 5.741796970367432 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube568", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":1160, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube286", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + -0.20406094193458557 + ] + }, + { + "mesh":1161, + "name":"Obj3d66-647191-5-150", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.440500259399414, + 1.726946234703064, + 12.309430122375488 + ] + }, + { + "mesh":1162, + "name":"Object2283", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.420330047607422, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1163, + "name":"pasted__pasted__pCylinder420", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.068140029907227, + 3.598470687866211, + -7.52256441116333 + ] + }, + { + "mesh":1164, + "name":"pasted__pasted__pCube632", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.044599533081055, + 2.603695869445801, + -2.152714252471924 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface589", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":1165, + "name":"Circle2805", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.4164232015609741, + 0.5314549207687378 + ] + }, + { + "mesh":1166, + "name":"pasted__pasted__pCube407", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + -6.725654602050781 + ] + }, + { + "mesh":1167, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder34", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 1.3803664445877075, + -5.593830585479736 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube614", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":1168, + "name":"pasted__pasted__pasted__pCylinder717", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565055847168, + 1.2660447359085083, + 12.976770401000977 + ] + }, + { + "mesh":1169, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder54", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.838584899902344, + 0.12095391750335693, + -7.732000350952148 + ] + }, + { + "mesh":1170, + "name":"Circle2134", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.724679946899414, + 1.405131220817566, + -5.5558013916015625 + ] + }, + { + "mesh":1171, + "name":"Object2091", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.1200159788131714, + 16.99413299560547 + ] + }, + { + "mesh":1172, + "name":"Circle1855", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.88135528564453, + 1.8265591859817505, + -4.771743297576904 + ] + }, + { + "mesh":1173, + "name":"Circle2945", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7730516195297241, + 4.320221900939941 + ] + }, + { + "mesh":1174, + "name":"Circle1489", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6506258249282837, + -5.460317134857178 + ] + }, + { + "mesh":1175, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder4", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + -5.308793544769287 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube503", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":1176, + "name":"pasted__pasted__pasted__pCylinder163", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.648862838745117, + 1.2660449743270874, + 12.947877883911133 + ] + }, + { + "mesh":1177, + "name":"Rectangle189", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.555379867553711, + 0.2500876188278198, + -12.587183952331543 + ] + }, + { + "mesh":1178, + "name":"pasted__pasted__pasted__pasted__polySurface379", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.322957992553711, + 0.6369913816452026, + 15.849641799926758 + ] + }, + { + "mesh":1179, + "name":"Obj3d66-647191-8-601", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.574676513671875, + 1.6444579362869263, + -9.280977249145508 + ] + }, + { + "mesh":1180, + "name":"pasted__pasted__pCube595", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.37675666809082, + 3.3453516960144043, + 6.41938591003418 + ] + }, + { + "mesh":1181, + "name":"Object1863", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.129251480102539, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1182, + "name":"pasted__pasted__pPipe057", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.62812614440918, + -0.41272246837615967, + 6.212023735046387 + ] + }, + { + "mesh":1183, + "name":"Rectangle1192", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.81268310546875, + 0.5665737390518188, + 16.649982452392578 + ] + }, + { + "mesh":1184, + "name":"Circle1590", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10127067565918, + 1.118975043296814, + -5.149173736572266 + ] + }, + { + "mesh":1185, + "name":"Object2061", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.089874267578125, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1186, + "name":"Line2409", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.033376693725586, + 0.19340407848358154, + -5.454657077789307 + ] + }, + { + "mesh":1187, + "name":"Circle1810", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.094520568847656, + 1.6388930082321167, + -4.868716716766357 + ] + }, + { + "mesh":1188, + "name":"Circle2986", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.426315188407898, + 4.011342525482178 + ] + }, + { + "mesh":1189, + "name":"Circle3235", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.009992599487305, + 1.8889487981796265, + 4.404900074005127 + ] + }, + { + "mesh":1190, + "name":"Circle2728", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5709763765335083, + 0.10142533481121063 + ] + }, + { + "mesh":1191, + "name":"Object1950", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.126443862915039, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1192, + "name":"Object2284", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.418924331665039, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1193, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder213", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.494823455810547, + 0.6623357534408569, + 12.767040252685547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface770", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 5.934509754180908 + ] + }, + { + "mesh":1194, + "name":"pasted__pasted__pCube40", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.0279712677001953, + 0.14451849460601807, + -15.663117408752441 + ] + }, + { + "mesh":1195, + "name":"pasted__pasted__pPipe086", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.699180603027344, + 1.2917834520339966, + -2.1415953636169434 + ] + }, + { + "mesh":1196, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface791", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9352035522460938, + 0.729183554649353, + 5.275137901306152 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface753", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 2.3852198123931885 + ] + }, + { + "mesh":1197, + "name":"Rectangle1365", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.505002975463867, + 0.2500876188278198, + 7.767119407653809 + ] + }, + { + "mesh":1198, + "name":"Circle1831", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15263557434082, + 1.4791637659072876, + -4.966036796569824 + ] + }, + { + "mesh":1199, + "name":"polySurface345", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.991832733154297, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":1200, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube257", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.21303939819336, + 0.20878851413726807, + -5.486439228057861 + ] + }, + { + "mesh":1201, + "name":"Circle1623", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9185928106307983, + -5.460317134857178 + ] + }, + { + "mesh":1202, + "name":"Object2103", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.0655521154403687, + 16.99413299560547 + ] + }, + { + "mesh":1203, + "name":"pasted__pasted__pasted__pasted__pCylinder834", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231765747070312, + 0.6754261255264282, + 15.701493263244629 + ] + }, + { + "mesh":1204, + "name":"Obj3d66-647191-36-128", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.583301544189453, + 1.6647711992263794, + 5.563638210296631 + ] + }, + { + "mesh":1205, + "name":"pasted__pasted__pCube454", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6876392364501953, + 1.027711272239685, + 16.581436157226562 + ] + }, + { + "mesh":1206, + "name":"Obj3d66-647191-26-558", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567583084106445, + 1.670127511024475, + -15.611690521240234 + ] + }, + { + "mesh":1207, + "name":"Obj3d66-647191-6-456", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.555360794067383, + 1.7554808855056763, + 18.297330856323242 + ] + }, + { + "mesh":1208, + "name":"polySurface362", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.48164939880371, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":1209, + "name":"pasted__pasted__pPipe052", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.46693992614746, + 0.8586965799331665, + 6.295769214630127 + ] + }, + { + "mesh":1210, + "name":"pasted__pasted__pCylinder617", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.29471778869629, + 4.235100269317627, + 0.010629817843437195 + ] + }, + { + "mesh":1211, + "name":"Circle1729", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.970985412597656, + 2.0202722549438477, + -6.2478156089782715 + ] + }, + { + "mesh":1212, + "name":"pasted__pasted__pasted__pCube402", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9547843933105469, + 1.0161930322647095, + -7.757984161376953 + ] + }, + { + "mesh":1213, + "name":"Circle1594", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.898542404174805, + 1.3985601663589478, + -5.460318088531494 + ] + }, + { + "mesh":1214, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder100", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + 5.364630222320557 + ] + }, + { + "mesh":1215, + "name":"pasted__pasted__pasted__pCylinder729", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565055847168, + 1.2660447359085083, + 15.404440879821777 + ] + }, + { + "mesh":1216, + "name":"pasted__pasted__pPipe5.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.19988441467285, + 1.0770174264907837, + -3.379265308380127 + ] + }, + { + "mesh":1217, + "name":"Circle1639", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.031379222869873, + -6.245973110198975 + ] + }, + { + "mesh":1218, + "name":"Circle2899", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.07246971130371, + 1.7041248083114624, + 1.2563103437423706 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube555", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":1219, + "name":"pasted__pasted__pPipe112", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.531620025634766, + 1.5744904279708862, + 5.360396385192871 + ] + }, + { + "mesh":1220, + "name":"pasted__pasted__pCube596", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.67784881591797, + 3.3579039573669434, + 6.4173712730407715 + ] + }, + { + "mesh":1221, + "name":"Object1962", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.109565734863281, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1222, + "name":"Circle1691", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.07021141052246, + 1.846319556236267, + -5.460317134857178 + ] + }, + { + "mesh":1223, + "name":"pasted__pasted__pCylinder403", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.91459846496582, + 3.1357784271240234, + -6.79180383682251 + ] + }, + { + "mesh":1224, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface234", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.463172912597656, + 1.454501748085022, + -0.026352830231189728 + ] + }, + { + "mesh":1225, + "name":"Rectangle791", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -6.4752726554870605 + ] + }, + { + "mesh":1226, + "name":"pasted__pasted__pasted__pasted__pCylinder458", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.068897247314453, + 1.079692006111145, + 13.938965797424316 + ] + }, + { + "mesh":1227, + "name":"Circle2690", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.3328157663345337, + 0.6277793645858765 + ] + }, + { + "mesh":1228, + "name":"Circle027", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.02294921875, + 8.375114440917969, + -15.681373596191406 + ] + }, + { + "mesh":1229, + "name":"pasted__pasted__pCube645", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + -0.6498807072639465 + ] + }, + { + "mesh":1230, + "name":"pasted__pasted__pasted__pasted__pCylinder893", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.6024112701416, + 1.0796922445297241, + 15.9976167678833 + ] + }, + { + "mesh":1231, + "name":"Object2036", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.125036239624023, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1232, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube372", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402330160140991, + -4.392634868621826 + ] + }, + { + "mesh":1233, + "name":"pasted__pasted__pCube616", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.634368896484375, + 0.8707841634750366, + 6.4971923828125 + ] + }, + { + "mesh":1234, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface668", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.071154594421387, + 1.1282140016555786, + -4.224803447723389 + ] + }, + { + "mesh":1235, + "name":"pasted__pasted__pasted__pCylinder181", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.296171188354492, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":1236, + "name":"Circle3195", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03713607788086, + 1.8265589475631714, + 2.995026111602783 + ] + }, + { + "mesh":1237, + "name":"Circle1490", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6937700510025024, + -6.055830001831055 + ] + }, + { + "mesh":1238, + "name":"pasted__pasted__pTorus032", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.188152313232422, + 3.341920852661133, + 6.363028049468994 + ] + }, + { + "mesh":1239, + "name":"pasted__pasted__pCube709", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.45350456237793, + 5.064568996429443, + 3.6752066612243652 + ] + }, + { + "mesh":1240, + "name":"Object2147", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.492053985595703, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1241, + "name":"Obj3d66-647191-6-439", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.555360794067383, + 1.7554806470870972, + -15.576258659362793 + ] + }, + { + "mesh":1242, + "name":"pasted__pasted__pasted__extrudedSurface069", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.965227127075195, + 1.4350770711898804, + 15.539443969726562 + ] + }, + { + "mesh":1243, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder067", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + -0.50638747215271 + ] + }, + { + "mesh":1244, + "name":"pasted__pasted__pCube394.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.556926727294922, + 5.064568996429443, + -3.591909885406494 + ] + }, + { + "mesh":1245, + "name":"Obj3d66-647191-26-575", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567583084106445, + 1.670127511024475, + 18.332763671875 + ] + }, + { + "mesh":1246, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube354", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 0.3764752149581909, + 5.956920146942139 + ] + }, + { + "mesh":1247, + "name":"Circle3267", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.083492279052734, + 1.6715091466903687, + 4.281799793243408 + ] + }, + { + "mesh":1248, + "name":"pasted__pasted__pasted__pasted__pasted__pCube569", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.386137008666992, + 1.4976838827133179, + 13.81916332244873 + ] + }, + { + "mesh":1249, + "name":"Circle2880", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0136661529541, + 1.8780771493911743, + 1.354790210723877 + ] + }, + { + "mesh":1250, + "name":"Rectangle441", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + -2.7220170497894287 + ] + }, + { + "mesh":1251, + "name":"Circle2659", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9059168100357056, + 0.6277795433998108 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors147", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":1252, + "name":"Line2437", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.687036514282227, + 0.19340407848358154, + 0.6334408521652222 + ] + }, + { + "mesh":1253, + "name":"Circle3135", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.011409759521484, + 2.0429491996765137, + 3.6717348098754883 + ] + }, + { + "mesh":1254, + "name":"pasted__pasted__pCylinder465", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.927236557006836, + 2.950833797454834, + 6.478342533111572 + ] + }, + { + "mesh":1255, + "name":"Circle1491", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7050236463546753, + -6.062169075012207 + ] + }, + { + "mesh":1256, + "name":"Circle2670", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.108736515045166, + 0.6277795433998108 + ] + }, + { + "mesh":1257, + "name":"Circle2076", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116273880004883, + 1.4263147115707397, + -5.788060188293457 + ] + }, + { + "mesh":1258, + "name":"Rectangle1254", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.251155853271484, + 0.14451849460601807, + -0.6465283632278442 + ] + }, + { + "mesh":1259, + "name":"pasted__pasted__pasted__polySurface030", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6949710845947266, + 0.6836510896682739, + 16.377607345581055 + ] + }, + { + "mesh":1260, + "name":"pasted__pasted__pasted__pPlane100", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.652090072631836, + 0.38866126537323, + 16.590402603149414 + ] + }, + { + "mesh":1261, + "name":"pasted__pasted__pPipe033", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.62812614440918, + -0.41272246837615967, + -7.770148277282715 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube483", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":1262, + "name":"Rectangle911", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.21434211730957, + 1.039061188697815, + -5.453814506530762 + ] + }, + { + "mesh":1263, + "name":"Arc01", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.586423873901367, + 0.14451920986175537, + -0.585104763507843 + ] + }, + { + "mesh":1264, + "name":"Line2459", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.279722213745117, + 1.74329674243927, + -5.570809364318848 + ] + }, + { + "mesh":1265, + "name":"Circle3182", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.98200798034668, + 1.98798668384552, + 2.9027011394500732 + ] + }, + { + "mesh":1266, + "name":"Circle1519", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5991793870925903, + -4.909790515899658 + ] + }, + { + "mesh":1267, + "name":"pasted__pasted__pCube524", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.47318458557129, + 1.0691884756088257, + -7.4981689453125 + ] + }, + { + "mesh":1268, + "name":"Circle2421", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.07021141052246, + 1.846319556236267, + -2.22849702835083 + ] + }, + { + "mesh":1269, + "name":"Circle2723", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7837990522384644, + -0.018437795341014862 + ] + }, + { + "mesh":1270, + "name":"Circle1748", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.084911346435547, + 1.6866551637649536, + -6.057011127471924 + ] + }, + { + "mesh":1271, + "name":"Object2048", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.108160018920898, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1272, + "name":"pasted__pasted__pCylinder444", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.17373275756836, + 3.146695137023926, + -6.593062400817871 + ] + }, + { + "mesh":1273, + "name":"Circle1708", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.4051316976547241, + -5.363993167877197 + ] + }, + { + "mesh":1274, + "name":"Circle1770", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.23468589782715, + 1.2449902296066284, + -5.815578937530518 + ] + }, + { + "mesh":1275, + "name":"pasted__pasted__pCylinder466", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.91459846496582, + 3.2234039306640625, + 6.807458400726318 + ] + }, + { + "mesh":1276, + "name":"pasted__pasted__pTorus3.004", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.367027282714844, + 5.048586368560791, + -5.703705787658691 + ] + }, + { + "mesh":1277, + "name":"pasted__pasted__pCylinder521", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.926324844360352, + 2.24806547164917, + 0.08851037919521332 + ] + }, + { + "mesh":1278, + "name":"pasted__pasted__pasted__pCylinder739", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.929457664489746, + 0.7768591642379761, + -0.5997821688652039 + ] + }, + { + "mesh":1279, + "name":"Rectangle1418", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.844839096069336, + 0.5665737390518188, + 2.7237420082092285 + ] + }, + { + "mesh":1280, + "name":"Object2271", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.437206268310547, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1281, + "name":"pasted__pasted__pasted__pCube647", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.2859411239624023, + 0.6166728734970093, + 5.733595371246338 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube567", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":1282, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube285", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 1.3735631704330444, + -0.49809885025024414 + ] + }, + { + "mesh":1283, + "name":"Rectangle1253", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.251155853271484, + 0.14451849460601807, + 1.97707998752594 + ] + }, + { + "mesh":1284, + "name":"Obj3d66-647191-4-137", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.440500259399414, + 1.6804250478744507, + 12.147518157958984 + ] + }, + { + "mesh":1285, + "name":"pasted__pasted__pCylinder419", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.047704696655273, + 3.351839542388916, + -7.5968122482299805 + ] + }, + { + "mesh":1286, + "name":"pasted__pasted__pCube631", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.958223342895508, + 2.577449321746826, + 2.49900484085083 + ] + }, + { + "mesh":1287, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube425", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + 5.9279022216796875 + ] + }, + { + "mesh":1288, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube288", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9526090621948242, + 0.9895879030227661, + -8.054214477539062 + ] + }, + { + "mesh":1289, + "name":"Circle2804", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.405131220817566, + 0.6720567345619202 + ] + }, + { + "mesh":1290, + "name":"pasted__pasted__pCube406", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + -7.026737689971924 + ] + }, + { + "mesh":1291, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube240", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + -5.591053485870361 + ] + }, + { + "mesh":1292, + "name":"Rectangle1120", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.997325897216797, + 0.14451825618743896, + 14.283381462097168 + ] + }, + { + "mesh":1293, + "name":"pasted__pasted__pasted__pCube418", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9360036849975586, + 1.0594738721847534, + -7.406493186950684 + ] + }, + { + "mesh":1294, + "name":"Circle1593", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.705896377563477, + 1.3985601663589478, + -5.460318088531494 + ] + }, + { + "mesh":1295, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder57", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.923723220825195, + 1.7865084409713745, + -7.63128662109375 + ] + }, + { + "mesh":1296, + "name":"Circle2133", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.724679946899414, + 1.4164232015609741, + -5.41519832611084 + ] + }, + { + "mesh":1297, + "name":"Object2090", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.124554991722107, + 16.99413299560547 + ] + }, + { + "mesh":1298, + "name":"Obj3d66-647191-2-985", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8924436569213867, + 1.321757197380066, + -8.659523010253906 + ] + }, + { + "mesh":1299, + "name":"Circle1488", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.666190505027771, + -5.460317134857178 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube546", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":1300, + "name":"pasted__pasted__pCylinder337.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.19261360168457, + 4.840120792388916, + -4.347738742828369 + ] + }, + { + "mesh":1301, + "name":"Circle2907", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.101869583129883, + 1.6171492338180542, + 1.207070231437683 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors140", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":1302, + "name":"Circle2770", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.011409759521484, + 2.0429491996765137, + 0.6277795433998108 + ] + }, + { + "mesh":1303, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder209", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.41086769104004, + 0.6244927644729614, + 13.959234237670898 + ] + }, + { + "mesh":1304, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube40", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + -5.311581134796143 + ] + }, + { + "mesh":1305, + "name":"Circle2227", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5577400922775269, + -1.7013168334960938 + ] + }, + { + "mesh":1306, + "name":"Rectangle1150", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.141721725463867, + 0.5256079435348511, + 13.961438179016113 + ] + }, + { + "mesh":1307, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube305", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.030424118041992, + 1.358019232749939, + -0.675628662109375 + ] + }, + { + "mesh":1308, + "name":"Obj3d66-647191-7-347", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.574676513671875, + 1.6444579362869263, + -9.321905136108398 + ] + }, + { + "mesh":1309, + "name":"pasted__pasted__pCylinder457", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.628408432006836, + -1.5780738592147827, + 6.4882073402404785 + ] + }, + { + "mesh":1310, + "name":"Circle2472", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0628604888916, + 1.7512258291244507, + -2.8621208667755127 + ] + }, + { + "mesh":1311, + "name":"Circle1809", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.090845108032227, + 1.6497653722763062, + -4.86256217956543 + ] + }, + { + "mesh":1312, + "name":"Circle2985", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.334945559501648, + 4.1331071853637695 + ] + }, + { + "mesh":1313, + "name":"Circle2727", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5847941637039185, + 0.09364302456378937 + ] + }, + { + "mesh":1314, + "name":"Object1949", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.1278486251831055, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1315, + "name":"Rectangle1443", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + 6.334676742553711 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube565", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":1316, + "name":"pasted__pasted__pCylinder11.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.917276382446289, + 2.2203025817871094, + -5.591787338256836 + ] + }, + { + "mesh":1317, + "name":"pasted__pasted__pasted__pCube721", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 0.8213735818862915, + 14.8716459274292 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface769", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 5.934509754180908 + ] + }, + { + "mesh":1318, + "name":"Circle2394", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.970985412597656, + 2.1781320571899414, + -2.22849702835083 + ] + }, + { + "mesh":1319, + "name":"pasted__pasted__pCube639", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.975038528442383, + 1.082088828086853, + -2.135361671447754 + ] + }, + { + "mesh":1320, + "name":"pasted__pasted__pasted__pCube180", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 0.9795023202896118, + 16.179706573486328 + ] + }, + { + "mesh":1321, + "name":"pasted__pasted__extrudedSurface025", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.206377029418945, + 0.1835993528366089, + -2.142636299133301 + ] + }, + { + "mesh":1322, + "name":"pasted__pasted__pCube402.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + -5.892167091369629 + ] + }, + { + "mesh":1323, + "name":"Circle1830", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.22832489013672, + 1.290230631828308, + -5.083378314971924 + ] + }, + { + "mesh":1324, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder54", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.35464859008789, + 1.4823185205459595, + -4.9768524169921875 + ] + }, + { + "mesh":1325, + "name":"Line2412", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.357885360717773, + 0.18367278575897217, + -5.466122150421143 + ] + }, + { + "mesh":1326, + "name":"Rectangle423", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + -12.33889102935791 + ] + }, + { + "mesh":1327, + "name":"Object2102", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.070090889930725, + 16.99413299560547 + ] + }, + { + "mesh":1328, + "name":"Circle2069", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9642952680587769, + -6.20468807220459 + ] + }, + { + "mesh":1329, + "name":"Object2435", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.888565063476562, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1330, + "name":"polySurface352", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.447683334350586, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":1331, + "name":"Circle3233", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.053220748901367, + 1.425226092338562, + 4.332507133483887 + ] + }, + { + "mesh":1332, + "name":"Rectangle1189", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.669565200805664, + 0.47970330715179443, + 16.649982452392578 + ] + }, + { + "mesh":1333, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface515", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.141785621643066, + 1.7848106622695923, + 14.877471923828125 + ] + }, + { + "mesh":1334, + "name":"Rectangle1100", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.61593246459961, + 0.35186755657196045, + 13.961438179016113 + ] + }, + { + "mesh":1335, + "name":"Obj3d66-647191-25-189", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.56941795349121, + 1.664944052696228, + -15.576761245727539 + ] + }, + { + "mesh":1336, + "name":"Object1796", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.1064001321792603, + 16.99413299560547 + ] + }, + { + "mesh":1337, + "name":"extrudedSurface033", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.813631057739258, + 4.2204132080078125, + -0.003244951367378235 + ] + }, + { + "mesh":1338, + "name":"Circle1728", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.963634490966797, + 2.0417957305908203, + -6.260125160217285 + ] + }, + { + "mesh":1339, + "name":"pasted__pasted__pasted__polySurface484", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9243946075439453, + 0.6901220083236694, + -7.606089115142822 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube535", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":1340, + "name":"polySurface313", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.127679824829102, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":1341, + "name":"Object2215", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.515958786010742, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1342, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube320", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.88755989074707, + 1.3735638856887817, + 5.365196704864502 + ] + }, + { + "mesh":1343, + "name":"pasted__pasted__pasted__pCylinder728", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565055847168, + 0.9016937017440796, + 15.404440879821777 + ] + }, + { + "mesh":1344, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube572", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 0.8592516183853149, + -8.790603637695312 + ] + }, + { + "mesh":1345, + "name":"Object2255", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.459707260131836, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1346, + "name":"pasted__pasted__pasted__pCylinder749", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9305353164672852, + 0.7768586874008179, + 5.771851062774658 + ] + }, + { + "mesh":1347, + "name":"Circle1912", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8175607919692993, + -4.783220291137695 + ] + }, + { + "mesh":1348, + "name":"Object1961", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.110969543457031, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1349, + "name":"Circle1690", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0665340423584, + 1.8586090803146362, + -5.460317134857178 + ] + }, + { + "mesh":1350, + "name":"pasted__pasted__pCylinder404", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.91459846496582, + 3.2234039306640625, + -7.1747145652771 + ] + }, + { + "mesh":1351, + "name":"pasted__pasted__pCube577", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.44716453552246, + 0.9156700372695923, + 6.557975769042969 + ] + }, + { + "mesh":1352, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface233", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.463172912597656, + 1.438156008720398, + 0.2796629071235657 + ] + }, + { + "mesh":1353, + "name":"Rectangle790", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -6.4752726554870605 + ] + }, + { + "mesh":1354, + "name":"Circle2259", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.517868041992188, + 1.1369620561599731, + -2.5367355346679688 + ] + }, + { + "mesh":1355, + "name":"pasted__pasted__pCube644", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + -1.233618140220642 + ] + }, + { + "mesh":1356, + "name":"pasted__pasted__pasted__pasted__pCylinder892", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.52398109436035, + 1.0796922445297241, + 15.849641799926758 + ] + }, + { + "mesh":1357, + "name":"Object2035", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.126443862915039, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1358, + "name":"Obj3d66-647191-25-206", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.56941795349121, + 1.6649445295333862, + 18.297834396362305 + ] + }, + { + "mesh":1359, + "name":"pasted__pasted__pCube399.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.556926727294922, + 5.064568996429443, + -4.675718784332275 + ] + }, + { + "mesh":1360, + "name":"pasted__pasted__pCube615", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.634368896484375, + 1.0691884756088257, + 6.484004974365234 + ] + }, + { + "mesh":1361, + "name":"Circle2537", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.083492279052734, + 1.6715091466903687, + -1.6184312105178833 + ] + }, + { + "mesh":1362, + "name":"pasted__pasted__pasted__pPlane296", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.099143981933594, + 0.3886605501174927, + 15.0485200881958 + ] + }, + { + "mesh":1363, + "name":"pasted__pasted__pasted__pCylinder180", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.706984519958496, + 0.5030611753463745, + 16.585969924926758 + ] + }, + { + "mesh":1364, + "name":"pasted__pasted__pCube708", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.411561965942383, + 5.280849933624268, + 2.9916841983795166 + ] + }, + { + "mesh":1365, + "name":"Object2114", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.50517463684082, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface763", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 6.547109127044678 + ] + }, + { + "mesh":1366, + "name":"pasted__pasted__pasted__extrudedSurface068", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.969303131103516, + 1.4330071210861206, + 14.740805625915527 + ] + }, + { + "mesh":1367, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube277", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 0.3764752149581909, + -0.5058218836784363 + ] + }, + { + "mesh":1368, + "name":"pasted__pasted__pCube393.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.514986038208008, + 5.280849933624268, + -4.2754316329956055 + ] + }, + { + "mesh":1369, + "name":"Circle3266", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.079818725585938, + 1.6823810338974, + 4.287955284118652 + ] + }, + { + "mesh":1370, + "name":"pasted__pasted__pasted__pasted__pasted__pCylinder051", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.372947692871094, + 0.6449607610702515, + 13.819491386413574 + ] + }, + { + "mesh":1371, + "name":"Rectangle405", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7463722229003906, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":1372, + "name":"Rectangle440", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + -1.3449000120162964 + ] + }, + { + "mesh":1373, + "name":"Circle2658", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8932405710220337, + 0.6277795433998108 + ] + }, + { + "mesh":1374, + "name":"Circle2471", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.059186935424805, + 1.7619880437850952, + -2.8682758808135986 + ] + }, + { + "mesh":1375, + "name":"pasted__pasted__pasted__pCylinder446", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.929457664489746, + 0.7768591642379761, + -7.678404808044434 + ] + }, + { + "mesh":1376, + "name":"pasted__pasted__pPipe118", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.144113540649414, + 2.7832746505737305, + 3.1459367275238037 + ] + }, + { + "mesh":1377, + "name":"Rectangle929", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03338050842285, + 0.11240279674530029, + 0.6334408521652222 + ] + }, + { + "mesh":1378, + "name":"Object2673", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.79293441772461, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1379, + "name":"Rectangle1316", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.02546501159668, + 0.47970330715179443, + -3.2191162109375 + ] + }, + { + "mesh":1380, + "name":"Circle2075", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116270065307617, + 1.3349450826644897, + -5.909824848175049 + ] + }, + { + "mesh":1381, + "name":"pasted__pasted__pasted__pPlane099", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.220165252685547, + 0.38866126537323, + 16.590402603149414 + ] + }, + { + "mesh":1382, + "name":"Obj3d66-647191-31-957", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980655670166016, + 1.6571954488754272, + 18.267885208129883 + ] + }, + { + "mesh":1383, + "name":"Circle3308", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.439908981323242, + 1.4202309846878052, + -5.688488960266113 + ] + }, + { + "mesh":1384, + "name":"Rectangle012", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.302309036254883, + 0.14451777935028076, + 2.8379855155944824 + ] + }, + { + "mesh":1385, + "name":"pasted__pasted__pCylinder439", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.035856246948242, + 3.2234039306640625, + -7.1747145652771 + ] + }, + { + "mesh":1386, + "name":"Object07", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.58643913269043, + 1.250148892402649, + -0.5851030349731445 + ] + }, + { + "mesh":1387, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube383", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + -0.6037061214447021 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube202", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 0.6042507886886597 + ] + }, + { + "mesh":1388, + "name":"pasted__pasted__pCube684", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.30248260498047, + 1.1269747018814087, + 5.469515323638916 + ] + }, + { + "mesh":1389, + "name":"Line2460", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.46803855895996, + 1.954126238822937, + -5.687263011932373 + ] + }, + { + "mesh":1390, + "name":"Circle2983", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3792201280593872, + 4.056680679321289 + ] + }, + { + "mesh":1391, + "name":"Circle1518", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8742982149124146, + -4.754786491394043 + ] + }, + { + "mesh":1392, + "name":"pasted__pasted__pCube523", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.44716453552246, + 0.9156700372695923, + -7.424197673797607 + ] + }, + { + "mesh":1393, + "name":"Object2047", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.109565734863281, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1394, + "name":"Circle1769", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3309954404830933, + -5.958039283752441 + ] + }, + { + "mesh":1395, + "name":"Object118", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.12632179260254, + 0.6837154626846313, + -13.935766220092773 + ] + }, + { + "mesh":1396, + "name":"Rectangle770", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.5818748474121094, + 0.33695781230926514, + -4.219324111938477 + ] + }, + { + "mesh":1397, + "name":"pasted__pasted__pCylinder520", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.917276382446289, + 2.2203025817871094, + 0.08851037919521332 + ] + }, + { + "mesh":1398, + "name":"pasted__pasted__pasted__pCylinder738", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9305353164672852, + 0.7768591642379761, + -0.4314507842063904 + ] + }, + { + "mesh":1399, + "name":"Object2270", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.438610076904297, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1400, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door120", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.0043115615844727, + 1.444644808769226, + -1.6695046424865723 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__polySurface061", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":1401, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder071", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 1.3803664445877075, + -0.4975220561027527 + ] + }, + { + "mesh":1402, + "name":"Circle1791", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.024694442749023, + 1.8454612493515015, + -4.751771926879883 + ] + }, + { + "mesh":1403, + "name":"pasted__pasted__pCylinder408", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.050214767456055, + 3.3518385887145996, + -7.397234916687012 + ] + }, + { + "mesh":1404, + "name":"pasted__pasted__pCube630", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.97140884399414, + 2.7758541107177734, + 2.499006509780884 + ] + }, + { + "mesh":1405, + "name":"Object2016", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.153162002563477, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1406, + "name":"Rectangle1108", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.151447296142578, + 0.14451777935028076, + 16.81107521057129 + ] + }, + { + "mesh":1407, + "name":"Circle1633", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1140856742858887, + -6.2990498542785645 + ] + }, + { + "mesh":1408, + "name":"Circle2803", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.4051316976547241, + 0.7241038084030151 + ] + }, + { + "mesh":1409, + "name":"pasted__pasted__pasted__polySurface491", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9251632690429688, + 1.1616288423538208, + -7.226640701293945 + ] + }, + { + "mesh":1410, + "name":"pasted__pasted__pasted__pCylinder715", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565055847168, + 0.5030604600906372, + 14.134862899780273 + ] + }, + { + "mesh":1411, + "name":"Object2239", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.482208251953125, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1412, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder56", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.920570373535156, + 1.7839974164962769, + -7.406764984130859 + ] + }, + { + "mesh":1413, + "name":"Circle2132", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.724679946899414, + 1.4164232015609741, + -5.363151550292969 + ] + }, + { + "mesh":1414, + "name":"Object2089", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.129093050956726, + 16.99413299560547 + ] + }, + { + "mesh":1415, + "name":"Circle3042", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.020002841949463, + 3.6717348098754883 + ] + }, + { + "mesh":1416, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube39", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 1.3735638856887817, + -5.017553806304932 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface715", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.3501960039138794 + ] + }, + { + "mesh":1417, + "name":"Shape037", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.813207626342773, + -0.07122433185577393, + 1.0856852531433105 + ] + }, + { + "mesh":1418, + "name":"Obj3d66-647191-6-458", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.574676513671875, + 1.7554806470870972, + -9.301286697387695 + ] + }, + { + "mesh":1419, + "name":"Circle1559", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.054292678833008, + -4.653377056121826 + ] + }, + { + "mesh":1420, + "name":"Circle2184", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.78670883178711, + 1.52865731716156, + -5.977645397186279 + ] + }, + { + "mesh":1421, + "name":"Object2059", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.092689514160156, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1422, + "name":"Circle1808", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08717155456543, + 1.6606370210647583, + -4.856407165527344 + ] + }, + { + "mesh":1423, + "name":"pasted__pasted__pCube431", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.085107803344727, + 1.6318343877792358, + -5.606132507324219 + ] + }, + { + "mesh":1424, + "name":"Circle2726", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5986121892929077, + 0.08586052805185318 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube201", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.3501960039138794 + ] + }, + { + "mesh":1425, + "name":"Circle1506", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7505520582199097, + -4.824505805969238 + ] + }, + { + "mesh":1426, + "name":"Object1948", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.129251480102539, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1427, + "name":"Shape038", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.215625762939453, + 0.15697656571865082, + -0.5458017587661743 + ] + }, + { + "mesh":1428, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube79", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 1.3735638856887817, + -6.186119079589844 + ] + }, + { + "mesh":1429, + "name":"Object2282", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.421735763549805, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface768", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 5.934509754180908 + ] + }, + { + "mesh":1430, + "name":"Object1838", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.164409637451172, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1431, + "name":"Circle2393", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.967308044433594, + 2.1904215812683105, + -2.22849702835083 + ] + }, + { + "mesh":1432, + "name":"pasted__pasted__pCube543", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.789796829223633, + 3.3579039573669434, + -7.564801216125488 + ] + }, + { + "mesh":1433, + "name":"pasted__pasted__pCube638", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.975038528442383, + 1.2804936170578003, + -2.1353604793548584 + ] + }, + { + "mesh":1434, + "name":"pasted__pasted__pCube401.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939353942871094, + 5.073940753936768, + -5.045910358428955 + ] + }, + { + "mesh":1435, + "name":"pasted__pasted__pCylinder344", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.980253219604492, + 5.043131351470947, + -7.844327449798584 + ] + }, + { + "mesh":1436, + "name":"Circle3082", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8625746965408325, + 2.9811511039733887 + ] + }, + { + "mesh":1437, + "name":"Circle1829", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.23468589782715, + 1.236960768699646, + -5.094032287597656 + ] + }, + { + "mesh":1438, + "name":"Circle3142", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03713607788086, + 1.9569236040115356, + 3.6717348098754883 + ] + }, + { + "mesh":1439, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder53", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.35464859008789, + 1.4823185205459595, + -5.532170295715332 + ] + }, + { + "mesh":1440, + "name":"pasted__pasted__pCylinder639", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.481767654418945, + 4.853360652923584, + 4.829406261444092 + ] + }, + { + "mesh":1441, + "name":"Object2101", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.0746296644210815, + 16.99413299560547 + ] + }, + { + "mesh":1442, + "name":"Object2185", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.438610076904297, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1443, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder082", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.8760986328125, + 0.07032907009124756, + 5.25663423538208 + ] + }, + { + "mesh":1444, + "name":"Object1817", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.155239105224609, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":1445, + "name":"Circle2584", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8180502653121948, + 1.3016197681427002 + ] + }, + { + "mesh":1446, + "name":"Obj3d66-647191-24-589", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.57307243347168, + 1.658399224281311, + -15.576761245727539 + ] + }, + { + "mesh":1447, + "name":"Circle3291", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15263557434082, + 1.4791637659072876, + 4.166015148162842 + ] + }, + { + "mesh":1448, + "name":"pasted__pasted__pasted__pCylinder448", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9305353164672852, + 0.8645821809768677, + -7.510074615478516 + ] + }, + { + "mesh":1449, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface535", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9645328521728516, + 0.9171165227890015, + 12.764594078063965 + ] + }, + { + "mesh":1450, + "name":"polySurface312", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.061359405517578, + 1.4533334970474243, + 13.790817260742188 + ] + }, + { + "mesh":1451, + "name":"pasted__pasted__pCylinder9", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.896543502807617, + 2.1518783569335938, + -4.935186386108398 + ] + }, + { + "mesh":1452, + "name":"Object2214", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.397829055786133, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1453, + "name":"Obj3d66-647191-16-700", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.981172561645508, + 1.6718100309371948, + -15.603754043579102 + ] + }, + { + "mesh":1454, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder099", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + 5.364630222320557 + ] + }, + { + "mesh":1455, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface514", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.153217315673828, + 0.6330384016036987, + 16.93367576599121 + ] + }, + { + "mesh":1456, + "name":"Rectangle591", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.652071952819824, + 0.14451825618743896, + 16.87247085571289 + ] + }, + { + "mesh":1457, + "name":"pasted__pasted__pPipe3.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.76227569580078, + 1.2939432859420776, + -3.379265308380127 + ] + }, + { + "mesh":1458, + "name":"Obj3d66-647191-30-109", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.588407516479492, + 1.6615828275680542, + 5.562841892242432 + ] + }, + { + "mesh":1459, + "name":"Object1960", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.112375259399414, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1460, + "name":"Circle1689", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0628604888916, + 1.8708983659744263, + -5.460317134857178 + ] + }, + { + "mesh":1461, + "name":"pasted__pasted__pCube576", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.454730987548828, + 0.8970309495925903, + 6.4108147621154785 + ] + }, + { + "mesh":1462, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface232", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.463172912597656, + 1.454501748085022, + 0.5858674645423889 + ] + }, + { + "mesh":1463, + "name":"Rectangle789", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -5.624711513519287 + ] + }, + { + "mesh":1464, + "name":"Circle2688", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3985601663589478, + 0.5314549207687378 + ] + }, + { + "mesh":1465, + "name":"pasted__pasted__pCube643", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + -1.7814438343048096 + ] + }, + { + "mesh":1466, + "name":"pasted__pasted__pasted__pasted__polySurface389", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.69390106201172, + 1.0412582159042358, + 15.849638938903809 + ] + }, + { + "mesh":1467, + "name":"pasted__pasted__pPipe076", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.680997848510742, + 1.0770174264907837, + 2.4927611351013184 + ] + }, + { + "mesh":1468, + "name":"pasted__pasted__pCube395", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + -3.70127534866333 + ] + }, + { + "mesh":1469, + "name":"Circle2527", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.046743392944336, + 1.7802292108535767, + -1.5568815469741821 + ] + }, + { + "mesh":1470, + "name":"pasted__pasted__pCylinder23.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.02882194519043, + 2.5348849296569824, + -6.313273906707764 + ] + }, + { + "mesh":1471, + "name":"pasted__pasted__pCube614", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.60836410522461, + 0.9156700372695923, + 6.557973861694336 + ] + }, + { + "mesh":1472, + "name":"Circle2025", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.07200050354004, + 1.357746958732605, + -5.8714799880981445 + ] + }, + { + "mesh":1473, + "name":"Circle3035", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.108736515045166, + 3.6717348098754883 + ] + }, + { + "mesh":1474, + "name":"Object2113", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.51199722290039, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":1475, + "name":"pasted__pasted__pasted__pasted__pCylinder841", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.326545715332031, + 0.10737001895904541, + 15.855609893798828 + ] + }, + { + "mesh":1476, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube276", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 1.3735638856887817, + -0.5058218836784363 + ] + }, + { + "mesh":1477, + "name":"pasted__pasted__pCube392.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.514986038208008, + 5.280849933624268, + -4.839636325836182 + ] + }, + { + "mesh":1478, + "name":"Circle3265", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.076141357421875, + 1.693252682685852, + 4.29410982131958 + ] + }, + { + "mesh":1479, + "name":"Rectangle395", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.517568588256836, + 0.14451754093170166, + -16.603012084960938 + ] + }, + { + "mesh":1480, + "name":"pasted__pasted__pCube409.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939355850219727, + 5.073940753936768, + -7.29293966293335 + ] + }, + { + "mesh":1481, + "name":"Rectangle565", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.5686378479003906, + 0.6124783754348755, + 13.961438179016113 + ] + }, + { + "mesh":1482, + "name":"Rectangle439", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + 0.032219305634498596 + ] + }, + { + "mesh":1483, + "name":"Circle2657", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8805640935897827, + 0.6277795433998108 + ] + }, + { + "mesh":1484, + "name":"Circle2455", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.996707916259766, + 1.9449390172958374, + -2.9729108810424805 + ] + }, + { + "mesh":1485, + "name":"Line2436", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.033376693725586, + 0.19340407848358154, + 0.6334408521652222 + ] + }, + { + "mesh":1486, + "name":"Circle1505", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7280527353286743, + -4.83718204498291 + ] + }, + { + "mesh":1487, + "name":"Circle2074", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116270065307617, + 1.329609751701355, + -5.954898834228516 + ] + }, + { + "mesh":1488, + "name":"pasted__pasted__pasted__pPlane096", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.861934661865234, + 0.38866126537323, + 16.590402603149414 + ] + }, + { + "mesh":1489, + "name":"pasted__pasted__pCube394", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038042068481445, + 5.064568996429443, + -3.400181531906128 + ] + }, + { + "mesh":1490, + "name":"Rectangle1400", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 2.4923958778381348 + ] + }, + { + "mesh":1491, + "name":"Circle3148", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.059186935424805, + 1.8831874132156372, + 3.6717348098754883 + ] + }, + { + "mesh":1492, + "name":"Circle3155", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.084911346435547, + 1.7971621751785278, + 3.6717348098754883 + ] + }, + { + "mesh":1493, + "name":"Rectangle909", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.508445739746094, + 1.039061188697815, + -5.035125255584717 + ] + }, + { + "mesh":1494, + "name":"Circle2292", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8805640935897827, + -2.22849702835083 + ] + }, + { + "mesh":1495, + "name":"Circle2772", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.01875877380371, + 2.0183701515197754, + 0.6277795433998108 + ] + }, + { + "mesh":1496, + "name":"Object114", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.38266944885254, + 0.1285914182662964, + 5.489561080932617 + ] + }, + { + "mesh":1497, + "name":"Circle2893", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.050416946411133, + 1.7693573236465454, + 1.2932400703430176 + ] + }, + { + "mesh":1498, + "name":"Circle1517", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8630484342575073, + -4.761125087738037 + ] + }, + { + "mesh":1499, + "name":"Object2046", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.110969543457031, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1500, + "name":"Circle1768", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3712199926376343, + -5.83687686920166 + ] + }, + { + "mesh":1501, + "name":"Rectangle769", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6566238403320312, + 0.42382848262786865, + -4.219324111938477 + ] + }, + { + "mesh":1502, + "name":"pasted__pasted__pCylinder22.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.019645690917969, + 2.5075578689575195, + -6.308621883392334 + ] + }, + { + "mesh":1503, + "name":"pasted__pasted__pasted__pCube636", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 0.7962990999221802, + -1.0830239057540894 + ] + }, + { + "mesh":1504, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube392", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402330160140991, + 1.6509500741958618 + ] + }, + { + "mesh":1505, + "name":"Rectangle1228", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + -7.154679775238037 + ] + }, + { + "mesh":1506, + "name":"Object2269", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.440017700195312, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1507, + "name":"Rectangle430", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + -2.69905686378479 + ] + }, + { + "mesh":1508, + "name":"Circle3099", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.031379222869873, + 2.8860788345336914 + ] + }, + { + "mesh":1509, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface786", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9352035522460938, + 0.7291837930679321, + -1.6749831438064575 + ] + }, + { + "mesh":1510, + "name":"Object091", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.555116653442383, + 0.14451873302459717, + -15.771598815917969 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube163", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":1511, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube284", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + -0.49473464488983154 + ] + }, + { + "mesh":1512, + "name":"Circle2396", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.978334426879883, + 2.1535534858703613, + -2.22849702835083 + ] + }, + { + "mesh":1513, + "name":"Circle2009", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9819740056991577, + -5.459476947784424 + ] + }, + { + "mesh":1514, + "name":"Obj3d66-647191-37-425", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.56678581237793, + 1.6739360094070435, + 18.324810028076172 + ] + }, + { + "mesh":1515, + "name":"Object2417", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.853496551513672, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":1516, + "name":"pasted__pasted__pCylinder452", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.443410873413086, + 3.3364663124084473, + 6.475161552429199 + ] + }, + { + "mesh":1517, + "name":"pasted__pasted__pCube393", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + -4.083703517913818 + ] + }, + { + "mesh":1518, + "name":"Object2015", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.154567718505859, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1519, + "name":"Circle2226", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.571553111076355, + -1.69353449344635 + ] + }, + { + "mesh":1520, + "name":"Rectangle451", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + 12.82699966430664 + ] + }, + { + "mesh":1521, + "name":"pasted__pasted__pCube404", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + -6.459451198577881 + ] + }, + { + "mesh":1522, + "name":"Line2413", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.678508758544922, + 2.3475184440612793, + -5.519063472747803 + ] + }, + { + "mesh":1523, + "name":"pasted__pasted__pasted__polySurface490", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9219884872436523, + 0.6901224851608276, + -7.229973316192627 + ] + }, + { + "mesh":1524, + "name":"pasted__pasted__pasted__pCylinder714", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565055847168, + 0.9016937017440796, + 14.134862899780273 + ] + }, + { + "mesh":1525, + "name":"Object2238", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.483612060546875, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1526, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface189", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.913536071777344, + 1.4340986013412476, + -7.286858081817627 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube599", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":1527, + "name":"Circle2085", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.724679946899414, + 1.405131220817566, + -5.503748416900635 + ] + }, + { + "mesh":1528, + "name":"Object2088", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.1336320638656616, + 16.99413299560547 + ] + }, + { + "mesh":1529, + "name":"Circle2549", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.13178253173828, + 1.5286577939987183, + -1.6993039846420288 + ] + }, + { + "mesh":1530, + "name":"Object1944", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.134876251220703, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1531, + "name":"Circle2738", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.986364483833313, + -0.13252374529838562 + ] + }, + { + "mesh":1532, + "name":"Obj3d66-647191-4-136", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.55536460876465, + 1.6804250478744507, + 18.297590255737305 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube163", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":1533, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder3", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + -5.018119812011719 + ] + }, + { + "mesh":1534, + "name":"extrudedSurface23", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.917051315307617, + 4.220411777496338, + -4.361581802368164 + ] + }, + { + "mesh":1535, + "name":"pasted__pasted__pCylinder647", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.835866928100586, + 1.9595400094985962, + 5.998355388641357 + ] + }, + { + "mesh":1536, + "name":"Circle1558", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.065542697906494, + -4.64703893661499 + ] + }, + { + "mesh":1537, + "name":"Circle2183", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.791223526000977, + 1.5420066118240356, + -5.985202789306641 + ] + }, + { + "mesh":1538, + "name":"Object2058", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.094094276428223, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1539, + "name":"Rectangle905", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03338050842285, + 0.11240279674530029, + -5.454657077789307 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube441", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":1540, + "name":"pasted__pasted__pCube392", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + -4.647907733917236 + ] + }, + { + "mesh":1541, + "name":"Circle2830", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03713607788086, + 1.8265589475631714, + -0.04892929643392563 + ] + }, + { + "mesh":1542, + "name":"Circle1807", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.083492279052734, + 1.6715091466903687, + -4.850252151489258 + ] + }, + { + "mesh":1543, + "name":"Circle2371", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.008871555328369, + -3.001476526260376 + ] + }, + { + "mesh":1544, + "name":"Circle1483", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7411259412765503, + -5.460317134857178 + ] + }, + { + "mesh":1545, + "name":"Circle1816", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.11824607849121, + 1.5687059164047241, + -4.90845251083374 + ] + }, + { + "mesh":1546, + "name":"Circle2725", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7612920999526978, + -0.005761593580245972 + ] + }, + { + "mesh":1547, + "name":"Line001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 22.42677879333496, + 0.14451825618743896, + 0.6629151105880737 + ] + }, + { + "mesh":1548, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface529", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6865177154541016, + 1.350049376487732, + 13.954267501831055 + ] + }, + { + "mesh":1549, + "name":"Object1947", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.1306610107421875, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1550, + "name":"Object2281", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.42314338684082, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1551, + "name":"Object2606", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.887157440185547, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface767", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 5.934509754180908 + ] + }, + { + "mesh":1552, + "name":"Circle2392", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.963634490966797, + 2.2027106285095215, + -2.22849702835083 + ] + }, + { + "mesh":1553, + "name":"pasted__pasted__pPipe108", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.46347427368164, + 1.845382809638977, + 5.564574718475342 + ] + }, + { + "mesh":1554, + "name":"pasted__pasted__pCube542", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.488710403442383, + 3.3453516960144043, + -7.562785625457764 + ] + }, + { + "mesh":1555, + "name":"pasted__pasted__pCube637", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.887022018432617, + 1.1269747018814087, + -2.1613690853118896 + ] + }, + { + "mesh":1556, + "name":"Object2495", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.804183959960938, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1557, + "name":"pasted__pasted__pasted__pasted__pCylinder803", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231765747070312, + 1.079692006111145, + 13.642666816711426 + ] + }, + { + "mesh":1558, + "name":"pasted__pasted__pCube400.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + -5.3469929695129395 + ] + }, + { + "mesh":1559, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder056", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + 0.958196222782135 + ] + }, + { + "mesh":1560, + "name":"pasted__pasted__pPipe102", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.114641189575195, + 1.2917834520339966, + -0.7465048432350159 + ] + }, + { + "mesh":1561, + "name":"Circle1596", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.2755346298217773, + -5.460318088531494 + ] + }, + { + "mesh":1562, + "name":"Circle3081", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8738282918930054, + 2.9748127460479736 + ] + }, + { + "mesh":1563, + "name":"pasted__pasted__pasted__pPlane280", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -13.208755493164062, + 0.38407886028289795, + 16.587963104248047 + ] + }, + { + "mesh":1564, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder52", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.35464859008789, + 1.4823185205459595, + -6.294411659240723 + ] + }, + { + "mesh":1565, + "name":"Object2100", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.079168438911438, + 16.99413299560547 + ] + }, + { + "mesh":1566, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube061", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137231826782227, + 0.6166740655899048, + 7.126505374908447 + ] + }, + { + "mesh":1567, + "name":"Circle2583", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8068004846572876, + 1.2952815294265747 + ] + }, + { + "mesh":1568, + "name":"Obj3d66-647191-23-227", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567060470581055, + 1.6626402139663696, + -15.54886531829834 + ] + }, + { + "mesh":1569, + "name":"Circle3290", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.22832489013672, + 1.290230631828308, + 4.0486741065979 + ] + }, + { + "mesh":1570, + "name":"Circle1995", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.1594409942626953, + -5.459476947784424 + ] + }, + { + "mesh":1571, + "name":"Line2415", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.87018394470215, + 2.191924571990967, + -4.637604713439941 + ] + }, + { + "mesh":1572, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube367", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + -5.4707255363464355 + ] + }, + { + "mesh":1573, + "name":"pasted__pasted__pCylinder2.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.836128234863281, + 1.9610363245010376, + -6.215460300445557 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__polySurface062", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":1574, + "name":"pasted__pasted__pasted__pCube163", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 0.9795023202896118, + 14.8716459274292 + ] + }, + { + "mesh":1575, + "name":"pasted__pasted__pCylinder585", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.063142776489258, + 4.9288010597229, + 0.8069935441017151 + ] + }, + { + "mesh":1576, + "name":"Circle1661", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.4164232015609741, + -5.504589080810547 + ] + }, + { + "mesh":1577, + "name":"Object2213", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.399234771728516, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1578, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube319", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + 5.361842155456543 + ] + }, + { + "mesh":1579, + "name":"Object2253", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.462518692016602, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1580, + "name":"Obj3d66-647191-29-914", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.583311080932617, + 1.6631056070327759, + 5.563130855560303 + ] + }, + { + "mesh":1581, + "name":"Object1959", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.113785743713379, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1582, + "name":"pasted__pasted__pCube388.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.514984130859375, + 5.280849933624268, + -7.105642795562744 + ] + }, + { + "mesh":1583, + "name":"Circle1688", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.059186935424805, + 1.8831874132156372, + -5.460317134857178 + ] + }, + { + "mesh":1584, + "name":"pasted__pasted__pCube575", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.472095489501953, + -0.4261718988418579, + 6.480375289916992 + ] + }, + { + "mesh":1585, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface231", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.463172912597656, + 1.7867687940597534, + 0.2796629071235657 + ] + }, + { + "mesh":1586, + "name":"Circle3277", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.122756958007812, + 1.5553566217422485, + 4.216042518615723 + ] + }, + { + "mesh":1587, + "name":"pasted__pasted__pCylinder559", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.872268676757812, + 0.07832396030426025, + -0.03807928413152695 + ] + }, + { + "mesh":1588, + "name":"Line2416", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.99513053894043, + 2.195624828338623, + -6.373836040496826 + ] + }, + { + "mesh":1589, + "name":"pasted__pasted__pasted__pCube182", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 1.2411547899246216, + 15.57959270477295 + ] + }, + { + "mesh":1590, + "name":"pasted__pasted__pCube642", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + 2.123460531234741 + ] + }, + { + "mesh":1591, + "name":"pasted__pasted__pasted__pasted__pPipe090", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.698280334472656, + 0.8169807195663452, + 15.858174324035645 + ] + }, + { + "mesh":1592, + "name":"Object2472", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.836530685424805, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1593, + "name":"Obj3d66-647191-11-100", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8686857223510742, + 1.2934056520462036, + -8.592440605163574 + ] + }, + { + "mesh":1594, + "name":"Circle2024", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.01995086669922, + 1.357746958732605, + -5.8714799880981445 + ] + }, + { + "mesh":1595, + "name":"pasted__pasted__pasted__pCylinder178", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.706984519958496, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "mesh":1596, + "name":"Object2112", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.0247045755386353, + 16.99413299560547 + ] + }, + { + "mesh":1597, + "name":"pasted__pasted__pasted__pasted__pPipe082", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.327337265014648, + 1.2212477922439575, + 15.858174324035645 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube524", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":1598, + "name":"pasted__pasted__pCube391.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.514986038208008, + 5.280849933624268, + -5.410651206970215 + ] + }, + { + "mesh":1599, + "name":"Text017", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.053867340087891, + 1.55398428440094, + -2.9058735370635986 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface746", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 4.803884506225586 + ] + }, + { + "mesh":1600, + "name":"pasted__pasted__pCylinder580", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.218090057373047, + 0.3064950704574585, + 2.4917969703674316 + ] + }, + { + "mesh":1601, + "name":"Circle3264", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.07246971130371, + 1.7041248083114624, + 4.300265312194824 + ] + }, + { + "mesh":1602, + "name":"pasted__pasted__pCube610", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.60836410522461, + -0.5796909332275391, + 6.568395137786865 + ] + }, + { + "mesh":1603, + "name":"Rectangle438", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + 1.4093385934829712 + ] + }, + { + "mesh":1604, + "name":"Circle2454", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.989358901977539, + 1.96646249294281, + -2.9852206707000732 + ] + }, + { + "mesh":1605, + "name":"Line2435", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.033369064331055, + 0.19340407848358154, + 0.6334408521652222 + ] + }, + { + "mesh":1606, + "name":"pasted__pasted__pasted__pasted__pCylinder844", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.6024112701416, + 0.28987395763397217, + 13.938788414001465 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors139", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":1607, + "name":"Rectangle1399", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 3.3429574966430664 + ] + }, + { + "mesh":1608, + "name":"Circle1785", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0136661529541, + 1.8780771493911743, + -4.733307361602783 + ] + }, + { + "mesh":1609, + "name":"polySurface364", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.447683334350586, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":1610, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube173", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.877500534057617, + 1.4054874181747437, + -7.520077228546143 + ] + }, + { + "mesh":1611, + "name":"Obj3d66-647191-10-426", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8800668716430664, + 1.3022443056106567, + -8.623531341552734 + ] + }, + { + "mesh":1612, + "name":"Object1971", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.096906661987305, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1613, + "name":"Object2363", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.427360534667969, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1614, + "name":"Rectangle908", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.915189743041992, + 1.039061188697815, + -5.455724716186523 + ] + }, + { + "mesh":1615, + "name":"pasted__pasted__pCylinder608", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.39571189880371, + 5.043131351470947, + 5.512836456298828 + ] + }, + { + "mesh":1616, + "name":"Object2194", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.425954818725586, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1617, + "name":"Circle1516", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.840549111366272, + -4.773801326751709 + ] + }, + { + "mesh":1618, + "name":"Object2045", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.112375259399414, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1619, + "name":"pasted__pasted__pasted__pCylinder158", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.706984519958496, + 0.9016944169998169, + 12.947877883911133 + ] + }, + { + "mesh":1620, + "name":"Rectangle768", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8114662170410156, + 0.5975691080093384, + -4.219324111938477 + ] + }, + { + "mesh":1621, + "name":"pasted__pasted__pCylinder518", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.899190902709961, + 2.1647748947143555, + 0.08851037919521332 + ] + }, + { + "mesh":1622, + "name":"pasted__pasted__pasted__pasted__pasted__extrudedSurface046", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.56330680847168, + 1.3869057893753052, + 14.707235336303711 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube165", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":1623, + "name":"pasted__pasted__pasted__pCylinder660", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094711303710938, + 0.9016937017440796, + 15.344712257385254 + ] + }, + { + "mesh":1624, + "name":"Object2268", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.441425323486328, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1625, + "name":"Obj3d66-647191-30-130", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980655670166016, + 1.6615828275680542, + 18.329919815063477 + ] + }, + { + "mesh":1626, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface785", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9352035522460938, + 0.9035264253616333, + -1.6749831438064575 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube162", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":1627, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube283", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 1.3735631704330444, + -0.7941173911094666 + ] + }, + { + "mesh":1628, + "name":"Circle3276", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.11824607849121, + 1.5687059164047241, + 4.223600387573242 + ] + }, + { + "mesh":1629, + "name":"pasted__pasted__pCube583", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.46766471862793, + 3.3086066246032715, + 6.474577903747559 + ] + }, + { + "mesh":1630, + "name":"Object2014", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.155971527099609, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1631, + "name":"Circle1919", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.5709766149520874, + -4.922098159790039 + ] + }, + { + "mesh":1632, + "name":"Rectangle450", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + 14.204117774963379 + ] + }, + { + "mesh":1633, + "name":"pasted__pasted__pCube403", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + -5.591084003448486 + ] + }, + { + "mesh":1634, + "name":"Rectangle539", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 13.972362518310547, + 0.14451777935028076, + 9.059598922729492 + ] + }, + { + "mesh":1635, + "name":"pasted__pasted__pasted__pCylinder713", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565055847168, + 1.2660447359085083, + 14.134862899780273 + ] + }, + { + "mesh":1636, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface739", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.074766159057617, + 0.7311524152755737, + 7.764350891113281 + ] + }, + { + "mesh":1637, + "name":"pasted__pasted__pCylinder19.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.992120742797852, + 2.4255805015563965, + -6.294641494750977 + ] + }, + { + "mesh":1638, + "name":"Circle2886", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.024694442749023, + 1.8454612493515015, + 1.3363251686096191 + ] + }, + { + "mesh":1639, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface668", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.913793563842773, + 1.45026433467865, + 3.809905529022217 + ] + }, + { + "mesh":1640, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface216", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.913793563842773, + 1.450264573097229, + -7.156833171844482 + ] + }, + { + "mesh":1641, + "name":"Circle1873", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.8115291595459, + 1.6220842599868774, + -4.888688087463379 + ] + }, + { + "mesh":1642, + "name":"Circle2084", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.972352981567383, + 2.2425475120544434, + -5.459476947784424 + ] + }, + { + "mesh":1643, + "name":"Rectangle1141", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.441741943359375, + 0.5665737390518188, + 16.649982452392578 + ] + }, + { + "mesh":1644, + "name":"Circle2632", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.481918454170227, + 0.6277793049812317 + ] + }, + { + "mesh":1645, + "name":"Object1943", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.136286735534668, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1646, + "name":"Object2402", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.0610133409500122, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube346", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":1647, + "name":"pasted__pasted__pPipe16", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.144113540649414, + 2.7832746505737305, + -7.820801258087158 + ] + }, + { + "mesh":1648, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube38", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + -5.020907402038574 + ] + }, + { + "mesh":1649, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder086", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.190902709960938, + 0.8538147211074829, + -1.1937971115112305 + ] + }, + { + "mesh":1650, + "name":"extrudedSurface22", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.917051315307617, + 4.220411777496338, + -5.698517799377441 + ] + }, + { + "mesh":1651, + "name":"Circle2943", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7505520582199097, + 4.3075456619262695 + ] + }, + { + "mesh":1652, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube370", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402330160140991, + -4.982552528381348 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface698", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -1.1389737129211426 + ] + }, + { + "mesh":1653, + "name":"Circle1557", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0767922401428223, + -4.6407012939453125 + ] + }, + { + "mesh":1654, + "name":"Circle2182", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.795732498168945, + 1.5553559064865112, + -5.99276065826416 + ] + }, + { + "mesh":1655, + "name":"Circle3018", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6506258249282837, + 3.6717348098754883 + ] + }, + { + "mesh":1656, + "name":"Rectangle1419", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.100914001464844, + 0.39283287525177, + 2.7237420082092285 + ] + }, + { + "mesh":1657, + "name":"Object2057", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.095499038696289, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1658, + "name":"Circle1894", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 1.4346312284469604, + -4.794387340545654 + ] + }, + { + "mesh":1659, + "name":"Circle1806", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.079818725585938, + 1.6823810338974, + -4.844097137451172 + ] + }, + { + "mesh":1660, + "name":"Object2134", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.510334014892578, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1661, + "name":"Rectangle943", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -7.766016483306885 + ] + }, + { + "mesh":1662, + "name":"Object2280", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.424551010131836, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1663, + "name":"Circle1485", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7128852605819702, + -5.460317134857178 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube396", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 5.934509754180908 + ] + }, + { + "mesh":1664, + "name":"Circle2379", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9188429117202759, + -2.9507713317871094 + ] + }, + { + "mesh":1665, + "name":"pasted__pasted__pCube541", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.022483825683594, + 3.3453516960144043, + -7.562785625457764 + ] + }, + { + "mesh":1666, + "name":"pasted__pasted__pCube636", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.034181594848633, + 1.1083353757858276, + -2.153803825378418 + ] + }, + { + "mesh":1667, + "name":"Circle2591", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.571553111076355, + 1.162742257118225 + ] + }, + { + "mesh":1668, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface703", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.487043380737305, + 1.7848106622695923, + 14.877471923828125 + ] + }, + { + "mesh":1669, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube246", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.43475341796875, + 1.429686188697815, + -5.589705467224121 + ] + }, + { + "mesh":1670, + "name":"pasted__pasted__pasted__pasted__pCylinder802", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414453506469727, + 1.079692006111145, + 13.642838478088379 + ] + }, + { + "mesh":1671, + "name":"Circle2566", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.4346312284469604, + 1.2818008661270142 + ] + }, + { + "mesh":1672, + "name":"Obj3d66-647191-12-220", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.97991180419922, + 1.6637946367263794, + 18.3248291015625 + ] + }, + { + "mesh":1673, + "name":"pasted__pasted__pCube399.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939353942871094, + 5.073940753936768, + -4.484000205993652 + ] + }, + { + "mesh":1674, + "name":"Rectangle1377", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137235641479492, + 0.14451825618743896, + 5.294242858886719 + ] + }, + { + "mesh":1675, + "name":"Circle2940", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.705553412437439, + 4.282193183898926 + ] + }, + { + "mesh":1676, + "name":"pasted__pasted__pasted__pPlane279", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -13.776830673217773, + 0.38407886028289795, + 16.587963104248047 + ] + }, + { + "mesh":1677, + "name":"pasted__pasted__pasted__pasted__pCylinder886", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.52398109436035, + 0.6754261255264282, + 15.849641799926758 + ] + }, + { + "mesh":1678, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder51", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.35464859008789, + 1.9054702520370483, + -5.558741569519043 + ] + }, + { + "mesh":1679, + "name":"polySurface348", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.432300567626953, + 1.4533334970474243, + 13.790817260742188 + ] + }, + { + "mesh":1680, + "name":"Object2099", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.0837067365646362, + 16.99413299560547 + ] + }, + { + "mesh":1681, + "name":"Object2432", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.89278221130371, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1682, + "name":"pasted__pasted__pasted__pasted__pCylinder830", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231466293334961, + 0.6754261255264282, + 15.9976167678833 + ] + }, + { + "mesh":1683, + "name":"Obj3d66-647191-16-703", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567060470581055, + 1.6718095541000366, + 18.3248233795166 + ] + }, + { + "mesh":1684, + "name":"Circle3307", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.439908981323242, + 1.3679388761520386, + -5.688488960266113 + ] + }, + { + "mesh":1685, + "name":"Circle2582", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7955507040023804, + 1.2889434099197388 + ] + }, + { + "mesh":1686, + "name":"Line2422", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.16911506652832, + 2.339718818664551, + -5.5742669105529785 + ] + }, + { + "mesh":1687, + "name":"Circle2521", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.024694442749023, + 1.8454612493515015, + -1.519951343536377 + ] + }, + { + "mesh":1688, + "name":"Obj3d66-647191-16-701", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.981172561645508, + 1.6718095541000366, + 18.3248291015625 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface709", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -3.557638645172119 + ] + }, + { + "mesh":1689, + "name":"Object1898", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.080034255981445, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1690, + "name":"Circle1660", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.946138381958008, + 2.243314266204834, + -5.460318088531494 + ] + }, + { + "mesh":1691, + "name":"Box204", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8398380279541, + 1.0034366846084595, + 16.95024871826172 + ] + }, + { + "mesh":1692, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube318", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.88755989074707, + 1.3735638856887817, + 5.658511161804199 + ] + }, + { + "mesh":1693, + "name":"Object2252", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.463926315307617, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1694, + "name":"Obj3d66-647191-28-039", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.585466384887695, + 1.6571954488754272, + 5.562841892242432 + ] + }, + { + "mesh":1695, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube273", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 1.3735638856887817, + -0.21040046215057373 + ] + }, + { + "mesh":1696, + "name":"pasted__pasted__pCube387.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.514984130859375, + 5.280849933624268, + -7.653467655181885 + ] + }, + { + "mesh":1697, + "name":"Circle1687", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.055511474609375, + 1.8954769372940063, + -5.460317134857178 + ] + }, + { + "mesh":1698, + "name":"pasted__pasted__pCube574", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.47679901123047, + 0.06377255916595459, + 6.145968437194824 + ] + }, + { + "mesh":1699, + "name":"pasted__pasted__pCylinder563", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2247467041015625, + 1.5741528272628784, + 0.48409268260002136 + ] + }, + { + "mesh":1700, + "name":"pasted__pasted__pasted__pCube586", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.465784072875977, + 0.25255048274993896, + 12.95201301574707 + ] + }, + { + "mesh":1701, + "name":"Object2657", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8154354095459, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1702, + "name":"Circle2686", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3985601663589478, + 0.7241038084030151 + ] + }, + { + "mesh":1703, + "name":"pasted__pasted__pCylinder577", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.900421142578125, + 5.058504581451416, + 0.17779852449893951 + ] + }, + { + "mesh":1704, + "name":"Object2143", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.4976806640625, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1705, + "name":"pasted__pasted__extrudedSurface18", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.206377029418945, + 0.1835993528366089, + -7.822932243347168 + ] + }, + { + "mesh":1706, + "name":"Circle2023", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.212594985961914, + 1.374463438987732, + -5.8714799880981445 + ] + }, + { + "mesh":1707, + "name":"pasted__pasted__pasted__pPlane102", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.003900527954102, + 0.38407909870147705, + 16.587963104248047 + ] + }, + { + "mesh":1708, + "name":"Rectangle1339", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + -0.5220524668693542 + ] + }, + { + "mesh":1709, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder204", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.314399719238281, + 0.6582883596420288, + 12.767040252685547 + ] + }, + { + "mesh":1710, + "name":"Object2111", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.0292431116104126, + 16.99413299560547 + ] + }, + { + "mesh":1711, + "name":"pasted__pasted__pasted__pasted__pCylinder840", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231765747070312, + 1.0796922445297241, + 15.701493263244629 + ] + }, + { + "mesh":1712, + "name":"pasted__pasted__pCube390.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.514986038208008, + 5.280849933624268, + -5.942244529724121 + ] + }, + { + "mesh":1713, + "name":"pasted__pasted__pasted__pPlane327", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.4700870513916, + 0.3886605501174927, + 14.480447769165039 + ] + }, + { + "mesh":1714, + "name":"Circle3263", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.06879234313965, + 1.7149971723556519, + 4.306419849395752 + ] + }, + { + "mesh":1715, + "name":"Circle2717", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8625746965408325, + -0.06280457228422165 + ] + }, + { + "mesh":1716, + "name":"Rectangle437", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + 2.7864577770233154 + ] + }, + { + "mesh":1717, + "name":"Circle2453", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.985681533813477, + 1.9772247076034546, + -2.99137544631958 + ] + }, + { + "mesh":1718, + "name":"pasted__pasted__pasted__pasted__pCylinder843", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.52398109436035, + 0.28987395763397217, + 13.790817260742188 + ] + }, + { + "mesh":1719, + "name":"polySurface113", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.714500427246094, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":1720, + "name":"Rectangle1398", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 3.3429574966430664 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface600", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":1721, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube426", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + 5.827265739440918 + ] + }, + { + "mesh":1722, + "name":"polySurface363", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.464664459228516, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":1723, + "name":"Obj3d66-647191-4-140", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.880228042602539, + 1.3266888856887817, + -8.623236656188965 + ] + }, + { + "mesh":1724, + "name":"Object1970", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.09831428527832, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1725, + "name":"Circle1957", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.400625228881836, + 1.1369620561599731, + -5.148332595825195 + ] + }, + { + "mesh":1726, + "name":"pasted__pasted__pCylinder648", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.844537734985352, + 1.987017273902893, + 6.003091812133789 + ] + }, + { + "mesh":1727, + "name":"Circle1561", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0317940711975098, + -4.66605281829834 + ] + }, + { + "mesh":1728, + "name":"Object2193", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.427360534667969, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1729, + "name":"Circle1515", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.829299807548523, + -4.780139446258545 + ] + }, + { + "mesh":1730, + "name":"Object2044", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.113785743713379, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1731, + "name":"Circle3191", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.022436141967773, + 1.869606375694275, + 2.9704062938690186 + ] + }, + { + "mesh":1732, + "name":"Circle1766", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3365494012832642, + -5.9129204750061035 + ] + }, + { + "mesh":1733, + "name":"Rectangle767", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7509279251098633, + 0.1627582311630249, + -4.027909755706787 + ] + }, + { + "mesh":1734, + "name":"Rectangle1136", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.223169326782227, + 0.39283287525177, + 16.649982452392578 + ] + }, + { + "mesh":1735, + "name":"pasted__pasted__pCylinder517", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.890146255493164, + 2.1370115280151367, + 0.08851037919521332 + ] + }, + { + "mesh":1736, + "name":"Obj3d66-647191-2-966", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3525896072387695, + 1.6754931211471558, + -15.540233612060547 + ] + }, + { + "mesh":1737, + "name":"Object2267", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.442831039428711, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1738, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface784", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9352035522460938, + 1.2666805982589722, + -1.6749831438064575 + ] + }, + { + "mesh":1739, + "name":"Circle2560", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.22832489013672, + 1.290230631828308, + -1.8515568971633911 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube161", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":1740, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder070", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 1.3803664445877075, + -0.7935411334037781 + ] + }, + { + "mesh":1741, + "name":"Circle3275", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.113731384277344, + 1.582055687904358, + 4.231158256530762 + ] + }, + { + "mesh":1742, + "name":"pasted__pasted__pPipe056", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.465848922729492, + -0.41272246837615967, + 6.212024688720703 + ] + }, + { + "mesh":1743, + "name":"Object2013", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.157377243041992, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1744, + "name":"Circle1630", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.705896377563477, + 1.357746958732605, + -5.872320652008057 + ] + }, + { + "mesh":1745, + "name":"pasted__pasted__pCylinder409", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.628408432006836, + -1.5780738592147827, + -7.493965148925781 + ] + }, + { + "mesh":1746, + "name":"Rectangle449", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + 15.5812349319458 + ] + }, + { + "mesh":1747, + "name":"pasted__pasted__pCube402", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + -5.892167091369629 + ] + }, + { + "mesh":1748, + "name":"pasted__pasted__pasted__pCylinder459", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9271001815795898, + 0.864582896232605, + -7.2945451736450195 + ] + }, + { + "mesh":1749, + "name":"Object2236", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.486431121826172, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1750, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface203", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.916723251342773, + 1.4364303350448608, + -7.267420291900635 + ] + }, + { + "mesh":1751, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface667", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.916723251342773, + 1.4364303350448608, + 3.6993186473846436 + ] + }, + { + "mesh":1752, + "name":"Object2616", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.873098373413086, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1753, + "name":"Circle2083", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.68246078491211, + 1.4175828695297241, + -5.459476947784424 + ] + }, + { + "mesh":1754, + "name":"Object1942", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.137694358825684, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1755, + "name":"Obj3d66-647191-1-676", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567583084106445, + 1.670127511024475, + 18.2620906829834 + ] + }, + { + "mesh":1756, + "name":"pasted__pasted__pPipe15", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.159643173217773, + 2.565361976623535, + -7.820801258087158 + ] + }, + { + "mesh":1757, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube37", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 1.3735638856887817, + -4.721524238586426 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube648", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube502", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":1758, + "name":"Object1871", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.118000030517578, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1759, + "name":"pasted__pasted__pTorus9", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.5220947265625, + 5.01207160949707, + -4.346009254455566 + ] + }, + { + "mesh":1760, + "name":"pasted__pasted__pCube594", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.239755630493164, + 3.3579039573669434, + 6.4173712730407715 + ] + }, + { + "mesh":1761, + "name":"Circle1551", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.761801838874817, + -4.8181681632995605 + ] + }, + { + "mesh":1762, + "name":"Circle2181", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.800247192382812, + 1.5687059164047241, + -6.000317573547363 + ] + }, + { + "mesh":1763, + "name":"Object1862", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.1306610107421875, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1764, + "name":"Object2056", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.096906661987305, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1765, + "name":"Object2125", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.430095672607422, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":1766, + "name":"Object2563", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.828092575073242, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1767, + "name":"Circle1805", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.076141357421875, + 1.693252682685852, + -4.837942123413086 + ] + }, + { + "mesh":1768, + "name":"Rectangle951", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -9.494046211242676 + ] + }, + { + "mesh":1769, + "name":"Object1945", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.13347053527832, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1770, + "name":"polySurface127", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.680538177490234, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":1771, + "name":"Object2279", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.425954818725586, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1772, + "name":"Circle1484", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7284499406814575, + -5.460317134857178 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube395", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 5.934509754180908 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door117", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 5.934509754180908 + ] + }, + { + "mesh":1773, + "name":"pasted__pasted__pasted__pCylinder185", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.648862838745117, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":1774, + "name":"Rectangle106", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 11.03024673461914, + 1.8814738988876343, + 3.2818024158477783 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube533", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":1775, + "name":"Circle2412", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03713607788086, + 1.9569236040115356, + -2.22849702835083 + ] + }, + { + "mesh":1776, + "name":"pasted__pasted__pCylinder438", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.048494338989258, + 2.950833797454834, + -7.5038299560546875 + ] + }, + { + "mesh":1777, + "name":"Circle2792", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.092260360717773, + 1.7725833654403687, + 0.6277795433998108 + ] + }, + { + "mesh":1778, + "name":"pasted__pasted__pCube540", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.32356834411621, + 3.3579039573669434, + -7.564800262451172 + ] + }, + { + "mesh":1779, + "name":"pasted__pasted__pPipe085", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.144113540649414, + 2.7832746505737305, + -2.140505313873291 + ] + }, + { + "mesh":1780, + "name":"pasted__pasted__pCylinder609", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.325416564941406, + 4.2707743644714355, + 1.7382797002792358 + ] + }, + { + "mesh":1781, + "name":"Circle1828", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3208791017532349, + -4.951571464538574 + ] + }, + { + "mesh":1782, + "name":"Object2493", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80699920654297, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1783, + "name":"pasted__pasted__pasted__pasted__pCylinder801", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.492883682250977, + 1.079692006111145, + 13.790817260742188 + ] + }, + { + "mesh":1784, + "name":"pasted__pasted__pCube398.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + -4.785083770751953 + ] + }, + { + "mesh":1785, + "name":"Rectangle1364", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.5818748474121094, + 0.33695781230926514, + 7.767119407653809 + ] + }, + { + "mesh":1786, + "name":"Circle1917", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.5986121892929077, + -4.906533241271973 + ] + }, + { + "mesh":1787, + "name":"pasted__pasted__pasted__pCube419", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9360036849975586, + 1.3207262754440308, + -7.406493186950684 + ] + }, + { + "mesh":1788, + "name":"pasted__pasted__pasted__pasted__pCylinder495", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.068897247314453, + 1.0796922445297241, + 15.99779224395752 + ] + }, + { + "mesh":1789, + "name":"pasted__pasted__pasted__pCube547", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.885326385498047, + 0.25255119800567627, + 16.590106964111328 + ] + }, + { + "mesh":1790, + "name":"Circle2816", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.978334426879883, + 1.9987479448318481, + -0.14740920066833496 + ] + }, + { + "mesh":1791, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder50", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.19692611694336, + 0.5950978994369507, + -4.514034271240234 + ] + }, + { + "mesh":1792, + "name":"polySurface347", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.321346282958984, + 1.4009376764297485, + 13.790300369262695 + ] + }, + { + "mesh":1793, + "name":"Object2098", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.0882457494735718, + 16.99413299560547 + ] + }, + { + "mesh":1794, + "name":"Obj3d66-647191-15-309", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567060470581055, + 1.6626402139663696, + 18.3248233795166 + ] + }, + { + "mesh":1795, + "name":"Circle2581", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7843014001846313, + 1.2826052904129028 + ] + }, + { + "mesh":1796, + "name":"Obj3d66-647191-21-773", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.568323135375977, + 1.6637946367263794, + -15.54886531829834 + ] + }, + { + "mesh":1797, + "name":"Circle1981", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.666190505027771, + -5.459476947784424 + ] + }, + { + "mesh":1798, + "name":"polySurface361", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.498628616333008, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":1799, + "name":"Circle2700", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.637501835823059, + 0.06395761668682098 + ] + }, + { + "mesh":1800, + "name":"pasted__pasted__pPipe051", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.468690872192383, + 0.8532906770706177, + 6.673774242401123 + ] + }, + { + "mesh":1801, + "name":"Line2424", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.961942672729492, + 2.1939940452575684, + -4.448326110839844 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube547", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface708", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -3.557638645172119 + ] + }, + { + "mesh":1802, + "name":"Circle1659", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.236181259155273, + 1.417582631111145, + -5.460318088531494 + ] + }, + { + "mesh":1803, + "name":"pasted__pasted__pasted__pasted__pPipe076", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.327337265014648, + 1.2212475538253784, + 13.799349784851074 + ] + }, + { + "mesh":1804, + "name":"Circle1568", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9530459642410278, + -4.71042013168335 + ] + }, + { + "mesh":1805, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder098", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + 5.6579461097717285 + ] + }, + { + "mesh":1806, + "name":"pasted__pasted__pCylinder333.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.39310646057129, + 4.853360652923584, + -4.346292972564697 + ] + }, + { + "mesh":1807, + "name":"pasted__pasted__pasted__pasted__pCylinder494", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886205673217773, + 1.0796922445297241, + 15.9976167678833 + ] + }, + { + "mesh":1808, + "name":"Obj3d66-647191-27-302", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.592041015625, + 1.6754931211471558, + 5.562841892242432 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube554", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":1809, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder064", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + -0.21097689867019653 + ] + }, + { + "mesh":1810, + "name":"pasted__pasted__pCube386.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.514986038208008, + 5.280849933624268, + -3.748565435409546 + ] + }, + { + "mesh":1811, + "name":"Circle1686", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.051836013793945, + 1.9077662229537964, + -5.460317134857178 + ] + }, + { + "mesh":1812, + "name":"pasted__pasted__pCylinder451", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.473392486572266, + -1.4001697301864624, + 6.237325191497803 + ] + }, + { + "mesh":1813, + "name":"Object1997", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.060342788696289, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1814, + "name":"pasted__pasted__pasted__pasted__pCylinder459", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.147626876831055, + 1.079692006111145, + 13.790817260742188 + ] + }, + { + "mesh":1815, + "name":"Line2414", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.428354263305664, + 2.348745822906494, + -5.518664360046387 + ] + }, + { + "mesh":1816, + "name":"Rectangle433", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.4067354202270508, + 0.3215755224227905, + 8.226789474487305 + ] + }, + { + "mesh":1817, + "name":"pasted__pasted__pCylinder576", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.995811462402344, + 5.305135250091553, + 0.1722097545862198 + ] + }, + { + "mesh":1818, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube637", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 1.2274454832077026, + 2.6694743633270264 + ] + }, + { + "mesh":1819, + "name":"Circle2022", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.160554885864258, + 1.374463438987732, + -5.8714799880981445 + ] + }, + { + "mesh":1820, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface667", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.071154594421387, + 1.3063827753067017, + -4.224803447723389 + ] + }, + { + "mesh":1821, + "name":"Line2448", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.357885360717773, + 0.18367278575897217, + 3.6659300327301025 + ] + }, + { + "mesh":1822, + "name":"pasted__pasted__pasted__pCube156", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.326154708862305, + 0.25255119800567627, + 16.590106964111328 + ] + }, + { + "mesh":1823, + "name":"Circle3194", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03346061706543, + 1.8373209238052368, + 2.9888713359832764 + ] + }, + { + "mesh":1824, + "name":"pasted__pasted__pCylinder425", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.651683807373047, + 3.3364663124084473, + -7.5070109367370605 + ] + }, + { + "mesh":1825, + "name":"pasted__pasted__pCylinder483", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.186412811279297, + 2.950833797454834, + 6.478343963623047 + ] + }, + { + "mesh":1826, + "name":"Object2110", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.033781886100769, + 16.99413299560547 + ] + }, + { + "mesh":1827, + "name":"Obj3d66-647191-4-119", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.55536460876465, + 1.6804250478744507, + -15.576517105102539 + ] + }, + { + "mesh":1828, + "name":"pasted__pasted__pasted__pasted__pCylinder839", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414453506469727, + 1.0796922445297241, + 15.701667785644531 + ] + }, + { + "mesh":1829, + "name":"pasted__pasted__pCube389.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.514984130859375, + 5.280849933624268, + -6.52190637588501 + ] + }, + { + "mesh":1830, + "name":"pasted__pasted__pCube374", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.975038528442383, + 1.2804936170578003, + -3.181290864944458 + ] + }, + { + "mesh":1831, + "name":"Circle3262", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.06511688232422, + 1.725868821144104, + 4.312575340270996 + ] + }, + { + "mesh":1832, + "name":"pasted__pasted__pPipe045", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.465848922729492, + -0.4148823022842407, + -7.225938320159912 + ] + }, + { + "mesh":1833, + "name":"Rectangle436", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + 4.163576602935791 + ] + }, + { + "mesh":1834, + "name":"Circle2452", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.98200798034668, + 1.98798668384552, + -2.997530221939087 + ] + }, + { + "mesh":1835, + "name":"Circle1587", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.934459686279297, + 1.118975043296814, + -5.149173736572266 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube480", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":1836, + "name":"pasted__pasted__pasted__pPlane277", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.998910903930664, + 0.38407886028289795, + 12.949873924255371 + ] + }, + { + "mesh":1837, + "name":"Circle2480", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.092260360717773, + 1.6651314496994019, + -2.812880516052246 + ] + }, + { + "mesh":1838, + "name":"Circle3134", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.007736206054688, + 2.0552382469177246, + 3.6717348098754883 + ] + }, + { + "mesh":1839, + "name":"pasted__pasted__pCylinder464", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.927236557006836, + 3.133455753326416, + 5.78167724609375 + ] + }, + { + "mesh":1840, + "name":"Rectangle1397", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 5.081486701965332 + ] + }, + { + "mesh":1841, + "name":"Obj3d66-647191-27-323", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980655670166016, + 1.6754928827285767, + 18.33355712890625 + ] + }, + { + "mesh":1842, + "name":"Circle3218", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.124176025390625, + 1.5716794729232788, + 3.140798330307007 + ] + }, + { + "mesh":1843, + "name":"Object1969", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.099720001220703, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube388", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 2.3852198123931885 + ] + }, + { + "mesh":1844, + "name":"pasted__pasted__pCylinder649", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.853204727172852, + 2.014493942260742, + 6.007838249206543 + ] + }, + { + "mesh":1845, + "name":"Object2192", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.428768157958984, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1846, + "name":"Circle1514", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8180502653121948, + -4.786477565765381 + ] + }, + { + "mesh":1847, + "name":"Circle3181", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.978334426879883, + 1.9987479448318481, + 2.896545886993408 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface652", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.393779754638672 + ] + }, + { + "mesh":1848, + "name":"Circle2722", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7950526475906372, + -0.024775907397270203 + ] + }, + { + "mesh":1849, + "name":"Circle1747", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08123779296875, + 1.69741690158844, + -6.063166618347168 + ] + }, + { + "mesh":1850, + "name":"pasted__pasted__pasted__pPlane092", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.003900527954102, + 0.38407886028289795, + 12.949873924255371 + ] + }, + { + "mesh":1851, + "name":"Rectangle765", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7509279251098633, + 0.1627582311630249, + -4.410742282867432 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface745", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 4.803884506225586 + ] + }, + { + "mesh":1852, + "name":"pasted__pasted__pCylinder516", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.881101608276367, + 2.1092491149902344, + 0.08851037919521332 + ] + }, + { + "mesh":1853, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube323", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.88755989074707, + 0.3764752149581909, + 5.658511161804199 + ] + }, + { + "mesh":1854, + "name":"pasted__pasted__pCube859", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.403837203979492, + 1.027711033821106, + 14.626144409179688 + ] + }, + { + "mesh":1855, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface783", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9315910339355469, + 0.6914502382278442, + -1.6722713708877563 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors136", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":1856, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube282", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + -0.7907640337944031 + ] + }, + { + "mesh":1857, + "name":"pasted__pasted__pCylinder654", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.896543502807617, + 2.1518783569335938, + 6.031553268432617 + ] + }, + { + "mesh":1858, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube431", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402330160140991, + 7.694446086883545 + ] + }, + { + "mesh":1859, + "name":"Circle3274", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10921859741211, + 1.5954049825668335, + 4.238715171813965 + ] + }, + { + "mesh":1860, + "name":"pasted__pasted__pPipe055", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.465848922729492, + -0.6296476125717163, + 6.774415016174316 + ] + }, + { + "mesh":1861, + "name":"Circle1922", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8963357210159302, + -4.738853454589844 + ] + }, + { + "mesh":1862, + "name":"Object2012", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.158786773681641, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1863, + "name":"pasted__pasted__pCube589", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.32356834411621, + 3.3579039573669434, + 6.4173712730407715 + ] + }, + { + "mesh":1864, + "name":"Object2669", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.798559188842773, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1865, + "name":"Obj3d66-647191-34-815", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.756494522094727, + 1.6606823205947876, + -9.301790237426758 + ] + }, + { + "mesh":1866, + "name":"Rectangle448", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + 16.958354949951172 + ] + }, + { + "mesh":1867, + "name":"pasted__pasted__pCube401", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + -5.045910358428955 + ] + }, + { + "mesh":1868, + "name":"Line2396", + "scale":[ + 9.43338091019541e-05, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.108102798461914, + 4.43676233291626, + -4.347696781158447 + ] + }, + { + "mesh":1869, + "name":"pasted__pasted__pCylinder632", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.39253044128418, + 4.65749979019165, + 3.95070743560791 + ] + }, + { + "mesh":1870, + "name":"pasted__pasted__pasted__pCube417", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9309463500976562, + 0.7724686861038208, + -7.21656608581543 + ] + }, + { + "mesh":1871, + "name":"Object2235", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.487833023071289, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1872, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube448", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.92730712890625, + 1.409645915031433, + 3.562382936477661 + ] + }, + { + "mesh":1873, + "name":"Circle2082", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.632497787475586, + 1.444891333580017, + -5.459476947784424 + ] + }, + { + "mesh":1874, + "name":"Object1941", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.139096260070801, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1875, + "name":"pasted__pasted__pPipe14.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.30052375793457, + 2.5599560737609863, + -8.010781288146973 + ] + }, + { + "mesh":1876, + "name":"Obj3d66-647191-3-606", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.55536460876465, + 1.7478052377700806, + 18.37130355834961 + ] + }, + { + "mesh":1877, + "name":"pasted__pasted__pTorus3.006", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.61126708984375, + 5.048586368560791, + -4.345999240875244 + ] + }, + { + "mesh":1878, + "name":"Circle2906", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.098196029663086, + 1.6280208826065063, + 1.2132253646850586 + ] + }, + { + "mesh":1879, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube583", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 0.9979475736618042, + -2.6826233863830566 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube354", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":1880, + "name":"Circle2462", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.02610969543457, + 1.8588446378707886, + -2.923670530319214 + ] + }, + { + "mesh":1881, + "name":"Circle2769", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.007736206054688, + 2.0552382469177246, + 0.6277796030044556 + ] + }, + { + "mesh":1882, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface725", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.316991806030273, + 0.6212445497512817, + 14.877469062805176 + ] + }, + { + "mesh":1883, + "name":"pasted__pasted__pPipe14", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.781641006469727, + 2.5599560737609863, + -7.819052219390869 + ] + }, + { + "mesh":1884, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder2", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + -4.722101211547852 + ] + }, + { + "mesh":1885, + "name":"Rectangle1149", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0811824798584, + 0.0907975435256958, + 14.191482543945312 + ] + }, + { + "mesh":1886, + "name":"pasted__pasted__pTorus8", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.5220947265625, + 5.01207160949707, + -5.6797285079956055 + ] + }, + { + "mesh":1887, + "name":"Circle1542", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8517988920211792, + -4.767463207244873 + ] + }, + { + "mesh":1888, + "name":"Circle2467", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.044485092163086, + 1.8050354719161987, + -2.8928956985473633 + ] + }, + { + "mesh":1889, + "name":"Circle1804", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.07246971130371, + 1.7041248083114624, + -4.831787109375 + ] + }, + { + "mesh":1890, + "name":"Rectangle942", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -9.494046211242676 + ] + }, + { + "mesh":1891, + "name":"pasted__pasted__pCylinder10.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.908235549926758, + 2.192540168762207, + -5.591787338256836 + ] + }, + { + "mesh":1892, + "name":"Rectangle1442", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384544610977173, + 6.5988969802856445 + ] + }, + { + "mesh":1893, + "name":"pasted__pasted__pCube531", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.635766983032227, + 3.3086066246032715, + -7.507594585418701 + ] + }, + { + "mesh":1894, + "name":"Object2278", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.427360534667969, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1895, + "name":"Circle1976", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.7411259412765503, + -5.459476947784424 + ] + }, + { + "mesh":1896, + "name":"Object2603", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.89137840270996, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group143", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 5.934509754180908 + ] + }, + { + "mesh":1897, + "name":"Circle3202", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0628604888916, + 1.7512258291244507, + 3.038111448287964 + ] + }, + { + "mesh":1898, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pasted__pasted__pasted__polySurface561", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.068794250488281, + 0.6940618753433228, + 3.453439235687256 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube487", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":1899, + "name":"Circle2377", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9413498640060425, + -2.9634478092193604 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube380", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 4.803884506225586 + ] + }, + { + "mesh":1900, + "name":"pasted__pasted__pCube539", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.640047073364258, + 3.574185371398926, + -7.522860050201416 + ] + }, + { + "mesh":1901, + "name":"pasted__pasted__pCylinder587", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.063417434692383, + 4.930069446563721, + 1.7256412506103516 + ] + }, + { + "mesh":1902, + "name":"Object2492", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80840492248535, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1903, + "name":"pasted__pasted__pasted__pasted__pCylinder800", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414154052734375, + 1.079692006111145, + 13.938965797424316 + ] + }, + { + "mesh":1904, + "name":"Object085", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.751163482666016, + 0.14451873302459717, + 5.575301647186279 + ] + }, + { + "mesh":1905, + "name":"pasted__pasted__pCube397.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939353942871094, + 5.073940753936768, + -3.933955430984497 + ] + }, + { + "mesh":1906, + "name":"Rectangle443.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 11.619258880615234, + 0.8501437902450562, + 1.9282177686691284 + ] + }, + { + "mesh":1907, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder1", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.39808464050293, + 2.0703248977661133, + -4.339083194732666 + ] + }, + { + "mesh":1908, + "name":"polySurface346", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.33547592163086, + 1.443468689918518, + 13.79013442993164 + ] + }, + { + "mesh":1909, + "name":"Object2097", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.0927842855453491, + 16.99413299560547 + ] + }, + { + "mesh":1910, + "name":"Circle2835", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.055511474609375, + 1.7727497816085815, + -0.018154345452785492 + ] + }, + { + "mesh":1911, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube269", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 0.3764752149581909, + 0.3720691204071045 + ] + }, + { + "mesh":1912, + "name":"Circle2068", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.975544810295105, + -6.211024284362793 + ] + }, + { + "mesh":1913, + "name":"Object2430", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.89559555053711, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1914, + "name":"Circle2488", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.124176025390625, + 1.5716794729232788, + -2.7594332695007324 + ] + }, + { + "mesh":1915, + "name":"Object2651", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.823875427246094, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1916, + "name":"Obj3d66-647191-22-659", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.352877616882324, + 1.6631056070327759, + -15.548868179321289 + ] + }, + { + "mesh":1917, + "name":"Obj3d66-647191-14-943", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567289352416992, + 1.672275424003601, + 18.3248233795166 + ] + }, + { + "mesh":1918, + "name":"Circle3232", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15263557434082, + 1.49055016040802, + 3.1884779930114746 + ] + }, + { + "mesh":1919, + "name":"Circle2580", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7730516195297241, + 1.2762672901153564 + ] + }, + { + "mesh":1920, + "name":"Object1795", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.1109386682510376, + 16.99413299560547 + ] + }, + { + "mesh":1921, + "name":"Line2425", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.578596115112305, + 2.3489279747009277, + -5.4626922607421875 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube566", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":1922, + "name":"pasted__pasted__pCube793", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + 5.74781608581543 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface707", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -3.557638645172119 + ] + }, + { + "mesh":1923, + "name":"Circle1658", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.285993576049805, + 1.444670557975769, + -5.460318088531494 + ] + }, + { + "mesh":1924, + "name":"Circle1567", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.964295744895935, + -4.704082012176514 + ] + }, + { + "mesh":1925, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube317", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + 5.655158042907715 + ] + }, + { + "mesh":1926, + "name":"pasted__pasted__pasted__pCylinder174", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.355897903442383, + 0.5030606985092163, + 16.585969924926758 + ] + }, + { + "mesh":1927, + "name":"pasted__pasted__pasted__pCylinder688", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.01236915588379, + 0.5030606985092163, + 12.94787883758545 + ] + }, + { + "mesh":1928, + "name":"Object2250", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.466737747192383, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1929, + "name":"pasted__pasted__pasted__pCylinder748", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9350061416625977, + 1.1916998624801636, + 4.897302627563477 + ] + }, + { + "mesh":1930, + "name":"Obj3d66-647191-26-552", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.59125328063965, + 1.670127511024475, + 5.562841892242432 + ] + }, + { + "mesh":1931, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube272", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.378658294677734, + 0.37188422679901123, + 0.06021873652935028 + ] + }, + { + "mesh":1932, + "name":"Circle2213", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7505520582199097, + -1.5926856994628906 + ] + }, + { + "mesh":1933, + "name":"Circle1971", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8045071363449097, + -5.459476947784424 + ] + }, + { + "mesh":1934, + "name":"Object2648", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.828092575073242, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1935, + "name":"Circle1685", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.048160552978516, + 1.9200557470321655, + -5.460317134857178 + ] + }, + { + "mesh":1936, + "name":"Object2615", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8745059967041, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1937, + "name":"pasted__pasted__extrudedSurface023", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.46480941772461, + -1.5230656862258911, + 6.249040126800537 + ] + }, + { + "mesh":1938, + "name":"Object1996", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.061748504638672, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1939, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube344", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 0.3764752149581909, + 4.492324352264404 + ] + }, + { + "mesh":1940, + "name":"pasted__pasted__pCylinder575", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.070056915283203, + 5.058504581451416, + 0.17779889702796936 + ] + }, + { + "mesh":1941, + "name":"pasted__pasted__pCube398.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.554912567138672, + 5.052017688751221, + -4.97680139541626 + ] + }, + { + "mesh":1942, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder5", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + -5.602108478546143 + ] + }, + { + "mesh":1943, + "name":"Sphere034", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.112104415893555, + 1.331692099571228, + -5.8714799880981445 + ] + }, + { + "mesh":1944, + "name":"Object2536", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.86606216430664, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1945, + "name":"pasted__pasted__pasted__pPlane295", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.099143981933594, + 0.3886605501174927, + 14.480447769165039 + ] + }, + { + "mesh":1946, + "name":"Circle3293", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.687036514282227, + 0.19340407848358154, + 3.677396059036255 + ] + }, + { + "mesh":1947, + "name":"pasted__pasted__pasted__pCylinder177", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.513994216918945, + 0.5030606985092163, + 16.585969924926758 + ] + }, + { + "mesh":1948, + "name":"pasted__pasted__pCylinder482", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.186412811279297, + 3.133455753326416, + 5.781678199768066 + ] + }, + { + "mesh":1949, + "name":"Rectangle369.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + 12.210987091064453 + ] + }, + { + "mesh":1950, + "name":"Object2109", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.0383204221725464, + 16.99413299560547 + ] + }, + { + "mesh":1951, + "name":"pasted__pasted__pasted__pasted__pCylinder838", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.492883682250977, + 1.0796922445297241, + 15.849641799926758 + ] + }, + { + "mesh":1952, + "name":"pasted__pasted__pCube377", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.887022018432617, + 1.1269747018814087, + -3.2073099613189697 + ] + }, + { + "mesh":1953, + "name":"Circle3261", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.06144142150879, + 1.7367414236068726, + 4.318730354309082 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube530", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":1954, + "name":"Rectangle435", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + 5.5406951904296875 + ] + }, + { + "mesh":1955, + "name":"pasted__pasted__pCylinder329.008", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.811460494995117, + 4.930069446563721, + -7.023035526275635 + ] + }, + { + "mesh":1956, + "name":"Circle2817", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.98200798034668, + 1.98798668384552, + -0.14125415682792664 + ] + }, + { + "mesh":1957, + "name":"Circle3124", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.970985412597656, + 2.1781320571899414, + 3.6717348098754883 + ] + }, + { + "mesh":1958, + "name":"Circle2451", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.978334426879883, + 1.9987479448318481, + -3.003685712814331 + ] + }, + { + "mesh":1959, + "name":"Circle2470", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.055511474609375, + 1.7727497816085815, + -2.8744306564331055 + ] + }, + { + "mesh":1960, + "name":"pasted__pasted__pasted__pCylinder445", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9305353164672852, + 0.7768594026565552, + -7.510074615478516 + ] + }, + { + "mesh":1961, + "name":"pasted__pasted__pasted__pPlane276", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.566987991333008, + 0.38407886028289795, + 12.949873924255371 + ] + }, + { + "mesh":1962, + "name":"Object2672", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.794342041015625, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1963, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube364", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.840343475341797, + 1.2924860715866089, + 5.367334365844727 + ] + }, + { + "mesh":1964, + "name":"Rectangle1396", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 5.081486701965332 + ] + }, + { + "mesh":1965, + "name":"Circle3217", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.119661331176758, + 1.584893822669983, + 3.1332409381866455 + ] + }, + { + "mesh":1966, + "name":"Object1968", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.1011247634887695, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1967, + "name":"Rectangle818", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.8127765655517578, + 0.14451849460601807, + -1.9606925249099731 + ] + }, + { + "mesh":1968, + "name":"pasted__pasted__pasted__pCube172", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 0.9795023202896118, + 15.524377822875977 + ] + }, + { + "mesh":1969, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube353", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 1.3735631704330444, + 5.956920146942139 + ] + }, + { + "mesh":1970, + "name":"Rectangle187", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.120513916015625, + 0.2500876188278198, + -12.587183952331543 + ] + }, + { + "mesh":1971, + "name":"pasted__pasted__pCylinder343.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.4193058013916, + 5.058504581451416, + -5.69422721862793 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface593", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":1972, + "name":"Circle2712", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8513208627700806, + -0.05646645277738571 + ] + }, + { + "mesh":1973, + "name":"Circle2982", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1154088973999023, + 4.521490573883057 + ] + }, + { + "mesh":1974, + "name":"Object2191", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.43017578125, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":1975, + "name":"Circle1512", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8068004846572876, + -4.792815685272217 + ] + }, + { + "mesh":1976, + "name":"pasted__pasted__pCylinder735", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.995807647705078, + 5.305135250091553, + 5.458651065826416 + ] + }, + { + "mesh":1977, + "name":"Line2404", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.174509048461914, + 2.6870198249816895, + -6.584812641143799 + ] + }, + { + "mesh":1978, + "name":"Circle1764", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.236181259155273, + 1.3601590394973755, + -5.881545066833496 + ] + }, + { + "mesh":1979, + "name":"Circle2043", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.89679753780365, + -6.166658401489258 + ] + }, + { + "mesh":1980, + "name":"pasted__pasted__pCylinder18.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.98294448852539, + 2.398254871368408, + -6.289989948272705 + ] + }, + { + "mesh":1981, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube406", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9526090621948242, + 0.989587664604187, + -1.7224115133285522 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube552", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":1982, + "name":"pasted__pasted__pCylinder655", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.905208587646484, + 2.179356098175049, + 6.036311626434326 + ] + }, + { + "mesh":1983, + "name":"Circle1790", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.021020889282227, + 1.8563331365585327, + -4.745616912841797 + ] + }, + { + "mesh":1984, + "name":"Rectangle585", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.43239688873291, + 0.6124781370162964, + 15.577927589416504 + ] + }, + { + "mesh":1985, + "name":"Circle3273", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10554313659668, + 1.6062771081924438, + 4.244870185852051 + ] + }, + { + "mesh":1986, + "name":"pasted__pasted__pPipe054", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.465848922729492, + -0.4148823022842407, + 6.7562360763549805 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube598", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":1987, + "name":"Object2011", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.160192489624023, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":1988, + "name":"Rectangle1107", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.820917129516602, + 0.14451777935028076, + 16.81107521057129 + ] + }, + { + "mesh":1989, + "name":"Circle1632", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84649085998535, + 1.374463438987732, + -5.872320652008057 + ] + }, + { + "mesh":1990, + "name":"Sphere027", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8063907623291, + 1.2992044687271118, + -5.872320652008057 + ] + }, + { + "mesh":1991, + "name":"Rectangle447", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + 18.335474014282227 + ] + }, + { + "mesh":1992, + "name":"pasted__pasted__pasted__pCylinder458", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9271001815795898, + 0.7768594026565552, + -7.2945451736450195 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube619", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":1993, + "name":"Circle2044", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8855475187301636, + -6.160321235656738 + ] + }, + { + "mesh":1994, + "name":"Object2234", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.489236831665039, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1995, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube447", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.877500534057617, + 1.4054874181747437, + 3.4466612339019775 + ] + }, + { + "mesh":1996, + "name":"Circle2081", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.81686782836914, + 1.388815999031067, + -5.459476947784424 + ] + }, + { + "mesh":1997, + "name":"Object1940", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.140501022338867, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":1998, + "name":"pasted__pasted__pPipe13.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.31870460510254, + 2.774721622467041, + -8.010781288146973 + ] + }, + { + "mesh":1999, + "name":"Obj3d66-647191-5-149", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.55536460876465, + 1.726946234703064, + 18.459503173828125 + ] + }, + { + "mesh":2000, + "name":"Circle2437", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.13319969177246, + 1.6356881856918335, + -2.22849702835083 + ] + }, + { + "mesh":2001, + "name":"Obj3d66-647191-15-310", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4521961212158203, + 1.6626402139663696, + 12.174750328063965 + ] + }, + { + "mesh":2002, + "name":"Circle2687", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3985601663589478, + 0.6720567345619202 + ] + }, + { + "mesh":2003, + "name":"pasted__pasted__pPipe13", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.799819946289062, + 2.774721622467041, + -7.819052219390869 + ] + }, + { + "mesh":2004, + "name":"Object2203", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.413299560546875, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2005, + "name":"Circle1541", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9080475568771362, + -4.735773086547852 + ] + }, + { + "mesh":2006, + "name":"Object2054", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.099720001220703, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube177", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":2007, + "name":"Circle1956", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.984031677246094, + 1.118975043296814, + -5.148332595825195 + ] + }, + { + "mesh":2008, + "name":"pasted__pasted__pCube707", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.411561965942383, + 5.280849933624268, + 2.4274799823760986 + ] + }, + { + "mesh":2009, + "name":"pasted__pasted__pPipe117", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.159643173217773, + 2.5653624534606934, + 3.1459367275238037 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube200", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -3.557638645172119 + ] + }, + { + "mesh":2010, + "name":"pasted__pasted__pCylinder515", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.872058868408203, + 2.0814852714538574, + 0.08851037919521332 + ] + }, + { + "mesh":2011, + "name":"Circle1839", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.918106079101562, + 1.9341777563095093, + -4.710193157196045 + ] + }, + { + "mesh":2012, + "name":"Circle2123", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.820295333862305, + 1.7476886510849, + -5.459476947784424 + ] + }, + { + "mesh":2013, + "name":"Object2277", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.428768157958984, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2014, + "name":"Obj3d66-647191-22-678", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8921566009521484, + 1.3093692064285278, + -8.65088939666748 + ] + }, + { + "mesh":2015, + "name":"Object2602", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.89278221130371, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2016, + "name":"pasted__pasted__pTorus033", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.164159774780273, + 3.341920852661133, + 6.607267379760742 + ] + }, + { + "mesh":2017, + "name":"Object1837", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.1658172607421875, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube486", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":2018, + "name":"Circle2376", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9526039361953735, + -2.9697859287261963 + ] + }, + { + "mesh":2019, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface790", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9352035522460938, + 0.9035264253616333, + 5.275137901306152 + ] + }, + { + "mesh":2020, + "name":"pasted__pasted__pCube538", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.075841903686523, + 3.574185371398926, + -7.522860050201416 + ] + }, + { + "mesh":2021, + "name":"pasted__pasted__pTorus045", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.418676376342773, + 5.01207160949707, + 1.7400089502334595 + ] + }, + { + "mesh":2022, + "name":"pasted__pasted__pasted__pasted__pCylinder799", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231466293334961, + 1.079692006111145, + 13.938788414001465 + ] + }, + { + "mesh":2023, + "name":"Rectangle537", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 1.280674934387207, + 0.5944722890853882, + -16.603008270263672 + ] + }, + { + "mesh":2024, + "name":"pasted__pasted__pCube396.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + -4.235036849975586 + ] + }, + { + "mesh":2025, + "name":"Arc007", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 11.612401962280273, + 0.8866173028945923, + 1.9282177686691284 + ] + }, + { + "mesh":2026, + "name":"polySurface344", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.008813858032227, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":2027, + "name":"Circle3141", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03346061706543, + 1.9692128896713257, + 3.6717348098754883 + ] + }, + { + "mesh":2028, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube56", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.403501510620117, + 1.4892536401748657, + -4.587955474853516 + ] + }, + { + "mesh":2029, + "name":"pasted__pasted__pCylinder638", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.289690017700195, + 4.853360652923584, + 4.843533039093018 + ] + }, + { + "mesh":2030, + "name":"pasted__pasted__pasted__pasted__pPipe085", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.698280334472656, + 1.2212475538253784, + 13.799349784851074 + ] + }, + { + "mesh":2031, + "name":"Circle3245", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0136661529541, + 1.8780771493911743, + 4.398745536804199 + ] + }, + { + "mesh":2032, + "name":"pasted__pasted__pasted__pPlane298", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.099143981933594, + 0.3886607885360718, + 16.266347885131836 + ] + }, + { + "mesh":2033, + "name":"Object2184", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.440017700195312, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2034, + "name":"Object2429", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.897003173828125, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2035, + "name":"Obj3d66-647191-13-203", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.568323135375977, + 1.6729644536972046, + 18.3248233795166 + ] + }, + { + "mesh":2036, + "name":"pasted__pasted__pasted__pasted__pCylinder863", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.6024112701416, + 0.28987395763397217, + 14.968205451965332 + ] + }, + { + "mesh":2037, + "name":"Circle2579", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7393025159835815, + 1.2572529315948486 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface711", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -3.557638645172119 + ] + }, + { + "mesh":2038, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube544", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.254796981811523, + 1.517708420753479, + 5.287255764007568 + ] + }, + { + "mesh":2039, + "name":"Line2423", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.132911682128906, + 2.1919708251953125, + -6.288964748382568 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube360", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -3.557638645172119 + ] + }, + { + "mesh":2040, + "name":"Circle1513", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.481918454170227, + -5.460318088531494 + ] + }, + { + "mesh":2041, + "name":"Circle1657", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.101621627807617, + 1.3890365362167358, + -5.460318088531494 + ] + }, + { + "mesh":2042, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface534", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9645328521728516, + 1.3311516046524048, + 12.764594078063965 + ] + }, + { + "mesh":2043, + "name":"Circle1566", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9755452871322632, + -4.697743892669678 + ] + }, + { + "mesh":2044, + "name":"pasted__pasted__pCylinder8", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887872695922852, + 2.124401092529297, + -4.939923286437988 + ] + }, + { + "mesh":2045, + "name":"Obj3d66-647191-15-306", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.981172561645508, + 1.6626402139663696, + -15.603754043579102 + ] + }, + { + "mesh":2046, + "name":"pasted__pasted__pasted__pCylinder173", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.355897903442383, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":2047, + "name":"Object2579", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80559539794922, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2048, + "name":"Object2249", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.468145370483398, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2049, + "name":"Obj3d66-647191-25-183", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.55632781982422, + 1.664944052696228, + 5.561004638671875 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube555", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":2050, + "name":"Object1955", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.119411468505859, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2051, + "name":"Object2647", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.829500198364258, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2052, + "name":"Object2614", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.87590789794922, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2053, + "name":"pasted__pasted__pPipe049", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.465848922729492, + -0.6306344270706177, + 6.1964921951293945 + ] + }, + { + "mesh":2054, + "name":"Object1995", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.0631561279296875, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2055, + "name":"Circle2484", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.106962203979492, + 1.6220840215682983, + -2.7882611751556396 + ] + }, + { + "mesh":2056, + "name":"pasted__pasted__pCube641", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.980840682983398, + 5.0152716636657715, + 2.5004003047943115 + ] + }, + { + "mesh":2057, + "name":"Circle2873", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.998964309692383, + 1.9215654134750366, + 1.3794101476669312 + ] + }, + { + "mesh":2058, + "name":"Circle2526", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.043067932128906, + 1.7911008596420288, + -1.5507261753082275 + ] + }, + { + "mesh":2059, + "name":"Circle1815", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.113731384277344, + 1.582055687904358, + -4.9008941650390625 + ] + }, + { + "mesh":2060, + "name":"Rectangle938", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.687047958374023, + 0.11240279674530029, + 3.677396059036255 + ] + }, + { + "mesh":2061, + "name":"pasted__pasted__pasted__pCylinder176", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.513994216918945, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "mesh":2062, + "name":"Rectangle368.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + 13.588107109069824 + ] + }, + { + "mesh":2063, + "name":"Object2108", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.0428589582443237, + 16.99413299560547 + ] + }, + { + "mesh":2064, + "name":"pasted__pasted__pasted__pasted__pCylinder837", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414154052734375, + 1.0796922445297241, + 15.99779224395752 + ] + }, + { + "mesh":2065, + "name":"pasted__pasted__pCube376", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.034181594848633, + 1.1083353757858276, + -3.1997342109680176 + ] + }, + { + "mesh":2066, + "name":"Circle3260", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.057769775390625, + 1.7476130723953247, + 4.324885368347168 + ] + }, + { + "mesh":2067, + "name":"Rectangle394", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.894689559936523, + 0.14451754093170166, + -16.603012084960938 + ] + }, + { + "mesh":2068, + "name":"Rectangle564", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.1959285736083984, + 0.26499664783477783, + 13.961438179016113 + ] + }, + { + "mesh":2069, + "name":"Circle2649", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7128852605819702, + 0.6277795433998108 + ] + }, + { + "mesh":2070, + "name":"Rectangle434", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + 6.917813301086426 + ] + }, + { + "mesh":2071, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube440", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.92593765258789, + 1.4366048574447632, + -1.9447942972183228 + ] + }, + { + "mesh":2072, + "name":"Circle2450", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.974660873413086, + 2.009509563446045, + -3.009840726852417 + ] + }, + { + "mesh":2073, + "name":"Object2605", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.888565063476562, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2074, + "name":"pasted__pasted__pasted__pCylinder616", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.069101333618164, + 0.503059983253479, + 12.947877883911133 + ] + }, + { + "mesh":2075, + "name":"Circle2385", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.05963897705078, + 1.4875630140304565, + -2.228497266769409 + ] + }, + { + "mesh":2076, + "name":"Rectangle1395", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451777935028076, + 7.239199638366699 + ] + }, + { + "mesh":2077, + "name":"Circle3216", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.115150451660156, + 1.598108172416687, + 3.125683307647705 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube330", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.700583457946777 + ] + }, + { + "mesh":2078, + "name":"Object1967", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.102532386779785, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2079, + "name":"pasted__pasted__pCylinder17.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.971542358398438, + 2.38688325881958, + -5.591787338256836 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube649", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube603", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":2080, + "name":"pasted__pasted__pasted__pCube171", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 1.2411547899246216, + 15.524377822875977 + ] + }, + { + "mesh":2081, + "name":"Circle3154", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08123779296875, + 1.809451699256897, + 3.6717348098754883 + ] + }, + { + "mesh":2082, + "name":"pasted__pasted__pCylinder650", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.861871719360352, + 2.0419702529907227, + 6.012573719024658 + ] + }, + { + "mesh":2083, + "name":"Text018", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.053867340087891, + 1.55398428440094, + 3.036984920501709 + ] + }, + { + "mesh":2084, + "name":"pasted__pasted__pasted__pasted__polySurface372", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.322957992553711, + 0.2514399290084839, + 13.790817260742188 + ] + }, + { + "mesh":2085, + "name":"Object2190", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.43157958984375, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2086, + "name":"Object2515", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.89559555053711, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2087, + "name":"pasted__pasted__pCube735", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.35550880432129, + 5.064015865325928, + 0.6159349679946899 + ] + }, + { + "mesh":2088, + "name":"Circle1763", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.285993576049805, + 1.383501648902893, + -5.8892011642456055 + ] + }, + { + "mesh":2089, + "name":"pasted__pasted__pCube385.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.499723434448242, + 5.0152716636657715, + -3.3716249465942383 + ] + }, + { + "mesh":2090, + "name":"Rectangle1297", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -0.8613712191581726 + ] + }, + { + "mesh":2091, + "name":"Circle2042", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.908046841621399, + -6.17299747467041 + ] + }, + { + "mesh":2092, + "name":"pasted__pasted__pCylinder17.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.973764419555664, + 2.370926856994629, + -6.285335063934326 + ] + }, + { + "mesh":2093, + "name":"Circle3098", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.042632579803467, + 2.8797409534454346 + ] + }, + { + "mesh":2094, + "name":"Rectangle429", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + -4.076176643371582 + ] + }, + { + "mesh":2095, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube405", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9486875534057617, + 1.3867679834365845, + -1.7703722715377808 + ] + }, + { + "mesh":2096, + "name":"Circle2395", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.974660873413086, + 2.1658430099487305, + -2.22849702835083 + ] + }, + { + "mesh":2097, + "name":"pasted__pasted__pasted__pCube175", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 1.399283766746521, + 14.92426586151123 + ] + }, + { + "mesh":2098, + "name":"Object2416", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.860321044921875, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":2099, + "name":"Circle3272", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.101869583129883, + 1.6171492338180542, + 4.2510247230529785 + ] + }, + { + "mesh":2100, + "name":"pasted__pasted__pasted__pCylinder687", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.01236915588379, + 1.2660449743270874, + 12.94787883758545 + ] + }, + { + "mesh":2101, + "name":"Object2010", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.161600112915039, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2102, + "name":"pasted__pasted__pCube786", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.980840682983398, + 5.0152716636657715, + 3.1466598510742188 + ] + }, + { + "mesh":2103, + "name":"Circle1556", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.4387444257736206, + -5.940979480743408 + ] + }, + { + "mesh":2104, + "name":"Rectangle446", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.5164451599121094, + 0.3215755224227905, + -9.4685640335083 + ] + }, + { + "mesh":2105, + "name":"pasted__pasted__pTorus050", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.418676376342773, + 5.01207160949707, + 3.952437162399292 + ] + }, + { + "mesh":2106, + "name":"pasted__pasted__pasted__pCylinder457", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9281158447265625, + 0.7768594026565552, + -7.136462211608887 + ] + }, + { + "mesh":2107, + "name":"Rectangle1048", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.096482276916504, + 0.5665737390518188, + 16.649982452392578 + ] + }, + { + "mesh":2108, + "name":"Object2233", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.490644454956055, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2109, + "name":"Rectangle218", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8965835571289062, + 0.6844395399093628, + -13.036763191223145 + ] + }, + { + "mesh":2110, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube629", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 1.2274452447891235, + 3.260234832763672 + ] + }, + { + "mesh":2111, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder075", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.925460815429688, + 1.5153416395187378, + 3.211662530899048 + ] + }, + { + "mesh":2112, + "name":"Circle2080", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.767065048217773, + 1.391907811164856, + -5.459476947784424 + ] + }, + { + "mesh":2113, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube063", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137231826782227, + 0.6166743040084839, + 5.571026802062988 + ] + }, + { + "mesh":2114, + "name":"Object1939", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.141911506652832, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2115, + "name":"Circle2737", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.997618556022644, + -0.13886189460754395 + ] + }, + { + "mesh":2116, + "name":"pasted__pasted__pCube373.006", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.477102279663086, + 2.577449321746826, + -8.006284713745117 + ] + }, + { + "mesh":2117, + "name":"Obj3d66-647191-37-423", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.981449127197266, + 1.6739360094070435, + 18.324813842773438 + ] + }, + { + "mesh":2118, + "name":"Circle1767", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.418618083000183, + -5.792024612426758 + ] + }, + { + "mesh":2119, + "name":"Object2620", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.86747169494629, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2120, + "name":"Object2494", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80559539794922, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2121, + "name":"pasted__pasted__pCube373.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.958223342895508, + 2.577449321746826, + -7.814567565917969 + ] + }, + { + "mesh":2122, + "name":"Object1868", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.122220993041992, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2123, + "name":"Object2202", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.414705276489258, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2124, + "name":"Circle1540", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.896797776222229, + -4.7421112060546875 + ] + }, + { + "mesh":2125, + "name":"Object2053", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.1011247634887695, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2126, + "name":"Circle2992", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.517868041992188, + 1.1369620561599731, + 3.6717348098754883 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube440", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":2127, + "name":"Circle2829", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03346061706543, + 1.8373209238052368, + -0.055084310472011566 + ] + }, + { + "mesh":2128, + "name":"Circle1482", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7538021802902222, + -5.460317134857178 + ] + }, + { + "mesh":2129, + "name":"Circle2370", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.020125389099121, + -3.007814884185791 + ] + }, + { + "mesh":2130, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface528", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6865177154541016, + 1.1310111284255981, + 13.954267501831055 + ] + }, + { + "mesh":2131, + "name":"pasted__pasted__pCylinder11", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.913873672485352, + 2.2068328857421875, + -4.925692081451416 + ] + }, + { + "mesh":2132, + "name":"Rectangle941", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -8.643484115600586 + ] + }, + { + "mesh":2133, + "name":"Object1872", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.116595268249512, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2134, + "name":"pasted__pasted__pCube520", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.634368896484375, + 1.0691884756088257, + -7.4981689453125 + ] + }, + { + "mesh":2135, + "name":"Object2276", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.43017578125, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2136, + "name":"Object2131", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.514554977416992, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2137, + "name":"Circle2947", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7955507040023804, + 4.3328986167907715 + ] + }, + { + "mesh":2138, + "name":"Object2601", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.894187927246094, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors138", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":2139, + "name":"Circle2375", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9638575315475464, + -2.9761242866516113 + ] + }, + { + "mesh":2140, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface789", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9352035522460938, + 1.266680121421814, + 5.275137901306152 + ] + }, + { + "mesh":2141, + "name":"pasted__pasted__pCube537", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.504825592041016, + 3.574185371398926, + -7.522860050201416 + ] + }, + { + "mesh":2142, + "name":"pasted__pasted__pTorus040", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.507844924926758, + 5.048587322235107, + 1.7400192022323608 + ] + }, + { + "mesh":2143, + "name":"Circle1654", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.2966750860214233, + -5.821290493011475 + ] + }, + { + "mesh":2144, + "name":"pasted__pasted__pasted__pasted__pCylinder798", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.153039932250977, + 1.0796922445297241, + 13.790817260742188 + ] + }, + { + "mesh":2145, + "name":"Rectangle534", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 1.4067163467407227, + 0.5944722890853882, + -16.603008270263672 + ] + }, + { + "mesh":2146, + "name":"Rectangle411", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 6.449522018432617, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":2147, + "name":"pasted__pasted__pCube395.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + -3.70127534866333 + ] + }, + { + "mesh":2148, + "name":"pasted__pasted__pCube698", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.390499114990234, + 1.082088828086853, + -0.740260899066925 + ] + }, + { + "mesh":2149, + "name":"Rectangle442.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 11.619258880615234, + 1.2100437879562378, + 4.635395526885986 + ] + }, + { + "mesh":2150, + "name":"polySurface343", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.025794982910156, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":2151, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube7", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.409494400024414, + 1.1991132497787476, + -4.438207149505615 + ] + }, + { + "mesh":2152, + "name":"Object2570", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.81825065612793, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2153, + "name":"pasted__pasted__pasted__pasted__pCylinder860", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.602706909179688, + 1.079692006111145, + 13.642666816711426 + ] + }, + { + "mesh":2154, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube267", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 0.3764752149581909, + 0.9587724208831787 + ] + }, + { + "mesh":2155, + "name":"Object2428", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.898408889770508, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2156, + "name":"Obj3d66-647191-12-222", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.568323135375977, + 1.6637946367263794, + 18.3248233795166 + ] + }, + { + "mesh":2157, + "name":"pasted__pasted__pasted__pasted__pCylinder862", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.52398109436035, + 0.28987395763397217, + 14.820230484008789 + ] + }, + { + "mesh":2158, + "name":"Circle2578", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7505520582199097, + 1.2635910511016846 + ] + }, + { + "mesh":2159, + "name":"Line2405", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.923032760620117, + 3.1455912590026855, + -0.5060492753982544 + ] + }, + { + "mesh":2160, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube366", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + -6.159178256988525 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube575", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":2161, + "name":"pasted__pasted__pCylinder1.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.826955795288086, + 1.9337071180343628, + -6.210808277130127 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube359", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -3.557638645172119 + ] + }, + { + "mesh":2162, + "name":"Line2411", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.687042236328125, + 0.19340407848358154, + -5.454657077789307 + ] + }, + { + "mesh":2163, + "name":"Circle3066", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6487559080123901, + 3.1015748977661133 + ] + }, + { + "mesh":2164, + "name":"Circle1656", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15157699584961, + 1.3922072649002075, + -5.460318088531494 + ] + }, + { + "mesh":2165, + "name":"pasted__pasted__pCylinder584", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.68257713317871, + 4.837941646575928, + 0.8069932460784912 + ] + }, + { + "mesh":2166, + "name":"Circle2819", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.989358901977539, + 1.96646249294281, + -0.12894418835639954 + ] + }, + { + "mesh":2167, + "name":"Circle1565", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9867950677871704, + -4.691405773162842 + ] + }, + { + "mesh":2168, + "name":"Object082", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.21303939819336, + -0.15302824974060059, + -5.486439228057861 + ] + }, + { + "mesh":2169, + "name":"Circle2013", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9312690496444702, + -5.459476947784424 + ] + }, + { + "mesh":2170, + "name":"Object1946", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.132068634033203, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2171, + "name":"pasted__pasted__pasted__pCylinder172", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.355897903442383, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "mesh":2172, + "name":"Obj3d66-647191-24-583", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.55632781982422, + 1.658399224281311, + 5.557351112365723 + ] + }, + { + "mesh":2173, + "name":"Object1954", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.120815277099609, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2174, + "name":"Object2646", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.83090591430664, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2175, + "name":"Object2613", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.87731170654297, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2176, + "name":"Object113", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.467756271362305, + -1.5780738592147827, + 6.4882073402404785 + ] + }, + { + "mesh":2177, + "name":"Object1994", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.064563751220703, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2178, + "name":"pasted__pasted__pasted__pCube153", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.326154708862305, + 0.25255119800567627, + 12.952010154724121 + ] + }, + { + "mesh":2179, + "name":"Circle2973", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.964295744895935, + 4.427969932556152 + ] + }, + { + "mesh":2180, + "name":"Rectangle558", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.1190567016601562, + 0.17812669277191162, + 13.961438179016113 + ] + }, + { + "mesh":2181, + "name":"pasted__pasted__pasted__polySurface029", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6949710845947266, + 0.6836510896682739, + 16.030426025390625 + ] + }, + { + "mesh":2182, + "name":"pasted__pasted__pCube640", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.980836868286133, + 5.0152716636657715, + -2.139782428741455 + ] + }, + { + "mesh":2183, + "name":"Circle2020", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 1.4346307516098022, + -6.102473258972168 + ] + }, + { + "mesh":2184, + "name":"Line2447", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.687042236328125, + 0.19340407848358154, + 3.677396059036255 + ] + }, + { + "mesh":2185, + "name":"pasted__pasted__pasted__pCylinder175", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.513994216918945, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":2186, + "name":"Rectangle367.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + 14.965225219726562 + ] + }, + { + "mesh":2187, + "name":"Object2107", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.047397494316101, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube523", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":2188, + "name":"pasted__pasted__pCube402.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.458927154541016, + 5.064015865325928, + -6.083895683288574 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube382", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 4.803884506225586 + ] + }, + { + "mesh":2189, + "name":"Rectangle820", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.8127765655517578, + 0.14451849460601807, + -0.4534444808959961 + ] + }, + { + "mesh":2190, + "name":"Rectangle1313", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.095331192016602, + 1.4309507608413696, + -3.504661798477173 + ] + }, + { + "mesh":2191, + "name":"pasted__pasted__pPipe6", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.699180603027344, + 1.2917834520339966, + -3.1875362396240234 + ] + }, + { + "mesh":2192, + "name":"Circle3259", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.054094314575195, + 1.758485198020935, + 4.331040382385254 + ] + }, + { + "mesh":2193, + "name":"pasted__pasted__pCube609", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.61594009399414, + -0.5983297824859619, + 6.421236038208008 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube562", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":2194, + "name":"Circle2449", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.000385284423828, + 1.9341775178909302, + -2.9667561054229736 + ] + }, + { + "mesh":2195, + "name":"pasted__pasted__pasted__pCylinder615", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.069101333618164, + 1.2660447359085083, + 12.947877883911133 + ] + }, + { + "mesh":2196, + "name":"pasted__pasted__pasted__pasted__pCylinder482", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886205673217773, + 0.28987395763397217, + 15.9976167678833 + ] + }, + { + "mesh":2197, + "name":"Circle2384", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.2966750860214233, + -2.5894694328308105 + ] + }, + { + "mesh":2198, + "name":"Rectangle1394", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451777935028076, + 7.239199638366699 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube494", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":2199, + "name":"Circle2404", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.007736206054688, + 2.0552382469177246, + -2.22849702835083 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube194", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -9.601222038269043 + ] + }, + { + "mesh":2200, + "name":"pasted__pasted__pasted__pCube414", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 1.320726990699768, + -6.668007850646973 + ] + }, + { + "mesh":2201, + "name":"Object1966", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.103940010070801, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2202, + "name":"pasted__pasted__pasted__pCube170", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 1.399283766746521, + 15.524377822875977 + ] + }, + { + "mesh":2203, + "name":"Rectangle011", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.302309036254883, + 0.14451777935028076, + -2.7114193439483643 + ] + }, + { + "mesh":2204, + "name":"Object2458", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.85622215270996, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2205, + "name":"pasted__pasted__pCylinder724", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.673734664916992, + 4.840120792388916, + 6.810728549957275 + ] + }, + { + "mesh":2206, + "name":"Object2189", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.432985305786133, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2207, + "name":"Circle2027", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116270065307617, + 1.379219889640808, + -5.833398342132568 + ] + }, + { + "mesh":2208, + "name":"Object2514", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.897003173828125, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2209, + "name":"Rectangle1296", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451777935028076, + 1.2963411808013916 + ] + }, + { + "mesh":2210, + "name":"Circle2041", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8517986536026, + -6.141306400299072 + ] + }, + { + "mesh":2211, + "name":"pasted__pasted__pCylinder16.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.964591979980469, + 2.343601703643799, + -6.280683517456055 + ] + }, + { + "mesh":2212, + "name":"Circle2315", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9819740056991577, + -2.22849702835083 + ] + }, + { + "mesh":2213, + "name":"Circle2955", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.585366129875183, + 4.214479446411133 + ] + }, + { + "mesh":2214, + "name":"pasted__pasted__pasted__pCylinder659", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094711303710938, + 1.2660447359085083, + 15.344712257385254 + ] + }, + { + "mesh":2215, + "name":"Circle2608", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.964295744895935, + 1.3840150833129883 + ] + }, + { + "mesh":2216, + "name":"Circle1762", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.101621627807617, + 1.3522719144821167, + -5.860863208770752 + ] + }, + { + "mesh":2217, + "name":"Obj3d66-647191-29-935", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980937957763672, + 1.6631056070327759, + 18.3248291015625 + ] + }, + { + "mesh":2218, + "name":"Circle1622", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9312690496444702, + -5.460317134857178 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube550", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":2219, + "name":"pasted__pasted__pCylinder656", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.913873672485352, + 2.2068328857421875, + 6.041046142578125 + ] + }, + { + "mesh":2220, + "name":"Rectangle913", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.885108947753906, + 0.1124032735824585, + -5.453815937042236 + ] + }, + { + "mesh":2221, + "name":"Circle3271", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.098196029663086, + 1.6280208826065063, + 4.257180213928223 + ] + }, + { + "mesh":2222, + "name":"Object2009", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.163002014160156, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2223, + "name":"Circle1524", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.4346307516098022, + -6.114382743835449 + ] + }, + { + "mesh":2224, + "name":"Rectangle445", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + -8.230486869812012 + ] + }, + { + "mesh":2225, + "name":"pasted__pasted__pTorus049", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.507844924926758, + 5.048587322235107, + 3.9524476528167725 + ] + }, + { + "mesh":2226, + "name":"pasted__pasted__pasted__pCube416", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9547863006591797, + 1.0161930322647095, + -7.097455978393555 + ] + }, + { + "mesh":2227, + "name":"Circle2984", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3296104669570923, + 4.1781816482543945 + ] + }, + { + "mesh":2228, + "name":"pasted__pasted__pasted__pCylinder623", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.052242279052734, + 1.2660449743270874, + 12.947877883911133 + ] + }, + { + "mesh":2229, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pasted__pasted__pasted__polySurface558", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.068794250488281, + 0.6837166547775269, + 7.0950608253479 + ] + }, + { + "mesh":2230, + "name":"Object2232", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.492053985595703, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2231, + "name":"Circle1872", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.81520652770996, + 1.6328462362289429, + -4.882533550262451 + ] + }, + { + "mesh":2232, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube446", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.927738189697266, + 1.4446173906326294, + 3.2135071754455566 + ] + }, + { + "mesh":2233, + "name":"pasted__pasted__pCylinder725", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.293397903442383, + 4.937097072601318, + 6.810728549957275 + ] + }, + { + "mesh":2234, + "name":"Obj3d66-647191-34-813", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4612998962402344, + 1.6606823205947876, + 12.1477632522583 + ] + }, + { + "mesh":2235, + "name":"Circle2623", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.2971247434616089, + 0.9997551441192627 + ] + }, + { + "mesh":2236, + "name":"Rectangle1140", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.06903076171875, + 0.2190920114517212, + 16.649982452392578 + ] + }, + { + "mesh":2237, + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface599", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.643375396728516, + 0.6940606832504272, + 2.489243984222412 + ] + }, + { + "mesh":2238, + "name":"pasted__pasted__pCylinder646", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.827203750610352, + 1.9320610761642456, + 5.993607521057129 + ] + }, + { + "mesh":2239, + "name":"pasted__pasted__pCube374.006", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.490291595458984, + 2.7758541107177734, + -8.006284713745117 + ] + }, + { + "mesh":2240, + "name":"Obj3d66-647191-36-149", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.981449127197266, + 1.6647709608078003, + 18.324813842773438 + ] + }, + { + "mesh":2241, + "name":"Obj3d66-647191-11-079", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.543825149536133, + 1.6471415758132935, + -15.607314109802246 + ] + }, + { + "mesh":2242, + "name":"pasted__pasted__pCube374.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.971406936645508, + 2.7758541107177734, + -7.814566612243652 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface650", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.393779754638672 + ] + }, + { + "mesh":2243, + "name":"Object2201", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.416109085083008, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2244, + "name":"Circle2942", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7280527353286743, + 4.294870376586914 + ] + }, + { + "mesh":2245, + "name":"Circle1539", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8855479955673218, + -4.748448848724365 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube354", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -1.1389737129211426 + ] + }, + { + "mesh":2246, + "name":"Circle2813", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.004060745239258, + 1.9234155416488647, + -0.10432422906160355 + ] + }, + { + "mesh":2247, + "name":"pasted__pasted__pasted__pasted__polySurface373", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.322957992553711, + 0.6369913816452026, + 13.790817260742188 + ] + }, + { + "mesh":2248, + "name":"Circle2991", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.934459686279297, + 1.118975043296814, + 3.6717348098754883 + ] + }, + { + "mesh":2249, + "name":"Object1859", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.134876251220703, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2250, + "name":"Circle1893", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 1.4387449026107788, + -4.967790603637695 + ] + }, + { + "mesh":2251, + "name":"Rectangle949", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -6.9049553871154785 + ] + }, + { + "mesh":2252, + "name":"Rectangle1115", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.557981491088867, + 0.14451825618743896, + 16.87247085571289 + ] + }, + { + "mesh":2253, + "name":"Object2600", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.89559555053711, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door099", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -5.439333915710449 + ] + }, + { + "mesh":2254, + "name":"Circle2374", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9751108884811401, + -2.982462167739868 + ] + }, + { + "mesh":2255, + "name":"Object1870", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.119411468505859, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2256, + "name":"Circle2622", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.2372688055038452, + 0.9888047575950623 + ] + }, + { + "mesh":2257, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface788", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9315919876098633, + 0.6914502382278442, + 5.277849197387695 + ] + }, + { + "mesh":2258, + "name":"pasted__pasted__pCube536", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.97323226928711, + 3.574185371398926, + -7.522860050201416 + ] + }, + { + "mesh":2259, + "name":"Circle3166", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.128690719604492, + 1.6507774591445923, + 3.6717348098754883 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube172", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":2260, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder069", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + -0.7985920310020447 + ] + }, + { + "mesh":2261, + "name":"pasted__pasted__pCylinder590", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.481767654418945, + 4.853360652923584, + 1.7255994081497192 + ] + }, + { + "mesh":2262, + "name":"Obj3d66-647191-27-308", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567583084106445, + 1.6754931211471558, + -15.612478256225586 + ] + }, + { + "mesh":2263, + "name":"Circle2159", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.882774353027344, + 1.8128448724746704, + -6.138531684875488 + ] + }, + { + "mesh":2264, + "name":"Line2455", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.178186416625977, + 4.526463508605957, + 1.622315764427185 + ] + }, + { + "mesh":2265, + "name":"pasted__pasted__pasted__pasted__polySurface374", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.322957992553711, + 1.0412577390670776, + 13.790817260742188 + ] + }, + { + "mesh":2266, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube245", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 0.3764752149581909, + -5.594396591186523 + ] + }, + { + "mesh":2267, + "name":"Obj3d66-647191-11-094", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.004411697387695, + 1.6471415758132935, + 18.328392028808594 + ] + }, + { + "mesh":2268, + "name":"Rectangle529", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.132937431335449, + 0.14451777935028076, + -12.229392051696777 + ] + }, + { + "mesh":2269, + "name":"pasted__pasted__pCube394.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939353942871094, + 5.073940753936768, + -3.400181531906128 + ] + }, + { + "mesh":2270, + "name":"Rectangle441.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 11.619258880615234, + 0.8501437902450562, + 4.635395526885986 + ] + }, + { + "mesh":2271, + "name":"polySurface342", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.042778015136719, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":2272, + "name":"pasted__pasted__pasted__pasted__polySurface388", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.69390106201172, + 0.6369913816452026, + 15.849641799926758 + ] + }, + { + "mesh":2273, + "name":"Circle2291", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.86788809299469, + -2.22849702835083 + ] + }, + { + "mesh":2274, + "name":"Object2569", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.81965446472168, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2275, + "name":"pasted__pasted__pasted__pasted__pCylinder859", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785398483276367, + 1.079692006111145, + 13.642838478088379 + ] + }, + { + "mesh":2276, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder063", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + 0.958196222782135 + ] + }, + { + "mesh":2277, + "name":"Line2469", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8398380279541, + 1.0256141424179077, + 16.99216651916504 + ] + }, + { + "mesh":2278, + "name":"pasted__pasted__pCube725", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.354816436767578, + 5.073940753936768, + 3.6752066612243652 + ] + }, + { + "mesh":2279, + "name":"Obj3d66-647191-11-096", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.543825149536133, + 1.6471415758132935, + 18.328386306762695 + ] + }, + { + "mesh":2280, + "name":"pasted__pasted__pasted__pasted__polySurface384", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.69390106201172, + 0.251440167427063, + 14.820230484008789 + ] + }, + { + "mesh":2281, + "name":"Circle2577", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7280527353286743, + 1.2509148120880127 + ] + }, + { + "mesh":2282, + "name":"Circle3306", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.439908981323242, + 1.1410375833511353, + -5.688488960266113 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube531", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":2283, + "name":"pasted__pasted__pCube376.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.044599533081055, + 2.603695869445801, + -3.1997342109680176 + ] + }, + { + "mesh":2284, + "name":"Circle1801", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.06144142150879, + 1.7367414236068726, + -4.813321590423584 + ] + }, + { + "mesh":2285, + "name":"Circle1726", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.015085220336914, + 1.8911300897598267, + -6.173956394195557 + ] + }, + { + "mesh":2286, + "name":"Line2407", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.174423217773438, + 3.1455912590026855, + -0.5060492753982544 + ] + }, + { + "mesh":2287, + "name":"polySurface329", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.059755325317383, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":2288, + "name":"pasted__pasted__pCylinder485", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.173770904541016, + 3.1357784271240234, + 7.190370559692383 + ] + }, + { + "mesh":2289, + "name":"Object1897", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.081439018249512, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group131", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -3.557638645172119 + ] + }, + { + "mesh":2290, + "name":"Sphere028", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.19780158996582, + 1.3751152753829956, + -5.460318088531494 + ] + }, + { + "mesh":2291, + "name":"Circle1564", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9980443716049194, + -4.685067653656006 + ] + }, + { + "mesh":2292, + "name":"Rectangle339.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 10.281251907348633, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":2293, + "name":"Rectangle323", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + 5.130328178405762 + ] + }, + { + "mesh":2294, + "name":"pasted__pasted__pasted__pPlane101", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.653654098510742, + 0.38407909870147705, + 16.587963104248047 + ] + }, + { + "mesh":2295, + "name":"pasted__pasted__pCylinder664", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.98321533203125, + 2.4266486167907715, + 6.079002380371094 + ] + }, + { + "mesh":2296, + "name":"Obj3d66-647191-23-221", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.528425216674805, + 1.6626402139663696, + 5.563363075256348 + ] + }, + { + "mesh":2297, + "name":"Circle1832", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03337287902832, + 0.19340407848358154, + -5.454657077789307 + ] + }, + { + "mesh":2298, + "name":"Rectangle883", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.741353988647461, + 0.3068186044692993, + -5.176662921905518 + ] + }, + { + "mesh":2299, + "name":"Object2645", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.832311630249023, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2300, + "name":"Object2612", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.87872314453125, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2301, + "name":"pasted__pasted__pCube608", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.132665634155273, + 3.367274761199951, + 6.5160651206970215 + ] + }, + { + "mesh":2302, + "name":"Circle2193", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.724679946899414, + 1.3208786249160767, + -5.957198143005371 + ] + }, + { + "mesh":2303, + "name":"Object1993", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.0659685134887695, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2304, + "name":"Object2656", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.816843032836914, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2305, + "name":"Object1976", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.089874267578125, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2306, + "name":"Object2554", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84075164794922, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube398", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.285858154296875 + ] + }, + { + "mesh":2307, + "name":"Rectangle605", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.141898155212402, + 0.14451825618743896, + 14.846410751342773 + ] + }, + { + "mesh":2308, + "name":"pasted__pasted__pCube406.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + -7.026737689971924 + ] + }, + { + "mesh":2309, + "name":"Circle2019", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11112403869629, + 1.3328157663345337, + -5.459476947784424 + ] + }, + { + "mesh":2310, + "name":"Line2446", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.687036514282227, + 0.19340407848358154, + 3.677396059036255 + ] + }, + { + "mesh":2311, + "name":"Shape069", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 7.322399139404297, + 0.1063917875289917, + 13.821612358093262 + ] + }, + { + "mesh":2312, + "name":"pasted__pasted__pCube387", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + -7.4617390632629395 + ] + }, + { + "mesh":2313, + "name":"Rectangle1338", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + -1.3753150701522827 + ] + }, + { + "mesh":2314, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder203", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.31503677368164, + 1.507264256477356, + 12.767040252685547 + ] + }, + { + "mesh":2315, + "name":"Rectangle366", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + 16.34235191345215 + ] + }, + { + "mesh":2316, + "name":"Object2106", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457223892211914, + 1.0519362688064575, + 16.99413299560547 + ] + }, + { + "mesh":2317, + "name":"Rectangle338.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 11.658367156982422, + 0.14451754093170166, + 18.734651565551758 + ] + }, + { + "mesh":2318, + "name":"Circle3172", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.228336334228516, + 1.3416365385055542, + 3.6717348098754883 + ] + }, + { + "mesh":2319, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface516", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.600793838500977, + 0.6212445497512817, + 14.877469062805176 + ] + }, + { + "mesh":2320, + "name":"Sphere051", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8063907623291, + 1.2992044687271118, + 3.259732246398926 + ] + }, + { + "mesh":2321, + "name":"pasted__pasted__pasted__pPlane326", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.4700870513916, + 0.3886605501174927, + 13.838674545288086 + ] + }, + { + "mesh":2322, + "name":"pasted__pasted__pPipe5", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.680997848510742, + 1.0770174264907837, + -3.1875362396240234 + ] + }, + { + "mesh":2323, + "name":"Rectangle1160", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.191864013671875, + 0.14451777935028076, + 12.883796691894531 + ] + }, + { + "mesh":2324, + "name":"Circle2448", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.004060745239258, + 1.9234155416488647, + -2.9606006145477295 + ] + }, + { + "mesh":2325, + "name":"pasted__pasted__pasted__pCylinder614", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.069101333618164, + 0.9016937017440796, + 12.947877883911133 + ] + }, + { + "mesh":2326, + "name":"polySurface112", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.731483459472656, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":2327, + "name":"Circle3247", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.962213516235352, + 2.030285358428955, + 4.484914779663086 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors157", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":2328, + "name":"pasted__pasted__pasted__pCylinder719", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565818786621, + 1.2660447359085083, + 15.344712257385254 + ] + }, + { + "mesh":2329, + "name":"Circle2383", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.237268090248108, + -2.578497886657715 + ] + }, + { + "mesh":2330, + "name":"Rectangle1393", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 6.3617329597473145 + ] + }, + { + "mesh":2331, + "name":"pasted__pasted__pasted__pCube635", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 1.3207262754440308, + -1.083024501800537 + ] + }, + { + "mesh":2332, + "name":"Obj3d66-647191-36-151", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.56678581237793, + 1.6647709608078003, + 18.324810028076172 + ] + }, + { + "mesh":2333, + "name":"Circle3214", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.106962203979492, + 1.6220840215682983, + 3.111971139907837 + ] + }, + { + "mesh":2334, + "name":"pasted__pasted__pCylinder673", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.86301040649414, + 2.053720474243164, + 5.37495231628418 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface676", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -9.601222038269043 + ] + }, + { + "mesh":2335, + "name":"Object1965", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.105344772338867, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2336, + "name":"pasted__pasted__pasted__polySurface026", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6949710845947266, + 0.6836510896682739, + 15.073861122131348 + ] + }, + { + "mesh":2337, + "name":"pasted__pasted__pasted__pCube660", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9547863006591797, + 1.0161925554275513, + 6.184469223022461 + ] + }, + { + "mesh":2338, + "name":"Circle2096", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.919527053833008, + 2.0795631408691406, + -5.459476947784424 + ] + }, + { + "mesh":2339, + "name":"Object2188", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.434392929077148, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2340, + "name":"Object2513", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.898408889770508, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube482", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":2341, + "name":"polySurface326", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.110706329345703, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":2342, + "name":"pasted__pasted__pTorus7", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.5220947265625, + 5.01207160949707, + -7.01344633102417 + ] + }, + { + "mesh":2343, + "name":"Circle3190", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.01875877380371, + 1.8803683519363403, + 2.9642508029937744 + ] + }, + { + "mesh":2344, + "name":"Rectangle1295", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451777935028076, + 1.2963411808013916 + ] + }, + { + "mesh":2345, + "name":"Circle2040", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.6129924058914185, + -6.0067620277404785 + ] + }, + { + "mesh":2346, + "name":"Circle2314", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9946502447128296, + -2.22849702835083 + ] + }, + { + "mesh":2347, + "name":"Object1958", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.115190505981445, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2348, + "name":"Obj3d66-647191-1-661", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3525896072387695, + 1.670127511024475, + -15.541024208068848 + ] + }, + { + "mesh":2349, + "name":"Circle2092", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.93422508239746, + 2.128730297088623, + -5.459476947784424 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube549", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":2350, + "name":"pasted__pasted__pCylinder657", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.922542572021484, + 2.2343087196350098, + 6.0457940101623535 + ] + }, + { + "mesh":2351, + "name":"Circle1608", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.108736515045166, + -5.460317134857178 + ] + }, + { + "mesh":2352, + "name":"Object2157", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.477987289428711, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2353, + "name":"Circle3270", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.094520568847656, + 1.6388930082321167, + 4.263335227966309 + ] + }, + { + "mesh":2354, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface669", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.913536071777344, + 1.4340986013412476, + 3.6798794269561768 + ] + }, + { + "mesh":2355, + "name":"pasted__pasted__pasted__pCylinder685", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.423185348510742, + 0.5030606985092163, + 12.947877883911133 + ] + }, + { + "mesh":2356, + "name":"Object2008", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.164409637451172, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2357, + "name":"Circle1582", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.2971247434616089, + -5.08834171295166 + ] + }, + { + "mesh":2358, + "name":"Rectangle444", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + -6.853373050689697 + ] + }, + { + "mesh":2359, + "name":"Circle2364", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.557158350944519, + -2.7470691204071045 + ] + }, + { + "mesh":2360, + "name":"Circle1696", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08858871459961, + 1.7848728895187378, + -5.460317134857178 + ] + }, + { + "mesh":2361, + "name":"pasted__pasted__pCylinder630", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.481767654418945, + 4.853360652923584, + 3.9380276203155518 + ] + }, + { + "mesh":2362, + "name":"Circle1508", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.612430453300476, + -6.010019779205322 + ] + }, + { + "mesh":2363, + "name":"pasted__pasted__pasted__pPlane278", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.349157333374023, + 0.38407886028289795, + 12.949873924255371 + ] + }, + { + "mesh":2364, + "name":"Object1998", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.058938026428223, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2365, + "name":"Object2231", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.493457794189453, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2366, + "name":"Object1956", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.118000030517578, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2367, + "name":"pasted__pasted__pCylinder651", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.870540618896484, + 2.069448947906494, + 6.017322063446045 + ] + }, + { + "mesh":2368, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube062", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137235641479492, + 0.6166740655899048, + 2.755953073501587 + ] + }, + { + "mesh":2369, + "name":"Object1937", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.144721984863281, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2370, + "name":"pasted__pasted__pCube377.006", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.41632080078125, + 2.6223349571228027, + -8.032303810119629 + ] + }, + { + "mesh":2371, + "name":"pasted__pasted__pCube406.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.554912567138672, + 5.052017688751221, + -7.218465805053711 + ] + }, + { + "mesh":2372, + "name":"Circle2901", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.079818725585938, + 1.6823810338974, + 1.2440003156661987 + ] + }, + { + "mesh":2373, + "name":"pasted__pasted__pCube377.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.897441864013672, + 2.6223349571228027, + -7.840575695037842 + ] + }, + { + "mesh":2374, + "name":"Rectangle333", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + 18.7072696685791 + ] + }, + { + "mesh":2375, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder106", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + 4.780055046081543 + ] + }, + { + "mesh":2376, + "name":"pasted__pasted__pCube812", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939355850219727, + 5.073940753936768, + 7.566559314727783 + ] + }, + { + "mesh":2377, + "name":"Object1866", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.125036239624023, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2378, + "name":"Object2200", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.417516708374023, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2379, + "name":"Circle1522", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5577400922775269, + -4.933136940002441 + ] + }, + { + "mesh":2380, + "name":"Object1861", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.132068634033203, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2381, + "name":"Line2454", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.178203582763672, + 4.526463985443115, + 0.4972863495349884 + ] + }, + { + "mesh":2382, + "name":"Object2562", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.829500198364258, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2383, + "name":"Circle2990", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.934459686279297, + 1.118975043296814, + 3.3634955883026123 + ] + }, + { + "mesh":2384, + "name":"pasted__pasted__pasted__pasted__pCylinder855", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.52398109436035, + 1.0796922445297241, + 13.790817260742188 + ] + }, + { + "mesh":2385, + "name":"Rectangle940", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -6.9049553871154785 + ] + }, + { + "mesh":2386, + "name":"Circle1675", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.011409759521484, + 2.0429491996765137, + -5.460317134857178 + ] + }, + { + "mesh":2387, + "name":"pasted__pasted__pCube518", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.61594009399414, + 0.8970309495925903, + -7.571356773376465 + ] + }, + { + "mesh":2388, + "name":"pasted__pCube39", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.405942916870117, + 0.21965444087982178, + -5.655574798583984 + ] + }, + { + "mesh":2389, + "name":"Circle1479", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7918308973312378, + -5.460317134857178 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube350", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":2390, + "name":"pasted__pasted__pasted__pCylinder184", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.648862838745117, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "mesh":2391, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder117", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692001342773438, + 0.3832782506942749, + 4.492900848388672 + ] + }, + { + "mesh":2392, + "name":"Circle2411", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03346061706543, + 1.9692128896713257, + -2.22849702835083 + ] + }, + { + "mesh":2393, + "name":"pasted__pasted__pasted__pCube727", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 1.399283766746521, + 15.524377822875977 + ] + }, + { + "mesh":2394, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube409", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.952610969543457, + 0.9895871877670288, + 5.227709770202637 + ] + }, + { + "mesh":2395, + "name":"pasted__pasted__pCube532", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.166912078857422, + 3.574185371398926, + -7.522860050201416 + ] + }, + { + "mesh":2396, + "name":"Circle2791", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08858871459961, + 1.7848728895187378, + 0.6277795433998108 + ] + }, + { + "mesh":2397, + "name":"Rectangle1042", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.8779125213623047, + 0.39283287525177, + 16.649982452392578 + ] + }, + { + "mesh":2398, + "name":"pasted__pasted__pCylinder599", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.289690017700195, + 4.853360652923584, + 1.7397255897521973 + ] + }, + { + "mesh":2399, + "name":"Circle1827", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3809512853622437, + -5.0724711418151855 + ] + }, + { + "mesh":2400, + "name":"Circle1652", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.4259344339370728, + -5.788900852203369 + ] + }, + { + "mesh":2401, + "name":"pasted__pasted__pasted__pasted__pPipe075", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.327337265014648, + 0.8169807195663452, + 13.799349784851074 + ] + }, + { + "mesh":2402, + "name":"Rectangle524", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.132937431335449, + 0.14451777935028076, + -10.113236427307129 + ] + }, + { + "mesh":2403, + "name":"pasted__pasted__pasted__pasted__pCylinder492", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886508941650391, + 0.6754261255264282, + 15.701493263244629 + ] + }, + { + "mesh":2404, + "name":"polySurface341", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.059759140014648, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":2405, + "name":"Object2568", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.821062088012695, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2406, + "name":"pasted__pasted__pasted__pasted__pCylinder858", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.863826751708984, + 1.079692006111145, + 13.790817260742188 + ] + }, + { + "mesh":2407, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder211", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.685977935791016, + 1.507264256477356, + 12.767040252685547 + ] + }, + { + "mesh":2408, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder062", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + 0.662177324295044 + ] + }, + { + "mesh":2409, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube580", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 0.8592513799667358, + -3.2089879512786865 + ] + }, + { + "mesh":2410, + "name":"pasted__pasted__pCube724", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.45350456237793, + 5.064568996429443, + -0.2175528109073639 + ] + }, + { + "mesh":2411, + "name":"Obj3d66-647191-10-422", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.555200576782227, + 1.6559807062149048, + 18.29729461669922 + ] + }, + { + "mesh":2412, + "name":"Circle1904", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.7162774801254272, + -4.8402628898620605 + ] + }, + { + "mesh":2413, + "name":"pasted__pasted__pPipe066", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.46347427368164, + 1.845382809638977, + 0.07653263956308365 + ] + }, + { + "mesh":2414, + "name":"pasted__pasted__pasted__pasted__pCylinder861", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.69748878479004, + 0.10737001895904541, + 13.796781539916992 + ] + }, + { + "mesh":2415, + "name":"Circle1980", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.6817554235458374, + -5.459476947784424 + ] + }, + { + "mesh":2416, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube271", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.378658294677734, + 1.429686188697815, + 0.07406292855739594 + ] + }, + { + "mesh":2417, + "name":"Circle2699", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6262482404708862, + 0.07029572129249573 + ] + }, + { + "mesh":2418, + "name":"Circle3289", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.23468589782715, + 1.236960768699646, + 4.03801965713501 + ] + }, + { + "mesh":2419, + "name":"Obj3d66-647191-2-981", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567583084106445, + 1.6754928827285767, + 18.261302947998047 + ] + }, + { + "mesh":2420, + "name":"Obj3d66-647191-25-209", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.749750137329102, + 1.664944052696228, + -9.301790237426758 + ] + }, + { + "mesh":2421, + "name":"pasted__pasted__pPipe050", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.468690872192383, + 1.068055510520935, + 6.655594825744629 + ] + }, + { + "mesh":2422, + "name":"Line2406", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.044246673583984, + 3.1455912590026855, + -0.5060492753982544 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door105", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -3.557638645172119 + ] + }, + { + "mesh":2423, + "name":"Circle2684", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9312690496444702, + 0.6277795433998108 + ] + }, + { + "mesh":2424, + "name":"Circle1655", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.05963897705078, + 1.4875630140304565, + -5.460318088531494 + ] + }, + { + "mesh":2425, + "name":"Object2212", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.400642395019531, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2426, + "name":"Circle1563", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0092945098876953, + -4.678730010986328 + ] + }, + { + "mesh":2427, + "name":"pasted__pasted__pasted__pCylinder725", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565818786621, + 1.2660447359085083, + 16.56253433227539 + ] + }, + { + "mesh":2428, + "name":"pasted__pasted__pasted__pPlane098", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.221731185913086, + 0.38407909870147705, + 16.587963104248047 + ] + }, + { + "mesh":2429, + "name":"Rectangle1332", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384535074234009, + -2.878232479095459 + ] + }, + { + "mesh":2430, + "name":"pasted__pasted__pCylinder347", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.218090057373047, + 0.3064950704574585, + -3.18850040435791 + ] + }, + { + "mesh":2431, + "name":"pasted__pasted__pasted__pasted__pCylinder493", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.807779312133789, + 1.0796922445297241, + 15.849641799926758 + ] + }, + { + "mesh":2432, + "name":"Obj3d66-647191-22-651", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.528425216674805, + 1.6631056070327759, + 5.563129901885986 + ] + }, + { + "mesh":2433, + "name":"pasted__pasted__pCube857", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.403837203979492, + 1.027711272239685, + 16.471485137939453 + ] + }, + { + "mesh":2434, + "name":"pasted__pasted__pCylinder426", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.927236557006836, + 2.564108371734619, + -7.436709880828857 + ] + }, + { + "mesh":2435, + "name":"pasted__pasted__pCube384.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.499723434448242, + 5.0152716636657715, + -8.011807441711426 + ] + }, + { + "mesh":2436, + "name":"Object2611", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.880128860473633, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube343", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -5.439333915710449 + ] + }, + { + "mesh":2437, + "name":"Object1992", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.067373275756836, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2438, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube46", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 0.3764752149581909, + -5.308228015899658 + ] + }, + { + "mesh":2439, + "name":"Object111", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.735450744628906, + 0.14451873302459717, + -9.496627807617188 + ] + }, + { + "mesh":2440, + "name":"pasted__pasted__pCube405.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939355850219727, + 5.073940753936768, + -6.158369541168213 + ] + }, + { + "mesh":2441, + "name":"Circle2018", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11112403869629, + 1.2574313879013062, + -5.459476947784424 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface702", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -0.5263744592666626 + ] + }, + { + "mesh":2442, + "name":"Circle1548", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8805640935897827, + -5.460317134857178 + ] + }, + { + "mesh":2443, + "name":"Circle3193", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.029787063598633, + 1.8480826616287231, + 2.9827165603637695 + ] + }, + { + "mesh":2444, + "name":"Circle2006", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 2.020002841949463, + -5.459476947784424 + ] + }, + { + "mesh":2445, + "name":"pasted__pasted__pCylinder424", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.627161026000977, + -1.4001702070236206, + -7.744847297668457 + ] + }, + { + "mesh":2446, + "name":"Circle1784", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.995292663574219, + 1.9324370622634888, + -4.7025322914123535 + ] + }, + { + "mesh":2447, + "name":"pasted__pasted__pasted__pasted__pCylinder488", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886205673217773, + 0.6754261255264282, + 15.9976167678833 + ] + }, + { + "mesh":2448, + "name":"Object2145", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.494863510131836, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2449, + "name":"Circle3171", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.23468589782715, + 1.2725671529769897, + 3.6717348098754883 + ] + }, + { + "mesh":2450, + "name":"pasted__pasted__pPipe4", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.25892448425293, + 1.0760306119918823, + -3.1875362396240234 + ] + }, + { + "mesh":2451, + "name":"Object2590", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.790124893188477, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2452, + "name":"Rectangle1159", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.522390365600586, + 0.14451777935028076, + 16.81107521057129 + ] + }, + { + "mesh":2453, + "name":"Circle2447", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.007736206054688, + 1.9126533269882202, + -2.9544458389282227 + ] + }, + { + "mesh":2454, + "name":"Circle2864", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3309954404830933, + 0.13005775213241577 + ] + }, + { + "mesh":2455, + "name":"pasted__pasted__pasted__pCylinder613", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.911001205444336, + 0.5030604600906372, + 12.94787883758545 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube479", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":2456, + "name":"Circle2602", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0317940711975098, + 1.4220435619354248 + ] + }, + { + "mesh":2457, + "name":"Circle3133", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.004060745239258, + 2.0675277709960938, + 3.6717348098754883 + ] + }, + { + "mesh":2458, + "name":"Obj3d66-647191-33-852", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.440500259399414, + 1.6400068998336792, + 12.147518157958984 + ] + }, + { + "mesh":2459, + "name":"pasted__pasted__pCylinder463", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.927236557006836, + 2.564108371734619, + 6.545461654663086 + ] + }, + { + "mesh":2460, + "name":"Circle2479", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08858871459961, + 1.6758931875228882, + -2.8190360069274902 + ] + }, + { + "mesh":2461, + "name":"Circle2668", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1340889930725098, + 0.6277795433998108 + ] + }, + { + "mesh":2462, + "name":"Circle2382", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.4259344339370728, + -2.5570805072784424 + ] + }, + { + "mesh":2463, + "name":"Rectangle1392", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 6.3617329597473145 + ] + }, + { + "mesh":2464, + "name":"Circle2540", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.094520568847656, + 1.6388930082321167, + -1.6368962526321411 + ] + }, + { + "mesh":2465, + "name":"Circle3213", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.103288650512695, + 1.6328457593917847, + 3.105816125869751 + ] + }, + { + "mesh":2466, + "name":"Obj3d66-647191-10-423", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.440338134765625, + 1.6559807062149048, + 12.147222518920898 + ] + }, + { + "mesh":2467, + "name":"Circle2014", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9185928106307983, + -5.459476947784424 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube340", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -9.601222038269043 + ] + }, + { + "mesh":2468, + "name":"Circle1598", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.2354989051818848, + -5.460317134857178 + ] + }, + { + "mesh":2469, + "name":"Object1964", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.106752395629883, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2470, + "name":"pasted__pasted__pasted__pCube169", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6383399963378906, + 1.572085976600647, + 15.543998718261719 + ] + }, + { + "mesh":2471, + "name":"pasted__pasted__pasted__pCube659", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 0.7962990999221802, + 6.613917350769043 + ] + }, + { + "mesh":2472, + "name":"pasted__pasted__pCylinder652", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.879209518432617, + 2.096926689147949, + 6.022069454193115 + ] + }, + { + "mesh":2473, + "name":"Object2187", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.435800552368164, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube325", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.393779754638672 + ] + }, + { + "mesh":2474, + "name":"Circle2419", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0628604888916, + 1.8708983659744263, + -2.22849702835083 + ] + }, + { + "mesh":2475, + "name":"Object2512", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.7802791595459, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2476, + "name":"pasted__pasted__pCube597", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.83158302307129, + 3.3453516960144043, + 6.41938591003418 + ] + }, + { + "mesh":2477, + "name":"polySurface325", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.127685546875, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":2478, + "name":"Circle3173", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15263557434082, + 1.5625349283218384, + 3.6717348098754883 + ] + }, + { + "mesh":2479, + "name":"Rectangle1294", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 0.41887366771698 + ] + }, + { + "mesh":2480, + "name":"Circle1507", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7393025159835815, + -4.830844402313232 + ] + }, + { + "mesh":2481, + "name":"Object2552", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.843563079833984, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2482, + "name":"Obj3d66-647191-24-610", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8979358673095703, + 1.304662823677063, + -8.622991561889648 + ] + }, + { + "mesh":2483, + "name":"Circle2039", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.7505515813827515, + -6.084263801574707 + ] + }, + { + "mesh":2484, + "name":"Circle2313", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.007326602935791, + -2.22849702835083 + ] + }, + { + "mesh":2485, + "name":"Circle2091", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.937902450561523, + 2.141021251678467, + -5.459476947784424 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__polySurface068", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":2486, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube378", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + -2.4726953506469727 + ] + }, + { + "mesh":2487, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube432", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402330160140991, + 7.593808650970459 + ] + }, + { + "mesh":2488, + "name":"Object2156", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.479394912719727, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2489, + "name":"Circle3269", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.090845108032227, + 1.6497653722763062, + 4.269489765167236 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube643", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":2490, + "name":"Rectangle322.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + -15.859199523925781 + ] + }, + { + "mesh":2491, + "name":"pasted__pasted__pasted__pCylinder684", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.423185348510742, + 0.9016944169998169, + 12.947877883911133 + ] + }, + { + "mesh":2492, + "name":"Circle1581", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.2372688055038452, + -5.099292278289795 + ] + }, + { + "mesh":2493, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group107", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9594135284423828, + 0.6931537389755249, + -8.101909637451172 + ] + }, + { + "mesh":2494, + "name":"pasted__pasted__pCube588", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.640047073364258, + 3.574185371398926, + 6.4593119621276855 + ] + }, + { + "mesh":2495, + "name":"Circle3032", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1467652320861816, + 3.6717348098754883 + ] + }, + { + "mesh":2496, + "name":"pasted__pasted__pCylinder325", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.967205047607422, + 0.12859117984771729, + -5.503621578216553 + ] + }, + { + "mesh":2497, + "name":"Obj3d66-647191-33-854", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.735698699951172, + 1.6400068998336792, + -9.301545143127441 + ] + }, + { + "mesh":2498, + "name":"Rectangle1118", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.997325897216797, + 0.14451825618743896, + 16.87247085571289 + ] + }, + { + "mesh":2499, + "name":"pasted__pasted__pCylinder629", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.289690017700195, + 4.853360652923584, + 3.9521536827087402 + ] + }, + { + "mesh":2500, + "name":"pasted__pasted__pasted__pCube545", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.671411514282227, + 0.25255119800567627, + 12.952010154724121 + ] + }, + { + "mesh":2501, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube359", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.030427932739258, + 1.3580197095870972, + 4.610813617706299 + ] + }, + { + "mesh":2502, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pasted__pasted__pasted__polySurface559", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.068794250488281, + 0.6940606832504272, + 2.766693353652954 + ] + }, + { + "mesh":2503, + "name":"Object1936", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.146126747131348, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2504, + "name":"pasted__pasted__pCylinder694", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.845306396484375, + 1.988362193107605, + 4.746614933013916 + ] + }, + { + "mesh":2505, + "name":"pasted__pasted__pCube376.006", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.563478469848633, + 2.603695869445801, + -8.024739265441895 + ] + }, + { + "mesh":2506, + "name":"Circle1583", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.517868041992188, + 1.1369620561599731, + -5.768556594848633 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube517", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":2507, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube582", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 1.36614191532135, + -2.6826233863830566 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors154", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":2508, + "name":"pasted__pasted__pCube405.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.556926727294922, + 5.064568996429443, + -6.350098133087158 + ] + }, + { + "mesh":2509, + "name":"Circle2905", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.094520568847656, + 1.6388930082321167, + 1.219380259513855 + ] + }, + { + "mesh":2510, + "name":"Circle2011", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.956621527671814, + -5.459476947784424 + ] + }, + { + "mesh":2511, + "name":"Obj3d66-647191-9-460", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.543825149536133, + 1.6471415758132935, + -15.545450210571289 + ] + }, + { + "mesh":2512, + "name":"Circle2768", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.004060745239258, + 2.0675277709960938, + 0.6277795433998108 + ] + }, + { + "mesh":2513, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface724", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.399194717407227, + 0.6149352788925171, + 14.812023162841797 + ] + }, + { + "mesh":2514, + "name":"pasted__pasted__pTorus044", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.418676376342773, + 5.01207160949707, + 0.8292410969734192 + ] + }, + { + "mesh":2515, + "name":"Rectangle1147", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.066268920898438, + 0.43873751163482666, + 13.961438179016113 + ] + }, + { + "mesh":2516, + "name":"Object2199", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.418924331665039, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube411", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube488", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":2517, + "name":"Circle2989", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.517868041992188, + 1.1369620561599731, + 3.3634955883026123 + ] + }, + { + "mesh":2518, + "name":"pasted__pasted__pasted__pasted__polySurface383", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.69390106201172, + 1.0412577390670776, + 13.790817260742188 + ] + }, + { + "mesh":2519, + "name":"Rectangle801", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451777935028076, + -4.7472429275512695 + ] + }, + { + "mesh":2520, + "name":"Rectangle176", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.271402359008789, + 0.33695781230926514, + -12.664052963256836 + ] + }, + { + "mesh":2521, + "name":"Obj3d66-647191-27-322", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980655670166016, + 1.6754931211471558, + -15.6124849319458 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube563", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":2522, + "name":"Circle1674", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.007736206054688, + 2.0552382469177246, + -5.460317134857178 + ] + }, + { + "mesh":2523, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube308", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.21303939819336, + 0.20878851413726807, + 0.1938590109348297 + ] + }, + { + "mesh":2524, + "name":"Object2129", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.402793884277344, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":2525, + "name":"Circle1478", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8045071363449097, + -5.460317134857178 + ] + }, + { + "mesh":2526, + "name":"Circle3201", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.059186935424805, + 1.7619880437850952, + 3.0319559574127197 + ] + }, + { + "mesh":2527, + "name":"Circle3064", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6262482404708862, + 3.114250898361206 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube349", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":2528, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder116", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692001342773438, + 0.3832782506942749, + 4.788919925689697 + ] + }, + { + "mesh":2529, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube408", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9486875534057617, + 1.3867677450180054, + 5.179749011993408 + ] + }, + { + "mesh":2530, + "name":"pasted__pasted__pCylinder696", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.863656997680664, + 2.043013095855713, + 4.737298965454102 + ] + }, + { + "mesh":2531, + "name":"pasted__pasted__pasted__pCylinder692", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.281946182250977, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "mesh":2532, + "name":"pasted__pasted__pCylinder615", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.294721603393555, + 4.235100269317627, + 1.739736557006836 + ] + }, + { + "mesh":2533, + "name":"Circle1651", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3354610204696655, + -5.91040563583374 + ] + }, + { + "mesh":2534, + "name":"pasted__pasted__pasted__pasted__pCylinder797", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231765747070312, + 0.6754258871078491, + 13.642666816711426 + ] + }, + { + "mesh":2535, + "name":"Rectangle518", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.132937431335449, + 0.14451777935028076, + 8.9231538772583 + ] + }, + { + "mesh":2536, + "name":"polySurface340", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.076736450195312, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":2537, + "name":"Circle2378", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9300965070724487, + -2.9571094512939453 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube184", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":2538, + "name":"pasted__pasted__pCylinder474", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.048494338989258, + 2.950833797454834, + 6.4783430099487305 + ] + }, + { + "mesh":2539, + "name":"Rectangle906", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.687047958374023, + 0.11240279674530029, + -5.454657077789307 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors152", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":2540, + "name":"Rectangle150", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.594755172729492, + 0.1627582311630249, + -12.833106994628906 + ] + }, + { + "mesh":2541, + "name":"pasted__pasted__pasted__pasted__pCylinder857", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785097122192383, + 1.079692006111145, + 13.938965797424316 + ] + }, + { + "mesh":2542, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder061", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + 0.37150344252586365 + ] + }, + { + "mesh":2543, + "name":"polySurface350", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.481645584106445, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":2544, + "name":"pasted__pasted__pCube723", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.451486587524414, + 5.052017688751221, + -0.5186355113983154 + ] + }, + { + "mesh":2545, + "name":"Circle3231", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.228336334228516, + 1.3009413480758667, + 3.3058393001556396 + ] + }, + { + "mesh":2546, + "name":"Rectangle1187", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.594114303588867, + 0.39283287525177, + 16.649982452392578 + ] + }, + { + "mesh":2547, + "name":"Obj3d66-647191-21-775", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3518457412719727, + 1.6637946367263794, + -15.548868179321289 + ] + }, + { + "mesh":2548, + "name":"polySurface381", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.36277198791504, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":2549, + "name":"Sphere025", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8063907623291, + 1.3316925764083862, + -5.037290096282959 + ] + }, + { + "mesh":2550, + "name":"Circle3288", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3208791017532349, + 4.180480480194092 + ] + }, + { + "mesh":2551, + "name":"Circle1724", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.989358901977539, + 1.96646249294281, + -6.217041492462158 + ] + }, + { + "mesh":2552, + "name":"Rectangle915", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.165212631225586, + 1.1144360303878784, + -5.450801372528076 + ] + }, + { + "mesh":2553, + "name":"Circle2153", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.94892692565918, + 2.0085411071777344, + -6.249321460723877 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube181", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface590", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522050857543945 + ] + }, + { + "mesh":2554, + "name":"Object2211", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.402050018310547, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2555, + "name":"Circle1562", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0205440521240234, + -4.672391891479492 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube507", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":2556, + "name":"Circle2010", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9692977666854858, + -5.459476947784424 + ] + }, + { + "mesh":2557, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube312", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.723602294921875, + -0.11056673526763916, + 5.3774566650390625 + ] + }, + { + "mesh":2558, + "name":"Rectangle936", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.381135940551758, + 1.039061188697815, + 3.677396059036255 + ] + }, + { + "mesh":2559, + "name":"Circle2067", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.986794352531433, + -6.217363357543945 + ] + }, + { + "mesh":2560, + "name":"pasted__pasted__pasted__pCylinder171", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.723842620849609, + 0.5030606985092163, + 16.585969924926758 + ] + }, + { + "mesh":2561, + "name":"Obj3d66-647191-35-119", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.56678581237793, + 1.6647709608078003, + 18.269939422607422 + ] + }, + { + "mesh":2562, + "name":"Obj3d66-647191-15-307", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.981172561645508, + 1.6626402139663696, + 18.3248291015625 + ] + }, + { + "mesh":2563, + "name":"pasted__pasted__pasted__pCylinder747", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.923752784729004, + 1.084666132926941, + 5.029318809509277 + ] + }, + { + "mesh":2564, + "name":"Rectangle1134", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.540447235107422, + 0.0907973051071167, + 12.44258975982666 + ] + }, + { + "mesh":2565, + "name":"pasted__pasted__pCube856", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.403837203979492, + 1.027711272239685, + 15.821052551269531 + ] + }, + { + "mesh":2566, + "name":"pasted__pasted__pCylinder407", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.91455841064453, + 3.146695137023926, + -6.593062400817871 + ] + }, + { + "mesh":2567, + "name":"pasted__pasted__pPipe20.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.76227569580078, + 1.2939432859420776, + -8.013620376586914 + ] + }, + { + "mesh":2568, + "name":"Circle3143", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.04081153869629, + 1.9446343183517456, + 3.6717348098754883 + ] + }, + { + "mesh":2569, + "name":"Object2610", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.881532669067383, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface680", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -5.439333915710449 + ] + }, + { + "mesh":2570, + "name":"Object1991", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.068780899047852, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2571, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube247", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.535017013549805, + 0.14378583431243896, + 0.9018793106079102 + ] + }, + { + "mesh":2572, + "name":"Rectangle545", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.8989181518554688, + 1.3181172609329224, + 1.0658206939697266 + ] + }, + { + "mesh":2573, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube443", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.92730712890625, + 1.4096461534500122, + -1.7240588665008545 + ] + }, + { + "mesh":2574, + "name":"Object110", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.574432373046875, + 0.14451873302459717, + -9.496627807617188 + ] + }, + { + "mesh":2575, + "name":"pasted__pasted__pCube404.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + -6.459451198577881 + ] + }, + { + "mesh":2576, + "name":"Circle2724", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7725452184677124, + -0.012099690735340118 + ] + }, + { + "mesh":2577, + "name":"Line2445", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.033376693725586, + 0.19340407848358154, + 3.677396059036255 + ] + }, + { + "mesh":2578, + "name":"Rectangle364.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":2579, + "name":"Circle3170", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.4164232015609741, + 3.5754101276397705 + ] + }, + { + "mesh":2580, + "name":"Line2428", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.687036514282227, + 0.19340407848358154, + -2.2228357791900635 + ] + }, + { + "mesh":2581, + "name":"pasted__pasted__pasted__pasted__pCylinder869", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.6024112701416, + 0.6754261255264282, + 14.968205451965332 + ] + }, + { + "mesh":2582, + "name":"pasted__pasted__pPipe3", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.243392944335938, + 1.2939432859420776, + -3.1875362396240234 + ] + }, + { + "mesh":2583, + "name":"Rectangle1158", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.191864013671875, + 0.14451777935028076, + 16.81107521057129 + ] + }, + { + "mesh":2584, + "name":"Rectangle403", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.500614166259766, + 0.14451754093170166, + -16.603002548217773 + ] + }, + { + "mesh":2585, + "name":"pasted__pasted__pCylinder339.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.194368362426758, + 4.842443466186523, + -7.023035526275635 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface752", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 2.3852198123931885 + ] + }, + { + "mesh":2586, + "name":"Circle2469", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.051836013793945, + 1.783511757850647, + -2.8805854320526123 + ] + }, + { + "mesh":2587, + "name":"Circle3123", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.967308044433594, + 2.1904215812683105, + 3.6717348098754883 + ] + }, + { + "mesh":2588, + "name":"pasted__pasted__pasted__pCylinder444", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9350042343139648, + 1.1917005777359009, + -8.384621620178223 + ] + }, + { + "mesh":2589, + "name":"pasted__pasted__pasted__pCylinder612", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.911001205444336, + 0.9016937017440796, + 12.94787883758545 + ] + }, + { + "mesh":2590, + "name":"pasted__pasted__pCylinder468", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.927236557006836, + 3.2304320335388184, + 6.162014007568359 + ] + }, + { + "mesh":2591, + "name":"Object2671", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.79574966430664, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2592, + "name":"Circle2035", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.7055531740188599, + -6.058911323547363 + ] + }, + { + "mesh":2593, + "name":"Circle2381", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3354610204696655, + -2.6785852909088135 + ] + }, + { + "mesh":2594, + "name":"Circle2539", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.090845108032227, + 1.6497653722763062, + -1.6307413578033447 + ] + }, + { + "mesh":2595, + "name":"Circle3212", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0996150970459, + 1.64360773563385, + 3.099661350250244 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface675", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -9.601222038269043 + ] + }, + { + "mesh":2596, + "name":"Circle2356", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8063067197799683, + -2.88739013671875 + ] + }, + { + "mesh":2597, + "name":"pasted__pasted__pasted__pCube168", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 0.8213733434677124, + 14.271536827087402 + ] + }, + { + "mesh":2598, + "name":"pasted__pasted__pasted__pCube658", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 1.3207262754440308, + 6.613917350769043 + ] + }, + { + "mesh":2599, + "name":"pasted__pasted__pCylinder653", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887872695922852, + 2.124401092529297, + 6.026817321777344 + ] + }, + { + "mesh":2600, + "name":"pasted__pasted__pCylinder342.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.514692306518555, + 5.305135250091553, + -5.699815273284912 + ] + }, + { + "mesh":2601, + "name":"Rectangle186", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.120513916015625, + 0.33695781230926514, + -12.664052963256836 + ] + }, + { + "mesh":2602, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube381", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + -1.1924726963043213 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface592", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube513", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":2603, + "name":"Circle2711", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.612430453300476, + 0.07807804644107819 + ] + }, + { + "mesh":2604, + "name":"Object2186", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.437206268310547, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2605, + "name":"Rectangle1403", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 4.220424652099609 + ] + }, + { + "mesh":2606, + "name":"Rectangle921", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03338050842285, + 0.11240279674530029, + -2.2228355407714844 + ] + }, + { + "mesh":2607, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface666", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.921976089477539, + 1.4112459421157837, + -1.8338161706924438 + ] + }, + { + "mesh":2608, + "name":"Object2511", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.78168296813965, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2609, + "name":"Line2453", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.177885055541992, + 4.526465892791748, + -0.5738347172737122 + ] + }, + { + "mesh":2610, + "name":"polySurface324", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.061359405517578, + 1.4533334970474243, + 14.939345359802246 + ] + }, + { + "mesh":2611, + "name":"Rectangle1329", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137237548828125, + 1.7024261951446533, + -0.6465281844139099 + ] + }, + { + "mesh":2612, + "name":"Object2551", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.844970703125, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2613, + "name":"Circle2038", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.7393022775650024, + -6.077926158905029 + ] + }, + { + "mesh":2614, + "name":"Circle2312", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.020002841949463, + -2.22849702835083 + ] + }, + { + "mesh":2615, + "name":"Circle2090", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.94157600402832, + 2.153313636779785, + -5.459476947784424 + ] + }, + { + "mesh":2616, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube586", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 1.3661421537399292, + -2.7470192909240723 + ] + }, + { + "mesh":2617, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube377", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + -2.372058391571045 + ] + }, + { + "mesh":2618, + "name":"pasted__pasted__pCylinder658", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.931211471557617, + 2.261786937713623, + 6.050540447235107 + ] + }, + { + "mesh":2619, + "name":"Object2155", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.480802536010742, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2620, + "name":"Circle3268", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08717155456543, + 1.6606370210647583, + 4.2756452560424805 + ] + }, + { + "mesh":2621, + "name":"polySurface109", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.782428741455078, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":2622, + "name":"pasted__pasted__pasted__pCylinder683", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.423185348510742, + 1.2660449743270874, + 12.947877883911133 + ] + }, + { + "mesh":2623, + "name":"Rectangle1106", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.997325897216797, + 0.14451777935028076, + 15.133939743041992 + ] + }, + { + "mesh":2624, + "name":"Circle1580", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.426315188407898, + -5.120709419250488 + ] + }, + { + "mesh":2625, + "name":"Circle3076", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.612430453300476, + 3.1220335960388184 + ] + }, + { + "mesh":2626, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface226", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.519716262817383, + 0.20378005504608154, + 2.120432138442993 + ] + }, + { + "mesh":2627, + "name":"pasted__pasted__pCube808", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036029815673828, + 5.052017688751221, + 3.9400012493133545 + ] + }, + { + "mesh":2628, + "name":"pasted__pasted__pCylinder628", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.294721603393555, + 4.235100269317627, + 3.952165126800537 + ] + }, + { + "mesh":2629, + "name":"pasted__pasted__pasted__pCylinder622", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.8592529296875, + 0.5030604600906372, + 12.94787883758545 + ] + }, + { + "mesh":2630, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder128", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.101566314697266, + 1.4834917783737183, + 5.7832770347595215 + ] + }, + { + "mesh":2631, + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface598", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.600870132446289, + 0.6940606832504272, + 2.489243984222412 + ] + }, + { + "mesh":2632, + "name":"Circle2994", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.517868041992188, + 1.1369620561599731, + 3.9828784465789795 + ] + }, + { + "mesh":2633, + "name":"pasted__pasted__pCube373.005", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.477102279663086, + 2.577449321746826, + -3.3730194568634033 + ] + }, + { + "mesh":2634, + "name":"Circle3041", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0326790809631348, + 3.6717348098754883 + ] + }, + { + "mesh":2635, + "name":"Object2594", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.78449821472168, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2636, + "name":"Circle2031", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.66055428981781, + -6.033559322357178 + ] + }, + { + "mesh":2637, + "name":"Obj3d66-647191-14-944", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4524288177490234, + 1.672275424003601, + 12.174749374389648 + ] + }, + { + "mesh":2638, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface536", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9645328521728516, + 0.718347430229187, + 12.764594078063965 + ] + }, + { + "mesh":2639, + "name":"pasted__pasted__pCube404.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.554912567138672, + 5.052017688751221, + -6.651179790496826 + ] + }, + { + "mesh":2640, + "name":"pasted__pasted__pCylinder616", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.29471778869629, + 4.235100269317627, + 0.823529839515686 + ] + }, + { + "mesh":2641, + "name":"Object1864", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.1278486251831055, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2642, + "name":"pasted__pasted__pCylinder738", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.218090057373047, + 0.3064950704574585, + 7.778240203857422 + ] + }, + { + "mesh":2643, + "name":"Object2198", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.420330047607422, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2644, + "name":"Circle2929", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10127067565918, + 1.118975043296814, + 3.9828784465789795 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube162", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":2645, + "name":"pasted__pasted__pasted__pasted__pPipe084", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.698280334472656, + 0.8169807195663452, + 13.799349784851074 + ] + }, + { + "mesh":2646, + "name":"Rectangle800", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451777935028076, + -4.7472429275512695 + ] + }, + { + "mesh":2647, + "name":"Circle1955", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.400625228881836, + 1.1369620561599731, + -5.459476947784424 + ] + }, + { + "mesh":2648, + "name":"pasted__pasted__pCube706", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.411561965942383, + 5.280849933624268, + 1.8564645051956177 + ] + }, + { + "mesh":2649, + "name":"Circle2337", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6600092649459839, + -2.80499529838562 + ] + }, + { + "mesh":2650, + "name":"Circle1504", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.716802954673767, + -4.843520641326904 + ] + }, + { + "mesh":2651, + "name":"Circle2122", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.823972702026367, + 1.7599800825119019, + -5.459476947784424 + ] + }, + { + "mesh":2652, + "name":"pasted__pasted__pCylinder514", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.863014221191406, + 2.053720474243164, + 0.08851037919521332 + ] + }, + { + "mesh":2653, + "name":"pasted__pasted__pCylinder644", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.089197158813477, + 4.840120792388916, + 4.842086315155029 + ] + }, + { + "mesh":2654, + "name":"Circle1673", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.004060745239258, + 2.0675277709960938, + -5.460317134857178 + ] + }, + { + "mesh":2655, + "name":"pasted__pasted__pPipe039", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.62812614440918, + 1.0766092538833618, + -7.670869827270508 + ] + }, + { + "mesh":2656, + "name":"Object2128", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.409616470336914, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":2657, + "name":"Circle3050", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9185928106307983, + 3.6717348098754883 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube348", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":2658, + "name":"Object048", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.19881248474121, + 1.3244792222976685, + -13.934765815734863 + ] + }, + { + "mesh":2659, + "name":"Circle2619", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3296104669570923, + 1.1342263221740723 + ] + }, + { + "mesh":2660, + "name":"Circle2477", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08123779296875, + 1.69741690158844, + -2.831346035003662 + ] + }, + { + "mesh":2661, + "name":"pasted__pasted__pCylinder461", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.928695678710938, + 2.528435707092285, + 6.57615852355957 + ] + }, + { + "mesh":2662, + "name":"Circle3118", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.285993576049805, + 1.444670557975769, + 3.6717348098754883 + ] + }, + { + "mesh":2663, + "name":"Circle2611", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9305464029312134, + 1.3650007247924805 + ] + }, + { + "mesh":2664, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group147", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9594135284423828, + 0.6931535005569458, + 5.180015563964844 + ] + }, + { + "mesh":2665, + "name":"Rectangle575", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.195186614990234, + 0.0907973051071167, + 12.44258975982666 + ] + }, + { + "mesh":2666, + "name":"extrudedSurface032", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.813631057739258, + 4.2204132080078125, + 1.7244369983673096 + ] + }, + { + "mesh":2667, + "name":"Circle1650", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3299905061721802, + -5.955739498138428 + ] + }, + { + "mesh":2668, + "name":"Rectangle519", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.132937431335449, + 0.14451777935028076, + 11.03930950164795 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__polySurface066", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":2669, + "name":"pasted__pasted__pasted__pasted__pCylinder490", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.147626876831055, + 0.6754261255264282, + 15.849641799926758 + ] + }, + { + "mesh":2670, + "name":"Rectangle1421", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.100914001464844, + 0.39283287525177, + 7.877774715423584 + ] + }, + { + "mesh":2671, + "name":"pasted__pasted__pCube408.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + -7.594021320343018 + ] + }, + { + "mesh":2672, + "name":"polySurface339", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.093719482421875, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":2673, + "name":"pasted__pasted__pCylinder473", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.048494338989258, + 3.133455753326416, + 5.781678199768066 + ] + }, + { + "mesh":2674, + "name":"pasted__pasted__pCylinder637", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.294721603393555, + 4.235100269317627, + 4.843544006347656 + ] + }, + { + "mesh":2675, + "name":"Object2566", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.823875427246094, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2676, + "name":"pasted__pasted__pasted__pPlane297", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.099143981933594, + 0.3886607885360718, + 15.698271751403809 + ] + }, + { + "mesh":2677, + "name":"Object2183", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.441425323486328, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2678, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder060", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + 0.07818832993507385 + ] + }, + { + "mesh":2679, + "name":"Circle3223", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.285993576049805, + 1.383501648902893, + 3.2428510189056396 + ] + }, + { + "mesh":2680, + "name":"pasted__pasted__pCube722", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.45350456237793, + 5.064568996429443, + 0.3497324287891388 + ] + }, + { + "mesh":2681, + "name":"Obj3d66-647191-8-599", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.55536460876465, + 1.6444579362869263, + 18.277021408081055 + ] + }, + { + "mesh":2682, + "name":"polySurface380", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.3797607421875, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":2683, + "name":"Circle3287", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3809512853622437, + 4.059580326080322 + ] + }, + { + "mesh":2684, + "name":"Circle1723", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.985681533813477, + 1.9772247076034546, + -6.223196506500244 + ] + }, + { + "mesh":2685, + "name":"Circle2152", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.95627784729004, + 2.030284881591797, + -6.261631011962891 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface706", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -0.5263744592666626 + ] + }, + { + "mesh":2686, + "name":"Object2210", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.403453826904297, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2687, + "name":"pasted__pasted__pCylinder7", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.879209518432617, + 2.096925735473633, + -4.944670677185059 + ] + }, + { + "mesh":2688, + "name":"pasted__pasted__pasted__pCube193", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 0.8213735818862915, + 16.228010177612305 + ] + }, + { + "mesh":2689, + "name":"Rectangle316.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.8989181518554688, + 0.14451754093170166, + 1.0658206939697266 + ] + }, + { + "mesh":2690, + "name":"Obj3d66-647191-14-940", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980937957763672, + 1.672275424003601, + -15.603754043579102 + ] + }, + { + "mesh":2691, + "name":"Object2310", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.501895904541016, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2692, + "name":"Circle2996", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10127067565918, + 1.118975043296814, + 3.3634955883026123 + ] + }, + { + "mesh":2693, + "name":"pasted__pasted__pasted__pCylinder170", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.723842620849609, + 1.2660449743270874, + 16.585969924926758 + ] + }, + { + "mesh":2694, + "name":"Obj3d66-647191-14-941", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980937957763672, + 1.672275424003601, + 18.3248291015625 + ] + }, + { + "mesh":2695, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube239", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.925851821899414, + 1.3735631704330444, + -5.887722492218018 + ] + }, + { + "mesh":2696, + "name":"Rectangle1314", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.048496246337891, + 0.04489290714263916, + -3.458014726638794 + ] + }, + { + "mesh":2697, + "name":"pasted__pasted__pCube855", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.403837203979492, + 1.027711272239685, + 15.931004524230957 + ] + }, + { + "mesh":2698, + "name":"pasted__pasted__pCylinder432", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.928695678710938, + 2.528435707092285, + -7.4060139656066895 + ] + }, + { + "mesh":2699, + "name":"Circle3017", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.666190505027771, + 3.6717348098754883 + ] + }, + { + "mesh":2700, + "name":"pasted__pasted__pCube692", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.312898635864258, + 2.6223349571228027, + -0.7651888728141785 + ] + }, + { + "mesh":2701, + "name":"Object2609", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.882936477661133, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface679", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -5.439333915710449 + ] + }, + { + "mesh":2702, + "name":"Object1990", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.070188522338867, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2703, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube051", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137231826782227, + 0.6166743040084839, + -6.415416240692139 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group124", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -9.601222038269043 + ] + }, + { + "mesh":2704, + "name":"Circle1745", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.073888778686523, + 1.7189406156539917, + -6.075477123260498 + ] + }, + { + "mesh":2705, + "name":"Circle1643", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.986364483833313, + -6.220620155334473 + ] + }, + { + "mesh":2706, + "name":"pasted__pasted__extrudedSurface021", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.46480941772461, + -1.5230656862258911, + -7.733132839202881 + ] + }, + { + "mesh":2707, + "name":"Circle2525", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03939437866211, + 1.8019732236862183, + -1.5445713996887207 + ] + }, + { + "mesh":2708, + "name":"pasted__pasted__pasted__pCylinder147", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.565742492675781, + 0.5030604600906372, + 12.94787883758545 + ] + }, + { + "mesh":2709, + "name":"Object109", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.440256118774414, + 0.14451873302459717, + 12.34260082244873 + ] + }, + { + "mesh":2710, + "name":"pasted__pasted__pCube403.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939353942871094, + 5.073940753936768, + -5.591084003448486 + ] + }, + { + "mesh":2711, + "name":"Object2070", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.077219009399414, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2712, + "name":"Object2362", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.428768157958984, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2713, + "name":"Obj3d66-647191-10-419", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.993032455444336, + 1.6559807062149048, + -15.576226234436035 + ] + }, + { + "mesh":2714, + "name":"Shape070", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 7.322399139404297, + 0.1063917875289917, + -6.502554893493652 + ] + }, + { + "mesh":2715, + "name":"Rectangle363", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.769609451293945, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":2716, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder112", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692001342773438, + 1.3803664445877075, + 5.079594135284424 + ] + }, + { + "mesh":2717, + "name":"Circle3169", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.405131220817566, + 3.7160122394561768 + ] + }, + { + "mesh":2718, + "name":"Line2444", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.033369064331055, + 0.19340407848358154, + 3.677396059036255 + ] + }, + { + "mesh":2719, + "name":"pasted__pasted__pCylinder335", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.874229431152344, + 4.853360652923584, + -6.83128547668457 + ] + }, + { + "mesh":2720, + "name":"Shape004", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.821920394897461, + 0.006805539131164551, + -0.5458017587661743 + ] + }, + { + "mesh":2721, + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface585", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.64222526550293, + 0.6940604448318481, + 2.162324905395508 + ] + }, + { + "mesh":2722, + "name":"pasted__pasted__pasted__pCylinder641", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.8592529296875, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":2723, + "name":"Rectangle1157", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.36827278137207, + 0.14451777935028076, + 15.133939743041992 + ] + }, + { + "mesh":2724, + "name":"Rectangle563", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.2706756591796875, + 0.35186755657196045, + 13.961438179016113 + ] + }, + { + "mesh":2725, + "name":"pasted__pasted__pasted__pasted__pCylinder467", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.069196701049805, + 0.28987395763397217, + 14.672256469726562 + ] + }, + { + "mesh":2726, + "name":"Object2604", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.889972686767578, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2727, + "name":"Circle2862", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.418618083000183, + 0.2960716485977173 + ] + }, + { + "mesh":2728, + "name":"pasted__pasted__pasted__pCylinder611", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.911001205444336, + 1.2660449743270874, + 12.94787883758545 + ] + }, + { + "mesh":2729, + "name":"Circle2034", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.6943033933639526, + -6.052573204040527 + ] + }, + { + "mesh":2730, + "name":"Obj3d66-647191-26-573", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980655670166016, + 1.670127511024475, + 18.3327693939209 + ] + }, + { + "mesh":2731, + "name":"Circle2380", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3299905061721802, + -2.723919153213501 + ] + }, + { + "mesh":2732, + "name":"Circle2538", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08717155456543, + 1.6606370210647583, + -1.6245862245559692 + ] + }, + { + "mesh":2733, + "name":"Circle3211", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.095937728881836, + 1.6543697118759155, + 3.093506097793579 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface674", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -9.601222038269043 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube327", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.700583457946777 + ] + }, + { + "mesh":2734, + "name":"pasted__pasted__pasted__pCube167", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 0.9795023202896118, + 14.271536827087402 + ] + }, + { + "mesh":2735, + "name":"Circle3153", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.07756233215332, + 1.821740746498108, + 3.6717348098754883 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube602", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":2736, + "name":"pasted__pasted__pasted__pCube657", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 1.0594736337661743, + 6.613917350769043 + ] + }, + { + "mesh":2737, + "name":"Rectangle1412", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.095331192016602, + 1.4309507608413696, + 2.438196897506714 + ] + }, + { + "mesh":2738, + "name":"Circle2290", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8552120923995972, + -2.22849702835083 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube353", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":2739, + "name":"Object2244", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.475177764892578, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2740, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder071", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.916704177856445, + 0.19178593158721924, + -1.6764414310455322 + ] + }, + { + "mesh":2741, + "name":"polySurface323", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.950403213500977, + 1.4009381532669067, + 14.938828468322754 + ] + }, + { + "mesh":2742, + "name":"pasted__pasted__pasted__pCylinder179", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.706984519958496, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":2743, + "name":"Circle2251", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84649085998535, + 1.357746958732605, + -1.8054697513580322 + ] + }, + { + "mesh":2744, + "name":"Rectangle1292", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -0.4316885471343994 + ] + }, + { + "mesh":2745, + "name":"Circle3176", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.011409759521484, + 1.9018915891647339, + 2.9519407749176025 + ] + }, + { + "mesh":2746, + "name":"Object2550", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84638023376465, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2747, + "name":"Circle2037", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.7280524969100952, + -6.071586608886719 + ] + }, + { + "mesh":2748, + "name":"Circle2311", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0326790809631348, + -2.22849702835083 + ] + }, + { + "mesh":2749, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube537", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 1.36614191532135, + -9.252572059631348 + ] + }, + { + "mesh":2750, + "name":"pasted__pasted__pasted__pasted__pasted__pCylinder050", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.201343536376953, + 0.6772705316543579, + 12.73698902130127 + ] + }, + { + "mesh":2751, + "name":"Rectangle1224", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + -7.743724822998047 + ] + }, + { + "mesh":2752, + "name":"Rectangle428", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + -5.4532952308654785 + ] + }, + { + "mesh":2753, + "name":"Circle2089", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.945249557495117, + 2.165605068206787, + -5.459476947784424 + ] + }, + { + "mesh":2754, + "name":"Circle3097", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0538864135742188, + 2.873403310775757 + ] + }, + { + "mesh":2755, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube428", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + 6.415081024169922 + ] + }, + { + "mesh":2756, + "name":"pasted__pasted__pasted__pCube174", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 1.2411543130874634, + 14.92426586151123 + ] + }, + { + "mesh":2757, + "name":"Rectangle1348", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384544610977173, + 1.5699092149734497 + ] + }, + { + "mesh":2758, + "name":"pasted__pasted__pCylinder659", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.939874649047852, + 2.289264678955078, + 6.055278301239014 + ] + }, + { + "mesh":2759, + "name":"Object2154", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.482208251953125, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2760, + "name":"Object2415", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.86714744567871, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":2761, + "name":"polySurface108", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.716100692749023, + 1.4533334970474243, + 14.939345359802246 + ] + }, + { + "mesh":2762, + "name":"Circle2935", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.638055443763733, + 4.244164943695068 + ] + }, + { + "mesh":2763, + "name":"Circle1579", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.334945559501648, + -4.9989447593688965 + ] + }, + { + "mesh":2764, + "name":"pasted__pasted__pCube400", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + -5.3469929695129395 + ] + }, + { + "mesh":2765, + "name":"pasted__pasted__pCube807", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + 4.808369159698486 + ] + }, + { + "mesh":2766, + "name":"extrudedSurface035", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.813631057739258, + 4.2204132080078125, + 3.9368648529052734 + ] + }, + { + "mesh":2767, + "name":"pasted__pasted__pasted__pCylinder621", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.8592529296875, + 1.2660449743270874, + 12.94787883758545 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube597", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":2768, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder127", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.101566314697266, + 1.4834917783737183, + 5.568378925323486 + ] + }, + { + "mesh":2769, + "name":"Rectangle217", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8965835571289062, + 0.5975691080093384, + -12.893644332885742 + ] + }, + { + "mesh":2770, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__polySurface076", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.079298973083496, + 0.7384535074234009, + 2.8648030757904053 + ] + }, + { + "mesh":2771, + "name":"Circle2736", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.008871555328369, + -0.14520001411437988 + ] + }, + { + "mesh":2772, + "name":"pasted__pasted__pCube374.005", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.490291595458984, + 2.7758541107177734, + -3.373019218444824 + ] + }, + { + "mesh":2773, + "name":"Object2004", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.170035362243652, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2774, + "name":"pasted__pasted__pCube403.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.556926727294922, + 5.064568996429443, + -5.782811641693115 + ] + }, + { + "mesh":2775, + "name":"pasted__pasted__pasted__pCube663", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9360036849975586, + 1.3207257986068726, + 5.875432014465332 + ] + }, + { + "mesh":2776, + "name":"pasted__pasted__pCylinder612", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.383638381958008, + 4.65733003616333, + 0.8275122046470642 + ] + }, + { + "mesh":2777, + "name":"Object2197", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.421735763549805, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2778, + "name":"Circle1803", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.06879234313965, + 1.7149971723556519, + -4.825632572174072 + ] + }, + { + "mesh":2779, + "name":"Line2443", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.99513053894043, + 2.195624828338623, + -0.28573906421661377 + ] + }, + { + "mesh":2780, + "name":"Circle2828", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.029787063598633, + 1.8480826616287231, + -0.06123927980661392 + ] + }, + { + "mesh":2781, + "name":"Circle2369", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.031379222869873, + -3.014153242111206 + ] + }, + { + "mesh":2782, + "name":"Circle1481", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7664786577224731, + -5.460317134857178 + ] + }, + { + "mesh":2783, + "name":"pasted__pasted__pasted__pCylinder154", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.513994216918945, + 0.9016937017440796, + 12.94787883758545 + ] + }, + { + "mesh":2784, + "name":"Circle1947", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116270065307617, + 1.3299907445907593, + -4.953029632568359 + ] + }, + { + "mesh":2785, + "name":"Circle2441", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.23468589782715, + 1.2725671529769897, + -2.228497266769409 + ] + }, + { + "mesh":2786, + "name":"Circle1672", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.000385284423828, + 2.0798168182373047, + -5.460317134857178 + ] + }, + { + "mesh":2787, + "name":"pasted__pasted__pPipe038", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.629884719848633, + 0.8532906770706177, + -7.308398246765137 + ] + }, + { + "mesh":2788, + "name":"Circle2101", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.901151657104492, + 2.0181050300598145, + -5.459476947784424 + ] + }, + { + "mesh":2789, + "name":"Object2127", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.416444778442383, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":2790, + "name":"Circle3049", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9312690496444702, + 3.6717348098754883 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube347", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":2791, + "name":"Circle2618", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3792201280593872, + 1.012726068496704 + ] + }, + { + "mesh":2792, + "name":"Circle2610", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9417961835861206, + 1.371338963508606 + ] + }, + { + "mesh":2793, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube407", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9486875534057617, + 0.7022417783737183, + 5.179749011993408 + ] + }, + { + "mesh":2794, + "name":"Rectangle573", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.726245880126953, + 0.0907973051071167, + 12.44258975982666 + ] + }, + { + "mesh":2795, + "name":"extrudedSurface031", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.813631057739258, + 4.2204132080078125, + 0.8104516863822937 + ] + }, + { + "mesh":2796, + "name":"Rectangle923", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.753278732299805, + 1.1144360303878784, + -2.2198221683502197 + ] + }, + { + "mesh":2797, + "name":"Circle1634", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.379219889640808, + -5.833980083465576 + ] + }, + { + "mesh":2798, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube052", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137231826782227, + 0.6166743040084839, + -8.530941009521484 + ] + }, + { + "mesh":2799, + "name":"Rectangle316.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.1604576110839844, + 0.14451754093170166, + 1.066933512687683 + ] + }, + { + "mesh":2800, + "name":"Circle2946", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7843014001846313, + 4.3265604972839355 + ] + }, + { + "mesh":2801, + "name":"Object2300", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.515958786010742, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2802, + "name":"Obj3d66-647191-12-226", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8931865692138672, + 1.3100582361221313, + -8.596003532409668 + ] + }, + { + "mesh":2803, + "name":"pasted__pasted__pCube697", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.390499114990234, + 1.2804936170578003, + -0.7402593493461609 + ] + }, + { + "mesh":2804, + "name":"polySurface338", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.110702514648438, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":2805, + "name":"Object2397", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.0837067365646362, + 16.99413299560547 + ] + }, + { + "mesh":2806, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group049", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7959823608398438, + 0.7328537702560425, + -13.134393692016602 + ] + }, + { + "mesh":2807, + "name":"Object2565", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.825281143188477, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2808, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube266", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 1.3735638856887817, + 0.07875432074069977 + ] + }, + { + "mesh":2809, + "name":"pasted__pasted__pCube721", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.451486587524414, + 5.052017688751221, + 0.04864976927638054 + ] + }, + { + "mesh":2810, + "name":"polySurface379", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.396738052368164, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":2811, + "name":"Circle3286", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.428735375404358, + 4.014465808868408 + ] + }, + { + "mesh":2812, + "name":"Circle1722", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.98200798034668, + 1.98798668384552, + -6.229351043701172 + ] + }, + { + "mesh":2813, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube365", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + -6.0585408210754395 + ] + }, + { + "mesh":2814, + "name":"Circle2151", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.952600479125977, + 2.0194129943847656, + -6.255476951599121 + ] + }, + { + "mesh":2815, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube58.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.840343475341797, + 1.2924860715866089, + -5.599404811859131 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube574", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":2816, + "name":"pasted__pasted__pasted__pasted__pCylinder849", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.52398109436035, + 0.6754261255264282, + 13.790817260742188 + ] + }, + { + "mesh":2817, + "name":"Circle3065", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.637501835823059, + 3.107913017272949 + ] + }, + { + "mesh":2818, + "name":"pasted__pasted__pTorus038", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.263608932495117, + 5.048587322235107, + 0.8052641749382019 + ] + }, + { + "mesh":2819, + "name":"Circle2026", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.115407943725586, + -6.298208713531494 + ] + }, + { + "mesh":2820, + "name":"Object2209", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.40485954284668, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2821, + "name":"Circle1560", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0430431365966797, + -4.659715175628662 + ] + }, + { + "mesh":2822, + "name":"Text005", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.385305404663086, + 1.5678759813308716, + 13.136495590209961 + ] + }, + { + "mesh":2823, + "name":"Circle2008", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9946502447128296, + -5.459476947784424 + ] + }, + { + "mesh":2824, + "name":"Circle2995", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10127067565918, + 1.118975043296814, + 3.6717348098754883 + ] + }, + { + "mesh":2825, + "name":"pasted__pasted__pasted__pCylinder169", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.723842620849609, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":2826, + "name":"Obj3d66-647191-13-201", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.97991180419922, + 1.6729644536972046, + 18.3248291015625 + ] + }, + { + "mesh":2827, + "name":"Circle1908", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.7725459337234497, + -4.808572769165039 + ] + }, + { + "mesh":2828, + "name":"pasted__pasted__pCube854", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.403837203979492, + 1.027711272239685, + 15.165143966674805 + ] + }, + { + "mesh":2829, + "name":"Circle1684", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.044485092163086, + 1.9323447942733765, + -5.460317134857178 + ] + }, + { + "mesh":2830, + "name":"pasted__pasted__pCylinder416", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.928682327270508, + 3.146695137023926, + -8.400985717773438 + ] + }, + { + "mesh":2831, + "name":"Object2608", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.884347915649414, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2832, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube544", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 0.8592513799667358, + -8.726207733154297 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube530", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface678", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -5.439333915710449 + ] + }, + { + "mesh":2833, + "name":"pasted__pasted__pasted__pCylinder156", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.513994216918945, + 0.5030604600906372, + 12.94787883758545 + ] + }, + { + "mesh":2834, + "name":"Circle2972", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9755452871322632, + 4.434308052062988 + ] + }, + { + "mesh":2835, + "name":"Rectangle557", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.3649816513061523, + 0.0907975435256958, + 13.722539901733398 + ] + }, + { + "mesh":2836, + "name":"pasted__pasted__pasted__pCube181", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 0.8213735818862915, + 16.179706573486328 + ] + }, + { + "mesh":2837, + "name":"Circle2230", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9080475568771362, + -1.5039522647857666 + ] + }, + { + "mesh":2838, + "name":"Circle1977", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.7284499406814575, + -5.459476947784424 + ] + }, + { + "mesh":2839, + "name":"Object2431", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.894187927246094, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2840, + "name":"pasted__pasted__pasted__pCylinder146", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.565742492675781, + 0.9016937017440796, + 12.94787883758545 + ] + }, + { + "mesh":2841, + "name":"Object108", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.555116653442383, + 0.14451873302459717, + 18.492671966552734 + ] + }, + { + "mesh":2842, + "name":"Object2069", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.0786237716674805, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2843, + "name":"Circle3292", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03337287902832, + 0.19340407848358154, + 3.677396059036255 + ] + }, + { + "mesh":2844, + "name":"pasted__pasted__pCylinder481", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.186412811279297, + 2.564108371734619, + 6.5454630851745605 + ] + }, + { + "mesh":2845, + "name":"Rectangle362", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.39249610900879, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":2846, + "name":"Circle3168", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.4051316976547241, + 3.768059015274048 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube522", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":2847, + "name":"Circle1841", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.940156936645508, + 1.9987486600875854, + -4.6732635498046875 + ] + }, + { + "mesh":2848, + "name":"pasted__pasted__pCube401.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.45823860168457, + 5.073940753936768, + -5.23762845993042 + ] + }, + { + "mesh":2849, + "name":"Rectangle1278", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137235641479492, + 0.14451825618743896, + -0.6486149430274963 + ] + }, + { + "mesh":2850, + "name":"Sphere031", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.720693588256836, + 1.3344711065292358, + -5.0331244468688965 + ] + }, + { + "mesh":2851, + "name":"pasted__pasted__pCylinder334", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.874229431152344, + 4.853360652923584, + -5.493710517883301 + ] + }, + { + "mesh":2852, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface694", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.074766159057617, + 0.7311524152755737, + 1.8214927911758423 + ] + }, + { + "mesh":2853, + "name":"Rectangle1156", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.36827278137207, + 0.14451777935028076, + 15.133939743041992 + ] + }, + { + "mesh":2854, + "name":"pasted__pasted__pasted__pasted__pCylinder466", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.147626876831055, + 0.28987395763397217, + 14.820230484008789 + ] + }, + { + "mesh":2855, + "name":"Object2667", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801374435424805, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2856, + "name":"Object2384", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.397829055786133, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2857, + "name":"Circle2861", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3365494012832642, + 0.1751767098903656 + ] + }, + { + "mesh":2858, + "name":"pasted__pasted__pasted__pPlane275", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -13.208761215209961, + 0.38407838344573975, + 12.949873924255371 + ] + }, + { + "mesh":2859, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube348", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.43475341796875, + 1.429686188697815, + 5.3770341873168945 + ] + }, + { + "mesh":2860, + "name":"Circle2033", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.6830538511276245, + -6.046234607696533 + ] + }, + { + "mesh":2861, + "name":"Obj3d66-647191-25-204", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.978816986083984, + 1.6649445295333862, + 18.297840118408203 + ] + }, + { + "mesh":2862, + "name":"Circle2333", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.379219889640808, + -2.602159261703491 + ] + }, + { + "mesh":2863, + "name":"Circle1783", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.987939834594727, + 1.9541813135147095, + -4.690221786499023 + ] + }, + { + "mesh":2864, + "name":"pasted__pasted__pasted__pCylinder727", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565818786621, + 0.5030606985092163, + 16.56253433227539 + ] + }, + { + "mesh":2865, + "name":"pasted__pasted__pasted__pCube413", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 1.0594743490219116, + -6.668007850646973 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface673", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -9.601222038269043 + ] + }, + { + "mesh":2866, + "name":"pasted__pasted__pasted__pCube166", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 1.399283766746521, + 14.271536827087402 + ] + }, + { + "mesh":2867, + "name":"pasted__pasted__pasted__polySurface545", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9275493621826172, + 1.1616283655166626, + 6.422645568847656 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube352", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":2868, + "name":"Line2464", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9802961349487305, + 1.0256141424179077, + -13.768403053283691 + ] + }, + { + "mesh":2869, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder070", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.839139938354492, + 0.12095391750335693, + -2.091294527053833 + ] + }, + { + "mesh":2870, + "name":"Object2509", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.78449821472168, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2871, + "name":"Circle2761", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.978334426879883, + 2.1535534858703613, + 0.6277795433998108 + ] + }, + { + "mesh":2872, + "name":"polySurface322", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.964534759521484, + 1.4434689283370972, + 14.938663482666016 + ] + }, + { + "mesh":2873, + "name":"pasted__pasted__pCube529", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.472095489501953, + -0.6245768070220947, + -7.501795768737793 + ] + }, + { + "mesh":2874, + "name":"Circle2250", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.898542404174805, + 1.357746958732605, + -1.8054697513580322 + ] + }, + { + "mesh":2875, + "name":"Rectangle1291", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -0.4316885471343994 + ] + }, + { + "mesh":2876, + "name":"pasted__pasted__pasted__pasted__pCylinder487", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.807779312133789, + 0.6754261255264282, + 15.849641799926758 + ] + }, + { + "mesh":2877, + "name":"Object2549", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8477840423584, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2878, + "name":"Circle2036", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.7168024778366089, + -6.065249443054199 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface595", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":2879, + "name":"pasted__pasted__pasted__pCube160", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.75358772277832, + 0.25255048274993896, + 16.591156005859375 + ] + }, + { + "mesh":2880, + "name":"Obj3d66-647191-22-677", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747623443603516, + 1.6631056070327759, + -9.273892402648926 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube164", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":2881, + "name":"Circle2310", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0453553199768066, + -2.22849702835083 + ] + }, + { + "mesh":2882, + "name":"Circle2954", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5991793870925903, + 4.222262382507324 + ] + }, + { + "mesh":2883, + "name":"Circle3156", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08858871459961, + 1.7848728895187378, + 3.6717348098754883 + ] + }, + { + "mesh":2884, + "name":"Circle1761", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15157699584961, + 1.3550041913986206, + -5.868593692779541 + ] + }, + { + "mesh":2885, + "name":"Obj3d66-647191-28-060", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980655670166016, + 1.6571954488754272, + 18.32697868347168 + ] + }, + { + "mesh":2886, + "name":"Circle2088", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.94892692565918, + 2.177896499633789, + -5.459476947784424 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube164", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":2887, + "name":"Circle2210", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.705553412437439, + -1.618038296699524 + ] + }, + { + "mesh":2888, + "name":"pasted__pasted__pasted__pasted__pCylinder877", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.863826751708984, + 1.0796922445297241, + 14.820230484008789 + ] + }, + { + "mesh":2889, + "name":"Object2153", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.483612060546875, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2890, + "name":"polySurface107", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.605146408081055, + 1.4009381532669067, + 14.938828468322754 + ] + }, + { + "mesh":2891, + "name":"pasted__pasted__pasted__pCube588", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.042356491088867, + 0.25255119800567627, + 12.952010154724121 + ] + }, + { + "mesh":2892, + "name":"pasted__pasted__pCube806", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036029815673828, + 5.052017688751221, + 4.507286548614502 + ] + }, + { + "mesh":2893, + "name":"pasted__pasted__pCylinder627", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.063417434692383, + 4.930069446563721, + 3.9380698204040527 + ] + }, + { + "mesh":2894, + "name":"Circle2279", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.779154658317566, + -2.22849702835083 + ] + }, + { + "mesh":2895, + "name":"pasted__pasted__pasted__pCylinder620", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.8592529296875, + 0.9016937017440796, + 12.94787883758545 + ] + }, + { + "mesh":2896, + "name":"Circle2884", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.017343521118164, + 1.867205262184143, + 1.3486353158950806 + ] + }, + { + "mesh":2897, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube379", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.057670593261719, + 0.7419441938400269, + 7.666250705718994 + ] + }, + { + "mesh":2898, + "name":"pasted__pasted__pCube377.005", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.416322708129883, + 2.6223349571228027, + -3.399028778076172 + ] + }, + { + "mesh":2899, + "name":"Circle2820", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.996707916259766, + 1.9449390172958374, + -0.11663418263196945 + ] + }, + { + "mesh":2900, + "name":"Circle1845", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.921781539916992, + 1.9449394941329956, + -4.704038619995117 + ] + }, + { + "mesh":2901, + "name":"Line2410", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.687036514282227, + 0.19340407848358154, + -5.454657077789307 + ] + }, + { + "mesh":2902, + "name":"pasted__pasted__pasted__pCube176", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 0.9795023202896118, + 14.92426586151123 + ] + }, + { + "mesh":2903, + "name":"pasted__pasted__pasted__pCube662", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9360036849975586, + 1.0594733953475952, + 5.875432014465332 + ] + }, + { + "mesh":2904, + "name":"pasted__pasted__pCylinder611", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.32263946533203, + 4.270847797393799, + 0.8275122046470642 + ] + }, + { + "mesh":2905, + "name":"pasted__pasted__pCube742", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.724905014038086, + 1.7704378366470337, + 5.491721153259277 + ] + }, + { + "mesh":2906, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube368", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + -5.571362018585205 + ] + }, + { + "mesh":2907, + "name":"Object2196", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.42314338684082, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2908, + "name":"Circle3016", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6817554235458374, + 3.6717348098754883 + ] + }, + { + "mesh":2909, + "name":"pasted__pasted__pasted__pasted__pPipe074", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.327337265014648, + 0.43142926692962646, + 13.799349784851074 + ] + }, + { + "mesh":2910, + "name":"Circle2669", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1214122772216797, + 0.6277795433998108 + ] + }, + { + "mesh":2911, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder198", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.039926528930664, + 1.5399528741836548, + 13.959920883178711 + ] + }, + { + "mesh":2912, + "name":"Circle1802", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.06511688232422, + 1.725868821144104, + -4.819477081298828 + ] + }, + { + "mesh":2913, + "name":"Line2442", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.428354263305664, + 2.348745822906494, + 0.5694326758384705 + ] + }, + { + "mesh":2914, + "name":"Circle1892", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.76585578918457, + 1.4905503988265991, + -4.965196132659912 + ] + }, + { + "mesh":2915, + "name":"Obj3d66-647191-12-199", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.583311080932617, + 1.6637946367263794, + 5.562098503112793 + ] + }, + { + "mesh":2916, + "name":"Circle2335", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.637501835823059, + -2.7923190593719482 + ] + }, + { + "mesh":2917, + "name":"pasted__pasted__pasted__pasted__pCylinder856", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.6024112701416, + 1.079692006111145, + 13.938788414001465 + ] + }, + { + "mesh":2918, + "name":"Circle1671", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.996707916259766, + 2.092106819152832, + -5.460317134857178 + ] + }, + { + "mesh":2919, + "name":"Circle2100", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.90482521057129, + 2.0303969383239746, + -5.459476947784424 + ] + }, + { + "mesh":2920, + "name":"Object2126", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.423269271850586, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":2921, + "name":"Circle3048", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9439455270767212, + 3.6717348098754883 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube195", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -5.439333915710449 + ] + }, + { + "mesh":2922, + "name":"Circle2617", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1154088973999023, + 1.4775357246398926 + ] + }, + { + "mesh":2923, + "name":"Circle2609", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9530459642410278, + 1.3776769638061523 + ] + }, + { + "mesh":2924, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface787", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9352035522460938, + 1.0885118246078491, + 5.275137901306152 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube171", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":2925, + "name":"Rectangle571", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9651451110839844, + 0.17812669277191162, + 12.19666576385498 + ] + }, + { + "mesh":2926, + "name":"Circle2158", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.88644790649414, + 1.8237167596817017, + -6.144688129425049 + ] + }, + { + "mesh":2927, + "name":"pasted__pasted__pCube691", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.460060119628906, + 2.603695869445801, + -0.7576236724853516 + ] + }, + { + "mesh":2928, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface701", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.498476028442383, + 0.6330384016036987, + 12.759177207946777 + ] + }, + { + "mesh":2929, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube244", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 0.3764752149581909, + -5.887722492218018 + ] + }, + { + "mesh":2930, + "name":"Circle2561", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15263557434082, + 1.4791637659072876, + -1.7342162132263184 + ] + }, + { + "mesh":2931, + "name":"Obj3d66-647191-10-420", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.993032455444336, + 1.6559807062149048, + 18.297300338745117 + ] + }, + { + "mesh":2932, + "name":"Rectangle452", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.6031150817871094, + 0.3215755224227905, + 11.644918441772461 + ] + }, + { + "mesh":2933, + "name":"polySurface337", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.127685546875, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":2934, + "name":"pasted__pasted__pCylinder471", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.03581428527832, + 3.146695137023926, + 7.389111042022705 + ] + }, + { + "mesh":2935, + "name":"Object2564", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.826684951782227, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2936, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder059", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + 0.07818832993507385 + ] + }, + { + "mesh":2937, + "name":"Rectangle011.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.12613868713379, + 0.279168963432312, + -5.439942836761475 + ] + }, + { + "mesh":2938, + "name":"pasted__pasted__pCube720", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.45350456237793, + 5.064568996429443, + 0.9170178174972534 + ] + }, + { + "mesh":2939, + "name":"polySurface378", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.413721084594727, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":2940, + "name":"pasted__pasted__pPipe12", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.159643173217773, + 2.565361976623535, + -3.1875362396240234 + ] + }, + { + "mesh":2941, + "name":"Circle3285", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.326295256614685, + 4.135623931884766 + ] + }, + { + "mesh":2942, + "name":"Circle2355", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.817560076713562, + -2.893728494644165 + ] + }, + { + "mesh":2943, + "name":"Circle1721", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.978334426879883, + 1.9987479448318481, + -6.235505104064941 + ] + }, + { + "mesh":2944, + "name":"Circle1800", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.057769775390625, + 1.7476130723953247, + -4.807167053222656 + ] + }, + { + "mesh":2945, + "name":"pasted__pasted__pCylinder484", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.173770904541016, + 3.2234039306640625, + 6.807459831237793 + ] + }, + { + "mesh":2946, + "name":"Circle2519", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.017343521118164, + 1.867205262184143, + -1.5076414346694946 + ] + }, + { + "mesh":2947, + "name":"Circle2150", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.90482521057129, + 1.8780766725540161, + -6.17546272277832 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface649", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.393779754638672 + ] + }, + { + "mesh":2948, + "name":"Circle1880", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.858854293823242, + 1.4321249723434448, + -4.809453010559082 + ] + }, + { + "mesh":2949, + "name":"Object2025", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.140501022338867, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2950, + "name":"Object2251", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.46533203125, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2951, + "name":"Object2208", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.406267166137695, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":2952, + "name":"Circle3149", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0628604888916, + 1.8708983659744263, + 3.6717348098754883 + ] + }, + { + "mesh":2953, + "name":"Rectangle1193", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.385852813720703, + 1.5912657976150513, + 16.703571319580078 + ] + }, + { + "mesh":2954, + "name":"Circle2007", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 2.007326602935791, + -5.459476947784424 + ] + }, + { + "mesh":2955, + "name":"Rectangle935", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.70414924621582, + 1.039061188697815, + 3.677396297454834 + ] + }, + { + "mesh":2956, + "name":"pasted__pasted__pasted__pCylinder168", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.565742492675781, + 0.5030606985092163, + 16.585969924926758 + ] + }, + { + "mesh":2957, + "name":"Rectangle1382", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451777935028076, + 7.239199638366699 + ] + }, + { + "mesh":2958, + "name":"pasted__pasted__pCube853", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.403837203979492, + 1.027711272239685, + 15.27509880065918 + ] + }, + { + "mesh":2959, + "name":"Circle2354", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.828814148902893, + -2.90006685256958 + ] + }, + { + "mesh":2960, + "name":"Circle3295", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.5336856842041, + 1.0960592031478882, + -5.688488960266113 + ] + }, + { + "mesh":2961, + "name":"Circle1683", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.04081153869629, + 1.9446343183517456, + -5.460317134857178 + ] + }, + { + "mesh":2962, + "name":"Object2607", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.885753631591797, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2963, + "name":"pasted__pasted__pasted__polySurface562", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.411169052124023, + 0.6836510896682739, + 16.377607345581055 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface677", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -5.439333915710449 + ] + }, + { + "mesh":2964, + "name":"Circle2192", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.724679946899414, + 1.3809508085250854, + -5.836298942565918 + ] + }, + { + "mesh":2965, + "name":"Object2655", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.81825065612793, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2966, + "name":"Object1975", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.091281890869141, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2967, + "name":"pasted__pasted__pasted__pasted__pCylinder887", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.6024112701416, + 0.6754261255264282, + 15.9976167678833 + ] + }, + { + "mesh":2968, + "name":"Object2553", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.842159271240234, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":2969, + "name":"Circle1881", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.76691246032715, + 1.3550046682357788, + -5.040175437927246 + ] + }, + { + "mesh":2970, + "name":"pasted__pasted__pasted__pCylinder145", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.565742492675781, + 1.2660449743270874, + 12.94787883758545 + ] + }, + { + "mesh":2971, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube336", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.053747177124023, + 1.0292898416519165, + -4.2722320556640625 + ] + }, + { + "mesh":2972, + "name":"Object106", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.99311065673828, + 0.14451873302459717, + 18.49267578125 + ] + }, + { + "mesh":2973, + "name":"Object2068", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.080034255981445, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":2974, + "name":"pasted__pasted__pCylinder480", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.17373275756836, + 3.146695137023926, + 7.389111042022705 + ] + }, + { + "mesh":2975, + "name":"Rectangle1337", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + -1.1110957860946655 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube179", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":2976, + "name":"Rectangle361.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.015371322631836, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":2977, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder202", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.504236221313477, + 0.6623357534408569, + 12.767040252685547 + ] + }, + { + "mesh":2978, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface517", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6829967498779297, + 0.6149352788925171, + 14.812023162841797 + ] + }, + { + "mesh":2979, + "name":"Obj3d66-647191-8-576", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.535511016845703, + 1.6444579362869263, + 5.5750579833984375 + ] + }, + { + "mesh":2980, + "name":"Circle3057", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.4387444257736206, + 3.191073179244995 + ] + }, + { + "mesh":2981, + "name":"pasted__pasted__pasted__pPlane325", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.4700870513916, + 0.3886605501174927, + 13.270601272583008 + ] + }, + { + "mesh":2982, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pasted__pasted__pasted__polySurface553", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.068794250488281, + 0.6837166547775269, + 1.1522021293640137 + ] + }, + { + "mesh":2983, + "name":"pasted__pasted__pasted__pCylinder672", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.281946182250977, + 0.9016937017440796, + 12.94787883758545 + ] + }, + { + "mesh":2984, + "name":"Rectangle1155", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.36827278137207, + 0.14451777935028076, + 16.01140785217285 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface713", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.3501960039138794 + ] + }, + { + "mesh":2985, + "name":"pasted__pasted__pasted__pasted__pCylinder465", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.068897247314453, + 0.28987395763397217, + 14.968375205993652 + ] + }, + { + "mesh":2986, + "name":"Circle2860", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.946138381958008, + 2.0792741775512695, + -0.20130005478858948 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface728", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.656999945640564 + ] + }, + { + "mesh":2987, + "name":"Circle2032", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.6718040704727173, + -6.039896488189697 + ] + }, + { + "mesh":2988, + "name":"Circle1475", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6825164556503296, + -6.049492359161377 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube562", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":2989, + "name":"Circle3246", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.965890884399414, + 2.019413471221924, + 4.478760719299316 + ] + }, + { + "mesh":2990, + "name":"Obj3d66-647191-24-604", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.975162506103516, + 1.658399224281311, + 18.297840118408203 + ] + }, + { + "name":"Camera010.Target", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -26.04180335998535, + 4.817336559295654, + -24.159818649291992 + ] + }, + { + "mesh":2991, + "name":"Circle2332", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1140856742858887, + -3.0672290325164795 + ] + }, + { + "mesh":2992, + "name":"Circle2536", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.079818725585938, + 1.6823810338974, + -1.6122764348983765 + ] + }, + { + "mesh":2993, + "name":"pasted__pasted__pCylinder674", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.872058868408203, + 2.0814852714538574, + 5.37495231628418 + ] + }, + { + "mesh":2994, + "name":"pasted__pasted__pasted__pCube720", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 0.9795023202896118, + 14.8716459274292 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface672", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -9.601222038269043 + ] + }, + { + "mesh":2995, + "name":"pasted__pasted__pasted__pCube165", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 1.2411543130874634, + 14.271536827087402 + ] + }, + { + "mesh":2996, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder126", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.190902709960938, + 0.8538147211074829, + 4.092645645141602 + ] + }, + { + "mesh":2997, + "name":"pasted__pasted__pasted__pCube656", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9547863006591797, + 1.0161925554275513, + 6.270760536193848 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube351", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":2998, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder069", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.838584899902344, + 0.12095391750335693, + -2.051704168319702 + ] + }, + { + "mesh":2999, + "name":"Object2508", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.785905838012695, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube180", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":3000, + "name":"Circle2934", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6268061399459839, + 4.237826824188232 + ] + }, + { + "mesh":3001, + "name":"polySurface321", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.991832733154297, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":3002, + "name":"pasted__pasted__pCylinder606", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.6335506439209, + 0.3064950704574585, + -0.7389599084854126 + ] + }, + { + "mesh":3003, + "name":"Circle3189", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.970985412597656, + 2.0202722549438477, + 2.8842363357543945 + ] + }, + { + "mesh":3004, + "name":"Circle2249", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.705896377563477, + 1.3744639158248901, + -1.8054697513580322 + ] + }, + { + "mesh":3005, + "name":"Rectangle1290", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 2.1574032306671143 + ] + }, + { + "mesh":3006, + "name":"Object2548", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.849185943603516, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3007, + "name":"Circle1983", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8425358533859253, + -5.459476947784424 + ] + }, + { + "mesh":3008, + "name":"Obj3d66-647191-21-793", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.748655319213867, + 1.6637946367263794, + -9.273892402648926 + ] + }, + { + "mesh":3009, + "name":"Circle2309", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0580310821533203, + -2.22849702835083 + ] + }, + { + "mesh":3010, + "name":"Obj3d66-647191-3-591", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3648033142089844, + 1.7478052377700806, + -15.650235176086426 + ] + }, + { + "mesh":3011, + "name":"Object1957", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.116595268249512, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3012, + "name":"Circle2087", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.952600479125977, + 2.190188407897949, + -5.459476947784424 + ] + }, + { + "mesh":3013, + "name":"Rectangle1346", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384544610977173, + 0.9808641672134399 + ] + }, + { + "mesh":3014, + "name":"pasted__pasted__pasted__pasted__pCylinder876", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785097122192383, + 1.0796922445297241, + 14.968375205993652 + ] + }, + { + "mesh":3015, + "name":"Object2152", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.48501968383789, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3016, + "name":"polySurface106", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.6192779541015625, + 1.4434689283370972, + 14.938663482666016 + ] + }, + { + "mesh":3017, + "name":"pasted__pasted__pasted__pasted__pCylinder789", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.492883682250977, + 0.28987395763397217, + 13.790817260742188 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group140", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 2.3852198123931885 + ] + }, + { + "mesh":3018, + "name":"pasted__pasted__pCube805", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + 5.375654697418213 + ] + }, + { + "mesh":3019, + "name":"Circle2278", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7918308973312378, + -2.22849702835083 + ] + }, + { + "mesh":3020, + "name":"pasted__pasted__pasted__pCylinder619", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.701154708862305, + 0.5030606985092163, + 12.94787883758545 + ] + }, + { + "mesh":3021, + "name":"Rectangle444.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 11.619258880615234, + 1.2100437879562378, + 1.9282177686691284 + ] + }, + { + "mesh":3022, + "name":"Rectangle342.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 6.149892807006836, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":3023, + "name":"pasted__pasted__pasted__pasted__pCylinder480", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886508941650391, + 1.0796922445297241, + 14.672083854675293 + ] + }, + { + "mesh":3024, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface741", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.071154594421387, + 0.7688859701156616, + 7.761640548706055 + ] + }, + { + "mesh":3025, + "name":"Circle3093", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5709763765335083, + 3.145380735397339 + ] + }, + { + "mesh":3026, + "name":"Object2411", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.894445419311523, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":3027, + "name":"Circle2548", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.12727165222168, + 1.5420070886611938, + -1.691746711730957 + ] + }, + { + "mesh":3028, + "name":"pasted__pasted__pCube401.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.556926727294922, + 5.064568996429443, + -5.23762845993042 + ] + }, + { + "mesh":3029, + "name":"pasted__pasted__pasted__polySurface547", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9251632690429688, + 1.1616283655166626, + 6.05528450012207 + ] + }, + { + "mesh":3030, + "name":"Circle1862", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.85563087463379, + 1.7512263059616089, + -4.814828395843506 + ] + }, + { + "mesh":3031, + "name":"pasted__pasted__pCylinder600", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.289690017700195, + 4.853360652923584, + 0.8235298991203308 + ] + }, + { + "mesh":3032, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube329", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + 5.0726776123046875 + ] + }, + { + "mesh":3033, + "name":"pasted__pasted__pCube811", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + 3.6737985610961914 + ] + }, + { + "mesh":3034, + "name":"Line2468", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457387924194336, + 1.0256141424179077, + 16.99216651916504 + ] + }, + { + "mesh":3035, + "name":"pasted__pasted__pCube592", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.789796829223633, + 3.3579039573669434, + 6.4173712730407715 + ] + }, + { + "mesh":3036, + "name":"Object2195", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.424551010131836, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3037, + "name":"Object1860", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.13347053527832, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3038, + "name":"Object2522", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.885753631591797, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3039, + "name":"Line2441", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.87018394470215, + 2.191924571990967, + 1.4504928588867188 + ] + }, + { + "mesh":3040, + "name":"pasted__pasted__pasted__pCylinder460", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9281158447265625, + 0.8645826578140259, + -7.136462211608887 + ] + }, + { + "mesh":3041, + "name":"Obj3d66-647191-11-073", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.586875915527344, + 1.6471415758132935, + 5.586601734161377 + ] + }, + { + "mesh":3042, + "name":"Circle2334", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6262482404708862, + -2.7859809398651123 + ] + }, + { + "mesh":3043, + "name":"Circle2789", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08123779296875, + 1.809451699256897, + 0.6277795433998108 + ] + }, + { + "mesh":3044, + "name":"Circle1670", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.993036270141602, + 2.104396343231201, + -5.460317134857178 + ] + }, + { + "mesh":3045, + "name":"Circle2099", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.90850257873535, + 2.0426883697509766, + -5.459476947784424 + ] + }, + { + "mesh":3046, + "name":"pasted__pasted__pPipe31", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.531618118286133, + 1.5744904279708862, + -5.404742240905762 + ] + }, + { + "mesh":3047, + "name":"Circle2446", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.011409759521484, + 1.9018915891647339, + -2.948291063308716 + ] + }, + { + "mesh":3048, + "name":"Circle3047", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.956621527671814, + 3.6717348098754883 + ] + }, + { + "mesh":3049, + "name":"Circle1477", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8171836137771606, + -5.460317134857178 + ] + }, + { + "mesh":3050, + "name":"pasted__pasted__pasted__pCube157", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.678359031677246, + 0.25255119800567627, + 16.590106964111328 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube532", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":3051, + "name":"Circle2616", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84649085998535, + 1.357746958732605, + 1.0508066415786743 + ] + }, + { + "mesh":3052, + "name":"Circle2410", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.029787063598633, + 1.9815021753311157, + -2.22849702835083 + ] + }, + { + "mesh":3053, + "name":"Circle1621", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9439455270767212, + -5.460317134857178 + ] + }, + { + "mesh":3054, + "name":"pasted__pasted__pCylinder436", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.048494338989258, + 2.564108371734619, + -7.436709880828857 + ] + }, + { + "mesh":3055, + "name":"pasted__pasted__pasted__pCube664", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9360036849975586, + 0.7962983846664429, + 5.875431060791016 + ] + }, + { + "mesh":3056, + "name":"Circle2790", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.084911346435547, + 1.7971621751785278, + 0.6277795433998108 + ] + }, + { + "mesh":3057, + "name":"Object2489", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.812623977661133, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3058, + "name":"Rectangle570", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9651451110839844, + 0.6124783754348755, + 12.646245956420898 + ] + }, + { + "mesh":3059, + "name":"Circle1826", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.428735375404358, + -5.1175856590271 + ] + }, + { + "mesh":3060, + "name":"Circle2563", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.687036514282227, + 0.19340407848358154, + -2.2228355407714844 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube541", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":3061, + "name":"Rectangle1033", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.095331192016602, + 1.4309507608413696, + -9.548245429992676 + ] + }, + { + "mesh":3062, + "name":"Rectangle1362", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8114662170410156, + 0.5975691080093384, + 7.767119407653809 + ] + }, + { + "mesh":3063, + "name":"polySurface336", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.06135368347168, + 1.4533334970474243, + 16.16686248779297 + ] + }, + { + "mesh":3064, + "name":"Circle1535", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7950526475906372, + -6.112873077392578 + ] + }, + { + "mesh":3065, + "name":"pasted__pasted__pCylinder470", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.049951553344727, + 2.528435707092285, + 6.57615852355957 + ] + }, + { + "mesh":3066, + "name":"Rectangle142", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.938993453979492, + 0.14451849460601807, + -14.551491737365723 + ] + }, + { + "mesh":3067, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube579", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 0.9979475736618042, + -3.2089879512786865 + ] + }, + { + "mesh":3068, + "name":"Rectangle010.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.13985252380371, + 1.063360571861267, + -5.439942836761475 + ] + }, + { + "mesh":3069, + "name":"pasted__pasted__pCube719", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.451486587524414, + 5.052017688751221, + 0.6159350872039795 + ] + }, + { + "mesh":3070, + "name":"pasted__pasted__pCylinder558", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.176162719726562, + 1.5833171606063843, + 0.0755268931388855 + ] + }, + { + "mesh":3071, + "name":"Circle1903", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.7050243616104126, + -4.846601486206055 + ] + }, + { + "mesh":3072, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube270", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 0.3764752149581909, + 0.07875432074069977 + ] + }, + { + "mesh":3073, + "name":"Circle1979", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.6973201036453247, + -5.459476947784424 + ] + }, + { + "mesh":3074, + "name":"polySurface359", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.321346282958984, + 1.4009381532669067, + 14.938828468322754 + ] + }, + { + "mesh":3075, + "name":"Circle3284", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.946138381958008, + 2.0678772926330566, + 4.511838436126709 + ] + }, + { + "mesh":3076, + "name":"Circle2685", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9185928106307983, + 0.6277795433998108 + ] + }, + { + "mesh":3077, + "name":"pasted__pasted__pCube579", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.473180770874023, + 0.8707844018936157, + 6.4971923828125 + ] + }, + { + "mesh":3078, + "name":"Circle1720", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.974660873413086, + 2.009509563446045, + -6.2416605949401855 + ] + }, + { + "mesh":3079, + "name":"Circle2149", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.923200607299805, + 1.9324368238449097, + -6.20623779296875 + ] + }, + { + "mesh":3080, + "name":"Object2024", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.141911506652832, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3081, + "name":"Object2207", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.407674789428711, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3082, + "name":"Text004", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.014364242553711, + 1.5678759813308716, + 13.136495590209961 + ] + }, + { + "mesh":3083, + "name":"pasted__pasted__pasted__pCylinder721", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565055847168, + 0.5030604600906372, + 15.344712257385254 + ] + }, + { + "mesh":3084, + "name":"Rectangle934", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.410043716430664, + 1.039061188697815, + 3.2587060928344727 + ] + }, + { + "mesh":3085, + "name":"Rectangle1381", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 8.100261688232422 + ] + }, + { + "mesh":3086, + "name":"pasted__pasted__pasted__pasted__polySurface326", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.977703094482422, + 1.0412582159042358, + 15.849638938903809 + ] + }, + { + "mesh":3087, + "name":"pasted__pasted__pCube410", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.309444427490234, + 1.7704380750656128, + -7.810951232910156 + ] + }, + { + "mesh":3088, + "name":"Circle2896", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.06144142150879, + 1.7367414236068726, + 1.2747752666473389 + ] + }, + { + "mesh":3089, + "name":"pasted__pasted__pCylinder524", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.95345687866211, + 2.3313565254211426, + 0.08851037919521332 + ] + }, + { + "mesh":3090, + "name":"Circle3117", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.101621627807617, + 1.3890365362167358, + 3.6717348098754883 + ] + }, + { + "mesh":3091, + "name":"pasted__pasted__pCube852", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.403837203979492, + 1.027711033821106, + 14.516190528869629 + ] + }, + { + "mesh":3092, + "name":"Circle1682", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03713607788086, + 1.9569236040115356, + -5.460317134857178 + ] + }, + { + "mesh":3093, + "name":"Rectangle013.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.12613868713379, + 0.3068188428878784, + -5.176662921905518 + ] + }, + { + "mesh":3094, + "name":"pasted__pasted__pasted__pCube742", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 0.8213735818862915, + 15.57959270477295 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube342", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -5.439333915710449 + ] + }, + { + "mesh":3095, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube640", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 0.8592516183853149, + 2.6694743633270264 + ] + }, + { + "mesh":3096, + "name":"Circle2647", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7411259412765503, + 0.6277795433998108 + ] + }, + { + "mesh":3097, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder7", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + -5.308793544769287 + ] + }, + { + "mesh":3098, + "name":"Circle1916", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8738287687301636, + -4.751529693603516 + ] + }, + { + "mesh":3099, + "name":"Circle1975", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.7538021802902222, + -5.459476947784424 + ] + }, + { + "mesh":3100, + "name":"pasted__pasted__pasted__pPlane087", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.863504409790039, + 0.38407838344573975, + 12.949873924255371 + ] + }, + { + "mesh":3101, + "name":"Rectangle787", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451777935028076, + -4.7472429275512695 + ] + }, + { + "mesh":3102, + "name":"Object105", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.99311065673828, + 0.14451873302459717, + -15.771601676940918 + ] + }, + { + "mesh":3103, + "name":"pasted__pasted__pTorus3", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.092384338378906, + 5.048586368560791, + -4.1542816162109375 + ] + }, + { + "mesh":3104, + "name":"Rectangle155", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.78617286682129, + 0.510698676109314, + -12.818193435668945 + ] + }, + { + "mesh":3105, + "name":"Object2067", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.081439018249512, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3106, + "name":"Rectangle884", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.858423233032227, + 0.3068186044692993, + -5.439942836761475 + ] + }, + { + "mesh":3107, + "name":"pasted__pasted__pasted__pCube696", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 1.2411547899246216, + 15.57959270477295 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube357", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -0.5263744592666626 + ] + }, + { + "mesh":3108, + "name":"Circle3192", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.02610969543457, + 1.8588446378707886, + 2.9765613079071045 + ] + }, + { + "mesh":3109, + "name":"pasted__pasted__pCylinder479", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.187868118286133, + 2.528435707092285, + 6.57615852355957 + ] + }, + { + "mesh":3110, + "name":"Circle2005", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 2.0326790809631348, + -5.459476947784424 + ] + }, + { + "mesh":3111, + "name":"pasted__pasted__extrudedSurface022", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.621416091918945, + -1.5230659246444702, + -7.731599807739258 + ] + }, + { + "mesh":3112, + "name":"pasted__pasted__pasted__pCylinder736", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.929457664489746, + 0.8645821809768677, + -1.3466020822525024 + ] + }, + { + "mesh":3113, + "name":"Obj3d66-647191-1-659", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567583084106445, + 1.670127511024475, + -15.54101848602295 + ] + }, + { + "mesh":3114, + "name":"Circle3120", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.946138381958008, + 2.243314266204834, + 3.6717348098754883 + ] + }, + { + "mesh":3115, + "name":"Object2360", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.43157958984375, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3116, + "name":"Circle1606", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1340889930725098, + -5.460317134857178 + ] + }, + { + "mesh":3117, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube056", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137231826782227, + 0.6166740655899048, + 1.1836469173431396 + ] + }, + { + "mesh":3118, + "name":"pasted__pasted__pasted__pCube151", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749580383300781, + 0.25255048274993896, + 12.95201301574707 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube559", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":3119, + "name":"Rectangle1154", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.36827278137207, + 0.14451777935028076, + 16.01140785217285 + ] + }, + { + "mesh":3120, + "name":"pasted__pasted__pasted__pasted__pCylinder464", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886205673217773, + 0.28987395763397217, + 14.968205451965332 + ] + }, + { + "mesh":3121, + "name":"Circle2859", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.236181259155273, + 1.3601590394973755, + 0.20655253529548645 + ] + }, + { + "mesh":3122, + "name":"Circle2478", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.084911346435547, + 1.6866551637649536, + -2.825191020965576 + ] + }, + { + "mesh":3123, + "name":"Circle3132", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.000385284423828, + 2.0798168182373047, + 3.6717348098754883 + ] + }, + { + "mesh":3124, + "name":"Obj3d66-647191-32-922", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.452716827392578, + 1.6615828275680542, + 12.1148681640625 + ] + }, + { + "mesh":3125, + "name":"pasted__pasted__pCylinder462", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.91455841064453, + 3.146695137023926, + 7.389110088348389 + ] + }, + { + "mesh":3126, + "name":"Circle2667", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1467652320861816, + 0.6277795433998108 + ] + }, + { + "mesh":3127, + "name":"Obj3d66-647191-23-242", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.981172561645508, + 1.6626402139663696, + 18.269943237304688 + ] + }, + { + "mesh":3128, + "name":"Circle2331", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84649085998535, + 1.374463438987732, + -2.6404998302459717 + ] + }, + { + "mesh":3129, + "name":"Circle2535", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.076141357421875, + 1.693252682685852, + -1.6061210632324219 + ] + }, + { + "mesh":3130, + "name":"pasted__pasted__pasted__pCube719", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 1.2411543130874634, + 14.8716459274292 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube339", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -9.601222038269043 + ] + }, + { + "mesh":3131, + "name":"Rectangle1135", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.23808479309082, + 0.04489290714263916, + 16.411087036132812 + ] + }, + { + "mesh":3132, + "name":"pasted__pasted__pasted__polySurface544", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9243946075439453, + 0.6901217699050903, + 6.4226555824279785 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface583", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":3133, + "name":"Circle2207", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6605547666549683, + -1.6433906555175781 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface687", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -8.31318187713623 + ] + }, + { + "mesh":3134, + "name":"Circle3015", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6973201036453247, + 3.6717348098754883 + ] + }, + { + "mesh":3135, + "name":"Rectangle359.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.261137008666992, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":3136, + "name":"Circle2110", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.868074417114258, + 1.9074801206588745, + -5.459476947784424 + ] + }, + { + "mesh":3137, + "name":"Circle3179", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.000385284423828, + 1.9341775178909302, + 2.933475971221924 + ] + }, + { + "mesh":3138, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder068", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.923723220825195, + 1.7865084409713745, + -1.9509910345077515 + ] + }, + { + "mesh":3139, + "name":"Rectangle1322", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.100914001464844, + 0.39283287525177, + 1.934915542602539 + ] + }, + { + "mesh":3140, + "name":"Circle2418", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.059186935424805, + 1.8831874132156372, + -2.22849702835083 + ] + }, + { + "mesh":3141, + "name":"Circle2720", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.817560076713562, + -0.037452153861522675 + ] + }, + { + "mesh":3142, + "name":"Circle2933", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6129926443099976, + 4.230044364929199 + ] + }, + { + "mesh":3143, + "name":"polySurface320", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.008813858032227, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":3144, + "name":"Circle2248", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.757936477661133, + 1.3744639158248901, + -1.8054697513580322 + ] + }, + { + "mesh":3145, + "name":"Rectangle1289", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 2.1574032306671143 + ] + }, + { + "mesh":3146, + "name":"Text015", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.520435333251953, + 1.5770961046218872, + -13.141663551330566 + ] + }, + { + "mesh":3147, + "name":"pasted__pasted__pCylinder512", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.844924926757812, + 1.9981945753097534, + 0.08851037919521332 + ] + }, + { + "mesh":3148, + "name":"Object2547", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.850595474243164, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3149, + "name":"Obj3d66-647191-20-071", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747116088867188, + 1.6739333868026733, + -9.273892402648926 + ] + }, + { + "mesh":3150, + "name":"Rectangle1415", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.02546501159668, + 0.47970330715179443, + 2.7237420082092285 + ] + }, + { + "mesh":3151, + "name":"Circle2308", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0707077980041504, + -2.22849702835083 + ] + }, + { + "mesh":3152, + "name":"Circle2086", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.95627784729004, + 2.202479362487793, + -5.459476947784424 + ] + }, + { + "mesh":3153, + "name":"Rectangle1345", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384544610977173, + 1.2450835704803467 + ] + }, + { + "mesh":3154, + "name":"pasted__pasted__pasted__pasted__pCylinder875", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.6024112701416, + 1.0796922445297241, + 14.968205451965332 + ] + }, + { + "mesh":3155, + "name":"Object2151", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.486431121826172, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube642", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":3156, + "name":"Rectangle840", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.215822219848633, + 0.10969555377960205, + 5.471592903137207 + ] + }, + { + "mesh":3157, + "name":"polySurface105", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.646574974060059, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":3158, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube422", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + 4.649747848510742 + ] + }, + { + "mesh":3159, + "name":"Rectangle321.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + -14.482076644897461 + ] + }, + { + "mesh":3160, + "name":"pasted__pasted__pasted__pasted__pCylinder788", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414154052734375, + 0.28987395763397217, + 13.938965797424316 + ] + }, + { + "mesh":3161, + "name":"pasted__pasted__pCube587", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.075841903686523, + 3.574185371398926, + 6.459312915802002 + ] + }, + { + "mesh":3162, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube289", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9486875534057617, + 0.7022424936294556, + -8.102176666259766 + ] + }, + { + "mesh":3163, + "name":"pasted__pasted__pCube397", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + -3.933955430984497 + ] + }, + { + "mesh":3164, + "name":"Rectangle1117", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.997325897216797, + 0.14451825618743896, + 16.87247085571289 + ] + }, + { + "mesh":3165, + "name":"pasted__pasted__pCube804", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036029815673828, + 5.052017688751221, + 5.0745720863342285 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface725", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -0.00834827870130539 + ] + }, + { + "mesh":3166, + "name":"Circle2277", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8045071363449097, + -2.22849702835083 + ] + }, + { + "mesh":3167, + "name":"pasted__pasted__pasted__pCylinder618", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.701154708862305, + 0.9016944169998169, + 12.94787883758545 + ] + }, + { + "mesh":3168, + "name":"Rectangle341.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 7.527013778686523, + 0.14451754093170166, + 18.73465347290039 + ] + }, + { + "mesh":3169, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface740", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.071154594421387, + 0.9432286024093628, + 7.761640548706055 + ] + }, + { + "mesh":3170, + "name":"Circle2547", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.122756958007812, + 1.5553566217422485, + -1.6841890811920166 + ] + }, + { + "mesh":3171, + "name":"Obj3d66-647191-2-964", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567583084106445, + 1.6754931211471558, + -15.540229797363281 + ] + }, + { + "mesh":3172, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube584", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 0.8592513799667358, + -2.6826233863830566 + ] + }, + { + "mesh":3173, + "name":"pasted__pasted__pCylinder341.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.38935661315918, + 5.0585036277771, + -5.689206600189209 + ] + }, + { + "mesh":3174, + "name":"Circle2904", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.090845108032227, + 1.6497653722763062, + 1.225535273551941 + ] + }, + { + "mesh":3175, + "name":"pasted__pasted__pCube400.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.554912567138672, + 5.052017688751221, + -5.538721561431885 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door113", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 5.416483402252197 + ] + }, + { + "mesh":3176, + "name":"pasted__pasted__pCube842", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.032896041870117, + 1.027711033821106, + 14.516190528869629 + ] + }, + { + "mesh":3177, + "name":"pasted__pasted__pasted__polySurface546", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9219884872436523, + 0.6901217699050903, + 6.051952362060547 + ] + }, + { + "mesh":3178, + "name":"Rectangle1146", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.835258483886719, + 0.17812669277191162, + 13.961438179016113 + ] + }, + { + "mesh":3179, + "name":"pasted__pasted__pasted__pCylinder756", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9305353164672852, + 0.8645821809768677, + 6.518670558929443 + ] + }, + { + "mesh":3180, + "name":"pasted__pasted__pCylinder596", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.708311080932617, + 4.9288010597229, + 0.8275122046470642 + ] + }, + { + "mesh":3181, + "name":"polySurface332", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.008813858032227, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":3182, + "name":"Line2440", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.678508758544922, + 2.3475184440612793, + 0.5690337419509888 + ] + }, + { + "mesh":3183, + "name":"pasted__pasted__pCube795", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + 6.883036136627197 + ] + }, + { + "mesh":3184, + "name":"Obj3d66-647191-10-399", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.555784225463867, + 1.6559807062149048, + 5.575220108032227 + ] + }, + { + "mesh":3185, + "name":"Circle2320", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9185928106307983, + -2.22849702835083 + ] + }, + { + "mesh":3186, + "name":"pasted__pasted__pCylinder8.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.890146255493164, + 2.1370115280151367, + -5.591787338256836 + ] + }, + { + "mesh":3187, + "name":"Circle2788", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.07756233215332, + 1.821740746498108, + 0.6277795433998108 + ] + }, + { + "mesh":3188, + "name":"Circle1669", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.989358901977539, + 2.116685390472412, + -5.460317134857178 + ] + }, + { + "mesh":3189, + "name":"Rectangle1440", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + 6.009850978851318 + ] + }, + { + "mesh":3190, + "name":"Circle2216", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7843014001846313, + -1.5736714601516724 + ] + }, + { + "mesh":3191, + "name":"Circle2098", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.91217613220215, + 2.0549798011779785, + -5.459476947784424 + ] + }, + { + "mesh":3192, + "name":"Object2124", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.436920166015625, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":3193, + "name":"pasted__pasted__pCylinder701", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.909536361694336, + 2.179645538330078, + 4.714014053344727 + ] + }, + { + "mesh":3194, + "name":"Circle3046", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9692977666854858, + 3.6717348098754883 + ] + }, + { + "mesh":3195, + "name":"Circle2615", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.898542404174805, + 1.357746958732605, + 1.0508066415786743 + ] + }, + { + "mesh":3196, + "name":"Circle2607", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9755452871322632, + 1.3903530836105347 + ] + }, + { + "mesh":3197, + "name":"Object2488", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.814029693603516, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3198, + "name":"Rectangle569", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9651451110839844, + 0.26499664783477783, + 12.27353572845459 + ] + }, + { + "mesh":3199, + "name":"Rectangle922", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.687047958374023, + 0.11240279674530029, + -2.2228355407714844 + ] + }, + { + "mesh":3200, + "name":"Circle1631", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.898542404174805, + 1.374463438987732, + -5.872320652008057 + ] + }, + { + "mesh":3201, + "name":"Rectangle1180", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.681344985961914, + 0.6124783754348755, + 12.646245956420898 + ] + }, + { + "mesh":3202, + "name":"Object2443", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.87731170654297, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3203, + "name":"Circle1534", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8063067197799683, + -6.119211673736572 + ] + }, + { + "mesh":3204, + "name":"pasted__pasted__pCylinder469", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.04994010925293, + 3.146695137023926, + 5.581186294555664 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube542", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":3205, + "name":"Rectangle138", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.001222610473633, + 0.14451849460601807, + -14.551491737365723 + ] + }, + { + "mesh":3206, + "name":"Circle2833", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.048160552978516, + 1.7942734956741333, + -0.03046431392431259 + ] + }, + { + "mesh":3207, + "name":"Circle2066", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9980441331863403, + -6.223701000213623 + ] + }, + { + "mesh":3208, + "name":"Circle2486", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.115150451660156, + 1.598108172416687, + -2.7745485305786133 + ] + }, + { + "mesh":3209, + "name":"Rectangle015.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.270631790161133, + 0.49351394176483154, + -5.439942836761475 + ] + }, + { + "mesh":3210, + "name":"Object2649", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.826684951782227, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3211, + "name":"pasted__pasted__pCube718", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.45350456237793, + 5.064568996429443, + 1.4843031167984009 + ] + }, + { + "mesh":3212, + "name":"Circle3230", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.23468589782715, + 1.2449902296066284, + 3.3164734840393066 + ] + }, + { + "mesh":3213, + "name":"Rectangle1096", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.695322036743164, + 0.43873751163482666, + 13.961438179016113 + ] + }, + { + "mesh":3214, + "name":"Circle1543", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.4346312284469604, + -4.8062968254089355 + ] + }, + { + "mesh":3215, + "name":"pasted__pasted__pCylinder690", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.016767501831055, + 2.5257010459899902, + 5.37495231628418 + ] + }, + { + "mesh":3216, + "name":"Circle3283", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.23603057861328, + 1.3768717050552368, + 4.103909492492676 + ] + }, + { + "mesh":3217, + "name":"Circle1719", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.000385284423828, + 1.9341775178909302, + -6.198576927185059 + ] + }, + { + "mesh":3218, + "name":"Circle2148", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.9305477142334, + 1.9541805982589722, + -6.218547344207764 + ] + }, + { + "mesh":3219, + "name":"Object2023", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.143320083618164, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3220, + "name":"Object2206", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.409078598022461, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3221, + "name":"Rectangle1142", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.014909744262695, + 1.5912657976150513, + 16.703571319580078 + ] + }, + { + "mesh":3222, + "name":"pasted__pasted__pasted__pCylinder720", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565818786621, + 0.9016937017440796, + 15.344712257385254 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors143", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":3223, + "name":"Rectangle933", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.410043716430664, + 1.039061188697815, + 4.096086025238037 + ] + }, + { + "mesh":3224, + "name":"pasted__pasted__pasted__pCylinder686", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.01236915588379, + 0.9016944169998169, + 12.94787883758545 + ] + }, + { + "mesh":3225, + "name":"Rectangle1380", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 8.100261688232422 + ] + }, + { + "mesh":3226, + "name":"Obj3d66-647191-33-851", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.55536460876465, + 1.6400068998336792, + 18.297590255737305 + ] + }, + { + "mesh":3227, + "name":"pasted__pasted__pasted__pCylinder746", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.923752784729004, + 1.2619186639785767, + 5.029318809509277 + ] + }, + { + "mesh":3228, + "name":"Circle3116", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15157699584961, + 1.3922072649002075, + 3.6717348098754883 + ] + }, + { + "mesh":3229, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder201", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.039926528930664, + 0.6244927644729614, + 13.959234237670898 + ] + }, + { + "mesh":3230, + "name":"Circle1681", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03346061706543, + 1.9692128896713257, + -5.460317134857178 + ] + }, + { + "mesh":3231, + "name":"Rectangle012.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.12613868713379, + 0.3068188428878784, + -5.703222751617432 + ] + }, + { + "mesh":3232, + "name":"Rectangle396", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.140451431274414, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":3233, + "name":"pasted__pasted__pasted__pCube741", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 0.9795023202896118, + 15.57959270477295 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube341", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -5.439333915710449 + ] + }, + { + "mesh":3234, + "name":"Circle2646", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7538021802902222, + 0.6277796030044556 + ] + }, + { + "mesh":3235, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder6", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + -5.602108478546143 + ] + }, + { + "mesh":3236, + "name":"Circle1974", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.7664786577224731, + -5.459476947784424 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface647", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -7.182558059692383 + ] + }, + { + "mesh":3237, + "name":"pasted__pasted__pPipe113", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.531620025634766, + 1.5744904279708862, + 5.561996936798096 + ] + }, + { + "mesh":3238, + "name":"pasted__pasted__pasted__pPlane084", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.43157958984375, + 0.38407838344573975, + 12.949873924255371 + ] + }, + { + "mesh":3239, + "name":"Circle3240", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.976919174194336, + 1.9867974519729614, + 4.460294723510742 + ] + }, + { + "mesh":3240, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube442", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.877500534057617, + 1.4054874181747437, + -1.8397806882858276 + ] + }, + { + "mesh":3241, + "name":"Object093", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.365046501159668, + 0.14451873302459717, + -15.771601676940918 + ] + }, + { + "mesh":3242, + "name":"pasted__pasted__pasted__pasted__pCylinder835", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.153039932250977, + 1.0796922445297241, + 15.849641799926758 + ] + }, + { + "mesh":3243, + "name":"pasted__pasted__pPipe094", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.21528434753418, + 2.7747206687927246, + 5.491039752960205 + ] + }, + { + "mesh":3244, + "name":"Object2066", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.082843780517578, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3245, + "name":"pasted__pasted__pasted__pPlane095", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.430009841918945, + 0.38866126537323, + 16.590402603149414 + ] + }, + { + "mesh":3246, + "name":"pasted__pasted__pasted__polySurface553", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.040225982666016, + 0.6836510896682739, + 16.030426025390625 + ] + }, + { + "mesh":3247, + "name":"Object2534", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.868879318237305, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3248, + "name":"pasted__pasted__pCylinder478", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.187856674194336, + 3.146695137023926, + 5.5811872482299805 + ] + }, + { + "mesh":3249, + "name":"pasted__pasted__pPipe26", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.46347427368164, + 1.845382809638977, + -5.402164459228516 + ] + }, + { + "mesh":3250, + "name":"Circle3119", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.236181259155273, + 1.417582631111145, + 3.6717348098754883 + ] + }, + { + "mesh":3251, + "name":"Circle1605", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1467652320861816, + -5.460317134857178 + ] + }, + { + "mesh":3252, + "name":"pasted__pasted__pasted__pasted__pCylinder866", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785398483276367, + 0.28987395763397217, + 14.672256469726562 + ] + }, + { + "mesh":3253, + "name":"Circle1523", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.4393924474716187, + -4.968631744384766 + ] + }, + { + "mesh":3254, + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface584", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.5997209548950195, + 0.6940604448318481, + 2.1623246669769287 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube386", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 2.3852198123931885 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__polySurface057", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":3255, + "name":"Rectangle1153", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.28483772277832, + 0.6124783754348755, + 13.961438179016113 + ] + }, + { + "mesh":3256, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube36", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + -4.724888324737549 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube387", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 2.3852198123931885 + ] + }, + { + "mesh":3257, + "name":"polySurface376", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.447683334350586, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":3258, + "name":"pasted__pasted__pasted__pasted__pCylinder463", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.807779312133789, + 0.28987395763397217, + 14.820230484008789 + ] + }, + { + "mesh":3259, + "name":"Object2486", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.816843032836914, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3260, + "name":"Circle3122", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.963634490966797, + 2.2027106285095215, + 3.6717348098754883 + ] + }, + { + "mesh":3261, + "name":"Circle2858", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.285993576049805, + 1.383501648902893, + 0.1988958716392517 + ] + }, + { + "mesh":3262, + "name":"pasted__pasted__pasted__pCylinder443", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.923750877380371, + 1.0846668481826782, + -8.252606391906738 + ] + }, + { + "mesh":3263, + "name":"pasted__pasted__pCube766", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + 3.9400012493133545 + ] + }, + { + "mesh":3264, + "name":"Object2670", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.79715347290039, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3265, + "name":"Line2457", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.17774772644043, + 4.5264668464660645, + 4.7071213722229 + ] + }, + { + "mesh":3266, + "name":"pasted__pasted__pCylinder692", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.826955795288086, + 1.933707594871521, + 4.755931377410889 + ] + }, + { + "mesh":3267, + "name":"Object2543", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.85622215270996, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3268, + "name":"Circle2030", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.649304986000061, + -6.027220726013184 + ] + }, + { + "mesh":3269, + "name":"Rectangle1363", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6566238403320312, + 0.42382848262786865, + 7.767119407653809 + ] + }, + { + "mesh":3270, + "name":"Object218", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.19881248474121, + 1.1986137628555298, + -13.934765815734863 + ] + }, + { + "mesh":3271, + "name":"Circle2534", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.07246971130371, + 1.7041248083114624, + -1.599966049194336 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube445", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":3272, + "name":"pasted__pasted__pasted__pCube718", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 1.399283766746521, + 14.8716459274292 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube338", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -9.601222038269043 + ] + }, + { + "mesh":3273, + "name":"Circle3020", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8552120923995972, + 3.6717348098754883 + ] + }, + { + "mesh":3274, + "name":"pasted__pasted__pCylinder560", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.872268676757812, + 0.08547818660736084, + 0.5826606154441833 + ] + }, + { + "mesh":3275, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube352", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + 5.664851665496826 + ] + }, + { + "mesh":3276, + "name":"Rectangle185", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.120513916015625, + 0.42382848262786865, + -12.738801002502441 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface774", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.285858154296875 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface582", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":3277, + "name":"pasted__pasted__pCylinder341.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.588937759399414, + 5.058504581451416, + -5.6942267417907715 + ] + }, + { + "mesh":3278, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube380", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + -1.8837929964065552 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube176", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":3279, + "name":"Circle2206", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6493052244186401, + -1.649728775024414 + ] + }, + { + "mesh":3280, + "name":"pasted__pasted__pPipe092", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.096460342407227, + 1.077017903327942, + 5.489278793334961 + ] + }, + { + "mesh":3281, + "name":"Circle2980", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.898542404174805, + 1.357746958732605, + 4.094761848449707 + ] + }, + { + "mesh":3282, + "name":"Rectangle1323", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.048496246337891, + 0.04489290714263916, + 1.6960170269012451 + ] + }, + { + "mesh":3283, + "name":"Circle1891", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.690155029296875, + 1.3009415864944458, + -5.08255672454834 + ] + }, + { + "mesh":3284, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder067", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.920570373535156, + 1.7839974164962769, + -1.7264693975448608 + ] + }, + { + "mesh":3285, + "name":"polySurface319", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.025794982910156, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":3286, + "name":"Rectangle1212", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137237548828125, + 1.712639570236206, + -6.690112113952637 + ] + }, + { + "mesh":3287, + "name":"Sphere037", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8063907623291, + 1.3316925764083862, + -1.8054697513580322 + ] + }, + { + "mesh":3288, + "name":"pasted__pasted__pCylinder511", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.835880279541016, + 1.9704312086105347, + 0.08851037919521332 + ] + }, + { + "mesh":3289, + "name":"Object2546", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.852005004882812, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3290, + "name":"Obj3d66-647191-19-294", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747392654418945, + 1.6718100309371948, + -9.273892402648926 + ] + }, + { + "mesh":3291, + "name":"Circle2307", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0833840370178223, + -2.22849702835083 + ] + }, + { + "mesh":3292, + "name":"Object2485", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.81825065612793, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3293, + "name":"pasted__pasted__pCylinder695", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.854480743408203, + 2.0156874656677246, + 4.741951942443848 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube561", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube334", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":3294, + "name":"Circle1736", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.04081153869629, + 1.815797209739685, + -6.1308722496032715 + ] + }, + { + "mesh":3295, + "name":"Rectangle1344", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + 0.3918192684650421 + ] + }, + { + "mesh":3296, + "name":"Circle2762", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.98200798034668, + 2.141263961791992, + 0.6277795433998108 + ] + }, + { + "mesh":3297, + "name":"pasted__pasted__pasted__pasted__pCylinder874", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.52398109436035, + 1.0796922445297241, + 14.820230484008789 + ] + }, + { + "mesh":3298, + "name":"Object2150", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.487833023071289, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3299, + "name":"Obj3d66-647191-20-070", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.58609390258789, + 1.6739333868026733, + -9.273892402648926 + ] + }, + { + "mesh":3300, + "name":"Object2007", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.1658172607421875, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__polySurface072", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":3301, + "name":"polySurface104", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.66356086730957, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":3302, + "name":"pasted__pasted__pasted__pasted__pCylinder787", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231466293334961, + 0.28987395763397217, + 13.938788414001465 + ] + }, + { + "mesh":3303, + "name":"pasted__pasted__pCube396", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + -4.235036849975586 + ] + }, + { + "mesh":3304, + "name":"pasted__pasted__pCube803", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + 5.920828342437744 + ] + }, + { + "mesh":3305, + "name":"pasted__pasted__pasted__pCylinder157", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.706984519958496, + 1.2660449743270874, + 12.947877883911133 + ] + }, + { + "mesh":3306, + "name":"Object1896", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.082843780517578, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3307, + "name":"pasted__pasted__pasted__pCylinder617", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.701154708862305, + 1.2660449743270874, + 12.94787883758545 + ] + }, + { + "mesh":3308, + "name":"Rectangle340.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 8.904129028320312, + 0.14451754093170166, + 18.734651565551758 + ] + }, + { + "mesh":3309, + "name":"Circle3040", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0453553199768066, + 3.6717348098754883 + ] + }, + { + "mesh":3310, + "name":"polySurface317", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.059759140014648, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":3311, + "name":"Circle2546", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.11824607849121, + 1.5687059164047241, + -1.6766314506530762 + ] + }, + { + "mesh":3312, + "name":"Object2589", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.791528701782227, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3313, + "name":"Object2444", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.87590789794922, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3314, + "name":"Circle2639", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3985601663589478, + 0.5835075974464417 + ] + }, + { + "mesh":3315, + "name":"pasted__pasted__pasted__polySurface027", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6949710845947266, + 0.6836510896682739, + 15.375099182128906 + ] + }, + { + "mesh":3316, + "name":"pasted__pasted__pasted__pCylinder760", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9281158447265625, + 0.8645819425582886, + 6.145462512969971 + ] + }, + { + "mesh":3317, + "name":"Rectangle1091", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6696529388427734, + 1.5912657976150513, + 16.703571319580078 + ] + }, + { + "mesh":3318, + "name":"pasted__pasted__pasted__pCylinder442", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.923750877380371, + 1.261919379234314, + -8.252606391906738 + ] + }, + { + "mesh":3319, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface236", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.870067596435547, + 1.7860993146896362, + 5.562185287475586 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube348", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -8.31318187713623 + ] + }, + { + "mesh":3320, + "name":"pasted__pasted__pCylinder595", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.088884353637695, + 4.837941646575928, + 0.8275122046470642 + ] + }, + { + "mesh":3321, + "name":"polySurface331", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.025796890258789, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":3322, + "name":"pasted__pasted__pCube796", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + 7.566559314727783 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube161", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":3323, + "name":"Obj3d66-647191-9-454", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.525014877319336, + 1.6471415758132935, + 5.586601734161377 + ] + }, + { + "mesh":3324, + "name":"pasted__pasted__pasted__pasted__pCylinder850", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.6024112701416, + 0.6754261255264282, + 13.938788414001465 + ] + }, + { + "mesh":3325, + "name":"pasted__pasted__pCube705", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.411561965942383, + 5.280849933624268, + 1.3248710632324219 + ] + }, + { + "mesh":3326, + "name":"Circle3257", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.046743392944336, + 1.7802292108535767, + 4.343350410461426 + ] + }, + { + "mesh":3327, + "name":"pasted__pasted__pCylinder513", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.85396957397461, + 2.0259571075439453, + 0.08851037919521332 + ] + }, + { + "mesh":3328, + "name":"Circle2941", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.716802954673767, + 4.288531303405762 + ] + }, + { + "mesh":3329, + "name":"Circle1503", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.705553412437439, + -4.84985876083374 + ] + }, + { + "mesh":3330, + "name":"Circle1837", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.910757064819336, + 1.9126538038253784, + -4.722502708435059 + ] + }, + { + "mesh":3331, + "name":"Circle2121", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.827646255493164, + 1.7722722291946411, + -5.459476947784424 + ] + }, + { + "mesh":3332, + "name":"Circle1668", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.985681533813477, + 2.128974437713623, + -5.460317134857178 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube407", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":3333, + "name":"Circle2097", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.915849685668945, + 2.0672717094421387, + -5.459476947784424 + ] + }, + { + "mesh":3334, + "name":"Circle3045", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9819740056991577, + 3.6717348098754883 + ] + }, + { + "mesh":3335, + "name":"Circle2614", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.705896377563477, + 1.3744639158248901, + 1.0508066415786743 + ] + }, + { + "mesh":3336, + "name":"Circle2144", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.945249557495117, + 1.9976688623428345, + -6.243166446685791 + ] + }, + { + "mesh":3337, + "name":"Circle2606", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9867950677871704, + 1.3966913223266602 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface749", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 5.416483402252197 + ] + }, + { + "mesh":3338, + "name":"Object2487", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8154354095459, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3339, + "name":"pasted__pasted__pasted__pCylinder689", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.365060806274414, + 1.2660449743270874, + 12.947877883911133 + ] + }, + { + "mesh":3340, + "name":"Line2429", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.687042236328125, + 0.19340407848358154, + -2.2228355407714844 + ] + }, + { + "mesh":3341, + "name":"Rectangle1179", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.681344985961914, + 0.26499664783477783, + 12.27353572845459 + ] + }, + { + "mesh":3342, + "name":"pasted__pasted__pCube407.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939355850219727, + 5.073940753936768, + -6.725654602050781 + ] + }, + { + "mesh":3343, + "name":"Object116", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.21303939819336, + -0.15302824974060059, + 5.480300426483154 + ] + }, + { + "mesh":3344, + "name":"Circle2930", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.4393924474716187, + 4.1634202003479 + ] + }, + { + "mesh":3345, + "name":"pasted__pasted__pCube573", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.63056755065918, + 0.06377255916595459, + -7.836203575134277 + ] + }, + { + "mesh":3346, + "name":"Circle2430", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10328483581543, + 1.7357155084609985, + -2.22849702835083 + ] + }, + { + "mesh":3347, + "name":"Circle3079", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.896335482597351, + 2.9621362686157227 + ] + }, + { + "mesh":3348, + "name":"Circle1533", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.817560076713562, + -6.125549793243408 + ] + }, + { + "mesh":3349, + "name":"pasted__pasted__pTorus027", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.904987335205078, + 3.341920852661133, + 6.607266902923584 + ] + }, + { + "mesh":3350, + "name":"extrudedSurface036", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.813631057739258, + 4.2204132080078125, + 4.828243732452393 + ] + }, + { + "mesh":3351, + "name":"Object2182", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.442831039428711, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3352, + "name":"Rectangle847", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.012165069580078, + 0.6313761472702026, + 5.282083511352539 + ] + }, + { + "mesh":3353, + "name":"pasted__pasted__pCube717", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.451486587524414, + 5.052017688751221, + 1.183220386505127 + ] + }, + { + "mesh":3354, + "name":"Circle2575", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.705553412437439, + 1.2382385730743408 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube647", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":3355, + "name":"pasted__pasted__pCube593", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.938676834106445, + 3.3453516960144043, + 6.41938591003418 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube501", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":3356, + "name":"Circle2767", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.000385284423828, + 2.0798168182373047, + 0.6277795433998108 + ] + }, + { + "mesh":3357, + "name":"Circle1902", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.6937707662582397, + -4.852939605712891 + ] + }, + { + "mesh":3358, + "name":"Circle2147", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.93422508239746, + 1.9650527238845825, + -6.224702835083008 + ] + }, + { + "mesh":3359, + "name":"Object2022", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.144721984863281, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3360, + "name":"Rectangle1088", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.02546501159668, + 0.47970330715179443, + -4.108668804168701 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube333", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -6.569958209991455 + ] + }, + { + "mesh":3361, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder098", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.77862548828125, + 0.6623357534408569, + 12.767040252685547 + ] + }, + { + "mesh":3362, + "name":"Circle1585", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.934459686279297, + 1.118975043296814, + -5.460318088531494 + ] + }, + { + "mesh":3363, + "name":"Object2205", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.410484313964844, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3364, + "name":"pasted__pasted__pasted__pCube192", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 0.9795023202896118, + 16.228010177612305 + ] + }, + { + "mesh":3365, + "name":"pasted__pasted__pCylinder6", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.870540618896484, + 2.069448947906494, + -4.949417591094971 + ] + }, + { + "mesh":3366, + "name":"Text003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6691064834594727, + 1.5678759813308716, + 13.136495590209961 + ] + }, + { + "mesh":3367, + "name":"Rectangle1304", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -1.722433090209961 + ] + }, + { + "mesh":3368, + "name":"Obj3d66-647191-13-200", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.97991180419922, + 1.6729644536972046, + -15.603754043579102 + ] + }, + { + "mesh":3369, + "name":"Rectangle932", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0033016204834, + 1.039061188697815, + 3.6754865646362305 + ] + }, + { + "mesh":3370, + "name":"Object2577", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80840492248535, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3371, + "name":"Obj3d66-647191-9-475", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.004411697387695, + 1.6471415758132935, + 18.26652717590332 + ] + }, + { + "mesh":3372, + "name":"Rectangle1280", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.456121444702148, + 0.6124781370162964, + -0.6465277075767517 + ] + }, + { + "mesh":3373, + "name":"Sphere052", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.19780158996582, + 1.3751152753829956, + 3.6717348098754883 + ] + }, + { + "mesh":3374, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface710", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.946048736572266, + 0.6212445497512817, + 14.877469062805176 + ] + }, + { + "mesh":3375, + "name":"Circle2218", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8068004846572876, + -1.5609952211380005 + ] + }, + { + "mesh":3376, + "name":"Circle2109", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.871747970581055, + 1.9197717905044556, + -5.459476947784424 + ] + }, + { + "mesh":3377, + "name":"pasted__pasted__pasted__pCube740", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 1.399283766746521, + 15.57959270477295 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group125", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -5.439333915710449 + ] + }, + { + "mesh":3378, + "name":"Circle2645", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7664786577224731, + 0.6277796030044556 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door098", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -9.601222038269043 + ] + }, + { + "mesh":3379, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube43", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 1.3735638856887817, + -5.601543426513672 + ] + }, + { + "mesh":3380, + "name":"Circle1973", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.779154658317566, + -5.459476947784424 + ] + }, + { + "mesh":3381, + "name":"pasted__pasted__pCylinder574", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.874229431152344, + 4.853360652923584, + -1.1509891748428345 + ] + }, + { + "mesh":3382, + "name":"pasted__pasted__pasted__pCube152", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.540073394775391, + 0.25255048274993896, + 12.952010154724121 + ] + }, + { + "mesh":3383, + "name":"pasted__pasted__pCylinder422", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.443410873413086, + 3.3364663124084473, + -7.5070109367370605 + ] + }, + { + "mesh":3384, + "name":"Circle2524", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.035717010498047, + 1.8128453493118286, + -1.5384165048599243 + ] + }, + { + "mesh":3385, + "name":"Object2119", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.471048355102539, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":3386, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube542", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 1.36614191532135, + -8.726207733154297 + ] + }, + { + "mesh":3387, + "name":"Rectangle822", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.230733871459961, + 0.4576355218887329, + -1.6680387258529663 + ] + }, + { + "mesh":3388, + "name":"Circle2017", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116270065307617, + 1.3985601663589478, + -5.5558013916015625 + ] + }, + { + "mesh":3389, + "name":"Object2065", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.084249496459961, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3390, + "name":"pasted__pasted__pasted__pCube695", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033937454223633, + 0.8213735818862915, + 16.179706573486328 + ] + }, + { + "mesh":3391, + "name":"pasted__pasted__pTorus030", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.026247024536133, + 3.341920852661133, + 6.607267379760742 + ] + }, + { + "mesh":3392, + "name":"pasted__pasted__pPipe29", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.46347427368164, + 1.845382809638977, + -5.603764057159424 + ] + }, + { + "mesh":3393, + "name":"pasted__pasted__pasted__pCube730", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 0.8213735818862915, + 15.524377822875977 + ] + }, + { + "mesh":3394, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder111", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692001342773438, + 1.3803664445877075, + 4.788919925689697 + ] + }, + { + "mesh":3395, + "name":"Rectangle204", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.514852523803711, + 0.1627582311630249, + -12.833106994628906 + ] + }, + { + "mesh":3396, + "name":"pasted__pasted__pasted__pasted__pCylinder865", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.863826751708984, + 0.28987395763397217, + 14.820230484008789 + ] + }, + { + "mesh":3397, + "name":"Rectangle392.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.648927688598633, + 0.14451754093170166, + -16.603008270263672 + ] + }, + { + "mesh":3398, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube350", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.057670593261719, + 1.4264699220657349, + 1.7233917713165283 + ] + }, + { + "mesh":3399, + "name":"Circle1774", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.991617202758789, + 1.9433091878890991, + -4.696376800537109 + ] + }, + { + "mesh":3400, + "name":"Rectangle1152", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.912126541137695, + 0.26499664783477783, + 13.961438179016113 + ] + }, + { + "mesh":3401, + "name":"pasted__pasted__pPipe065", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.46347427368164, + 1.845382809638977, + 0.4843861162662506 + ] + }, + { + "mesh":3402, + "name":"Object2034", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.1278486251831055, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3403, + "name":"pasted__pasted__pasted__pasted__polySurface321", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.977703094482422, + 0.251440167427063, + 14.820230484008789 + ] + }, + { + "mesh":3404, + "name":"Object2296", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.402050018310547, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3405, + "name":"Circle2857", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.101621627807617, + 1.3522719144821167, + 0.22723349928855896 + ] + }, + { + "mesh":3406, + "name":"Object2542", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.857629776000977, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3407, + "name":"Rectangle327.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + 10.63880443572998 + ] + }, + { + "mesh":3408, + "name":"Rectangle1391", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 5.51116943359375 + ] + }, + { + "mesh":3409, + "name":"Obj3d66-647191-21-788", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.97991180419922, + 1.6637946367263794, + 18.269943237304688 + ] + }, + { + "mesh":3410, + "name":"Circle2533", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.06879234313965, + 1.7149971723556519, + -1.593811273574829 + ] + }, + { + "mesh":3411, + "name":"pasted__pasted__pasted__polySurface556", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.411169052124023, + 0.6836510896682739, + 14.421131134033203 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface656", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.700583457946777 + ] + }, + { + "mesh":3412, + "name":"pasted__pasted__pCylinder15.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.95345687866211, + 2.3313565254211426, + -5.591787338256836 + ] + }, + { + "mesh":3413, + "name":"pasted__pasted__pasted__pCylinder643", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.8592529296875, + 0.5030606985092163, + 16.585969924926758 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube601", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":3414, + "name":"Circle3152", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.073888778686523, + 1.8340305089950562, + 3.6717348098754883 + ] + }, + { + "mesh":3415, + "name":"Rectangle1132", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.071504592895508, + 0.0907973051071167, + 12.44258975982666 + ] + }, + { + "mesh":3416, + "name":"pasted__pasted__pasted__pCylinder755", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.929457664489746, + 0.8645821809768677, + 6.350338935852051 + ] + }, + { + "mesh":3417, + "name":"Circle2289", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8425358533859253, + -2.22849702835083 + ] + }, + { + "mesh":3418, + "name":"pasted__pasted__pasted__pCube750", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 0.8213735818862915, + 16.228010177612305 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface661", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.700583457946777 + ] + }, + { + "mesh":3419, + "name":"Circle2205", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.638055443763733, + -1.656066656112671 + ] + }, + { + "mesh":3420, + "name":"Obj3d66-647191-18-844", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.453460693359375, + 1.6729644536972046, + 12.119864463806152 + ] + }, + { + "mesh":3421, + "name":"Circle1890", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.683805465698242, + 1.2449907064437866, + -5.093190670013428 + ] + }, + { + "mesh":3422, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface665", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.913536071777344, + 1.4340986013412476, + -1.6065623760223389 + ] + }, + { + "mesh":3423, + "name":"Circle2914", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.13178253173828, + 1.5286577939987183, + 1.1569726467132568 + ] + }, + { + "mesh":3424, + "name":"polySurface318", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.042778015136719, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":3425, + "name":"Circle2201", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.4346312284469604, + -1.574475646018982 + ] + }, + { + "mesh":3426, + "name":"polySurface355", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.396738052368164, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":3427, + "name":"pasted__pasted__pCylinder510", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.826837539672852, + 1.9426668882369995, + 0.08851037919521332 + ] + }, + { + "mesh":3428, + "name":"Object2545", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.853408813476562, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3429, + "name":"Obj3d66-647191-18-846", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.748655319213867, + 1.6729644536972046, + -9.273892402648926 + ] + }, + { + "mesh":3430, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors133", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.079298973083496, + 0.7384535074234009, + -8.857419967651367 + ] + }, + { + "mesh":3431, + "name":"pasted__pasted__pasted__pasted__pasted__pCube565", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.201034545898438, + 1.4680649042129517, + 12.749217987060547 + ] + }, + { + "mesh":3432, + "name":"Circle3096", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0651402473449707, + 2.867064952850342 + ] + }, + { + "mesh":3433, + "name":"Circle2072", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9305461645126343, + -6.185673236846924 + ] + }, + { + "mesh":3434, + "name":"Rectangle427", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + -6.830414295196533 + ] + }, + { + "mesh":3435, + "name":"pasted__pasted__pasted__pasted__polySurface318", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.977703094482422, + 0.2514399290084839, + 13.790817260742188 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface766", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 6.547109127044678 + ] + }, + { + "mesh":3436, + "name":"Rectangle1343", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384544610977173, + 0.6560385227203369 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors144", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube213", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.6732590198516846 + ] + }, + { + "mesh":3437, + "name":"Object2006", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.167224884033203, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3438, + "name":"pasted__pasted__pasted__pasted__pCylinder786", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.153039932250977, + 0.28987395763397217, + 13.790817260742188 + ] + }, + { + "mesh":3439, + "name":"pasted__pasted__pCylinder437", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.048494338989258, + 3.133455753326416, + -8.200495719909668 + ] + }, + { + "mesh":3440, + "name":"pasted__pasted__pCube802", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + 5.619746208190918 + ] + }, + { + "mesh":3441, + "name":"Circle2275", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8298596143722534, + -2.22849702835083 + ] + }, + { + "mesh":3442, + "name":"Rectangle216", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8965835571289062, + 0.510698676109314, + -12.818193435668945 + ] + }, + { + "mesh":3443, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube628", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 0.8592513799667358, + 2.7338707447052 + ] + }, + { + "mesh":3444, + "name":"pasted__pasted__pasted__pCylinder630", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.994119644165039, + 0.9016944169998169, + 12.947877883911133 + ] + }, + { + "mesh":3445, + "name":"Circle2735", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.020125389099121, + -0.15153807401657104 + ] + }, + { + "mesh":3446, + "name":"Circle2545", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.113731384277344, + 1.582055687904358, + -1.6690738201141357 + ] + }, + { + "mesh":3447, + "name":"pasted__pasted__pasted__pCube173", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 0.8213735818862915, + 15.524377822875977 + ] + }, + { + "mesh":3448, + "name":"pasted__pasted__pasted__pCylinder759", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9271001815795898, + 0.8645821809768677, + 5.987378120422363 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube347", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -8.31318187713623 + ] + }, + { + "mesh":3449, + "name":"pasted__pasted__pTorus041", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.507848739624023, + 5.048587322235107, + 0.8292412757873535 + ] + }, + { + "mesh":3450, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder079", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 0.3832782506942749, + 0.37563207745552063 + ] + }, + { + "mesh":3451, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface112", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.61427116394043, + 0.20360314846038818, + 4.527546405792236 + ] + }, + { + "mesh":3452, + "name":"Object2374", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.41189193725586, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3453, + "name":"polySurface330", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.042778015136719, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube438", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":3454, + "name":"Circle2827", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.02610969543457, + 1.8588446378707886, + -0.06739424914121628 + ] + }, + { + "mesh":3455, + "name":"Circle1480", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.779154658317566, + -5.460317134857178 + ] + }, + { + "mesh":3456, + "name":"Circle2368", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.042632579803467, + -3.020491123199463 + ] + }, + { + "mesh":3457, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface670", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.921976089477539, + 1.4112459421157837, + 3.4526264667510986 + ] + }, + { + "mesh":3458, + "name":"Circle2786", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.07021141052246, + 1.846319556236267, + 0.6277795433998108 + ] + }, + { + "mesh":3459, + "name":"pasted__pasted__pPipe130", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.243392944335938, + 1.2939432859420776, + 7.779204368591309 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube448", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":3460, + "name":"Circle3044", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9946502447128296, + 3.6717348098754883 + ] + }, + { + "mesh":3461, + "name":"Circle2143", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.919527053833008, + 1.9215649366378784, + -6.200082778930664 + ] + }, + { + "mesh":3462, + "name":"Circle2605", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9980443716049194, + 1.403029441833496 + ] + }, + { + "mesh":3463, + "name":"Rectangle567", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9651451110839844, + 0.5256079435348511, + 12.50312614440918 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube609", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":3464, + "name":"Circle2926", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15263557434082, + 1.4791637659072876, + 1.1220602989196777 + ] + }, + { + "mesh":3465, + "name":"Circle1532", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.828814148902893, + -6.131886959075928 + ] + }, + { + "mesh":3466, + "name":"pasted__pasted__pPipe058", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.62812614440918, + -0.6306344270706177, + 6.196491241455078 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube435", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":3467, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door023", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8965835571289062, + 1.5217500925064087, + -13.089497566223145 + ] + }, + { + "mesh":3468, + "name":"Circle3013", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7284499406814575, + 3.6717348098754883 + ] + }, + { + "mesh":3469, + "name":"Rectangle846", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.3101272583007812, + 0.3707655668258667, + 5.282083511352539 + ] + }, + { + "mesh":3470, + "name":"Circle2574", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6943036317825317, + 1.2319003343582153 + ] + }, + { + "mesh":3471, + "name":"pasted__pasted__pCylinder691", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.218090057373047, + 0.3064945936203003, + 3.1523916721343994 + ] + }, + { + "mesh":3472, + "name":"Circle3281", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.101621627807617, + 1.3353694677352905, + 4.083304405212402 + ] + }, + { + "mesh":3473, + "name":"Line2421", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.560606002807617, + 0.18367278575897217, + -5.4652814865112305 + ] + }, + { + "mesh":3474, + "name":"Circle2146", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.937902450561523, + 1.9759248495101929, + -6.2308573722839355 + ] + }, + { + "mesh":3475, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube364", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + -6.747927665710449 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube573", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":3476, + "name":"Object2021", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.146126747131348, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3477, + "name":"Rectangle1311", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -0.8613712191581726 + ] + }, + { + "mesh":3478, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface709", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.028253555297852, + 0.6149352788925171, + 14.812023162841797 + ] + }, + { + "mesh":3479, + "name":"pasted__pasted__pPipe19.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.777803421020508, + 1.0760306119918823, + -8.013620376586914 + ] + }, + { + "mesh":3480, + "name":"Circle1679", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.02610969543457, + 1.993791937828064, + -5.460317134857178 + ] + }, + { + "mesh":3481, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface738", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.071154594421387, + 1.1282140016555786, + 7.761640548706055 + ] + }, + { + "mesh":3482, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube543", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 0.9979475736618042, + -8.726207733154297 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube529", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":3483, + "name":"pasted__pasted__pasted__pCube739", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 1.2411547899246216, + 15.57959270477295 + ] + }, + { + "mesh":3484, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube296", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.925851821899414, + 1.3735631704330444, + 0.3750453591346741 + ] + }, + { + "mesh":3485, + "name":"Circle2932", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6718045473098755, + 4.263179302215576 + ] + }, + { + "mesh":3486, + "name":"Circle2787", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.073888778686523, + 1.8340305089950562, + 0.6277795433998108 + ] + }, + { + "mesh":3487, + "name":"Circle2644", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.779154658317566, + 0.6277795433998108 + ] + }, + { + "mesh":3488, + "name":"Circle1972", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.7918308973312378, + -5.459476947784424 + ] + }, + { + "mesh":3489, + "name":"pasted__pasted__pPipe114", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.531620025634766, + 1.5744904279708862, + 5.768250942230225 + ] + }, + { + "mesh":3490, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube541", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 1.2274452447891235, + -8.726207733154297 + ] + }, + { + "mesh":3491, + "name":"Circle2016", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116270065307617, + 1.3985601663589478, + -5.41519832611084 + ] + }, + { + "mesh":3492, + "name":"Object2064", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.085659027099609, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3493, + "name":"pasted__pasted__pasted__pCube694", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033937454223633, + 0.9795023202896118, + 16.179706573486328 + ] + }, + { + "mesh":3494, + "name":"pasted__pasted__pTorus029", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.050233840942383, + 3.341920852661133, + 6.363028049468994 + ] + }, + { + "mesh":3495, + "name":"Rectangle432", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6622285842895508, + 0.3215755224227905, + 8.792646408081055 + ] + }, + { + "mesh":3496, + "name":"pasted__pasted__pCylinder373", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.176162719726562, + 1.5833171606063843, + -5.604770183563232 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube521", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":3497, + "name":"Circle1603", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1721177101135254, + -5.460317134857178 + ] + }, + { + "mesh":3498, + "name":"pasted__pasted__pasted__pasted__pCylinder864", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785097122192383, + 0.28987395763397217, + 14.968375205993652 + ] + }, + { + "mesh":3499, + "name":"Circle1629", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.757936477661133, + 1.357746958732605, + -5.872320652008057 + ] + }, + { + "mesh":3500, + "name":"pasted__pasted__pasted__pCylinder724", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565055847168, + 0.5030604600906372, + 14.186617851257324 + ] + }, + { + "mesh":3501, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group128", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.046943664550781, + 0.7328561544418335, + 1.7236584424972534 + ] + }, + { + "mesh":3502, + "name":"Object2033", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.129251480102539, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3503, + "name":"Line2400", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.823993682861328, + 4.526463508605957, + -5.595043659210205 + ] + }, + { + "mesh":3504, + "name":"Circle1680", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.029787063598633, + 1.9815021753311157, + -5.460317134857178 + ] + }, + { + "mesh":3505, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube345", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 0.3764752149581909, + 4.7883429527282715 + ] + }, + { + "mesh":3506, + "name":"Object2541", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.859031677246094, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3507, + "name":"Rectangle326", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + 9.261686325073242 + ] + }, + { + "mesh":3508, + "name":"Rectangle1390", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 5.51116943359375 + ] + }, + { + "mesh":3509, + "name":"Obj3d66-647191-20-066", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.981449127197266, + 1.6739333868026733, + 18.269943237304688 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube492", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":3510, + "name":"Circle2532", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.06511688232422, + 1.725868821144104, + -1.5876563787460327 + ] + }, + { + "mesh":3511, + "name":"pasted__pasted__pasted__pCylinder726", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565818786621, + 0.9016937017440796, + 16.56253433227539 + ] + }, + { + "mesh":3512, + "name":"pasted__pasted__pasted__pCylinder661", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094709396362305, + 0.5030604600906372, + 15.344712257385254 + ] + }, + { + "mesh":3513, + "name":"pasted__pasted__pasted__pCylinder642", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.8592529296875, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "mesh":3514, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface230", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.870063781738281, + 0.9865857362747192, + 0.27574360370635986 + ] + }, + { + "mesh":3515, + "name":"Object2456", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.859031677246094, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3516, + "name":"pasted__pasted__pasted__pCube749", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 0.9795023202896118, + 16.228010177612305 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door095", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.700583457946777 + ] + }, + { + "mesh":3517, + "name":"Circle2204", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6268061399459839, + -1.662405014038086 + ] + }, + { + "mesh":3518, + "name":"Rectangle328.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + 12.015924453735352 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__polySurface053", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":3519, + "name":"Circle1889", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.724679946899414, + 1.3309959173202515, + -4.950730800628662 + ] + }, + { + "mesh":3520, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface664", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.913793563842773, + 1.450264573097229, + -1.4765362739562988 + ] + }, + { + "mesh":3521, + "name":"Circle2913", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.12727165222168, + 1.5420070886611938, + 1.1645300388336182 + ] + }, + { + "mesh":3522, + "name":"Circle2200", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.4393924474716187, + -1.7368109226226807 + ] + }, + { + "mesh":3523, + "name":"Object2544", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.85481071472168, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3524, + "name":"pasted__pasted__pasted__pasted__polySurface325", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.977703094482422, + 0.6369913816452026, + 15.849641799926758 + ] + }, + { + "mesh":3525, + "name":"Obj3d66-647191-17-861", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747623443603516, + 1.672275424003601, + -9.273892402648926 + ] + }, + { + "mesh":3526, + "name":"Circle2953", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8742982149124146, + 4.377265453338623 + ] + }, + { + "mesh":3527, + "name":"pasted__pasted__pasted__pPlane286", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.096700668334961, + 0.38407886028289795, + 14.478879928588867 + ] + }, + { + "mesh":3528, + "name":"Circle2021", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 1.4393919706344604, + -5.94013786315918 + ] + }, + { + "mesh":3529, + "name":"Circle3039", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0580310821533203, + 3.6717348098754883 + ] + }, + { + "mesh":3530, + "name":"Rectangle1342", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + -0.1972256898880005 + ] + }, + { + "mesh":3531, + "name":"Circle1615", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.020002841949463, + -5.460317134857178 + ] + }, + { + "mesh":3532, + "name":"pasted__pasted__pasted__pasted__pPipe087", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.698280334472656, + 0.8169807195663452, + 14.828760147094727 + ] + }, + { + "mesh":3533, + "name":"Object2005", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.16862678527832, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3534, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors142", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.079298973083496, + 0.7384535074234009, + -2.8138351440429688 + ] + }, + { + "mesh":3535, + "name":"pasted__pasted__pCube801", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + 6.482738971710205 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube511", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":3536, + "name":"Object1894", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.085659027099609, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3537, + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface596", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.5997209548950195, + 0.6940604448318481, + 8.105183601379395 + ] + }, + { + "mesh":3538, + "name":"Circle2883", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.969566345214844, + 2.0085415840148926, + 1.428650140762329 + ] + }, + { + "mesh":3539, + "name":"Circle2974", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9530459642410278, + 4.421632289886475 + ] + }, + { + "mesh":3540, + "name":"Circle2544", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10921859741211, + 1.5954049825668335, + -1.6615163087844849 + ] + }, + { + "mesh":3541, + "name":"Object2442", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.87872314453125, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3542, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube374", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073788642883301, + 1.0402315855026245, + -2.99513578414917 + ] + }, + { + "mesh":3543, + "name":"pasted__pasted__pasted__pCube661", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9309473037719727, + 0.7724679708480835, + 6.0653581619262695 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group127", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -8.31318187713623 + ] + }, + { + "mesh":3544, + "name":"pasted__pasted__pCylinder589", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.481767654418945, + 4.853360652923584, + 0.8109754323959351 + ] + }, + { + "mesh":3545, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder089", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.39808464050293, + 2.0703248977661133, + 1.3412138223648071 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface648", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.393779754638672 + ] + }, + { + "mesh":3546, + "name":"pasted__pasted__extrudedSurface028", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.62030029296875, + 0.18359911441802979, + 5.4825663566589355 + ] + }, + { + "mesh":3547, + "name":"Circle2897", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.06511688232422, + 1.725868821144104, + 1.268620252609253 + ] + }, + { + "mesh":3548, + "name":"pasted__pasted__pasted__pasted__pCylinder791", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231765747070312, + 0.28987395763397217, + 13.642666816711426 + ] + }, + { + "mesh":3549, + "name":"Object2373", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.413299560546875, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3550, + "name":"Circle1797", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.046743392944336, + 1.7802292108535767, + -4.788702011108398 + ] + }, + { + "mesh":3551, + "name":"Object2308", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.504709243774414, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3552, + "name":"Circle2513", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.987939834594727, + 1.9541813135147095, + -1.4584015607833862 + ] + }, + { + "mesh":3553, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder080", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.916707992553711, + 0.19178617000579834, + 3.6100008487701416 + ] + }, + { + "mesh":3554, + "name":"Circle2317", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.956621527671814, + -2.22849702835083 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube553", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":3555, + "name":"Circle2785", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0665340423584, + 1.8586090803146362, + 0.6277795433998108 + ] + }, + { + "mesh":3556, + "name":"pasted__pasted__pPipe129", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.25892448425293, + 1.0760306119918823, + 7.779204368591309 + ] + }, + { + "mesh":3557, + "name":"Circle2095", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.923200607299805, + 2.091855049133301, + -5.459476947784424 + ] + }, + { + "mesh":3558, + "name":"Circle3043", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.007326602935791, + 3.6717348098754883 + ] + }, + { + "mesh":3559, + "name":"pasted__pasted__pCube750", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.451486587524414, + 5.052017688751221, + 4.43235445022583 + ] + }, + { + "mesh":3560, + "name":"Circle2142", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.915849685668945, + 1.910692811012268, + -6.1939263343811035 + ] + }, + { + "mesh":3561, + "name":"Circle2604", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0092945098876953, + 1.4093674421310425 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube170", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":3562, + "name":"Circle2157", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.890125274658203, + 1.834588885307312, + -6.150842666625977 + ] + }, + { + "mesh":3563, + "name":"Circle2588", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8742982149124146, + 1.3333102464675903 + ] + }, + { + "mesh":3564, + "name":"Shape035", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 8.14682388305664, + 0.06582486629486084, + 1.0658206939697266 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors151", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":3565, + "name":"pasted__pasted__pasted__pCylinder456", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9305353164672852, + 0.864582896232605, + -6.763254642486572 + ] + }, + { + "mesh":3566, + "name":"Circle2925", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.22832489013672, + 1.290230631828308, + 1.0047193765640259 + ] + }, + { + "mesh":3567, + "name":"Circle1531", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8400672674179077, + -6.138225555419922 + ] + }, + { + "mesh":3568, + "name":"polySurface360", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.432300567626953, + 1.4533334970474243, + 14.939345359802246 + ] + }, + { + "mesh":3569, + "name":"Rectangle350.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.867053985595703, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":3570, + "name":"Circle2516", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.965890884399414, + 2.019413471221924, + -1.4214714765548706 + ] + }, + { + "mesh":3571, + "name":"Circle2573", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6830543279647827, + 1.2255624532699585 + ] + }, + { + "mesh":3572, + "name":"Circle1900", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.660009741783142, + -4.871953964233398 + ] + }, + { + "mesh":3573, + "name":"Circle2198", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.231454849243164, + 0.19340407848358154, + -5.453815937042236 + ] + }, + { + "mesh":3574, + "name":"Circle1799", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.054094314575195, + 1.758485198020935, + -4.80101203918457 + ] + }, + { + "mesh":3575, + "name":"pasted__pasted__pCylinder490", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.853204727172852, + 2.014493465423584, + 0.7213961482048035 + ] + }, + { + "mesh":3576, + "name":"Circle2518", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.969566345214844, + 2.0085415840148926, + -1.4276264905929565 + ] + }, + { + "mesh":3577, + "name":"Circle2145", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.94157600402832, + 1.9867967367172241, + -6.237011909484863 + ] + }, + { + "mesh":3578, + "name":"Object2020", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.1475372314453125, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3579, + "name":"Circle2993", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.934459686279297, + 1.118975043296814, + 3.9828784465789795 + ] + }, + { + "mesh":3580, + "name":"Circle2322", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3985601663589478, + -2.1842198371887207 + ] + }, + { + "mesh":3581, + "name":"Rectangle1310", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -1.722433090209961 + ] + }, + { + "mesh":3582, + "name":"pasted__pasted__pPipe18.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.19988441467285, + 1.0770174264907837, + -8.013620376586914 + ] + }, + { + "mesh":3583, + "name":"pasted__pasted__pasted__polySurface561", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.411169052124023, + 0.6836510896682739, + 16.030426025390625 + ] + }, + { + "mesh":3584, + "name":"Circle2643", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7918308973312378, + 0.6277795433998108 + ] + }, + { + "mesh":3585, + "name":"polySurface126", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.6975202560424805, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":3586, + "name":"Rectangle1046", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.798521041870117, + 0.3059629201889038, + 16.649982452392578 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube183", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":3587, + "name":"pasted__pasted__pCylinder723", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.528532028198242, + 0.20140540599822998, + 5.563307285308838 + ] + }, + { + "mesh":3588, + "name":"pasted__pasted__pasted__pPlane083", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.751443862915039, + 0.38407886028289795, + 15.696707725524902 + ] + }, + { + "mesh":3589, + "name":"pasted__pasted__pCube663", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + -1.0453579425811768 + ] + }, + { + "mesh":3590, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__polySurface067", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.079298973083496, + 0.7384535074234009, + -9.121639251708984 + ] + }, + { + "mesh":3591, + "name":"Circle2015", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116270065307617, + 1.3985601663589478, + -5.363151550292969 + ] + }, + { + "mesh":3592, + "name":"Object2063", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.087064743041992, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3593, + "name":"pasted__pasted__pasted__pCube693", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 1.2411547899246216, + 16.179706573486328 + ] + }, + { + "mesh":3594, + "name":"pasted__pasted__pTorus028", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.05022621154785, + 3.3054070472717285, + 6.452202796936035 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube178", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":3595, + "name":"Rectangle1336", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.73845374584198, + -1.9643596410751343 + ] + }, + { + "mesh":3596, + "name":"pasted__pasted__pasted__pasted__pasted__pCube566", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.201034545898438, + 0.6876319646835327, + 12.749217987060547 + ] + }, + { + "mesh":3597, + "name":"Circle3024", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9059168100357056, + 3.6717348098754883 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube474", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":3598, + "name":"Rectangle197", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.706268310546875, + 0.6844395399093628, + -13.036763191223145 + ] + }, + { + "mesh":3599, + "name":"Circle3145", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.048160552978516, + 1.9200557470321655, + 3.6717348098754883 + ] + }, + { + "mesh":3600, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder416", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.421499252319336, + 1.4422646760940552, + 5.117685794830322 + ] + }, + { + "mesh":3601, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface693", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.071154594421387, + 1.1282140016555786, + 1.8187812566757202 + ] + }, + { + "mesh":3602, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder121", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692001342773438, + 0.3832782506942749, + 5.957485675811768 + ] + }, + { + "mesh":3603, + "name":"polySurface129", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.646574974060059, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":3604, + "name":"Object2540", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.860437393188477, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3605, + "name":"Rectangle325", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.71082878112793, + 0.14451754093170166, + 7.884567737579346 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface727", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.656999945640564 + ] + }, + { + "mesh":3606, + "name":"Obj3d66-647191-19-289", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.981172561645508, + 1.6718095541000366, + 18.269943237304688 + ] + }, + { + "mesh":3607, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube636", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 0.8592516183853149, + 3.195838451385498 + ] + }, + { + "mesh":3608, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface718", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.85798454284668, + 1.7848106622695923, + 14.877471923828125 + ] + }, + { + "mesh":3609, + "name":"Rectangle907", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.753278732299805, + 1.1144360303878784, + -5.451642990112305 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube452", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":3610, + "name":"pasted__pasted__pPipe070", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.871406555175781, + 1.845382809638977, + 0.4843861162662506 + ] + }, + { + "mesh":3611, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder097", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + 5.9486188888549805 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube192", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.700583457946777 + ] + }, + { + "mesh":3612, + "name":"Circle2203", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6129926443099976, + -1.6701873540878296 + ] + }, + { + "mesh":3613, + "name":"Circle1888", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.724679946899414, + 1.3712204694747925, + -5.071893215179443 + ] + }, + { + "mesh":3614, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface663", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.916723251342773, + 1.4364303350448608, + -1.5871238708496094 + ] + }, + { + "mesh":3615, + "name":"Circle2927", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03337287902832, + 0.19340407848358154, + 0.6334410309791565 + ] + }, + { + "mesh":3616, + "name":"Circle2912", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.122756958007812, + 1.5553566217422485, + 1.172087550163269 + ] + }, + { + "mesh":3617, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube390", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402330160140991, + 1.0610322952270508 + ] + }, + { + "mesh":3618, + "name":"pasted__pasted__extrudedSurface027", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.621835708618164, + 0.1835993528366089, + -0.7475456595420837 + ] + }, + { + "mesh":3619, + "name":"Circle3188", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.963634490966797, + 2.0417957305908203, + 2.8719263076782227 + ] + }, + { + "mesh":3620, + "name":"pasted__pasted__pCube572", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.47679901123047, + 0.06377255916595459, + -7.836203575134277 + ] + }, + { + "mesh":3621, + "name":"pasted__pasted__pCylinder509", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.017887115478516, + 2.536557197570801, + 0.811528205871582 + ] + }, + { + "mesh":3622, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder64", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.876100540161133, + 0.07032907009124756, + -5.710104942321777 + ] + }, + { + "mesh":3623, + "name":"Circle1614", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0326790809631348, + -5.460317134857178 + ] + }, + { + "mesh":3624, + "name":"pasted__pasted__pasted__pasted__pCylinder873", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.602706909179688, + 0.6754261255264282, + 14.672083854675293 + ] + }, + { + "mesh":3625, + "name":"pasted__pasted__pCylinder381.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.49913215637207, + 5.043131351470947, + -3.355707883834839 + ] + }, + { + "mesh":3626, + "name":"pasted__pasted__pasted__pasted__pasted__pCube544", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -13.853092193603516, + -0.18407440185546875, + 14.710431098937988 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube515", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door114", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 2.3852198123931885 + ] + }, + { + "mesh":3627, + "name":"Circle2362", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5847941637039185, + -2.7626335620880127 + ] + }, + { + "mesh":3628, + "name":"Object1893", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.087064743041992, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3629, + "name":"pasted__pasted__pasted__extrudedSurface036", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.232776641845703, + 1.433923363685608, + 14.91525936126709 + ] + }, + { + "mesh":3630, + "name":"Rectangle337", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 13.035490036010742, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":3631, + "name":"pasted__pasted__pasted__pasted__pPipe025", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.982082366943359, + 1.2212475538253784, + 14.828760147094727 + ] + }, + { + "mesh":3632, + "name":"Circle3053", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3985601663589478, + 3.5754101276397705 + ] + }, + { + "mesh":3633, + "name":"Circle2543", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10554313659668, + 1.6062771081924438, + -1.6553614139556885 + ] + }, + { + "mesh":3634, + "name":"Object2441", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.880128860473633, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3635, + "name":"pasted__pasted__pasted__pCylinder758", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9271001815795898, + 0.7768586874008179, + 5.987378120422363 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door101", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -8.31318187713623 + ] + }, + { + "mesh":3636, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder105", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + 5.075465202331543 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube645", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":3637, + "name":"pasted__pasted__pCube820", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.980840682983398, + 5.0152716636657715, + 7.786843299865723 + ] + }, + { + "mesh":3638, + "name":"Obj3d66-647191-37-429", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8916492462158203, + 1.3201998472213745, + -8.596015930175781 + ] + }, + { + "mesh":3639, + "name":"pasted__pasted__pasted__pPlane317", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.4676456451416, + 0.38407838344573975, + 13.837109565734863 + ] + }, + { + "mesh":3640, + "name":"Object2372", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.414705276489258, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3641, + "name":"polySurface328", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.076736450195312, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":3642, + "name":"pasted__pasted__pCube798", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + 6.7317023277282715 + ] + }, + { + "mesh":3643, + "name":"Circle2512", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.98426628112793, + 1.9650532007217407, + -1.4522465467453003 + ] + }, + { + "mesh":3644, + "name":"Obj3d66-647191-6-433", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.555818557739258, + 1.7554806470870972, + 5.5750579833984375 + ] + }, + { + "mesh":3645, + "name":"Circle2316", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9692977666854858, + -2.22849702835083 + ] + }, + { + "mesh":3646, + "name":"Circle2784", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0628604888916, + 1.8708983659744263, + 0.6277795433998108 + ] + }, + { + "mesh":3647, + "name":"pasted__pasted__pPipe128", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.680997848510742, + 1.0770174264907837, + 7.779204368591309 + ] + }, + { + "mesh":3648, + "name":"Circle2094", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.9268741607666, + 2.104146957397461, + -5.459476947784424 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube346", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -6.0519328117370605 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface765", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 6.547109127044678 + ] + }, + { + "mesh":3649, + "name":"pasted__pasted__pCube749", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.45350456237793, + 5.064568996429443, + 4.733437538146973 + ] + }, + { + "mesh":3650, + "name":"Circle1620", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.956621527671814, + -5.460317134857178 + ] + }, + { + "mesh":3651, + "name":"Circle2409", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.02610969543457, + 1.993791937828064, + -2.22849702835083 + ] + }, + { + "mesh":3652, + "name":"Rectangle420", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":3653, + "name":"Circle2603", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0205440521240234, + 1.4157055616378784 + ] + }, + { + "mesh":3654, + "name":"Object2484", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.81965446472168, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3655, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube385", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + -0.014955468475818634 + ] + }, + { + "mesh":3656, + "name":"Line2427", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.033376693725586, + 0.19340407848358154, + -2.2228355407714844 + ] + }, + { + "mesh":3657, + "name":"Rectangle513", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.1366796493530273, + 0.14451825618743896, + -13.689974784851074 + ] + }, + { + "mesh":3658, + "name":"Circle2924", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.23468589782715, + 1.236960768699646, + 0.99406498670578 + ] + }, + { + "mesh":3659, + "name":"Circle2420", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0665340423584, + 1.8586090803146362, + -2.22849702835083 + ] + }, + { + "mesh":3660, + "name":"Circle1530", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8625746965408325, + -6.150901794433594 + ] + }, + { + "mesh":3661, + "name":"Rectangle349", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.489935874938965, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":3662, + "name":"Rectangle330", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + 14.770159721374512 + ] + }, + { + "mesh":3663, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube578", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 1.2274452447891235, + -3.2089879512786865 + ] + }, + { + "mesh":3664, + "name":"Rectangle844", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4617443084716797, + 0.19702470302581787, + 5.282083511352539 + ] + }, + { + "mesh":3665, + "name":"Circle2572", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6605547666549683, + 1.2128862142562866 + ] + }, + { + "mesh":3666, + "name":"Circle1978", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.7128852605819702, + -5.459476947784424 + ] + }, + { + "mesh":3667, + "name":"pasted__pasted__pasted__pasted__pCylinder450", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.807779312133789, + 0.6754261255264282, + 13.790817260742188 + ] + }, + { + "mesh":3668, + "name":"Circle1899", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.6487561464309692, + -4.878292083740234 + ] + }, + { + "mesh":3669, + "name":"Rectangle914", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.231443405151367, + 0.1124032735824585, + -5.453815937042236 + ] + }, + { + "mesh":3670, + "name":"Object2019", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.148944854736328, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3671, + "name":"Rectangle1085", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.100914001464844, + 0.39283287525177, + -4.108668804168701 + ] + }, + { + "mesh":3672, + "name":"Obj3d66-647191-9-474", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.004411697387695, + 1.6471415758132935, + -15.545455932617188 + ] + }, + { + "mesh":3673, + "name":"Object115", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.21303939819336, + -0.15302824974060059, + 0.1938590109348297 + ] + }, + { + "mesh":3674, + "name":"Circle2321", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3985601663589478, + -2.1321728229522705 + ] + }, + { + "mesh":3675, + "name":"Rectangle1309", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -1.722433090209961 + ] + }, + { + "mesh":3676, + "name":"Rectangle1331", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384535074234009, + -3.1424522399902344 + ] + }, + { + "mesh":3677, + "name":"pasted__pasted__pasted__pasted__pPipe027", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.982082366943359, + 0.8169807195663452, + 15.858174324035645 + ] + }, + { + "mesh":3678, + "name":"Obj3d66-647191-1-680", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8924436569213867, + 1.316391110420227, + -8.658736228942871 + ] + }, + { + "mesh":3679, + "name":"pasted__pasted__pPipe17.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.218059539794922, + 1.2917834520339966, + -8.013620376586914 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube343", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":3680, + "name":"Circle1677", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.01875877380371, + 2.0183701515197754, + -5.460317134857178 + ] + }, + { + "mesh":3681, + "name":"Circle2106", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.882774353027344, + 1.9566468000411987, + -5.459476947784424 + ] + }, + { + "mesh":3682, + "name":"Object1988", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.072998046875, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3683, + "name":"pasted__pasted__pasted__pCube738", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 0.8213735818862915, + 16.179706573486328 + ] + }, + { + "mesh":3684, + "name":"Object2172", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.456893920898438, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3685, + "name":"Circle2642", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8045071363449097, + 0.6277795433998108 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube509", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":3686, + "name":"polySurface125", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.714502334594727, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":3687, + "name":"Rectangle1045", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.953362464904785, + 0.47970330715179443, + 16.649982452392578 + ] + }, + { + "mesh":3688, + "name":"pasted__pasted__pCube662", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + -1.3464406728744507 + ] + }, + { + "mesh":3689, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube540", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 0.8592513799667358, + -9.252572059631348 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube548", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":3690, + "name":"Object2062", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.088468551635742, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3691, + "name":"Rectangle154", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.78617286682129, + 0.5975691080093384, + -12.893644332885742 + ] + }, + { + "mesh":3692, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube634", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 1.3661421537399292, + 3.195838451385498 + ] + }, + { + "mesh":3693, + "name":"Object1917", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.172847747802734, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3694, + "name":"pasted__pasted__pasted__pCube692", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 1.399283766746521, + 16.179706573486328 + ] + }, + { + "mesh":3695, + "name":"Rectangle566", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9651451110839844, + 0.43873751163482666, + 12.4276762008667 + ] + }, + { + "mesh":3696, + "name":"pasted__pasted__pCylinder477", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.048494338989258, + 3.2304320335388184, + 6.162014961242676 + ] + }, + { + "mesh":3697, + "name":"pasted__pasted__pasted__pCube632", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9333295822143555, + 0.7724684476852417, + -1.2635674476623535 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube394", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 6.547109127044678 + ] + }, + { + "mesh":3698, + "name":"pasted__pasted__pCylinder371", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.176162719726562, + 1.5833171606063843, + -5.403171062469482 + ] + }, + { + "mesh":3699, + "name":"pasted__pasted__pasted__pPlane111", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.751443862915039, + 0.38407886028289795, + 15.046956062316895 + ] + }, + { + "mesh":3700, + "name":"Object2140", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.501895904541016, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3701, + "name":"Rectangle196", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.706268310546875, + 0.2500876188278198, + -12.587183952331543 + ] + }, + { + "mesh":3702, + "name":"pasted__pasted__extrudedSurface030", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.204841613769531, + 0.1836003065109253, + 7.772492408752441 + ] + }, + { + "mesh":3703, + "name":"Object2031", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.132068634033203, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3704, + "name":"pasted__pasted__pasted__pPlane274", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -13.776834487915039, + 0.38407838344573975, + 12.949873924255371 + ] + }, + { + "mesh":3705, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube287", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.925851821899414, + 1.3735631704330444, + -0.2074243724346161 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube477", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":3706, + "name":"Circle2600", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.054292678833008, + 1.4347199201583862 + ] + }, + { + "mesh":3707, + "name":"Circle3131", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.996707916259766, + 2.092106819152832, + 3.6717348098754883 + ] + }, + { + "mesh":3708, + "name":"Object2539", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.861846923828125, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3709, + "name":"Rectangle1047", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.7237701416015625, + 0.2190920114517212, + 16.649982452392578 + ] + }, + { + "mesh":3710, + "name":"Circle2666", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1594409942626953, + 0.6277795433998108 + ] + }, + { + "mesh":3711, + "name":"Obj3d66-647191-18-841", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.97991180419922, + 1.6729644536972046, + 18.269943237304688 + ] + }, + { + "mesh":3712, + "name":"Rectangle165", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.323970794677734, + 0.5975691080093384, + -12.893644332885742 + ] + }, + { + "mesh":3713, + "name":"pasted__pasted__pasted__pCylinder631", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.994119644165039, + 0.5030606985092163, + 12.947877883911133 + ] + }, + { + "mesh":3714, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface717", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.869417190551758, + 0.6330384016036987, + 16.93367576599121 + ] + }, + { + "mesh":3715, + "name":"pasted__pasted__pasted__pCylinder640", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.701154708862305, + 0.5030606985092163, + 16.585969924926758 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube451", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":3716, + "name":"pasted__pasted__pPipe069", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.871406555175781, + 1.845382809638977, + 0.2781330347061157 + ] + }, + { + "mesh":3717, + "name":"pasted__pasted__pasted__pCube747", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 1.2411547899246216, + 16.228010177612305 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group121", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.700583457946777 + ] + }, + { + "mesh":3718, + "name":"pasted__pasted__pasted__pCube552", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.098844528198242, + 0.25255048274993896, + 16.591156005859375 + ] + }, + { + "mesh":3719, + "name":"Circle2202", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6718045473098755, + -1.6370525360107422 + ] + }, + { + "mesh":3720, + "name":"Circle3014", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7128852605819702, + 3.6717348098754883 + ] + }, + { + "mesh":3721, + "name":"Circle3178", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.004060745239258, + 1.9234155416488647, + 2.939631462097168 + ] + }, + { + "mesh":3722, + "name":"Circle1887", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.724679946899414, + 1.418618083000183, + -5.1167449951171875 + ] + }, + { + "mesh":3723, + "name":"Circle2417", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.055511474609375, + 1.8954769372940063, + -2.22849702835083 + ] + }, + { + "mesh":3724, + "name":"Circle2719", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.828814148902893, + -0.04379025846719742 + ] + }, + { + "mesh":3725, + "name":"Rectangle928", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.381135940551758, + 1.039061188697815, + 0.6334408521652222 + ] + }, + { + "mesh":3726, + "name":"Circle2911", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.11824607849121, + 1.5687059164047241, + 1.179645299911499 + ] + }, + { + "mesh":3727, + "name":"Circle2877", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.98426628112793, + 1.9650532007217407, + 1.404030203819275 + ] + }, + { + "mesh":3728, + "name":"pasted__pasted__pCylinder423", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.473392486572266, + -1.4001697301864624, + -7.744847297668457 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface594", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":3729, + "name":"pasted__pasted__pCylinder508", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.009218215942383, + 2.5090794563293457, + 0.8067916631698608 + ] + }, + { + "mesh":3730, + "name":"pasted__pasted__pCylinder712", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.010469436645508, + 2.4802327156066895, + 4.662770748138428 + ] + }, + { + "mesh":3731, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder62", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.876100540161133, + 0.07032907009124756, + -5.08786678314209 + ] + }, + { + "mesh":3732, + "name":"Circle2029", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.6380552053451538, + -6.020882606506348 + ] + }, + { + "mesh":3733, + "name":"Circle2556", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.428735375404358, + -1.885764718055725 + ] + }, + { + "mesh":3734, + "name":"Circle1613", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0453553199768066, + -5.460317134857178 + ] + }, + { + "mesh":3735, + "name":"pasted__pasted__pasted__pasted__pCylinder872", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785398483276367, + 0.6754261255264282, + 14.672256469726562 + ] + }, + { + "mesh":3736, + "name":"Object2003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.171442985534668, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3737, + "name":"Rectangle320.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + -13.104957580566406 + ] + }, + { + "mesh":3738, + "name":"Circle2780", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.048160552978516, + 1.9200557470321655, + 0.6277795433998108 + ] + }, + { + "mesh":3739, + "name":"pasted__pasted__pCube411.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.828325271606445, + 1.7704380750656128, + -3.3768231868743896 + ] + }, + { + "mesh":3740, + "name":"pasted__pasted__pasted__pasted__pasted__extrudedSurface065", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -13.89914321899414, + 1.3885892629623413, + 15.15339469909668 + ] + }, + { + "mesh":3741, + "name":"Object1892", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.088468551635742, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3742, + "name":"pasted__pasted__pasted__extrudedSurface035", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.232776641845703, + 1.433923363685608, + 13.822271347045898 + ] + }, + { + "mesh":3743, + "name":"Rectangle336", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 14.412607192993164, + 0.14451754093170166, + 18.734651565551758 + ] + }, + { + "mesh":3744, + "name":"Circle3052", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3985601663589478, + 3.7160122394561768 + ] + }, + { + "mesh":3745, + "name":"pasted__pasted__pCube376.005", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.563478469848633, + 2.603695869445801, + -3.3914520740509033 + ] + }, + { + "mesh":3746, + "name":"Circle2542", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.101869583129883, + 1.6171492338180542, + -1.6492063999176025 + ] + }, + { + "mesh":3747, + "name":"Object2440", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.881532669067383, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube436", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":3748, + "name":"Circle2903", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08717155456543, + 1.6606370210647583, + 1.2316904067993164 + ] + }, + { + "mesh":3749, + "name":"pasted__pasted__pasted__pCylinder757", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9281158447265625, + 0.7768586874008179, + 6.145462512969971 + ] + }, + { + "mesh":3750, + "name":"Circle2766", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.996707916259766, + 2.092106819152832, + 0.6277795433998108 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube568", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group119", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.393779754638672 + ] + }, + { + "mesh":3751, + "name":"Circle2073", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9192966222763062, + -6.179335117340088 + ] + }, + { + "mesh":3752, + "name":"Obj3d66-647191-31-962", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747915267944336, + 1.6571954488754272, + -9.271836280822754 + ] + }, + { + "mesh":3753, + "name":"pasted__pasted__pasted__pPlane316", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.4676456451416, + 0.38407838344573975, + 13.269036293029785 + ] + }, + { + "mesh":3754, + "name":"Object2371", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.416109085083008, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3755, + "name":"polySurface327", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.093719482421875, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":3756, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder46", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.535911560058594, + 0.11342322826385498, + -6.786844253540039 + ] + }, + { + "mesh":3757, + "name":"Circle2511", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.980588912963867, + 1.9759255647659302, + -1.4460915327072144 + ] + }, + { + "mesh":3758, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder078", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.838584899902344, + 0.12095391750335693, + 3.2347376346588135 + ] + }, + { + "mesh":3759, + "name":"Rectangle838", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.230733871459961, + 0.4576355218887329, + 5.282083511352539 + ] + }, + { + "mesh":3760, + "name":"Circle2783", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.059186935424805, + 1.8831874132156372, + 0.6277795433998108 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door116", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 6.547109127044678 + ] + }, + { + "mesh":3761, + "name":"pasted__pasted__pPipe127", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.699180603027344, + 1.2917834520339966, + 7.779204368591309 + ] + }, + { + "mesh":3762, + "name":"Circle2093", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.9305477142334, + 2.1164379119873047, + -5.459476947784424 + ] + }, + { + "mesh":3763, + "name":"pasted__pasted__pCylinder703", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.927888870239258, + 2.2342963218688965, + 4.704687118530273 + ] + }, + { + "mesh":3764, + "name":"pasted__pasted__pCube748", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.411561965942383, + 5.280849933624268, + 4.576781749725342 + ] + }, + { + "mesh":3765, + "name":"Rectangle419", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.466476440429688, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":3766, + "name":"Object2483", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.821062088012695, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3767, + "name":"Line2426", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.033369064331055, + 0.19340407848358154, + -2.2228357791900635 + ] + }, + { + "mesh":3768, + "name":"Circle3146", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.051836013793945, + 1.9077662229537964, + 3.6717348098754883 + ] + }, + { + "mesh":3769, + "name":"Circle2923", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3208791017532349, + 1.1365255117416382 + ] + }, + { + "mesh":3770, + "name":"Circle1529", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8738282918930054, + -6.157240390777588 + ] + }, + { + "mesh":3771, + "name":"Rectangle348", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.112820625305176, + 0.14451754093170166, + 18.734651565551758 + ] + }, + { + "mesh":3772, + "name":"Shape086", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.205141067504883, + 1.5521396398544312, + -6.6977458000183105 + ] + }, + { + "mesh":3773, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube347", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 0.3764752149581909, + 5.37234354019165 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface576", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379499435425 + ] + }, + { + "mesh":3774, + "name":"Circle2065", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.009294033050537, + -6.230039119720459 + ] + }, + { + "mesh":3775, + "name":"Circle2485", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.110639572143555, + 1.611322283744812, + -2.782106399536133 + ] + }, + { + "mesh":3776, + "name":"Rectangle843", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.3848743438720703, + 0.2838946580886841, + 5.282083511352539 + ] + }, + { + "mesh":3777, + "name":"Circle2571", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6493052244186401, + 1.2065480947494507 + ] + }, + { + "mesh":3778, + "name":"pasted__pasted__pasted__pasted__polySurface319", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.977703094482422, + 0.6369913816452026, + 13.790817260742188 + ] + }, + { + "mesh":3779, + "name":"Circle1898", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.6375025510787964, + -4.88463020324707 + ] + }, + { + "mesh":3780, + "name":"Object2018", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.150346755981445, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3781, + "name":"Rectangle1084", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.844839096069336, + 0.5665737390518188, + -4.108668804168701 + ] + }, + { + "mesh":3782, + "name":"Obj3d66-647191-8-596", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.992870330810547, + 1.6444579362869263, + -15.555953025817871 + ] + }, + { + "mesh":3783, + "name":"Shape071", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.98724365234375, + 0.11804807186126709, + -0.6465281844139099 + ] + }, + { + "mesh":3784, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube265", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + 0.07540084421634674 + ] + }, + { + "mesh":3785, + "name":"pasted__pasted__pasted__pCylinder167", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.565742492675781, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":3786, + "name":"Circle2274", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3985601663589478, + -2.272768974304199 + ] + }, + { + "mesh":3787, + "name":"Obj3d66-647191-32-921", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567583084106445, + 1.6615828275680542, + 18.264938354492188 + ] + }, + { + "mesh":3788, + "name":"pasted__pasted__pasted__pCube649", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9257087707519531, + 1.055625081062317, + 4.953568458557129 + ] + }, + { + "mesh":3789, + "name":"pasted__pasted__pasted__pasted__pPipe079", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.327337265014648, + 1.2212475538253784, + 14.828760147094727 + ] + }, + { + "mesh":3790, + "name":"pasted__pasted__pCube373.007", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.493925094604492, + 1.082088828086853, + -8.007376670837402 + ] + }, + { + "mesh":3791, + "name":"pasted__pasted__pasted__pCylinder752", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9305353164672852, + 0.8645819425582886, + 5.771851062774658 + ] + }, + { + "mesh":3792, + "name":"Rectangle391.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -23.02604103088379, + 0.14451754093170166, + -16.603008270263672 + ] + }, + { + "mesh":3793, + "name":"Object1987", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.074409484863281, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3794, + "name":"pasted__pasted__pasted__pCube737", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 0.9795023202896118, + 16.179706573486328 + ] + }, + { + "mesh":3795, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder115", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692001342773438, + 0.3832782506942749, + 5.079594135284424 + ] + }, + { + "mesh":3796, + "name":"Circle2641", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8171836137771606, + 0.6277795433998108 + ] + }, + { + "mesh":3797, + "name":"polySurface124", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.731483459472656, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":3798, + "name":"Rectangle1044", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.892827033996582, + 0.04489290714263916, + 16.88002586364746 + ] + }, + { + "mesh":3799, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder083", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.525850296020508, + 0.14451825618743896, + 5.561471462249756 + ] + }, + { + "mesh":3800, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder066", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.925460815429688, + 1.5153416395187378, + -2.074779510498047 + ] + }, + { + "mesh":3801, + "name":"pasted__pasted__pCube661", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + -0.4780728220939636 + ] + }, + { + "mesh":3802, + "name":"Circle3239", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.973241806030273, + 1.9976691007614136, + 4.466450214385986 + ] + }, + { + "mesh":3803, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube539", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 0.9979475736618042, + -9.252572059631348 + ] + }, + { + "mesh":3804, + "name":"pasted__pasted__pasted__pPlane292", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -13.775266647338867, + 0.3886607885360718, + 12.952310562133789 + ] + }, + { + "mesh":3805, + "name":"Object1916", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.054719924926758, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3806, + "name":"pasted__pasted__pasted__polySurface552", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.040225982666016, + 0.6836510896682739, + 15.729188919067383 + ] + }, + { + "mesh":3807, + "name":"Object2533", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.870283126831055, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3808, + "name":"pasted__pasted__pCylinder476", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.035856246948242, + 3.1357784271240234, + 7.190370559692383 + ] + }, + { + "mesh":3809, + "name":"Circle2062", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.0430426597595215, + -6.249053955078125 + ] + }, + { + "mesh":3810, + "name":"pasted__pasted__pCube427", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.085107803344727, + 1.6318343877792358, + -5.404542922973633 + ] + }, + { + "mesh":3811, + "name":"pasted__pasted__pasted__pPlane108", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.751443862915039, + 0.38407886028289795, + 14.478879928588867 + ] + }, + { + "mesh":3812, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube423", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + 5.3391523361206055 + ] + }, + { + "mesh":3813, + "name":"Object2139", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.503303527832031, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3814, + "name":"Rectangle195", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.706268310546875, + 0.33695781230926514, + -12.664052963256836 + ] + }, + { + "mesh":3815, + "name":"Object2682", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.7802791595459, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube528", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":3816, + "name":"Object2030", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.13347053527832, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3817, + "name":"pasted__pasted__pasted__pCube735", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 1.399283766746521, + 16.179706573486328 + ] + }, + { + "mesh":3818, + "name":"pasted__pasted__pasted__pCube544", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.885326385498047, + 0.25255048274993896, + 12.952010154724121 + ] + }, + { + "mesh":3819, + "name":"pasted__pasted__pCube767", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.887022018432617, + 1.1269747018814087, + 7.7594313621521 + ] + }, + { + "mesh":3820, + "name":"Object2538", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.863252639770508, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3821, + "name":"Rectangle422", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + -13.716010093688965 + ] + }, + { + "mesh":3822, + "name":"Rectangle164", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.323970794677734, + 0.2500876188278198, + -12.587183952331543 + ] + }, + { + "mesh":3823, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface716", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.869417190551758, + 0.6330384016036987, + 12.759177207946777 + ] + }, + { + "mesh":3824, + "name":"pasted__pasted__pCube778", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.044599533081055, + 2.603695869445801, + 3.1337287425994873 + ] + }, + { + "mesh":3825, + "name":"Circle1833", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.687036514282227, + 0.19340407848358154, + -5.454657077789307 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube446", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube450", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":3826, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder119", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692001342773438, + 0.3832782506942749, + 5.662074089050293 + ] + }, + { + "mesh":3827, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface229", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.870063781738281, + 1.7860993146896362, + 0.27574360370635986 + ] + }, + { + "mesh":3828, + "name":"Circle1882", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.81686782836914, + 1.352272391319275, + -5.047906398773193 + ] + }, + { + "mesh":3829, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube316", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.88755989074707, + 1.3735638856887817, + 5.949184894561768 + ] + }, + { + "mesh":3830, + "name":"Rectangle184", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.120513916015625, + 0.510698676109314, + -12.818193435668945 + ] + }, + { + "mesh":3831, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube379", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + -1.7831557989120483 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube175", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":3832, + "name":"Line2420", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.231447219848633, + 0.19340407848358154, + -5.453815937042236 + ] + }, + { + "mesh":3833, + "name":"pasted__pasted__pasted__pCylinder670", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094709396362305, + 0.5030604600906372, + 15.404440879821777 + ] + }, + { + "mesh":3834, + "name":"pasted__pasted__pTorus024", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.164159774780273, + 3.341920852661133, + -7.374905586242676 + ] + }, + { + "mesh":3835, + "name":"Circle2709", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.738784670829773, + 0.006914645433425903 + ] + }, + { + "mesh":3836, + "name":"Circle2979", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.705896377563477, + 1.3744639158248901, + 4.094761848449707 + ] + }, + { + "mesh":3837, + "name":"Object2507", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.787309646606445, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3838, + "name":"Circle1886", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.724679946899414, + 1.3365496397018433, + -4.995849609375 + ] + }, + { + "mesh":3839, + "name":"Circle2631", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10127067565918, + 1.118975043296814, + 0.31954097747802734 + ] + }, + { + "mesh":3840, + "name":"Circle2910", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.113731384277344, + 1.582055687904358, + 1.18720281124115 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface731", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.656999945640564 + ] + }, + { + "mesh":3841, + "name":"pasted__pasted__pCylinder507", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.00054931640625, + 2.481602668762207, + 0.8020446300506592 + ] + }, + { + "mesh":3842, + "name":"pasted__pasted__pCylinder714", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.02882194519043, + 2.5348849296569824, + 4.6534647941589355 + ] + }, + { + "mesh":3843, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube358", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + -8.516279220581055 + ] + }, + { + "mesh":3844, + "name":"pasted__pasted__pCylinder697", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.872831344604492, + 2.0703415870666504, + 4.7326459884643555 + ] + }, + { + "mesh":3845, + "name":"pasted__pasted__pasted__pPlane303", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.347593307495117, + 0.38866126537323, + 16.590402603149414 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube333", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":3846, + "name":"Circle2555", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.326295256614685, + -1.764607310295105 + ] + }, + { + "mesh":3847, + "name":"Rectangle1240", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384544610977173, + -5.387546062469482 + ] + }, + { + "mesh":3848, + "name":"Circle1735", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03713607788086, + 1.8265589475631714, + -6.137025833129883 + ] + }, + { + "mesh":3849, + "name":"Circle1612", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0580310821533203, + -5.460317134857178 + ] + }, + { + "mesh":3850, + "name":"pasted__pasted__pasted__pasted__pCylinder871", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.863826751708984, + 0.6754261255264282, + 14.820230484008789 + ] + }, + { + "mesh":3851, + "name":"Rectangle421", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + -15.09312915802002 + ] + }, + { + "mesh":3852, + "name":"pasted__pasted__pasted__pCylinder681", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.230194091796875, + 1.2660449743270874, + 12.94787883758545 + ] + }, + { + "mesh":3853, + "name":"Object2002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.172847747802734, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3854, + "name":"pasted__pasted__extrudedSurface20.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.723724365234375, + 0.1835993528366089, + -3.3859760761260986 + ] + }, + { + "mesh":3855, + "name":"pasted__pasted__pasted__pasted__pasted__extrudedSurface064", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -13.908559799194336, + 1.3869057893753052, + 14.707235336303711 + ] + }, + { + "mesh":3856, + "name":"pasted__pasted__pCylinder719", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.872264862060547, + 0.08547866344451904, + 5.8691020011901855 + ] + }, + { + "mesh":3857, + "name":"Object1891", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.089874267578125, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3858, + "name":"Rectangle763", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7360172271728516, + 0.510698676109314, + -4.219324111938477 + ] + }, + { + "mesh":3859, + "name":"pasted__pasted__pasted__extrudedSurface034", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.581912994384766, + 1.4143375158309937, + 13.91717529296875 + ] + }, + { + "mesh":3860, + "name":"Rectangle335", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 15.789726257324219, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":3861, + "name":"Circle3051", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3985601663589478, + 3.768059015274048 + ] + }, + { + "mesh":3862, + "name":"pasted__pasted__pPipe12.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.67852210998535, + 2.565361976623535, + -3.379265308380127 + ] + }, + { + "mesh":3863, + "name":"Circle2541", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.098196029663086, + 1.6280208826065063, + -1.6430513858795166 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube606", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":3864, + "name":"Object2439", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.882936477661133, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube567", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":3865, + "name":"Circle2775", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.029787063598633, + 1.9815021753311157, + 0.6277795433998108 + ] + }, + { + "mesh":3866, + "name":"Rectangle1171", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.36827278137207, + 0.14451825618743896, + 14.283381462097168 + ] + }, + { + "mesh":3867, + "name":"pasted__pasted__pasted__pCube593", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.469785690307617, + 0.25255048274993896, + 14.160536766052246 + ] + }, + { + "mesh":3868, + "name":"Object2370", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.417516708374023, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3869, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder45", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.19651985168457, + 0.4397674798965454, + -6.78331184387207 + ] + }, + { + "mesh":3870, + "name":"pasted__pasted__pCube799", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + 7.032785415649414 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors137", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":3871, + "name":"Circle2510", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.976919174194336, + 1.9867974519729614, + -1.4399365186691284 + ] + }, + { + "mesh":3872, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder077", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.923723220825195, + 1.7865084409713745, + 3.3354508876800537 + ] + }, + { + "mesh":3873, + "name":"Circle3256", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.043067932128906, + 1.7911008596420288, + 4.3495049476623535 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface710", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -3.557638645172119 + ] + }, + { + "mesh":3874, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface705", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.031774520874023, + 1.350049376487732, + 13.954267501831055 + ] + }, + { + "mesh":3875, + "name":"Circle1600", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.210145950317383, + -5.460317134857178 + ] + }, + { + "mesh":3876, + "name":"Circle1836", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.907079696655273, + 1.901892066001892, + -4.728658676147461 + ] + }, + { + "mesh":3877, + "name":"Circle2120", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.831317901611328, + 1.784563660621643, + -5.459476947784424 + ] + }, + { + "mesh":3878, + "name":"Rectangle837", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.7701778411865234, + 0.14451849460601807, + 6.496676445007324 + ] + }, + { + "mesh":3879, + "name":"Circle2782", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.055511474609375, + 1.8954769372940063, + 0.6277795433998108 + ] + }, + { + "mesh":3880, + "name":"pasted__pasted__pCube819", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.034181594848633, + 1.1083353757858276, + 7.7670063972473145 + ] + }, + { + "mesh":3881, + "name":"pasted__pasted__pCylinder704", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.937061309814453, + 2.2616233825683594, + 4.700034141540527 + ] + }, + { + "mesh":3882, + "name":"pasted__pasted__pCylinder9.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.899190902709961, + 2.1647748947143555, + -5.591787338256836 + ] + }, + { + "mesh":3883, + "name":"pasted__pasted__pCube747", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.35550880432129, + 5.064015865325928, + 3.9076011180877686 + ] + }, + { + "mesh":3884, + "name":"Rectangle418", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 16.08935546875, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":3885, + "name":"Object2482", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.822467803955078, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3886, + "name":"Rectangle512", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.663759231567383, + 0.14451825618743896, + -13.689974784851074 + ] + }, + { + "mesh":3887, + "name":"Circle2922", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3809512853622437, + 1.0156258344650269 + ] + }, + { + "mesh":3888, + "name":"Circle3078", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.907589316368103, + 2.9557981491088867 + ] + }, + { + "mesh":3889, + "name":"Circle2429", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0996150970459, + 1.7480052709579468, + -2.22849702835083 + ] + }, + { + "mesh":3890, + "name":"Circle1528", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8850818872451782, + -6.163578510284424 + ] + }, + { + "mesh":3891, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube445", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.92593765258789, + 1.4366048574447632, + 3.3416473865509033 + ] + }, + { + "mesh":3892, + "name":"Rectangle347", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.7356977462768555, + 0.14451754093170166, + 18.734651565551758 + ] + }, + { + "mesh":3893, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube264", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 1.3735638856887817, + 0.3720691204071045 + ] + }, + { + "mesh":3894, + "name":"Rectangle842", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.215822219848633, + 0.10969555377960205, + 5.08372163772583 + ] + }, + { + "mesh":3895, + "name":"Circle2570", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.638055443763733, + 1.2002097368240356 + ] + }, + { + "mesh":3896, + "name":"pasted__pasted__pasted__pasted__pPipe020", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.982082366943359, + 0.43142926692962646, + 13.799349784851074 + ] + }, + { + "mesh":3897, + "name":"pasted__pasted__pCylinder693", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.836130142211914, + 1.9610365629196167, + 4.751277923583984 + ] + }, + { + "mesh":3898, + "name":"Line2419", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.231454849243164, + 0.19340407848358154, + -5.453815937042236 + ] + }, + { + "mesh":3899, + "name":"Object2017", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.151752471923828, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3900, + "name":"Circle2755", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.946138381958008, + 2.243314266204834, + 0.6277793645858765 + ] + }, + { + "mesh":3901, + "name":"Rectangle1083", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.100914001464844, + 0.39283287525177, + -9.262700080871582 + ] + }, + { + "mesh":3902, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface537", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.967622756958008, + 0.6753274202346802, + 12.768712043762207 + ] + }, + { + "mesh":3903, + "name":"Obj3d66-647191-7-342", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.992870330810547, + 1.6444579362869263, + -15.596882820129395 + ] + }, + { + "mesh":3904, + "name":"Circle1584", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.934459686279297, + 1.118975043296814, + -5.768556594848633 + ] + }, + { + "mesh":3905, + "name":"pasted__pasted__pasted__pCylinder166", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.565742492675781, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "mesh":3906, + "name":"Object1822", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.121111869812012, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":3907, + "name":"Rectangle1307", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -3.4504623413085938 + ] + }, + { + "mesh":3908, + "name":"Object2576", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8098087310791, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3909, + "name":"pasted__pasted__pCylinder530", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.007722854614258, + 2.4979376792907715, + 0.08851037919521332 + ] + }, + { + "mesh":3910, + "name":"Rectangle1279", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.456121444702148, + 0.5755866765975952, + -0.6465286612510681 + ] + }, + { + "mesh":3911, + "name":"pasted__pasted__pasted__pasted__pCylinder822", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231765747070312, + 1.0796922445297241, + 14.672083854675293 + ] + }, + { + "mesh":3912, + "name":"pasted__pasted__pCube374.007", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.493925094604492, + 1.2804936170578003, + -8.00737476348877 + ] + }, + { + "mesh":3913, + "name":"Circle1476", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8298596143722534, + -5.460317134857178 + ] + }, + { + "mesh":3914, + "name":"Circle2104", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.890125274658203, + 1.9812301397323608, + -5.459476947784424 + ] + }, + { + "mesh":3915, + "name":"Object1986", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.075813293457031, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3916, + "name":"pasted__pasted__pasted__pCube736", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 1.2411547899246216, + 16.179706573486328 + ] + }, + { + "mesh":3917, + "name":"pasted__pasted__pPipe091", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.67438316345215, + 1.0760310888290405, + 5.489278793334961 + ] + }, + { + "mesh":3918, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube054", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137235641479492, + 0.6166740655899048, + -9.230489730834961 + ] + }, + { + "mesh":3919, + "name":"pasted__pasted__pasted__pCylinder693", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.281946182250977, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":3920, + "name":"Circle1743", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0665340423584, + 1.7404643297195435, + -6.087786674499512 + ] + }, + { + "mesh":3921, + "name":"polySurface123", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.74846076965332, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":3922, + "name":"Object2216", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.514554977416992, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3923, + "name":"pasted__pasted__pCylinder573", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.874229431152344, + 4.853360652923584, + 0.18658611178398132 + ] + }, + { + "mesh":3924, + "name":"pasted__pCylinder366", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.611555099487305, + 0.44795191287994385, + 6.3931193351745605 + ] + }, + { + "mesh":3925, + "name":"Circle2523", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.032041549682617, + 1.8237169981002808, + -1.5322613716125488 + ] + }, + { + "mesh":3926, + "name":"pasted__pasted__pCube660", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + -0.7791555523872375 + ] + }, + { + "mesh":3927, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube538", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 1.2274452447891235, + -9.252572059631348 + ] + }, + { + "mesh":3928, + "name":"Text012", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.6020936965942383, + 1.3259838819503784, + -8.1646089553833 + ] + }, + { + "mesh":3929, + "name":"Rectangle426", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + -8.20753288269043 + ] + }, + { + "mesh":3930, + "name":"Object1915", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.056122779846191, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3931, + "name":"pasted__pasted__pasted__pCube691", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 0.8213735818862915, + 14.92426586151123 + ] + }, + { + "mesh":3932, + "name":"Rectangle1216", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384535074234009, + -8.921815872192383 + ] + }, + { + "mesh":3933, + "name":"Circle2061", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.0542922019958496, + -6.255392074584961 + ] + }, + { + "mesh":3934, + "name":"pasted__pasted__pCylinder367", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.176162719726562, + 1.5833185911178589, + -5.196917533874512 + ] + }, + { + "mesh":3935, + "name":"pasted__pasted__pasted__pCylinder192", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749452590942383, + 0.503059983253479, + 12.976770401000977 + ] + }, + { + "mesh":3936, + "name":"Object2138", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.504709243774414, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3937, + "name":"Circle1599", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.222822666168213, + -5.460317134857178 + ] + }, + { + "mesh":3938, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube420", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + 4.059065341949463 + ] + }, + { + "mesh":3939, + "name":"Object2681", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.78168296813965, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3940, + "name":"pasted__pasted__pasted__pCylinder639", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.701154708862305, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":3941, + "name":"Circle2399", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.989358901977539, + 2.116685390472412, + -2.22849702835083 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube358", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -0.5263744592666626 + ] + }, + { + "mesh":3942, + "name":"Object2029", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.134876251220703, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":3943, + "name":"pasted__pasted__pasted__pCube543", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094841003417969, + 0.25255048274993896, + 12.95201301574707 + ] + }, + { + "mesh":3944, + "name":"Object2537", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.864656448364258, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3945, + "name":"Object2528", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.87731170654297, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3946, + "name":"Circle2330", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.898542404174805, + 1.374463438987732, + -2.6404998302459717 + ] + }, + { + "mesh":3947, + "name":"Rectangle163", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.323970794677734, + 0.33695781230926514, + -12.664052963256836 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface655", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.700583457946777 + ] + }, + { + "mesh":3948, + "name":"Circle3151", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.07021141052246, + 1.846319556236267, + 3.6717348098754883 + ] + }, + { + "mesh":3949, + "name":"Rectangle1441", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + 5.745632648468018 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube449", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":3950, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder125", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.535911560058594, + 0.11342322826385498, + 4.179894924163818 + ] + }, + { + "mesh":3951, + "name":"pasted__pasted__pasted__pCube746", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 0.8213735818862915, + 16.828125 + ] + }, + { + "mesh":3952, + "name":"pasted__pasted__pasted__pCylinder669", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094709396362305, + 1.2660447359085083, + 15.404440879821777 + ] + }, + { + "mesh":3953, + "name":"pasted__pasted__pTorus023", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.188152313232422, + 3.341920852661133, + -7.619144439697266 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube177", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":3954, + "name":"Object2506", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.78871726989746, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3955, + "name":"Circle1885", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.972352981567383, + 2.0792741775512695, + -4.619372844696045 + ] + }, + { + "mesh":3956, + "name":"Circle2630", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10127067565918, + 1.118975043296814, + 0.6277793645858765 + ] + }, + { + "mesh":3957, + "name":"Circle2909", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10921859741211, + 1.5954049825668335, + 1.1947602033615112 + ] + }, + { + "mesh":3958, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube419", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + 4.159702301025391 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door109", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.656999945640564 + ] + }, + { + "mesh":3959, + "name":"pasted__pasted__pCylinder506", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.991880416870117, + 2.4541258811950684, + 0.7972971796989441 + ] + }, + { + "mesh":3960, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube476", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.029628753662109, + 1.5177079439163208, + -8.990970611572266 + ] + }, + { + "mesh":3961, + "name":"pasted__pasted__pCylinder698", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.882007598876953, + 2.0976662635803223, + 4.727982997894287 + ] + }, + { + "mesh":3962, + "name":"Rectangle1220", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.73845374584198, + -8.332769393920898 + ] + }, + { + "mesh":3963, + "name":"pasted__pasted__pasted__pPlane302", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.997343063354492, + 0.38866126537323, + 16.590402603149414 + ] + }, + { + "mesh":3964, + "name":"Circle3095", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0763936042785645, + 2.860726833343506 + ] + }, + { + "mesh":3965, + "name":"pasted__pasted__pasted__pCylinder201", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749454498291016, + 0.5030606985092163, + 16.56253433227539 + ] + }, + { + "mesh":3966, + "name":"Circle2554", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.946138381958008, + 2.0678772926330566, + -1.3883930444717407 + ] + }, + { + "mesh":3967, + "name":"Circle1611", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0707077980041504, + -5.460317134857178 + ] + }, + { + "mesh":3968, + "name":"Obj3d66-647191-4-134", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.992870330810547, + 1.6804250478744507, + 18.297592163085938 + ] + }, + { + "mesh":3969, + "name":"Circle2141", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.91217613220215, + 1.8998206853866577, + -6.187772274017334 + ] + }, + { + "mesh":3970, + "name":"pasted__pasted__pasted__pCylinder680", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.230194091796875, + 0.9016937017440796, + 12.94787883758545 + ] + }, + { + "mesh":3971, + "name":"Object2001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.054719924926758, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":3972, + "name":"pasted__pasted__pCylinder347.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.736970901489258, + 0.3064950704574585, + -3.3802287578582764 + ] + }, + { + "mesh":3973, + "name":"pasted__pasted__pasted__pasted__pasted__extrudedSurface063", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -13.890745162963867, + 1.4086898565292358, + 14.2822904586792 + ] + }, + { + "mesh":3974, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder27", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + -6.186684608459473 + ] + }, + { + "mesh":3975, + "name":"pasted__pasted__pasted__extrudedSurface033", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.619970321655273, + 1.4350770711898804, + 15.539443969726562 + ] + }, + { + "mesh":3976, + "name":"Rectangle334", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.166847229003906, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":3977, + "name":"pasted__pasted__pasted__pCylinder629", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.994119644165039, + 1.2660449743270874, + 12.947877883911133 + ] + }, + { + "mesh":3978, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube627", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 0.9979475736618042, + 2.7338707447052 + ] + }, + { + "mesh":3979, + "name":"Circle3004", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3985601663589478, + 3.627462863922119 + ] + }, + { + "mesh":3980, + "name":"pasted__pasted__pPipe11.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.662994384765625, + 2.7832746505737305, + -3.379265308380127 + ] + }, + { + "mesh":3981, + "name":"Circle2734", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.031379222869873, + -0.15787625312805176 + ] + }, + { + "mesh":3982, + "name":"Object2452", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.864656448364258, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3983, + "name":"Object2438", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.884347915649414, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3984, + "name":"Object2491", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8098087310791, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface778", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.6732590198516846 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface742", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 4.803884506225586 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube566", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":3985, + "name":"Rectangle1170", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.36827278137207, + 0.14451825618743896, + 14.283381462097168 + ] + }, + { + "mesh":3986, + "name":"pasted__pasted__pasted__pCylinder712", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.365060806274414, + 0.5030611753463745, + 16.585969924926758 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface718", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 0.6042507886886597 + ] + }, + { + "mesh":3987, + "name":"Circle2918", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.23603057861328, + 1.3768717050552368, + 1.0599548816680908 + ] + }, + { + "mesh":3988, + "name":"Object2369", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.418924331665039, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube437", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":3989, + "name":"Circle2826", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.022436141967773, + 1.869606375694275, + -0.07354926317930222 + ] + }, + { + "mesh":3990, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube438", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.911394119262695, + 0.17491471767425537, + -7.364869117736816 + ] + }, + { + "mesh":3991, + "name":"pasted__pasted__pasted__pasted__pasted__pCube564", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.255716323852539, + 1.0152369737625122, + 12.744747161865234 + ] + }, + { + "mesh":3992, + "name":"pasted__pasted__pCube800", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + 6.181655406951904 + ] + }, + { + "mesh":3993, + "name":"Circle2367", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0538864135742188, + -3.0268287658691406 + ] + }, + { + "mesh":3994, + "name":"Circle2509", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.973241806030273, + 1.9976691007614136, + -1.433781385421753 + ] + }, + { + "mesh":3995, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface704", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.031774520874023, + 1.1310111284255981, + 13.954267501831055 + ] + }, + { + "mesh":3996, + "name":"Object1869", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.120815277099609, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":3997, + "name":"Rectangle836", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.8127765655517578, + 0.14451849460601807, + 6.496676445007324 + ] + }, + { + "mesh":3998, + "name":"Circle2781", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.051836013793945, + 1.9077662229537964, + 0.6277795433998108 + ] + }, + { + "mesh":3999, + "name":"pasted__pasted__pCube818", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.975038528442383, + 1.2804936170578003, + 7.785450458526611 + ] + }, + { + "mesh":4000, + "name":"pasted__pasted__pCube746", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.354816436767578, + 5.073940753936768, + 4.208683967590332 + ] + }, + { + "mesh":4001, + "name":"Circle2131", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.78670883178711, + 1.6353508234024048, + -5.459476947784424 + ] + }, + { + "mesh":4002, + "name":"Object2481", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.823875427246094, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4003, + "name":"pasted__pasted__pCylinder398", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.39813804626465, + 4.235100269317627, + -7.023014068603516 + ] + }, + { + "mesh":4004, + "name":"Rectangle206", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.555379867553711, + 0.6844395399093628, + -13.036763191223145 + ] + }, + { + "mesh":4005, + "name":"Circle1486", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6973201036453247, + -5.460317134857178 + ] + }, + { + "mesh":4006, + "name":"Circle2944", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7393025159835815, + 4.301208019256592 + ] + }, + { + "mesh":4007, + "name":"Rectangle511", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.226242065429688, + 0.14451825618743896, + -13.689974784851074 + ] + }, + { + "mesh":4008, + "name":"Circle2921", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.428735375404358, + 0.9705118536949158 + ] + }, + { + "mesh":4009, + "name":"Circle1527", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.896335482597351, + -6.169917106628418 + ] + }, + { + "mesh":4010, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube444", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.911394119262695, + 0.17491471767425537, + 3.6018691062927246 + ] + }, + { + "mesh":4011, + "name":"Rectangle346", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 0.6414146423339844, + 0.14451754093170166, + 18.734651565551758 + ] + }, + { + "mesh":4012, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder058", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + 0.37150344252586365 + ] + }, + { + "mesh":4013, + "name":"Circle2569", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6268061399459839, + 1.1938718557357788 + ] + }, + { + "mesh":4014, + "name":"pasted__pasted__pasted__pasted__pCylinder449", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886508941650391, + 0.28987395763397217, + 13.642666816711426 + ] + }, + { + "mesh":4015, + "name":"Circle1896", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.6124309301376343, + -4.8987507820129395 + ] + }, + { + "mesh":4016, + "name":"Obj3d66-647191-21-767", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.528425216674805, + 1.6637946367263794, + 5.562098503112793 + ] + }, + { + "mesh":4017, + "name":"pasted__pasted__pasted__pCylinder656", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094709396362305, + 0.9016937017440796, + 12.976770401000977 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube572", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":4018, + "name":"Circle2754", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.236181259155273, + 1.417582631111145, + 0.6277793645858765 + ] + }, + { + "mesh":4019, + "name":"Rectangle1082", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.844839096069336, + 0.5665737390518188, + -9.262700080871582 + ] + }, + { + "mesh":4020, + "name":"Obj3d66-647191-6-453", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.992870330810547, + 1.7554806470870972, + -15.576261520385742 + ] + }, + { + "mesh":4021, + "name":"Circle2004", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 2.0453553199768066, + -5.459476947784424 + ] + }, + { + "mesh":4022, + "name":"pasted__pasted__pasted__pPlane097", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.863502502441406, + 0.38407886028289795, + 16.587963104248047 + ] + }, + { + "mesh":4023, + "name":"Circle2272", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84649085998535, + 1.3985601663589478, + -2.228497266769409 + ] + }, + { + "mesh":4024, + "name":"pasted__pasted__pCylinder529", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.998678207397461, + 2.470174789428711, + 0.08851037919521332 + ] + }, + { + "mesh":4025, + "name":"Rectangle1098", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.71023941040039, + 0.0907975435256958, + 14.191482543945312 + ] + }, + { + "mesh":4026, + "name":"Obj3d66-647191-37-428", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747116088867188, + 1.6739360094070435, + -9.328766822814941 + ] + }, + { + "mesh":4027, + "name":"Circle3110", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3299905061721802, + 3.1763126850128174 + ] + }, + { + "mesh":4028, + "name":"pasted__pasted__pCube377.007", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.40590476989746, + 1.1269747018814087, + -8.033395767211914 + ] + }, + { + "mesh":4029, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pasted__pasted__pasted__polySurface557", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.068794250488281, + 0.683716893196106, + 4.437849998474121 + ] + }, + { + "mesh":4030, + "name":"pasted__pasted__pasted__pCube650", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9333305358886719, + 0.7724679708480835, + 5.686553955078125 + ] + }, + { + "mesh":4031, + "name":"Rectangle389.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.5086612701416, + 0.14451754093170166, + -15.331393241882324 + ] + }, + { + "mesh":4032, + "name":"Object1985", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.077219009399414, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors132", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":4033, + "name":"pasted__pasted__pPipe090", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.658849716186523, + 1.2939430475234985, + 5.489278793334961 + ] + }, + { + "mesh":4034, + "name":"Circle2612", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9192970991134644, + 1.3586626052856445 + ] + }, + { + "mesh":4035, + "name":"Obj3d66-647191-36-155", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8916492462158203, + 1.3110347986221313, + -8.596015930175781 + ] + }, + { + "mesh":4036, + "name":"Circle3115", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.05963897705078, + 1.4875630140304565, + 3.6717348098754883 + ] + }, + { + "mesh":4037, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder085", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.535911560058594, + 0.11342322826385498, + -1.1065466403961182 + ] + }, + { + "mesh":4038, + "name":"polySurface122", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.765445709228516, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":4039, + "name":"pasted__pasted__pCube659", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + 0.08921277523040771 + ] + }, + { + "mesh":4040, + "name":"Circle1510", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7843014001846313, + -4.805492401123047 + ] + }, + { + "mesh":4041, + "name":"Circle1965", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.01994514465332, + 1.3985601663589478, + -5.459476947784424 + ] + }, + { + "mesh":4042, + "name":"Circle2294", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9059168100357056, + -2.22849702835083 + ] + }, + { + "mesh":4043, + "name":"pasted__pasted__pasted__pCube690", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 0.9795023202896118, + 14.92426586151123 + ] + }, + { + "mesh":4044, + "name":"pasted__pasted__pTorus3.008", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.61126708984375, + 5.048586368560791, + -7.01344633102417 + ] + }, + { + "mesh":4045, + "name":"Circle2060", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.065542221069336, + -6.261729717254639 + ] + }, + { + "mesh":4046, + "name":"pasted__pasted__pCube419", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.085107803344727, + 1.6318343877792358, + -5.19827938079834 + ] + }, + { + "mesh":4047, + "name":"pasted__pasted__pasted__pCylinder191", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749452590942383, + 1.2660447359085083, + 12.976770401000977 + ] + }, + { + "mesh":4048, + "name":"Circle3249", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.017343521118164, + 1.867205262184143, + 4.392589569091797 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube520", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":4049, + "name":"Object2137", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.506113052368164, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4050, + "name":"Rectangle193", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.706268310546875, + 0.510698676109314, + -12.818193435668945 + ] + }, + { + "mesh":4051, + "name":"Object2680", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.78309440612793, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4052, + "name":"Rectangle1431", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384535074234009, + 3.0646257400512695 + ] + }, + { + "mesh":4053, + "name":"Obj3d66-647191-34-812", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.5761661529541, + 1.6606823205947876, + 18.297834396362305 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface705", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -0.5263744592666626 + ] + }, + { + "mesh":4054, + "name":"Circle2433", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.115150451660156, + 1.6960471868515015, + -2.22849702835083 + ] + }, + { + "mesh":4055, + "name":"pasted__pasted__pasted__pPlane273", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.096700668334961, + 0.38407886028289795, + 15.696707725524902 + ] + }, + { + "mesh":4056, + "name":"Obj3d66-647191-18-840", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.97991180419922, + 1.6729644536972046, + -15.548868179321289 + ] + }, + { + "mesh":4057, + "name":"Circle2329", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.705896377563477, + 1.357746958732605, + -2.640500068664551 + ] + }, + { + "mesh":4058, + "name":"Text002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.75662612915039, + 0.48695600032806396, + 0.8126948475837708 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube491", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":4059, + "name":"Rectangle162", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.60947608947754, + 0.1627582311630249, + -12.833106994628906 + ] + }, + { + "mesh":4060, + "name":"Circle1781", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.980588912963867, + 1.9759255647659302, + -4.67791223526001 + ] + }, + { + "mesh":4061, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface722", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40271759033203, + 0.6892560720443726, + 13.954267501831055 + ] + }, + { + "mesh":4062, + "name":"pasted__pasted__pasted__pCube412", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9547863006591797, + 1.0161930322647095, + -7.011164665222168 + ] + }, + { + "mesh":4063, + "name":"pasted__pasted__pasted__pPlane282", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.998910903930664, + 0.38407909870147705, + 16.587963104248047 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface607", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":4064, + "name":"pasted__pasted__pasted__pCube745", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 0.9795023202896118, + 16.828125 + ] + }, + { + "mesh":4065, + "name":"pasted__pasted__pasted__pCylinder668", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094709396362305, + 0.9016937017440796, + 15.404440879821777 + ] + }, + { + "mesh":4066, + "name":"pasted__pasted__pTorus022", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.188140869140625, + 3.3054070472717285, + -7.529970169067383 + ] + }, + { + "mesh":4067, + "name":"Circle2162", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.871747970581055, + 1.7802284955978394, + -6.120067119598389 + ] + }, + { + "mesh":4068, + "name":"Object2505", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.790124893188477, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4069, + "name":"Circle1884", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.682310104370117, + 1.3601590394973755, + -5.027225494384766 + ] + }, + { + "mesh":4070, + "name":"Rectangle927", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.70414924621582, + 1.039061188697815, + 0.6334410309791565 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube204", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.656999945640564 + ] + }, + { + "mesh":4071, + "name":"pasted__pasted__pCylinder505", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.98321533203125, + 2.4266486167907715, + 0.792560875415802 + ] + }, + { + "mesh":4072, + "name":"Circle2306", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.096060276031494, + -2.22849702835083 + ] + }, + { + "mesh":4073, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube365", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.840339660644531, + 1.2794238328933716, + 4.739263534545898 + ] + }, + { + "mesh":4074, + "name":"Rectangle1250", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384544610977173, + -4.47367525100708 + ] + }, + { + "mesh":4075, + "name":"Obj3d66-647191-24-603", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.975162506103516, + 1.658399224281311, + -15.576766014099121 + ] + }, + { + "mesh":4076, + "name":"pasted__pasted__pasted__pPlane301", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.565422058105469, + 0.38866126537323, + 16.590402603149414 + ] + }, + { + "mesh":4077, + "name":"pasted__pasted__pasted__pCylinder200", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749454498291016, + 0.9016937017440796, + 16.56253433227539 + ] + }, + { + "mesh":4078, + "name":"Circle2553", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.23603057861328, + 1.3768717050552368, + -1.7963218688964844 + ] + }, + { + "mesh":4079, + "name":"Circle2434", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.119661331176758, + 1.6809571981430054, + -2.22849702835083 + ] + }, + { + "mesh":4080, + "name":"Object2149", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.489236831665039, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4081, + "name":"Circle1610", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0833840370178223, + -5.460317134857178 + ] + }, + { + "mesh":4082, + "name":"pasted__pasted__pasted__pCylinder679", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.072099685668945, + 0.5030606985092163, + 12.94787883758545 + ] + }, + { + "mesh":4083, + "name":"Object2000", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.056122779846191, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4084, + "name":"pasted__pasted__pCube690", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.37368392944336, + 2.577449321746826, + 5.495523452758789 + ] + }, + { + "mesh":4085, + "name":"pasted__pasted__pCube768", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939355850219727, + 5.073940753936768, + 4.808369159698486 + ] + }, + { + "mesh":4086, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube78", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + -5.89406156539917 + ] + }, + { + "mesh":4087, + "name":"Rectangle136", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.001222610473633, + 0.14451849460601807, + -13.333333015441895 + ] + }, + { + "mesh":4088, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube377", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.057670593261719, + 1.4264699220657349, + 7.666250705718994 + ] + }, + { + "mesh":4089, + "name":"Rectangle760", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.023313522338867, + 0.14451849460601807, + -9.313719749450684 + ] + }, + { + "mesh":4090, + "name":"Circle2882", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.962213516235352, + 2.030285358428955, + 1.440960168838501 + ] + }, + { + "mesh":4091, + "name":"pasted__pasted__pasted__extrudedSurface032", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.624044418334961, + 1.4330071210861206, + 14.740805625915527 + ] + }, + { + "mesh":4092, + "name":"Circle3003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.2755346298217773, + 3.6717348098754883 + ] + }, + { + "mesh":4093, + "name":"Obj3d66-647191-31-936", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.526371002197266, + 1.6571954488754272, + 5.562841892242432 + ] + }, + { + "mesh":4094, + "name":"pasted__pasted__pPipe10.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.30052375793457, + 2.5599560737609863, + -3.3775031566619873 + ] + }, + { + "mesh":4095, + "name":"Object2588", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.79293441772461, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4096, + "name":"Object2437", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.885753631591797, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface777", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.6732590198516846 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube565", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube324", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.393779754638672 + ] + }, + { + "mesh":4097, + "name":"Rectangle1169", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.36827278137207, + 0.14451825618743896, + 16.87247085571289 + ] + }, + { + "mesh":4098, + "name":"pasted__pasted__pCylinder607", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.6335506439209, + 0.3064950704574585, + 5.488315105438232 + ] + }, + { + "mesh":4099, + "name":"Circle1941", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.160554885864258, + 1.357746958732605, + -5.0364484786987305 + ] + }, + { + "mesh":4100, + "name":"Circle2917", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.285993576049805, + 1.4004048109054565, + 1.0676875114440918 + ] + }, + { + "mesh":4101, + "name":"Object2368", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.420330047607422, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4102, + "name":"pasted__pasted__byq", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.218202590942383, + 0.11240279674530029, + -5.421365737915039 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube646", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":4103, + "name":"pasted__pasted__pCylinder686", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.980588912963867, + 2.4146475791931152, + 5.37495231628418 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface736", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.2695987224578857 + ] + }, + { + "mesh":4104, + "name":"Circle2508", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.998964309692383, + 1.9215654134750366, + -1.476866364479065 + ] + }, + { + "mesh":4105, + "name":"pasted__pasted__pasted__pasted__pasted__pCube562", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.010370254516602, + 1.0093942880630493, + 13.878122329711914 + ] + }, + { + "mesh":4106, + "name":"Circle3242", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.98426628112793, + 1.9650532007217407, + 4.44798469543457 + ] + }, + { + "mesh":4107, + "name":"pasted__pasted__pCube817", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.975038528442383, + 1.082088828086853, + 7.785449028015137 + ] + }, + { + "mesh":4108, + "name":"pasted__pasted__pCylinder705", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.946239471435547, + 2.2889509201049805, + 4.695381164550781 + ] + }, + { + "mesh":4109, + "name":"Circle2613", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.757936477661133, + 1.3744639158248901, + 1.0508066415786743 + ] + }, + { + "mesh":4110, + "name":"pasted__pasted__pCube745", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.451486587524414, + 5.052017688751221, + 3.9076011180877686 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube500", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":4111, + "name":"Rectangle416", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 13.335121154785156, + 0.14451754093170166, + -16.603002548217773 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube169", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":4112, + "name":"Circle2234", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.065542697906494, + -1.4152189493179321 + ] + }, + { + "mesh":4113, + "name":"pasted__pasted__pCylinder397", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.39813804626465, + 4.235100269317627, + -5.6854400634765625 + ] + }, + { + "mesh":4114, + "name":"Circle2587", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8630484342575073, + 1.3269720077514648 + ] + }, + { + "mesh":4115, + "name":"pasted__pasted__pCube846", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.032896041870117, + 1.027711272239685, + 15.821052551269531 + ] + }, + { + "mesh":4116, + "name":"Rectangle1172", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.92892837524414, + 0.14451777935028076, + 15.133939743041992 + ] + }, + { + "mesh":4117, + "name":"Rectangle510", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.972944259643555, + 0.14451825618743896, + -13.939297676086426 + ] + }, + { + "mesh":4118, + "name":"Circle2920", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.326295256614685, + 1.0916695594787598 + ] + }, + { + "mesh":4119, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface104", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.518177032470703, + 0.23228061199188232, + 4.468203067779541 + ] + }, + { + "mesh":4120, + "name":"pasted__pasted__pasted__polySurface537", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9275474548339844, + 1.1616288423538208, + -1.2742947340011597 + ] + }, + { + "mesh":4121, + "name":"Rectangle345.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.0185375213623047, + 0.14451754093170166, + 18.734651565551758 + ] + }, + { + "mesh":4122, + "name":"Circle3060", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.898542404174805, + 1.374463438987732, + 3.259732246398926 + ] + }, + { + "mesh":4123, + "name":"Object2266", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.444236755371094, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4124, + "name":"Circle2568", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6129926443099976, + 1.1860895156860352 + ] + }, + { + "mesh":4125, + "name":"pasted__pasted__pasted__pasted__pCylinder448", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.069196701049805, + 0.28987395763397217, + 13.642838478088379 + ] + }, + { + "mesh":4126, + "name":"Circle3113", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.237268090248108, + 3.3217337131500244 + ] + }, + { + "mesh":4127, + "name":"pasted__pasted__pasted__pCylinder655", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094709396362305, + 0.5030604600906372, + 14.134862899780273 + ] + }, + { + "mesh":4128, + "name":"Circle2353", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8400672674179077, + -2.906404972076416 + ] + }, + { + "mesh":4129, + "name":"Circle1798", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.050416946411133, + 1.7693573236465454, + -4.794857025146484 + ] + }, + { + "mesh":4130, + "name":"Text014", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.952104568481445, + 1.5770961046218872, + -13.141663551330566 + ] + }, + { + "mesh":4131, + "name":"Circle2753", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.285993576049805, + 1.444670557975769, + 0.6277793645858765 + ] + }, + { + "mesh":4132, + "name":"Rectangle1081", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.255056381225586, + 0.2190920114517212, + -9.262700080871582 + ] + }, + { + "mesh":4133, + "name":"Obj3d66-647191-2-978", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980655670166016, + 1.6754931211471558, + -15.540233612060547 + ] + }, + { + "mesh":4134, + "name":"Circle2003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 2.0580310821533203, + -5.459476947784424 + ] + }, + { + "mesh":4135, + "name":"pasted__pasted__pasted__pPlane094", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.431573867797852, + 0.38407886028289795, + 16.587963104248047 + ] + }, + { + "mesh":4136, + "name":"Circle2271", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.898542404174805, + 1.3985601663589478, + -2.228497266769409 + ] + }, + { + "mesh":4137, + "name":"pasted__pasted__pCylinder528", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.989633560180664, + 2.442410945892334, + 0.08851037919521332 + ] + }, + { + "mesh":4138, + "name":"Obj3d66-647191-36-154", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747116088867188, + 1.6647711992263794, + -9.328766822814941 + ] + }, + { + "mesh":4139, + "name":"pasted__pasted__pCube376.007", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.55306053161621, + 1.1083353757858276, + -8.025829315185547 + ] + }, + { + "mesh":4140, + "name":"Circle1627", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.2574313879013062, + -5.460318088531494 + ] + }, + { + "mesh":4141, + "name":"Object1984", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.0786237716674805, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4142, + "name":"Circle2951", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.840549111366272, + 4.358251571655273 + ] + }, + { + "mesh":4143, + "name":"pasted__pasted__pCube757", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.35550880432129, + 5.064015865325928, + 4.9632887840271 + ] + }, + { + "mesh":4144, + "name":"Object2653", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.821062088012695, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4145, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder084", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.19651985168457, + 0.4397674798965454, + -1.1030150651931763 + ] + }, + { + "mesh":4146, + "name":"polySurface121", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.782428741455078, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":4147, + "name":"pasted__pCube528", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.405942916870117, + 0.21965444087982178, + 5.311164379119873 + ] + }, + { + "mesh":4148, + "name":"pasted__pasted__pCube658", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + -0.211870014667511 + ] + }, + { + "mesh":4149, + "name":"Object1913", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.058938026428223, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4150, + "name":"Rectangle1335", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + -1.7001407146453857 + ] + }, + { + "mesh":4151, + "name":"Circle2059", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.076791763305664, + -6.268068313598633 + ] + }, + { + "mesh":4152, + "name":"pasted__pasted__pPipe22", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.46347427368164, + 1.845382809638977, + -5.195910930633545 + ] + }, + { + "mesh":4153, + "name":"pasted__pasted__pasted__pCylinder190", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749452590942383, + 0.9016937017440796, + 12.976770401000977 + ] + }, + { + "mesh":4154, + "name":"pasted__pasted__pCylinder545", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.937063217163086, + 2.2616233825683594, + -0.5864075422286987 + ] + }, + { + "mesh":4155, + "name":"Object2136", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.50752067565918, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4156, + "name":"Object2461", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.852005004882812, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4157, + "name":"Object2679", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.78449821472168, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface704", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -0.5263744592666626 + ] + }, + { + "mesh":4158, + "name":"Object2027", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.137694358825684, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4159, + "name":"pasted__pasted__pasted__pasted__pasted__pCube543", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.556215286254883, + 0.12430918216705322, + 14.770878791809082 + ] + }, + { + "mesh":4160, + "name":"Object2535", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.86747169494629, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4161, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube638", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 1.3661421537399292, + 2.6694743633270264 + ] + }, + { + "mesh":4162, + "name":"pasted__pasted__pasted__pasted__pCylinder870", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785097122192383, + 0.6754261255264282, + 14.968375205993652 + ] + }, + { + "mesh":4163, + "name":"Circle3244", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.995292663574219, + 1.9324370622634888, + 4.429520130157471 + ] + }, + { + "mesh":4164, + "name":"Circle2328", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.757936477661133, + 1.357746958732605, + -2.6404998302459717 + ] + }, + { + "mesh":4165, + "name":"Rectangle160", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.038463592529297, + 0.1627582311630249, + -12.833106994628906 + ] + }, + { + "mesh":4166, + "name":"pasted__pasted__pCylinder688", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.998676300048828, + 2.470174789428711, + 5.37495231628418 + ] + }, + { + "mesh":4167, + "name":"Rectangle045", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.204339981079102, + 0.14451849460601807, + -14.047863006591797 + ] + }, + { + "mesh":4168, + "name":"pasted__pasted__pCube779", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.897443771362305, + 2.6223349571228027, + 3.1261627674102783 + ] + }, + { + "mesh":4169, + "name":"pasted__pasted__pasted__pPlane281", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.566987991333008, + 0.38407909870147705, + 16.587963104248047 + ] + }, + { + "mesh":4170, + "name":"pasted__pasted__pasted__pCube655", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9333305358886719, + 0.7724679708480835, + 6.433374881744385 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface606", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":4171, + "name":"pasted__pasted__pasted__pCube744", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 1.2411547899246216, + 16.828125 + ] + }, + { + "mesh":4172, + "name":"pasted__pasted__pasted__pCylinder667", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094711303710938, + 0.5030606985092163, + 16.56253433227539 + ] + }, + { + "mesh":4173, + "name":"Object2504", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.791528701782227, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4174, + "name":"Circle1883", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.632497787475586, + 1.3835018873214722, + -5.01956844329834 + ] + }, + { + "mesh":4175, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pasted__pasted__polySurface460_pasted__pasted__main011", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.150362968444824, + 1.7042917013168335, + -13.693861961364746 + ] + }, + { + "mesh":4176, + "name":"Rectangle926", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.410043716430664, + 1.039061188697815, + 0.2147504687309265 + ] + }, + { + "mesh":4177, + "name":"Circle3187", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.967308044433594, + 2.031033992767334, + 2.8780815601348877 + ] + }, + { + "mesh":4178, + "name":"Circle2118", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.83867073059082, + 1.809146761894226, + -5.459476947784424 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group135", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.656999945640564 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube545", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":4179, + "name":"Rectangle1130", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.310401916503906, + 0.17812669277191162, + 12.19666576385498 + ] + }, + { + "mesh":4180, + "name":"Circle2305", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.108736515045166, + -2.22849702835083 + ] + }, + { + "mesh":4181, + "name":"pasted__pasted__pPipe106", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.46347427368164, + 1.845382809638977, + 5.7708282470703125 + ] + }, + { + "mesh":4182, + "name":"Rectangle1248", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384549379348755, + -4.209455966949463 + ] + }, + { + "mesh":4183, + "name":"pasted__pasted__pCylinder699", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.891183853149414, + 2.1249918937683105, + 4.723319053649902 + ] + }, + { + "mesh":4184, + "name":"pasted__pasted__pasted__pCylinder199", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749454498291016, + 1.2660447359085083, + 16.56253433227539 + ] + }, + { + "mesh":4185, + "name":"Circle2552", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.285993576049805, + 1.4004048109054565, + -1.7885891199111938 + ] + }, + { + "mesh":4186, + "name":"Object2148", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.490644454956055, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4187, + "name":"Object2618", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.870283126831055, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4188, + "name":"pasted__pasted__pasted__pCylinder678", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.072099685668945, + 0.9016944169998169, + 12.94787883758545 + ] + }, + { + "mesh":4189, + "name":"Object1999", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.057533264160156, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4190, + "name":"pasted__pasted__pCube689", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.386873245239258, + 2.7758541107177734, + 5.495524883270264 + ] + }, + { + "mesh":4191, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder26", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + -5.8912739753723145 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface602", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":4192, + "name":"Circle2361", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5986121892929077, + -2.770416021347046 + ] + }, + { + "mesh":4193, + "name":"Object2364", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.425954818725586, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4194, + "name":"Rectangle953", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -8.643484115600586 + ] + }, + { + "mesh":4195, + "name":"pasted__pasted__pCylinder6.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.872831344604492, + 2.0703415870666504, + -6.234092712402344 + ] + }, + { + "mesh":4196, + "name":"pasted__pasted__pasted__pasted__pCylinder499", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.981288909912109, + 0.10737001895904541, + 15.855609893798828 + ] + }, + { + "mesh":4197, + "name":"Circle3002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84649085998535, + 1.3985601663589478, + 3.6717348098754883 + ] + }, + { + "mesh":4198, + "name":"pasted__pasted__pPipe9.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.31870460510254, + 2.774721622467041, + -3.3775031566619873 + ] + }, + { + "mesh":4199, + "name":"Object2587", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.794342041015625, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4200, + "name":"Object2436", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.887157440185547, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube402", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.6732590198516846 + ] + }, + { + "mesh":4201, + "name":"Circle1860", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.862977981567383, + 1.7727500200271606, + -4.802517890930176 + ] + }, + { + "mesh":4202, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube328", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.88755989074707, + 0.3764752149581909, + 5.076041221618652 + ] + }, + { + "mesh":4203, + "name":"Rectangle1168", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.36827278137207, + 0.14451825618743896, + 16.87247085571289 + ] + }, + { + "mesh":4204, + "name":"pasted__pasted__pasted__pCylinder710", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.365060806274414, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "mesh":4205, + "name":"Circle3234", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.991617202758789, + 1.9433091878890991, + 4.435674667358398 + ] + }, + { + "mesh":4206, + "name":"Circle2916", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.101621627807617, + 1.3353694677352905, + 1.0393497943878174 + ] + }, + { + "mesh":4207, + "name":"Object2367", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.421735763549805, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4208, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder407", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.41666030883789, + 1.1056500673294067, + -6.221372127532959 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube376", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.2695987224578857 + ] + }, + { + "mesh":4209, + "name":"Circle2507", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.002639770507812, + 1.9106930494308472, + -1.4830214977264404 + ] + }, + { + "mesh":4210, + "name":"pasted__pasted__pasted__pasted__pasted__pCube561", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.015192031860352, + 1.4976838827133179, + 13.81916332244873 + ] + }, + { + "mesh":4211, + "name":"Circle1526", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.907589316368103, + -6.1762542724609375 + ] + }, + { + "mesh":4212, + "name":"Rectangle834", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.8127765655517578, + 0.14451849460601807, + 4.989428997039795 + ] + }, + { + "mesh":4213, + "name":"Circle3030", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1721177101135254, + 3.6717348098754883 + ] + }, + { + "mesh":4214, + "name":"Rectangle178", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.271402359008789, + 0.6844395399093628, + -13.036763191223145 + ] + }, + { + "mesh":4215, + "name":"Circle1595", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84649085998535, + 1.3985601663589478, + -5.460318088531494 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface764", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 6.547109127044678 + ] + }, + { + "mesh":4216, + "name":"Object1827", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.086984634399414, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":4217, + "name":"pasted__pasted__pCube744", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.45350456237793, + 5.064568996429443, + 4.208683967590332 + ] + }, + { + "mesh":4218, + "name":"Circle2408", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.022436141967773, + 2.0060811042785645, + -2.22849702835083 + ] + }, + { + "mesh":4219, + "name":"Circle1619", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9692977666854858, + -5.460317134857178 + ] + }, + { + "mesh":4220, + "name":"Circle2129", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.795732498168945, + 1.665535807609558, + -5.459476947784424 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube529", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":4221, + "name":"pasted__pasted__pCylinder737", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.967205047607422, + 0.12859117984771729, + 5.463118076324463 + ] + }, + { + "mesh":4222, + "name":"pasted__pasted__pCylinder396", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.39813804626465, + 4.235100269317627, + -4.3462815284729 + ] + }, + { + "mesh":4223, + "name":"Circle2463", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.029787063598633, + 1.8480826616287231, + -2.917515754699707 + ] + }, + { + "mesh":4224, + "name":"Shape033", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.821920394897461, + 0.16812527179718018, + -0.5458017587661743 + ] + }, + { + "mesh":4225, + "name":"Circle2919", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.946138381958008, + 2.0678772926330566, + 1.467883586883545 + ] + }, + { + "mesh":4226, + "name":"pasted__pasted__pasted__pCube633", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9547863006591797, + 1.0161930322647095, + -1.4261798858642578 + ] + }, + { + "mesh":4227, + "name":"Rectangle344.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 3.395657539367676, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":4228, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube262", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 1.3735638856887817, + 0.6627435684204102 + ] + }, + { + "mesh":4229, + "name":"Object2265", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.44564437866211, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4230, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube577", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 1.36614191532135, + -3.2089879512786865 + ] + }, + { + "mesh":4231, + "name":"Circle2567", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6718045473098755, + 1.219224214553833 + ] + }, + { + "mesh":4232, + "name":"Circle1901", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.6825169324874878, + -4.859277248382568 + ] + }, + { + "mesh":4233, + "name":"pasted__pasted__pasted__pasted__pCylinder447", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.147626876831055, + 0.28987395763397217, + 13.790817260742188 + ] + }, + { + "mesh":4234, + "name":"pasted__pasted__pasted__pCylinder654", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094709396362305, + 0.9016937017440796, + 14.134862899780273 + ] + }, + { + "mesh":4235, + "name":"pasted__pasted__pCube783", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.887020111083984, + 1.1269747018814087, + 3.125072956085205 + ] + }, + { + "mesh":4236, + "name":"Line2417", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.885122299194336, + 0.19340407848358154, + -5.453815937042236 + ] + }, + { + "mesh":4237, + "name":"pasted__pasted__pasted__pPlane328", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.4700870513916, + 0.3886605501174927, + 15.0485200881958 + ] + }, + { + "mesh":4238, + "name":"Circle2215", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7730516195297241, + -1.5800094604492188 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube385", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 5.416483402252197 + ] + }, + { + "mesh":4239, + "name":"Circle2752", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.101621627807617, + 1.3890365362167358, + 0.6277793645858765 + ] + }, + { + "mesh":4240, + "name":"Rectangle1080", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.180307388305664, + 0.3059629201889038, + -9.262700080871582 + ] + }, + { + "mesh":4241, + "name":"Obj3d66-647191-1-673", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980655670166016, + 1.670127511024475, + -15.541024208068848 + ] + }, + { + "mesh":4242, + "name":"Circle2002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 2.0707077980041504, + -5.459476947784424 + ] + }, + { + "mesh":4243, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube355", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + 5.960262298583984 + ] + }, + { + "mesh":4244, + "name":"pasted__pasted__pasted__pCube155", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.540073394775391, + 0.25255119800567627, + 16.590106964111328 + ] + }, + { + "mesh":4245, + "name":"Circle2270", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.705896377563477, + 1.3985601663589478, + -2.228497266769409 + ] + }, + { + "mesh":4246, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube592", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 0.8592516183853149, + -3.273383855819702 + ] + }, + { + "mesh":4247, + "name":"pasted__pasted__pCylinder527", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.980588912963867, + 2.4146475791931152, + 0.08851037919521332 + ] + }, + { + "mesh":4248, + "name":"Circle3031", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1594409942626953, + 3.6717348098754883 + ] + }, + { + "mesh":4249, + "name":"pasted__pasted__pasted__pPlane107", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.751443862915039, + 0.38407838344573975, + 13.837109565734863 + ] + }, + { + "mesh":4250, + "name":"Circle2894", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.054094314575195, + 1.758485198020935, + 1.2870852947235107 + ] + }, + { + "mesh":4251, + "name":"Obj3d66-647191-35-122", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747116088867188, + 1.6647711992263794, + -9.273892402648926 + ] + }, + { + "mesh":4252, + "name":"pasted__pasted__pPipe16.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.662994384765625, + 2.7832746505737305, + -8.012530326843262 + ] + }, + { + "mesh":4253, + "name":"Circle1626", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3985601663589478, + -5.556642532348633 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group139", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 5.416483402252197 + ] + }, + { + "mesh":4254, + "name":"Object1983", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.080034255981445, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4255, + "name":"pasted__pasted__pCube756", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.354816436767578, + 5.073940753936768, + 5.264371395111084 + ] + }, + { + "mesh":4256, + "name":"Object2642", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.836530685424805, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4257, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube439", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.911394119262695, + 0.17491471767425537, + -1.6845731735229492 + ] + }, + { + "mesh":4258, + "name":"polySurface120", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.716096878051758, + 1.4533334970474243, + 16.16686248779297 + ] + }, + { + "mesh":4259, + "name":"pasted__pasted__pCube657", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + 0.6343867778778076 + ] + }, + { + "mesh":4260, + "name":"Circle3038", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0707077980041504, + 3.6717348098754883 + ] + }, + { + "mesh":4261, + "name":"Text011", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.6119480133056641, + 1.3244799375534058, + 5.149248123168945 + ] + }, + { + "mesh":4262, + "name":"Rectangle147", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.977590560913086, + 0.1627582311630249, + -12.833106994628906 + ] + }, + { + "mesh":4263, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube633", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 0.9979482889175415, + 3.195838451385498 + ] + }, + { + "mesh":4264, + "name":"pasted__pasted__pasted__polySurface028", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6949710845947266, + 0.6836510896682739, + 15.729188919067383 + ] + }, + { + "mesh":4265, + "name":"Rectangle882", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.741353988647461, + 0.3068186044692993, + -5.703222751617432 + ] + }, + { + "mesh":4266, + "name":"Object1912", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.060342788696289, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4267, + "name":"Rectangle370.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + 10.833873748779297 + ] + }, + { + "mesh":4268, + "name":"Rectangle600", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.212726593017578, + 0.14451777935028076, + 16.01140785217285 + ] + }, + { + "mesh":4269, + "name":"Circle2058", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.5577398538589478, + -5.9756317138671875 + ] + }, + { + "mesh":4270, + "name":"pasted__pasted__pasted__pCylinder735", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.929457664489746, + 0.7768586874008179, + -1.3466020822525024 + ] + }, + { + "mesh":4271, + "name":"pasted__pasted__pasted__pCylinder189", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749452590942383, + 0.5030604600906372, + 14.134862899780273 + ] + }, + { + "mesh":4272, + "name":"HDM_03_bolts_33", + "translation":[ + -544.65625, + -340.13323974609375, + -44.775390625 + ] + }, + { + "mesh":4273, + "name":"HDM_03_bolts_34", + "translation":[ + 496.0078125, + -340.13336181640625, + -46.896484375 + ] + }, + { + "mesh":4274, + "name":"HDM_03_bolts_35", + "translation":[ + 491.12890625, + 330.386474609375, + -53.51171875 + ] + }, + { + "mesh":4275, + "name":"HDM_03_bolts_36", + "translation":[ + -544.296875, + 330.38665771484375, + -56.109375 + ] + }, + { + "mesh":4276, + "name":"HDM_03_brake_caliper_fl_33", + "translation":[ + -588.8671875, + -324.4465026855469, + -71.681640625 + ] + }, + { + "mesh":4277, + "name":"HDM_03_brake_caliper_fl_34", + "translation":[ + 444.9765625, + -324.4497985839844, + -58.8984375 + ] + }, + { + "mesh":4278, + "name":"HDM_03_brake_caliper_fl_35", + "translation":[ + -592.28125, + 290.59466552734375, + -54.888671875 + ] + }, + { + "mesh":4279, + "name":"HDM_03_brake_caliper_fl_36", + "translation":[ + 443.9453125, + 290.59490966796875, + -54.884765625 + ] + }, + { + "mesh":4280, + "name":"HDM_03_brake_disc_33", + "translation":[ + -539.77734375, + -326.67498779296875, + -69.80859375 + ] + }, + { + "mesh":4281, + "name":"HDM_03_brake_disc_34", + "translation":[ + 493.77734375, + -326.6766662597656, + -57.869140625 + ] + }, + { + "mesh":4282, + "name":"HDM_03_brake_disc_35", + "translation":[ + -543.203125, + 291.35028076171875, + -54.314453125 + ] + }, + { + "mesh":4283, + "name":"HDM_03_brake_disc_36", + "translation":[ + 493.01953125, + 291.34954833984375, + -54.310546875 + ] + }, + { + "mesh":4284, + "name":"HDM_03_rim_42", + "translation":[ + -543.15234375, + -352.9122314453125, + -54.6015625 + ] + }, + { + "mesh":4285, + "name":"HDM_03_rim_43", + "translation":[ + 493.0703125, + -352.91412353515625, + -54.59765625 + ] + }, + { + "mesh":4286, + "name":"HDM_03_rim_44", + "translation":[ + -543.15234375, + 255.67266845703125, + -54.59765625 + ] + }, + { + "mesh":4287, + "name":"HDM_03_rim_45", + "translation":[ + 493.0703125, + 255.6729736328125, + -54.595703125 + ] + }, + { + "mesh":4288, + "name":"HDM_03_tire_33", + "translation":[ + 491.09375, + -356.49676513671875, + -46.42578125 + ] + }, + { + "mesh":4289, + "name":"HDM_03_tire_34", + "translation":[ + -538.703125, + -356.49456787109375, + -71.4609375 + ] + }, + { + "mesh":4290, + "name":"HDM_03_tire_35", + "translation":[ + -543.15234375, + 249.66668701171875, + -54.59765625 + ] + }, + { + "mesh":4291, + "name":"HDM_03_tire_36", + "translation":[ + 493.0703125, + 249.664794921875, + -54.595703125 + ] + }, + { + "children":[ + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697 + ], + "mesh":4292, + "name":"BTSUV3", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 13.870321273803711, + 0.21624314785003662, + 8.153847694396973 + ] + }, + { + "mesh":4293, + "name":"pasted__pasted__pCube607", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.83158302307129, + 3.3573498725891113, + 6.515372276306152 + ] + }, + { + "mesh":4294, + "name":"Object2135", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.508928298950195, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4295, + "name":"Object2460", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.853408813476562, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface703", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -0.5263744592666626 + ] + }, + { + "mesh":4296, + "name":"Object2026", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.139096260070801, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4297, + "name":"pasted__pasted__pasted__pPlane272", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.096700668334961, + 0.38407886028289795, + 16.264780044555664 + ] + }, + { + "mesh":4298, + "name":"Circle2881", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.965890884399414, + 2.019413471221924, + 1.434805154800415 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors134", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":4299, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube249", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 0.3764752149581909, + -5.3052520751953125 + ] + }, + { + "mesh":4300, + "name":"Sphere039", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8063907623291, + 1.2992044687271118, + -2.6404998302459717 + ] + }, + { + "mesh":4301, + "name":"Rectangle1383", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451777935028076, + 7.239199638366699 + ] + }, + { + "mesh":4302, + "name":"pasted__pasted__pPipe119", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.699176788330078, + 1.2917834520339966, + 3.1448471546173096 + ] + }, + { + "mesh":4303, + "name":"Rectangle151", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.78617286682129, + 0.6844395399093628, + -13.036763191223145 + ] + }, + { + "mesh":4304, + "name":"pasted__pasted__pCube780", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.97140884399414, + 2.7758541107177734, + 3.1521718502044678 + ] + }, + { + "mesh":4305, + "name":"pasted__pasted__pasted__pCylinder754", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.929457664489746, + 0.7768586874008179, + 6.350338935852051 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface776", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.285858154296875 + ] + }, + { + "mesh":4306, + "name":"pasted__pasted__pasted__pCube743", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 1.399283766746521, + 16.828123092651367 + ] + }, + { + "mesh":4307, + "name":"Circle2850", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.110639572143555, + 1.611322283744812, + 0.07417051494121552 + ] + }, + { + "mesh":4308, + "name":"pasted__pasted__pasted__pCylinder666", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094711303710938, + 0.9016937017440796, + 16.56253433227539 + ] + }, + { + "mesh":4309, + "name":"Circle3100", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.020125389099121, + 2.8924171924591064 + ] + }, + { + "mesh":4310, + "name":"Circle2108", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.87542152404785, + 1.9320634603500366, + -5.459476947784424 + ] + }, + { + "mesh":4311, + "name":"Object2503", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.79293441772461, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4312, + "name":"Circle3177", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.007736206054688, + 1.9126533269882202, + 2.945786237716675 + ] + }, + { + "mesh":4313, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface301", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8938169479370117, + 0.7311502695083618, + -13.162215232849121 + ] + }, + { + "mesh":4314, + "name":"Rectangle925", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.410043716430664, + 1.039061188697815, + 1.0521310567855835 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface775", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.285858154296875 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube373", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.656999945640564 + ] + }, + { + "mesh":4315, + "name":"Circle2304", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1214122772216797, + -2.22849702835083 + ] + }, + { + "mesh":4316, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube059", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137231826782227, + 0.6166743040084839, + -2.4873557090759277 + ] + }, + { + "mesh":4317, + "name":"Rectangle1413", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.048496246337891, + 0.04489290714263916, + 2.4848437309265137 + ] + }, + { + "mesh":4318, + "name":"Rectangle1246", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384544610977173, + -5.06272029876709 + ] + }, + { + "mesh":4319, + "name":"pasted__pasted__pasted__pPlane299", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -13.775266647338867, + 0.38866126537323, + 16.590402603149414 + ] + }, + { + "mesh":4320, + "name":"pasted__pasted__pasted__pCube159", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.753583908081055, + 0.25255048274993896, + 15.3744535446167 + ] + }, + { + "mesh":4321, + "name":"Circle2551", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.101621627807617, + 1.3353694677352905, + -1.8169267177581787 + ] + }, + { + "mesh":4322, + "name":"Object2617", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.871686935424805, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors155", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":4323, + "name":"pasted__pasted__pasted__pCylinder677", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.072099685668945, + 1.2660449743270874, + 12.94787883758545 + ] + }, + { + "mesh":4324, + "name":"Rectangle319.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.4367303848266602, + 0.3215755224227905, + -12.46153450012207 + ] + }, + { + "mesh":4325, + "name":"Rectangle937", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03338050842285, + 0.11240279674530029, + 3.677396059036255 + ] + }, + { + "mesh":4326, + "name":"pasted__pasted__extrudedSurface18.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.725255966186523, + 0.1835993528366089, + -8.014660835266113 + ] + }, + { + "mesh":4327, + "name":"Circle2779", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.044485092163086, + 1.9323447942733765, + 0.6277795433998108 + ] + }, + { + "mesh":4328, + "name":"pasted__pasted__pCube585", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.97323226928711, + 3.574185371398926, + 6.459312915802002 + ] + }, + { + "mesh":4329, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube77", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 0.3764752149581909, + -5.890697479248047 + ] + }, + { + "mesh":4330, + "name":"Object2665", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.804183959960938, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4331, + "name":"Obj3d66-647191-27-328", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747915267944336, + 1.6754931211471558, + -9.337508201599121 + ] + }, + { + "mesh":4332, + "name":"pasted__pasted__pasted__pCylinder707", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.01236915588379, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube560", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":4333, + "name":"Rectangle758", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.251155853271484, + 0.14451849460601807, + -6.690112113952637 + ] + }, + { + "mesh":4334, + "name":"pasted__pasted__pTorus054", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.263608932495117, + 5.048587322235107, + 4.8198394775390625 + ] + }, + { + "mesh":4335, + "name":"pasted__pasted__pasted__pasted__pPipe028", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.982082366943359, + 1.2212477922439575, + 15.858174324035645 + ] + }, + { + "mesh":4336, + "name":"Circle1617", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9946502447128296, + -5.460317134857178 + ] + }, + { + "mesh":4337, + "name":"Circle3001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.898542404174805, + 1.3985601663589478, + 3.6717348098754883 + ] + }, + { + "mesh":4338, + "name":"pasted__pasted__pCube373.004", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.493925094604492, + 1.082088828086853, + -3.3730194568634033 + ] + }, + { + "mesh":4339, + "name":"Object2586", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.79574966430664, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4340, + "name":"Circle2403", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.004060745239258, + 2.0675277709960938, + -2.22849702835083 + ] + }, + { + "mesh":4341, + "name":"Circle2902", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.083492279052734, + 1.6715091466903687, + 1.2378453016281128 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube401", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.6732590198516846 + ] + }, + { + "mesh":4342, + "name":"Circle2765", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.993036270141602, + 2.104396343231201, + 0.6277795433998108 + ] + }, + { + "mesh":4343, + "name":"pasted__pasted__pCylinder660", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.94854736328125, + 2.3167409896850586, + 6.060024738311768 + ] + }, + { + "mesh":4344, + "name":"Obj3d66-647191-17-843", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.352877616882324, + 1.672275424003601, + -15.548868179321289 + ] + }, + { + "mesh":4345, + "name":"Rectangle1167", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.92892837524414, + 0.14451825618743896, + 16.87247085571289 + ] + }, + { + "mesh":4346, + "name":"pasted__pasted__pasted__pCube592", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.394559860229492, + 0.25255119800567627, + 16.590106964111328 + ] + }, + { + "mesh":4347, + "name":"Circle2915", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.151430130004883, + 1.3380340337753296, + 1.0470048189163208 + ] + }, + { + "mesh":4348, + "name":"Object2366", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.42314338684082, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4349, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder406", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.421499252319336, + 1.4422646760940552, + -5.849052906036377 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface735", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.2695987224578857 + ] + }, + { + "mesh":4350, + "name":"Circle2506", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.006317138671875, + 1.899821400642395, + -1.4891765117645264 + ] + }, + { + "mesh":4351, + "name":"pasted__pasted__pasted__pasted__pasted__pCylinder049", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.002006530761719, + 0.6449607610702515, + 13.819491386413574 + ] + }, + { + "mesh":4352, + "name":"Rectangle831", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.012165069580078, + 0.6313761472702026, + -1.6680387258529663 + ] + }, + { + "mesh":4353, + "name":"pasted__pasted__pCylinder6.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.872058868408203, + 2.0814852714538574, + -5.591787338256836 + ] + }, + { + "mesh":4354, + "name":"Rectangle1438", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + 5.420805931091309 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface712", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.3501960039138794 + ] + }, + { + "mesh":4355, + "name":"Rectangle177", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.271402359008789, + 0.2500876188278198, + -12.587183952331543 + ] + }, + { + "mesh":4356, + "name":"pasted__pasted__pasted__pCube728", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 1.2411547899246216, + 15.524377822875977 + ] + }, + { + "mesh":4357, + "name":"Object1826", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.093809127807617, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":4358, + "name":"pasted__pasted__pCube743", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.411561965942383, + 5.280849933624268, + 4.052029609680176 + ] + }, + { + "mesh":4359, + "name":"Obj3d66-647191-7-322", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.576440811157227, + 1.6444579362869263, + 5.5750579833984375 + ] + }, + { + "mesh":4360, + "name":"Text016", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.39772605895996, + 1.5751992464065552, + -13.124715805053711 + ] + }, + { + "mesh":4361, + "name":"pasted__pasted__pCylinder395", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.48838996887207, + 4.65770959854126, + -7.023035526275635 + ] + }, + { + "mesh":4362, + "name":"pasted__pasted__pCylinder675", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.881101608276367, + 2.1092491149902344, + 5.37495231628418 + ] + }, + { + "mesh":4363, + "name":"Shape032", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.21303939819336, + 0.06582486629486084, + 2.8370800018310547 + ] + }, + { + "mesh":4364, + "name":"pasted__pasted__pasted__polySurface536", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9243946075439453, + 0.6901217699050903, + -1.2742862701416016 + ] + }, + { + "mesh":4365, + "name":"Rectangle343.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 4.772772789001465, + 0.14451754093170166, + 18.734651565551758 + ] + }, + { + "mesh":4366, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder057", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + 0.662177324295044 + ] + }, + { + "mesh":4367, + "name":"Circle2445", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.993036270141602, + 1.9557007551193237, + -2.9790658950805664 + ] + }, + { + "mesh":4368, + "name":"Object2264", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.447052001953125, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4369, + "name":"Circle3228", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3712199926376343, + 3.2951760292053223 + ] + }, + { + "mesh":4370, + "name":"Rectangle1183", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.442445755004883, + 0.0907973051071167, + 12.44258975982666 + ] + }, + { + "mesh":4371, + "name":"pasted__pasted__pasted__pasted__pCylinder446", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.068897247314453, + 0.28987395763397217, + 13.938965797424316 + ] + }, + { + "mesh":4372, + "name":"pasted__pasted__pasted__pCylinder653", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094709396362305, + 1.2660447359085083, + 14.134862899780273 + ] + }, + { + "mesh":4373, + "name":"Circle2197", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.885122299194336, + 0.19340407848358154, + -5.453815937042236 + ] + }, + { + "mesh":4374, + "name":"polySurface116", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.66356086730957, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":4375, + "name":"Circle2751", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15157699584961, + 1.3922072649002075, + 0.6277793645858765 + ] + }, + { + "mesh":4376, + "name":"Obj3d66-647191-3-603", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.992870330810547, + 1.7478052377700806, + -15.650235176086426 + ] + }, + { + "mesh":4377, + "name":"Circle2001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 2.0833840370178223, + -5.459476947784424 + ] + }, + { + "mesh":4378, + "name":"Object1908", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.0659685134887695, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4379, + "name":"pasted__pasted__pasted__pCylinder165", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.648862838745117, + 0.5030606985092163, + 12.947877883911133 + ] + }, + { + "mesh":4380, + "name":"Circle2269", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.757936477661133, + 1.3985601663589478, + -2.228497266769409 + ] + }, + { + "mesh":4381, + "name":"pasted__pasted__pCylinder526", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.971542358398438, + 2.38688325881958, + 0.08851037919521332 + ] + }, + { + "mesh":4382, + "name":"pasted__pasted__pasted__pPlane104", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.751443862915039, + 0.38407838344573975, + 13.269036293029785 + ] + }, + { + "mesh":4383, + "name":"pasted__pasted__pasted__pasted__pCylinder818", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231466293334961, + 1.0796922445297241, + 14.968205451965332 + ] + }, + { + "mesh":4384, + "name":"pasted__pasted__pPipe15.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.67852783203125, + 2.565361976623535, + -8.012530326843262 + ] + }, + { + "mesh":4385, + "name":"Rectangle1321", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.844839096069336, + 0.5665737390518188, + 1.934915542602539 + ] + }, + { + "mesh":4386, + "name":"Rectangle191", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.555379867553711, + 0.510698676109314, + -12.818193435668945 + ] + }, + { + "mesh":4387, + "name":"Object1982", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.081439018249512, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4388, + "name":"pasted__pasted__pCube755", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.451486587524414, + 5.052017688751221, + 4.9632887840271 + ] + }, + { + "mesh":4389, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder114", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692001342773438, + 0.3832782506942749, + 5.372909069061279 + ] + }, + { + "mesh":4390, + "name":"Object2641", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.83793830871582, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4391, + "name":"pasted__pasted__byq001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.218202590942383, + 0.11240279674530029, + 0.2589317262172699 + ] + }, + { + "mesh":4392, + "name":"polySurface119", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.605146408081055, + 1.4009381532669067, + 16.16634750366211 + ] + }, + { + "mesh":4393, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube251", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.576885223388672, + 0.09338724613189697, + 4.818326950073242 + ] + }, + { + "mesh":4394, + "name":"pasted__pasted__pCube656", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + 0.3333040773868561 + ] + }, + { + "mesh":4395, + "name":"Obj3d66-647191-22-657", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567289352416992, + 1.6631056070327759, + -15.54886531829834 + ] + }, + { + "mesh":4396, + "name":"Object1911", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.061748504638672, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4397, + "name":"pasted__pasted__pPipe099", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.197101593017578, + 2.5599560737609863, + -0.7436650395393372 + ] + }, + { + "mesh":4398, + "name":"Circle2406", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.015085220336914, + 2.0306596755981445, + -2.22849702835083 + ] + }, + { + "mesh":4399, + "name":"pasted__pasted__pCube623", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.229730606079102, + 1.5411938428878784, + 0.27532461285591125 + ] + }, + { + "mesh":4400, + "name":"Circle2057", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.5715526342391968, + -5.983415126800537 + ] + }, + { + "mesh":4401, + "name":"Circle3033", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1340889930725098, + 3.6717348098754883 + ] + }, + { + "mesh":4402, + "name":"pasted__pasted__pasted__pCylinder188", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749452590942383, + 0.9016937017440796, + 14.134862899780273 + ] + }, + { + "mesh":4403, + "name":"Rectangle1426", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.255056381225586, + 0.2190920114517212, + 7.877774715423584 + ] + }, + { + "mesh":4404, + "name":"pasted__pasted__pCube606", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.67784881591797, + 3.367274761199951, + 6.516063690185547 + ] + }, + { + "mesh":4405, + "name":"Rectangle1119", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.997325897216797, + 0.14451825618743896, + 14.283381462097168 + ] + }, + { + "mesh":4406, + "name":"Object2459", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.85481071472168, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4407, + "name":"pasted__pasted__pasted__pCylinder663", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094709396362305, + 1.2660447359085083, + 14.186617851257324 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube527", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":4408, + "name":"Circle2871", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.006317138671875, + 1.899821400642395, + 1.3671002388000488 + ] + }, + { + "mesh":4409, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube171", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.723602294921875, + -0.11056673526763916, + -5.589282512664795 + ] + }, + { + "mesh":4410, + "name":"Rectangle400", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.631975173950195, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":4411, + "name":"pasted__pasted__pasted__pasted__pCylinder785", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.326545715332031, + 0.10737001895904541, + 14.826196670532227 + ] + }, + { + "mesh":4412, + "name":"Circle2466", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.04081153869629, + 1.815797209739685, + -2.8990509510040283 + ] + }, + { + "mesh":4413, + "name":"pasted__pasted__pasted__pCube400", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.925705909729004, + 1.0556257963180542, + -8.328356742858887 + ] + }, + { + "mesh":4414, + "name":"Circle2701", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6487559080123901, + 0.05761951208114624 + ] + }, + { + "mesh":4415, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube248", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.925851821899414, + 1.3735631704330444, + -5.3052520751953125 + ] + }, + { + "mesh":4416, + "name":"Object2479", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.826684951782227, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4417, + "name":"Circle2797", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.110639572143555, + 1.7111369371414185, + 0.6277796030044556 + ] + }, + { + "mesh":4418, + "name":"Circle2327", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.4387444257736206, + -2.7091586589813232 + ] + }, + { + "mesh":4419, + "name":"pasted__pasted__pPipe120", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.680997848510742, + 1.0770174264907837, + 3.1448471546173096 + ] + }, + { + "mesh":4420, + "name":"Rectangle158", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.78617286682129, + 0.2500876188278198, + -12.587183952331543 + ] + }, + { + "mesh":4421, + "name":"pasted__pasted__pasted__pCylinder753", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9305353164672852, + 0.7768586874008179, + 6.518670558929443 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door118", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.285858154296875 + ] + }, + { + "mesh":4422, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube351", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 0.3764752149581909, + 5.661487102508545 + ] + }, + { + "mesh":4423, + "name":"Rectangle183", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.120513916015625, + 0.5975691080093384, + -12.893644332885742 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface772", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.285858154296875 + ] + }, + { + "mesh":4424, + "name":"pasted__pasted__pCube613", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.61594009399414, + 0.8970309495925903, + 6.4108147621154785 + ] + }, + { + "mesh":4425, + "name":"Circle2849", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.106962203979492, + 1.6220840215682983, + 0.06801553070545197 + ] + }, + { + "mesh":4426, + "name":"pasted__pasted__pasted__pCylinder665", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094711303710938, + 1.2660447359085083, + 16.56253433227539 + ] + }, + { + "mesh":4427, + "name":"Circle2708", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7275310754776, + 0.013252735137939453 + ] + }, + { + "mesh":4428, + "name":"Circle2978", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.757936477661133, + 1.3744639158248901, + 4.094761848449707 + ] + }, + { + "mesh":4429, + "name":"Object2502", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.794342041015625, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4430, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube115", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.79571533203125, + 0.741942286491394, + -13.145119667053223 + ] + }, + { + "mesh":4431, + "name":"Rectangle924", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0033016204834, + 1.039061188697815, + 0.631531298160553 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube372", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.656999945640564 + ] + }, + { + "mesh":4432, + "name":"Circle2303", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1340889930725098, + -2.22849702835083 + ] + }, + { + "mesh":4433, + "name":"pasted__pasted__pCube759", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.085103988647461, + 1.6318343877792358, + 5.768460273742676 + ] + }, + { + "mesh":4434, + "name":"Rectangle1244", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384544610977173, + -4.798501014709473 + ] + }, + { + "mesh":4435, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface226", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.870063781738281, + 1.7860993146896362, + -5.4045538902282715 + ] + }, + { + "mesh":4436, + "name":"Circle2595", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9080475568771362, + 1.3523244857788086 + ] + }, + { + "mesh":4437, + "name":"pasted__pasted__pasted__pCylinder198", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749452590942383, + 0.5030604600906372, + 14.186617851257324 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube193", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -6.569958209991455 + ] + }, + { + "mesh":4438, + "name":"Circle2550", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.151430130004883, + 1.3380340337753296, + -1.8092714548110962 + ] + }, + { + "mesh":4439, + "name":"Circle1734", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03346061706543, + 1.8373209238052368, + -6.143182277679443 + ] + }, + { + "mesh":4440, + "name":"Circle2760", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.974660873413086, + 2.1658430099487305, + 0.6277795433998108 + ] + }, + { + "mesh":4441, + "name":"Object2146", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.493457794189453, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4442, + "name":"Circle1607", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1214122772216797, + -5.460317134857178 + ] + }, + { + "mesh":4443, + "name":"Object2471", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.83793830871582, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4444, + "name":"pasted__pasted__pasted__pPlane309", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.36985206604004, + 0.38407886028289795, + 12.949873924255371 + ] + }, + { + "mesh":4445, + "name":"pasted__pasted__pCylinder344.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.49913215637207, + 5.043131351470947, + -8.036056518554688 + ] + }, + { + "mesh":4446, + "name":"Rectangle1038", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 7.322399139404297, + 0.14451825618743896, + -6.502554893493652 + ] + }, + { + "mesh":4447, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder081", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.8760986328125, + 0.07032907009124756, + 5.878872871398926 + ] + }, + { + "mesh":4448, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube76", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 1.3735638856887817, + -5.890697479248047 + ] + }, + { + "mesh":4449, + "name":"pasted__pasted__pasted__pCylinder706", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.423185348510742, + 0.5030611753463745, + 16.585969924926758 + ] + }, + { + "mesh":4450, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface702", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.49847412109375, + 0.6330384016036987, + 16.93367576599121 + ] + }, + { + "mesh":4451, + "name":"pasted__pasted__pCylinder453", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.050214767456055, + 3.3518385887145996, + 6.584938049316406 + ] + }, + { + "mesh":4452, + "name":"pasted__pasted__pCylinder4.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.854480743408203, + 2.0156869888305664, + -6.224788665771484 + ] + }, + { + "mesh":4453, + "name":"pasted__pasted__pasted__pasted__pCylinder498", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886508941650391, + 1.0796922445297241, + 15.701493263244629 + ] + }, + { + "mesh":4454, + "name":"pasted__pasted__pCube374.004", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.493925094604492, + 1.2804936170578003, + -3.373019218444824 + ] + }, + { + "mesh":4455, + "name":"Object2585", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.79715347290039, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4456, + "name":"Circle1871", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.822553634643555, + 1.6543699502944946, + -4.870223522186279 + ] + }, + { + "mesh":4457, + "name":"Circle2028", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.6268056631088257, + -6.0145440101623535 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group145", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.6732590198516846 + ] + }, + { + "mesh":4458, + "name":"Circle2171", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.83867073059082, + 1.6823805570602417, + -6.064672470092773 + ] + }, + { + "mesh":4459, + "name":"Rectangle1166", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.92892837524414, + 0.14451825618743896, + 16.87247085571289 + ] + }, + { + "mesh":4460, + "name":"Shape036", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.10811996459961, + 0.14451825618743896, + -0.6465281844139099 + ] + }, + { + "mesh":4461, + "name":"pasted__pasted__pasted__pCylinder709", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.01236915588379, + 0.5030606985092163, + 16.585969924926758 + ] + }, + { + "mesh":4462, + "name":"Sphere048", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.19780158996582, + 1.282675862312317, + 1.0541317462921143 + ] + }, + { + "mesh":4463, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder408", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.408638000488281, + 1.1022669076919556, + -5.745120048522949 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface734", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.2695987224578857 + ] + }, + { + "mesh":4464, + "name":"Circle2505", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.009992599487305, + 1.8889487981796265, + -1.4953315258026123 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube168", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":4465, + "name":"Circle1895", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.671263337135315, + -4.8656158447265625 + ] + }, + { + "mesh":4466, + "name":"Object1935", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.1475372314453125, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4467, + "name":"pasted__pasted__pasted__pCube707", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033937454223633, + 0.8213735818862915, + 16.228010177612305 + ] + }, + { + "mesh":4468, + "name":"Circle2188", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.68246078491211, + 1.3768714666366577, + -5.880627155303955 + ] + }, + { + "mesh":4469, + "name":"Circle2638", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.2755346298217773, + 0.6277793049812317 + ] + }, + { + "mesh":4470, + "name":"Rectangle830", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.3101272583007812, + 0.3707655668258667, + -1.6680387258529663 + ] + }, + { + "mesh":4471, + "name":"Circle2721", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8063067197799683, + -0.031114019453525543 + ] + }, + { + "mesh":4472, + "name":"Circle3180", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.974660873413086, + 2.009509563446045, + 2.8903911113739014 + ] + }, + { + "mesh":4473, + "name":"Rectangle1177", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.681344985961914, + 0.5256079435348511, + 12.50312614440918 + ] + }, + { + "mesh":4474, + "name":"Rectangle1087", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.048496246337891, + 0.04489290714263916, + -3.878626585006714 + ] + }, + { + "mesh":4475, + "name":"pasted__pasted__pasted__pasted__pasted__pCube460", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.507835388183594, + -0.18407440185546875, + 14.710431098937988 + ] + }, + { + "mesh":4476, + "name":"Object1825", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.10063362121582, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":4477, + "name":"pasted__pasted__pCube741", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.724905014038086, + 1.7704380750656128, + -0.7355540990829468 + ] + }, + { + "mesh":4478, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube505", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.029628753662109, + 1.5177079439163208, + -2.947385549545288 + ] + }, + { + "mesh":4479, + "name":"pasted__pasted__pCube373.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.958223342895508, + 2.577449321746826, + -3.1812922954559326 + ] + }, + { + "mesh":4480, + "name":"pasted__pasted__pCylinder394", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.43079948425293, + 4.269148349761963, + -7.023035526275635 + ] + }, + { + "mesh":4481, + "name":"Circle2461", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.022436141967773, + 1.869606375694275, + -2.929825782775879 + ] + }, + { + "mesh":4482, + "name":"Rectangle094", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.98724365234375, + 0.14451825618743896, + -0.6465281844139099 + ] + }, + { + "mesh":4483, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube338", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + 4.7917070388793945 + ] + }, + { + "mesh":4484, + "name":"Circle1789", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.017343521118164, + 1.867205262184143, + -4.739461898803711 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface721", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 0.6042507886886597 + ] + }, + { + "mesh":4485, + "name":"pasted__pasted__pCube521", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.634368896484375, + 0.8707841634750366, + -7.484979152679443 + ] + }, + { + "mesh":4486, + "name":"Circle2428", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.095937728881836, + 1.7602943181991577, + -2.22849702835083 + ] + }, + { + "mesh":4487, + "name":"Circle3077", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8513208627700806, + 2.9874894618988037 + ] + }, + { + "mesh":4488, + "name":"pasted__pasted__pasted__pCylinder737", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9305353164672852, + 0.8645821809768677, + -1.1782701015472412 + ] + }, + { + "mesh":4489, + "name":"pasted__pasted__pTorus051", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.263608932495117, + 5.048587322235107, + 3.928459882736206 + ] + }, + { + "mesh":4490, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube261", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + 0.6593899130821228 + ] + }, + { + "mesh":4491, + "name":"Object2180", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.44564437866211, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4492, + "name":"Object2263", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.448455810546875, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4493, + "name":"pasted__pasted__pasted__pasted__pCylinder445", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886205673217773, + 0.28987395763397217, + 13.938788414001465 + ] + }, + { + "mesh":4494, + "name":"pasted__pasted__pasted__pPlane285", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.096700668334961, + 0.38407838344573975, + 13.837109565734863 + ] + }, + { + "mesh":4495, + "name":"Circle3199", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.051836013793945, + 1.783511757850647, + 3.019646167755127 + ] + }, + { + "mesh":4496, + "name":"polySurface115", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.680540084838867, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":4497, + "name":"Rectangle1086", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.048496246337891, + 0.04489290714263916, + -4.347567558288574 + ] + }, + { + "mesh":4498, + "name":"pasted__pasted__pPipe110", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.871406555175781, + 1.845382809638977, + 5.564574718475342 + ] + }, + { + "mesh":4499, + "name":"Sphere046", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.19780158996582, + 1.3751152753829956, + 0.6277793645858765 + ] + }, + { + "mesh":4500, + "name":"Obj3d66-647191-5-146", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.992870330810547, + 1.726946234703064, + -15.738433837890625 + ] + }, + { + "mesh":4501, + "name":"Circle2000", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 2.096060276031494, + -5.459476947784424 + ] + }, + { + "mesh":4502, + "name":"pasted__pasted__pasted__pCube190", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 1.2411547899246216, + 16.228010177612305 + ] + }, + { + "mesh":4503, + "name":"Object1907", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.067373275756836, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4504, + "name":"pasted__pasted__pasted__pCylinder164", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.648862838745117, + 0.9016944169998169, + 12.947877883911133 + ] + }, + { + "mesh":4505, + "name":"Sphere038", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8063907623291, + 1.3557039499282837, + -2.228497266769409 + ] + }, + { + "mesh":4506, + "name":"Object2575", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.811220169067383, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4507, + "name":"Object1821", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.127936363220215, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":4508, + "name":"Circle2053", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.7730509042739868, + -6.0969390869140625 + ] + }, + { + "mesh":4509, + "name":"pasted__pasted__pCylinder525", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.962501525878906, + 2.3591203689575195, + 0.08851037919521332 + ] + }, + { + "mesh":4510, + "name":"Rectangle1277", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9545860290527344, + 0.6844395399093628, + -2.9385335445404053 + ] + }, + { + "mesh":4511, + "name":"pasted__pasted__pasted__pCube158", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.75358772277832, + 0.25255048274993896, + 14.160536766052246 + ] + }, + { + "mesh":4512, + "name":"pasted__pasted__pasted__pasted__pCylinder817", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.153039932250977, + 1.0796922445297241, + 14.820230484008789 + ] + }, + { + "mesh":4513, + "name":"Object2455", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.860437393188477, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4514, + "name":"pasted__pasted__pasted__pCylinder203", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749452590942383, + 1.2660447359085083, + 15.404440879821777 + ] + }, + { + "mesh":4515, + "name":"Circle1624", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3985601663589478, + -5.363993167877197 + ] + }, + { + "mesh":4516, + "name":"Object1981", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.082843780517578, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4517, + "name":"pasted__pasted__pCube754", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.45350456237793, + 5.064568996429443, + 5.264371395111084 + ] + }, + { + "mesh":4518, + "name":"Object2640", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839344024658203, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface666", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -6.569958209991455 + ] + }, + { + "mesh":4519, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder413", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.41666030883789, + 1.1056500673294067, + -0.5410744547843933 + ] + }, + { + "mesh":4520, + "name":"Circle1742", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0628604888916, + 1.7512258291244507, + -6.0939412117004395 + ] + }, + { + "mesh":4521, + "name":"pasted__pasted__pCube655", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + 1.1962963342666626 + ] + }, + { + "mesh":4522, + "name":"pasted__pasted__pCylinder12.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.926324844360352, + 2.24806547164917, + -5.591787338256836 + ] + }, + { + "mesh":4523, + "name":"Text010", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.6170434951782227, + 1.3259838819503784, + -1.8196868896484375 + ] + }, + { + "mesh":4524, + "name":"Object1910", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.0631561279296875, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4525, + "name":"pasted__pasted__pPipe098", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.215280532836914, + 2.774721622467041, + -0.7436650395393372 + ] + }, + { + "mesh":4526, + "name":"pasted__pasted__pPipe053", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.46693992614746, + 1.0766092538833618, + 6.311304092407227 + ] + }, + { + "mesh":4527, + "name":"Circle2056", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.585365653038025, + -5.991197109222412 + ] + }, + { + "mesh":4528, + "name":"pasted__pasted__pasted__pCylinder187", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749452590942383, + 1.2660447359085083, + 14.134862899780273 + ] + }, + { + "mesh":4529, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface513", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.153217315673828, + 0.6330384016036987, + 12.759177207946777 + ] + }, + { + "mesh":4530, + "name":"Rectangle1425", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.180307388305664, + 0.3059629201889038, + 7.877774715423584 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube489", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":4531, + "name":"pasted__pasted__pCube605", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.37675666809082, + 3.3573498725891113, + 6.515372276306152 + ] + }, + { + "mesh":4532, + "name":"Object2133", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.511737823486328, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4533, + "name":"Circle3258", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.050416946411133, + 1.7693573236465454, + 4.337194919586182 + ] + }, + { + "mesh":4534, + "name":"Rectangle390.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + -16.603008270263672 + ] + }, + { + "mesh":4535, + "name":"pasted__pasted__pasted__pCylinder662", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094709396362305, + 0.9016937017440796, + 14.186617851257324 + ] + }, + { + "mesh":4536, + "name":"pasted__pasted__pasted__pCylinder638", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.701154708862305, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "mesh":4537, + "name":"Rectangle559", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.350065231323242, + 0.43873751163482666, + 13.961438179016113 + ] + }, + { + "mesh":4538, + "name":"Object2032", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.1306610107421875, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors159", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":4539, + "name":"Rectangle1090", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.255056381225586, + 0.2190920114517212, + -4.108668804168701 + ] + }, + { + "mesh":4540, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder39", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 1.3803664445877075, + -5.3046650886535645 + ] + }, + { + "mesh":4541, + "name":"Rectangle1356", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.023313522338867, + 0.14451849460601807, + 7.9199395179748535 + ] + }, + { + "mesh":4542, + "name":"Circle2326", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.4346307516098022, + -2.8825623989105225 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube564", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":4543, + "name":"pasted__pasted__pasted__pPlane294", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.099143981933594, + 0.3886605501174927, + 13.838674545288086 + ] + }, + { + "mesh":4544, + "name":"Rectangle157", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.78617286682129, + 0.33695781230926514, + -12.664052963256836 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface654", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.700583457946777 + ] + }, + { + "mesh":4545, + "name":"pasted__pasted__pCube781", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.958223342895508, + 2.577449321746826, + 3.1521706581115723 + ] + }, + { + "mesh":4546, + "name":"pasted__pasted__pasted__pCube654", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 0.7962988615036011, + 5.867096900939941 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube212", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.285858154296875 + ] + }, + { + "mesh":4547, + "name":"Circle3150", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0665340423584, + 1.8586090803146362, + 3.6717348098754883 + ] + }, + { + "mesh":4548, + "name":"Circle3147", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.055511474609375, + 1.8954769372940063, + 3.6717348098754883 + ] + }, + { + "mesh":4549, + "name":"Rectangle1284", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451777935028076, + 1.2963411808013916 + ] + }, + { + "mesh":4550, + "name":"Circle3029", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.184793472290039, + 3.6717348098754883 + ] + }, + { + "mesh":4551, + "name":"Circle2848", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.103288650512695, + 1.6328457593917847, + 0.061860550194978714 + ] + }, + { + "mesh":4552, + "name":"pasted__pasted__pasted__pCube551", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.098840713500977, + 0.25255048274993896, + 15.3744535446167 + ] + }, + { + "mesh":4553, + "name":"Object1803", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.0746296644210815, + 16.99413299560547 + ] + }, + { + "mesh":4554, + "name":"Object2501", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.79574966430664, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4555, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface300", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.891103744506836, + 0.7688840627670288, + -13.15860652923584 + ] + }, + { + "mesh":4556, + "name":"Circle2629", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.517868041992188, + 1.1369620561599731, + 0.938923716545105 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface730", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.656999945640564 + ] + }, + { + "mesh":4557, + "name":"Circle2302", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1467652320861816, + -2.22849702835083 + ] + }, + { + "mesh":4558, + "name":"Rectangle1242", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + -5.6517653465271 + ] + }, + { + "mesh":4559, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door097", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.002043724060059, + 1.5217519998550415, + -4.219324588775635 + ] + }, + { + "mesh":4560, + "name":"pasted__pasted__pCube851", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.316036224365234, + 1.5766974687576294, + 12.680855751037598 + ] + }, + { + "mesh":4561, + "name":"pasted__pasted__pPipe28", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.871406555175781, + 1.845382809638977, + -5.603764057159424 + ] + }, + { + "mesh":4562, + "name":"Circle3094", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.557158350944519, + 3.153162956237793 + ] + }, + { + "mesh":4563, + "name":"pasted__pasted__pasted__pCylinder197", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749452590942383, + 1.2660447359085083, + 14.186617851257324 + ] + }, + { + "mesh":4564, + "name":"Sphere042", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.19780158996582, + 1.282675862312317, + -1.8021451234817505 + ] + }, + { + "mesh":4565, + "name":"Object2470", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839344024658203, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4566, + "name":"pasted__pasted__pasted__pPlane308", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.93793296813965, + 0.38407886028289795, + 12.949873924255371 + ] + }, + { + "mesh":4567, + "name":"pasted__pasted__pCube409.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.458232879638672, + 5.073940753936768, + -7.484667778015137 + ] + }, + { + "mesh":4568, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder25", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + -5.8912739753723145 + ] + }, + { + "mesh":4569, + "name":"pasted__pasted__pasted__pCylinder705", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.423185348510742, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":4570, + "name":"Object2361", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.43017578125, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4571, + "name":"pasted__pasted__pCube858", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.403837203979492, + 1.027711272239685, + 16.581436157226562 + ] + }, + { + "mesh":4572, + "name":"Obj3d66-647191-26-572", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980655670166016, + 1.670127511024475, + -15.611695289611816 + ] + }, + { + "mesh":4573, + "name":"Rectangle756", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.251155853271484, + 0.14451849460601807, + -9.313719749450684 + ] + }, + { + "mesh":4574, + "name":"pasted__pasted__pCylinder643", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.708860397338867, + 4.937098026275635, + 4.842086315155029 + ] + }, + { + "mesh":4575, + "name":"pasted__pasted__pasted__pasted__pCylinder497", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.069196701049805, + 1.0796922445297241, + 15.701667785644531 + ] + }, + { + "mesh":4576, + "name":"Circle2970", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9980443716049194, + 4.44698429107666 + ] + }, + { + "mesh":4577, + "name":"Circle2247", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9192970991134644, + -1.4976140260696411 + ] + }, + { + "mesh":4578, + "name":"pasted__pasted__pCube377.004", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.40590476989746, + 1.1269747018814087, + -3.399028778076172 + ] + }, + { + "mesh":4579, + "name":"Circle2733", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.042632579803467, + -0.1642143428325653 + ] + }, + { + "mesh":4580, + "name":"Object2584", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.798559188842773, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4581, + "name":"Object2451", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.86606216430664, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4582, + "name":"Circle1870", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.826231002807617, + 1.665131688117981, + -4.864068031311035 + ] + }, + { + "mesh":4583, + "name":"Object2490", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.811220169067383, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4584, + "name":"Arc05", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.586313247680664, + 0.14451920986175537, + -0.44542109966278076 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door119", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.6732590198516846 + ] + }, + { + "mesh":4585, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder076", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.920570373535156, + 1.7839974164962769, + 3.5599730014801025 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube434", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":4586, + "name":"Circle2170", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.842348098754883, + 1.693252682685852, + -6.070827007293701 + ] + }, + { + "mesh":4587, + "name":"Rectangle1165", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.92892837524414, + 0.14451825618743896, + 14.283381462097168 + ] + }, + { + "mesh":4588, + "name":"pasted__pasted__pasted__pCylinder708", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.01236915588379, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface717", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 0.6042507886886597 + ] + }, + { + "mesh":4589, + "name":"Circle2868", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.053220748901367, + 1.425226092338562, + 1.288552165031433 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface603", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":4590, + "name":"Rectangle443", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.30127811431884766, + 0.3215755224227905, + -5.476256370544434 + ] + }, + { + "mesh":4591, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder409", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.401199340820312, + 1.0991302728652954, + -5.30356502532959 + ] + }, + { + "mesh":4592, + "name":"Circle2825", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.01875877380371, + 1.8803683519363403, + -0.07970426231622696 + ] + }, + { + "mesh":4593, + "name":"Circle2956", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.571553111076355, + 4.2066969871521 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface733", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.2695987224578857 + ] + }, + { + "mesh":4594, + "name":"Circle2366", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0651402473449707, + -3.0331668853759766 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__polySurface052", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":4595, + "name":"Object1934", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.148944854736328, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4596, + "name":"pasted__pasted__pasted__pCube706", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033937454223633, + 0.9795023202896118, + 16.228010177612305 + ] + }, + { + "mesh":4597, + "name":"Object2623", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.863252639770508, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4598, + "name":"Rectangle829", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.155284881591797, + 0.5445059537887573, + -1.6680387258529663 + ] + }, + { + "mesh":4599, + "name":"polySurface103", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.680538177490234, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube559", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":4600, + "name":"pasted__pasted__pasted__pasted__pasted__extrudedSurface047", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.553882598876953, + 1.3885892629623413, + 15.15339469909668 + ] + }, + { + "mesh":4601, + "name":"Object1824", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.107460021972656, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":4602, + "name":"pasted__pasted__pPipe077", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.699180603027344, + 1.2917834520339966, + 2.4927611351013184 + ] + }, + { + "mesh":4603, + "name":"Circle2562", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03337287902832, + 0.19340407848358154, + -2.2228355407714844 + ] + }, + { + "mesh":4604, + "name":"pasted__pasted__pCylinder393", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.487062454223633, + 4.65733003616333, + -5.681457996368408 + ] + }, + { + "mesh":4605, + "name":"Rectangle203", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.555379867553711, + 0.5975691080093384, + -12.893644332885742 + ] + }, + { + "mesh":4606, + "name":"Circle2460", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.01875877380371, + 1.8803683519363403, + -2.935981035232544 + ] + }, + { + "mesh":4607, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube337", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 1.3735631704330444, + 4.492324352264404 + ] + }, + { + "mesh":4608, + "name":"Circle1788", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.969566345214844, + 2.0085415840148926, + -4.659447193145752 + ] + }, + { + "mesh":4609, + "name":"Circle3303", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.439908981323242, + 0.42216408252716064, + -5.688488960266113 + ] + }, + { + "mesh":4610, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder414", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.401201248168945, + 1.0991302728652954, + 5.663174152374268 + ] + }, + { + "mesh":4611, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube260", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 1.3735638856887817, + 0.9587724208831787 + ] + }, + { + "mesh":4612, + "name":"Circle3140", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.029787063598633, + 1.9815021753311157, + 3.6717348098754883 + ] + }, + { + "mesh":4613, + "name":"Object2262", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.449861526489258, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4614, + "name":"pasted__pasted__pasted__pasted__pCylinder444", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.807779312133789, + 0.28987395763397217, + 13.790817260742188 + ] + }, + { + "mesh":4615, + "name":"pasted__pasted__pasted__pPlane284", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.096700668334961, + 0.38407838344573975, + 13.269036293029785 + ] + }, + { + "mesh":4616, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube362", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + -7.336694240570068 + ] + }, + { + "mesh":4617, + "name":"polySurface114", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.6975202560424805, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":4618, + "name":"polySurface102", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.6975202560424805, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":4619, + "name":"Circle1744", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.070215225219727, + 1.729702353477478, + -6.081631660461426 + ] + }, + { + "mesh":4620, + "name":"Circle2750", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.05963897705078, + 1.4875630140304565, + 0.6277793645858765 + ] + }, + { + "mesh":4621, + "name":"Obj3d66-647191-4-133", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.992870330810547, + 1.6804250478744507, + -15.576520919799805 + ] + }, + { + "mesh":4622, + "name":"pasted__pasted__pCylinder598", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.708036422729492, + 4.930069446563721, + 0.010608889162540436 + ] + }, + { + "mesh":4623, + "name":"Circle1999", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 2.108736515045166, + -5.459476947784424 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube545", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":4624, + "name":"pasted__pasted__pPipe107", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.46347427368164, + 1.845382809638977, + 5.362974166870117 + ] + }, + { + "mesh":4625, + "name":"Object2409", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.0292431116104126, + 16.99413299560547 + ] + }, + { + "mesh":4626, + "name":"Circle2052", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.784300684928894, + -6.103278160095215 + ] + }, + { + "mesh":4627, + "name":"pasted__pasted__pasted__pCylinder186", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.648862838745117, + 0.5030611753463745, + 16.585969924926758 + ] + }, + { + "mesh":4628, + "name":"pasted__pasted__pasted__pasted__polySurface377", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.322957992553711, + 1.0412582159042358, + 14.820230484008789 + ] + }, + { + "mesh":4629, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder212", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.685340881347656, + 0.6582883596420288, + 12.767040252685547 + ] + }, + { + "mesh":4630, + "name":"Circle1597", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3985601663589478, + -5.504589080810547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube475", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":4631, + "name":"pasted__pasted__pCube753", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.411561965942383, + 5.280849933624268, + 5.107716083526611 + ] + }, + { + "mesh":4632, + "name":"pasted__pasted__pPipe068", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.871406555175781, + 1.845382809638977, + 0.07653244584798813 + ] + }, + { + "mesh":4633, + "name":"Object2639", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84075164794922, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4634, + "name":"Obj3d66-647191-35-123", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8916492462158203, + 1.3110347986221313, + -8.65088939666748 + ] + }, + { + "mesh":4635, + "name":"Circle3114", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.2966750860214233, + 3.3107619285583496 + ] + }, + { + "mesh":4636, + "name":"Circle2481", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.095937728881836, + 1.6543697118759155, + -2.8067257404327393 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group129", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -1.1389737129211426 + ] + }, + { + "mesh":4637, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder412", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.421499252319336, + 1.4422646760940552, + -0.16875609755516052 + ] + }, + { + "mesh":4638, + "name":"pasted__pasted__pCylinder494", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887872695922852, + 2.124401092529297, + 0.7403739094734192 + ] + }, + { + "mesh":4639, + "name":"Rectangle1197", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.7696352005004883, + 1.2825690507888794, + -8.458656311035156 + ] + }, + { + "mesh":4640, + "name":"Object1909", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.064563751220703, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4641, + "name":"polySurface101", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.714502334594727, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":4642, + "name":"Rectangle804", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.8127765655517578, + 0.14451849460601807, + -6.78524923324585 + ] + }, + { + "mesh":4643, + "name":"pasted__pasted__pCube694", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.373682022094727, + 2.577449321746826, + -0.7391709685325623 + ] + }, + { + "mesh":4644, + "name":"Circle2055", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.5991789102554321, + -5.9989800453186035 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube560", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":4645, + "name":"pasted__pasted__pCube455", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6876392364501953, + 1.027711272239685, + 16.471485137939453 + ] + }, + { + "mesh":4646, + "name":"Rectangle1424", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.02546501159668, + 0.47970330715179443, + 7.877774715423584 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__polySurface056", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":4647, + "name":"pasted__pasted__pCube604", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.239755630493164, + 3.367274761199951, + 6.516063690185547 + ] + }, + { + "mesh":4648, + "name":"Object2132", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.513145446777344, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4649, + "name":"Object2457", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.857629776000977, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4650, + "name":"Obj3d66-647191-13-204", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.453460693359375, + 1.6729644536972046, + 12.174750328063965 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube356", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -0.5263744592666626 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__polySurface055", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":4651, + "name":"Rectangle1137", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.23808479309082, + 0.04489290714263916, + 16.88002586364746 + ] + }, + { + "mesh":4652, + "name":"Rectangle1089", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.180307388305664, + 0.3059629201889038, + -4.108668804168701 + ] + }, + { + "mesh":4653, + "name":"Circle2683", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9439455270767212, + 0.6277795433998108 + ] + }, + { + "mesh":4654, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube247", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.43475341796875, + 0.37188422679901123, + -5.575860500335693 + ] + }, + { + "mesh":4655, + "name":"Rectangle1355", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.023313522338867, + 0.14451849460601807, + 2.6727218627929688 + ] + }, + { + "mesh":4656, + "name":"Circle2325", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.3328157663345337, + -2.228497266769409 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube534", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":4657, + "name":"pasted__pasted__pasted__pPlane293", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.099143981933594, + 0.3886605501174927, + 13.270601272583008 + ] + }, + { + "mesh":4658, + "name":"Rectangle156", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.78617286682129, + 0.42382848262786865, + -12.738801002502441 + ] + }, + { + "mesh":4659, + "name":"Object2427", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.785245895385742, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":4660, + "name":"pasted__pasted__pasted__pCube594", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46978187561035, + 0.25255048274993896, + 15.3744535446167 + ] + }, + { + "mesh":4661, + "name":"pasted__pasted__pPipe115", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.799821853637695, + 2.774721622467041, + 3.1476871967315674 + ] + }, + { + "mesh":4662, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder122", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692001342773438, + 1.3803664445877075, + 6.249678134918213 + ] + }, + { + "mesh":4663, + "name":"pasted__pasted__pasted__pCube653", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 1.3207260370254517, + 5.867096900939941 + ] + }, + { + "mesh":4664, + "name":"Circle2847", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0996150970459, + 1.64360773563385, + 0.05570555850863457 + ] + }, + { + "mesh":4665, + "name":"pasted__pasted__pasted__pCylinder664", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094709396362305, + 0.5030604600906372, + 14.186617851257324 + ] + }, + { + "mesh":4666, + "name":"Circle1727", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.967308044433594, + 2.031033992767334, + -6.253972053527832 + ] + }, + { + "mesh":4667, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder099", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.158982276916504, + 0.6623357534408569, + 12.767040252685547 + ] + }, + { + "mesh":4668, + "name":"Object2500", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.79715347290039, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4669, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface299", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.891103744506836, + 0.9432264566421509, + -13.15860652923584 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface729", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.656999945640564 + ] + }, + { + "mesh":4670, + "name":"Circle2301", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1594409942626953, + -2.22849702835083 + ] + }, + { + "mesh":4671, + "name":"Object2480", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.825281143188477, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4672, + "name":"Obj3d66-647191-23-241", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.981172561645508, + 1.6626402139663696, + -15.548868179321289 + ] + }, + { + "mesh":4673, + "name":"Circle1713", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15263557434082, + 1.5625349283218384, + -5.460318088531494 + ] + }, + { + "mesh":4674, + "name":"pasted__pasted__pasted__pCylinder196", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749452590942383, + 0.9016937017440796, + 14.186617851257324 + ] + }, + { + "mesh":4675, + "name":"Circle2503", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.053220748901367, + 1.425226092338562, + -1.567724347114563 + ] + }, + { + "mesh":4676, + "name":"Circle2119", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.834997177124023, + 1.796855092048645, + -5.459476947784424 + ] + }, + { + "mesh":4677, + "name":"Object2469", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84075164794922, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4678, + "name":"pasted__pasted__pasted__pCylinder676", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.440046310424805, + 0.503059983253479, + 12.947877883911133 + ] + }, + { + "mesh":4679, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube49", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.378658294677734, + 0.37188422679901123, + -5.620078086853027 + ] + }, + { + "mesh":4680, + "name":"pasted__pasted__pasted__pCylinder704", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.423185348510742, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube344", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":4681, + "name":"Circle2243", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.964295744895935, + -1.4722617864608765 + ] + }, + { + "mesh":4682, + "name":"pasted__pasted__pCube847", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.032896041870117, + 1.027711272239685, + 16.471485137939453 + ] + }, + { + "mesh":4683, + "name":"Circle1754", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.106962203979492, + 1.6220840215682983, + -6.020081996917725 + ] + }, + { + "mesh":4684, + "name":"pasted__pasted__pCylinder450", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.186412811279297, + 3.2304320335388184, + -7.820158004760742 + ] + }, + { + "mesh":4685, + "name":"Rectangle194", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.706268310546875, + 0.42382848262786865, + -12.738801002502441 + ] + }, + { + "mesh":4686, + "name":"Rectangle586", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.43239688873291, + 0.5755866765975952, + 15.577927589416504 + ] + }, + { + "mesh":4687, + "name":"pasted__pasted__pCylinder642", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.680505752563477, + 4.842443466186523, + 4.829448223114014 + ] + }, + { + "mesh":4688, + "name":"pasted__pasted__pCube526", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.453641891479492, + -0.5983297824859619, + -7.560935974121094 + ] + }, + { + "mesh":4689, + "name":"Circle2969", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0092945098876953, + 4.453322887420654 + ] + }, + { + "mesh":4690, + "name":"pasted__pasted__pCube376.004", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.55306053161621, + 1.1083353757858276, + -3.3914520740509033 + ] + }, + { + "mesh":4691, + "name":"Object2583", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.79996681213379, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4692, + "name":"Circle2597", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.761801838874817, + 1.269929051399231 + ] + }, + { + "mesh":4693, + "name":"Circle1869", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.829904556274414, + 1.6758934259414673, + -4.857913494110107 + ] + }, + { + "mesh":4694, + "name":"Line20", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.58643913269043, + 0.14451920986175537, + -0.5851030349731445 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube672", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":4695, + "name":"pasted__pasted__pTorus037", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.263608932495117, + 5.048587322235107, + -0.0037794262170791626 + ] + }, + { + "mesh":4696, + "name":"Circle2872", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.002639770507812, + 1.9106930494308472, + 1.3732552528381348 + ] + }, + { + "mesh":4697, + "name":"Circle2169", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.846023559570312, + 1.7041245698928833, + -6.076983451843262 + ] + }, + { + "mesh":4698, + "name":"Rectangle1164", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.92892837524414, + 0.14451825618743896, + 14.283381462097168 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube323", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.393779754638672 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door115", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.5926618576049805 + ] + }, + { + "mesh":4699, + "name":"pasted__pasted__pCube700", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.396299362182617, + 5.0152716636657715, + 5.49691915512085 + ] + }, + { + "mesh":4700, + "name":"Circle2867", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15263557434082, + 1.49055016040802, + 0.1445230096578598 + ] + }, + { + "mesh":4701, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube256", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + -4.714282989501953 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group120", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -7.182558059692383 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface578", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface732", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.2695987224578857 + ] + }, + { + "mesh":4702, + "name":"Object1933", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.150346755981445, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4703, + "name":"pasted__pasted__pasted__pCube705", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 1.399283766746521, + 16.228010177612305 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube558", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":4704, + "name":"pasted__pasted__pasted__pCube726", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.354541778564453, + 1.572085976600647, + 15.543998718261719 + ] + }, + { + "mesh":4705, + "name":"Circle2745", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3299905061721802, + 0.13235720992088318 + ] + }, + { + "mesh":4706, + "name":"HDM_02_05_audi_logo_rim16", + "translation":[ + 242.98046875, + 158.19540405273438, + -30.93359375 + ] + }, + { + "mesh":4707, + "name":"HDM_02_05_audi_logo_rim17", + "translation":[ + 242.98046875, + -159.92486572265625, + -30.955078125 + ] + }, + { + "mesh":4708, + "name":"HDM_02_05_audi_logo_rim18", + "translation":[ + -272.37890625, + 158.19692993164062, + -30.93359375 + ] + }, + { + "mesh":4709, + "name":"HDM_02_05_audi_logo_rim19", + "translation":[ + -272.37890625, + -159.92437744140625, + -30.955078125 + ] + }, + { + "mesh":4710, + "name":"HDM_02_05_brake_caliper_16", + "translation":[ + 218.15625, + 137.28866577148438, + -31.564453125 + ] + }, + { + "mesh":4711, + "name":"HDM_02_05_brake_caliper_17", + "translation":[ + 218.13671875, + -152.25247192382812, + -31.548828125 + ] + }, + { + "mesh":4712, + "name":"HDM_02_05_brake_caliper_18", + "translation":[ + -297.19921875, + 137.28933715820312, + -31.564453125 + ] + }, + { + "mesh":4713, + "name":"HDM_02_05_brake_caliper_19", + "translation":[ + -297.22265625, + -152.25125122070312, + -31.548828125 + ] + }, + { + "mesh":4714, + "name":"HDM_02_05_brake_disc_and_bolts16", + "translation":[ + 242.984375, + 143.70925903320312, + -30.95703125 + ] + }, + { + "mesh":4715, + "name":"HDM_02_05_brake_disc_and_bolts17", + "translation":[ + 242.98828125, + -157.68685913085938, + -30.95703125 + ] + }, + { + "mesh":4716, + "name":"HDM_02_05_brake_disc_and_bolts18", + "translation":[ + -272.37109375, + 139.36331176757812, + -30.95703125 + ] + }, + { + "mesh":4717, + "name":"HDM_02_05_brake_disc_and_bolts19", + "translation":[ + -272.37109375, + -157.68637084960938, + -30.95703125 + ] + }, + { + "mesh":4718, + "name":"HDM_02_05_rim16", + "translation":[ + 242.96875, + 119.80636596679688, + -31.009765625 + ] + }, + { + "mesh":4719, + "name":"HDM_02_05_rim17", + "translation":[ + 242.96875, + -164.57882690429688, + -31.01171875 + ] + }, + { + "mesh":4720, + "name":"HDM_02_05_rim18", + "translation":[ + -272.390625, + 119.80667114257812, + -31.009765625 + ] + }, + { + "mesh":4721, + "name":"HDM_02_05_rim19", + "translation":[ + -272.390625, + -164.57809448242188, + -31.01171875 + ] + }, + { + "mesh":4722, + "name":"HDM_02_05_rim_cap16", + "translation":[ + 242.9765625, + 156.95669555664062, + -31.919921875 + ] + }, + { + "mesh":4723, + "name":"HDM_02_05_rim_cap17", + "translation":[ + 242.9765625, + -159.76416015625, + -31.919921875 + ] + }, + { + "mesh":4724, + "name":"HDM_02_05_rim_cap18", + "translation":[ + -272.37890625, + 156.95816040039062, + -31.919921875 + ] + }, + { + "mesh":4725, + "name":"HDM_02_05_rim_cap19", + "translation":[ + -272.37890625, + -159.76315307617188, + -31.919921875 + ] + }, + { + "mesh":4726, + "name":"HDM_02_05_tire_17", + "translation":[ + 243.015625, + 118.82498168945312, + -30.919921875 + ] + }, + { + "mesh":4727, + "name":"HDM_02_05_tire_18", + "translation":[ + 243.015625, + -165.60604858398438, + -30.919921875 + ] + }, + { + "mesh":4728, + "name":"HDM_02_05_tire_19", + "translation":[ + -272.33984375, + 118.82601928710938, + -30.919921875 + ] + }, + { + "mesh":4729, + "name":"HDM_02_05_tire_20", + "translation":[ + -272.33984375, + -165.60531616210938, + -30.919921875 + ] + }, + { + "children":[ + 5162, + 5163, + 5164, + 5165, + 5166, + 5167, + 5168, + 5169, + 5170, + 5171, + 5172, + 5173, + 5174, + 5175, + 5176, + 5177, + 5178, + 5179, + 5180, + 5181, + 5182, + 5183, + 5184, + 5185 + ], + "mesh":4730, + "name":"aodiA", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 13.921428680419922, + 0.18475377559661865, + 6.898584365844727 + ] + }, + { + "mesh":4731, + "name":"Object1823", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.114288330078125, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":4732, + "name":"pasted__pasted__pCube377.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.897438049316406, + 2.6223349571228027, + -3.2073099613189697 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube499", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":4733, + "name":"Circle3162", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.110639572143555, + 1.7111369371414185, + 3.6717348098754883 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors148", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":4734, + "name":"Circle2233", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0767922401428223, + -1.4088807106018066 + ] + }, + { + "mesh":4735, + "name":"Rectangle920", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.381135940551758, + 1.039061188697815, + -2.2228355407714844 + ] + }, + { + "mesh":4736, + "name":"pasted__pasted__pCylinder392", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.426061630249023, + 4.270847797393799, + -5.681457996368408 + ] + }, + { + "mesh":4737, + "name":"Circle2586", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.840549111366272, + 1.3142958879470825 + ] + }, + { + "mesh":4738, + "name":"pasted__pasted__pCylinder631", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.325416564941406, + 4.2707743644714355, + 3.95070743560791 + ] + }, + { + "mesh":4739, + "name":"Circle2939", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6943036317825317, + 4.27585506439209 + ] + }, + { + "mesh":4740, + "name":"Circle2459", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.970985412597656, + 2.0202722549438477, + -3.015995740890503 + ] + }, + { + "mesh":4741, + "name":"Sphere029", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.19780158996582, + 1.3344708681106567, + -5.875645160675049 + ] + }, + { + "mesh":4742, + "name":"Circle1787", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.962213516235352, + 2.030285358428955, + -4.647137641906738 + ] + }, + { + "mesh":4743, + "name":"Circle3302", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.439908981323242, + 0.11240279674530029, + -5.688488960266113 + ] + }, + { + "mesh":4744, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube358", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + 6.252455711364746 + ] + }, + { + "mesh":4745, + "name":"Circle3056", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.4346307516098022, + 3.017669916152954 + ] + }, + { + "mesh":4746, + "name":"Object2261", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.451269149780273, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4747, + "name":"pasted__pasted__pCube591", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.488710403442383, + 3.3453516960144043, + 6.41938591003418 + ] + }, + { + "mesh":4748, + "name":"Circle3209", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08858871459961, + 1.6758931875228882, + 3.081195831298828 + ] + }, + { + "mesh":4749, + "name":"pasted__pasted__pPipe9", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.799819946289062, + 2.774721622467041, + -3.1857757568359375 + ] + }, + { + "mesh":4750, + "name":"pasted__pasted__pasted__pCube550", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.098844528198242, + 0.25255048274993896, + 14.160536766052246 + ] + }, + { + "mesh":4751, + "name":"Circle2352", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8625746965408325, + -2.919081211090088 + ] + }, + { + "mesh":4752, + "name":"pasted__pasted__pasted__pPlane324", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.146211624145508, + 0.3886607885360718, + 12.952310562133789 + ] + }, + { + "mesh":4753, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder208", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.41086769104004, + 0.6288565397262573, + 13.753793716430664 + ] + }, + { + "mesh":4754, + "name":"Obj3d66-647191-31-960", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.452716827392578, + 1.6571954488754272, + 12.11780834197998 + ] + }, + { + "mesh":4755, + "name":"Circle2749", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.2966750860214233, + 0.2668072581291199 + ] + }, + { + "mesh":4756, + "name":"Rectangle198", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.706268310546875, + 0.5975691080093384, + -12.893644332885742 + ] + }, + { + "mesh":4757, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube057", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137235641479492, + 0.6166740655899048, + -3.1869051456451416 + ] + }, + { + "mesh":4758, + "name":"Circle1998", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 2.1214122772216797, + -5.459476947784424 + ] + }, + { + "mesh":4759, + "name":"Object1905", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.070188522338867, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4760, + "name":"pasted__pasted__pasted__pCube154", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.678359031677246, + 0.25255119800567627, + 12.952010154724121 + ] + }, + { + "mesh":4761, + "name":"Object2230", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.494863510131836, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4762, + "name":"Circle2051", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.7955504655838013, + -6.109615325927734 + ] + }, + { + "mesh":4763, + "name":"pasted__pasted__pCylinder523", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.944412231445312, + 2.3035941123962402, + 0.08851037919521332 + ] + }, + { + "mesh":4764, + "name":"Circle036", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.6377744674682617, + 2.8380203247070312, + 17.315980911254883 + ] + }, + { + "mesh":4765, + "name":"Object2414", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.87397575378418, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":4766, + "name":"polySurface358", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.33547592163086, + 1.4434689283370972, + 14.938663482666016 + ] + }, + { + "mesh":4767, + "name":"Rectangle188", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.120513916015625, + 0.6844395399093628, + -13.036763191223145 + ] + }, + { + "mesh":4768, + "name":"Object2453", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.863252639770508, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4769, + "name":"Rectangle1389", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 8.100261688232422 + ] + }, + { + "mesh":4770, + "name":"pasted__pasted__pCube752", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.35550880432129, + 5.064015865325928, + 4.43235445022583 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door103", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -1.1389737129211426 + ] + }, + { + "mesh":4771, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder411", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.408638000488281, + 1.1022669076919556, + -0.0648222491145134 + ] + }, + { + "mesh":4772, + "name":"pasted__pasted__pCylinder493", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.879209518432617, + 2.096925735473633, + 0.7356268763542175 + ] + }, + { + "mesh":4773, + "name":"Rectangle803", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.7701778411865234, + 0.14451849460601807, + -8.292496681213379 + ] + }, + { + "mesh":4774, + "name":"pasted__pasted__pCube693", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.386873245239258, + 2.7758541107177734, + -0.7391694188117981 + ] + }, + { + "mesh":4775, + "name":"Rectangle1219", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384535074234009, + -9.186036109924316 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors158", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":4776, + "name":"pasted__pasted__pCylinder561", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2247467041015625, + 1.5741528272628784, + 0.07623926550149918 + ] + }, + { + "mesh":4777, + "name":"Circle2054", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.7618011236190796, + -6.090601444244385 + ] + }, + { + "mesh":4778, + "name":"Rectangle1334", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.73845374584198, + -2.5534050464630127 + ] + }, + { + "mesh":4779, + "name":"Circle1602", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.184793472290039, + -5.460317134857178 + ] + }, + { + "mesh":4780, + "name":"pasted__pasted__pCylinder19", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.98321533203125, + 2.4266486167907715, + -4.8877363204956055 + ] + }, + { + "mesh":4781, + "name":"pasted__pasted__pCube456", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6876392364501953, + 1.027711272239685, + 15.821052551269531 + ] + }, + { + "mesh":4782, + "name":"Rectangle1423", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.048496246337891, + 0.04489290714263916, + 8.107816696166992 + ] + }, + { + "mesh":4783, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube010", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.663568496704102, + 0.6166733503341675, + -13.629816055297852 + ] + }, + { + "mesh":4784, + "name":"pasted__pasted__pCube603", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.938676834106445, + 3.3573498725891113, + 6.515372276306152 + ] + }, + { + "mesh":4785, + "name":"Obj3d66-647191-12-223", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.453460693359375, + 1.6637946367263794, + 12.174750328063965 + ] + }, + { + "mesh":4786, + "name":"pasted__pasted__pasted__pasted__pCylinder884", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785398483276367, + 0.28987395763397217, + 15.701667785644531 + ] + }, + { + "mesh":4787, + "name":"Rectangle1145", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0811824798584, + 0.0907975435256958, + 13.722539901733398 + ] + }, + { + "mesh":4788, + "name":"Rectangle544", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.8989181518554688, + 1.3837958574295044, + 1.0658206939697266 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group130", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -0.5263744592666626 + ] + }, + { + "mesh":4789, + "name":"Circle2682", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.956621527671814, + 0.6277795433998108 + ] + }, + { + "mesh":4790, + "name":"Obj3d66-647191-12-219", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.97991180419922, + 1.6637946367263794, + -15.603754043579102 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube203", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -0.00834827870130539 + ] + }, + { + "mesh":4791, + "name":"Rectangle1439", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + 5.156586647033691 + ] + }, + { + "mesh":4792, + "name":"Circle1472", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6487559080123901, + -6.030478477478027 + ] + }, + { + "mesh":4793, + "name":"Rectangle1354", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.023313522338867, + 0.14451849460601807, + 5.296329975128174 + ] + }, + { + "mesh":4794, + "name":"Circle2324", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.2574313879013062, + -2.228497266769409 + ] + }, + { + "mesh":4795, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube635", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 1.2274454832077026, + 3.195838451385498 + ] + }, + { + "mesh":4796, + "name":"pasted__pasted__pPipe122", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.243392944335938, + 1.2939432859420776, + 3.1448471546173096 + ] + }, + { + "mesh":4797, + "name":"Object2426", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.79206657409668, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":4798, + "name":"Object2630", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.853408813476562, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4799, + "name":"pasted__pasted__pPipe067", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.46347427368164, + 1.845382809638977, + 0.2781330347061157 + ] + }, + { + "mesh":4800, + "name":"pasted__pasted__pasted__pCube652", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 1.0594733953475952, + 5.867096900939941 + ] + }, + { + "mesh":4801, + "name":"pasted__pasted__pPipe25", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.871406555175781, + 1.845382809638977, + -5.402164459228516 + ] + }, + { + "mesh":4802, + "name":"Circle2846", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.095937728881836, + 1.6543697118759155, + 0.049550555646419525 + ] + }, + { + "mesh":4803, + "name":"Circle2341", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7050236463546753, + -2.8303475379943848 + ] + }, + { + "mesh":4804, + "name":"pasted__pasted__pasted__pasted__pasted__pCube472", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.855776786804199, + 0.6876319646835327, + 12.749217987060547 + ] + }, + { + "mesh":4805, + "name":"Object2499", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.798559188842773, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4806, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder107", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + 4.780055046081543 + ] + }, + { + "mesh":4807, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface298", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.891103744506836, + 1.3063803911209106, + -13.15860652923584 + ] + }, + { + "mesh":4808, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube388", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + 0.47222283482551575 + ] + }, + { + "mesh":4809, + "name":"pasted__pasted__pCube530", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.46766471862793, + 3.3086066246032715, + -7.507594585418701 + ] + }, + { + "mesh":4810, + "name":"pasted__pasted__pCube740", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.354814529418945, + 5.073940753936768, + -0.2175528109073639 + ] + }, + { + "mesh":4811, + "name":"Circle3186", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.015085220336914, + 1.8911300897598267, + 2.9580960273742676 + ] + }, + { + "mesh":4812, + "name":"Obj3d66-647191-12-225", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.748655319213867, + 1.6637946367263794, + -9.328778266906738 + ] + }, + { + "mesh":4813, + "name":"Circle2300", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1721177101135254, + -2.22849702835083 + ] + }, + { + "mesh":4814, + "name":"Rectangle1129", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.310401916503906, + 0.6124783754348755, + 12.646245956420898 + ] + }, + { + "mesh":4815, + "name":"Circle2156", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.893800735473633, + 1.8454610109329224, + -6.156998157501221 + ] + }, + { + "mesh":4816, + "name":"pasted__pasted__pasted__pCylinder744", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9271001815795898, + 0.8645821809768677, + -0.9627425074577332 + ] + }, + { + "mesh":4817, + "name":"pasted__pasted__pasted__pCylinder195", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749452590942383, + 0.5030604600906372, + 15.344712257385254 + ] + }, + { + "mesh":4818, + "name":"Rectangle404", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.123493194580078, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":4819, + "name":"Object2468", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.842159271240234, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4820, + "name":"pasted__pasted__pasted__pCylinder675", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.440046310424805, + 1.2660447359085083, + 12.947877883911133 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface751", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 5.416483402252197 + ] + }, + { + "mesh":4821, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube48", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.378658294677734, + 1.429686188697815, + -5.606234550476074 + ] + }, + { + "mesh":4822, + "name":"pasted__pasted__pCube376.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.044599533081055, + 2.603695869445801, + -7.833010196685791 + ] + }, + { + "mesh":4823, + "name":"pasted__pasted__pasted__pPlane315", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.7200984954834, + 0.38407909870147705, + 16.587963104248047 + ] + }, + { + "mesh":4824, + "name":"Circle2360", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7612920999526978, + -2.8620383739471436 + ] + }, + { + "mesh":4825, + "name":"pasted__pasted__pCylinder736", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.900421142578125, + 5.058504581451416, + 5.464240550994873 + ] + }, + { + "mesh":4826, + "name":"Circle2242", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9755452871322632, + -1.46592378616333 + ] + }, + { + "mesh":4827, + "name":"Object2359", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.432985305786133, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4828, + "name":"Object2256", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.458301544189453, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4829, + "name":"pasted__pasted__pCylinder641", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.39253044128418, + 4.65749979019165, + 4.842086315155029 + ] + }, + { + "mesh":4830, + "name":"Circle2968", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0205440521240234, + 4.459660530090332 + ] + }, + { + "mesh":4831, + "name":"Object2582", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801374435424805, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4832, + "name":"Circle1868", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.83357810974121, + 1.6866554021835327, + -4.851758003234863 + ] + }, + { + "mesh":4833, + "name":"Object1819", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.14158821105957, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube671", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":4834, + "name":"pasted__pasted__pCylinder597", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.0909481048584, + 4.842443466186523, + 0.010608889162540436 + ] + }, + { + "mesh":4835, + "name":"Rectangle761", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.023313522338867, + 0.14451849460601807, + -4.066504955291748 + ] + }, + { + "mesh":4836, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube327", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.88755989074707, + 1.3735638856887817, + 5.076041221618652 + ] + }, + { + "mesh":4837, + "name":"Circle1859", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.866655349731445, + 1.783511996269226, + -4.796363353729248 + ] + }, + { + "mesh":4838, + "name":"Rectangle1116", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.557981491088867, + 0.14451825618743896, + 16.87247085571289 + ] + }, + { + "mesh":4839, + "name":"pasted__pasted__pasted__pasted__pCylinder824", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231466293334961, + 0.28987395763397217, + 15.9976167678833 + ] + }, + { + "mesh":4840, + "name":"Circle2168", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.84969711303711, + 1.7149966955184937, + -6.083137035369873 + ] + }, + { + "mesh":4841, + "name":"Rectangle1161", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.522390365600586, + 0.14451777935028076, + 12.883796691894531 + ] + }, + { + "mesh":4842, + "name":"pasted__pasted__pCylinder620", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.289690017700195, + 4.853360652923584, + 3.136993646621704 + ] + }, + { + "mesh":4843, + "name":"Circle2866", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.228336334228516, + 1.3009413480758667, + 0.26188427209854126 + ] + }, + { + "mesh":4844, + "name":"pasted__pasted__pCube670", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + 0.8952134847640991 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube328", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -7.182558059692383 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube375", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.2695987224578857 + ] + }, + { + "mesh":4845, + "name":"Object1932", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.151752471923828, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4846, + "name":"pasted__pasted__pasted__pCube704", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 1.2411547899246216, + 16.228010177612305 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__polySurface060", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":4847, + "name":"pasted__pasted__pasted__pasted__pasted__extrudedSurface045", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.545488357543945, + 1.4086898565292358, + 14.2822904586792 + ] + }, + { + "mesh":4848, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder073", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 1.3803664445877075, + 0.08646717667579651 + ] + }, + { + "mesh":4849, + "name":"Circle2559", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.23468589782715, + 1.236960768699646, + -1.8622115850448608 + ] + }, + { + "mesh":4850, + "name":"Circle1958", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.817222595214844, + 1.118975043296814, + -5.459476947784424 + ] + }, + { + "mesh":4851, + "name":"Circle1618", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9819740056991577, + -5.460317134857178 + ] + }, + { + "mesh":4852, + "name":"pasted__pasted__pPipe075", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.25892448425293, + 1.0760306119918823, + 2.4927613735198975 + ] + }, + { + "mesh":4853, + "name":"Circle2407", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.01875877380371, + 2.0183701515197754, + -2.22849702835083 + ] + }, + { + "mesh":4854, + "name":"Circle2266", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10127067565918, + 1.118975043296814, + -2.5367355346679688 + ] + }, + { + "mesh":4855, + "name":"pasted__pasted__pCylinder391", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.495954513549805, + 4.657499313354492, + -4.347738265991211 + ] + }, + { + "mesh":4856, + "name":"Circle3215", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.110639572143555, + 1.611322283744812, + 3.1181259155273438 + ] + }, + { + "mesh":4857, + "name":"Rectangle1357", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7360172271728516, + 0.510698676109314, + 7.767119407653809 + ] + }, + { + "mesh":4858, + "name":"Circle2458", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.963634490966797, + 2.0417957305908203, + -3.028305768966675 + ] + }, + { + "mesh":4859, + "name":"Circle1714", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.05963897705078, + 1.4321244955062866, + -6.0993170738220215 + ] + }, + { + "mesh":4860, + "name":"Circle1786", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.965890884399414, + 2.019413471221924, + -4.653292179107666 + ] + }, + { + "mesh":4861, + "name":"Obj3d66-647191-36-148", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.981449127197266, + 1.6647711992263794, + -15.603741645812988 + ] + }, + { + "mesh":4862, + "name":"Circle3294", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.5336856842041, + 0.11240279674530029, + -5.688488960266113 + ] + }, + { + "mesh":4863, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder123", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692001342773438, + 0.3832782506942749, + 6.249678134918213 + ] + }, + { + "mesh":4864, + "name":"Object2260", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.452676773071289, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4865, + "name":"pasted__pasted__pCube590", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.022483825683594, + 3.3453516960144043, + 6.41938591003418 + ] + }, + { + "mesh":4866, + "name":"Obj3d66-647191-30-136", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8924436569213867, + 1.3078466653823853, + -8.590909957885742 + ] + }, + { + "mesh":4867, + "name":"pasted__pasted__pasted__pCylinder652", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.994119644165039, + 0.5030611753463745, + 16.585969924926758 + ] + }, + { + "mesh":4868, + "name":"Circle1969", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8298596143722534, + -5.459476947784424 + ] + }, + { + "mesh":4869, + "name":"Rectangle1435", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.73845374584198, + 3.9784979820251465 + ] + }, + { + "mesh":4870, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder207", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.41086769104004, + 0.6288567781448364, + 14.163941383361816 + ] + }, + { + "mesh":4871, + "name":"Obj3d66-647191-30-133", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.452716827392578, + 1.6615828275680542, + 12.179844856262207 + ] + }, + { + "mesh":4872, + "name":"Circle2748", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.237268090248108, + 0.2777787148952484 + ] + }, + { + "mesh":4873, + "name":"Circle1667", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.98200798034668, + 2.141263961791992, + -5.460317134857178 + ] + }, + { + "mesh":4874, + "name":"Circle2180", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.80476188659668, + 1.5820552110671997, + -6.007875442504883 + ] + }, + { + "mesh":4875, + "name":"Circle1997", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 2.1340889930725098, + -5.459476947784424 + ] + }, + { + "mesh":4876, + "name":"Object1904", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.07159423828125, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4877, + "name":"Object2229", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.496271133422852, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4878, + "name":"Circle2050", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8068002462387085, + -6.1159539222717285 + ] + }, + { + "mesh":4879, + "name":"pasted__pasted__pCylinder522", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.935365676879883, + 2.275829315185547, + 0.08851037919521332 + ] + }, + { + "mesh":4880, + "name":"pasted__pasted__pasted__pasted__pCylinder491", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.069196701049805, + 0.6754261255264282, + 15.701667785644531 + ] + }, + { + "mesh":4881, + "name":"Object2413", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.880796432495117, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":4882, + "name":"Rectangle1095", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.464313507080078, + 0.17812669277191162, + 13.961438179016113 + ] + }, + { + "mesh":4883, + "name":"pasted__pasted__pasted__polySurface560", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.411169052124023, + 0.6836510896682739, + 15.729188919067383 + ] + }, + { + "mesh":4884, + "name":"pasted__pasted__pCube751", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.354816436767578, + 5.073940753936768, + 4.733437538146973 + ] + }, + { + "mesh":4885, + "name":"Circle2517", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.962213516235352, + 2.030285358428955, + -1.4153164625167847 + ] + }, + { + "mesh":4886, + "name":"Object2637", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.843563079833984, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface697", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -1.1389737129211426 + ] + }, + { + "mesh":4887, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder410", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.401199340820312, + 1.0991302728652954, + 0.37673240900039673 + ] + }, + { + "mesh":4888, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder133", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.35464859008789, + 1.4823185205459595, + 5.434568881988525 + ] + }, + { + "mesh":4889, + "name":"pasted__pasted__pCylinder492", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.870540618896484, + 2.069448947906494, + 0.7308797240257263 + ] + }, + { + "mesh":4890, + "name":"Text008", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.046588897705078, + 1.55398428440094, + -8.949456214904785 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube546", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":4891, + "name":"pasted__pCylinder1", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.611555099487305, + 0.44795191287994385, + -4.573619365692139 + ] + }, + { + "mesh":4892, + "name":"Object2383", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.399234771728516, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4893, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube416", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + 2.8833260536193848 + ] + }, + { + "mesh":4894, + "name":"Rectangle317.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.8989181518554688, + 1.5185621976852417, + 1.0658206939697266 + ] + }, + { + "mesh":4895, + "name":"Rectangle881", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.741353988647461, + 0.279168963432312, + -5.439942836761475 + ] + }, + { + "mesh":4896, + "name":"Rectangle802", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.8127765655517578, + 0.14451849460601807, + -8.292496681213379 + ] + }, + { + "mesh":4897, + "name":"Rectangle599", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.212726593017578, + 0.14451777935028076, + 16.01140785217285 + ] + }, + { + "mesh":4898, + "name":"pasted__pasted__pasted__pCylinder734", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9305353164672852, + 0.7768591642379761, + -1.1782701015472412 + ] + }, + { + "mesh":4899, + "name":"pasted__pasted__pCube457", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6876392364501953, + 1.027711272239685, + 15.931004524230957 + ] + }, + { + "mesh":4900, + "name":"Rectangle1422", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.048496246337891, + 0.04489290714263916, + 7.638876438140869 + ] + }, + { + "mesh":4901, + "name":"Circle2263", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.934459686279297, + 1.118975043296814, + -1.917352557182312 + ] + }, + { + "mesh":4902, + "name":"pasted__pasted__pCube602", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.789796829223633, + 3.367274761199951, + 6.516063690185547 + ] + }, + { + "mesh":4903, + "name":"Obj3d66-647191-11-097", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.428956985473633, + 1.6471415758132935, + 12.178314208984375 + ] + }, + { + "mesh":4904, + "name":"pasted__pasted__pasted__pasted__pCylinder883", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.863826751708984, + 0.28987395763397217, + 15.849641799926758 + ] + }, + { + "mesh":4905, + "name":"pasted__pasted__pasted__pPlane335", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.718538284301758, + 0.38866126537323, + 16.590402603149414 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube600", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":4906, + "name":"Obj3d66-647191-4-138", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.574676513671875, + 1.6804250478744507, + -9.301545143127441 + ] + }, + { + "mesh":4907, + "name":"Circle2681", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9692977666854858, + 0.6277795433998108 + ] + }, + { + "mesh":4908, + "name":"Obj3d66-647191-11-093", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.004411697387695, + 1.6471415758132935, + -15.607316970825195 + ] + }, + { + "mesh":4909, + "name":"Circle2598", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0767922401428223, + 1.4473960399627686 + ] + }, + { + "mesh":4910, + "name":"Circle2475", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.073888778686523, + 1.7189406156539917, + -2.843655824661255 + ] + }, + { + "mesh":4911, + "name":"Rectangle1353", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.251155853271484, + 0.14451849460601807, + 5.296329975128174 + ] + }, + { + "mesh":4912, + "name":"Circle2323", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3985601663589478, + -2.324821949005127 + ] + }, + { + "mesh":4913, + "name":"Rectangle360", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.63825035095215, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":4914, + "name":"pasted__pasted__pasted__pPlane291", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -13.207195281982422, + 0.3886607885360718, + 12.952310562133789 + ] + }, + { + "mesh":4915, + "name":"Object2425", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.79889488220215, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":4916, + "name":"Circle3243", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.987939834594727, + 1.9541813135147095, + 4.441830158233643 + ] + }, + { + "mesh":4917, + "name":"Object1845", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.154567718505859, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4918, + "name":"Circle2845", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.092260360717773, + 1.6651314496994019, + 0.04339556396007538 + ] + }, + { + "mesh":4919, + "name":"pasted__pasted__pasted__pasted__pasted__pCylinder024", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8560895919799805, + 0.6772705316543579, + 12.73698902130127 + ] + }, + { + "mesh":4920, + "name":"Circle2155", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.897470474243164, + 1.8563328981399536, + -6.16315221786499 + ] + }, + { + "mesh":4921, + "name":"Circle3012", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7411259412765503, + 3.6717348098754883 + ] + }, + { + "mesh":4922, + "name":"pasted__pasted__pCylinder14.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.946239471435547, + 2.2889509201049805, + -6.27135705947876 + ] + }, + { + "mesh":4923, + "name":"Circle2107", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.87909698486328, + 1.9443548917770386, + -5.459476947784424 + ] + }, + { + "mesh":4924, + "name":"Circle2415", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.048160552978516, + 1.9200557470321655, + -2.22849702835083 + ] + }, + { + "mesh":4925, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube332", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + 4.7772674560546875 + ] + }, + { + "mesh":4926, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface297", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.891103744506836, + 1.1282118558883667, + -13.15860652923584 + ] + }, + { + "mesh":4927, + "name":"pasted__pasted__pPipe048", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.465848922729492, + -0.41272246837615967, + -7.770148277282715 + ] + }, + { + "mesh":4928, + "name":"Obj3d66-647191-11-099", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.724153518676758, + 1.6471415758132935, + -9.332342147827148 + ] + }, + { + "mesh":4929, + "name":"Circle2299", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.184793472290039, + -2.22849702835083 + ] + }, + { + "mesh":4930, + "name":"pasted__pasted__pasted__pCube643", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9309473037719727, + 0.7724684476852417, + -0.8847628235816956 + ] + }, + { + "mesh":4931, + "name":"pasted__pasted__pasted__pCylinder194", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749454498291016, + 0.9016937017440796, + 15.344712257385254 + ] + }, + { + "mesh":4932, + "name":"Circle2117", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.842348098754883, + 1.8214384317398071, + -5.459476947784424 + ] + }, + { + "mesh":4933, + "name":"Object2142", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.499082565307617, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4934, + "name":"pasted__pasted__pCylinder368", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.872268676757812, + 0.07832396030426025, + -5.718376159667969 + ] + }, + { + "mesh":4935, + "name":"Object2467", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.843563079833984, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube553", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":4936, + "name":"Circle2778", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.04081153869629, + 1.9446343183517456, + 0.6277795433998108 + ] + }, + { + "mesh":4937, + "name":"pasted__pasted__pasted__pasted__pCylinder821", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414453506469727, + 1.0796922445297241, + 14.672256469726562 + ] + }, + { + "mesh":4938, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube47", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 0.3764752149581909, + -5.601543426513672 + ] + }, + { + "mesh":4939, + "name":"pasted__pasted__pCube584", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.166912078857422, + 3.574185371398926, + 6.4593119621276855 + ] + }, + { + "mesh":4940, + "name":"Object2664", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80559539794922, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":4941, + "name":"pasted__pasted__pasted__pCube591", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.042356491088867, + 0.25255119800567627, + 16.590106964111328 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface716", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.3501960039138794 + ] + }, + { + "mesh":4942, + "name":"Circle2241", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9867950677871704, + -1.459585428237915 + ] + }, + { + "mesh":4943, + "name":"Circle3203", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0665340423584, + 1.7404643297195435, + 3.0442662239074707 + ] + }, + { + "mesh":4944, + "name":"pasted__pasted__pCube845", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.032896041870117, + 1.027711272239685, + 15.931004524230957 + ] + }, + { + "mesh":4945, + "name":"Object2597", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.7802791595459, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4946, + "name":"pasted__pasted__pCylinder640", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.325416564941406, + 4.2707743644714355, + 4.842086315155029 + ] + }, + { + "mesh":4947, + "name":"Circle2967", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0317940711975098, + 4.465999126434326 + ] + }, + { + "mesh":4948, + "name":"pasted__pasted__pCylinder13.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.937063217163086, + 2.2616233825683594, + -6.266705513000488 + ] + }, + { + "mesh":4949, + "name":"Circle1636", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0651402473449707, + -6.264987468719482 + ] + }, + { + "mesh":4950, + "name":"Object2581", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.802778244018555, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4951, + "name":"Circle1867", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.83725357055664, + 1.697417140007019, + -4.8456034660339355 + ] + }, + { + "mesh":4952, + "name":"Object1818", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.148414611816406, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":4953, + "name":"Circle2402", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.000385284423828, + 2.0798168182373047, + -2.22849702835083 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube670", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":4954, + "name":"Circle3161", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.106962203979492, + 1.7234259843826294, + 3.6717348098754883 + ] + }, + { + "mesh":4955, + "name":"Rectangle590", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.212726593017578, + 0.14451825618743896, + 16.87247085571289 + ] + }, + { + "mesh":4956, + "name":"Circle2764", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.989358901977539, + 2.116685390472412, + 0.6277795433998108 + ] + }, + { + "mesh":4957, + "name":"pasted__pasted__pasted__pPlane334", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.368288040161133, + 0.38866126537323, + 16.590402603149414 + ] + }, + { + "mesh":4958, + "name":"Circle2167", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.85337257385254, + 1.725868582725525, + -6.089293003082275 + ] + }, + { + "mesh":4959, + "name":"pasted__pasted__pCylinder619", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.294721603393555, + 4.235100269317627, + 3.1370046138763428 + ] + }, + { + "mesh":4960, + "name":"Circle2865", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.23468589782715, + 1.2449902296066284, + 0.2725183367729187 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube374", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.2695987224578857 + ] + }, + { + "mesh":4961, + "name":"Object1931", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.153162002563477, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door110", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.2695987224578857 + ] + }, + { + "mesh":4962, + "name":"Rectangle1437", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + 4.567543029785156 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube447", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":4963, + "name":"pasted__pasted__pCylinder5.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.863014221191406, + 2.053720474243164, + -5.591787338256836 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube557", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":4964, + "name":"Circle1678", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.022436141967773, + 2.0060811042785645, + -5.460317134857178 + ] + }, + { + "mesh":4965, + "name":"Circle3226", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3365494012832642, + 3.219132423400879 + ] + }, + { + "mesh":4966, + "name":"pasted__pasted__pasted__pCube724", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 0.9795023202896118, + 14.271536827087402 + ] + }, + { + "mesh":4967, + "name":"Obj3d66-647191-16-706", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747392654418945, + 1.6718100309371948, + -9.328777313232422 + ] + }, + { + "mesh":4968, + "name":"Circle2558", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3208791017532349, + -1.7197513580322266 + ] + }, + { + "mesh":4969, + "name":"pasted__pasted__pPipe074", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.243392944335938, + 1.2939432859420776, + 2.4927613735198975 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group138", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 4.803884506225586 + ] + }, + { + "mesh":4970, + "name":"Circle2265", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10127067565918, + 1.118975043296814, + -2.228497266769409 + ] + }, + { + "mesh":4971, + "name":"pasted__pasted__pCylinder390", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.428834915161133, + 4.2707743644714355, + -4.347738265991211 + ] + }, + { + "mesh":4972, + "name":"Circle2656", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.86788809299469, + 0.6277795433998108 + ] + }, + { + "mesh":4973, + "name":"Circle2457", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.967308044433594, + 2.031033992767334, + -3.022150993347168 + ] + }, + { + "mesh":4974, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube335", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + 4.485073566436768 + ] + }, + { + "mesh":4975, + "name":"Obj3d66-647191-35-116", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.981449127197266, + 1.6647711992263794, + -15.548868179321289 + ] + }, + { + "mesh":4976, + "name":"Circle3301", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.5336856842041, + 1.7243860960006714, + -5.688488960266113 + ] + }, + { + "mesh":4977, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube357", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 0.3764752149581909, + 6.249102592468262 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube539", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":4978, + "name":"Rectangle417", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 14.712238311767578, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":4979, + "name":"Circle002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.596254348754883, + -0.6052366495132446, + 9.123933792114258 + ] + }, + { + "mesh":4980, + "name":"pasted__pasted__pasted__pCube748", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 1.399283766746521, + 16.228010177612305 + ] + }, + { + "mesh":4981, + "name":"Circle2063", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.0317931175231934, + -6.242715835571289 + ] + }, + { + "mesh":4982, + "name":"Circle2483", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.103288650512695, + 1.6328457593917847, + -2.7944161891937256 + ] + }, + { + "mesh":4983, + "name":"Object2259", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.454080581665039, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4984, + "name":"Circle3227", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.418618083000183, + 3.340026617050171 + ] + }, + { + "mesh":4985, + "name":"Rectangle1181", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.681344985961914, + 0.17812669277191162, + 12.19666576385498 + ] + }, + { + "mesh":4986, + "name":"Obj3d66-647191-29-941", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8921566009521484, + 1.3093692064285278, + -8.596003532409668 + ] + }, + { + "mesh":4987, + "name":"pasted__pasted__pasted__pCylinder651", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.994119644165039, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":4988, + "name":"Obj3d66-647191-5-134", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.364804267883301, + 1.726946234703064, + -15.738433837890625 + ] + }, + { + "mesh":4989, + "name":"polySurface111", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.748462677001953, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":4990, + "name":"Obj3d66-647191-29-938", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4524288177490234, + 1.6631056070327759, + 12.174749374389648 + ] + }, + { + "mesh":4991, + "name":"Circle2179", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.80927276611328, + 1.5954045057296753, + -6.015432357788086 + ] + }, + { + "mesh":4992, + "name":"Circle1996", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 2.1467652320861816, + -5.459476947784424 + ] + }, + { + "mesh":4993, + "name":"Object1903", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.072998046875, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":4994, + "name":"Circle1628", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.3328157663345337, + -5.460318088531494 + ] + }, + { + "mesh":4995, + "name":"Object2228", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.4976806640625, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":4996, + "name":"Circle3125", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.974660873413086, + 2.1658430099487305, + 3.6717348098754883 + ] + }, + { + "mesh":4997, + "name":"Obj3d66-647191-30-132", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567583084106445, + 1.6615828275680542, + 18.32991600036621 + ] + }, + { + "mesh":4998, + "name":"Circle2049", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8180495500564575, + -6.1222920417785645 + ] + }, + { + "mesh":4999, + "name":"Object2412", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.887624740600586, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":5000, + "name":"Rectangle1320", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.100914001464844, + 0.39283287525177, + -3.2191162109375 + ] + }, + { + "mesh":5001, + "name":"Rectangle387.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + -12.577152252197266 + ] + }, + { + "mesh":5002, + "name":"pasted__pasted__pasted__pCube734", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 0.8213735818862915, + 14.92426586151123 + ] + }, + { + "mesh":5003, + "name":"Obj3d66-647191-15-312", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747392654418945, + 1.6626402139663696, + -9.328777313232422 + ] + }, + { + "mesh":5004, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube343", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 1.3735631704330444, + 5.37234354019165 + ] + }, + { + "mesh":5005, + "name":"Object2636", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.844970703125, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube197", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -8.31318187713623 + ] + }, + { + "mesh":5006, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube304", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + 0.9660137891769409 + ] + }, + { + "mesh":5007, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder131", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.35464859008789, + 1.9054702520370483, + 5.4079976081848145 + ] + }, + { + "mesh":5008, + "name":"Circle3073", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7275310754776, + 3.057208299636841 + ] + }, + { + "mesh":5009, + "name":"Circle3237", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.002639770507812, + 1.9106930494308472, + 4.417209625244141 + ] + }, + { + "mesh":5010, + "name":"pasted__pasted__pCylinder491", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.861871719360352, + 2.0419702529907227, + 0.7261325716972351 + ] + }, + { + "mesh":5011, + "name":"Object2382", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.400642395019531, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5012, + "name":"Rectangle782", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9545860290527344, + 0.6844395399093628, + -8.982117652893066 + ] + }, + { + "mesh":5013, + "name":"Circle2836", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.059186935424805, + 1.7619880437850952, + -0.011999331414699554 + ] + }, + { + "mesh":5014, + "name":"Circle1963", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.160554885864258, + 1.3985601663589478, + -5.459476947784424 + ] + }, + { + "mesh":5015, + "name":"pasted__pasted__pCube458", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6876392364501953, + 1.027711272239685, + 15.165143966674805 + ] + }, + { + "mesh":5016, + "name":"pasted__pasted__pCube601", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.488710403442383, + 3.3573498725891113, + 6.515372276306152 + ] + }, + { + "mesh":5017, + "name":"Object2454", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.861846923828125, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5018, + "name":"pasted__pasted__pCube399.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.45823860168457, + 5.073940753936768, + -4.675718784332275 + ] + }, + { + "mesh":5019, + "name":"pasted__pasted__pasted__pPlane287", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.096700668334961, + 0.38407886028289795, + 15.046956062316895 + ] + }, + { + "mesh":5020, + "name":"pasted__pasted__pasted__pasted__pCylinder882", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785097122192383, + 0.28987395763397217, + 15.99779224395752 + ] + }, + { + "mesh":5021, + "name":"Circle2870", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.009992599487305, + 1.8889487981796265, + 1.360945224761963 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube526", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":5022, + "name":"Circle028", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.02294921875, + 11.152395248413086, + -15.681373596191406 + ] + }, + { + "mesh":5023, + "name":"Obj3d66-647191-2-983", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.586889266967773, + 1.6754931211471558, + -9.265257835388184 + ] + }, + { + "mesh":5024, + "name":"Circle2465", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03713607788086, + 1.8265589475631714, + -2.9052062034606934 + ] + }, + { + "mesh":5025, + "name":"pasted__pasted__pasted__pCube398", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.275115966796875, + 0.676963210105896, + -7.540126800537109 + ] + }, + { + "mesh":5026, + "name":"Circle2680", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9819740056991577, + 0.6277795433998108 + ] + }, + { + "mesh":5027, + "name":"pasted__pasted__pCube772", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939355850219727, + 5.073940753936768, + 5.920828342437744 + ] + }, + { + "mesh":5028, + "name":"Rectangle1352", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.251155853271484, + 0.14451849460601807, + 7.9199395179748535 + ] + }, + { + "mesh":5029, + "name":"Circle2187", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.632497787475586, + 1.4004048109054565, + -5.888360500335693 + ] + }, + { + "mesh":5030, + "name":"pasted__pasted__pasted__pPlane290", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.347593307495117, + 0.3886607885360718, + 12.952313423156738 + ] + }, + { + "mesh":5031, + "name":"Object2424", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80571937561035, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":5032, + "name":"pasted__pasted__pasted__pCube651", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9547863006591797, + 1.0161925554275513, + 5.523941516876221 + ] + }, + { + "mesh":5033, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube350", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 1.3735631704330444, + 5.661487102508545 + ] + }, + { + "mesh":5034, + "name":"Rectangle182", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.311929702758789, + 0.1627582311630249, + -12.833106994628906 + ] + }, + { + "mesh":5035, + "name":"Object1844", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.155971527099609, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5036, + "name":"pasted__pasted__pPipe064", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.62812614440918, + 0.8586965799331665, + 6.295769214630127 + ] + }, + { + "mesh":5037, + "name":"pasted__pasted__pasted__pasted__pasted__pCube470", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.855776786804199, + 1.4680649042129517, + 12.749217987060547 + ] + }, + { + "mesh":5038, + "name":"Circle2707", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7162774801254272, + 0.019590862095355988 + ] + }, + { + "mesh":5039, + "name":"pasted__pasted__pasted__polySurface543", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9275493621826172, + 1.1616283655166626, + 5.675825595855713 + ] + }, + { + "mesh":5040, + "name":"Sphere049", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8063907623291, + 1.3316925764083862, + 4.094761848449707 + ] + }, + { + "mesh":5041, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube114", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8436756134033203, + 1.0292874574661255, + -13.141197204589844 + ] + }, + { + "mesh":5042, + "name":"Obj3d66-647191-10-425", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.735536575317383, + 1.6559807062149048, + -9.301251411437988 + ] + }, + { + "mesh":5043, + "name":"Circle2298", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.197470188140869, + -2.22849702835083 + ] + }, + { + "mesh":5044, + "name":"pasted__pasted__pasted__pCylinder743", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9271001815795898, + 0.7768591642379761, + -0.9627423882484436 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface573", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":5045, + "name":"Circle1733", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.029787063598633, + 1.8480826616287231, + -6.149336814880371 + ] + }, + { + "mesh":5046, + "name":"Rectangle402", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.877740859985352, + 0.14451754093170166, + -16.603002548217773 + ] + }, + { + "mesh":5047, + "name":"Object2141", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.50048828125, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5048, + "name":"Circle2759", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.970985412597656, + 2.1781320571899414, + 0.6277795433998108 + ] + }, + { + "mesh":5049, + "name":"Object2466", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.844970703125, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5050, + "name":"Object2158", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.476581573486328, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5051, + "name":"pasted__pasted__pasted__pCylinder703", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.230194091796875, + 0.5030606985092163, + 16.585969924926758 + ] + }, + { + "mesh":5052, + "name":"Circle2240", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9980443716049194, + -1.4532471895217896 + ] + }, + { + "mesh":5053, + "name":"Object2357", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.435800552368164, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5054, + "name":"pasted__pasted__pasted__pasted__pPipe024", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.982082366943359, + 0.8169807195663452, + 14.828760147094727 + ] + }, + { + "mesh":5055, + "name":"pasted__pasted__pCylinder23.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.025808334350586, + 2.5534653663635254, + -5.591787338256836 + ] + }, + { + "mesh":5056, + "name":"Circle2966", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0430431365966797, + 4.472336769104004 + ] + }, + { + "mesh":5057, + "name":"Rectangle568", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9651451110839844, + 0.35186755657196045, + 12.348284721374512 + ] + }, + { + "mesh":5058, + "name":"pasted__pasted__pasted__pCylinder148", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.723842620849609, + 0.9016937017440796, + 12.947877883911133 + ] + }, + { + "mesh":5059, + "name":"Circle1635", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0763936042785645, + -6.271325588226318 + ] + }, + { + "mesh":5060, + "name":"pasted__pasted__pCylinder544", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.927888870239258, + 2.234297275543213, + -0.581754744052887 + ] + }, + { + "mesh":5061, + "name":"Object2580", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.804183959960938, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5062, + "name":"pasted__pasted__pasted__pCylinder634", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.911001205444336, + 0.5030606985092163, + 16.585969924926758 + ] + }, + { + "mesh":5063, + "name":"polySurface314", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.110702514648438, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":5064, + "name":"Circle1866", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.84092903137207, + 1.7081791162490845, + -4.83944845199585 + ] + }, + { + "mesh":5065, + "name":"Circle1954", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.984031677246094, + 1.118975043296814, + -5.459476947784424 + ] + }, + { + "mesh":5066, + "name":"Circle2436", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.128690719604492, + 1.6507774591445923, + -2.22849702835083 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube538", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":5067, + "name":"Rectangle589", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.212726593017578, + 0.14451825618743896, + 16.87247085571289 + ] + }, + { + "mesh":5068, + "name":"Circle2166", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.857046127319336, + 1.7367407083511353, + -6.095448017120361 + ] + }, + { + "mesh":5069, + "name":"extrudedSurface034", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.813631057739258, + 4.2204132080078125, + 3.1217048168182373 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube167", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":5070, + "name":"Circle3254", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.035717010498047, + 1.8128453493118286, + 4.361814975738525 + ] + }, + { + "mesh":5071, + "name":"Object1930", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.154567718505859, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5072, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube360", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + -7.9273762702941895 + ] + }, + { + "mesh":5073, + "name":"Circle2637", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84649085998535, + 1.3985601663589478, + 0.6277793645858765 + ] + }, + { + "mesh":5074, + "name":"Rectangle1176", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.681344985961914, + 0.43873751163482666, + 12.4276762008667 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube556", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":5075, + "name":"pasted__pasted__pasted__pCylinder204", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749452590942383, + 0.5030604600906372, + 15.404440879821777 + ] + }, + { + "mesh":5076, + "name":"Object1820", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.134760856628418, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":5077, + "name":"pasted__pasted__pasted__pCube589", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.394559860229492, + 0.25255119800567627, + 12.952010154724121 + ] + }, + { + "mesh":5078, + "name":"pasted__pasted__pPipe11", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.144113540649414, + 2.7832746505737305, + -3.1875362396240234 + ] + }, + { + "mesh":5079, + "name":"Object2478", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.828092575073242, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5080, + "name":"Rectangle919", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.70414924621582, + 1.039061188697815, + -2.2228355407714844 + ] + }, + { + "mesh":5081, + "name":"Circle2655", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8552120923995972, + 0.6277795433998108 + ] + }, + { + "mesh":5082, + "name":"Circle2456", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.015085220336914, + 1.8911300897598267, + -2.942135810852051 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface588", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":5083, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder109", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + 4.487849712371826 + ] + }, + { + "mesh":5084, + "name":"Obj3d66-647191-34-809", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.972070693969727, + 1.6606823205947876, + -15.576766014099121 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube371", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.656999945640564 + ] + }, + { + "mesh":5085, + "name":"Circle1945", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.1140856742858887, + -4.609719753265381 + ] + }, + { + "mesh":5086, + "name":"Circle2427", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.092260360717773, + 1.7725833654403687, + -2.22849702835083 + ] + }, + { + "mesh":5087, + "name":"Circle3300", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.5336856842041, + 1.6954702138900757, + -5.688488960266113 + ] + }, + { + "mesh":5088, + "name":"Object2408", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.033781886100769, + 16.99413299560547 + ] + }, + { + "mesh":5089, + "name":"Object2179", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.447052001953125, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5090, + "name":"Object2258", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.455486297607422, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5091, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface228", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.530279159545898, + 1.515206217765808, + -5.407131195068359 + ] + }, + { + "mesh":5092, + "name":"pasted__pasted__pTorus026", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.928977966308594, + 3.341920852661133, + 6.363027095794678 + ] + }, + { + "mesh":5093, + "name":"Obj3d66-647191-37-408", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.56678581237793, + 1.6739360094070435, + -15.603736877441406 + ] + }, + { + "mesh":5094, + "name":"polySurface110", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.765448570251465, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":5095, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface532", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6909570693969727, + 0.6428669691085815, + 13.957598686218262 + ] + }, + { + "mesh":5096, + "name":"Obj3d66-647191-28-063", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.452716827392578, + 1.6571954488754272, + 12.176901817321777 + ] + }, + { + "mesh":5097, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pasted__pasted__pasted__polySurface555", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.068794250488281, + 0.683716893196106, + -0.3743825852870941 + ] + }, + { + "mesh":5098, + "name":"pasted__pasted__pCube695", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.44964027404785, + 1.1083353757858276, + -0.7587136626243591 + ] + }, + { + "mesh":5099, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder100", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9697799682617188, + 1.507264256477356, + 12.767040252685547 + ] + }, + { + "mesh":5100, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube250", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + -5.3018879890441895 + ] + }, + { + "mesh":5101, + "name":"Line2458", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.177154541015625, + 4.526471138000488, + 5.820298194885254 + ] + }, + { + "mesh":5102, + "name":"pasted__pasted__pCylinder3", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.844537734985352, + 1.9870175123214722, + -4.963648319244385 + ] + }, + { + "mesh":5103, + "name":"Circle2808", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15263557434082, + 1.5625349283218384, + 0.6277793645858765 + ] + }, + { + "mesh":5104, + "name":"pasted__pasted__pasted__polySurface031", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6949710845947266, + 0.683651328086853, + 16.67884635925293 + ] + }, + { + "mesh":5105, + "name":"Object1902", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.074409484863281, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5106, + "name":"Object2227", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.499082565307617, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5107, + "name":"Object2660", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.811220169067383, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5108, + "name":"Rectangle065", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.859088897705078, + 0.14451849460601807, + -14.047863006591797 + ] + }, + { + "mesh":5109, + "name":"Object2574", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.812623977661133, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5110, + "name":"Circle2048", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8292993307113647, + -6.128630638122559 + ] + }, + { + "mesh":5111, + "name":"Rectangle1276", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6566238403320312, + 0.42382848262786865, + -2.9385335445404053 + ] + }, + { + "mesh":5112, + "name":"pasted__pasted__pasted__pCylinder183", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.296171188354492, + 0.5030606985092163, + 16.585969924926758 + ] + }, + { + "mesh":5113, + "name":"Rectangle386.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + -11.200035095214844 + ] + }, + { + "mesh":5114, + "name":"Object2450", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.86747169494629, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5115, + "name":"Circle3305", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.439908981323242, + 1.0609685182571411, + -5.688488960266113 + ] + }, + { + "mesh":5116, + "name":"Object2635", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84638023376465, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube334", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -6.569958209991455 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface691", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -8.31318187713623 + ] + }, + { + "mesh":5117, + "name":"Circle1741", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.059186935424805, + 1.7619880437850952, + -6.100096225738525 + ] + }, + { + "mesh":5118, + "name":"pasted__pasted__pCylinder571", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.29257583618164, + 4.930069446563721, + -1.1510206460952759 + ] + }, + { + "mesh":5119, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder132", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.35464859008789, + 1.4823185205459595, + 4.672327041625977 + ] + }, + { + "mesh":5120, + "name":"pasted__pasted__pPipe047", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.465848922729492, + -0.6306344270706177, + -7.785680770874023 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube439", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":5121, + "name":"pasted__pasted__pCube473", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.6427936553955078, + 0.14451849460601807, + 17.334238052368164 + ] + }, + { + "mesh":5122, + "name":"pasted__pasted__pCylinder7.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.881101608276367, + 2.1092491149902344, + -5.591787338256836 + ] + }, + { + "mesh":5123, + "name":"Object2381", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.402050018310547, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5124, + "name":"Rectangle781", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6566238403320312, + 0.42382848262786865, + -8.982117652893066 + ] + }, + { + "mesh":5125, + "name":"Object1801", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.0837067365646362, + 16.99413299560547 + ] + }, + { + "mesh":5126, + "name":"pasted__pasted__pCube459", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6876392364501953, + 1.027711272239685, + 15.27509880065918 + ] + }, + { + "mesh":5127, + "name":"pasted__pasted__pCube600", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.022483825683594, + 3.3573498725891113, + 6.515372276306152 + ] + }, + { + "mesh":5128, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube418", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + 3.470163106918335 + ] + }, + { + "mesh":5129, + "name":"pasted__pasted__pCube398.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.458927154541016, + 5.064015865325928, + -4.97680139541626 + ] + }, + { + "mesh":5130, + "name":"Obj3d66-647191-9-478", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.428956985473633, + 1.6471415758132935, + 12.116450309753418 + ] + }, + { + "mesh":5131, + "name":"pasted__pasted__pasted__pasted__pCylinder881", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.6024112701416, + 0.28987395763397217, + 15.9976167678833 + ] + }, + { + "mesh":5132, + "name":"Object2561", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.83090591430664, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5133, + "name":"Object1938", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.143320083618164, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5134, + "name":"Obj3d66-647191-1-678", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.586889266967773, + 1.670127511024475, + -9.266045570373535 + ] + }, + { + "mesh":5135, + "name":"Circle2679", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9946502447128296, + 0.6277795433998108 + ] + }, + { + "mesh":5136, + "name":"pasted__pasted__pCube773", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939355850219727, + 5.073940753936768, + 6.482738971710205 + ] + }, + { + "mesh":5137, + "name":"Rectangle1351", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.251155853271484, + 0.14451849460601807, + 2.6727218627929688 + ] + }, + { + "mesh":5138, + "name":"Rectangle358.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.884012222290039, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":5139, + "name":"pasted__pasted__pCube787", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + 7.265465259552002 + ] + }, + { + "mesh":5140, + "name":"Object2423", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.81254768371582, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface743", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 4.803884506225586 + ] + }, + { + "mesh":5141, + "name":"pasted__pasted__pCylinder547", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.955413818359375, + 2.3162760734558105, + -0.5957237482070923 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface653", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.700583457946777 + ] + }, + { + "mesh":5142, + "name":"pasted__pasted__pCube622", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.085107803344727, + 1.6318343877792358, + 0.07416398078203201 + ] + }, + { + "mesh":5143, + "name":"pasted__pasted__pasted__polySurface542", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9243946075439453, + 0.6901217699050903, + 5.675835132598877 + ] + }, + { + "mesh":5144, + "name":"pasted__pasted__pasted__pasted__pCylinder457", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886205673217773, + 1.079692006111145, + 13.938788414001465 + ] + }, + { + "mesh":5145, + "name":"Object1843", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.157377243041992, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5146, + "name":"Circle2843", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.084911346435547, + 1.6866551637649536, + 0.031085580587387085 + ] + }, + { + "mesh":5147, + "name":"pasted__pasted__pasted__pasted__pasted__pCube471", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.91046142578125, + 1.0152369737625122, + 12.744747161865234 + ] + }, + { + "mesh":5148, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube113", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.79571533203125, + 1.426467776298523, + -13.145119667053223 + ] + }, + { + "mesh":5149, + "name":"Circle2601", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0430431365966797, + 1.4283818006515503 + ] + }, + { + "mesh":5150, + "name":"Obj3d66-647191-9-480", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.724153518676758, + 1.6471415758132935, + -9.270478248596191 + ] + }, + { + "mesh":5151, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube338", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073788642883301, + 1.0402315855026245, + -9.038721084594727 + ] + }, + { + "mesh":5152, + "name":"pasted__pasted__pasted__pCylinder742", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9281158447265625, + 0.7768591642379761, + -0.8046589493751526 + ] + }, + { + "mesh":5153, + "name":"pasted__pasted__pasted__pPlane312", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.579700469970703, + 0.38407886028289795, + 16.587963104248047 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__polySurface051", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":5154, + "name":"Circle2350", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8850818872451782, + -2.931757688522339 + ] + }, + { + "mesh":5155, + "name":"Obj3d66-647191-2-982", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.452716827392578, + 1.6754928827285767, + 12.11122989654541 + ] + }, + { + "mesh":5156, + "name":"Rectangle064", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.859088897705078, + 0.14451849460601807, + -13.339606285095215 + ] + }, + { + "mesh":5157, + "name":"pasted__pasted__pTorus053", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.418676376342773, + 5.01207160949707, + 4.843815803527832 + ] + }, + { + "mesh":5158, + "name":"Rectangle401", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.254858016967773, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":5159, + "name":"Object2465", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.84638023376465, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5160, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube389", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402330160140991, + 1.1616694927215576 + ] + }, + { + "mesh":5161, + "name":"pasted__pasted__pasted__pCylinder702", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.230194091796875, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "mesh":5162, + "name":"Circle2239", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0092945098876953, + -1.4469094276428223 + ] + }, + { + "mesh":5163, + "name":"pasted__pasted__pasted__pasted__polySurface323", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.977703094482422, + 1.0412582159042358, + 14.820230484008789 + ] + }, + { + "mesh":5164, + "name":"pasted__pasted__pCylinder22.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.016767501831055, + 2.5257010459899902, + -5.591787338256836 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube594", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":5165, + "name":"Object1926", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.160192489624023, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5166, + "name":"Circle2965", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.054292678833008, + 4.478674411773682 + ] + }, + { + "mesh":5167, + "name":"pasted__pasted__pasted__pCylinder628", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.641426086425781, + 0.5030606985092163, + 12.94787883758545 + ] + }, + { + "mesh":5168, + "name":"Rectangle916", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0033016204834, + 1.039061188697815, + -2.224745512008667 + ] + }, + { + "mesh":5169, + "name":"Circle2246", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9305464029312134, + -1.4912759065628052 + ] + }, + { + "mesh":5170, + "name":"Object1906", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.068780899047852, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5171, + "name":"pasted__pasted__pCylinder543", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.918708801269531, + 2.206972122192383, + -0.5770914554595947 + ] + }, + { + "mesh":5172, + "name":"Circle1865", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.8446044921875, + 1.7189408540725708, + -4.833293437957764 + ] + }, + { + "mesh":5173, + "name":"Circle1953", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.984031677246094, + 1.118975043296814, + -5.7677154541015625 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube616", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":5174, + "name":"Object2619", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.868879318237305, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5175, + "name":"Rectangle215", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.0879974365234375, + 0.1627582311630249, + -12.833106994628906 + ] + }, + { + "mesh":5176, + "name":"Rectangle587", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.212726593017578, + 0.14451825618743896, + 14.283381462097168 + ] + }, + { + "mesh":5177, + "name":"Circle2855", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.13319969177246, + 1.545251488685608, + 0.11195822060108185 + ] + }, + { + "mesh":5178, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface111", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.615196228027344, + 0.20360338687896729, + 4.412017822265625 + ] + }, + { + "mesh":5179, + "name":"Circle2165", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.8607234954834, + 1.7476123571395874, + -6.1016035079956055 + ] + }, + { + "mesh":5180, + "name":"pasted__pasted__pCylinder618", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.063417434692383, + 4.930069446563721, + 3.1229093074798584 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube366", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 0.6042507886886597 + ] + }, + { + "mesh":5181, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube014", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.147977828979492, + 0.6166733503341675, + -13.693233489990234 + ] + }, + { + "mesh":5182, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group137", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.046943664550781, + 0.7328561544418335, + 7.666518211364746 + ] + }, + { + "mesh":5183, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface109", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.519916534423828, + 0.256367564201355, + 4.554261207580566 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube551", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface761", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.5926618576049805 + ] + }, + { + "mesh":5184, + "name":"Circle2824", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.970985412597656, + 2.0202722549438477, + -0.15971910953521729 + ] + }, + { + "mesh":5185, + "name":"Circle2365", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0763936042785645, + -3.0395052433013916 + ] + }, + { + "mesh":5186, + "name":"Object1929", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.155971527099609, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5187, + "name":"Object2622", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.864656448364258, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5188, + "name":"Object1867", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.123625755310059, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5189, + "name":"pasted__pasted__pCube704", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.411561965942383, + 5.280849933624268, + 0.7452099323272705 + ] + }, + { + "mesh":5190, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group146", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9594135284423828, + 0.6931537389755249, + -1.7701056003570557 + ] + }, + { + "mesh":5191, + "name":"pasted__pasted__pasted__pCube722", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 1.2411543130874634, + 14.271536827087402 + ] + }, + { + "mesh":5192, + "name":"pasted__pasted__pPipe10", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.781641006469727, + 2.5599560737609863, + -3.1857757568359375 + ] + }, + { + "mesh":5193, + "name":"pasted__pasted__pCube782", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.034181594848633, + 1.1083353757858276, + 3.1326379776000977 + ] + }, + { + "mesh":5194, + "name":"pasted__pasted__pasted__pasted__polySurface386", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.69390106201172, + 1.0412582159042358, + 14.820230484008789 + ] + }, + { + "mesh":5195, + "name":"Rectangle918", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.410043716430664, + 1.039061188697815, + -2.641525983810425 + ] + }, + { + "mesh":5196, + "name":"Rectangle202", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.746794700622559, + 0.1627582311630249, + -12.833106994628906 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube564", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":5197, + "name":"Circle2654", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8425358533859253, + 0.6277795433998108 + ] + }, + { + "mesh":5198, + "name":"Rectangle406", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.3692522048950195, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":5199, + "name":"pasted__pasted__pasted__pPlane283", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.349157333374023, + 0.38407909870147705, + 16.587963104248047 + ] + }, + { + "mesh":5200, + "name":"Obj3d66-647191-8-603", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.880228042602539, + 1.2907215356826782, + -8.643804550170898 + ] + }, + { + "mesh":5201, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube334", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.88755989074707, + 0.3764752149581909, + 4.488436698913574 + ] + }, + { + "mesh":5202, + "name":"Circle3236", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.006317138671875, + 1.899821400642395, + 4.411055088043213 + ] + }, + { + "mesh":5203, + "name":"Object2130", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.515958786010742, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5204, + "name":"Circle3299", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.5336856842041, + 1.1434203386306763, + -5.688488960266113 + ] + }, + { + "mesh":5205, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pasted__pasted__pasted__polySurface478", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.225377082824707, + 0.6837161779403687, + -14.23355484008789 + ] + }, + { + "mesh":5206, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder134", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.35464859008789, + 1.4823185205459595, + 5.98988676071167 + ] + }, + { + "mesh":5207, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface225", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.463172912597656, + 1.454501748085022, + -5.706650257110596 + ] + }, + { + "mesh":5208, + "name":"pasted__pasted__pCylinder540", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.891183853149414, + 2.1249918937683105, + -0.5631226301193237 + ] + }, + { + "mesh":5209, + "name":"Obj3d66-647191-36-134", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.56678581237793, + 1.6647711992263794, + -15.603736877441406 + ] + }, + { + "mesh":5210, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube361", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + -7.236056804656982 + ] + }, + { + "mesh":5211, + "name":"pasted__pasted__pTorus021", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.026247024536133, + 3.341920852661133, + -7.374905586242676 + ] + }, + { + "mesh":5212, + "name":"Circle2798", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.115150451660156, + 1.6960471868515015, + 0.6277795433998108 + ] + }, + { + "mesh":5213, + "name":"pasted__pasted__pasted__pasted__pCylinder847", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785398483276367, + 0.28987395763397217, + 13.642838478088379 + ] + }, + { + "mesh":5214, + "name":"Circle1739", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.051836013793945, + 1.783511757850647, + -6.112405776977539 + ] + }, + { + "mesh":5215, + "name":"pasted__pasted__pasted__pPlane093", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.002336502075195, + 0.3886607885360718, + 12.952313423156738 + ] + }, + { + "mesh":5216, + "name":"Obj3d66-647191-29-920", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567289352416992, + 1.6631056070327759, + -15.60374927520752 + ] + }, + { + "mesh":5217, + "name":"Circle2177", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.816617965698242, + 1.617148518562317, + -6.027742862701416 + ] + }, + { + "mesh":5218, + "name":"pasted__pasted__pCylinder582", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.682260513305664, + 4.840120792388916, + -0.002050161361694336 + ] + }, + { + "mesh":5219, + "name":"Object1901", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.075813293457031, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5220, + "name":"Circle2818", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.985681533813477, + 1.9772247076034546, + -0.13509920239448547 + ] + }, + { + "mesh":5221, + "name":"Object2226", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.50048828125, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5222, + "name":"Object2560", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.832311630249023, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5223, + "name":"Circle2047", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8405483961105347, + -6.134967803955078 + ] + }, + { + "mesh":5224, + "name":"pasted__pasted__pasted__pCylinder182", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.296171188354492, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "mesh":5225, + "name":"Rectangle1409", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 4.220424652099609 + ] + }, + { + "mesh":5226, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder210", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.875181198120117, + 0.6623357534408569, + 12.767040252685547 + ] + }, + { + "mesh":5227, + "name":"Rectangle385.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + -9.822905540466309 + ] + }, + { + "mesh":5228, + "name":"pasted__pasted__pasted__pCube732", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 1.399283766746521, + 14.92426586151123 + ] + }, + { + "mesh":5229, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder066", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + -0.50638747215271 + ] + }, + { + "mesh":5230, + "name":"polySurface367", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.396738052368164, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":5231, + "name":"Object2634", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8477840423584, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5232, + "name":"Obj3d66-647191-34-816", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9010276794433594, + 1.3069459199905396, + -8.622991561889648 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube349", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -8.31318187713623 + ] + }, + { + "mesh":5233, + "name":"Circle035", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.6377744674682617, + 0.1445099115371704, + 17.315980911254883 + ] + }, + { + "mesh":5234, + "name":"pasted__pasted__pCylinder489", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.844537734985352, + 1.9870175123214722, + 0.7166488170623779 + ] + }, + { + "mesh":5235, + "name":"Object2380", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.403453826904297, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5236, + "name":"Rectangle780", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8114662170410156, + 0.5975691080093384, + -8.982117652893066 + ] + }, + { + "mesh":5237, + "name":"Object1800", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.0882457494735718, + 16.99413299560547 + ] + }, + { + "mesh":5238, + "name":"pasted__pasted__pCube460", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6876392364501953, + 1.027711033821106, + 14.516190528869629 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube519", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":5239, + "name":"pasted__pasted__pCube599", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.32356834411621, + 3.367276191711426, + 6.516063690185547 + ] + }, + { + "mesh":5240, + "name":"pasted__pasted__pasted__pasted__pasted__pCube551", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.927160263061523, + 0.12430918216705322, + 14.770878791809082 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube384", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 5.416483402252197 + ] + }, + { + "mesh":5241, + "name":"pasted__pasted__pCube397.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.45823860168457, + 5.073940753936768, + -4.125682830810547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube508", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":5242, + "name":"pasted__pasted__pasted__pCylinder658", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.094709396362305, + 0.503059983253479, + 12.976770401000977 + ] + }, + { + "mesh":5243, + "name":"pasted__pasted__pasted__pasted__pCylinder880", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.52398109436035, + 0.28987395763397217, + 15.849641799926758 + ] + }, + { + "mesh":5244, + "name":"Obj3d66-647191-5-151", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.574676513671875, + 1.726946234703064, + -9.463458061218262 + ] + }, + { + "mesh":5245, + "name":"Circle2678", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.007326602935791, + 0.6277795433998108 + ] + }, + { + "mesh":5246, + "name":"Rectangle1327", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.255056381225586, + 0.2190920114517212, + 1.934915542602539 + ] + }, + { + "mesh":5247, + "name":"Circle3200", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.055511474609375, + 1.7727497816085815, + 3.025800943374634 + ] + }, + { + "mesh":5248, + "name":"Rectangle357.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.506895065307617, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":5249, + "name":"pasted__pasted__pasted__pPlane288", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.997343063354492, + 0.3886607885360718, + 12.952313423156738 + ] + }, + { + "mesh":5250, + "name":"pasted__pasted__pCylinder427", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.927236557006836, + 2.950833797454834, + -7.5038299560546875 + ] + }, + { + "mesh":5251, + "name":"Circle1495", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.750038504600525, + -6.087520599365234 + ] + }, + { + "mesh":5252, + "name":"Circle1779", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.973241806030273, + 1.9976691007614136, + -4.66560173034668 + ] + }, + { + "mesh":5253, + "name":"Object2422", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.81937026977539, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":5254, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder48", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.101566314697266, + 1.4834917783737183, + -5.398360252380371 + ] + }, + { + "mesh":5255, + "name":"pasted__pasted__pCylinder557", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.176162719726562, + 1.5833171606063843, + 0.27712687849998474 + ] + }, + { + "mesh":5256, + "name":"pasted__pasted__pasted__pasted__pCylinder456", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.807779312133789, + 1.0796922445297241, + 13.790817260742188 + ] + }, + { + "mesh":5257, + "name":"Object1842", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.158786773681641, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5258, + "name":"Circle2842", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08123779296875, + 1.69741690158844, + 0.024930588901042938 + ] + }, + { + "mesh":5259, + "name":"pasted__pasted__pCube385", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.980840682983398, + 5.0152716636657715, + -3.179896354675293 + ] + }, + { + "mesh":5260, + "name":"pasted__pasted__pCube453", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9707813262939453, + 1.5766974687576294, + 12.680855751037598 + ] + }, + { + "mesh":5261, + "name":"Circle1825", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.326295256614685, + -4.996428489685059 + ] + }, + { + "mesh":5262, + "name":"Obj3d66-647191-8-602", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.735698699951172, + 1.6444579362869263, + -9.280977249145508 + ] + }, + { + "mesh":5263, + "name":"Circle2260", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.934459686279297, + 1.118975043296814, + -2.5367355346679688 + ] + }, + { + "mesh":5264, + "name":"Obj3d66-647191-22-671", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980937957763672, + 1.6631056070327759, + -15.548868179321289 + ] + }, + { + "mesh":5265, + "name":"pasted__pasted__pasted__pCube642", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9547863006591797, + 1.0161925554275513, + -0.7656521797180176 + ] + }, + { + "mesh":5266, + "name":"Circle1712", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.228336334228516, + 1.3416365385055542, + -5.460318088531494 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube470", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":5267, + "name":"Circle2349", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.896335482597351, + -2.9380955696105957 + ] + }, + { + "mesh":5268, + "name":"Circle2869", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.991617202758789, + 1.9433091878890991, + 1.391720175743103 + ] + }, + { + "mesh":5269, + "name":"Line2418", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.88511848449707, + 0.19340407848358154, + -5.453815937042236 + ] + }, + { + "mesh":5270, + "name":"Circle2114", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.85337257385254, + 1.8583136796951294, + -5.459476947784424 + ] + }, + { + "mesh":5271, + "name":"Object2464", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8477840423584, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5272, + "name":"pasted__pasted__pasted__pCylinder701", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.230194091796875, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":5273, + "name":"Rectangle086", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.049402236938477, + 0.14451849460601807, + -14.047863006591797 + ] + }, + { + "mesh":5274, + "name":"Circle2238", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0205440521240234, + -1.4405710697174072 + ] + }, + { + "mesh":5275, + "name":"pasted__pasted__pasted__pasted__pCylinder475", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.807779312133789, + 1.0796922445297241, + 14.820230484008789 + ] + }, + { + "mesh":5276, + "name":"Circle1753", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.103288650512695, + 1.6328457593917847, + -6.0262370109558105 + ] + }, + { + "mesh":5277, + "name":"pasted__pasted__pCylinder449", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.173770904541016, + 3.1357784271240234, + -6.79180383682251 + ] + }, + { + "mesh":5278, + "name":"Circle3225", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.946138381958008, + 2.0792741775512695, + 2.8426551818847656 + ] + }, + { + "mesh":5279, + "name":"Circle2713", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.907589316368103, + -0.08815699070692062 + ] + }, + { + "mesh":5280, + "name":"Object1925", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.161600112915039, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5281, + "name":"Circle2964", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.065542697906494, + 4.485013484954834 + ] + }, + { + "mesh":5282, + "name":"Object2294", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.40485954284668, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube391", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.5926618576049805 + ] + }, + { + "mesh":5283, + "name":"pasted__pasted__pCylinder542", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.909536361694336, + 2.179645538330078, + -0.5724281072616577 + ] + }, + { + "mesh":5284, + "name":"Circle1864", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.84827995300293, + 1.7297028303146362, + -4.827138423919678 + ] + }, + { + "mesh":5285, + "name":"Circle1952", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.400625228881836, + 1.1369620561599731, + -5.7677154541015625 + ] + }, + { + "mesh":5286, + "name":"Rectangle213", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.70516300201416, + 0.1627582311630249, + -12.833106994628906 + ] + }, + { + "mesh":5287, + "name":"Rectangle588", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.212726593017578, + 0.14451825618743896, + 14.283381462097168 + ] + }, + { + "mesh":5288, + "name":"Object1854", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.141911506652832, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5289, + "name":"Circle2854", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.128690719604492, + 1.5584653615951538, + 0.10440074652433395 + ] + }, + { + "mesh":5290, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube430", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402330160140991, + 7.0038909912109375 + ] + }, + { + "mesh":5291, + "name":"Circle2164", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.864397048950195, + 1.758484959602356, + -6.107757568359375 + ] + }, + { + "mesh":5292, + "name":"Circle2937", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6605547666549683, + 4.25684118270874 + ] + }, + { + "mesh":5293, + "name":"pasted__pasted__pTorus039", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.263608932495117, + 5.048587322235107, + 1.716031789779663 + ] + }, + { + "mesh":5294, + "name":"pasted__pasted__pasted__pCylinder711", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.365060806274414, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":5295, + "name":"Rectangle1125", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.310401916503906, + 0.43873751163482666, + 12.4276762008667 + ] + }, + { + "mesh":5296, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pasted__pasted__pasted__polySurface481", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.1503639221191406, + 0.6837157011032104, + -13.156245231628418 + ] + }, + { + "mesh":5297, + "name":"Object2079", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.064563751220703, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5298, + "name":"pasted__pasted__pasted__pCylinder698", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.072099685668945, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "mesh":5299, + "name":"Circle1819", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.13178253173828, + 1.5286577939987183, + -4.931124687194824 + ] + }, + { + "mesh":5300, + "name":"Object1928", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.157377243041992, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5301, + "name":"Object2520", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.888565063476562, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__polySurface077", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":5302, + "name":"pasted__pasted__pCube703", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.411561965942383, + 5.280849933624268, + 0.1614721715450287 + ] + }, + { + "mesh":5303, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube404", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9486875534057617, + 0.7022420167922974, + -1.7703717947006226 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube554", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":5304, + "name":"pasted__pasted__pasted__pCylinder202", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749452590942383, + 0.9016937017440796, + 15.404440879821777 + ] + }, + { + "mesh":5305, + "name":"Object2293", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.406267166137695, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5306, + "name":"pasted__pasted__pCylinder572", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.874229431152344, + 4.853360652923584, + 1.5257331132888794 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__polySurface054", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":5307, + "name":"Object2476", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.83090591430664, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube176", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":5308, + "name":"Rectangle917", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.410043716430664, + 1.039061188697815, + -1.8041458129882812 + ] + }, + { + "mesh":5309, + "name":"Circle2154", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.901151657104492, + 1.8672045469284058, + -6.169307708740234 + ] + }, + { + "mesh":5310, + "name":"Circle2585", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.829299807548523, + 1.3079577684402466 + ] + }, + { + "mesh":5311, + "name":"pasted__pasted__pCube844", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.032896041870117, + 1.027711272239685, + 15.165143966674805 + ] + }, + { + "mesh":5312, + "name":"Circle2653", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6506258249282837, + 0.6277795433998108 + ] + }, + { + "mesh":5313, + "name":"Circle2557", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3809512853622437, + -1.8406506776809692 + ] + }, + { + "mesh":5314, + "name":"pasted__pasted__pCube376.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.034181594848633, + 1.1083353757858276, + -7.834100246429443 + ] + }, + { + "mesh":5315, + "name":"pasted__pasted__pasted__pasted__pCylinder474", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886508941650391, + 0.6754261255264282, + 14.672083854675293 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube536", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":5316, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube333", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.88755989074707, + 1.3735638856887817, + 4.488436698913574 + ] + }, + { + "mesh":5317, + "name":"Obj3d66-647191-32-918", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980655670166016, + 1.6615828275680542, + -15.54387092590332 + ] + }, + { + "mesh":5318, + "name":"Circle3298", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.5336856842041, + 1.1241081953048706, + -5.688488960266113 + ] + }, + { + "mesh":5319, + "name":"Object2406", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.0428589582443237, + 16.99413299560547 + ] + }, + { + "mesh":5320, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface223", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.463172912597656, + 1.438156008720398, + -5.400634288787842 + ] + }, + { + "mesh":5321, + "name":"Circle1876", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.798830032348633, + 1.5848942995071411, + -4.909958362579346 + ] + }, + { + "mesh":5322, + "name":"Circle3208", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.084911346435547, + 1.6866551637649536, + 3.0750410556793213 + ] + }, + { + "mesh":5323, + "name":"Circle2351", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8738282918930054, + -2.925419330596924 + ] + }, + { + "mesh":5324, + "name":"Obj3d66-647191-35-102", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.56678581237793, + 1.6647711992263794, + -15.54886531829834 + ] + }, + { + "mesh":5325, + "name":"Circle1796", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.043067932128906, + 1.7911008596420288, + -4.7825469970703125 + ] + }, + { + "mesh":5326, + "name":"Circle2515", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0136661529541, + 1.8780771493911743, + -1.5014865398406982 + ] + }, + { + "mesh":5327, + "name":"Circle1931", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.0201258659362793, + -4.669134616851807 + ] + }, + { + "mesh":5328, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder120", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692001342773438, + 1.3803664445877075, + 5.957485675811768 + ] + }, + { + "mesh":5329, + "name":"Circle1738", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.048160552978516, + 1.7942734956741333, + -6.118561267852783 + ] + }, + { + "mesh":5330, + "name":"pasted__pasted__pCylinder626", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.089197158813477, + 4.840120792388916, + 3.135547399520874 + ] + }, + { + "mesh":5331, + "name":"Object1900", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.077219009399414, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5332, + "name":"Rectangle819", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.7701778411865234, + 0.14451849460601807, + -1.9606925249099731 + ] + }, + { + "mesh":5333, + "name":"Object2225", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.501895904541016, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5334, + "name":"Rectangle044", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.204339981079102, + 0.14451849460601807, + -13.339606285095215 + ] + }, + { + "mesh":5335, + "name":"Circle2046", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8630479574203491, + -6.147644519805908 + ] + }, + { + "mesh":5336, + "name":"Circle2336", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6487559080123901, + -2.7986574172973633 + ] + }, + { + "mesh":5337, + "name":"pasted__pasted__pCylinder665", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.991880416870117, + 2.4541258811950684, + 6.083739757537842 + ] + }, + { + "mesh":5338, + "name":"Circle2841", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.07756233215332, + 1.7081788778305054, + 0.01877559721469879 + ] + }, + { + "mesh":5339, + "name":"Rectangle384.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + -8.445793151855469 + ] + }, + { + "mesh":5340, + "name":"Obj3d66-647191-28-047", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3525896072387695, + 1.6571954488754272, + -15.60590648651123 + ] + }, + { + "mesh":5341, + "name":"polySurface357", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.36277198791504, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":5342, + "name":"Rectangle1105", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.997325897216797, + 0.14451777935028076, + 15.133939743041992 + ] + }, + { + "mesh":5343, + "name":"Object2448", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.870283126831055, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5344, + "name":"Circle1968", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116270065307617, + 1.3985601663589478, + -5.503748416900635 + ] + }, + { + "mesh":5345, + "name":"Rectangle1388", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 8.100261688232422 + ] + }, + { + "mesh":5346, + "name":"Circle3090", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7612920999526978, + 3.038193702697754 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface690", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -8.31318187713623 + ] + }, + { + "mesh":5347, + "name":"pasted__pasted__pCube654", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + 0.8952134847640991 + ] + }, + { + "mesh":5348, + "name":"Circle034", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.6377744674682617, + 11.152395248413086, + 17.315982818603516 + ] + }, + { + "mesh":5349, + "name":"pasted__pasted__pCylinder488", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.835870742797852, + 1.9595407247543335, + 0.7119123339653015 + ] + }, + { + "mesh":5350, + "name":"Object2379", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.40485954284668, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5351, + "name":"Obj3d66-647191-7-343", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.992870330810547, + 1.6444584131240845, + 18.317955017089844 + ] + }, + { + "mesh":5352, + "name":"Rectangle779", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.505002975463867, + 0.2500876188278198, + -8.982117652893066 + ] + }, + { + "mesh":5353, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube576", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 0.8592516183853149, + -9.316967964172363 + ] + }, + { + "mesh":5354, + "name":"pasted__pasted__pCylinder562", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2247467041015625, + 1.5741528272628784, + 0.27783963084220886 + ] + }, + { + "mesh":5355, + "name":"Rectangle1333", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.73845374584198, + -2.2891860008239746 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube656", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":5356, + "name":"Object1799", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.0927842855453491, + 16.99413299560547 + ] + }, + { + "mesh":5357, + "name":"Rectangle1411", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 5.081486701965332 + ] + }, + { + "mesh":5358, + "name":"pasted__pasted__pCylinder713", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.019645690917969, + 2.5075578689575195, + 4.658117294311523 + ] + }, + { + "mesh":5359, + "name":"pasted__pasted__pasted__pPlane304", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.4676456451416, + 0.38407886028289795, + 16.264780044555664 + ] + }, + { + "mesh":5360, + "name":"pasted__pasted__pCube396.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.458927154541016, + 5.064015865325928, + -4.426765441894531 + ] + }, + { + "mesh":5361, + "name":"Obj3d66-647191-7-346", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.440500259399414, + 1.6444584131240845, + 12.167878150939941 + ] + }, + { + "mesh":5362, + "name":"pasted__pasted__pasted__pasted__polySurface387", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.69390106201172, + 0.251440167427063, + 15.849641799926758 + ] + }, + { + "mesh":5363, + "name":"Circle1750", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.092260360717773, + 1.6651314496994019, + -6.04470157623291 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door094", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -7.182558059692383 + ] + }, + { + "mesh":5364, + "name":"Circle2677", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.020002841949463, + 0.6277795433998108 + ] + }, + { + "mesh":5365, + "name":"pasted__pasted__pCube774", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + 6.181655406951904 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface726", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -0.00834827870130539 + ] + }, + { + "mesh":5366, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube44", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 0.3764752149581909, + -4.721524238586426 + ] + }, + { + "mesh":5367, + "name":"pasted__pasted__pasted__pasted__pCylinder868", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.52398109436035, + 0.6754261255264282, + 14.820230484008789 + ] + }, + { + "mesh":5368, + "name":"Rectangle1326", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.180307388305664, + 0.3059629201889038, + 1.934915542602539 + ] + }, + { + "mesh":5369, + "name":"pasted__pasted__pasted__pCylinder716", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565055847168, + 0.9016937017440796, + 12.976770401000977 + ] + }, + { + "mesh":5370, + "name":"Rectangle356.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -13.129777908325195, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":5371, + "name":"pasted__pasted__pasted__pCube725", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 0.8213733434677124, + 14.271536827087402 + ] + }, + { + "mesh":5372, + "name":"Object2421", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.826194763183594, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":5373, + "name":"Object2629", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.85481071472168, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group142", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 6.547109127044678 + ] + }, + { + "mesh":5374, + "name":"pasted__pasted__pCube621", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.085107803344727, + 1.6318343877792358, + 0.27575400471687317 + ] + }, + { + "mesh":5375, + "name":"pasted__pasted__pasted__pasted__polySurface320", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.977703094482422, + 1.0412577390670776, + 13.790817260742188 + ] + }, + { + "mesh":5376, + "name":"pasted__pasted__pCylinder446", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.186412811279297, + 3.133455753326416, + -8.200495719909668 + ] + }, + { + "mesh":5377, + "name":"pasted__pasted__pCube384", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.980836868286133, + 5.0152716636657715, + -7.820078372955322 + ] + }, + { + "mesh":5378, + "name":"Circle3279", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.13178253173828, + 1.5286577939987183, + 4.200927734375 + ] + }, + { + "mesh":5379, + "name":"pasted__pasted__pasted__pasted__pCylinder460", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.069196701049805, + 1.079692006111145, + 13.642838478088379 + ] + }, + { + "mesh":5380, + "name":"Circle2823", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.963634490966797, + 2.0417957305908203, + -0.17202916741371155 + ] + }, + { + "mesh":5381, + "name":"Circle3130", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.993036270141602, + 2.104396343231201, + 3.6717348098754883 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube403", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.6732590198516846 + ] + }, + { + "mesh":5382, + "name":"Circle3185", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.996707916259766, + 1.9449390172958374, + 2.927321195602417 + ] + }, + { + "mesh":5383, + "name":"Obj3d66-647191-29-940", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747623443603516, + 1.6631056070327759, + -9.328777313232422 + ] + }, + { + "mesh":5384, + "name":"Circle2116", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.846023559570312, + 1.8337303400039673, + -5.459476947784424 + ] + }, + { + "mesh":5385, + "name":"Circle2276", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8171836137771606, + -2.22849702835083 + ] + }, + { + "mesh":5386, + "name":"Object2678", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.785905838012695, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5387, + "name":"Circle1824", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.946138381958008, + 2.0678772926330566, + -4.620213508605957 + ] + }, + { + "mesh":5388, + "name":"Rectangle1128", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.310401916503906, + 0.26499664783477783, + 12.27353572845459 + ] + }, + { + "mesh":5389, + "name":"Rectangle952", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -6.9049553871154785 + ] + }, + { + "mesh":5390, + "name":"pasted__pasted__pasted__pCube641", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 0.7962990999221802, + -0.3362038731575012 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube469", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":5391, + "name":"Obj3d66-647191-31-963", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8924436569213867, + 1.3034590482711792, + -8.652945518493652 + ] + }, + { + "mesh":5392, + "name":"Circle2348", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.907589316368103, + -2.9444339275360107 + ] + }, + { + "mesh":5393, + "name":"Rectangle399", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.00909423828125, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":5394, + "name":"Object2463", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.849185943603516, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5395, + "name":"Object2320", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.487833023071289, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5396, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface224", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.463172912597656, + 1.454501748085022, + -5.094429969787598 + ] + }, + { + "mesh":5397, + "name":"pasted__pasted__pPipe096", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.55957794189453, + 2.7832746505737305, + 5.489278793334961 + ] + }, + { + "mesh":5398, + "name":"Circle033", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.4910831451416, + 8.394912719726562, + -3.355707883834839 + ] + }, + { + "mesh":5399, + "name":"Circle2359", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7725452184677124, + -2.8683762550354004 + ] + }, + { + "mesh":5400, + "name":"Circle2237", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0317940711975098, + -1.43423330783844 + ] + }, + { + "mesh":5401, + "name":"pasted__pasted__pCube788", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + 7.4099040031433105 + ] + }, + { + "mesh":5402, + "name":"pasted__pasted__pasted__pasted__pCylinder476", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886205673217773, + 1.0796922445297241, + 14.968205451965332 + ] + }, + { + "mesh":5403, + "name":"Obj3d66-647191-19-288", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.981172561645508, + 1.6718100309371948, + -15.548868179321289 + ] + }, + { + "mesh":5404, + "name":"Rectangle517", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.2914762496948242, + 1.4575906991958618, + -7.538872241973877 + ] + }, + { + "mesh":5405, + "name":"Object1924", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.163002014160156, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5406, + "name":"Circle2963", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0767922401428223, + 4.491351127624512 + ] + }, + { + "mesh":5407, + "name":"Circle1553", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5847941637039185, + -5.994454860687256 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface760", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.5926618576049805 + ] + }, + { + "mesh":5408, + "name":"pasted__pasted__pCylinder541", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.900360107421875, + 2.152317523956299, + -0.5677753686904907 + ] + }, + { + "mesh":5409, + "name":"Circle1863", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.851957321166992, + 1.7404645681381226, + -4.820983409881592 + ] + }, + { + "mesh":5410, + "name":"Object1895", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.084249496459961, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5411, + "name":"Rectangle893", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.596855163574219, + 0.49351394176483154, + -5.439942836761475 + ] + }, + { + "mesh":5412, + "name":"Rectangle211", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8965835571289062, + 0.33695781230926514, + -12.664052963256836 + ] + }, + { + "mesh":5413, + "name":"Rectangle584", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8061866760253906, + 0.14451777935028076, + 12.883796691894531 + ] + }, + { + "mesh":5414, + "name":"Circle1858", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.870332717895508, + 1.7942742109298706, + -4.790208339691162 + ] + }, + { + "mesh":5415, + "name":"Object1853", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.143320083618164, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5416, + "name":"Circle2853", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.124176025390625, + 1.5716794729232788, + 0.09684327244758606 + ] + }, + { + "mesh":5417, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder104", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + 5.075465202331543 + ] + }, + { + "mesh":5418, + "name":"pasted__pasted__pasted__pasted__pCylinder823", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.153039932250977, + 0.28987395763397217, + 15.849641799926758 + ] + }, + { + "mesh":5419, + "name":"Obj3d66-647191-25-191", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3507509231567383, + 1.664944052696228, + -15.576766014099121 + ] + }, + { + "mesh":5420, + "name":"Circle2163", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.868074417114258, + 1.769356608390808, + -6.113913059234619 + ] + }, + { + "mesh":5421, + "name":"Circle1653", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.237268090248108, + -5.810318946838379 + ] + }, + { + "mesh":5422, + "name":"Rectangle332", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + 17.524398803710938 + ] + }, + { + "mesh":5423, + "name":"pasted__pasted__pCylinder593", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.089197158813477, + 4.840120792388916, + 1.7382797002792358 + ] + }, + { + "mesh":5424, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pasted__pasted__pasted__polySurface480", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.150362968444824, + 0.6837161779403687, + -14.23355484008789 + ] + }, + { + "mesh":5425, + "name":"Object2078", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.0659685134887695, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface658", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -7.182558059692383 + ] + }, + { + "mesh":5426, + "name":"Circle1818", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.12727165222168, + 1.5420070886611938, + -4.923567295074463 + ] + }, + { + "mesh":5427, + "name":"Object1927", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.158786773681641, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5428, + "name":"pasted__pasted__pCube702", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.411561965942383, + 5.280849933624268, + -0.38635319471359253 + ] + }, + { + "mesh":5429, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface782", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9352035522460938, + 1.0885118246078491, + -1.6749831438064575 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors156", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":5430, + "name":"Circle3222", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.101621627807617, + 1.3522719144821167, + 3.271188974380493 + ] + }, + { + "mesh":5431, + "name":"Object2292", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.407674789428711, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5432, + "name":"Circle2844", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08858871459961, + 1.6758931875228882, + 0.03724057972431183 + ] + }, + { + "mesh":5433, + "name":"Circle1604", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1594409942626953, + -5.460317134857178 + ] + }, + { + "mesh":5434, + "name":"pasted__pasted__pCube373", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.975038528442383, + 1.082088828086853, + -3.1812922954559326 + ] + }, + { + "mesh":5435, + "name":"pasted__pasted__pasted__pCube723", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 1.399283766746521, + 14.271536827087402 + ] + }, + { + "mesh":5436, + "name":"Circle2209", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6943036317825317, + -1.6243761777877808 + ] + }, + { + "mesh":5437, + "name":"Circle2652", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.666190505027771, + 0.6277795433998108 + ] + }, + { + "mesh":5438, + "name":"Circle2319", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9312690496444702, + -2.22849702835083 + ] + }, + { + "mesh":5439, + "name":"pasted__pasted__pasted__pasted__pCylinder473", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.069196701049805, + 0.6754261255264282, + 14.672256469726562 + ] + }, + { + "mesh":5440, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder108", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + 4.487849712371826 + ] + }, + { + "mesh":5441, + "name":"Obj3d66-647191-31-956", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980655670166016, + 1.6571954488754272, + -15.546813011169434 + ] + }, + { + "mesh":5442, + "name":"Circle3297", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.5336856842041, + 1.1125108003616333, + -5.688488960266113 + ] + }, + { + "mesh":5443, + "name":"Circle2676", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0326790809631348, + 0.6277795433998108 + ] + }, + { + "mesh":5444, + "name":"Object2405", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.047397494316101, + 16.99413299560547 + ] + }, + { + "mesh":5445, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door111", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.002043724060059, + 1.5217519998550415, + 7.76711893081665 + ] + }, + { + "mesh":5446, + "name":"Rectangle783", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137235641479492, + 0.14451825618743896, + -6.692198753356934 + ] + }, + { + "mesh":5447, + "name":"Rectangle1102", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.913894653320312, + 0.6124783754348755, + 13.961438179016113 + ] + }, + { + "mesh":5448, + "name":"Obj3d66-647191-28-066", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8924446105957031, + 1.3034590482711792, + -8.593852043151855 + ] + }, + { + "mesh":5449, + "name":"Obj3d66-647191-25-210", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8942813873291016, + 1.3112081289291382, + -8.622991561889648 + ] + }, + { + "mesh":5450, + "name":"Obj3d66-647191-34-795", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.5761661529541, + 1.6606823205947876, + -15.576761245727539 + ] + }, + { + "mesh":5451, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface531", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6865177154541016, + 0.6892560720443726, + 13.954267501831055 + ] + }, + { + "mesh":5452, + "name":"Obj3d66-647191-25-207", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4545536041259766, + 1.6649445295333862, + 12.1477632522583 + ] + }, + { + "mesh":5453, + "name":"Obj3d66-647191-37-410", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3533849716186523, + 1.6739360094070435, + -15.603741645812988 + ] + }, + { + "mesh":5454, + "name":"Circle2175", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.823972702026367, + 1.6388927698135376, + -6.04005241394043 + ] + }, + { + "mesh":5455, + "name":"pasted__pasted__pCylinder625", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.708860397338867, + 4.937098026275635, + 3.135547399520874 + ] + }, + { + "mesh":5456, + "name":"Object2224", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.503303527832031, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5457, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube506", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.254796981811523, + 1.517708420753479, + -0.6556020975112915 + ] + }, + { + "mesh":5458, + "name":"Object2558", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.835126876831055, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5459, + "name":"Circle2045", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8742979764938354, + -6.153982639312744 + ] + }, + { + "mesh":5460, + "name":"Circle2318", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.9439455270767212, + -2.22849702835083 + ] + }, + { + "mesh":5461, + "name":"pasted__pasted__pasted__pasted__pPipe078", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.327337265014648, + 0.8169807195663452, + 14.828760147094727 + ] + }, + { + "mesh":5462, + "name":"Circle2892", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.046743392944336, + 1.7802292108535767, + 1.299395203590393 + ] + }, + { + "mesh":5463, + "name":"Rectangle1407", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 2.4923958778381348 + ] + }, + { + "mesh":5464, + "name":"Rectangle1094", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.71023941040039, + 0.0907975435256958, + 13.722539901733398 + ] + }, + { + "mesh":5465, + "name":"Rectangle383.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + -7.068675518035889 + ] + }, + { + "mesh":5466, + "name":"pasted__pasted__pasted__polySurface559", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.411169052124023, + 0.6836510896682739, + 15.375099182128906 + ] + }, + { + "mesh":5467, + "name":"Circle1699", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0996150970459, + 1.7480052709579468, + -5.460317134857178 + ] + }, + { + "mesh":5468, + "name":"Circle3089", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7725452184677124, + 3.031855583190918 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface689", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -8.31318187713623 + ] + }, + { + "mesh":5469, + "name":"pasted__pasted__pCube653", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + 1.7463427782058716 + ] + }, + { + "mesh":5470, + "name":"Circle1951", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11112403869629, + 1.2966753244400024, + -5.087480068206787 + ] + }, + { + "mesh":5471, + "name":"pasted__pasted__pCylinder487", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.827201843261719, + 1.9320615530014038, + 0.7071651816368103 + ] + }, + { + "mesh":5472, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder65", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.525850296020508, + 0.14451825618743896, + -5.40526819229126 + ] + }, + { + "mesh":5473, + "name":"Rectangle144", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.97010612487793, + 0.14451849460601807, + -13.333333015441895 + ] + }, + { + "mesh":5474, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube415", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + 2.9839630126953125 + ] + }, + { + "mesh":5475, + "name":"Object2378", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.406267166137695, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5476, + "name":"Rectangle016.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.286970138549805, + 0.7316919565200806, + -5.663655757904053 + ] + }, + { + "mesh":5477, + "name":"pasted__pasted__byq002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.218202590942383, + 0.11240279674530029, + 5.545373439788818 + ] + }, + { + "mesh":5478, + "name":"Obj3d66-647191-6-454", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.992870330810547, + 1.7554808855056763, + 18.297334671020508 + ] + }, + { + "mesh":5479, + "name":"Rectangle778", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.5818748474121094, + 0.33695781230926514, + -8.982117652893066 + ] + }, + { + "mesh":5480, + "name":"pasted__pasted__pasted__pCube162", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 1.2411543130874634, + 14.8716459274292 + ] + }, + { + "mesh":5481, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder200", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.039926528930664, + 0.6288565397262573, + 13.753793716430664 + ] + }, + { + "mesh":5482, + "name":"Sphere041", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.19780158996582, + 1.3344708681106567, + -2.643825054168701 + ] + }, + { + "mesh":5483, + "name":"Rectangle1410", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 5.081486701965332 + ] + }, + { + "mesh":5484, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube311", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.840343475341797, + 1.2794238328933716, + -0.5471792817115784 + ] + }, + { + "mesh":5485, + "name":"Object2237", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.48501968383789, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5486, + "name":"pasted__pasted__pasted__pasted__pCylinder842", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.69748878479004, + 0.10737001895904541, + 14.826196670532227 + ] + }, + { + "mesh":5487, + "name":"pasted__pasted__pCube395.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.458927154541016, + 5.064015865325928, + -3.8929929733276367 + ] + }, + { + "mesh":5488, + "name":"Circle3282", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.285993576049805, + 1.4004048109054565, + 4.111642360687256 + ] + }, + { + "mesh":5489, + "name":"pasted__pasted__pasted__pasted__pPipe088", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.698280334472656, + 1.2212475538253784, + 14.828760147094727 + ] + }, + { + "mesh":5490, + "name":"pasted__pasted__pTorus055", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.092384338378906, + 5.048586368560791, + 6.812458038330078 + ] + }, + { + "mesh":5491, + "name":"Rectangle1251", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.205141067504883, + 0.6940621137619019, + -6.6981306076049805 + ] + }, + { + "mesh":5492, + "name":"Circle1749", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08858871459961, + 1.6758931875228882, + -6.050857067108154 + ] + }, + { + "mesh":5493, + "name":"Circle2879", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.995292663574219, + 1.9324370622634888, + 1.385565161705017 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube345", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":5494, + "name":"Rectangle771", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.505002975463867, + 0.2500876188278198, + -4.219324111938477 + ] + }, + { + "mesh":5495, + "name":"pasted__pasted__pCube775", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.897443771362305, + 2.6223349571228027, + 7.7594313621521 + ] + }, + { + "mesh":5496, + "name":"Circle2474", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.070215225219727, + 1.729702353477478, + -2.849811315536499 + ] + }, + { + "mesh":5497, + "name":"Rectangle1325", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.02546501159668, + 0.47970330715179443, + 1.934915542602539 + ] + }, + { + "mesh":5498, + "name":"Circle3036", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.096060276031494, + 3.6717348098754883 + ] + }, + { + "mesh":5499, + "name":"Circle2138", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.865270614624023, + 1.425225853919983, + -6.109224796295166 + ] + }, + { + "mesh":5500, + "name":"Object2420", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.833017349243164, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube664", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":5501, + "name":"pasted__pasted__pCylinder556", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.176162719726562, + 1.5833185911178589, + 0.4833800196647644 + ] + }, + { + "mesh":5502, + "name":"pasted__pasted__pasted__pasted__pPipe021", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.982082366943359, + 0.8169807195663452, + 13.799349784851074 + ] + }, + { + "mesh":5503, + "name":"Circle1718", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.004060745239258, + 1.9234155416488647, + -6.192420959472656 + ] + }, + { + "mesh":5504, + "name":"Object1840", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.161600112915039, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5505, + "name":"pasted__pasted__pPipe20", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.243392944335938, + 1.2939432859420776, + -7.821891784667969 + ] + }, + { + "mesh":5506, + "name":"Circle3278", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.12727165222168, + 1.5420070886611938, + 4.208485126495361 + ] + }, + { + "mesh":5507, + "name":"Circle3011", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7538021802902222, + 3.6717348098754883 + ] + }, + { + "mesh":5508, + "name":"Rectangle355.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.752655029296875, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":5509, + "name":"Circle3175", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.993036270141602, + 1.9557007551193237, + 2.92116641998291 + ] + }, + { + "mesh":5510, + "name":"Object1880", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.105344772338867, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5511, + "name":"Circle2414", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.044485092163086, + 1.9323447942733765, + -2.22849702835083 + ] + }, + { + "mesh":5512, + "name":"Circle2716", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8738282918930054, + -0.06914269179105759 + ] + }, + { + "mesh":5513, + "name":"Object112", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.467756271362305, + -1.5780738592147827, + -7.493965148925781 + ] + }, + { + "mesh":5514, + "name":"Circle2244", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9530459642410278, + -1.4785995483398438 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__polySurface074", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":5515, + "name":"Circle1823", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.23603057861328, + 1.3768717050552368, + -5.028141975402832 + ] + }, + { + "mesh":5516, + "name":"Obj3d66-647191-6-459", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.735698699951172, + 1.7554806470870972, + -9.301286697387695 + ] + }, + { + "mesh":5517, + "name":"Rectangle948", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -6.9049553871154785 + ] + }, + { + "mesh":5518, + "name":"pasted__pasted__pasted__pCube640", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 1.320726752281189, + -0.3362038731575012 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube468", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":5519, + "name":"Circle2347", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8513208627700806, + -2.912742853164673 + ] + }, + { + "mesh":5520, + "name":"Object1810", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.0428589582443237, + 16.99413299560547 + ] + }, + { + "mesh":5521, + "name":"Circle2112", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.8607234954834, + 1.8828965425491333, + -5.459476947784424 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube608", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":5522, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface227", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.870063781738281, + 0.9865857362747192, + -5.4045538902282715 + ] + }, + { + "mesh":5523, + "name":"pasted__pasted__pCube410.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.828325271606445, + 1.7704380750656128, + -8.002669334411621 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube552", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":5524, + "name":"Rectangle835", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.7701778411865234, + 0.14451849460601807, + 4.989428997039795 + ] + }, + { + "mesh":5525, + "name":"Circle2297", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.210145950317383, + -2.22849702835083 + ] + }, + { + "mesh":5526, + "name":"Object2319", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.489236831665039, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5527, + "name":"pasted__pasted__pasted__pasted__pCylinder820", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.492883682250977, + 1.0796922445297241, + 14.820230484008789 + ] + }, + { + "mesh":5528, + "name":"Rectangle318.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451825618743896, + -0.14482587575912476 + ] + }, + { + "mesh":5529, + "name":"Circle2777", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03713607788086, + 1.9569236040115356, + 0.6277795433998108 + ] + }, + { + "mesh":5530, + "name":"pasted__pasted__pCylinder456", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.047704696655273, + 3.3518385887145996, + 6.554993629455566 + ] + }, + { + "mesh":5531, + "name":"Object2663", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80699920654297, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5532, + "name":"Circle2236", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0430431365966797, + -1.427894949913025 + ] + }, + { + "mesh":5533, + "name":"pasted__pasted__pasted__pasted__pCylinder477", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.068897247314453, + 1.0796922445297241, + 14.968375205993652 + ] + }, + { + "mesh":5534, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface591", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9315910339355469, + 0.6914509534835815, + -8.00407600402832 + ] + }, + { + "mesh":5535, + "name":"Object1923", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.164409637451172, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5536, + "name":"Circle2962", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.761801838874817, + 4.313884258270264 + ] + }, + { + "mesh":5537, + "name":"pasted__pasted__pCylinder602", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.485517501831055, + 5.058504581451416, + 2.372953176498413 + ] + }, + { + "mesh":5538, + "name":"Circle1552", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5986121892929077, + -6.002236843109131 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface759", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.5926618576049805 + ] + }, + { + "mesh":5539, + "name":"Object1813", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.0292431116104126, + 16.99413299560547 + ] + }, + { + "mesh":5540, + "name":"Circle2401", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.996707916259766, + 2.092106819152832, + -2.22849702835083 + ] + }, + { + "mesh":5541, + "name":"Circle2900", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.076141357421875, + 1.693252682685852, + 1.2501552104949951 + ] + }, + { + "mesh":5542, + "name":"Rectangle210", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8965835571289062, + 0.42382848262786865, + -12.738801002502441 + ] + }, + { + "mesh":5543, + "name":"Object1989", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.07159423828125, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5544, + "name":"Circle2763", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.985681533813477, + 2.128974437713623, + 0.6277795433998108 + ] + }, + { + "mesh":5545, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface723", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.407155990600586, + 0.6428669691085815, + 13.957598686218262 + ] + }, + { + "mesh":5546, + "name":"Rectangle583", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.475661277770996, + 0.14451777935028076, + 12.883796691894531 + ] + }, + { + "mesh":5547, + "name":"pasted__pasted__pasted__pPlane333", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.936365127563477, + 0.38866126537323, + 16.590402603149414 + ] + }, + { + "mesh":5548, + "name":"Object1852", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.144721984863281, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5549, + "name":"Circle2852", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.119661331176758, + 1.584893822669983, + 0.08928562700748444 + ] + }, + { + "mesh":5550, + "name":"Circle3197", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.044485092163086, + 1.8050354719161987, + 3.007336139678955 + ] + }, + { + "mesh":5551, + "name":"Circle1492", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7162774801254272, + -6.068505764007568 + ] + }, + { + "mesh":5552, + "name":"pasted__pasted__pCylinder594", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.708860397338867, + 4.937098026275635, + 1.7382797002792358 + ] + }, + { + "mesh":5553, + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface486", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.043405532836914, + 0.694060206413269, + -13.690650939941406 + ] + }, + { + "mesh":5554, + "name":"Rectangle1272", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7509279251098633, + 0.1627582311630249, + -2.653027057647705 + ] + }, + { + "mesh":5555, + "name":"Object2077", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.067373275756836, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube329", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -7.182558059692383 + ] + }, + { + "mesh":5556, + "name":"pasted__pasted__pCylinder4.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.85396957397461, + 2.0259571075439453, + -5.591787338256836 + ] + }, + { + "mesh":5557, + "name":"pasted__pasted__pasted__pCube646", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9360036849975586, + 0.7962988615036011, + -1.0746896266937256 + ] + }, + { + "mesh":5558, + "name":"Rectangle1436", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + 4.831761837005615 + ] + }, + { + "mesh":5559, + "name":"Circle2212", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7280527353286743, + -1.605362057685852 + ] + }, + { + "mesh":5560, + "name":"Obj3d66-647191-21-794", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8931865692138672, + 1.3100582361221313, + -8.65088939666748 + ] + }, + { + "mesh":5561, + "name":"Circle3221", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15157699584961, + 1.3550041913986206, + 3.2634575366973877 + ] + }, + { + "mesh":5562, + "name":"Circle1970", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8171836137771606, + -5.459476947784424 + ] + }, + { + "mesh":5563, + "name":"Object2291", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.409078598022461, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5564, + "name":"Obj3d66-647191-5-126", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.71799087524414, + 1.726946234703064, + 5.575058460235596 + ] + }, + { + "mesh":5565, + "name":"Circle2208", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6830543279647827, + -1.6307145357131958 + ] + }, + { + "mesh":5566, + "name":"pasted__pasted__pCube558", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.488710403442383, + 3.3573498725891113, + -7.466799736022949 + ] + }, + { + "mesh":5567, + "name":"Circle2651", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6817554235458374, + 0.6277795433998108 + ] + }, + { + "mesh":5568, + "name":"pasted__pasted__pasted__pasted__pCylinder472", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.147626876831055, + 0.6754261255264282, + 14.820230484008789 + ] + }, + { + "mesh":5569, + "name":"Obj3d66-647191-30-129", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980655670166016, + 1.6615828275680542, + -15.608846664428711 + ] + }, + { + "mesh":5570, + "name":"Circle3296", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.5336856842041, + 1.1723359823226929, + -5.688488960266113 + ] + }, + { + "mesh":5571, + "name":"Circle1835", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.925457000732422, + 1.955701231956482, + -4.697883605957031 + ] + }, + { + "mesh":5572, + "name":"Object2404", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.0519362688064575, + 16.99413299560547 + ] + }, + { + "mesh":5573, + "name":"pasted__pasted__pCylinder17", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.96588134765625, + 2.371694564819336, + -4.897231101989746 + ] + }, + { + "mesh":5574, + "name":"Sphere033", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.112104415893555, + 1.3557039499282837, + -5.459476947784424 + ] + }, + { + "mesh":5575, + "name":"Circle2493", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.285993576049805, + 1.383501648902893, + -2.6573808193206787 + ] + }, + { + "mesh":5576, + "name":"pasted__pasted__pCylinder715", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.176162719726562, + 1.5833181142807007, + 5.769821643829346 + ] + }, + { + "mesh":5577, + "name":"Rectangle1101", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.541181564331055, + 0.26499664783477783, + 13.961438179016113 + ] + }, + { + "mesh":5578, + "name":"Circle1874", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.80785369873047, + 1.6113225221633911, + -4.894843578338623 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube166", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":5579, + "name":"pasted__pasted__pCylinder570", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.675485610961914, + 4.842443466186523, + -1.1510206460952759 + ] + }, + { + "mesh":5580, + "name":"Obj3d66-647191-33-834", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.55536460876465, + 1.6400068998336792, + -15.576517105102539 + ] + }, + { + "mesh":5581, + "name":"Circle1929", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.042633056640625, + -4.656458377838135 + ] + }, + { + "mesh":5582, + "name":"Circle1574", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.898542404174805, + 1.357746958732605, + -5.037290096282959 + ] + }, + { + "mesh":5583, + "name":"Obj3d66-647191-36-136", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3533849716186523, + 1.6647711992263794, + -15.603741645812988 + ] + }, + { + "mesh":5584, + "name":"Circle2174", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.827646255493164, + 1.6497646570205688, + -6.046207904815674 + ] + }, + { + "mesh":5585, + "name":"pasted__pasted__pCylinder624", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.680505752563477, + 4.842443466186523, + 3.1229090690612793 + ] + }, + { + "mesh":5586, + "name":"pasted__pasted__pasted__pCube682", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 0.8213733434677124, + 14.271536827087402 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube394", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":5587, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube263", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + 0.3687158524990082 + ] + }, + { + "mesh":5588, + "name":"Object2223", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.504709243774414, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5589, + "name":"pasted__pasted__pasted__pPlane310", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.7200984954834, + 0.38407886028289795, + 12.949873924255371 + ] + }, + { + "mesh":5590, + "name":"Object2557", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.836530685424805, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5591, + "name":"Obj3d66-647191-29-937", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567289352416992, + 1.6631056070327759, + 18.3248233795166 + ] + }, + { + "mesh":5592, + "name":"pasted__pasted__pCube544", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.938676834106445, + 3.3453516960144043, + -7.562785625457764 + ] + }, + { + "mesh":5593, + "name":"pasted__pasted__pasted__pasted__pCylinder816", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231765747070312, + 0.6754261255264282, + 14.672083854675293 + ] + }, + { + "mesh":5594, + "name":"Rectangle1406", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 2.4923958778381348 + ] + }, + { + "mesh":5595, + "name":"Object2433", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.89137840270996, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5596, + "name":"Rectangle382.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + -5.691555500030518 + ] + }, + { + "mesh":5597, + "name":"Rectangle1319", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.844839096069336, + 0.5665737390518188, + -3.2191162109375 + ] + }, + { + "mesh":5598, + "name":"Object2446", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.873098373413086, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5599, + "name":"Circle1698", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.095937728881836, + 1.7602943181991577, + -5.460317134857178 + ] + }, + { + "mesh":5600, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube429", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402330160140991, + 7.104527950286865 + ] + }, + { + "mesh":5601, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder113", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692001342773438, + 1.3803664445877075, + 5.372909069061279 + ] + }, + { + "mesh":5602, + "name":"Circle3088", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7837990522384644, + 3.025517702102661 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface688", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -8.31318187713623 + ] + }, + { + "mesh":5603, + "name":"Rectangle903", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.70414924621582, + 1.039061188697815, + -5.45465612411499 + ] + }, + { + "mesh":5604, + "name":"Rectangle897", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 10.094789505004883, + 1.5609842538833618, + -13.539508819580078 + ] + }, + { + "mesh":5605, + "name":"pasted__pasted__pCube652", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + 1.4452604055404663 + ] + }, + { + "mesh":5606, + "name":"Circle3072", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7162774801254272, + 3.0635459423065186 + ] + }, + { + "mesh":5607, + "name":"Circle1950", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11112403869629, + 1.2372688055038452, + -5.098451137542725 + ] + }, + { + "mesh":5608, + "name":"pasted__pasted__pasted__pasted__pCylinder833", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414453506469727, + 0.6754261255264282, + 15.701667785644531 + ] + }, + { + "mesh":5609, + "name":"Circle2079", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.865270614624023, + 1.4875630140304565, + -5.459476947784424 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube547", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":5610, + "name":"Object2377", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.407674789428711, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5611, + "name":"pasted__pasted__pasted__pPlane289", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.565423965454102, + 0.3886607885360718, + 12.952313423156738 + ] + }, + { + "mesh":5612, + "name":"Obj3d66-647191-2-979", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980655670166016, + 1.6754928827285767, + 18.261308670043945 + ] + }, + { + "mesh":5613, + "name":"Rectangle777", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7509279251098633, + 0.1627582311630249, + -8.696611404418945 + ] + }, + { + "mesh":5614, + "name":"Object2530", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8745059967041, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5615, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder199", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.039926528930664, + 0.6288567781448364, + 14.163941383361816 + ] + }, + { + "mesh":5616, + "name":"Circle2444", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.05963897705078, + 1.4321244955062866, + -2.867497205734253 + ] + }, + { + "mesh":5617, + "name":"Object2358", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.434392929077148, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5618, + "name":"pasted__pasted__pCylinder555", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.02882194519043, + 2.5348849296569824, + -0.6329774260520935 + ] + }, + { + "mesh":5619, + "name":"Rectangle1112", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.777656555175781, + 0.5755866765975952, + 15.577927589416504 + ] + }, + { + "mesh":5620, + "name":"Object1836", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.167224884033203, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5621, + "name":"pasted__pasted__pCube394.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.45823860168457, + 5.073940753936768, + -3.591909885406494 + ] + }, + { + "mesh":5622, + "name":"pasted__pasted__pasted__pCylinder161", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.296171188354492, + 1.2660449743270874, + 12.94787883758545 + ] + }, + { + "mesh":5623, + "name":"Circle3006", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8171836137771606, + 3.6717348098754883 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube525", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":5624, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube309", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.840339660644531, + 1.2777515649795532, + 0.708948016166687 + ] + }, + { + "mesh":5625, + "name":"pasted__pasted__pasted__pCube186", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 1.399283766746521, + 16.828123092651367 + ] + }, + { + "mesh":5626, + "name":"Circle2672", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0833840370178223, + 0.6277796030044556 + ] + }, + { + "mesh":5627, + "name":"Rectangle398", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -13.386209487915039, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":5628, + "name":"Rectangle1210", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137231826782227, + 0.6166740655899048, + -6.690112113952637 + ] + }, + { + "mesh":5629, + "name":"Obj3d66-647191-36-152", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4519214630126953, + 1.6647709608078003, + 12.174738883972168 + ] + }, + { + "mesh":5630, + "name":"pasted__pasted__pasted__pCube733", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 0.9795023202896118, + 14.92426586151123 + ] + }, + { + "mesh":5631, + "name":"pasted__pasted__pPipe063", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.62812614440918, + 1.0766092538833618, + 6.3113017082214355 + ] + }, + { + "mesh":5632, + "name":"Circle2675", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0453553199768066, + 0.6277795433998108 + ] + }, + { + "mesh":5633, + "name":"Object1816", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.1620635986328125, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":5634, + "name":"Object2477", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.829500198364258, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__polySurface020", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":5635, + "name":"Circle2137", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.76585578918457, + 1.5622531175613403, + -5.459476947784424 + ] + }, + { + "mesh":5636, + "name":"Object2419", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8398494720459, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube663", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube433", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":5637, + "name":"Rectangle828", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4617443084716797, + 0.19702470302581787, + -1.6680387258529663 + ] + }, + { + "mesh":5638, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder118", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692001342773438, + 1.3803664445877075, + 5.662074089050293 + ] + }, + { + "mesh":5639, + "name":"Rectangle180", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.929096221923828, + 0.1627582311630249, + -12.833106994628906 + ] + }, + { + "mesh":5640, + "name":"Circle1717", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.007736206054688, + 1.9126533269882202, + -6.186267375946045 + ] + }, + { + "mesh":5641, + "name":"Object1839", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.163002014160156, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5642, + "name":"pasted__pasted__pPipe19", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.25892448425293, + 1.0760306119918823, + -7.821891784667969 + ] + }, + { + "mesh":5643, + "name":"Circle2706", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7050236463546753, + 0.02592896670103073 + ] + }, + { + "mesh":5644, + "name":"Object1879", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.106752395629883, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5645, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube331", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.88755989074707, + 0.3764752149581909, + 4.780620098114014 + ] + }, + { + "mesh":5646, + "name":"Circle1578", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3296104669570923, + -4.95387077331543 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube612", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":5647, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder074", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.525850296020508, + 0.14451825618743896, + 0.27502894401550293 + ] + }, + { + "mesh":5648, + "name":"Circle1822", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.285993576049805, + 1.4004048109054565, + -5.02040958404541 + ] + }, + { + "mesh":5649, + "name":"Obj3d66-647191-4-139", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.735698699951172, + 1.6804250478744507, + -9.301545143127441 + ] + }, + { + "mesh":5650, + "name":"Circle2176", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.820295333862305, + 1.6280206441879272, + -6.03389835357666 + ] + }, + { + "mesh":5651, + "name":"Rectangle950", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -7.766016483306885 + ] + }, + { + "mesh":5652, + "name":"pasted__pasted__pasted__pCube639", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 1.0594738721847534, + -0.3362038731575012 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube467", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface572", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":5653, + "name":"Object1809", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.047397494316101, + 16.99413299560547 + ] + }, + { + "mesh":5654, + "name":"Circle1732", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.02610969543457, + 1.8588446378707886, + -6.155491828918457 + ] + }, + { + "mesh":5655, + "name":"Circle2111", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.864397048950195, + 1.8951884508132935, + -5.459476947784424 + ] + }, + { + "mesh":5656, + "name":"Circle2758", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.967308044433594, + 2.1904215812683105, + 0.6277795433998108 + ] + }, + { + "mesh":5657, + "name":"Circle1913", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8288143873214722, + -4.776882171630859 + ] + }, + { + "mesh":5658, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube585", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 0.9979482889175415, + -2.7470192909240723 + ] + }, + { + "mesh":5659, + "name":"pasted__pasted__pCube519", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.60836410522461, + 0.9156700372695923, + -7.424197673797607 + ] + }, + { + "mesh":5660, + "name":"Object2318", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.490644454956055, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5661, + "name":"Object2596", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.78168296813965, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5662, + "name":"Circle2235", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.054292678833008, + -1.4215567111968994 + ] + }, + { + "mesh":5663, + "name":"Circle3075", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.750038504600525, + 3.044532060623169 + ] + }, + { + "mesh":5664, + "name":"pasted__pasted__pasted__pasted__pCylinder478", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.147626876831055, + 1.0796922445297241, + 14.820230484008789 + ] + }, + { + "mesh":5665, + "name":"Object1922", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.1658172607421875, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5666, + "name":"Object2247", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.470956802368164, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5667, + "name":"Circle1538", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7612920999526978, + -6.0938591957092285 + ] + }, + { + "mesh":5668, + "name":"Circle2961", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8517988920211792, + 4.364588737487793 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface758", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.5926618576049805 + ] + }, + { + "mesh":5669, + "name":"pasted__pasted__pasted__pCylinder633", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.911001205444336, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":5670, + "name":"Obj3d66-647191-35-117", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.981449127197266, + 1.6647709608078003, + 18.269943237304688 + ] + }, + { + "mesh":5671, + "name":"pasted__pasted__pasted__pCylinder695", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.440046310424805, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":5672, + "name":"Object1812", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.033781886100769, + 16.99413299560547 + ] + }, + { + "mesh":5673, + "name":"Circle3058", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.757936477661133, + 1.357746958732605, + 3.259732246398926 + ] + }, + { + "mesh":5674, + "name":"Rectangle581", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8061866760253906, + 0.14451777935028076, + 16.81107521057129 + ] + }, + { + "mesh":5675, + "name":"Object1851", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.146126747131348, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5676, + "name":"Circle2851", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.115150451660156, + 1.598108172416687, + 0.081727996468544 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors160", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":5677, + "name":"Obj3d66-647191-23-229", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.353109359741211, + 1.6626402139663696, + -15.548868179321289 + ] + }, + { + "mesh":5678, + "name":"pasted__pasted__pCylinder586", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.680505752563477, + 4.842443466186523, + 1.7256412506103516 + ] + }, + { + "mesh":5679, + "name":"Rectangle1270", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7509279251098633, + 0.1627582311630249, + -3.2240395545959473 + ] + }, + { + "mesh":5680, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube58.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.840343475341797, + 1.2794238328933716, + -6.227477073669434 + ] + }, + { + "mesh":5681, + "name":"Object2076", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.068780899047852, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface657", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -7.182558059692383 + ] + }, + { + "mesh":5682, + "name":"Object2400", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.070090889930725, + 16.99413299560547 + ] + }, + { + "mesh":5683, + "name":"Circle1878", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.789804458618164, + 1.558465838432312, + -4.925073623657227 + ] + }, + { + "mesh":5684, + "name":"Rectangle892", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.580522537231445, + 0.7316919565200806, + -5.663655757904053 + ] + }, + { + "mesh":5685, + "name":"pasted__pasted__pCube701", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.411561965942383, + 5.280849933624268, + 3.5185511112213135 + ] + }, + { + "mesh":5686, + "name":"Circle3253", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.032041549682617, + 1.8237169981002808, + 4.3679704666137695 + ] + }, + { + "mesh":5687, + "name":"Circle2186", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.81686782836914, + 1.3353692293167114, + -5.860021591186523 + ] + }, + { + "mesh":5688, + "name":"Circle2636", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.898542404174805, + 1.3985601663589478, + 0.6277793645858765 + ] + }, + { + "mesh":5689, + "name":"pasted__pasted__pasted__pCube645", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9360036849975586, + 1.3207260370254517, + -1.0746896266937256 + ] + }, + { + "mesh":5690, + "name":"Rectangle1175", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.92892837524414, + 0.14451777935028076, + 16.01140785217285 + ] + }, + { + "mesh":5691, + "name":"Object2407", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.0383204221725464, + 16.99413299560547 + ] + }, + { + "mesh":5692, + "name":"Obj3d66-647191-20-072", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8916492462158203, + 1.3201972246170044, + -8.65088939666748 + ] + }, + { + "mesh":5693, + "name":"Sphere053", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.19780158996582, + 1.3344708681106567, + 3.256406545639038 + ] + }, + { + "mesh":5694, + "name":"Circle2599", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.065542697906494, + 1.4410579204559326 + ] + }, + { + "mesh":5695, + "name":"Circle2476", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.07756233215332, + 1.7081788778305054, + -2.837501049041748 + ] + }, + { + "mesh":5696, + "name":"Object2290", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.410484313964844, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5697, + "name":"Circle1879", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.785289764404297, + 1.545251727104187, + -4.932631015777588 + ] + }, + { + "mesh":5698, + "name":"pasted__pasted__pCube557", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.022483825683594, + 3.3573498725891113, + -7.466799736022949 + ] + }, + { + "mesh":5699, + "name":"Circle2650", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6973201036453247, + 0.6277796030044556 + ] + }, + { + "mesh":5700, + "name":"pasted__pasted__pasted__pasted__pCylinder471", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.068897247314453, + 0.6754261255264282, + 14.968375205993652 + ] + }, + { + "mesh":5701, + "name":"Object2028", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.136286735534668, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5702, + "name":"Obj3d66-647191-23-246", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.586368560791016, + 1.6626402139663696, + -9.273892402648926 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube198", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -1.1389737129211426 + ] + }, + { + "mesh":5703, + "name":"Circle3023", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8932405710220337, + 3.6717348098754883 + ] + }, + { + "mesh":5704, + "name":"Obj3d66-647191-29-934", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980937957763672, + 1.6631056070327759, + -15.603754043579102 + ] + }, + { + "mesh":5705, + "name":"Circle2426", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08858871459961, + 1.7848728895187378, + -2.22849702835083 + ] + }, + { + "mesh":5706, + "name":"Circle1944", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.07200050354004, + 1.3744639158248901, + -5.0364484786987305 + ] + }, + { + "mesh":5707, + "name":"Object2403", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.0564748048782349, + 16.99413299560547 + ] + }, + { + "mesh":5708, + "name":"pasted__pasted__pCylinder634", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.708860397338867, + 4.937098026275635, + 3.95070743560791 + ] + }, + { + "mesh":5709, + "name":"Circle2756", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.4164232015609741, + 0.5835075974464417 + ] + }, + { + "mesh":5710, + "name":"Object2178", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.448455810546875, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5711, + "name":"Rectangle378", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + -0.1830783486366272 + ] + }, + { + "mesh":5712, + "name":"Obj3d66-647191-23-248", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.891922950744629, + 1.3089038133621216, + -8.65088939666748 + ] + }, + { + "mesh":5713, + "name":"pasted__pasted__pCube687", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.460060119628906, + 2.603695869445801, + 5.477092266082764 + ] + }, + { + "mesh":5714, + "name":"pasted__pasted__pTorus036", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.092384338378906, + 5.048586368560791, + -1.1414215564727783 + ] + }, + { + "mesh":5715, + "name":"Obj3d66-647191-32-904", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567583084106445, + 1.6615828275680542, + -15.543865203857422 + ] + }, + { + "mesh":5716, + "name":"Circle1928", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.0538864135742188, + -4.650119781494141 + ] + }, + { + "mesh":5717, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder103", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + 6.244637489318848 + ] + }, + { + "mesh":5718, + "name":"Circle1573", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.705896377563477, + 1.3744639158248901, + -5.037290096282959 + ] + }, + { + "mesh":5719, + "name":"Obj3d66-647191-35-104", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3533849716186523, + 1.6647711992263794, + -15.548868179321289 + ] + }, + { + "mesh":5720, + "name":"Circle2173", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.831317901611328, + 1.6606367826461792, + -6.05236291885376 + ] + }, + { + "mesh":5721, + "name":"pasted__pasted__pPipe101", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.559572219848633, + 2.7832746505737305, + -0.745415210723877 + ] + }, + { + "mesh":5722, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder40", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 0.3832782506942749, + -5.3046650886535645 + ] + }, + { + "mesh":5723, + "name":"pasted__pasted__pCylinder623", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.39253044128418, + 4.65749979019165, + 3.135547399520874 + ] + }, + { + "mesh":5724, + "name":"pasted__pasted__pasted__pasted__pCylinder854", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.602706909179688, + 0.6754258871078491, + 13.642666816711426 + ] + }, + { + "mesh":5725, + "name":"pasted__pasted__pasted__pCube189", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 0.8213735818862915, + 16.828125 + ] + }, + { + "mesh":5726, + "name":"pasted__pasted__pCylinder2", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.835870742797852, + 1.9595407247543335, + -4.968385219573975 + ] + }, + { + "mesh":5727, + "name":"pasted__pasted__pasted__pCube681", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 0.9795023202896118, + 14.271536827087402 + ] + }, + { + "mesh":5728, + "name":"Circle2807", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.228336334228516, + 1.3416365385055542, + 0.6277793645858765 + ] + }, + { + "mesh":5729, + "name":"Object2222", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.506113052368164, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5730, + "name":"Object2573", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.814029693603516, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5731, + "name":"pasted__pasted__pasted__pasted__pCylinder891", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.602706909179688, + 0.6754261255264282, + 15.701493263244629 + ] + }, + { + "mesh":5732, + "name":"Object2556", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.83793830871582, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5733, + "name":"pasted__pasted__pasted__pasted__pCylinder815", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414453506469727, + 0.6754261255264282, + 14.672256469726562 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube353", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -1.1389737129211426 + ] + }, + { + "mesh":5734, + "name":"Rectangle1405", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 3.3429574966430664 + ] + }, + { + "mesh":5735, + "name":"pasted__pasted__pPipe123", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.159643173217773, + 2.5653624534606934, + 7.779204368591309 + ] + }, + { + "mesh":5736, + "name":"Rectangle381", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + -4.3144378662109375 + ] + }, + { + "mesh":5737, + "name":"pasted__pasted__pasted__pCube729", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 0.9795023202896118, + 15.524377822875977 + ] + }, + { + "mesh":5738, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube322", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.88755989074707, + 0.3764752149581909, + 5.949184894561768 + ] + }, + { + "mesh":5739, + "name":"Circle3304", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.439908981323242, + 0.9733654260635376, + -5.688488960266113 + ] + }, + { + "mesh":5740, + "name":"Circle1697", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.092260360717773, + 1.7725833654403687, + -5.460317134857178 + ] + }, + { + "mesh":5741, + "name":"Obj3d66-647191-17-856", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980937957763672, + 1.672275424003601, + 18.269943237304688 + ] + }, + { + "mesh":5742, + "name":"Circle3087", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7950526475906372, + 3.019179582595825 + ] + }, + { + "mesh":5743, + "name":"polySurface335", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.950403213500977, + 1.4009381532669067, + 16.16634750366211 + ] + }, + { + "mesh":5744, + "name":"Circle1740", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.055511474609375, + 1.7727497816085815, + -6.1062517166137695 + ] + }, + { + "mesh":5745, + "name":"pasted__pasted__pCube651", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + 1.9790223836898804 + ] + }, + { + "mesh":5746, + "name":"pasted__pasted__pPipe046", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.465848922729492, + -0.6296476125717163, + -7.207759380340576 + ] + }, + { + "mesh":5747, + "name":"Object2525", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.881532669067383, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5748, + "name":"Circle1949", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116270065307617, + 1.4259346723556519, + -5.119868755340576 + ] + }, + { + "mesh":5749, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube058", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137231826782227, + 0.6166743040084839, + -0.37183117866516113 + ] + }, + { + "mesh":5750, + "name":"Object2376", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.409078598022461, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5751, + "name":"Obj3d66-647191-1-674", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980655670166016, + 1.670127511024475, + 18.262096405029297 + ] + }, + { + "mesh":5752, + "name":"pasted__pasted__pCube849", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.032896041870117, + 1.027711033821106, + 14.626144409179688 + ] + }, + { + "mesh":5753, + "name":"Rectangle1340", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + -0.7862717509269714 + ] + }, + { + "mesh":5754, + "name":"Circle1666", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.978334426879883, + 2.1535534858703613, + -5.460317134857178 + ] + }, + { + "mesh":5755, + "name":"Circle2443", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15263557434082, + 1.5625349283218384, + -2.228497266769409 + ] + }, + { + "mesh":5756, + "name":"pasted__pasted__pCylinder554", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.019645690917969, + 2.5075578689575195, + -0.628324568271637 + ] + }, + { + "mesh":5757, + "name":"Rectangle1111", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.777656555175781, + 0.6124781370162964, + 15.577927589416504 + ] + }, + { + "mesh":5758, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube417", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + 3.5707998275756836 + ] + }, + { + "mesh":5759, + "name":"Object1835", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.16862678527832, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5760, + "name":"pasted__pasted__pCube409.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.556926727294922, + 5.064568996429443, + -7.484667778015137 + ] + }, + { + "mesh":5761, + "name":"Rectangle388.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + -13.954267501831055 + ] + }, + { + "mesh":5762, + "name":"pasted__pasted__pasted__pasted__pCylinder878", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785398483276367, + 1.0796922445297241, + 14.672256469726562 + ] + }, + { + "mesh":5763, + "name":"Object2204", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.41189193725586, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5764, + "name":"Circle1940", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.918843150138855, + -4.726177215576172 + ] + }, + { + "mesh":5765, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder097", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.694669723510742, + 0.6244927644729614, + 13.959234237670898 + ] + }, + { + "mesh":5766, + "name":"Obj3d66-647191-35-120", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.4519214630126953, + 1.6647709608078003, + 12.119864463806152 + ] + }, + { + "mesh":5767, + "name":"Object2599", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.897003173828125, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5768, + "name":"pasted__pasted__pCube776", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939355850219727, + 5.073940753936768, + 7.032785415649414 + ] + }, + { + "mesh":5769, + "name":"Circle2874", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.973241806030273, + 1.9976691007614136, + 1.4224951267242432 + ] + }, + { + "mesh":5770, + "name":"Circle2136", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.69016456604004, + 1.341305136680603, + -5.459476947784424 + ] + }, + { + "mesh":5771, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface714", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.309789657592773, + 0.9171165227890015, + 12.764594078063965 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube326", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.700583457946777 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube662", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":5772, + "name":"pasted__pasted__pCylinder366", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.872268676757812, + 0.08547818660736084, + -5.097636699676514 + ] + }, + { + "mesh":5773, + "name":"Circle3063", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.379219889640808, + 3.298072576522827 + ] + }, + { + "mesh":5774, + "name":"pasted__pasted__pasted__pPlane332", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.57813835144043, + 0.38866126537323, + 16.590402603149414 + ] + }, + { + "mesh":5775, + "name":"pasted__pasted__pasted__pasted__pCylinder454", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.069196701049805, + 0.6754258871078491, + 13.642838478088379 + ] + }, + { + "mesh":5776, + "name":"Circle1716", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.011409759521484, + 1.9018915891647339, + -6.180110931396484 + ] + }, + { + "mesh":5777, + "name":"pasted__pasted__pCylinder443", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.187868118286133, + 2.528435707092285, + -7.4060139656066895 + ] + }, + { + "mesh":5778, + "name":"pasted__pasted__pPipe18", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.680997848510742, + 1.0770174264907837, + -7.821891784667969 + ] + }, + { + "mesh":5779, + "name":"Circle2416", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.051836013793945, + 1.9077662229537964, + -2.22849702835083 + ] + }, + { + "mesh":5780, + "name":"Object1878", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.108160018920898, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5781, + "name":"pasted__pasted__pCylinder707", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.964590072631836, + 2.343602180480957, + 4.6860551834106445 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube611", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":5782, + "name":"Circle1821", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.101621627807617, + 1.3353694677352905, + -5.0487470626831055 + ] + }, + { + "mesh":5783, + "name":"polySurface118", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.619279861450195, + 1.4434689283370972, + 16.166187286376953 + ] + }, + { + "mesh":5784, + "name":"Rectangle947", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -7.766016483306885 + ] + }, + { + "mesh":5785, + "name":"pasted__pasted__pasted__polySurface539", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9275474548339844, + 1.1616286039352417, + -0.5274756550788879 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group136", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.2695987224578857 + ] + }, + { + "mesh":5786, + "name":"Object2516", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.894187927246094, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5787, + "name":"Circle3092", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5847941637039185, + 3.1375980377197266 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors131", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":5788, + "name":"Obj3d66-647191-1-677", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.452716827392578, + 1.670127511024475, + 12.112019538879395 + ] + }, + { + "mesh":5789, + "name":"Object1808", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.0519362688064575, + 16.99413299560547 + ] + }, + { + "mesh":5790, + "name":"pasted__pasted__pTorus052", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.507844924926758, + 5.048587322235107, + 4.8438262939453125 + ] + }, + { + "mesh":5791, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube427", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + 6.515718936920166 + ] + }, + { + "mesh":5792, + "name":"Object2410", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.0247045755386353, + 16.99413299560547 + ] + }, + { + "mesh":5793, + "name":"Object2317", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.492053985595703, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5794, + "name":"Obj3d66-647191-19-276", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.353109359741211, + 1.6718100309371948, + -15.548868179321289 + ] + }, + { + "mesh":5795, + "name":"pasted__pasted__pasted__pasted__pCylinder479", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.069196701049805, + 1.0796922445297241, + 14.672256469726562 + ] + }, + { + "mesh":5796, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube287", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9486875534057617, + 1.3867684602737427, + -8.102176666259766 + ] + }, + { + "mesh":5797, + "name":"Object1921", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.167224884033203, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube593", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":5798, + "name":"Circle2264", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.517868041992188, + 1.1369620561599731, + -1.917352557182312 + ] + }, + { + "mesh":5799, + "name":"Object2246", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.472362518310547, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5800, + "name":"Circle1537", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7725452184677124, + -6.100196361541748 + ] + }, + { + "mesh":5801, + "name":"Circle2245", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9417961835861206, + -1.4849380254745483 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface757", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.5926618576049805 + ] + }, + { + "mesh":5802, + "name":"Obj3d66-647191-9-462", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.376347541809082, + 1.6471415758132935, + -15.545455932617188 + ] + }, + { + "mesh":5803, + "name":"Rectangle904", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.381135940551758, + 1.039061188697815, + -5.454657077789307 + ] + }, + { + "mesh":5804, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube587", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 1.2274454832077026, + -2.7470192909240723 + ] + }, + { + "mesh":5805, + "name":"Rectangle1308", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -3.4504623413085938 + ] + }, + { + "mesh":5806, + "name":"Object2449", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.868879318237305, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5807, + "name":"Object1811", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.0383204221725464, + 16.99413299560547 + ] + }, + { + "mesh":5808, + "name":"Rectangle580", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.475661277770996, + 0.14451777935028076, + 16.81107521057129 + ] + }, + { + "mesh":5809, + "name":"pasted__pasted__pasted__pasted__pPipe089", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.698280334472656, + 0.43142926692962646, + 15.858174324035645 + ] + }, + { + "mesh":5810, + "name":"Object1850", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.1475372314453125, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5811, + "name":"pasted__pasted__pCylinder610", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.39253044128418, + 4.65749979019165, + 1.7382797002792358 + ] + }, + { + "mesh":5812, + "name":"Object1890", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.091281890869141, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5813, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface108", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.609533309936523, + 0.2563687562942505, + 4.470975875854492 + ] + }, + { + "mesh":5814, + "name":"Circle1702", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.110639572143555, + 1.7111369371414185, + -5.460317134857178 + ] + }, + { + "mesh":5815, + "name":"Rectangle1268", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7360172271728516, + 0.510698676109314, + -2.9385335445404053 + ] + }, + { + "mesh":5816, + "name":"Object2075", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.070188522338867, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5817, + "name":"Object2399", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.0746296644210815, + 16.99413299560547 + ] + }, + { + "mesh":5818, + "name":"pasted__pasted__pCylinder603", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.41126823425293, + 5.305135250091553, + 2.3673641681671143 + ] + }, + { + "mesh":5819, + "name":"pasted__pasted__pCylinder538", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.872831344604492, + 2.0703415870666504, + -0.5537959337234497 + ] + }, + { + "mesh":5820, + "name":"pasted__pasted__pasted__pCube644", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9360036849975586, + 1.0594733953475952, + -1.0746896266937256 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface665", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -6.569958209991455 + ] + }, + { + "mesh":5821, + "name":"Obj3d66-647191-19-295", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.891922950744629, + 1.3180736303329468, + -8.65088939666748 + ] + }, + { + "mesh":5822, + "name":"Circle3174", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.05963897705078, + 1.4321244955062866, + 3.0327348709106445 + ] + }, + { + "mesh":5823, + "name":"Object2289", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.41189193725586, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5824, + "name":"pasted__pasted__pasted__pasted__pasted__pCylinder023", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.656749725341797, + 0.6449607610702515, + 13.819491386413574 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube563", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":5825, + "name":"pasted__pasted__pCube556", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.32356834411621, + 3.367276191711426, + -7.466108322143555 + ] + }, + { + "mesh":5826, + "name":"Rectangle200", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.3639631271362305, + 0.1627582311630249, + -12.833106994628906 + ] + }, + { + "mesh":5827, + "name":"pasted__pasted__pPipe124", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.144113540649414, + 2.7832746505737305, + 7.779204368591309 + ] + }, + { + "mesh":5828, + "name":"pasted__pasted__pasted__pasted__pCylinder470", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886205673217773, + 0.6754261255264282, + 14.968205451965332 + ] + }, + { + "mesh":5829, + "name":"Obj3d66-647191-22-676", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.58660316467285, + 1.6631056070327759, + -9.273892402648926 + ] + }, + { + "mesh":5830, + "name":"Obj3d66-647191-7-349", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.880228042602539, + 1.2907220125198364, + -8.602876663208008 + ] + }, + { + "mesh":5831, + "name":"Obj3d66-647191-28-059", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980655670166016, + 1.6571954488754272, + -15.60590648651123 + ] + }, + { + "mesh":5832, + "name":"pasted__pasted__pasted__pPlane330", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.4700870513916, + 0.3886607885360718, + 16.266347885131836 + ] + }, + { + "mesh":5833, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube362", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.21303939819336, + 0.20878851413726807, + 5.480300426483154 + ] + }, + { + "mesh":5834, + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface484", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.234648704528809, + 0.6837161779403687, + -13.680115699768066 + ] + }, + { + "mesh":5835, + "name":"Rectangle377.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508668899536133, + 0.14451754093170166, + 1.1940416097640991 + ] + }, + { + "mesh":5836, + "name":"Rectangle1099", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.770774841308594, + 0.5256079435348511, + 13.961438179016113 + ] + }, + { + "mesh":5837, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface728", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.68073081970215, + 1.3311516046524048, + 12.764594078063965 + ] + }, + { + "mesh":5838, + "name":"pasted__pasted__pCylinder569", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.292848587036133, + 4.9288010597229, + 0.19056819379329681 + ] + }, + { + "mesh":5839, + "name":"Obj3d66-647191-31-942", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567583084106445, + 1.6571954488754272, + -15.546807289123535 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube332", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -6.569958209991455 + ] + }, + { + "mesh":5840, + "name":"Circle1927", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.065140724182129, + -4.643781661987305 + ] + }, + { + "mesh":5841, + "name":"pasted__pasted__pTorus020", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.050233840942383, + 3.341920852661133, + -7.619144439697266 + ] + }, + { + "mesh":5842, + "name":"Circle1572", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.757936477661133, + 1.3744639158248901, + -5.037290096282959 + ] + }, + { + "mesh":5843, + "name":"pasted__pasted__pasted__pasted__pCylinder846", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.863826751708984, + 0.28987395763397217, + 13.790817260742188 + ] + }, + { + "mesh":5844, + "name":"Obj3d66-647191-34-797", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3440046310424805, + 1.6606823205947876, + -15.576766014099121 + ] + }, + { + "mesh":5845, + "name":"Circle2172", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.834997177124023, + 1.6715089082717896, + -6.0585174560546875 + ] + }, + { + "mesh":5846, + "name":"pasted__pasted__pCylinder614", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.38496971130371, + 4.65770959854126, + 0.010608889162540436 + ] + }, + { + "mesh":5847, + "name":"pasted__pasted__pCylinder622", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.325416564941406, + 4.2707743644714355, + 3.135547399520874 + ] + }, + { + "mesh":5848, + "name":"pasted__pasted__pasted__pCube680", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 1.399283766746521, + 14.271536827087402 + ] + }, + { + "mesh":5849, + "name":"Object2555", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839344024658203, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5850, + "name":"pasted__pasted__pasted__pCube420", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9360036849975586, + 0.7962988615036011, + -7.406493186950684 + ] + }, + { + "mesh":5851, + "name":"pasted__pasted__pasted__pasted__pCylinder814", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.492883682250977, + 0.6754261255264282, + 14.820230484008789 + ] + }, + { + "mesh":5852, + "name":"Circle2439", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.405131220817566, + -2.1842198371887207 + ] + }, + { + "mesh":5853, + "name":"Rectangle1404", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 3.3429574966430664 + ] + }, + { + "mesh":5854, + "name":"pasted__pasted__pasted__pasted__pasted__pCylinder052", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.57228660583496, + 0.6772705316543579, + 12.73698902130127 + ] + }, + { + "mesh":5855, + "name":"Rectangle380", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + -2.9373161792755127 + ] + }, + { + "mesh":5856, + "name":"Obj3d66-647191-11-098", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.563129425048828, + 1.6471415758132935, + -9.332342147827148 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube473", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":5857, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube275", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + -0.21376433968544006 + ] + }, + { + "mesh":5858, + "name":"Circle2705", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6937700510025024, + 0.032267071306705475 + ] + }, + { + "mesh":5859, + "name":"polySurface366", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.413721084594727, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":5860, + "name":"pasted__pasted__pCube398", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + -4.785083770751953 + ] + }, + { + "mesh":5861, + "name":"pasted__pasted__pasted__pasted__pCylinder879", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.602706909179688, + 1.0796922445297241, + 14.672083854675293 + ] + }, + { + "mesh":5862, + "name":"Line2399", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.823993682861328, + 4.526463508605957, + -4.257262706756592 + ] + }, + { + "mesh":5863, + "name":"Circle3112", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.4259344339370728, + 3.343151092529297 + ] + }, + { + "mesh":5864, + "name":"Circle3086", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8063067197799683, + 3.0128414630889893 + ] + }, + { + "mesh":5865, + "name":"pasted__pasted__pCube650", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038042068481445, + 5.064568996429443, + 2.280115842819214 + ] + }, + { + "mesh":5866, + "name":"Object2524", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.882936477661133, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5867, + "name":"Circle1948", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116270065307617, + 1.3354614973068237, + -4.998363018035889 + ] + }, + { + "mesh":5868, + "name":"Object2375", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.410484313964844, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5869, + "name":"Rectangle1306", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -2.599900722503662 + ] + }, + { + "mesh":5870, + "name":"Obj3d66-647191-3-604", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.992870330810547, + 1.7478052377700806, + 18.371305465698242 + ] + }, + { + "mesh":5871, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface708", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036214828491211, + 0.6428669691085815, + 13.957598686218262 + ] + }, + { + "mesh":5872, + "name":"pasted__pasted__pCylinder329.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.166017532348633, + 4.937097072601318, + -7.035693645477295 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube558", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":5873, + "name":"Circle1665", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.974660873413086, + 2.1658430099487305, + -5.460317134857178 + ] + }, + { + "mesh":5874, + "name":"Circle2442", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.228336334228516, + 1.3416365385055542, + -2.228497266769409 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube518", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":5875, + "name":"pasted__pasted__pCylinder553", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.010469436645508, + 2.4802327156066895, + -0.62367182970047 + ] + }, + { + "mesh":5876, + "name":"Circle1609", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.096060276031494, + -5.460317134857178 + ] + }, + { + "mesh":5877, + "name":"Rectangle1092", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.48715591430664, + 0.14451825618743896, + 14.846410751342773 + ] + }, + { + "mesh":5878, + "name":"Object1834", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.170035362243652, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5879, + "name":"pasted__pasted__pCube408.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.554912567138672, + 5.052017688751221, + -7.785749912261963 + ] + }, + { + "mesh":5880, + "name":"Circle1939", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9300967454910278, + -4.719839572906494 + ] + }, + { + "mesh":5881, + "name":"Circle1746", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.07756233215332, + 1.7081788778305054, + -6.069321632385254 + ] + }, + { + "mesh":5882, + "name":"Rectangle1162", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.14859962463379, + 0.6124781370162964, + 15.577927589416504 + ] + }, + { + "mesh":5883, + "name":"pasted__pasted__pCube777", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + 6.7317023277282715 + ] + }, + { + "mesh":5884, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube053", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137231826782227, + 0.6166740655899048, + -4.8599371910095215 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube412", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":5885, + "name":"Circle2135", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.683805465698242, + 1.2725671529769897, + -5.459476947784424 + ] + }, + { + "mesh":5886, + "name":"Circle1494", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.738784670829773, + -6.081182479858398 + ] + }, + { + "mesh":5887, + "name":"Circle1853", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.888704299926758, + 1.8480833768844604, + -4.759433746337891 + ] + }, + { + "mesh":5888, + "name":"pasted__pasted__pCylinder410", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.927236557006836, + 3.133455753326416, + -8.200495719909668 + ] + }, + { + "mesh":5889, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder47", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.190902709960938, + 0.8538147211074829, + -6.874094486236572 + ] + }, + { + "mesh":5890, + "name":"pasted__pasted__pasted__pCylinder723", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565055847168, + 1.2660447359085083, + 14.186617851257324 + ] + }, + { + "mesh":5891, + "name":"pasted__pasted__pasted__pCylinder455", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.929457664489746, + 0.864582896232605, + -6.931586742401123 + ] + }, + { + "mesh":5892, + "name":"Obj3d66-647191-10-405", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.555200576782227, + 1.6559807062149048, + -15.576221466064453 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube661", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":5893, + "name":"pasted__pasted__pasted__pasted__pCylinder453", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.147626876831055, + 0.6754258871078491, + 13.790817260742188 + ] + }, + { + "mesh":5894, + "name":"Object2322", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.48501968383789, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5895, + "name":"Circle1715", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.993036270141602, + 1.9557007551193237, + -6.210886478424072 + ] + }, + { + "mesh":5896, + "name":"pasted__pasted__pCylinder442", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.187856674194336, + 3.146695137023926, + -8.400985717773438 + ] + }, + { + "mesh":5897, + "name":"Circle3027", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.210145950317383, + 3.6717348098754883 + ] + }, + { + "mesh":5898, + "name":"pasted__pasted__pPipe17", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.699180603027344, + 1.2917834520339966, + -7.821891784667969 + ] + }, + { + "mesh":5899, + "name":"Object1877", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.109565734863281, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube610", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":5900, + "name":"Circle3139", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.02610969543457, + 1.993791937828064, + 3.6717348098754883 + ] + }, + { + "mesh":5901, + "name":"Circle1820", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.151430130004883, + 1.3380340337753296, + -5.041092395782471 + ] + }, + { + "mesh":5902, + "name":"Circle2674", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0580310821533203, + 0.6277795433998108 + ] + }, + { + "mesh":5903, + "name":"Obj3d66-647191-21-787", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.97991180419922, + 1.6637946367263794, + -15.548868179321289 + ] + }, + { + "mesh":5904, + "name":"Circle1920", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.557158350944519, + -4.929880142211914 + ] + }, + { + "mesh":5905, + "name":"Rectangle954", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -9.494046211242676 + ] + }, + { + "mesh":5906, + "name":"Circle1711", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.23468589782715, + 1.2725671529769897, + -5.460318088531494 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door096", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -6.569958209991455 + ] + }, + { + "mesh":5907, + "name":"Object1807", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.0564748048782349, + 16.99413299560547 + ] + }, + { + "mesh":5908, + "name":"pasted__pasted__pCylinder333", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.874229431152344, + 4.853360652923584, + -4.154564380645752 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube604", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":5909, + "name":"Circle3210", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.092260360717773, + 1.6651314496994019, + 3.087351083755493 + ] + }, + { + "mesh":5910, + "name":"Circle1911", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8063069581985474, + -4.789557933807373 + ] + }, + { + "mesh":5911, + "name":"Object2316", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.493457794189453, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5912, + "name":"Obj3d66-647191-18-828", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3518457412719727, + 1.6729644536972046, + -15.548868179321289 + ] + }, + { + "mesh":5913, + "name":"pasted__pasted__pCube843", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.032896041870117, + 1.027711272239685, + 15.27509880065918 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube342", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":5914, + "name":"Circle1752", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0996150970459, + 1.64360773563385, + -6.032391548156738 + ] + }, + { + "mesh":5915, + "name":"pasted__pasted__pCylinder448", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.173770904541016, + 3.2234039306640625, + -7.1747145652771 + ] + }, + { + "mesh":5916, + "name":"Circle3224", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.236181259155273, + 1.3601590394973755, + 3.2505078315734863 + ] + }, + { + "mesh":5917, + "name":"Object1920", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.16862678527832, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5918, + "name":"Object2245", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.473770141601562, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5919, + "name":"Circle1536", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7837990522384644, + -6.106534957885742 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube390", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.5926618576049805 + ] + }, + { + "mesh":5920, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube424", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + 5.238515853881836 + ] + }, + { + "mesh":5921, + "name":"Rectangle604", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.652071952819824, + 0.14451777935028076, + 15.133939743041992 + ] + }, + { + "mesh":5922, + "name":"Object2510", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.78309440612793, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5923, + "name":"Object1849", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.148944854736328, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door093", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.393779754638672 + ] + }, + { + "mesh":5924, + "name":"Circle2936", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6493052244186401, + 4.250502586364746 + ] + }, + { + "mesh":5925, + "name":"Object1889", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.092689514160156, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5926, + "name":"Rectangle1124", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.5579833984375, + 0.14451777935028076, + 16.01140785217285 + ] + }, + { + "mesh":5927, + "name":"Rectangle1267", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9545860290527344, + 0.6844395399093628, + 1.8242604732513428 + ] + }, + { + "mesh":5928, + "name":"Object2074", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.07159423828125, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5929, + "name":"Object2398", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.079168438911438, + 16.99413299560547 + ] + }, + { + "mesh":5930, + "name":"Circle1814", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10921859741211, + 1.5954049825668335, + -4.893336772918701 + ] + }, + { + "mesh":5931, + "name":"pasted__pasted__pCylinder537", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.863656997680664, + 2.043013095855713, + -0.5491431951522827 + ] + }, + { + "mesh":5932, + "name":"pasted__pasted__pasted__polySurface541", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9251632690429688, + 1.1616286039352417, + -0.8948373198509216 + ] + }, + { + "mesh":5933, + "name":"Obj3d66-647191-18-847", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8931865692138672, + 1.3192280530929565, + -8.65088939666748 + ] + }, + { + "mesh":5934, + "name":"Object2288", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.413299560546875, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5935, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube352", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.057670593261719, + 0.7419441938400269, + 1.7233917713165283 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube549", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":5936, + "name":"pasted__pasted__pCylinder329.007", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.811731338500977, + 4.9288010597229, + -5.68145751953125 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube498", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "mesh":5937, + "name":"Object2328", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.476581573486328, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5938, + "name":"Circle2231", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8517988920211792, + -1.5356427431106567 + ] + }, + { + "mesh":5939, + "name":"pasted__pasted__pCube549", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.132665634155273, + 3.3579039573669434, + -7.564801216125488 + ] + }, + { + "mesh":5940, + "name":"Circle2648", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7284499406814575, + 0.6277796030044556 + ] + }, + { + "mesh":5941, + "name":"Circle3071", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7050236463546753, + 3.0698840618133545 + ] + }, + { + "mesh":5942, + "name":"pasted__pasted__pasted__pasted__pCylinder469", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.807779312133789, + 0.6754261255264282, + 14.820230484008789 + ] + }, + { + "mesh":5943, + "name":"Obj3d66-647191-21-792", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.58763313293457, + 1.6637946367263794, + -9.273892402648926 + ] + }, + { + "mesh":5944, + "name":"Object1847", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.151752471923828, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5945, + "name":"Circle3165", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.124176025390625, + 1.6658674478530884, + 3.6717348098754883 + ] + }, + { + "mesh":5946, + "name":"Object2401", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.0655521154403687, + 16.99413299560547 + ] + }, + { + "mesh":5947, + "name":"pasted__pasted__pCube760", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.085103988647461, + 1.6318343877792358, + 5.562196254730225 + ] + }, + { + "mesh":5948, + "name":"Rectangle376.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508668899536133, + 0.14451754093170166, + 2.5711569786071777 + ] + }, + { + "mesh":5949, + "name":"pasted__pasted__pCylinder370", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2247467041015625, + 1.5741528272628784, + -5.402458190917969 + ] + }, + { + "mesh":5950, + "name":"Circle3207", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08123779296875, + 1.69741690158844, + 3.068885564804077 + ] + }, + { + "mesh":5951, + "name":"pasted__pasted__pCylinder568", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.673418045043945, + 4.837941646575928, + 0.19056819379329681 + ] + }, + { + "mesh":5952, + "name":"Obj3d66-647191-30-115", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567583084106445, + 1.6615828275680542, + -15.608843803405762 + ] + }, + { + "mesh":5953, + "name":"Circle2514", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.995292663574219, + 1.9324370622634888, + -1.470711588859558 + ] + }, + { + "mesh":5954, + "name":"Circle1926", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.0763940811157227, + -4.637444019317627 + ] + }, + { + "mesh":5955, + "name":"pasted__pasted__pasted__pasted__pasted__pCube468", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6651134490966797, + 1.0093942880630493, + 13.878122329711914 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube381", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 4.803884506225586 + ] + }, + { + "mesh":5956, + "name":"pasted__pasted__pasted__pPlane311", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.147775650024414, + 0.38407886028289795, + 16.587963104248047 + ] + }, + { + "mesh":5957, + "name":"Obj3d66-647191-33-836", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3648033142089844, + 1.6400068998336792, + -15.576520919799805 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube516", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":5958, + "name":"pasted__pasted__pTorus047", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.418676376342773, + 5.01207160949707, + 3.137277126312256 + ] + }, + { + "mesh":5959, + "name":"pasted__pasted__pasted__pCube679", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 1.2411543130874634, + 14.271536827087402 + ] + }, + { + "mesh":5960, + "name":"Rectangle1315", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.048496246337891, + 0.04489290714263916, + -2.9890735149383545 + ] + }, + { + "mesh":5961, + "name":"Object2650", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.825281143188477, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":5962, + "name":"Rectangle031", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.42422103881836, + 0.14451849460601807, + -13.339606285095215 + ] + }, + { + "mesh":5963, + "name":"pasted__pasted__pasted__pasted__pCylinder813", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414154052734375, + 0.6754261255264282, + 14.968375205993652 + ] + }, + { + "mesh":5964, + "name":"Sphere026", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8063907623291, + 1.3557039499282837, + -5.460318088531494 + ] + }, + { + "mesh":5965, + "name":"Circle2438", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.4051316976547241, + -2.1321728229522705 + ] + }, + { + "mesh":5966, + "name":"Circle2840", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.073888778686523, + 1.7189406156539917, + 0.012620627880096436 + ] + }, + { + "mesh":5967, + "name":"pasted__pasted__pCube815", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.97140884399414, + 2.7758541107177734, + 7.785450458526611 + ] + }, + { + "mesh":5968, + "name":"Rectangle379", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + -1.560198187828064 + ] + }, + { + "mesh":5969, + "name":"polySurface356", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.3797607421875, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":5970, + "name":"Obj3d66-647191-27-310", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3525896072387695, + 1.6754931211471558, + -15.6124849319458 + ] + }, + { + "mesh":5971, + "name":"Circle1967", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.2755346298217773, + -5.459476947784424 + ] + }, + { + "mesh":5972, + "name":"Rectangle1104", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.997325897216797, + 0.14451777935028076, + 16.01140785217285 + ] + }, + { + "mesh":5973, + "name":"Circle1577", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3792201280593872, + -5.075370788574219 + ] + }, + { + "mesh":5974, + "name":"Circle1695", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.084911346435547, + 1.7971621751785278, + -5.460317134857178 + ] + }, + { + "mesh":5975, + "name":"Line2398", + "scale":[ + 9.43338091019541e-05, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.108102798461914, + 4.43676233291626, + -7.016703128814697 + ] + }, + { + "mesh":5976, + "name":"pasted__pasted__pCube649", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + 1.5965938568115234 + ] + }, + { + "mesh":5977, + "name":"Object2523", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.884347915649414, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":5978, + "name":"Circle029", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.491086959838867, + 11.179641723632812, + -3.355707883834839 + ] + }, + { + "mesh":5979, + "name":"Rectangle1305", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -2.599900722503662 + ] + }, + { + "mesh":5980, + "name":"Obj3d66-647191-5-147", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.992870330810547, + 1.726946234703064, + 18.459505081176758 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube655", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":5981, + "name":"Circle2214", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7393025159835815, + -1.5990240573883057 + ] + }, + { + "mesh":5982, + "name":"Circle1664", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.970985412597656, + 2.1781320571899414, + -5.460317134857178 + ] + }, + { + "mesh":5983, + "name":"Object1794", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.115477442741394, + 16.99413299560547 + ] + }, + { + "mesh":5984, + "name":"pasted__pasted__pCylinder552", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.00129508972168, + 2.452906608581543, + -0.6190085411071777 + ] + }, + { + "mesh":5985, + "name":"pasted__pasted__pasted__extrudedSurface073", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.578033447265625, + 1.433923363685608, + 16.019567489624023 + ] + }, + { + "mesh":5986, + "name":"Object1833", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.171442985534668, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":5987, + "name":"pasted__pasted__pCube407.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.556926727294922, + 5.064568996429443, + -6.917383193969727 + ] + }, + { + "mesh":5988, + "name":"Circle1938", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9413508176803589, + -4.7135009765625 + ] + }, + { + "mesh":5989, + "name":"Rectangle1143", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.85809898376465, + 0.14451825618743896, + 14.846410751342773 + ] + }, + { + "name":"Text001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.70079803466797, + 1.0361686944961548, + 0.8697003126144409 + ] + }, + { + "mesh":5990, + "name":"Circle2834", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.051836013793945, + 1.783511757850647, + -0.024309329688549042 + ] + }, + { + "mesh":5991, + "name":"Circle3280", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.151430130004883, + 1.3380340337753296, + 4.090959072113037 + ] + }, + { + "mesh":5992, + "name":"pasted__pasted__pasted__pCylinder193", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.749454498291016, + 1.2660447359085083, + 15.344712257385254 + ] + }, + { + "mesh":5993, + "name":"pasted__pasted__pasted__pCube689", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 1.399283766746521, + 14.92426586151123 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube370", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -0.00834827870130539 + ] + }, + { + "mesh":5994, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder9", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + -4.722101211547852 + ] + }, + { + "mesh":5995, + "name":"pasted__pasted__pasted__pasted__polySurface385", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.69390106201172, + 0.6369913816452026, + 14.820230484008789 + ] + }, + { + "mesh":5996, + "name":"Circle1852", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.89238166809082, + 1.8588446378707886, + -4.7532782554626465 + ] + }, + { + "mesh":5997, + "name":"Circle2838", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0665340423584, + 1.7404643297195435, + 0.00031063705682754517 + ] + }, + { + "mesh":5998, + "name":"Rectangle1385", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 6.3617329597473145 + ] + }, + { + "mesh":5999, + "name":"pasted__pasted__pCylinder677", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.899188995361328, + 2.1647753715515137, + 5.37495231628418 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__polySurface079", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":6000, + "name":"Object133.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.19881248474121, + 1.2615464925765991, + -13.934765815734863 + ] + }, + { + "mesh":6001, + "name":"pasted__pasted__pasted__pasted__pCylinder452", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.068897247314453, + 0.6754261255264282, + 13.938965797424316 + ] + }, + { + "mesh":6002, + "name":"Circle1707", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.13319969177246, + 1.6356881856918335, + -5.460317134857178 + ] + }, + { + "mesh":6003, + "name":"Rectangle431", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + -1.321936845779419 + ] + }, + { + "mesh":6004, + "name":"pasted__pasted__pCube373.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.975038528442383, + 1.082088828086853, + -7.815657615661621 + ] + }, + { + "mesh":6005, + "name":"pasted__pasted__pPipe4.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.777803421020508, + 1.0760306119918823, + -3.379265308380127 + ] + }, + { + "mesh":6006, + "name":"Object1876", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.110969543457031, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube208", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 2.3852198123931885 + ] + }, + { + "mesh":6007, + "name":"pasted__pasted__pCylinder706", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.955413818359375, + 2.3162760734558105, + 4.690718173980713 + ] + }, + { + "mesh":6008, + "name":"Circle3129", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.989358901977539, + 2.116685390472412, + 3.6717348098754883 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface780", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.6732590198516846 + ] + }, + { + "mesh":6009, + "name":"Circle2115", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.84969711303711, + 1.8460217714309692, + -5.459476947784424 + ] + }, + { + "mesh":6010, + "name":"Circle2885", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.021020889282227, + 1.8563331365585327, + 1.3424804210662842 + ] + }, + { + "mesh":6011, + "name":"Object2677", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.787309646606445, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6012, + "name":"Sphere030", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.19780158996582, + 1.282675862312317, + -5.033965110778809 + ] + }, + { + "mesh":6013, + "name":"Rectangle1127", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.310401916503906, + 0.35186755657196045, + 12.348284721374512 + ] + }, + { + "mesh":6014, + "name":"Rectangle946", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -9.494046211242676 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube336", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":6015, + "name":"Object1806", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.0610133409500122, + 16.99413299560547 + ] + }, + { + "mesh":6016, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube315", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + 5.945832252502441 + ] + }, + { + "mesh":6017, + "name":"pasted__pasted__pCylinder329.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.29257583618164, + 4.930069446563721, + -6.831316947937012 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube596", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":6018, + "name":"Circle1910", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.7950531244277954, + -4.795896530151367 + ] + }, + { + "mesh":6019, + "name":"Object2315", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.494863510131836, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6020, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube387", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + 0.5728598833084106 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube408", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":6021, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface176", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.463172912597656, + 1.7867687940597534, + -5.400634288787842 + ] + }, + { + "mesh":6022, + "name":"Rectangle036", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033182144165039, + 0.14451849460601807, + -14.047863006591797 + ] + }, + { + "mesh":6023, + "name":"Circle032", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.4910831451416, + 5.853468418121338, + -3.355707883834839 + ] + }, + { + "mesh":6024, + "name":"pasted__pasted__pPipe095", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.197101593017578, + 2.5599560737609863, + 5.491039752960205 + ] + }, + { + "mesh":6025, + "name":"pasted__pasted__pasted__pasted__pCylinder443", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.981288909912109, + 0.10737001895904541, + 14.826196670532227 + ] + }, + { + "mesh":6026, + "name":"Circle2358", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7837990522384644, + -2.8747146129608154 + ] + }, + { + "mesh":6027, + "name":"pasted__pasted__pTorus048", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.263608932495117, + 5.048587322235107, + 3.11329984664917 + ] + }, + { + "mesh":6028, + "name":"pasted__pasted__pPipe126", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.799821853637695, + 2.774721622467041, + 7.780964374542236 + ] + }, + { + "mesh":6029, + "name":"pasted__pasted__pCylinder734", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.070056915283203, + 5.058504581451416, + 5.464241027832031 + ] + }, + { + "mesh":6030, + "name":"Line2401", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.823993682861328, + 4.526463508605957, + -6.9339118003845215 + ] + }, + { + "mesh":6031, + "name":"Arc006", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 11.612401962280273, + 0.8866173028945923, + 4.635395526885986 + ] + }, + { + "mesh":6032, + "name":"Object1919", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.170035362243652, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6033, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube337", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073788642883301, + 1.0402315855026245, + -8.93808364868164 + ] + }, + { + "mesh":6034, + "name":"pasted__pasted__pPipe103", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.096460342407227, + 1.0770174264907837, + -0.7465048432350159 + ] + }, + { + "mesh":6035, + "name":"Object2578", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80699920654297, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube389", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.5926618576049805 + ] + }, + { + "mesh":6036, + "name":"pasted__pasted__pCube734", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.354816436767578, + 5.073940753936768, + 1.4843031167984009 + ] + }, + { + "mesh":6037, + "name":"Rectangle759", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.023313522338867, + 0.14451849460601807, + -6.690112113952637 + ] + }, + { + "mesh":6038, + "name":"Object1848", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.150346755981445, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6039, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube326", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.378658294677734, + 0.37188422679901123, + 5.346660614013672 + ] + }, + { + "mesh":6040, + "name":"Circle1857", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.874004364013672, + 1.8050357103347778, + -4.784053325653076 + ] + }, + { + "mesh":6041, + "name":"Obj3d66-647191-20-053", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3533849716186523, + 1.6739333868026733, + -15.548868179321289 + ] + }, + { + "mesh":6042, + "name":"Circle2500", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.23468589782715, + 1.2449902296066284, + -2.5837583541870117 + ] + }, + { + "mesh":6043, + "name":"Circle3109", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9188429117202759, + 2.94946026802063 + ] + }, + { + "mesh":6044, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube630", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 1.36614191532135, + 3.260234832763672 + ] + }, + { + "mesh":6045, + "name":"Object1888", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.094094276428223, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube620", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":6046, + "name":"Object2517", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.89278221130371, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6047, + "name":"Rectangle1266", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.505002975463867, + 0.2500876188278198, + 1.8242604732513428 + ] + }, + { + "mesh":6048, + "name":"Object2073", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.072998046875, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6049, + "name":"Circle1813", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10554313659668, + 1.6062771081924438, + -4.887182235717773 + ] + }, + { + "mesh":6050, + "name":"pasted__pasted__pCylinder536", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.854480743408203, + 2.0156869888305664, + -0.544490396976471 + ] + }, + { + "mesh":6051, + "name":"pasted__pasted__pasted__polySurface540", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9219884872436523, + 0.6901217699050903, + -0.898169219493866 + ] + }, + { + "mesh":6052, + "name":"Obj3d66-647191-17-862", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8921566009521484, + 1.318539023399353, + -8.65088939666748 + ] + }, + { + "mesh":6053, + "name":"Object2287", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.414705276489258, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube393", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 6.547109127044678 + ] + }, + { + "mesh":6054, + "name":"Rectangle910", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.508445739746094, + 1.039061188697815, + -5.872505187988281 + ] + }, + { + "mesh":6055, + "name":"Circle1616", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.007326602935791, + -5.460317134857178 + ] + }, + { + "mesh":6056, + "name":"Circle2692", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.4387444257736206, + 0.14711788296699524 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube540", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":6057, + "name":"Rectangle365.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + 17.719465255737305 + ] + }, + { + "mesh":6058, + "name":"Object2327", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.477987289428711, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6059, + "name":"pasted__pasted__pCube548", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.83158302307129, + 3.3453516960144043, + -7.562785625457764 + ] + }, + { + "mesh":6060, + "name":"pasted__pasted__pasted__pasted__polySurface322", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.977703094482422, + 0.6369913816452026, + 14.820230484008789 + ] + }, + { + "mesh":6061, + "name":"Circle1782", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.98426628112793, + 1.9650532007217407, + -4.684067249298096 + ] + }, + { + "mesh":6062, + "name":"Circle2064", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.0205435752868652, + -6.236379146575928 + ] + }, + { + "mesh":6063, + "name":"Circle3164", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.119661331176758, + 1.6809571981430054, + 3.6717348098754883 + ] + }, + { + "mesh":6064, + "name":"Circle2499", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3309954404830933, + -2.7262187004089355 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube363", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.3501960039138794 + ] + }, + { + "mesh":6065, + "name":"pasted__pasted__pCylinder716", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.176162719726562, + 1.583316683769226, + 5.56356954574585 + ] + }, + { + "mesh":6066, + "name":"Circle1511", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7955507040023804, + -4.799153804779053 + ] + }, + { + "mesh":6067, + "name":"Circle2128", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.800247192382812, + 1.6806286573410034, + -5.459476947784424 + ] + }, + { + "mesh":6068, + "name":"Rectangle375.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + 3.9482686519622803 + ] + }, + { + "mesh":6069, + "name":"pasted__pasted__pCylinder372", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2247467041015625, + 1.5741528272628784, + -5.604057312011719 + ] + }, + { + "mesh":6070, + "name":"Shape039", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.596254348754883, + 0.25862228870391846, + 9.123933792114258 + ] + }, + { + "mesh":6071, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder29", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + -6.478889465332031 + ] + }, + { + "mesh":6072, + "name":"pasted__pasted__pCube620", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.085107803344727, + 1.6318343877792358, + 0.4820176064968109 + ] + }, + { + "mesh":6073, + "name":"Obj3d66-647191-33-848", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.992870330810547, + 1.6400068998336792, + -15.576520919799805 + ] + }, + { + "mesh":6074, + "name":"Obj3d66-647191-27-329", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8924446105957031, + 1.321757197380066, + -8.587273597717285 + ] + }, + { + "mesh":6075, + "name":"pasted__pasted__pTorus035", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.092384338378906, + 5.048586368560791, + 0.19229726493358612 + ] + }, + { + "mesh":6076, + "name":"Circle1925", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.7612923383712769, + -4.814911365509033 + ] + }, + { + "mesh":6077, + "name":"pasted__pasted__pasted__pasted__pasted__pCube467", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6699352264404297, + 1.4976838827133179, + 13.81916332244873 + ] + }, + { + "mesh":6078, + "name":"Obj3d66-647191-32-906", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3525896072387695, + 1.6615828275680542, + -15.54387092590332 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors145", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":6079, + "name":"pasted__pasted__pTorus046", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.507844924926758, + 5.048587322235107, + 3.137286901473999 + ] + }, + { + "mesh":6080, + "name":"pasted__pasted__pasted__polySurface549", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.040225982666016, + 0.6836510896682739, + 14.722369194030762 + ] + }, + { + "mesh":6081, + "name":"Circle1474", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6712626218795776, + -6.043154239654541 + ] + }, + { + "mesh":6082, + "name":"pasted__pasted__pasted__extrudedSurface037", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.232776641845703, + 1.433923363685608, + 16.019567489624023 + ] + }, + { + "mesh":6083, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube590", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 1.3661421537399292, + -3.273383855819702 + ] + }, + { + "mesh":6084, + "name":"pasted__pasted__pasted__pasted__pCylinder812", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231466293334961, + 0.6754261255264282, + 14.968205451965332 + ] + }, + { + "mesh":6085, + "name":"Circle2891", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.043067932128906, + 1.7911008596420288, + 1.305550217628479 + ] + }, + { + "mesh":6086, + "name":"Circle2391", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.4164232015609741, + -2.272768974304199 + ] + }, + { + "mesh":6087, + "name":"Rectangle1402", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 4.220424652099609 + ] + }, + { + "mesh":6088, + "name":"pasted__pasted__pCube814", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.958223342895508, + 2.577449321746826, + 7.785449028015137 + ] + }, + { + "mesh":6089, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube639", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 0.9979482889175415, + 2.6694743633270264 + ] + }, + { + "mesh":6090, + "name":"Circle1694", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.08123779296875, + 1.809451699256897, + -5.460317134857178 + ] + }, + { + "mesh":6091, + "name":"Object2633", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.849185943603516, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6092, + "name":"Line2397", + "scale":[ + 9.43338091019541e-05, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.108102798461914, + 4.43676233291626, + -5.687267780303955 + ] + }, + { + "mesh":6093, + "name":"Circle3084", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.828814148902893, + 3.0001649856567383 + ] + }, + { + "mesh":6094, + "name":"pasted__pasted__pCube648", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + 1.0323894023895264 + ] + }, + { + "mesh":6095, + "name":"pasted__pasted__pasted__polySurface489", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9275474548339844, + 1.1616288423538208, + -6.859280109405518 + ] + }, + { + "mesh":6096, + "name":"Obj3d66-647191-32-923", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.586889266967773, + 1.6615828275680542, + -9.26889419555664 + ] + }, + { + "mesh":6097, + "name":"pasted__pasted__pCylinder382", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.528532028198242, + 0.20140540599822998, + -5.403432369232178 + ] + }, + { + "mesh":6098, + "name":"Rectangle146", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.97010612487793, + 0.14451849460601807, + -14.550544738769531 + ] + }, + { + "mesh":6099, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder417", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.41666030883789, + 1.1056500673294067, + 4.745367527008057 + ] + }, + { + "mesh":6100, + "name":"Circle038", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.6377744674682617, + 8.375114440917969, + 17.315982818603516 + ] + }, + { + "mesh":6101, + "name":"Rectangle009.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.243200302124023, + 0.3068186044692993, + -5.439942836761475 + ] + }, + { + "mesh":6102, + "name":"Circle1487", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6817554235458374, + -5.460317134857178 + ] + }, + { + "mesh":6103, + "name":"Rectangle596", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.212726593017578, + 0.14451777935028076, + 15.133939743041992 + ] + }, + { + "mesh":6104, + "name":"Circle2621", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.426315188407898, + 0.9673872590065002 + ] + }, + { + "mesh":6105, + "name":"pasted__pasted__pasted__pasted__pasted__pCube563", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.015192031860352, + 0.6561340093612671, + 13.81916332244873 + ] + }, + { + "mesh":6106, + "name":"Circle1663", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.967308044433594, + 2.1904215812683105, + -5.460317134857178 + ] + }, + { + "mesh":6107, + "name":"Object1793", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.1200159788131714, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube210", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 6.547109127044678 + ] + }, + { + "mesh":6108, + "name":"pasted__pasted__pCylinder551", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.992120742797852, + 2.4255805015563965, + -0.614345371723175 + ] + }, + { + "mesh":6109, + "name":"pasted__pasted__pasted__extrudedSurface072", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.578033447265625, + 1.433923363685608, + 14.91525936126709 + ] + }, + { + "mesh":6110, + "name":"Object1832", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.172847747802734, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6111, + "name":"Circle1937", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9526041746139526, + -4.707162857055664 + ] + }, + { + "mesh":6112, + "name":"Circle2225", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.585366129875183, + -1.685752272605896 + ] + }, + { + "mesh":6113, + "name":"pasted__pasted__pCube452", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.140924453735352, + 0.5448082685470581, + 14.84743595123291 + ] + }, + { + "mesh":6114, + "name":"pasted__pasted__pasted__extrudedSurface079", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.948976516723633, + 1.433923363685608, + 16.019567489624023 + ] + }, + { + "mesh":6115, + "name":"Circle2531", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.06144142150879, + 1.7367414236068726, + -1.5815016031265259 + ] + }, + { + "mesh":6116, + "name":"Rectangle409", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 3.695284843444824, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":6117, + "name":"Circle2596", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8517988920211792, + 1.3206340074539185 + ] + }, + { + "mesh":6118, + "name":"Obj3d66-647191-27-326", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.452716827392578, + 1.6754928827285767, + 12.183479309082031 + ] + }, + { + "mesh":6119, + "name":"pasted__pasted__pasted__pCube688", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 1.2411543130874634, + 14.92426586151123 + ] + }, + { + "mesh":6120, + "name":"Circle1851", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.896055221557617, + 1.869606614112854, + -4.747122764587402 + ] + }, + { + "mesh":6121, + "name":"Circle2431", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.106962203979492, + 1.7234259843826294, + -2.22849702835083 + ] + }, + { + "mesh":6122, + "name":"pasted__pasted__pCylinder678", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.908235549926758, + 2.192540168762207, + 5.37495231628418 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube660", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":6123, + "name":"pasted__pasted__pasted__pasted__pCylinder451", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886205673217773, + 0.6754261255264282, + 13.938788414001465 + ] + }, + { + "mesh":6124, + "name":"Circle1706", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.128690719604492, + 1.6507774591445923, + -5.460317134857178 + ] + }, + { + "mesh":6125, + "name":"pasted__pasted__pCube374.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.975038528442383, + 1.2804936170578003, + -7.815657138824463 + ] + }, + { + "mesh":6126, + "name":"Circle1555", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.557158350944519, + -5.978889465332031 + ] + }, + { + "mesh":6127, + "name":"Rectangle354.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.375534057617188, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":6128, + "name":"Circle3010", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7664786577224731, + 3.6717348098754883 + ] + }, + { + "mesh":6129, + "name":"Circle3167", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.13319969177246, + 1.6356881856918335, + 3.6717348098754883 + ] + }, + { + "mesh":6130, + "name":"Circle2105", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.88644790649414, + 1.9689382314682007, + -5.459476947784424 + ] + }, + { + "mesh":6131, + "name":"Object1875", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.112375259399414, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6132, + "name":"Circle2413", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.04081153869629, + 1.9446343183517456, + -2.22849702835083 + ] + }, + { + "mesh":6133, + "name":"Circle2715", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8850818872451782, + -0.07548081129789352 + ] + }, + { + "mesh":6134, + "name":"pasted__pasted__pCylinder708", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.973764419555664, + 2.370926856994629, + 4.681402683258057 + ] + }, + { + "mesh":6135, + "name":"pasted__pasted__pasted__pasted__pCylinder489", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.068897247314453, + 0.6754261255264282, + 15.99779224395752 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors150", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":6136, + "name":"Obj3d66-647191-31-959", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567583084106445, + 1.6571954488754272, + 18.267879486083984 + ] + }, + { + "mesh":6137, + "name":"Circle1773", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.053220748901367, + 1.425226092338562, + -4.799544811248779 + ] + }, + { + "mesh":6138, + "name":"Rectangle945", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -8.643484115600586 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube335", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":6139, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder079", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.839141845703125, + 0.12095391750335693, + 3.1951472759246826 + ] + }, + { + "mesh":6140, + "name":"pasted__pasted__pCylinder683", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.95345687866211, + 2.3313565254211426, + 5.37495231628418 + ] + }, + { + "mesh":6141, + "name":"Object1805", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.0655521154403687, + 16.99413299560547 + ] + }, + { + "mesh":6142, + "name":"pasted__pasted__pCylinder339", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.675485610961914, + 4.842443466186523, + -6.831316947937012 + ] + }, + { + "mesh":6143, + "name":"Circle1909", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.7837995290756226, + -4.802234649658203 + ] + }, + { + "mesh":6144, + "name":"pasted__pasted__pPipe21", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.871406555175781, + 1.845382809638977, + -5.195910930633545 + ] + }, + { + "mesh":6145, + "name":"pasted__pasted__pCylinder346.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.736970901489258, + 0.3064950704574585, + -8.006075859069824 + ] + }, + { + "mesh":6146, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door008", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.228700637817383, + 0.6166733503341675, + -13.629816055297852 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube551", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":6147, + "name":"Object2314", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.496271133422852, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6148, + "name":"Circle2296", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.222822666168213, + -2.22849702835083 + ] + }, + { + "mesh":6149, + "name":"Circle2776", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03346061706543, + 1.9692128896713257, + 0.6277795433998108 + ] + }, + { + "mesh":6150, + "name":"Circle1915", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8625751733779907, + -4.75786828994751 + ] + }, + { + "mesh":6151, + "name":"Obj3d66-647191-16-688", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.353109359741211, + 1.6718100309371948, + -15.603754043579102 + ] + }, + { + "mesh":6152, + "name":"pasted__pasted__pasted__pCylinder700", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.072099685668945, + 0.5030606985092163, + 16.585969924926758 + ] + }, + { + "mesh":6153, + "name":"pasted__pasted__pCylinder455", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.068140029907227, + 3.598470687866211, + 6.4596076011657715 + ] + }, + { + "mesh":6154, + "name":"Object2662", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80840492248535, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6155, + "name":"Shape096", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.205141067504883, + 1.5521396398544312, + 5.2886962890625 + ] + }, + { + "mesh":6156, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface587", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9352035522460938, + 1.0885125398635864, + -8.006786346435547 + ] + }, + { + "mesh":6157, + "name":"Object1918", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.171442985534668, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6158, + "name":"Object2243", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.476581573486328, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group141", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.5926618576049805 + ] + }, + { + "mesh":6159, + "name":"Rectangle1236", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + -5.976590156555176 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface681", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -5.439333915710449 + ] + }, + { + "mesh":6160, + "name":"pasted__pasted__pCube733", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.35550880432129, + 5.064015865325928, + 1.183220386505127 + ] + }, + { + "mesh":6161, + "name":"pasted__pasted__pasted__pCube179", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 1.2411547899246216, + 16.179706573486328 + ] + }, + { + "mesh":6162, + "name":"Circle2400", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.993036270141602, + 2.104396343231201, + -2.22849702835083 + ] + }, + { + "mesh":6163, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube291", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 0.3764752149581909, + -0.49809885025024414 + ] + }, + { + "mesh":6164, + "name":"HDM_02_08_bolts028", + "translation":[ + 310.1015625, + -574.7622680664062, + -190.291015625 + ] + }, + { + "mesh":6165, + "name":"HDM_02_08_bolts029", + "translation":[ + -309.90625, + -571.6085815429688, + -189.32421875 + ] + }, + { + "mesh":6166, + "name":"HDM_02_08_bolts030", + "translation":[ + 310.09765625, + 391.4720153808594, + -348.90234375 + ] + }, + { + "mesh":6167, + "name":"HDM_02_08_bolts031", + "translation":[ + -309.91015625, + 394.626708984375, + -347.935546875 + ] + }, + { + "mesh":6168, + "name":"HDM_02_08_brake_caliper_fl028", + "translation":[ + 296.68359375, + -527.6101684570312, + -195.873046875 + ] + }, + { + "mesh":6169, + "name":"HDM_02_08_brake_caliper_fl029", + "translation":[ + -296.4921875, + -524.228759765625, + -194.560546875 + ] + }, + { + "mesh":6170, + "name":"HDM_02_08_brake_caliper_fl030", + "translation":[ + 296.68359375, + 438.6270751953125, + -354.484375 + ] + }, + { + "mesh":6171, + "name":"HDM_02_08_brake_caliper_fl031", + "translation":[ + -296.4921875, + 442.009521484375, + -353.171875 + ] + }, + { + "mesh":6172, + "name":"HDM_02_08_brake_disc028", + "translation":[ + 302.00390625, + -614.3839721679688, + -188.173828125 + ] + }, + { + "mesh":6173, + "name":"HDM_02_08_brake_disc029", + "translation":[ + -301.8125, + -605.154296875, + -188.173828125 + ] + }, + { + "mesh":6174, + "name":"HDM_02_08_brake_disc030", + "translation":[ + 298.03515625, + 351.8532409667969, + -346.7890625 + ] + }, + { + "mesh":6175, + "name":"HDM_02_08_brake_disc031", + "translation":[ + -297.83984375, + 361.0839538574219, + -346.7890625 + ] + }, + { + "mesh":6176, + "name":"HDM_02_08_rim028", + "translation":[ + 287.078125, + -658.6737670898438, + -188.34765625 + ] + }, + { + "mesh":6177, + "name":"HDM_02_08_rim029", + "translation":[ + -286.88671875, + -635.0076293945312, + -188.3984375 + ] + }, + { + "mesh":6178, + "name":"HDM_02_08_rim030", + "translation":[ + 287.078125, + 307.5645446777344, + -346.9609375 + ] + }, + { + "mesh":6179, + "name":"HDM_02_08_rim031", + "translation":[ + -286.88671875, + 331.2316589355469, + -347.0078125 + ] + }, + { + "mesh":6180, + "name":"HDM_02_08_rim_logo028", + "translation":[ + 315.921875, + -557.7354736328125, + -188.46875 + ] + }, + { + "mesh":6181, + "name":"HDM_02_08_rim_logo029", + "translation":[ + -315.6796875, + -556.3681030273438, + -188.49609375 + ] + }, + { + "mesh":6182, + "name":"HDM_02_08_rim_logo030", + "translation":[ + 315.921875, + 408.5028381347656, + -347.078125 + ] + }, + { + "mesh":6183, + "name":"HDM_02_08_rim_logo031", + "translation":[ + -315.6796875, + 409.87127685546875, + -347.111328125 + ] + }, + { + "mesh":6184, + "name":"HDM_02_08_tire028", + "translation":[ + -287.9765625, + -675.0878295898438, + -188.419921875 + ] + }, + { + "mesh":6185, + "name":"HDM_02_08_tire029", + "translation":[ + 288.17578125, + -694.2809448242188, + -188.421875 + ] + }, + { + "mesh":6186, + "name":"HDM_02_08_tire030", + "translation":[ + 288.17578125, + 271.9582824707031, + -347.033203125 + ] + }, + { + "mesh":6187, + "name":"HDM_02_08_tire031", + "translation":[ + -287.9765625, + 291.15142822265625, + -347.03125 + ] + }, + { + "children":[ + 6756, + 6757, + 6758, + 6759, + 6760, + 6761, + 6762, + 6763, + 6764, + 6765, + 6766, + 6767, + 6768, + 6769, + 6770, + 6771, + 6772, + 6773, + 6774, + 6775, + 6776, + 6777, + 6778, + 6779 + ], + "mesh":6188, + "name":"MZDsuv004", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 13.922733306884766, + 0.0374908447265625, + 9.69659423828125 + ] + }, + { + "mesh":6189, + "name":"Circle3108", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9300965070724487, + 2.943121910095215 + ] + }, + { + "mesh":6190, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube391", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402330160140991, + 1.7515872716903687 + ] + }, + { + "mesh":6191, + "name":"Object1887", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.095499038696289, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6192, + "name":"pasted__pasted__pCube672", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939353942871094, + 5.073940753936768, + 0.6343867778778076 + ] + }, + { + "mesh":6193, + "name":"Rectangle1265", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.5818748474121094, + 0.33695781230926514, + 1.8242604732513428 + ] + }, + { + "mesh":6194, + "name":"Object2072", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.074409484863281, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6195, + "name":"Object2396", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.0882457494735718, + 16.99413299560547 + ] + }, + { + "mesh":6196, + "name":"pasted__pasted__pCylinder672", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.85396957397461, + 2.0259571075439453, + 5.37495231628418 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube623", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":6197, + "name":"pasted__pasted__pCylinder535", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.845306396484375, + 1.988362193107605, + -0.5398271083831787 + ] + }, + { + "mesh":6198, + "name":"pasted__pasted__pasted__pCylinder745", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9281158447265625, + 0.8645821809768677, + -0.8046589493751526 + ] + }, + { + "mesh":6199, + "name":"Circle1676", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.015085220336914, + 2.0306596755981445, + -5.460317134857178 + ] + }, + { + "mesh":6200, + "name":"Obj3d66-647191-16-707", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.891922950744629, + 1.3180736303329468, + -8.596003532409668 + ] + }, + { + "mesh":6201, + "name":"Circle2211", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.716802954673767, + -1.6116999387741089 + ] + }, + { + "mesh":6202, + "name":"Obj3d66-647191-14-946", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747623443603516, + 1.672275424003601, + -9.328777313232422 + ] + }, + { + "mesh":6203, + "name":"Object2286", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.416109085083008, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6204, + "name":"Obj3d66-647191-4-113", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.556079864501953, + 1.6804250478744507, + 5.5750579833984375 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube365", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 0.6042507886886597 + ] + }, + { + "mesh":6205, + "name":"Object2621", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.86606216430664, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface685", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -6.0519328117370605 + ] + }, + { + "mesh":6206, + "name":"pasted__pasted__pasted__pCube191", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 1.399283766746521, + 16.228010177612305 + ] + }, + { + "mesh":6207, + "name":"pasted__pasted__pCube547", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.67784881591797, + 3.3579039573669434, + -7.564801216125488 + ] + }, + { + "mesh":6208, + "name":"pasted__pasted__pasted__pasted__pPipe023", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.982082366943359, + 0.43142926692962646, + 14.828760147094727 + ] + }, + { + "mesh":6209, + "name":"Obj3d66-647191-19-293", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.586368560791016, + 1.6718100309371948, + -9.273892402648926 + ] + }, + { + "mesh":6210, + "name":"Circle3163", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.115150451660156, + 1.6960471868515015, + 3.6717348098754883 + ] + }, + { + "mesh":6211, + "name":"pasted__pasted__pasted__pasted__pCylinder885", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.602706909179688, + 0.28987395763397217, + 15.701493263244629 + ] + }, + { + "mesh":6212, + "name":"Circle1834", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.818880081176758, + 1.6436079740524292, + -4.876378059387207 + ] + }, + { + "mesh":6213, + "name":"Rectangle415", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 11.958000183105469, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":6214, + "name":"Circle2435", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.124176025390625, + 1.6658674478530884, + -2.22849702835083 + ] + }, + { + "mesh":6215, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder096", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.694669723510742, + 1.5399528741836548, + 13.959920883178711 + ] + }, + { + "mesh":6216, + "name":"pasted__pasted__pasted__polySurface563", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.411169052124023, + 0.683651328086853, + 16.67884635925293 + ] + }, + { + "mesh":6217, + "name":"Circle1962", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 1.5398427248001099, + -5.459476947784424 + ] + }, + { + "mesh":6218, + "name":"Circle2492", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.101621627807617, + 1.3522719144821167, + -2.629042863845825 + ] + }, + { + "mesh":6219, + "name":"Circle2948", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8068004846572876, + 4.339236736297607 + ] + }, + { + "mesh":6220, + "name":"Rectangle374.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508668899536133, + 0.14451754093170166, + 5.325394153594971 + ] + }, + { + "mesh":6221, + "name":"Object2644", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.83371925354004, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube669", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":6222, + "name":"pasted__pasted__pCylinder567", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.293397903442383, + 4.937097072601318, + 1.5242867469787598 + ] + }, + { + "mesh":6223, + "name":"Circle1924", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8513211011886597, + -4.7642059326171875 + ] + }, + { + "mesh":6224, + "name":"Obj3d66-647191-31-944", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3525896072387695, + 1.6571954488754272, + -15.546813011169434 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube404", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":6225, + "name":"pasted__pasted__pCylinder621", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.481767654418945, + 4.853360652923584, + 3.1228671073913574 + ] + }, + { + "mesh":6226, + "name":"Circle2952", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8630484342575073, + 4.370926856994629 + ] + }, + { + "mesh":6227, + "name":"pasted__pasted__pasted__pCube678", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 0.8213735818862915, + 14.8716459274292 + ] + }, + { + "mesh":6228, + "name":"pasted__pasted__pCube699", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.396299362182617, + 5.0152716636657715, + -0.7446919679641724 + ] + }, + { + "mesh":6229, + "name":"Circle1473", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6600092649459839, + -6.036815643310547 + ] + }, + { + "mesh":6230, + "name":"Obj3d66-647191-28-062", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567583084106445, + 1.6571954488754272, + 18.32697296142578 + ] + }, + { + "mesh":6231, + "name":"pasted__pasted__pasted__pPlane081", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.753885269165039, + 0.3886607885360718, + 16.266347885131836 + ] + }, + { + "mesh":6232, + "name":"pasted__pasted__pasted__pasted__pCylinder811", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.153039932250977, + 0.6754261255264282, + 14.820230484008789 + ] + }, + { + "mesh":6233, + "name":"Circle2390", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.946138381958008, + 2.243314266204834, + -2.228497266769409 + ] + }, + { + "mesh":6234, + "name":"Rectangle1401", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + 2.4923958778381348 + ] + }, + { + "mesh":6235, + "name":"Rectangle1318", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.255056381225586, + 0.2190920114517212, + -3.2191162109375 + ] + }, + { + "mesh":6236, + "name":"Circle2774", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.02610969543457, + 1.993791937828064, + 0.6277795433998108 + ] + }, + { + "mesh":6237, + "name":"Object2632", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.850595474243164, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6238, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube342", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + 5.375686168670654 + ] + }, + { + "mesh":6239, + "name":"Circle3083", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8400672674179077, + 2.9938273429870605 + ] + }, + { + "mesh":6240, + "name":"Object2248", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.469552993774414, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6241, + "name":"Object2338", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.462518692016602, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6242, + "name":"Rectangle902", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.410043716430664, + 1.039061188697815, + -5.873347282409668 + ] + }, + { + "mesh":6243, + "name":"pasted__pasted__pCube647", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + 0.46137377619743347 + ] + }, + { + "mesh":6244, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder088", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.101566314697266, + 1.4834917783737183, + 0.49683529138565063 + ] + }, + { + "mesh":6245, + "name":"Object2521", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.887157440185547, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6246, + "name":"pasted__pasted__pasted__pasted__pCylinder832", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.492883682250977, + 0.6754261255264282, + 15.849641799926758 + ] + }, + { + "mesh":6247, + "name":"Circle2078", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11112403869629, + 1.2971245050430298, + -5.820427417755127 + ] + }, + { + "mesh":6248, + "name":"Obj3d66-647191-31-961", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.586889266967773, + 1.6571954488754272, + -9.271836280822754 + ] + }, + { + "mesh":6249, + "name":"Rectangle1303", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -1.722433090209961 + ] + }, + { + "mesh":6250, + "name":"Obj3d66-647191-37-422", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.981449127197266, + 1.6739360094070435, + -15.603741645812988 + ] + }, + { + "mesh":6251, + "name":"Obj3d66-647191-2-958", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.519792556762695, + 1.6754931211471558, + 5.562841892242432 + ] + }, + { + "mesh":6252, + "name":"Object2529", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.87590789794922, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6253, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface707", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.031774520874023, + 0.6892560720443726, + 13.954267501831055 + ] + }, + { + "mesh":6254, + "name":"Circle1662", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.963634490966797, + 2.2027106285095215, + -5.460317134857178 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface605", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":6255, + "name":"pasted__pasted__pCylinder550", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.98294448852539, + 2.398254871368408, + -0.6096925139427185 + ] + }, + { + "mesh":6256, + "name":"pasted__pasted__pasted__extrudedSurface071", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.578033447265625, + 1.433923363685608, + 13.822271347045898 + ] + }, + { + "mesh":6257, + "name":"Line2467", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.114276885986328, + 1.0256141424179077, + 16.99216651916504 + ] + }, + { + "mesh":6258, + "name":"pasted__pasted__pasted__pCylinder160", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.296171188354492, + 0.9016944169998169, + 12.94787883758545 + ] + }, + { + "mesh":6259, + "name":"Circle1936", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9638577699661255, + -4.700824737548828 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors149", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":6260, + "name":"Rectangle397", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.763320922851562, + 0.14451754093170166, + -16.60300636291504 + ] + }, + { + "mesh":6261, + "name":"pasted__pasted__pCylinder539", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.882011413574219, + 2.0976662635803223, + -0.5584592223167419 + ] + }, + { + "mesh":6262, + "name":"Circle2224", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5991793870925903, + -1.677970051765442 + ] + }, + { + "mesh":6263, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder094", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.694669723510742, + 0.6288565397262573, + 13.753793716430664 + ] + }, + { + "mesh":6264, + "name":"Circle2363", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5709763765335083, + -2.7548515796661377 + ] + }, + { + "mesh":6265, + "name":"pasted__pasted__pasted__extrudedSurface078", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.948976516723633, + 1.433923363685608, + 14.91525936126709 + ] + }, + { + "mesh":6266, + "name":"Object1815", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.168885231018066, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":6267, + "name":"pasted__pasted__pasted__polySurface551", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.040225982666016, + 0.6836510896682739, + 15.375099182128906 + ] + }, + { + "mesh":6268, + "name":"Shape003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.596254348754883, + 0.19960248470306396, + 9.123933792114258 + ] + }, + { + "mesh":6269, + "name":"Circle1850", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.89973258972168, + 1.8803683519363403, + -4.740968227386475 + ] + }, + { + "mesh":6270, + "name":"Circle3238", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.998964309692383, + 1.9215654134750366, + 4.423365592956543 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube659", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":6271, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube349", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.43475341796875, + 0.37188422679901123, + 5.390878200531006 + ] + }, + { + "mesh":6272, + "name":"pasted__pasted__pasted__pasted__pCylinder455", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886508941650391, + 0.6754258871078491, + 13.642666816711426 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube207", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 5.416483402252197 + ] + }, + { + "mesh":6273, + "name":"Circle1705", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.124176025390625, + 1.6658674478530884, + -5.460317134857178 + ] + }, + { + "mesh":6274, + "name":"Obj3d66-647191-8-597", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.992870330810547, + 1.6444579362869263, + 18.27702522277832 + ] + }, + { + "mesh":6275, + "name":"pasted__pasted__pPipe062", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.629884719848633, + 0.8532906770706177, + 6.673774242401123 + ] + }, + { + "mesh":6276, + "name":"pasted__pasted__pCube377.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.887022018432617, + 1.1269747018814087, + -7.841665744781494 + ] + }, + { + "mesh":6277, + "name":"Object1874", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.113785743713379, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6278, + "name":"polySurface099", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.74846076965332, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube533", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":6279, + "name":"Circle1772", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15263557434082, + 1.49055016040802, + -5.943573474884033 + ] + }, + { + "mesh":6280, + "name":"pasted__pCube527", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.405942916870117, + 0.21965444087982178, + 0.024722188711166382 + ] + }, + { + "mesh":6281, + "name":"Rectangle944", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + -8.643484115600586 + ] + }, + { + "mesh":6282, + "name":"pasted__pasted__pCylinder684", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.96249771118164, + 2.359119415283203, + 5.37495231628418 + ] + }, + { + "mesh":6283, + "name":"Object1804", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.070090889930725, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube191", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -7.182558059692383 + ] + }, + { + "mesh":6284, + "name":"pasted__pasted__pTorus3.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.092384338378906, + 5.048586368560791, + -6.821717739105225 + ] + }, + { + "mesh":6285, + "name":"Circle1731", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.022436141967773, + 1.869606375694275, + -6.161646842956543 + ] + }, + { + "mesh":6286, + "name":"pasted__pasted__pCylinder467", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.91459846496582, + 3.1357784271240234, + 7.190367698669434 + ] + }, + { + "mesh":6287, + "name":"Circle2757", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.963634490966797, + 2.2027106285095215, + 0.6277795433998108 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube490", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":6288, + "name":"Object2313", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.4976806640625, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6289, + "name":"Object2595", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.78309440612793, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6290, + "name":"Obj3d66-647191-15-294", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.353109359741211, + 1.6626402139663696, + -15.603754043579102 + ] + }, + { + "mesh":6291, + "name":"Circle3067", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6600092649459839, + 3.0952370166778564 + ] + }, + { + "mesh":6292, + "name":"pasted__pasted__pasted__pCylinder699", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.072099685668945, + 0.9016944169998169, + 16.585969924926758 + ] + }, + { + "mesh":6293, + "name":"Rectangle1448", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.205141067504883, + 0.6940621137619019, + 5.28831148147583 + ] + }, + { + "mesh":6294, + "name":"Rectangle1260", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7509279251098633, + 0.1627582311630249, + 1.6328423023223877 + ] + }, + { + "mesh":6295, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder094", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.35464859008789, + 1.4823185205459595, + 0.7034449577331543 + ] + }, + { + "mesh":6296, + "name":"pasted__pasted__pCube860", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.85712242126465, + 0.5448082685470581, + 14.84743595123291 + ] + }, + { + "mesh":6297, + "name":"Object2242", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.477987289428711, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface580", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":6298, + "name":"Rectangle331", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + 16.147279739379883 + ] + }, + { + "mesh":6299, + "name":"Circle2960", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9080475568771362, + 4.396279811859131 + ] + }, + { + "mesh":6300, + "name":"pasted__pasted__pasted__pCylinder632", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.911001205444336, + 1.2660452127456665, + 16.585969924926758 + ] + }, + { + "mesh":6301, + "name":"Obj3d66-647191-34-810", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.972070693969727, + 1.6606823205947876, + 18.297840118408203 + ] + }, + { + "mesh":6302, + "name":"pasted__pasted__pasted__pCylinder694", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.281946182250977, + 0.5030606985092163, + 16.585969924926758 + ] + }, + { + "mesh":6303, + "name":"pasted__pasted__pCube732", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.354816436767578, + 5.073940753936768, + 2.0294878482818604 + ] + }, + { + "mesh":6304, + "name":"Obj3d66-647191-8-600", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.440500259399414, + 1.6444579362869263, + 12.126948356628418 + ] + }, + { + "mesh":6305, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube290", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 0.3764752149581909, + -0.7941173911094666 + ] + }, + { + "mesh":6306, + "name":"Object1846", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.153162002563477, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6307, + "name":"Circle3107", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9413498640060425, + 2.936784267425537 + ] + }, + { + "mesh":6308, + "name":"Object1886", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.096906661987305, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6309, + "name":"pasted__pasted__pasted__pCylinder750", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.929457664489746, + 0.7768586874008179, + 5.603519439697266 + ] + }, + { + "mesh":6310, + "name":"pasted__pasted__pCube671", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939353942871094, + 5.073940753936768, + 1.1962963342666626 + ] + }, + { + "mesh":6311, + "name":"Rectangle1264", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6566238403320312, + 0.42382848262786865, + 1.8242604732513428 + ] + }, + { + "mesh":6312, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube414", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073788642883301, + 1.0402315855026245, + 2.9477221965789795 + ] + }, + { + "mesh":6313, + "name":"Object2071", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.075813293457031, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6314, + "name":"Circle2890", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03939437866211, + 1.8019732236862183, + 1.311705231666565 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube165", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":6315, + "name":"pasted__pasted__pCube789", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + 3.5049986839294434 + ] + }, + { + "mesh":6316, + "name":"Object2395", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.0927842855453491, + 16.99413299560547 + ] + }, + { + "mesh":6317, + "name":"Circle3252", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.028366088867188, + 1.8345891237258911, + 4.3741254806518555 + ] + }, + { + "mesh":6318, + "name":"Circle1877", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.7943172454834, + 1.571679711341858, + -4.917516231536865 + ] + }, + { + "mesh":6319, + "name":"Rectangle891", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.727640151977539, + 1.063360571861267, + -5.439942836761475 + ] + }, + { + "mesh":6320, + "name":"pasted__pasted__pCylinder604", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.315881729125977, + 5.058504581451416, + 2.372953176498413 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube493", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":6321, + "name":"Circle2185", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.767065048217773, + 1.3380335569381714, + -5.867678165435791 + ] + }, + { + "mesh":6322, + "name":"Circle2635", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.705896377563477, + 1.3985601663589478, + 0.6277793645858765 + ] + }, + { + "mesh":6323, + "name":"pasted__pasted__pCylinder534", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.836128234863281, + 1.9610363245010376, + -0.5351638197898865 + ] + }, + { + "mesh":6324, + "name":"Rectangle1174", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.92892837524414, + 0.14451777935028076, + 16.01140785217285 + ] + }, + { + "mesh":6325, + "name":"Obj3d66-647191-15-313", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.891922950744629, + 1.3089038133621216, + -8.596003532409668 + ] + }, + { + "mesh":6326, + "name":"Object2285", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.417516708374023, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface748", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 5.416483402252197 + ] + }, + { + "mesh":6327, + "name":"Rectangle757", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.251155853271484, + 0.14451849460601807, + -4.066504955291748 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface684", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -6.0519328117370605 + ] + }, + { + "mesh":6328, + "name":"Object2325", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.480802536010742, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6329, + "name":"pasted__pasted__pCube546", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.37675666809082, + 3.3453516960144043, + -7.562785625457764 + ] + }, + { + "mesh":6330, + "name":"pasted__pasted__pasted__pasted__pCylinder468", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886508941650391, + 0.28987395763397217, + 14.672083854675293 + ] + }, + { + "mesh":6331, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube376", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + -3.059532403945923 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface701", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -1.1389737129211426 + ] + }, + { + "mesh":6332, + "name":"Obj3d66-647191-18-845", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.58763313293457, + 1.6729644536972046, + -9.273892402648926 + ] + }, + { + "mesh":6333, + "name":"Circle3022", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8805640935897827, + 3.6717348098754883 + ] + }, + { + "mesh":6334, + "name":"pasted__pasted__pasted__pasted__pCylinder796", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414453506469727, + 0.6754258871078491, + 13.642838478088379 + ] + }, + { + "mesh":6335, + "name":"Circle3074", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.738784670829773, + 3.050869941711426 + ] + }, + { + "mesh":6336, + "name":"Circle1943", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.01994514465332, + 1.3744639158248901, + -5.0364484786987305 + ] + }, + { + "mesh":6337, + "name":"Circle2425", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.084911346435547, + 1.7971621751785278, + -2.22849702835083 + ] + }, + { + "mesh":6338, + "name":"pasted__pasted__pCylinder633", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.680505752563477, + 4.842443466186523, + 3.9380698204040527 + ] + }, + { + "mesh":6339, + "name":"pasted__pasted__pCube761", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.085103988647461, + 1.6318343877792358, + 5.360605716705322 + ] + }, + { + "mesh":6340, + "name":"Rectangle373.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508665084838867, + 0.14451754093170166, + 6.702515125274658 + ] + }, + { + "mesh":6341, + "name":"Rectangle1324", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.048496246337891, + 0.04489290714263916, + 2.1649582386016846 + ] + }, + { + "mesh":6342, + "name":"pasted__pasted__pasted__pasted__pCylinder836", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.231466293334961, + 1.0796922445297241, + 15.9976167678833 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__polySurface080", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":6343, + "name":"pasted__pasted__pCylinder566", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.673734664916992, + 4.840120792388916, + 1.5242867469787598 + ] + }, + { + "mesh":6344, + "name":"Circle3005", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8298596143722534, + 3.6717348098754883 + ] + }, + { + "mesh":6345, + "name":"Circle1923", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.907589316368103, + -4.732515335083008 + ] + }, + { + "mesh":6346, + "name":"Object1858", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.136286735534668, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6347, + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface587", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.643375396728516, + 0.6940606832504272, + -3.4536144733428955 + ] + }, + { + "mesh":6348, + "name":"Obj3d66-647191-30-117", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3525896072387695, + 1.6615828275680542, + -15.608846664428711 + ] + }, + { + "mesh":6349, + "name":"pasted__pasted__pPipe100", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.575101852416992, + 2.565361976623535, + -0.745415210723877 + ] + }, + { + "mesh":6350, + "name":"Circle1641", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.008871555328369, + -6.233296871185303 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube403", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":6351, + "name":"Line2456", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.177999496459961, + 4.526465892791748, + 3.6363561153411865 + ] + }, + { + "mesh":6352, + "name":"pasted__pasted__pCylinder1", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.827201843261719, + 1.9320615530014038, + -4.9731316566467285 + ] + }, + { + "mesh":6353, + "name":"pasted__pasted__pasted__pasted__pCylinder853", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785398483276367, + 0.6754258871078491, + 13.642838478088379 + ] + }, + { + "mesh":6354, + "name":"pasted__pasted__pasted__pCube677", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 0.9795023202896118, + 14.8716459274292 + ] + }, + { + "mesh":6355, + "name":"pasted__pasted__pasted__pPlane089", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.22016716003418, + 0.3886607885360718, + 12.952313423156738 + ] + }, + { + "mesh":6356, + "name":"Rectangle900", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0033016204834, + 1.039061188697815, + -5.4565653800964355 + ] + }, + { + "mesh":6357, + "name":"pasted__pasted__pTorus056", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.092384338378906, + 5.048586368560791, + 5.4787397384643555 + ] + }, + { + "mesh":6358, + "name":"Object2572", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8154354095459, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6359, + "name":"pasted__pasted__pasted__pasted__pCylinder890", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785398483276367, + 0.6754261255264282, + 15.701667785644531 + ] + }, + { + "mesh":6360, + "name":"pasted__pasted__pasted__pPlane080", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.753885269165039, + 0.3886607885360718, + 15.698271751403809 + ] + }, + { + "mesh":6361, + "name":"pasted__pasted__pasted__pasted__polySurface376", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.322957992553711, + 0.6369913816452026, + 14.820230484008789 + ] + }, + { + "mesh":6362, + "name":"Rectangle1274", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.505002975463867, + 0.2500876188278198, + -2.9385335445404053 + ] + }, + { + "mesh":6363, + "name":"Circle2389", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.236181259155273, + 1.417582631111145, + -2.228497266769409 + ] + }, + { + "mesh":6364, + "name":"Object2631", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.852005004882812, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6365, + "name":"pasted__pasted__pCube405", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + -6.158369541168213 + ] + }, + { + "mesh":6366, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube337", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.057670593261719, + 0.7419441938400269, + -4.320192813873291 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface664", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -6.569958209991455 + ] + }, + { + "mesh":6367, + "name":"pasted__pasted__pCylinder499", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.931211471557617, + 2.261786937713623, + 0.7640989422798157 + ] + }, + { + "mesh":6368, + "name":"polySurface334", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.964534759521484, + 1.4434689283370972, + 16.166187286376953 + ] + }, + { + "mesh":6369, + "name":"Object2337", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.463926315307617, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6370, + "name":"pasted__pasted__pCube646", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + -0.0702194795012474 + ] + }, + { + "mesh":6371, + "name":"Object2257", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.456893920898438, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6372, + "name":"pasted__pasted__pasted__polySurface488", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9243946075439453, + 0.6901224851608276, + -6.8592705726623535 + ] + }, + { + "mesh":6373, + "name":"Object2388", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.124554991722107, + 16.99413299560547 + ] + }, + { + "mesh":6374, + "name":"Obj3d66-647191-30-134", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.586889266967773, + 1.6615828275680542, + -9.33387279510498 + ] + }, + { + "mesh":6375, + "name":"Rectangle1302", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -3.4504623413085938 + ] + }, + { + "mesh":6376, + "name":"Obj3d66-647191-1-653", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.520580291748047, + 1.670127511024475, + 5.562841892242432 + ] + }, + { + "mesh":6377, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface706", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.031774520874023, + 0.9035907983779907, + 13.954267501831055 + ] + }, + { + "mesh":6378, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube339", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 1.3735631704330444, + 4.7883429527282715 + ] + }, + { + "mesh":6379, + "name":"Circle1649", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9188429117202759, + -6.182591915130615 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface604", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":6380, + "name":"pasted__pasted__pCylinder549", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.973764419555664, + 2.370926856994629, + -0.6050395965576172 + ] + }, + { + "mesh":6381, + "name":"Rectangle1447", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384544610977173, + 7.512768268585205 + ] + }, + { + "mesh":6382, + "name":"Object1831", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.059684753417969, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":6383, + "name":"Circle2576", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.716802954673767, + 1.2445766925811768 + ] + }, + { + "mesh":6384, + "name":"Circle1935", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9751113653182983, + -4.694486618041992 + ] + }, + { + "mesh":6385, + "name":"Object2559", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.83371925354004, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6386, + "name":"Circle2223", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8742982149124146, + -1.5229665040969849 + ] + }, + { + "mesh":6387, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder095", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.694669723510742, + 0.6288567781448364, + 14.163941383361816 + ] + }, + { + "mesh":6388, + "name":"Object2598", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.898408889770508, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6389, + "name":"pasted__pasted__pasted__extrudedSurface077", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.948976516723633, + 1.433923363685608, + 13.822271347045898 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface581", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "mesh":6390, + "name":"pasted__pasted__pasted__pCube687", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033937454223633, + 0.8213735818862915, + 15.524377822875977 + ] + }, + { + "mesh":6391, + "name":"Object1974", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.092689514160156, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6392, + "name":"Circle1849", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.947507858276367, + 2.0202722549438477, + -4.660953998565674 + ] + }, + { + "mesh":6393, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface713", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.309789657592773, + 1.3311516046524048, + 12.764594078063965 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube196", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -6.0519328117370605 + ] + }, + { + "mesh":6394, + "name":"pasted__pasted__pCylinder679", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.917276382446289, + 2.220302104949951, + 5.37495231628418 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube658", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 8.995062828063965 + ] + }, + { + "mesh":6395, + "name":"Circle3062", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1140856742858887, + 2.833003044128418 + ] + }, + { + "mesh":6396, + "name":"pasted__pasted__pasted__pPlane331", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.146211624145508, + 0.38866126537323, + 16.590402603149414 + ] + }, + { + "mesh":6397, + "name":"Circle1704", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.119661331176758, + 1.6809571981430054, + -5.460317134857178 + ] + }, + { + "mesh":6398, + "name":"Object1873", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.115190505981445, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6399, + "name":"pasted__pasted__pCylinder709", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.98294448852539, + 2.398254871368408, + 4.676748752593994 + ] + }, + { + "mesh":6400, + "name":"Object2532", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.871686935424805, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube532", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":6401, + "name":"Rectangle1434", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + 4.2427167892456055 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__polySurface078", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":6402, + "name":"polySurface117", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.646577835083008, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":6403, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube064", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137231826782227, + 0.6166743040084839, + 3.4555017948150635 + ] + }, + { + "mesh":6404, + "name":"Rectangle955", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -7.766016483306885 + ] + }, + { + "mesh":6405, + "name":"pasted__pasted__pCylinder475", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.035856246948242, + 3.2234039306640625, + 6.807459831237793 + ] + }, + { + "mesh":6406, + "name":"Circle2346", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.612430453300476, + -2.778198719024658 + ] + }, + { + "mesh":6407, + "name":"pasted__pasted__pasted__polySurface558", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.411169052124023, + 0.6836510896682739, + 15.073861122131348 + ] + }, + { + "mesh":6408, + "name":"pasted__pasted__pasted__pCube590", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.256271362304688, + 0.25255119800567627, + 16.590106964111328 + ] + }, + { + "mesh":6409, + "name":"Obj3d66-647191-3-607", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.440500259399414, + 1.7478052377700806, + 12.221233367919922 + ] + }, + { + "mesh":6410, + "name":"Rectangle1428", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137237548828125, + 1.706985592842102, + 5.296329975128174 + ] + }, + { + "mesh":6411, + "name":"pasted__pasted__pCylinder329.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.292848587036133, + 4.9288010597229, + -5.489729404449463 + ] + }, + { + "mesh":6412, + "name":"pasted__pasted__pCylinder497", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.913873672485352, + 2.2068328857421875, + 0.7546048164367676 + ] + }, + { + "mesh":6413, + "name":"Circle1907", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.738784909248352, + -4.827586650848389 + ] + }, + { + "mesh":6414, + "name":"pasted__pasted__pCylinder661", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.957210540771484, + 2.344217300415039, + 6.064772605895996 + ] + }, + { + "mesh":6415, + "name":"Object2312", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.499082565307617, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6416, + "name":"Object2167", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.463926315307617, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6417, + "name":"Obj3d66-647191-14-928", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.352879524230957, + 1.672275424003601, + -15.603754043579102 + ] + }, + { + "mesh":6418, + "name":"Rectangle1429", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137231826782227, + 0.6166740655899048, + 5.296329975128174 + ] + }, + { + "mesh":6419, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube369", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402330160140991, + -4.881915092468262 + ] + }, + { + "mesh":6420, + "name":"Rectangle1258", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7360172271728516, + 0.510698676109314, + 1.8242604732513428 + ] + }, + { + "mesh":6421, + "name":"extrudedSurface24", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.917051315307617, + 4.220411777496338, + -7.036888599395752 + ] + }, + { + "mesh":6422, + "name":"Object2391", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.1109386682510376, + 16.99413299560547 + ] + }, + { + "mesh":6423, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder130", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.19692611694336, + 0.5950978994369507, + 6.4527058601379395 + ] + }, + { + "mesh":6424, + "name":"Object2241", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.479394912719727, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6425, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube625", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073783874511719, + 1.36614191532135, + 2.7338707447052 + ] + }, + { + "mesh":6426, + "name":"Obj3d66-647191-33-855", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.880228042602539, + 1.2862704992294312, + -8.623236656188965 + ] + }, + { + "mesh":6427, + "name":"pasted__pasted__pCube731", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.35550880432129, + 5.064015865325928, + 1.7283942699432373 + ] + }, + { + "mesh":6428, + "name":"Obj3d66-647191-20-051", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.56678581237793, + 1.6739333868026733, + -15.54886531829834 + ] + }, + { + "mesh":6429, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder077", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 0.3832782506942749, + -0.7935411334037781 + ] + }, + { + "mesh":6430, + "name":"Circle3106", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9526039361953735, + 2.930445909500122 + ] + }, + { + "mesh":6431, + "name":"pasted__pasted__pCylinder496", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.905208587646484, + 2.179356575012207, + 0.7498681545257568 + ] + }, + { + "mesh":6432, + "name":"Circle1776", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.006317138671875, + 1.899821400642395, + -4.720996856689453 + ] + }, + { + "mesh":6433, + "name":"Object1885", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.09831428527832, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group133", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 0.6042507886886597 + ] + }, + { + "mesh":6434, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface107", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.427684783935547, + 0.2563687562942505, + 4.469512939453125 + ] + }, + { + "mesh":6435, + "name":"Circle1701", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.106962203979492, + 1.7234259843826294, + -5.460317134857178 + ] + }, + { + "mesh":6436, + "name":"Rectangle1263", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.8114662170410156, + 0.5975691080093384, + 1.8242604732513428 + ] + }, + { + "mesh":6437, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube382", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + -1.2931100130081177 + ] + }, + { + "mesh":6438, + "name":"pasted__pasted__extrudedSurface029", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.206377029418945, + 0.1836003065109253, + 3.1438064575195312 + ] + }, + { + "mesh":6439, + "name":"pasted__pasted__pCube790", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + 4.052823543548584 + ] + }, + { + "mesh":6440, + "name":"Object2394", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.0973228216171265, + 16.99413299560547 + ] + }, + { + "mesh":6441, + "name":"Object1865", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.126443862915039, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6442, + "name":"pasted__pasted__pCylinder533", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.826955795288086, + 1.933707594871521, + -0.5305110812187195 + ] + }, + { + "mesh":6443, + "name":"Obj3d66-647191-14-947", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8921566009521484, + 1.318539023399353, + -8.596003532409668 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface683", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -6.0519328117370605 + ] + }, + { + "mesh":6444, + "name":"Object2324", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.482208251953125, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface747", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 5.416483402252197 + ] + }, + { + "mesh":6445, + "name":"Rectangle192", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.555379867553711, + 0.33695781230926514, + -12.664052963256836 + ] + }, + { + "mesh":6446, + "name":"pasted__pasted__pCube545", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.239755630493164, + 3.3579039573669434, + -7.564801216125488 + ] + }, + { + "mesh":6447, + "name":"pasted__pasted__pCube598", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.132665634155273, + 3.3579039573669434, + 6.4173712730407715 + ] + }, + { + "mesh":6448, + "name":"Obj3d66-647191-17-860", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.58660316467285, + 1.672275424003601, + -9.273892402648926 + ] + }, + { + "mesh":6449, + "name":"Obj3d66-647191-6-460", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.880228042602539, + 1.4017442464828491, + -8.623495101928711 + ] + }, + { + "mesh":6450, + "name":"pasted__pasted__pCylinder504", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.974546432495117, + 2.399171829223633, + 0.7878137826919556 + ] + }, + { + "mesh":6451, + "name":"Object2567", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.822467803955078, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6452, + "name":"Object1977", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.088468551635742, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6453, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pasted__pasted__polySurface460_pasted__pasted__main010", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.225377082824707, + 1.7042917013168335, + -13.693860054016113 + ] + }, + { + "mesh":6454, + "name":"Rectangle1238", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + -6.240809917449951 + ] + }, + { + "mesh":6455, + "name":"Rectangle175", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.271402359008789, + 0.42382848262786865, + -12.738801002502441 + ] + }, + { + "mesh":6456, + "name":"Rectangle372.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508668899536133, + 0.14451754093170166, + 8.079634666442871 + ] + }, + { + "mesh":6457, + "name":"pasted__pasted__pCylinder728", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.675485610961914, + 4.842443466186523, + 4.135421276092529 + ] + }, + { + "mesh":6458, + "name":"pasted__pasted__pasted__pasted__pasted__polySurface729", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.68073081970215, + 0.9171165227890015, + 12.764594078063965 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube668", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":6459, + "name":"pasted__pasted__pTorus034", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.092384338378906, + 5.048586368560791, + 1.5260159969329834 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__pasted__pasted__pCylinder12_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group122", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -6.569958209991455 + ] + }, + { + "mesh":6460, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube359", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.0402323007583618, + -7.826740264892578 + ] + }, + { + "mesh":6461, + "name":"pasted__pasted__pTorus019", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.05022621154785, + 3.3054070472717285, + -7.529970169067383 + ] + }, + { + "mesh":6462, + "name":"Circle2796", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.106962203979492, + 1.7234259843826294, + 0.6277795433998108 + ] + }, + { + "mesh":6463, + "name":"Object1857", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.137694358825684, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6464, + "name":"pasted__pasted__pasted__pasted__pCylinder845", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.785097122192383, + 0.28987395763397217, + 13.938965797424316 + ] + }, + { + "mesh":6465, + "name":"pasted__pasted__pasted__pPlane090", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.652090072631836, + 0.3886607885360718, + 12.952313423156738 + ] + }, + { + "mesh":6466, + "name":"Obj3d66-647191-29-922", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.352879524230957, + 1.6631056070327759, + -15.603754043579102 + ] + }, + { + "mesh":6467, + "name":"pasted__pasted__pCylinder613", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.327375411987305, + 4.269148349761963, + 0.010608889162540436 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube402", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":6468, + "name":"pasted__pasted__pasted__pCube676", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 1.2411543130874634, + 14.8716459274292 + ] + }, + { + "mesh":6469, + "name":"Circle1471", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.637501835823059, + -6.024139881134033 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube624", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":6470, + "name":"pasted__pasted__pasted__pPlane110", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.753885269165039, + 0.3886605501174927, + 15.0485200881958 + ] + }, + { + "mesh":6471, + "name":"pasted__pasted__pasted__pasted__pPipe077", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.327337265014648, + 0.43142926692962646, + 14.828760147094727 + ] + }, + { + "mesh":6472, + "name":"Rectangle1379", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.456121444702148, + 0.6124781370162964, + 5.296330451965332 + ] + }, + { + "mesh":6473, + "name":"Circle2388", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.285993576049805, + 1.444670557975769, + -2.228497266769409 + ] + }, + { + "mesh":6474, + "name":"pasted__pasted__pasted__pasted__pasted__pCube574", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.571977615356445, + 0.6876319646835327, + 12.749217987060547 + ] + }, + { + "mesh":6475, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder065", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + -0.21097689867019653 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube472", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.122005462646484 + ] + }, + { + "mesh":6476, + "name":"polySurface365", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.43069839477539, + 1.4188710451126099, + 14.939345359802246 + ] + }, + { + "mesh":6477, + "name":"Circle2704", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6825164556503296, + 0.03860517591238022 + ] + }, + { + "mesh":6478, + "name":"pasted__pasted__pCube785", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.975038528442383, + 1.082088828086853, + 3.151080369949341 + ] + }, + { + "mesh":6479, + "name":"Obj3d66-647191-32-925", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8924436569213867, + 1.3078466653823853, + -8.655887603759766 + ] + }, + { + "mesh":6480, + "name":"Circle3111", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3354610204696655, + 3.221646547317505 + ] + }, + { + "mesh":6481, + "name":"Object2336", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.46533203125, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6482, + "name":"Object2519", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.889972686767578, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6483, + "name":"Obj3d66-647191-29-939", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.58660316467285, + 1.6631056070327759, + -9.328777313232422 + ] + }, + { + "mesh":6484, + "name":"Circle2268", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.5398427248001099, + -2.228497266769409 + ] + }, + { + "mesh":6485, + "name":"Rectangle1301", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -3.4504623413085938 + ] + }, + { + "mesh":6486, + "name":"Obj3d66-647191-3-583", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.629793167114258, + 1.7478052377700806, + 5.5750579833984375 + ] + }, + { + "mesh":6487, + "name":"pasted__pasted__pCylinder337.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.785676956176758, + 4.840120792388916, + -7.035694122314453 + ] + }, + { + "mesh":6488, + "name":"Circle1648", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9300965070724487, + -6.188930988311768 + ] + }, + { + "mesh":6489, + "name":"Circle3091", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5986121892929077, + 3.1298158168792725 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube557", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -2.991379976272583 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube184", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":6490, + "name":"pasted__pasted__pCylinder548", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.964591979980469, + 2.343602180480957, + -0.6003867983818054 + ] + }, + { + "mesh":6491, + "name":"Circle2273", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.2755346298217773, + -2.228497266769409 + ] + }, + { + "mesh":6492, + "name":"Object1830", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.066505432128906, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":6493, + "name":"Circle1934", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9863649606704712, + -4.6881489753723145 + ] + }, + { + "mesh":6494, + "name":"Circle2222", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.8630484342575073, + -1.5293047428131104 + ] + }, + { + "mesh":6495, + "name":"pasted__pasted__pCube461", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6876392364501953, + 1.027711033821106, + 14.626144409179688 + ] + }, + { + "mesh":6496, + "name":"pasted__pasted__pCylinder666", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.000547409057617, + 2.481602668762207, + 6.088486194610596 + ] + }, + { + "mesh":6497, + "name":"pasted__pasted__pasted__extrudedSurface076", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.298114776611328, + 1.4143375158309937, + 13.91717529296875 + ] + }, + { + "mesh":6498, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube346", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 0.3764752149581909, + 5.079017639160156 + ] + }, + { + "mesh":6499, + "name":"pasted__pasted__pasted__pCube686", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 0.9795023202896118, + 15.524377822875977 + ] + }, + { + "mesh":6500, + "name":"pasted__pasted__pasted__pCube415", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.940765380859375, + 0.7962998151779175, + -6.668007850646973 + ] + }, + { + "mesh":6501, + "name":"Object2329", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.475177764892578, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6502, + "name":"Circle1725", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.996707916259766, + 1.9449390172958374, + -6.2047319412231445 + ] + }, + { + "mesh":6503, + "name":"Obj3d66-647191-25-203", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.978816986083984, + 1.664944052696228, + -15.576766014099121 + ] + }, + { + "mesh":6504, + "name":"Circle1848", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.954856872558594, + 2.0417962074279785, + -4.648643493652344 + ] + }, + { + "mesh":6505, + "name":"Circle1493", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7275310754776, + -6.0748443603515625 + ] + }, + { + "mesh":6506, + "name":"Circle1777", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.002639770507812, + 1.9106930494308472, + -4.714841842651367 + ] + }, + { + "mesh":6507, + "name":"pasted__pasted__pasted__pCylinder722", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.46565055847168, + 0.9016937017440796, + 14.186617851257324 + ] + }, + { + "mesh":6508, + "name":"Obj3d66-647191-9-479", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.563129425048828, + 1.6471415758132935, + -9.270478248596191 + ] + }, + { + "mesh":6509, + "name":"pasted__pasted__pCylinder680", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.926324844360352, + 2.24806547164917, + 5.37495231628418 + ] + }, + { + "mesh":6510, + "name":"Object2591", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.78871726989746, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6511, + "name":"Circle1703", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.115150451660156, + 1.6960471868515015, + -5.460317134857178 + ] + }, + { + "mesh":6512, + "name":"Obj3d66-647191-10-407", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3649654388427734, + 1.6559807062149048, + -15.576226234436035 + ] + }, + { + "mesh":6513, + "name":"Circle2487", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.119661331176758, + 1.584893822669983, + -2.766990900039673 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface744", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 4.803884506225586 + ] + }, + { + "mesh":6514, + "name":"pasted__pasted__pCylinder710", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.992120742797852, + 2.4255805015563965, + 4.672097206115723 + ] + }, + { + "mesh":6515, + "name":"Object2531", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.873098373413086, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube531", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.0522043704986572 + ] + }, + { + "mesh":6516, + "name":"Obj3d66-647191-2-984", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747915267944336, + 1.6754931211471558, + -9.265257835388184 + ] + }, + { + "mesh":6517, + "name":"Circle3138", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.022436141967773, + 2.0060811042785645, + 3.6717348098754883 + ] + }, + { + "mesh":6518, + "name":"Circle2199", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10127067565918, + 1.118975043296814, + -1.917352557182312 + ] + }, + { + "mesh":6519, + "name":"Circle2673", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0707077980041504, + 0.6277795433998108 + ] + }, + { + "mesh":6520, + "name":"Obj3d66-647191-20-065", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.981449127197266, + 1.6739333868026733, + -15.548868179321289 + ] + }, + { + "mesh":6521, + "name":"Circle2345", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.750038504600525, + -2.8557000160217285 + ] + }, + { + "mesh":6522, + "name":"Circle1710", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.4164232015609741, + -5.556642532348633 + ] + }, + { + "mesh":6523, + "name":"pasted__pasted__pCylinder685", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.971542358398438, + 2.38688325881958, + 5.37495231628418 + ] + }, + { + "mesh":6524, + "name":"Object1802", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.079168438911438, + 16.99413299560547 + ] + }, + { + "mesh":6525, + "name":"pasted__pasted__pCylinder338", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.673418045043945, + 4.837941646575928, + -5.489729404449463 + ] + }, + { + "mesh":6526, + "name":"Circle1906", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.750038504600525, + -4.821249008178711 + ] + }, + { + "mesh":6527, + "name":"Object2166", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.46533203125, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6528, + "name":"Obj3d66-647191-13-188", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3518457412719727, + 1.6729644536972046, + -15.603754043579102 + ] + }, + { + "mesh":6529, + "name":"Shape091", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.205141067504883, + 1.5521396398544312, + -0.6541617512702942 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube341", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":6530, + "name":"Rectangle1257", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.023313522338867, + 0.14451849460601807, + 1.97707998752594 + ] + }, + { + "mesh":6531, + "name":"Circle1751", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.095937728881836, + 1.6543697118759155, + -6.038546562194824 + ] + }, + { + "mesh":6532, + "name":"pasted__pasted__pCylinder447", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.186412811279297, + 2.950833797454834, + -7.5038299560546875 + ] + }, + { + "mesh":6533, + "name":"Object2390", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.115477442741394, + 16.99413299560547 + ] + }, + { + "mesh":6534, + "name":"Object2240", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.480802536010742, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6535, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube373", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073788642883301, + 1.0402315855026245, + -2.8944993019104004 + ] + }, + { + "mesh":6536, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube543", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.029628753662109, + 1.5177079439163208, + 2.9954724311828613 + ] + }, + { + "mesh":6537, + "name":"pasted__pasted__pCube730", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.354816436767578, + 5.073940753936768, + 2.591397285461426 + ] + }, + { + "mesh":6538, + "name":"Obj3d66-647191-19-274", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567060470581055, + 1.6718100309371948, + -15.54886531829834 + ] + }, + { + "mesh":6539, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder076", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 0.3832782506942749, + -0.4975220561027527 + ] + }, + { + "mesh":6540, + "name":"Rectangle324", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.710830688476562, + 0.14451754093170166, + 6.507448196411133 + ] + }, + { + "mesh":6541, + "name":"Circle3105", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9638575315475464, + 2.924107313156128 + ] + }, + { + "mesh":6542, + "name":"pasted__pasted__pCube688", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.312904357910156, + 2.6223349571228027, + 5.469515323638916 + ] + }, + { + "mesh":6543, + "name":"Obj3d66-647191-3-610", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.880228042602539, + 1.3940688371658325, + -8.549522399902344 + ] + }, + { + "mesh":6544, + "name":"Circle1775", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.009992599487305, + 1.8889487981796265, + -4.727152347564697 + ] + }, + { + "mesh":6545, + "name":"Object1884", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.099720001220703, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6546, + "name":"Rectangle1123", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.5579833984375, + 0.14451777935028076, + 16.01140785217285 + ] + }, + { + "mesh":6547, + "name":"pasted__pasted__pCube669", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939353942871094, + 5.073940753936768, + 1.7463427782058716 + ] + }, + { + "mesh":6548, + "name":"Rectangle1262", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.7509279251098633, + 0.1627582311630249, + 2.0156755447387695 + ] + }, + { + "mesh":6549, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube314", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.88755989074707, + 1.3735638856887817, + 6.245214939117432 + ] + }, + { + "mesh":6550, + "name":"Circle3085", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.817560076713562, + 3.006503105163574 + ] + }, + { + "mesh":6551, + "name":"Object2393", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.101861596107483, + 16.99413299560547 + ] + }, + { + "mesh":6552, + "name":"Object2624", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.861846923828125, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6553, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube310", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.840343475341797, + 1.2924860715866089, + 0.08089223504066467 + ] + }, + { + "mesh":6554, + "name":"Obj3d66-647191-13-207", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8931865692138672, + 1.3192280530929565, + -8.596003532409668 + ] + }, + { + "mesh":6555, + "name":"pasted__pasted__pCylinder440", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.035856246948242, + 3.1357784271240234, + -6.79180383682251 + ] + }, + { + "mesh":6556, + "name":"pasted__pasted__pCylinder338.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -21.19230079650879, + 4.837941646575928, + -5.68145751953125 + ] + }, + { + "mesh":6557, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface696", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.071154594421387, + 0.7688859701156616, + 1.8187812566757202 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube497", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -5.252631187438965 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface682", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -6.0519328117370605 + ] + }, + { + "mesh":6558, + "name":"Object2323", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.483612060546875, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6559, + "name":"Circle2971", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9867950677871704, + 4.440646171569824 + ] + }, + { + "mesh":6560, + "name":"Circle2012", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9439455270767212, + -5.459476947784424 + ] + }, + { + "mesh":6561, + "name":"Obj3d66-647191-10-424", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.574514389038086, + 1.6559807062149048, + -9.301251411437988 + ] + }, + { + "mesh":6562, + "name":"Circle1986", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8805640935897827, + -5.459476947784424 + ] + }, + { + "mesh":6563, + "name":"Obj3d66-647191-16-705", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.586368560791016, + 1.6718100309371948, + -9.328777313232422 + ] + }, + { + "mesh":6564, + "name":"pasted__pasted__pCylinder503", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.96588134765625, + 2.371694564819336, + 0.7830667495727539 + ] + }, + { + "mesh":6565, + "name":"Circle3160", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.10328483581543, + 1.7357155084609985, + 3.6717348098754883 + ] + }, + { + "mesh":6566, + "name":"Circle1778", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.998964309692383, + 1.9215654134750366, + -4.7086873054504395 + ] + }, + { + "mesh":6567, + "name":"Rectangle815", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.012165069580078, + 0.6313761472702026, + -7.999842166900635 + ] + }, + { + "mesh":6568, + "name":"Rectangle174", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.271402359008789, + 0.510698676109314, + -12.818193435668945 + ] + }, + { + "mesh":6569, + "name":"Rectangle371.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -24.508668899536133, + 0.14451754093170166, + 9.45675277709961 + ] + }, + { + "mesh":6570, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder110", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692001342773438, + 1.3803664445877075, + 4.492900848388672 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube398", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":6571, + "name":"pasted__pasted__pCube738", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.354814529418945, + 5.073940753936768, + 0.3497324287891388 + ] + }, + { + "mesh":6572, + "name":"pasted__pasted__pCube399", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.038043975830078, + 5.064568996429443, + -4.484000205993652 + ] + }, + { + "mesh":6573, + "name":"Line2430", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.357885360717773, + 0.18367278575897217, + -2.2343010902404785 + ] + }, + { + "mesh":6574, + "name":"Circle3206", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.07756233215332, + 1.7081788778305054, + 3.0627307891845703 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube667", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":6575, + "name":"pasted__pasted__pCylinder565", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.967205047607422, + 0.12859117984771729, + 0.1766769289970398 + ] + }, + { + "mesh":6576, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube298", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.645875930786133, + 0.4110215902328491, + 0.37840917706489563 + ] + }, + { + "mesh":6577, + "name":"Object1856", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.139096260070801, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube401", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":6578, + "name":"pasted__pasted__pasted__pCube675", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 1.399283766746521, + 14.8716459274292 + ] + }, + { + "mesh":6579, + "name":"pasted__pasted__pCylinder578", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.980253219604492, + 5.043131351470947, + -2.164031982421875 + ] + }, + { + "mesh":6580, + "name":"Circle1470", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6262482404708862, + -6.017801761627197 + ] + }, + { + "mesh":6581, + "name":"pasted__pasted__pCylinder726", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.673418045043945, + 4.837941646575928, + 5.477010726928711 + ] + }, + { + "mesh":6582, + "name":"pasted__pasted__pasted__pPlane109", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.753885269165039, + 0.3886605501174927, + 14.480447769165039 + ] + }, + { + "mesh":6583, + "name":"Circle1544", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.5398427248001099, + -5.460318088531494 + ] + }, + { + "mesh":6584, + "name":"Rectangle1378", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.456121444702148, + 0.5755866765975952, + 5.296329975128174 + ] + }, + { + "mesh":6585, + "name":"Circle2387", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.101621627807617, + 1.3890365362167358, + -2.228497266769409 + ] + }, + { + "mesh":6586, + "name":"Circle2839", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.070215225219727, + 1.729702353477478, + 0.006465621292591095 + ] + }, + { + "mesh":6587, + "name":"pasted__pasted__pCube810", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036029815673828, + 5.052017688751221, + 3.372715473175049 + ] + }, + { + "mesh":6588, + "name":"Obj3d66-647191-26-560", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3525896072387695, + 1.670127511024475, + -15.611695289611816 + ] + }, + { + "mesh":6589, + "name":"Circle2139", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.9268741607666, + 1.94330894947052, + -6.212393283843994 + ] + }, + { + "mesh":6590, + "name":"Rectangle1103", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.997325897216797, + 0.14451777935028076, + 16.01140785217285 + ] + }, + { + "mesh":6591, + "name":"Circle1576", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.1154088973999023, + -4.610560894012451 + ] + }, + { + "mesh":6592, + "name":"Circle1966", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.07200050354004, + 1.3985601663589478, + -5.459476947784424 + ] + }, + { + "mesh":6593, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube321", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.88755989074707, + 0.3764752149581909, + 6.245214939117432 + ] + }, + { + "mesh":6594, + "name":"Rectangle1386", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 5.51116943359375 + ] + }, + { + "mesh":6595, + "name":"Circle3255", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.03939437866211, + 1.8019732236862183, + 4.355660438537598 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__pCube182", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":6596, + "name":"Rectangle848", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.2858810424804688, + 0.14451825618743896, + 5.734307289123535 + ] + }, + { + "mesh":6597, + "name":"Object2335", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.466737747192383, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6598, + "name":"pasted__pasted__pPipe040", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.62812614440918, + 0.8586965799331665, + -7.6864013671875 + ] + }, + { + "mesh":6599, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube84", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + -6.48166561126709 + ] + }, + { + "mesh":6600, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder093", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.35464859008789, + 1.4823185205459595, + 0.148127019405365 + ] + }, + { + "mesh":6601, + "name":"Object2518", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.89137840270996, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6602, + "name":"Obj3d66-647191-28-064", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.586889266967773, + 1.6571954488754272, + -9.33092975616455 + ] + }, + { + "mesh":6603, + "name":"Circle2267", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.481918454170227, + -2.228497266769409 + ] + }, + { + "mesh":6604, + "name":"Rectangle1300", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -2.599900722503662 + ] + }, + { + "mesh":6605, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube504", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.254796981811523, + 1.517708420753479, + -6.699187278747559 + ] + }, + { + "mesh":6606, + "name":"Rectangle527", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.132937431335449, + 0.5944722890853882, + -11.10543441772461 + ] + }, + { + "mesh":6607, + "name":"Circle1844", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.92913246154785, + 1.9664632081985474, + -4.691728115081787 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube654", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":6608, + "name":"pasted__pasted__pasted__pCylinder751", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.929457664489746, + 0.8645819425582886, + 5.603519439697266 + ] + }, + { + "mesh":6609, + "name":"Circle1647", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9413498640060425, + -6.195267677307129 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube183", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":6610, + "name":"Object1829", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.073333740234375, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":6611, + "name":"pasted__pasted__pCube582", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.472095489501953, + -0.6245768070220947, + 6.480377197265625 + ] + }, + { + "mesh":6612, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube588", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 0.8592516183853149, + -2.7470192909240723 + ] + }, + { + "mesh":6613, + "name":"Circle1933", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9976187944412231, + -4.68181037902832 + ] + }, + { + "mesh":6614, + "name":"Circle2221", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.840549111366272, + -1.5419809818267822 + ] + }, + { + "mesh":6615, + "name":"pasted__pasted__pCylinder667", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.009218215942383, + 2.5090794563293457, + 6.093233585357666 + ] + }, + { + "mesh":6616, + "name":"pasted__pasted__pasted__extrudedSurface075", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.336172103881836, + 1.4350770711898804, + 15.539443969726562 + ] + }, + { + "mesh":6617, + "name":"pasted__pasted__pCube402.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.554912567138672, + 5.052017688751221, + -6.083895683288574 + ] + }, + { + "mesh":6618, + "name":"Circle2288", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6506258249282837, + -2.22849702835083 + ] + }, + { + "mesh":6619, + "name":"pasted__pasted__pasted__pCube685", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 1.2411547899246216, + 15.524377822875977 + ] + }, + { + "mesh":6620, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder8", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + -5.018119812011719 + ] + }, + { + "mesh":6621, + "name":"pasted__pasted__pasted__pasted__pPipe086", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.698280334472656, + 0.43142926692962646, + 14.828760147094727 + ] + }, + { + "mesh":6622, + "name":"Circle1847", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.951181411743164, + 2.031034469604492, + -4.65479850769043 + ] + }, + { + "mesh":6623, + "name":"Object2272", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.435800552368164, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6624, + "name":"Object2627", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.857629776000977, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6625, + "name":"Object2123", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.443744659423828, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":6626, + "name":"Obj3d66-647191-8-582", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.55536460876465, + 1.6444579362869263, + -15.555949211120605 + ] + }, + { + "mesh":6627, + "name":"Object2144", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.496271133422852, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6628, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pCube050", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137231826782227, + 0.6166743040084839, + -7.5460405349731445 + ] + }, + { + "mesh":6629, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder14", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.101566314697266, + 1.4834917783737183, + -5.60002326965332 + ] + }, + { + "mesh":6630, + "name":"Object2347", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.449861526489258, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6631, + "name":"pasted__pasted__pTorus025", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.92896842956543, + 3.3054070472717285, + 6.452202796936035 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface756", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 2.3852198123931885 + ] + }, + { + "mesh":6632, + "name":"Circle2821", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.015085220336914, + 1.8911300897598267, + -0.08585921674966812 + ] + }, + { + "mesh":6633, + "name":"Circle3128", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.985681533813477, + 2.128974437713623, + 3.6717348098754883 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface779", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 3.6732590198516846 + ] + }, + { + "mesh":6634, + "name":"pasted__pasted__pCube737", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.35550880432129, + 5.064015865325928, + 0.04864976927638054 + ] + }, + { + "mesh":6635, + "name":"Circle3183", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.985681533813477, + 1.9772247076034546, + 2.9088563919067383 + ] + }, + { + "mesh":6636, + "name":"pasted__pasted__pasted__pasted__pPipe026", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.982082366943359, + 0.43142926692962646, + 15.858174324035645 + ] + }, + { + "mesh":6637, + "name":"Object2676", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.78871726989746, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6638, + "name":"Obj3d66-647191-1-679", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747915267944336, + 1.670127511024475, + -9.266045570373535 + ] + }, + { + "mesh":6639, + "name":"pasted__pasted__pCylinder689", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.007719039916992, + 2.4979376792907715, + 5.37495231628418 + ] + }, + { + "mesh":6640, + "name":"Rectangle1126", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.310401916503906, + 0.5256079435348511, + 12.50312614440918 + ] + }, + { + "mesh":6641, + "name":"Circle2344", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.738784670829773, + -2.8493616580963135 + ] + }, + { + "mesh":6642, + "name":"polySurface375", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.46466064453125, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":6643, + "name":"pasted__pasted__pTorus3.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.092384338378906, + 5.048586368560791, + -5.48799991607666 + ] + }, + { + "mesh":6644, + "name":"Circle1905", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.7275313138961792, + -4.833924770355225 + ] + }, + { + "mesh":6645, + "name":"Object2165", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.466737747192383, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6646, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube386", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210634231567383, + 1.040232539176941, + -0.11559253185987473 + ] + }, + { + "mesh":6647, + "name":"Obj3d66-647191-12-207", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3518457412719727, + 1.6637946367263794, + -15.603754043579102 + ] + }, + { + "mesh":6648, + "name":"pasted__pasted__pCylinder369", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2247467041015625, + 1.5741528272628784, + -5.196205139160156 + ] + }, + { + "mesh":6649, + "name":"Rectangle035", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033182144165039, + 0.14451849460601807, + -13.339606285095215 + ] + }, + { + "mesh":6650, + "name":"pasted__pasted__pasted__pPlane313", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.93793296813965, + 0.38407909870147705, + 16.587963104248047 + ] + }, + { + "mesh":6651, + "name":"pasted__pasted__group22_pCube040", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.491086959838867, + 11.211284637451172, + -3.355710744857788 + ] + }, + { + "mesh":6652, + "name":"pasted__pasted__pPipe125", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.78164291381836, + 2.5599560737609863, + 7.780964374542236 + ] + }, + { + "mesh":6653, + "name":"Rectangle1349", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.205141067504883, + 0.6940621137619019, + -0.6545467376708984 + ] + }, + { + "mesh":6654, + "name":"Circle2357", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7950526475906372, + -2.8810524940490723 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube514", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.9215790033340454 + ] + }, + { + "mesh":6655, + "name":"Rectangle1408", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.2364501953125, + 0.14451825618743896, + 4.220424652099609 + ] + }, + { + "mesh":6656, + "name":"Rectangle1256", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.023313522338867, + 0.14451849460601807, + -3.2701363563537598 + ] + }, + { + "mesh":6657, + "name":"Object2389", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.1200159788131714, + 16.99413299560547 + ] + }, + { + "mesh":6658, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__polySurface6_pasted__pasted__doors153", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.079298973083496, + 0.7384535074234009, + 3.1290225982666016 + ] + }, + { + "mesh":6659, + "name":"Circle2502", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15263557434082, + 1.49055016040802, + -2.7117538452148438 + ] + }, + { + "mesh":6660, + "name":"pasted__pasted__pCube729", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.35550880432129, + 5.064015865325928, + 2.2903144359588623 + ] + }, + { + "mesh":6661, + "name":"Obj3d66-647191-18-826", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.568323135375977, + 1.6729644536972046, + -15.54886531829834 + ] + }, + { + "mesh":6662, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder075", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 0.3832782506942749, + -0.20684820413589478 + ] + }, + { + "mesh":6663, + "name":"Circle1794", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.035717010498047, + 1.8128453493118286, + -4.770236968994141 + ] + }, + { + "mesh":6664, + "name":"Circle1856", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.87767791748047, + 1.8157974481582642, + -4.77789831161499 + ] + }, + { + "mesh":6665, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube325", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.378658294677734, + 1.429686188697815, + 5.360504627227783 + ] + }, + { + "mesh":6666, + "name":"Rectangle1113", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.557981491088867, + 0.14451825618743896, + 14.283381462097168 + ] + }, + { + "mesh":6667, + "name":"Circle3104", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9751108884811401, + 2.9177699089050293 + ] + }, + { + "mesh":6668, + "name":"Object1883", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.1011247634887695, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6669, + "name":"pasted__pasted__pCube668", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + 1.4452604055404663 + ] + }, + { + "mesh":6670, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder096", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 1.3803664445877075, + 6.244637489318848 + ] + }, + { + "mesh":6671, + "name":"pasted__pasted__pCube791", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + 4.636561393737793 + ] + }, + { + "mesh":6672, + "name":"Object2392", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.839672088623047, + 1.1064001321792603, + 16.99413299560547 + ] + }, + { + "mesh":6673, + "name":"Obj3d66-647191-13-206", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.748655319213867, + 1.6729644536972046, + -9.328778266906738 + ] + }, + { + "mesh":6674, + "name":"pasted__pasted__pCylinder532", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.025808334350586, + 2.5534653663635254, + 0.08851037919521332 + ] + }, + { + "mesh":6675, + "name":"pasted__pasted__pCube624", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.034181594848633, + 1.1083353757858276, + 2.480562686920166 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube345", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -6.0519328117370605 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube392", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 6.547109127044678 + ] + }, + { + "mesh":6676, + "name":"Circle2691", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.4346307516098022, + -0.02628570795059204 + ] + }, + { + "mesh":6677, + "name":"pasted__pasted__pasted__polySurface557", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.411169052124023, + 0.6836510896682739, + 14.722369194030762 + ] + }, + { + "mesh":6678, + "name":"pasted__pasted__pasted__pCube188", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 0.9795023202896118, + 16.828125 + ] + }, + { + "mesh":6679, + "name":"Circle1985", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.86788809299469, + -5.459476947784424 + ] + }, + { + "mesh":6680, + "name":"Obj3d66-647191-15-311", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.586368560791016, + 1.6626402139663696, + -9.328777313232422 + ] + }, + { + "mesh":6681, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder44", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 0.3832782506942749, + -4.717060565948486 + ] + }, + { + "mesh":6682, + "name":"pasted__pasted__pCylinder502", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.957210540771484, + 2.344217300415039, + 0.7783297896385193 + ] + }, + { + "mesh":6683, + "name":"Circle3159", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.0996150970459, + 1.7480052709579468, + 3.6717348098754883 + ] + }, + { + "mesh":6684, + "name":"Rectangle814", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.3101272583007812, + 0.3707655668258667, + -7.999842166900635 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube362", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -1.3501960039138794 + ] + }, + { + "mesh":6685, + "name":"pasted__pasted__pCylinder519", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.908235549926758, + 2.192540168762207, + 0.08851037919521332 + ] + }, + { + "mesh":6686, + "name":"Rectangle173", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.271402359008789, + 0.5975691080093384, + -12.893644332885742 + ] + }, + { + "mesh":6687, + "name":"Rectangle542", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 13.972362518310547, + 0.16196635365486145, + -2.530869960784912 + ] + }, + { + "mesh":6688, + "name":"Circle1843", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.93280792236328, + 1.9772249460220337, + -4.685573101043701 + ] + }, + { + "mesh":6689, + "name":"Circle2127", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.80476188659668, + 1.6957210302352905, + -5.459476947784424 + ] + }, + { + "mesh":6690, + "name":"Circle1897", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116512298583984, + 1.6262489557266235, + -4.890967845916748 + ] + }, + { + "mesh":6691, + "name":"Obj3d66-647191-26-579", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.8924436569213867, + 1.316391110420227, + -8.58806324005127 + ] + }, + { + "mesh":6692, + "name":"Circle2640", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8298596143722534, + 0.6277795433998108 + ] + }, + { + "mesh":6693, + "name":"pasted__pasted__pCylinder605", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.39571189880371, + 5.043131351470947, + -0.7689414620399475 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube478", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -4.945827484130859 + ] + }, + { + "mesh":6694, + "name":"Obj3d66-647191-22-672", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.980937957763672, + 1.6631056070327759, + 18.269943237304688 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube190", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.393779754638672 + ] + }, + { + "mesh":6695, + "name":"Object1841", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.160192489624023, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube666", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":6696, + "name":"Circle2863", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.3712199926376343, + 0.2512204647064209 + ] + }, + { + "mesh":6697, + "name":"Object1855", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.140501022338867, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube400", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":6698, + "name":"pasted__pasted__pCube680", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939355850219727, + 5.073940753936768, + -1.6126435995101929 + ] + }, + { + "mesh":6699, + "name":"Circle1571", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9192970991134644, + -4.729434490203857 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube622", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":6700, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube589", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 1.2274454832077026, + -3.273383855819702 + ] + }, + { + "mesh":6701, + "name":"pasted__pasted__pasted__pPlane106", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.753885269165039, + 0.3886605501174927, + 13.838674545288086 + ] + }, + { + "mesh":6702, + "name":"Rectangle1376", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9545860290527344, + 0.6844395399093628, + 3.0043246746063232 + ] + }, + { + "mesh":6703, + "name":"Circle2386", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15157699584961, + 1.3922072649002075, + -2.228497266769409 + ] + }, + { + "mesh":6704, + "name":"Object1881", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.103940010070801, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6705, + "name":"pasted__pasted__pasted__pPlane323", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.57813835144043, + 0.3886607885360718, + 12.952310562133789 + ] + }, + { + "mesh":6706, + "name":"Object2628", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.85622215270996, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6707, + "name":"Rectangle832", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.2858810424804688, + 0.14451825618743896, + -1.215814471244812 + ] + }, + { + "mesh":6708, + "name":"Object2334", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.468145370483398, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6709, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder30", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.12141227722168, + 0.3832782506942749, + -6.478889465332031 + ] + }, + { + "mesh":6710, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder092", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.35464859008789, + 1.4823185205459595, + -0.6141147613525391 + ] + }, + { + "mesh":6711, + "name":"pasted__pasted__pasted__pCube411", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.9333295822143555, + 0.7724686861038208, + -6.8485517501831055 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface651", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + -7.393779754638672 + ] + }, + { + "mesh":6712, + "name":"pasted__pasted__pasted__pCylinder155", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.513994216918945, + 1.2660449743270874, + 12.94787883758545 + ] + }, + { + "mesh":6713, + "name":"pasted__pasted__pPipe32", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.531618118286133, + 1.5744904279708862, + -5.198489189147949 + ] + }, + { + "mesh":6714, + "name":"Obj3d66-647191-27-327", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.586889266967773, + 1.6754931211471558, + -9.337508201599121 + ] + }, + { + "mesh":6715, + "name":"Rectangle140", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.938993453979492, + 0.14451849460601807, + -13.333332061767578 + ] + }, + { + "mesh":6716, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pasted__pasted__pasted__polySurface556", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.068794250488281, + 0.6940618753433228, + -2.4894187450408936 + ] + }, + { + "mesh":6717, + "name":"Circle037", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -0.6377744674682617, + 5.602292060852051, + 17.315980911254883 + ] + }, + { + "mesh":6718, + "name":"Rectangle014.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.009065628051758, + 0.3068186044692993, + -5.439942836761475 + ] + }, + { + "mesh":6719, + "name":"Circle2258", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.2971247434616089, + -1.8565213680267334 + ] + }, + { + "mesh":6720, + "name":"Rectangle1299", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -2.599900722503662 + ] + }, + { + "mesh":6721, + "name":"Circle2620", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.334945559501648, + 1.089152216911316 + ] + }, + { + "mesh":6722, + "name":"Rectangle525", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.132937431335449, + 0.5944722890853882, + -11.231487274169922 + ] + }, + { + "mesh":6723, + "name":"Rectangle594", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.652071952819824, + 0.14451825618743896, + 14.283381462097168 + ] + }, + { + "mesh":6724, + "name":"Obj3d66-647191-30-135", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747915267944336, + 1.6615828275680542, + -9.33387279510498 + ] + }, + { + "mesh":6725, + "name":"Circle1646", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9526039361953735, + -6.201607704162598 + ] + }, + { + "mesh":6726, + "name":"Obj3d66-647191-3-589", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.55536460876465, + 1.7478052377700806, + -15.650230407714844 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube182", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":6727, + "name":"pasted__pasted__pCube581", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.446073532104492, + -0.5796909332275391, + 6.568396091461182 + ] + }, + { + "mesh":6728, + "name":"Circle1932", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 2.0088725090026855, + -4.675472736358643 + ] + }, + { + "mesh":6729, + "name":"Circle2140", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.90850257873535, + 1.8889487981796265, + -6.181617736816406 + ] + }, + { + "mesh":6730, + "name":"Circle2220", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.829299807548523, + -1.5483189821243286 + ] + }, + { + "mesh":6731, + "name":"pasted__pasted__pasted__extrudedSurface074", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.340242385864258, + 1.4330071210861206, + 14.740805625915527 + ] + }, + { + "mesh":6732, + "name":"Circle1811", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.098196029663086, + 1.6280208826065063, + -4.874872207641602 + ] + }, + { + "mesh":6733, + "name":"Circle2530", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.057769775390625, + 1.7476130723953247, + -1.5753463506698608 + ] + }, + { + "mesh":6734, + "name":"Circle2287", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.666190505027771, + -2.22849702835083 + ] + }, + { + "mesh":6735, + "name":"pasted__pasted__pasted__pCube684", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.033939361572266, + 1.399283766746521, + 15.524377822875977 + ] + }, + { + "mesh":6736, + "name":"Obj3d66-647191-26-576", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.452716827392578, + 1.670127511024475, + 12.182690620422363 + ] + }, + { + "mesh":6737, + "name":"Circle1846", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.903409957885742, + 1.8911300897598267, + -4.734813213348389 + ] + }, + { + "mesh":6738, + "name":"pasted__pasted__pCube797", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.036027908325195, + 5.052017688751221, + 7.265465259552002 + ] + }, + { + "mesh":6739, + "name":"pasted__pasted__pasted__pasted__pasted__nurbsCylinder101", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.9691429138183594, + 0.6582883596420288, + 12.767040252685547 + ] + }, + { + "mesh":6740, + "name":"Object2122", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.450569152832031, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":6741, + "name":"pasted__pasted__pCylinder681", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.935365676879883, + 2.2758288383483887, + 5.37495231628418 + ] + }, + { + "mesh":6742, + "name":"Obj3d66-647191-8-584", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3648033142089844, + 1.6444579362869263, + -15.555953025817871 + ] + }, + { + "mesh":6743, + "name":"Circle3009", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.779154658317566, + 3.6717348098754883 + ] + }, + { + "mesh":6744, + "name":"Circle1554", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.5709763765335083, + -5.986671447753906 + ] + }, + { + "mesh":6745, + "name":"Rectangle353.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.9984130859375, + 0.14451754093170166, + 18.734647750854492 + ] + }, + { + "mesh":6746, + "name":"Rectangle601", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.652071952819824, + 0.14451777935028076, + 15.133939743041992 + ] + }, + { + "mesh":6747, + "name":"Object2346", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.451269149780273, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6748, + "name":"Circle2178", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.81294822692871, + 1.6062766313552856, + -6.021588325500488 + ] + }, + { + "mesh":6749, + "name":"pasted__pasted__pCylinder711", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.00129508972168, + 2.452907085418701, + 4.66743278503418 + ] + }, + { + "mesh":6750, + "name":"pasted__pasted__pasted__pasted__pCylinder486", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.886508941650391, + 0.28987395763397217, + 15.701493263244629 + ] + }, + { + "mesh":6751, + "name":"Obj3d66-647191-5-152", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.735698699951172, + 1.726946234703064, + -9.463458061218262 + ] + }, + { + "mesh":6752, + "name":"Circle2565", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.4393924474716187, + 1.1194655895233154 + ] + }, + { + "mesh":6753, + "name":"Circle2876", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.980588912963867, + 1.9759255647659302, + 1.4101849794387817 + ] + }, + { + "mesh":6754, + "name":"Circle2343", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7275310754776, + -2.8430235385894775 + ] + }, + { + "mesh":6755, + "name":"polySurface374", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.481645584106445, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":6756, + "name":"pasted__pasted__pCylinder329", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.293397903442383, + 4.937097072601318, + -4.15601110458374 + ] + }, + { + "mesh":6757, + "name":"pasted__pasted__pasted__pasted__polySurface378", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.322957992553711, + 0.251440167427063, + 15.849641799926758 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube550", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":6758, + "name":"Circle2295", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.2354989051818848, + -2.22849702835083 + ] + }, + { + "mesh":6759, + "name":"B\u8f66-080", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 13.929279327392578, + 0.18971693515777588, + 10.90440845489502 + ] + }, + { + "mesh":6760, + "name":"Object2164", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.468145370483398, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6761, + "name":"Obj3d66-647191-11-081", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.376347541809082, + 1.6471415758132935, + -15.607316970825195 + ] + }, + { + "mesh":6762, + "name":"Obj3d66-647191-3-608", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.574676513671875, + 1.7478052377700806, + -9.375259399414062 + ] + }, + { + "mesh":6763, + "name":"pasted__pasted__pCylinder454", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.047704696655273, + 3.351839542388916, + 6.385359287261963 + ] + }, + { + "mesh":6764, + "name":"pasted__pasted__pasted__pCylinder697", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.440046310424805, + 0.5030606985092163, + 16.585969924926758 + ] + }, + { + "mesh":6765, + "name":"Object2661", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8098087310791, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6766, + "name":"Rectangle1330", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -5.137231826782227, + 0.6166740655899048, + -0.6465283632278442 + ] + }, + { + "mesh":6767, + "name":"Rectangle1255", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.023313522338867, + 0.14451849460601807, + -0.6465283632278442 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pasted__pCube209", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 4.5926618576049805 + ] + }, + { + "mesh":6768, + "name":"pasted__pasted__pasted__pCube546", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.023614883422852, + 0.25255119800567627, + 12.952010154724121 + ] + }, + { + "mesh":6769, + "name":"Shape005", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.821920394897461, + 0.006804227828979492, + -0.5458017587661743 + ] + }, + { + "mesh":6770, + "name":"Rectangle1234", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.204704284667969, + 0.7384542226791382, + -6.829856872558594 + ] + }, + { + "mesh":6771, + "name":"Circle2501", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.228336334228516, + 1.3009413480758667, + -2.594392776489258 + ] + }, + { + "mesh":6772, + "name":"pasted__pasted__pCube728", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.354816436767578, + 5.073940753936768, + 3.1414334774017334 + ] + }, + { + "mesh":6773, + "name":"Arc08", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 17.58631134033203, + 0.15632283687591553, + -0.4420071840286255 + ] + }, + { + "mesh":6774, + "name":"Obj3d66-647191-17-841", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567289352416992, + 1.672275424003601, + -15.54886531829834 + ] + }, + { + "mesh":6775, + "name":"pasted__pasted__pasted__pCube178", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 1.399283766746521, + 16.179706573486328 + ] + }, + { + "mesh":6776, + "name":"Rectangle1039", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.892827033996582, + 0.04489290714263916, + 16.411087036132812 + ] + }, + { + "mesh":6777, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder074", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.692005157470703, + 0.3832782506942749, + 0.08646717667579651 + ] + }, + { + "mesh":6778, + "name":"Obj3d66-647191-5-153", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.880228042602539, + 1.373209834098816, + -8.461323738098145 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors04_pasted__pasted__pasted__polySurface022", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":6779, + "name":"Circle3103", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.986364483833313, + 2.9114315509796143 + ] + }, + { + "mesh":6780, + "name":"Circle1760", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.13319969177246, + 1.545251488685608, + -5.976138591766357 + ] + }, + { + "mesh":6781, + "name":"Object1882", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.102532386779785, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6782, + "name":"pasted__pasted__pCube667", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + 1.9790223836898804 + ] + }, + { + "mesh":6783, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube313", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.167539596557617, + 0.4110215902328491, + 6.241850852966309 + ] + }, + { + "mesh":6784, + "name":"pasted__pasted__pCube792", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.996099472045898, + 5.280849933624268, + 5.216222763061523 + ] + }, + { + "mesh":6785, + "name":"Rectangle845", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.155284881591797, + 0.5445059537887573, + 5.282083511352539 + ] + }, + { + "mesh":6786, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube378", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.053747177124023, + 1.0292898416519165, + 7.714211940765381 + ] + }, + { + "mesh":6787, + "name":"pasted__pasted__pCylinder531", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.016767501831055, + 2.5257010459899902, + 0.08851037919521332 + ] + }, + { + "mesh":6788, + "name":"Circle2741", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9526039361953735, + -0.11350943893194199 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__polySurface021", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":6789, + "name":"Circle2160", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.87909698486328, + 1.80197274684906, + -6.132378101348877 + ] + }, + { + "mesh":6790, + "name":"Circle1771", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.228336334228516, + 1.3009413480758667, + -5.826213359832764 + ] + }, + { + "mesh":6791, + "name":"Object2498", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.79996681213379, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__pCube344", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -6.0519328117370605 + ] + }, + { + "mesh":6792, + "name":"Circle3121", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.193811416625977, + 1.4164232015609741, + 3.627462863922119 + ] + }, + { + "mesh":6793, + "name":"Object2321", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.486431121826172, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6794, + "name":"Circle1637", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 2.0538864135742188, + -6.258649826049805 + ] + }, + { + "mesh":6795, + "name":"Object2176", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.451269149780273, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6796, + "name":"Circle1984", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.8552120923995972, + -5.459476947784424 + ] + }, + { + "mesh":6797, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube255", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.925851821899414, + 0.3764752149581909, + -4.717637062072754 + ] + }, + { + "mesh":6798, + "name":"pasted__pasted__pCylinder501", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.94854736328125, + 2.3167409896850586, + 0.7735828161239624 + ] + }, + { + "mesh":6799, + "name":"Circle3158", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.095937728881836, + 1.7602943181991577, + 3.6717348098754883 + ] + }, + { + "mesh":6800, + "name":"pasted__pasted__pasted__pCylinder674", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.440046310424805, + 0.9016937017440796, + 12.947877883911133 + ] + }, + { + "mesh":6801, + "name":"pasted__pasted__pasted__polySurface555", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.040225982666016, + 0.683651328086853, + 16.67884635925293 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube537", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 0.7909535765647888 + ] + }, + { + "mesh":6802, + "name":"polySurface349", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.498624801635742, + 1.4188710451126099, + 13.790817260742188 + ] + }, + { + "mesh":6803, + "name":"pasted__pasted__pasted__pasted__pasted__pCube469", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6699352264404297, + 0.6561340093612671, + 13.81916332244873 + ] + }, + { + "mesh":6804, + "name":"Rectangle813", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.155284881591797, + 0.5445059537887573, + -7.999842166900635 + ] + }, + { + "mesh":6805, + "name":"Circle1961", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.116506576538086, + 1.481918454170227, + -5.459476947784424 + ] + }, + { + "mesh":6806, + "name":"Circle2491", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15157699584961, + 1.3550041913986206, + -2.6367740631103516 + ] + }, + { + "mesh":6807, + "name":"Rectangle172", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.462818145751953, + 0.1627582311630249, + -12.833106994628906 + ] + }, + { + "mesh":6808, + "name":"Object2643", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.835126876831055, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6809, + "name":"Object1963", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.108160018920898, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6810, + "name":"pasted__pasted__pCylinder729", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.292579650878906, + 4.930069446563721, + 4.135421276092529 + ] + }, + { + "mesh":6811, + "name":"Rectangle521", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.132937431335449, + 0.5944722890853882, + 9.92105770111084 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube665", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":6812, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube297", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 0.3764752149581909, + 0.3750453591346741 + ] + }, + { + "mesh":6813, + "name":"pasted__pasted__pasted__pCylinder673", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.281946182250977, + 0.5030604600906372, + 12.94787883758545 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube399", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 1.097757339477539 + ] + }, + { + "mesh":6814, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors03_pasted__pasted__pasted__pCube569", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.210639953613281, + 0.9979482889175415, + -8.790603637695312 + ] + }, + { + "mesh":6815, + "name":"pasted__pasted__pPipe105", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.65885353088379, + 1.2939432859420776, + -0.746505081653595 + ] + }, + { + "mesh":6816, + "name":"pasted__pasted__pCube679", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.940048217773438, + 5.064015865325928, + -1.9137259721755981 + ] + }, + { + "mesh":6817, + "name":"Circle1570", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9305464029312134, + -4.72309684753418 + ] + }, + { + "mesh":6818, + "name":"Circle1625", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.3985601663589478, + -5.416039943695068 + ] + }, + { + "mesh":6819, + "name":"pasted__pasted__pasted__pCylinder682", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.230194091796875, + 0.5030604600906372, + 12.94787883758545 + ] + }, + { + "mesh":6820, + "name":"Obj3d66-647191-27-325", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.567583084106445, + 1.6754928827285767, + 18.333553314208984 + ] + }, + { + "mesh":6821, + "name":"Rectangle1375", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6566238403320312, + 0.42382848262786865, + 3.0043246746063232 + ] + }, + { + "mesh":6822, + "name":"Sphere040", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.19780158996582, + 1.3751152753829956, + -2.228497266769409 + ] + }, + { + "mesh":6823, + "name":"Circle2071", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.11651039123535, + 1.9417954683303833, + -6.192011833190918 + ] + }, + { + "mesh":6824, + "name":"Rectangle1317", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.180307388305664, + 0.3059629201889038, + -3.2191162109375 + ] + }, + { + "mesh":6825, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube341", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.92585563659668, + 1.3735631704330444, + 5.079017639160156 + ] + }, + { + "mesh":6826, + "name":"Rectangle816", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.2858810424804688, + 0.14451825618743896, + -7.5476179122924805 + ] + }, + { + "mesh":6827, + "name":"Circle2747", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80221939086914, + 1.4259344339370728, + 0.2991960048675537 + ] + }, + { + "mesh":6828, + "name":"Rectangle901", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.410043716430664, + 1.039061188697815, + -5.035965919494629 + ] + }, + { + "mesh":6829, + "name":"Object2333", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.469552993774414, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors02_pasted__pasted__pasted__pCube578", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 6.733811378479004 + ] + }, + { + "mesh":6830, + "name":"pasted__pasted__pCylinder5.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.863656997680664, + 2.043013095855713, + -6.229440212249756 + ] + }, + { + "mesh":6831, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCube83", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.887561798095703, + 0.3764752149581909, + -6.478302001953125 + ] + }, + { + "mesh":6832, + "name":"Circle3070", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6937700510025024, + 3.0762224197387695 + ] + }, + { + "mesh":6833, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder091", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.35464859008789, + 1.9054702520370483, + 0.1215553805232048 + ] + }, + { + "mesh":6834, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder087", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.101566314697266, + 1.4834917783737183, + 0.28193697333335876 + ] + }, + { + "mesh":6835, + "name":"pasted__pasted__pasted__pasted__pCylinder831", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -12.414154052734375, + 0.6754261255264282, + 15.99779224395752 + ] + }, + { + "mesh":6836, + "name":"Obj3d66-647191-26-577", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.586889266967773, + 1.670127511024475, + -9.336718559265137 + ] + }, + { + "mesh":6837, + "name":"pasted__pasted__pasted__pPlane105", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -7.753885269165039, + 0.3886605501174927, + 13.270601272583008 + ] + }, + { + "mesh":6838, + "name":"Circle2257", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.8073673248291, + 1.2372688055038452, + -1.867471694946289 + ] + }, + { + "mesh":6839, + "name":"Rectangle1298", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.67579460144043, + 0.14451825618743896, + -0.8613712191581726 + ] + }, + { + "mesh":6840, + "name":"pasted__pasted__pCylinder15.002", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.955413818359375, + 2.3162760734558105, + -6.276019096374512 + ] + }, + { + "mesh":6841, + "name":"Rectangle522", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.132937431335449, + 0.5944722890853882, + 10.047111511230469 + ] + }, + { + "mesh":6842, + "name":"Circle1842", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.93648338317871, + 1.98798668384552, + -4.679418563842773 + ] + }, + { + "mesh":6843, + "name":"Obj3d66-647191-32-924", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.747915267944336, + 1.6615828275680542, + -9.26889419555664 + ] + }, + { + "mesh":6844, + "name":"Obj3d66-647191-5-132", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -22.55536460876465, + 1.726946234703064, + -15.738429069519043 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__doors05_pasted__pasted__pasted__pCube181", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.040616512298584 + ] + }, + { + "mesh":6845, + "name":"Object2302", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.513145446777344, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6846, + "name":"pasted__pasted__pCube580", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.453641891479492, + -0.5983297824859619, + 6.421236038208008 + ] + }, + { + "mesh":6847, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pCylinder073", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.876100540161133, + 0.07032907009124756, + -0.029808111488819122 + ] + }, + { + "mesh":6848, + "name":"Circle2977", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.801984786987305, + 1.9192970991134644, + 4.402617454528809 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__pCube4_pasted__pasted__door107", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.38133704662323, + 0.6042507886886597 + ] + }, + { + "mesh":6849, + "name":"pasted__pasted__pasted__pCube185", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -3.6886825561523438, + 0.8213735818862915, + 15.57959270477295 + ] + }, + { + "mesh":6850, + "name":"Circle2219", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.8180502653121948, + -1.554656982421875 + ] + }, + { + "mesh":6851, + "name":"pasted__pasted__pasted__pCube731", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.40488052368164, + 1.2411543130874634, + 14.92426586151123 + ] + }, + { + "mesh":6852, + "name":"pasted__pasted__pCylinder668", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -11.017887115478516, + 2.536557197570801, + 6.097970485687256 + ] + }, + { + "mesh":6853, + "name":"pasted__pasted__pasted__pasted__pCylinder898", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -18.69748878479004, + 0.10737001895904541, + 15.855609893798828 + ] + }, + { + "mesh":6854, + "name":"pasted__pasted__pCube770", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.939355850219727, + 5.073940753936768, + 5.375654697418213 + ] + }, + { + "mesh":6855, + "name":"Object1814", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.11411190032959, + 1.0247045755386353, + 16.99413299560547 + ] + }, + { + "mesh":6856, + "name":"Object2475", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.832311630249023, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6857, + "name":"Circle2286", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.6817554235458374, + -2.22849702835083 + ] + }, + { + "mesh":6858, + "name":"pasted__pasted__pasted__polySurface550", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.040225982666016, + 0.6836510896682739, + 15.073861122131348 + ] + }, + { + "mesh":6859, + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__main_pasted__pasted__pasted__pasted__pasted__polySurface560", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.068794250488281, + 0.683716893196106, + 5.568475246429443 + ] + }, + { + "mesh":6860, + "name":"Circle2856", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.15157699584961, + 1.3550041913986206, + 0.21950259804725647 + ] + }, + { + "mesh":6861, + "name":"pasted__pasted__pCylinder18", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.974546432495117, + 2.399171829223633, + -4.892484188079834 + ] + }, + { + "mesh":6862, + "name":"Object2121", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.457399368286133, + 1.0259760618209839, + 16.99413299560547 + ] + }, + { + "mesh":6863, + "name":"pasted__pasted__pCylinder682", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.944412231445312, + 2.3035941123962402, + 5.37495231628418 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__pasted__pasted__pasted__polySurface601", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + 7.864438056945801 + ] + }, + { + "mesh":6864, + "name":"Rectangle826", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -2.215822219848633, + 0.10969555377960205, + -1.8664004802703857 + ] + }, + { + "mesh":6865, + "name":"pasted__pasted__pCylinder581", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.980253219604492, + 5.043131351470947, + 2.51631760597229 + ] + }, + { + "mesh":6866, + "name":"pasted__pasted__pPipe061", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -19.629884719848633, + 1.068055510520935, + 6.655594825744629 + ] + }, + { + "mesh":6867, + "name":"Obj3d66-647191-7-330", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 2.3648033142089844, + 1.6444579362869263, + -15.596882820129395 + ] + }, + { + "mesh":6868, + "name":"pasted__pasted__pCylinder486", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.186412811279297, + 3.2304320335388184, + 6.162014961242676 + ] + }, + { + "mesh":6869, + "name":"Object2345", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.452676773071289, + 1.1986137628555298, + 16.99413299560547 + ] + }, + { + "mesh":6870, + "name":"pasted__pasted__pasted__pasted__pCylinder485", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -6.069196701049805, + 0.28987395763397217, + 15.701667785644531 + ] + }, + { + "mesh":6871, + "name":"Obj3d66-647191-3-609", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -8.735698699951172, + 1.7478052377700806, + -9.375259399414062 + ] + }, + { + "mesh":6872, + "name":"pasted__pCylinder365", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.611555099487305, + 0.44795191287994385, + 1.106677770614624 + ] + }, + { + "mesh":6873, + "name":"Circle2342", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.80198097229004, + 1.7162774801254272, + -2.8366858959198 + ] + }, + { + "mesh":6874, + "name":"pasted__pasted__pCylinder687", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.989633560180664, + 2.442410945892334, + 5.37495231628418 + ] + }, + { + "name":"pasted__group35_group_pasted__pasted__SVG_pasted__group31_pasted__pasted__door_pasted__pasted__pasted__group397_pasted__pasted__pasted__pasted__group20_pasted__pasted__pasted__group30_pasted__pasted__pasted__pasted__pasted__polySurface660", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -1.6223907470703125, + 0.3812912702560425, + -7.182558059692383 + ] + }, + { + "mesh":6875, + "name":"polySurface373", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -17.498628616333008, + 1.4188710451126099, + 16.16686248779297 + ] + }, + { + "mesh":6876, + "name":"pasted__pasted__pCylinder337", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.673734664916992, + 4.840120792388916, + -4.15601110458374 + ] + }, + { + "mesh":6877, + "name":"Object1980", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -4.084249496459961, + 1.2615464925765991, + 16.99413299560547 + ] + }, + { + "mesh":6878, + "name":"Object2462", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -16.850595474243164, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6879, + "name":"Object2163", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -10.469552993774414, + 1.3244792222976685, + 16.99413299560547 + ] + }, + { + "mesh":6880, + "name":"Box199.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.81139850616455, + 1.0034366846084595, + -13.768403053283691 + ] + }, + { + "mesh":6881, + "name":"Box199.002", + "rotation":[ + 0, + 1, + 0, + 1.6292067073209182e-07 + ], + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -9.089190483093262, + 1.0034366846084595, + -13.768403053283691 + ] + }, + { + "mesh":6882, + "name":"Box199.003", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -15.77517032623291, + 1.0034366846084595, + -13.768403053283691 + ] + }, + { + "mesh":6883, + "name":"Box199.004", + "rotation":[ + 0, + 1, + 0, + 1.6292067073209182e-07 + ], + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -14.651224136352539, + 1.0034366846084595, + -13.768403053283691 + ] + }, + { + "mesh":6884, + "name":"Box199.005", + "rotation":[ + 0, + 1, + 0, + 1.6292067073209182e-07 + ], + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + -20.159587860107422, + 1.0034366846084595, + -13.768403053283691 + ] + }, + { + "mesh":6885, + "name":"pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__pasted__polySurface227.001", + "scale":[ + 0.0003934625128749758, + 0.0003934625128749758, + 0.0003934625128749758 + ], + "translation":[ + 18.536006927490234, + 0.28680694103240967, + 1.6587079763412476 + ] + } + ], + "materials":[ + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._02 - Default", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.5921568870544434, + 0.5921568870544434, + 0.5921568870544434, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_\u9ed1\u8272\u6f0601", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.33725491166114807, + 0.37254902720451355, + 0.40392160415649414, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._Material #2142157204", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.8392157554626465, + 0.8392157554626465, + 0.8392157554626465, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._03 - Default", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.13725490868091583, + 0.13725490868091583, + 0.13725490868091583, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._pasted__pasted__VRayMtl1SG1", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.760784387588501, + 0.760784387588501, + 0.760784387588501, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._Mat3d66-647191-3-806", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.2039215862751007, + 0.2039215862751007, + 0.2039215862751007, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_06 - Default", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":0 + }, + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._23 - Defaultgtrytr", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.5, + 0.5, + 0.5, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._Material #49", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.29019609093666077, + 0.29019609093666077, + 0.29019609093666077, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_\u7f51\u5b5402", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.5, + 0.5, + 0.5, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._24 - Defaultrwrwe", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.19607844948768616, + 0.4549019932746887, + 0.7450980544090271, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._Mat3d66-647191-1-595", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.10588236153125763, + 0.10588236153125763, + 0.10588236153125763, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._Mat3d66-647191-2-403", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0, + 0, + 0, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.013", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.48234573006629944, + 0.4619433879852295, + 0.43745607137680054, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.011", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.24450094997882843, + 0.24450094997882843, + 0.24450094997882843, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._09 - Default787", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.29019609093666077, + 0.29019609093666077, + 0.29019609093666077, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.009", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._04 - Defaultererere", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.4862745404243469, + 0.4862745404243469, + 0.4862745404243469, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_06 - Defaultfrf", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._04 - Defaultere", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.5921568870544434, + 0.5921568870544434, + 0.5921568870544434, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._Mat3d66-647191-4-134", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.011764707043766975, + 0.011764707043766975, + 0.011764707043766975, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_\u6c34\u6ce501", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":2 + }, + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_15 - Default", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.4392157196998596, + 0.4392157196998596, + 0.4392157196998596, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._Mat3d66-647191-5-691", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.2039215862751007, + 0.2039215862751007, + 0.2039215862751007, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.008", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.3282250165939331, + 0.5889089107513428, + 0.0996985137462616, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._Mat3d66-647191-26-111", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.125490203499794, + 0.3333333432674408, + 0.6431372761726379, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.004", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.3134765625, + 0.348388671875, + 0.4072265625, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_20 - Default", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.5882353186607361, + 0.5882353186607361, + 0.5882353186607361, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.014", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.0791030302643776, + 0.09202968329191208, + 0.13785122334957123, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._18 - Default", + "normalTexture":{ + "index":3, + "scale":0.30000001192092896 + }, + "pbrMetallicRoughness":{ + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.010", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.030034497380256653, + 0.027859147638082504, + 0.024439681321382523, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._Material #26", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.09019608050584793, + 0.4862745404243469, + 0.760784387588501, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.03399658203125, + 0.060089111328125, + 0.1470947265625, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._Mat3d66-647191-37-1", + "pbrMetallicRoughness":{ + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_\u767d\u827201", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":4 + }, + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.007", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.060197681188583374, + 0.060197681188583374, + 0.060197681188583374, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 0.0, + 0.0, + 0.0 + ] + } + }, + "name":"vray_22 - Default", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.43529415130615234, + 0.43529415130615234, + 0.43529415130615234, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.4968046545982361 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._\u4e0d\u9508\u94a2", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.6313725709915161, + 0.6313725709915161, + 0.6313725709915161, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.002", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.050276342779397964, + 0.053319644182920456, + 0.06019787862896919, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_12 - Default", + "pbrMetallicRoughness":{ + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.003", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.02888764813542366, + 0.02178504504263401, + 0.02806553803384304, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_06 - Defaulter", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.07450980693101883, + 0.10980392247438431, + 0.20392157137393951, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._05 - Default", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.1568627506494522, + 0.1568627506494522, + 0.1568627506494522, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_04 - Default", + "pbrMetallicRoughness":{ + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_10 - Default", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.22745099663734436, + 0.27843138575553894, + 0.35686275362968445, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._04 - Defaultret", + "normalTexture":{ + "index":5, + "scale":0.30000001192092896 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":6 + }, + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_14 - Default", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.6901960968971252, + 0.6901960968971252, + 0.6901960968971252, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._01 - Defaultggtrt", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.5, + 0.5, + 0.5, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.012", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.08001708984375, + 0.077392578125, + 0.07537841796875, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_bl", + "pbrMetallicRoughness":{ + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_21 - Default", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":7 + }, + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._08 - Defaultertr", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.6039215922355652, + 0.6039215922355652, + 0.6039215922355652, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_19 - Default", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.8274509906768799, + 0.8274509906768799, + 0.8274509906768799, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "alphaMode":"BLEND", + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_11 - Defaultferfwee54", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":8 + }, + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.05709095299243927, + 0.08164829015731812, + 0.04133068397641182, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._10 - Defaultrferer", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.14901961386203766, + 0.14901961386203766, + 0.14901961386203766, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.006", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.386474609375, + 0.314697265625, + 0.33056640625, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"vray_rims", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.19607844948768616, + 0.19607844948768616, + 0.19607844948768616, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._brake_caliper", + "normalTexture":{ + "index":9, + "scale":-0.05000000074505806 + }, + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.03529411926865578, + 0.03921568766236305, + 0.03921568766236305, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._brake_rotor", + "normalTexture":{ + "index":10, + "scale":0.05000000074505806 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":11 + }, + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"base.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.19607844948768616, + 0.19607844948768616, + 0.19607844948768616, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._Tyre", + "normalTexture":{ + "index":12, + "scale":0.10000000149011612 + }, + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.0784313753247261, + 0.0784313753247261, + 0.0784313753247261, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._Tyre_dirt", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.0784313753247261, + 0.0784313753247261, + 0.0784313753247261, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._black_plastic_shiny_interior", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.6705882549285889, + 0.6196078658103943, + 0.4549019932746887, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_\u6ce5\u571f01", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":13 + }, + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.005", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.1396484375, + 0.1470947265625, + 0.1817626953125, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_lb", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.9333333969116211, + 0.9411765336990356, + 0.9098039865493774, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._chrome", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.6666666865348816, + 0.6666666865348816, + 0.6666666865348816, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._black_plastic", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.13725490868091583, + 0.13725490868091583, + 0.13725490868091583, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._rotor", + "normalTexture":{ + "index":14, + "scale":0.05000000074505806 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":15 + }, + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._rim", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.3921568989753723, + 0.3921568989753723, + 0.3921568989753723, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._fugk", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.5215686559677124, + 0.5215686559677124, + 0.5215686559677124, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._tyre", + "normalTexture":{ + "index":16, + "scale":0.20000000298023224 + }, + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.125490203499794, + 0.125490203499794, + 0.125490203499794, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._interior dark", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.25882354378700256, + 0.25882354378700256, + 0.25882354378700256, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_Material #5", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.5882353186607361, + 0.5882353186607361, + 0.5882353186607361, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_22 - Default", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.250980406999588, + 0.250980406999588, + 0.250980406999588, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_06 - Defaulter324", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.30980393290519714, + 0.30980393290519714, + 0.30980393290519714, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_\u73bb\u748301", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.5843137502670288, + 0.6901960968971252, + 0.7058823704719543, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.015", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.6884778141975403, + 0.7230368852615356, + 0.8165492415428162, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._chrome.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.6666666865348816, + 0.6666666865348816, + 0.6666666865348816, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._black_plastic.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.13725490868091583, + 0.13725490868091583, + 0.13725490868091583, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._rotor.001", + "normalTexture":{ + "index":17, + "scale":0.05000000074505806 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":18 + }, + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._rim.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.6509804129600525, + 0.6509804129600525, + 0.6509804129600525, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._tyre.001", + "normalTexture":{ + "index":19, + "scale":0.20000000298023224 + }, + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.125490203499794, + 0.125490203499794, + 0.125490203499794, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_vray wheel----f", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0, + 0, + 0, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + } + }, + "name":"Lime._vray_\u4e1b\u6797\u73bb\u74831", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.25882354378700256, + 0.30588236451148987, + 0.3294117748737335, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.858578622341156 + } + } + ], + "meshes":[ + { + "name":"Mesh.2654", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.6728", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5 + }, + "indices":6, + "material":0 + } + ] + }, + { + "name":"Mesh.7029", + "primitives":[ + { + "attributes":{ + "POSITION":7, + "NORMAL":8 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.5401", + "primitives":[ + { + "attributes":{ + "POSITION":10, + "NORMAL":11, + "TEXCOORD_0":12 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8656", + "primitives":[ + { + "attributes":{ + "POSITION":14, + "NORMAL":15 + }, + "indices":16, + "material":3 + } + ] + }, + { + "name":"Mesh.5586", + "primitives":[ + { + "attributes":{ + "POSITION":17, + "NORMAL":18, + "TEXCOORD_0":19 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8704", + "primitives":[ + { + "attributes":{ + "POSITION":20, + "NORMAL":21 + }, + "indices":22, + "material":3 + } + ] + }, + { + "name":"Mesh.2519", + "primitives":[ + { + "attributes":{ + "POSITION":23, + "NORMAL":24, + "TEXCOORD_0":25 + }, + "indices":26, + "material":4 + } + ] + }, + { + "name":"Mesh.5986", + "primitives":[ + { + "attributes":{ + "POSITION":27, + "NORMAL":28, + "TEXCOORD_0":29 + }, + "indices":30, + "material":5 + } + ] + }, + { + "name":"Mesh.6313", + "primitives":[ + { + "attributes":{ + "POSITION":31, + "NORMAL":32, + "TEXCOORD_0":33 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.2017", + "primitives":[ + { + "attributes":{ + "POSITION":35, + "NORMAL":36, + "TEXCOORD_0":37 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5690", + "primitives":[ + { + "attributes":{ + "POSITION":39, + "NORMAL":40, + "TEXCOORD_0":41 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8759", + "primitives":[ + { + "attributes":{ + "POSITION":42, + "NORMAL":43 + }, + "indices":44, + "material":3 + } + ] + }, + { + "name":"Mesh.7637", + "primitives":[ + { + "attributes":{ + "POSITION":45, + "NORMAL":46 + }, + "indices":47, + "material":3 + } + ] + }, + { + "name":"Mesh.2258", + "primitives":[ + { + "attributes":{ + "POSITION":48, + "NORMAL":49, + "TEXCOORD_0":50 + }, + "indices":51, + "material":0 + } + ] + }, + { + "name":"Mesh.092", + "primitives":[ + { + "attributes":{ + "POSITION":52, + "NORMAL":53, + "TEXCOORD_0":54 + }, + "indices":55, + "material":0 + } + ] + }, + { + "name":"Mesh.9151", + "primitives":[ + { + "attributes":{ + "POSITION":56, + "NORMAL":57, + "TEXCOORD_0":58 + }, + "indices":59, + "material":7 + } + ] + }, + { + "name":"Mesh.8603", + "primitives":[ + { + "attributes":{ + "POSITION":60, + "NORMAL":61 + }, + "indices":62, + "material":3 + } + ] + }, + { + "name":"Mesh.1844", + "primitives":[ + { + "attributes":{ + "POSITION":63, + "NORMAL":64 + }, + "indices":65, + "material":8 + } + ] + }, + { + "name":"Mesh.8876", + "primitives":[ + { + "attributes":{ + "POSITION":66, + "NORMAL":67 + }, + "indices":68, + "material":3 + } + ] + }, + { + "name":"Mesh.233", + "primitives":[ + { + "attributes":{ + "POSITION":69, + "NORMAL":70, + "TEXCOORD_0":71 + }, + "indices":72, + "material":3 + } + ] + }, + { + "name":"Mesh.6727", + "primitives":[ + { + "attributes":{ + "POSITION":73, + "NORMAL":74 + }, + "indices":75, + "material":0 + } + ] + }, + { + "name":"Mesh.9074", + "primitives":[ + { + "attributes":{ + "POSITION":76, + "NORMAL":77, + "TEXCOORD_0":78 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.5188", + "primitives":[ + { + "attributes":{ + "POSITION":80, + "NORMAL":81, + "TEXCOORD_0":82 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9006", + "primitives":[ + { + "attributes":{ + "POSITION":83, + "NORMAL":84, + "TEXCOORD_0":85 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.566", + "primitives":[ + { + "attributes":{ + "POSITION":87, + "NORMAL":88, + "TEXCOORD_0":89 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8691", + "primitives":[ + { + "attributes":{ + "POSITION":90, + "NORMAL":91 + }, + "indices":92, + "material":3 + } + ] + }, + { + "name":"Mesh.8247", + "primitives":[ + { + "attributes":{ + "POSITION":93, + "NORMAL":94 + }, + "indices":95, + "material":3 + } + ] + }, + { + "name":"Mesh.2091", + "primitives":[ + { + "attributes":{ + "POSITION":96, + "NORMAL":97, + "TEXCOORD_0":98 + }, + "indices":99, + "material":3 + } + ] + }, + { + "name":"Mesh.6365", + "primitives":[ + { + "attributes":{ + "POSITION":100, + "NORMAL":101 + }, + "indices":102, + "material":0 + } + ] + }, + { + "name":"Mesh.7217", + "primitives":[ + { + "attributes":{ + "POSITION":103, + "NORMAL":104, + "TEXCOORD_0":105 + }, + "indices":106, + "material":7 + } + ] + }, + { + "name":"Mesh.4925", + "primitives":[ + { + "attributes":{ + "POSITION":107, + "NORMAL":108, + "TEXCOORD_0":109 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1804", + "primitives":[ + { + "attributes":{ + "POSITION":110, + "NORMAL":111 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.1181", + "primitives":[ + { + "attributes":{ + "POSITION":112, + "NORMAL":113 + }, + "indices":114, + "material":1 + } + ] + }, + { + "name":"Mesh.7660", + "primitives":[ + { + "attributes":{ + "POSITION":115, + "NORMAL":116 + }, + "indices":117, + "material":3 + } + ] + }, + { + "name":"Mesh.2341", + "primitives":[ + { + "attributes":{ + "POSITION":118, + "NORMAL":119, + "TEXCOORD_0":120 + }, + "indices":121, + "material":0 + } + ] + }, + { + "name":"Mesh.258", + "primitives":[ + { + "attributes":{ + "POSITION":122, + "NORMAL":123, + "TEXCOORD_0":124 + }, + "indices":125, + "material":3 + } + ] + }, + { + "name":"Mesh.910", + "primitives":[ + { + "attributes":{ + "POSITION":126, + "NORMAL":127, + "TEXCOORD_0":128 + }, + "indices":121, + "material":0 + } + ] + }, + { + "name":"Mesh.375", + "primitives":[ + { + "attributes":{ + "POSITION":129, + "NORMAL":130, + "TEXCOORD_0":131 + }, + "indices":132, + "material":0 + } + ] + }, + { + "name":"Mesh.399", + "primitives":[ + { + "attributes":{ + "POSITION":133, + "NORMAL":134, + "TEXCOORD_0":135 + }, + "indices":136, + "material":0 + } + ] + }, + { + "name":"Mesh.2717", + "primitives":[ + { + "attributes":{ + "POSITION":137, + "NORMAL":138, + "TEXCOORD_0":139 + }, + "indices":140, + "material":0 + } + ] + }, + { + "name":"Mesh.2270", + "primitives":[ + { + "attributes":{ + "POSITION":141, + "NORMAL":142, + "TEXCOORD_0":143 + }, + "indices":144, + "material":0 + } + ] + }, + { + "name":"Mesh.2841", + "primitives":[ + { + "attributes":{ + "POSITION":145, + "NORMAL":146 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.7362", + "primitives":[ + { + "attributes":{ + "POSITION":147, + "NORMAL":148, + "TEXCOORD_0":149 + }, + "indices":150, + "material":7 + } + ] + }, + { + "name":"Mesh.2802", + "primitives":[ + { + "attributes":{ + "POSITION":151, + "NORMAL":152, + "TEXCOORD_0":153 + }, + "indices":140, + "material":0 + } + ] + }, + { + "name":"Mesh.5776", + "primitives":[ + { + "attributes":{ + "POSITION":154, + "NORMAL":155, + "TEXCOORD_0":156 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.2881", + "primitives":[ + { + "attributes":{ + "POSITION":158, + "NORMAL":159 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6430", + "primitives":[ + { + "attributes":{ + "POSITION":160, + "NORMAL":161 + }, + "indices":162, + "material":0 + } + ] + }, + { + "name":"Mesh.8948", + "primitives":[ + { + "attributes":{ + "POSITION":163, + "NORMAL":164, + "TEXCOORD_0":165 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.2541", + "primitives":[ + { + "attributes":{ + "POSITION":167, + "NORMAL":168, + "TEXCOORD_0":169 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.6655", + "primitives":[ + { + "attributes":{ + "POSITION":171, + "NORMAL":172 + }, + "indices":173, + "material":0 + } + ] + }, + { + "name":"Mesh.5345", + "primitives":[ + { + "attributes":{ + "POSITION":174, + "NORMAL":175, + "TEXCOORD_0":176 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.529", + "primitives":[ + { + "attributes":{ + "POSITION":177, + "NORMAL":178, + "TEXCOORD_0":179 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2072", + "primitives":[ + { + "attributes":{ + "POSITION":180, + "NORMAL":181, + "TEXCOORD_0":182 + }, + "indices":183, + "material":0 + } + ] + }, + { + "name":"Mesh.6217", + "primitives":[ + { + "attributes":{ + "POSITION":184, + "NORMAL":185, + "TEXCOORD_0":186 + }, + "indices":187, + "material":5 + } + ] + }, + { + "name":"Mesh.260", + "primitives":[ + { + "attributes":{ + "POSITION":188, + "NORMAL":189, + "TEXCOORD_0":190 + }, + "indices":191, + "material":3 + } + ] + }, + { + "name":"Mesh.8306", + "primitives":[ + { + "attributes":{ + "POSITION":192, + "NORMAL":193 + }, + "indices":194, + "material":3 + } + ] + }, + { + "name":"Mesh.1719", + "primitives":[ + { + "attributes":{ + "POSITION":195, + "NORMAL":196, + "TEXCOORD_0":197 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.6257", + "primitives":[ + { + "attributes":{ + "POSITION":199, + "NORMAL":200, + "TEXCOORD_0":201 + }, + "indices":202, + "material":11 + } + ] + }, + { + "name":"Mesh.4802", + "primitives":[ + { + "attributes":{ + "POSITION":203, + "NORMAL":204, + "TEXCOORD_0":205 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5970", + "primitives":[ + { + "attributes":{ + "POSITION":206, + "NORMAL":207, + "TEXCOORD_0":208 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.9120", + "primitives":[ + { + "attributes":{ + "POSITION":210, + "NORMAL":211, + "TEXCOORD_0":212 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.5314", + "primitives":[ + { + "attributes":{ + "POSITION":214, + "NORMAL":215, + "TEXCOORD_0":216 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7908", + "primitives":[ + { + "attributes":{ + "POSITION":217, + "NORMAL":218 + }, + "indices":219, + "material":3 + } + ] + }, + { + "name":"Mesh.8782", + "primitives":[ + { + "attributes":{ + "POSITION":220, + "NORMAL":221 + }, + "indices":222, + "material":3 + } + ] + }, + { + "name":"Mesh.2041", + "primitives":[ + { + "attributes":{ + "POSITION":223, + "NORMAL":224, + "TEXCOORD_0":225 + }, + "indices":226, + "material":0 + } + ] + }, + { + "name":"Mesh.225", + "primitives":[ + { + "attributes":{ + "POSITION":227, + "NORMAL":228, + "TEXCOORD_0":229 + }, + "indices":230, + "material":0 + } + ] + }, + { + "name":"Mesh.8133", + "primitives":[ + { + "attributes":{ + "POSITION":231, + "NORMAL":232 + }, + "indices":233, + "material":3 + } + ] + }, + { + "name":"Mesh.7192", + "primitives":[ + { + "attributes":{ + "POSITION":234, + "NORMAL":235, + "TEXCOORD_0":236 + }, + "indices":38, + "material":7 + } + ] + }, + { + "name":"Mesh.2282", + "primitives":[ + { + "attributes":{ + "POSITION":237, + "NORMAL":238, + "TEXCOORD_0":239 + }, + "indices":240, + "material":0 + } + ] + }, + { + "name":"Mesh.8672", + "primitives":[ + { + "attributes":{ + "POSITION":241, + "NORMAL":242 + }, + "indices":243, + "material":3 + } + ] + }, + { + "name":"Mesh.9190", + "primitives":[ + { + "attributes":{ + "POSITION":244, + "NORMAL":245, + "TEXCOORD_0":246 + }, + "indices":247, + "material":7 + } + ] + }, + { + "name":"Mesh.2893", + "primitives":[ + { + "attributes":{ + "POSITION":248, + "NORMAL":249 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.5132", + "primitives":[ + { + "attributes":{ + "POSITION":250, + "NORMAL":251, + "TEXCOORD_0":252 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8857", + "primitives":[ + { + "attributes":{ + "POSITION":253, + "NORMAL":254 + }, + "indices":255, + "material":3 + } + ] + }, + { + "name":"Mesh.6418", + "primitives":[ + { + "attributes":{ + "POSITION":256, + "NORMAL":257, + "TEXCOORD_0":258 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.6735", + "primitives":[ + { + "attributes":{ + "POSITION":260, + "NORMAL":261 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.6013", + "primitives":[ + { + "attributes":{ + "POSITION":263, + "NORMAL":264, + "TEXCOORD_0":265 + }, + "indices":266, + "material":12 + } + ] + }, + { + "name":"Mesh.5357", + "primitives":[ + { + "attributes":{ + "POSITION":267, + "NORMAL":268, + "TEXCOORD_0":269 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1116", + "primitives":[ + { + "attributes":{ + "POSITION":270, + "NORMAL":271, + "TEXCOORD_0":272 + }, + "indices":273, + "material":0 + } + ] + }, + { + "name":"Mesh.6229", + "primitives":[ + { + "attributes":{ + "POSITION":274, + "NORMAL":275, + "TEXCOORD_0":276 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.9107", + "primitives":[ + { + "attributes":{ + "POSITION":277, + "NORMAL":278, + "TEXCOORD_0":279 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.1156", + "primitives":[ + { + "attributes":{ + "POSITION":280, + "NORMAL":281, + "TEXCOORD_0":282 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.8930", + "primitives":[ + { + "attributes":{ + "POSITION":283, + "NORMAL":284, + "TEXCOORD_0":285 + }, + "indices":286, + "material":7 + } + ] + }, + { + "name":"Mesh.2646", + "primitives":[ + { + "attributes":{ + "POSITION":287, + "NORMAL":288, + "TEXCOORD_0":289 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.7070", + "primitives":[ + { + "attributes":{ + "POSITION":290, + "NORMAL":291 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.2755", + "primitives":[ + { + "attributes":{ + "POSITION":293, + "NORMAL":294, + "TEXCOORD_0":295 + }, + "indices":296, + "material":4 + } + ] + }, + { + "name":"Mesh.4990", + "primitives":[ + { + "attributes":{ + "POSITION":297, + "NORMAL":298, + "TEXCOORD_0":299 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5175", + "primitives":[ + { + "attributes":{ + "POSITION":300, + "NORMAL":301, + "TEXCOORD_0":302 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2880", + "primitives":[ + { + "attributes":{ + "POSITION":303, + "NORMAL":304 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.7028", + "primitives":[ + { + "attributes":{ + "POSITION":305, + "NORMAL":306 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.9054", + "primitives":[ + { + "attributes":{ + "POSITION":307, + "NORMAL":308, + "TEXCOORD_0":309 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.2430", + "primitives":[ + { + "attributes":{ + "POSITION":310, + "NORMAL":311, + "TEXCOORD_0":312 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.195", + "primitives":[ + { + "attributes":{ + "POSITION":314, + "NORMAL":315, + "TEXCOORD_0":316 + }, + "indices":317, + "material":0 + } + ] + }, + { + "name":"Mesh.6236", + "primitives":[ + { + "attributes":{ + "POSITION":318, + "NORMAL":319, + "TEXCOORD_0":320 + }, + "indices":321, + "material":12 + } + ] + }, + { + "name":"Mesh.5462", + "primitives":[ + { + "attributes":{ + "POSITION":322, + "NORMAL":323, + "TEXCOORD_0":324 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2328", + "primitives":[ + { + "attributes":{ + "POSITION":325, + "NORMAL":326, + "TEXCOORD_0":327 + }, + "indices":328, + "material":0 + } + ] + }, + { + "name":"Mesh.961", + "primitives":[ + { + "attributes":{ + "POSITION":329, + "NORMAL":330, + "TEXCOORD_0":331 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.5985", + "primitives":[ + { + "attributes":{ + "POSITION":332, + "NORMAL":333, + "TEXCOORD_0":334 + }, + "indices":30, + "material":5 + } + ] + }, + { + "name":"Mesh.6312", + "primitives":[ + { + "attributes":{ + "POSITION":335, + "NORMAL":336 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.3898", + "primitives":[ + { + "attributes":{ + "POSITION":337, + "NORMAL":338, + "TEXCOORD_0":339, + "TEXCOORD_1":340 + }, + "indices":341, + "material":2 + }, + { + "attributes":{ + "POSITION":342, + "NORMAL":343, + "TEXCOORD_0":344, + "TEXCOORD_1":345 + }, + "indices":346, + "material":14 + } + ] + }, + { + "name":"Mesh.8758", + "primitives":[ + { + "attributes":{ + "POSITION":347, + "NORMAL":348 + }, + "indices":349, + "material":3 + } + ] + }, + { + "name":"Mesh.5369", + "primitives":[ + { + "attributes":{ + "POSITION":350, + "NORMAL":351, + "TEXCOORD_0":352 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7636", + "primitives":[ + { + "attributes":{ + "POSITION":353, + "NORMAL":354 + }, + "indices":355, + "material":3 + } + ] + }, + { + "name":"Mesh.1252", + "primitives":[ + { + "attributes":{ + "POSITION":356, + "NORMAL":357, + "TEXCOORD_0":358 + }, + "indices":359, + "material":15 + } + ] + }, + { + "name":"Mesh.7585", + "primitives":[ + { + "attributes":{ + "POSITION":360, + "NORMAL":361 + }, + "indices":362, + "material":3 + } + ] + }, + { + "name":"Mesh.2257", + "primitives":[ + { + "attributes":{ + "POSITION":363, + "NORMAL":364, + "TEXCOORD_0":365 + }, + "indices":366, + "material":0 + } + ] + }, + { + "name":"Mesh.1112", + "primitives":[ + { + "attributes":{ + "POSITION":367, + "NORMAL":368, + "TEXCOORD_0":369 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.5750", + "primitives":[ + { + "attributes":{ + "POSITION":371, + "NORMAL":372 + }, + "indices":373, + "material":0 + } + ] + }, + { + "name":"Mesh.5187", + "primitives":[ + { + "attributes":{ + "POSITION":374, + "NORMAL":375, + "TEXCOORD_0":376 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.382", + "primitives":[ + { + "attributes":{ + "POSITION":377, + "NORMAL":378, + "TEXCOORD_0":379 + }, + "indices":380, + "material":0 + } + ] + }, + { + "name":"Mesh.7790", + "primitives":[ + { + "attributes":{ + "POSITION":381, + "NORMAL":382 + }, + "indices":383, + "material":3 + } + ] + }, + { + "name":"Mesh.1914", + "primitives":[ + { + "attributes":{ + "POSITION":384, + "NORMAL":385 + }, + "indices":386, + "material":0 + } + ] + }, + { + "name":"Mesh.2760", + "primitives":[ + { + "attributes":{ + "POSITION":387, + "NORMAL":388, + "TEXCOORD_0":389 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.7043", + "primitives":[ + { + "attributes":{ + "POSITION":391, + "NORMAL":392, + "TEXCOORD_0":393 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.045", + "primitives":[ + { + "attributes":{ + "POSITION":394, + "NORMAL":395, + "TEXCOORD_0":396 + }, + "indices":34, + "material":16 + } + ] + }, + { + "name":"Mesh.565", + "primitives":[ + { + "attributes":{ + "POSITION":397, + "NORMAL":398, + "TEXCOORD_0":399 + }, + "indices":400, + "material":0 + } + ] + }, + { + "name":"Mesh.7216", + "primitives":[ + { + "attributes":{ + "POSITION":401, + "NORMAL":402, + "TEXCOORD_0":403 + }, + "indices":404, + "material":7 + } + ] + }, + { + "name":"Mesh.2977", + "primitives":[ + { + "attributes":{ + "POSITION":405, + "NORMAL":406, + "TEXCOORD_0":407 + }, + "indices":34, + "material":7 + } + ] + }, + { + "name":"Mesh.1803", + "primitives":[ + { + "attributes":{ + "POSITION":408, + "NORMAL":409 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.1180", + "primitives":[ + { + "attributes":{ + "POSITION":410, + "NORMAL":411 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.9204", + "primitives":[ + { + "attributes":{ + "POSITION":413, + "NORMAL":414, + "TEXCOORD_0":415 + }, + "indices":247, + "material":7 + } + ] + }, + { + "name":"Mesh.2028", + "primitives":[ + { + "attributes":{ + "POSITION":416, + "NORMAL":417, + "TEXCOORD_0":418 + }, + "indices":419, + "material":0 + } + ] + }, + { + "name":"Mesh.909", + "primitives":[ + { + "attributes":{ + "POSITION":420, + "NORMAL":421, + "TEXCOORD_0":422 + }, + "indices":144, + "material":0 + } + ] + }, + { + "name":"Mesh.8529", + "primitives":[ + { + "attributes":{ + "POSITION":423, + "NORMAL":424 + }, + "indices":425, + "material":3 + } + ] + }, + { + "name":"Mesh.2876", + "primitives":[ + { + "attributes":{ + "POSITION":426, + "NORMAL":427 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.2269", + "primitives":[ + { + "attributes":{ + "POSITION":428, + "NORMAL":429, + "TEXCOORD_0":430 + }, + "indices":431, + "material":0 + } + ] + }, + { + "name":"Mesh.7361", + "primitives":[ + { + "attributes":{ + "POSITION":432, + "NORMAL":433, + "TEXCOORD_0":434 + }, + "indices":435, + "material":7 + } + ] + }, + { + "name":"Mesh.310", + "primitives":[ + { + "attributes":{ + "POSITION":436, + "NORMAL":437, + "TEXCOORD_0":438 + }, + "indices":439, + "material":3 + } + ] + }, + { + "name":"Mesh.5775", + "primitives":[ + { + "attributes":{ + "POSITION":440, + "NORMAL":441, + "TEXCOORD_0":442 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.6429", + "primitives":[ + { + "attributes":{ + "POSITION":443, + "NORMAL":444 + }, + "indices":445, + "material":0 + } + ] + }, + { + "name":"Mesh.6142", + "primitives":[ + { + "attributes":{ + "POSITION":446, + "NORMAL":447, + "TEXCOORD_0":448 + }, + "indices":449, + "material":12 + } + ] + }, + { + "name":"Mesh.1993", + "primitives":[ + { + "attributes":{ + "POSITION":450, + "NORMAL":451, + "TEXCOORD_0":452 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8449", + "primitives":[ + { + "attributes":{ + "POSITION":453, + "NORMAL":454 + }, + "indices":455, + "material":3 + } + ] + }, + { + "name":"Mesh.5640", + "primitives":[ + { + "attributes":{ + "POSITION":456, + "NORMAL":457, + "TEXCOORD_0":458 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5344", + "primitives":[ + { + "attributes":{ + "POSITION":459, + "NORMAL":460, + "TEXCOORD_0":461 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8970", + "primitives":[ + { + "attributes":{ + "POSITION":462, + "NORMAL":463, + "TEXCOORD_0":464 + }, + "indices":465, + "material":7 + } + ] + }, + { + "name":"Mesh.324", + "primitives":[ + { + "attributes":{ + "POSITION":466, + "NORMAL":467, + "TEXCOORD_0":468 + }, + "indices":469, + "material":0 + } + ] + }, + { + "name":"Mesh.7802", + "primitives":[ + { + "attributes":{ + "POSITION":470, + "NORMAL":471 + }, + "indices":472, + "material":3 + } + ] + }, + { + "name":"Mesh.952", + "primitives":[ + { + "attributes":{ + "POSITION":473, + "NORMAL":474, + "TEXCOORD_0":475 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.6216", + "primitives":[ + { + "attributes":{ + "POSITION":476, + "NORMAL":477, + "TEXCOORD_0":478 + }, + "indices":479, + "material":12 + } + ] + }, + { + "name":"Mesh.6369", + "primitives":[ + { + "attributes":{ + "POSITION":480, + "NORMAL":481 + }, + "indices":482, + "material":0 + } + ] + }, + { + "name":"Mesh.8305", + "primitives":[ + { + "attributes":{ + "POSITION":483, + "NORMAL":484 + }, + "indices":255, + "material":3 + } + ] + }, + { + "name":"Mesh.7691", + "primitives":[ + { + "attributes":{ + "POSITION":485, + "NORMAL":486 + }, + "indices":487, + "material":3 + } + ] + }, + { + "name":"Mesh.8376", + "primitives":[ + { + "attributes":{ + "POSITION":488, + "NORMAL":489 + }, + "indices":490, + "material":3 + } + ] + }, + { + "name":"Mesh.1815", + "primitives":[ + { + "attributes":{ + "POSITION":491, + "NORMAL":492 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.413", + "primitives":[ + { + "attributes":{ + "POSITION":493, + "NORMAL":494 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.8873", + "primitives":[ + { + "attributes":{ + "POSITION":496, + "NORMAL":497 + }, + "indices":498, + "material":3 + } + ] + }, + { + "name":"Mesh.5673", + "primitives":[ + { + "attributes":{ + "POSITION":499, + "NORMAL":500, + "TEXCOORD_0":501 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7907", + "primitives":[ + { + "attributes":{ + "POSITION":502, + "NORMAL":503 + }, + "indices":504, + "material":3 + } + ] + }, + { + "name":"Mesh.2040", + "primitives":[ + { + "attributes":{ + "POSITION":505, + "NORMAL":506, + "TEXCOORD_0":507 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8092", + "primitives":[ + { + "attributes":{ + "POSITION":508, + "NORMAL":509 + }, + "indices":510, + "material":3 + } + ] + }, + { + "name":"Mesh.6512", + "primitives":[ + { + "attributes":{ + "POSITION":511, + "NORMAL":512, + "TEXCOORD_0":513 + }, + "indices":514, + "material":0 + } + ] + }, + { + "name":"Mesh.8132", + "primitives":[ + { + "attributes":{ + "POSITION":515, + "NORMAL":516 + }, + "indices":517, + "material":3 + } + ] + }, + { + "name":"Mesh.2281", + "primitives":[ + { + "attributes":{ + "POSITION":518, + "NORMAL":519, + "TEXCOORD_0":520 + }, + "indices":521, + "material":0 + } + ] + }, + { + "name":"Mesh.8925", + "primitives":[ + { + "attributes":{ + "POSITION":522, + "NORMAL":523, + "TEXCOORD_0":524 + }, + "indices":525, + "material":7 + } + ] + }, + { + "name":"Mesh.1969", + "primitives":[ + { + "attributes":{ + "POSITION":526, + "NORMAL":527, + "TEXCOORD_0":528 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.1260", + "primitives":[ + { + "attributes":{ + "POSITION":530, + "NORMAL":531, + "TEXCOORD_0":532 + }, + "indices":533, + "material":15 + } + ] + }, + { + "name":"Mesh.7371", + "primitives":[ + { + "attributes":{ + "POSITION":534, + "NORMAL":535, + "TEXCOORD_0":536 + }, + "indices":537, + "material":7 + } + ] + }, + { + "name":"Mesh.1256", + "primitives":[ + { + "attributes":{ + "POSITION":538, + "NORMAL":539, + "TEXCOORD_0":540 + }, + "indices":359, + "material":15 + } + ] + }, + { + "name":"Mesh.620", + "primitives":[ + { + "attributes":{ + "POSITION":541, + "NORMAL":542, + "TEXCOORD_0":543 + }, + "indices":544, + "material":3 + } + ] + }, + { + "name":"Mesh.8323", + "primitives":[ + { + "attributes":{ + "POSITION":545, + "NORMAL":546 + }, + "indices":547, + "material":3 + } + ] + }, + { + "name":"Mesh.5378", + "primitives":[ + { + "attributes":{ + "POSITION":548, + "NORMAL":549, + "TEXCOORD_0":550 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2210", + "primitives":[ + { + "attributes":{ + "POSITION":551, + "NORMAL":552, + "TEXCOORD_0":553 + }, + "indices":554, + "material":0 + } + ] + }, + { + "name":"Mesh.491", + "primitives":[ + { + "attributes":{ + "POSITION":555, + "NORMAL":556 + }, + "indices":557, + "material":17 + } + ] + }, + { + "name":"Mesh.5356", + "primitives":[ + { + "attributes":{ + "POSITION":558, + "NORMAL":559, + "TEXCOORD_0":560 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.540", + "primitives":[ + { + "attributes":{ + "POSITION":561, + "NORMAL":562, + "TEXCOORD_0":563 + }, + "indices":564, + "material":0 + } + ] + }, + { + "name":"Mesh.1115", + "primitives":[ + { + "attributes":{ + "POSITION":565, + "NORMAL":566, + "TEXCOORD_0":567 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.8208", + "primitives":[ + { + "attributes":{ + "POSITION":569, + "NORMAL":570 + }, + "indices":571, + "material":3 + } + ] + }, + { + "name":"Mesh.6228", + "primitives":[ + { + "attributes":{ + "POSITION":572, + "NORMAL":573, + "TEXCOORD_0":574 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.1155", + "primitives":[ + { + "attributes":{ + "POSITION":575, + "NORMAL":576, + "TEXCOORD_0":577 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.8175", + "primitives":[ + { + "attributes":{ + "POSITION":578, + "NORMAL":579 + }, + "indices":580, + "material":3 + } + ] + }, + { + "name":"Mesh.2297", + "primitives":[ + { + "attributes":{ + "POSITION":581, + "NORMAL":582, + "TEXCOORD_0":583 + }, + "indices":584, + "material":0 + } + ] + }, + { + "name":"Mesh.2754", + "primitives":[ + { + "attributes":{ + "POSITION":585, + "NORMAL":586, + "TEXCOORD_0":587 + }, + "indices":26, + "material":4 + } + ] + }, + { + "name":"Mesh.004", + "primitives":[ + { + "attributes":{ + "POSITION":588, + "NORMAL":589, + "TEXCOORD_0":590 + }, + "indices":591, + "material":18 + } + ] + }, + { + "name":"Mesh.173", + "primitives":[ + { + "attributes":{ + "POSITION":592, + "NORMAL":593, + "TEXCOORD_0":594 + }, + "indices":595, + "material":19 + } + ] + }, + { + "name":"Mesh.5174", + "primitives":[ + { + "attributes":{ + "POSITION":596, + "NORMAL":597, + "TEXCOORD_0":598 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2975", + "primitives":[ + { + "attributes":{ + "POSITION":599, + "NORMAL":600, + "TEXCOORD_0":601 + }, + "indices":602, + "material":7 + } + ] + }, + { + "name":"Mesh.2824", + "primitives":[ + { + "attributes":{ + "POSITION":603, + "NORMAL":604, + "TEXCOORD_0":605 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.2429", + "primitives":[ + { + "attributes":{ + "POSITION":606, + "NORMAL":607, + "TEXCOORD_0":608 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.6598", + "primitives":[ + { + "attributes":{ + "POSITION":609, + "NORMAL":610 + }, + "indices":611, + "material":0 + } + ] + }, + { + "name":"Mesh.5984", + "primitives":[ + { + "attributes":{ + "POSITION":612, + "NORMAL":613, + "TEXCOORD_0":614 + }, + "indices":615, + "material":20 + } + ] + }, + { + "name":"Mesh.2621", + "primitives":[ + { + "attributes":{ + "POSITION":616, + "NORMAL":617, + "TEXCOORD_0":618 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.2015", + "primitives":[ + { + "attributes":{ + "POSITION":619, + "NORMAL":620, + "TEXCOORD_0":621 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.1057", + "primitives":[ + { + "attributes":{ + "POSITION":622, + "NORMAL":623, + "TEXCOORD_0":624 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.7353", + "primitives":[ + { + "attributes":{ + "POSITION":625, + "NORMAL":626, + "TEXCOORD_0":627 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.5368", + "primitives":[ + { + "attributes":{ + "POSITION":628, + "NORMAL":629, + "TEXCOORD_0":630 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7635", + "primitives":[ + { + "attributes":{ + "POSITION":631, + "NORMAL":632 + }, + "indices":633, + "material":3 + } + ] + }, + { + "name":"Mesh.6954", + "primitives":[ + { + "attributes":{ + "POSITION":634, + "NORMAL":635 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.2256", + "primitives":[ + { + "attributes":{ + "POSITION":636, + "NORMAL":637, + "TEXCOORD_0":638 + }, + "indices":639, + "material":0 + } + ] + }, + { + "name":"Mesh.649", + "primitives":[ + { + "attributes":{ + "POSITION":640, + "NORMAL":641, + "TEXCOORD_0":642 + }, + "indices":643, + "material":3 + } + ] + }, + { + "name":"Mesh.090", + "primitives":[ + { + "attributes":{ + "POSITION":644, + "NORMAL":645, + "TEXCOORD_0":646 + }, + "indices":647, + "material":0 + } + ] + }, + { + "name":"Mesh.360", + "primitives":[ + { + "attributes":{ + "POSITION":648, + "NORMAL":649, + "TEXCOORD_0":650 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8866", + "primitives":[ + { + "attributes":{ + "POSITION":651, + "NORMAL":652 + }, + "indices":653, + "material":3 + } + ] + }, + { + "name":"Mesh.5953", + "primitives":[ + { + "attributes":{ + "POSITION":654, + "NORMAL":655, + "TEXCOORD_0":656 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.7018", + "primitives":[ + { + "attributes":{ + "POSITION":657, + "NORMAL":658 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.8541", + "primitives":[ + { + "attributes":{ + "POSITION":659, + "NORMAL":660 + }, + "indices":661, + "material":3 + } + ] + }, + { + "name":"Mesh.9079", + "primitives":[ + { + "attributes":{ + "POSITION":662, + "NORMAL":663, + "TEXCOORD_0":664 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.826", + "primitives":[ + { + "attributes":{ + "POSITION":665, + "NORMAL":666, + "TEXCOORD_0":667 + }, + "indices":668, + "material":0 + } + ] + }, + { + "name":"Mesh.8104", + "primitives":[ + { + "attributes":{ + "POSITION":669, + "NORMAL":670 + }, + "indices":16, + "material":3 + } + ] + }, + { + "name":"Mesh.5186", + "primitives":[ + { + "attributes":{ + "POSITION":671, + "NORMAL":672, + "TEXCOORD_0":673 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8707", + "primitives":[ + { + "attributes":{ + "POSITION":674, + "NORMAL":675 + }, + "indices":676, + "material":3 + } + ] + }, + { + "name":"Mesh.1913", + "primitives":[ + { + "attributes":{ + "POSITION":677, + "NORMAL":678 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.1113", + "primitives":[ + { + "attributes":{ + "POSITION":679, + "NORMAL":680, + "TEXCOORD_0":681 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.564", + "primitives":[ + { + "attributes":{ + "POSITION":683, + "NORMAL":684, + "TEXCOORD_0":685 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.2089", + "primitives":[ + { + "attributes":{ + "POSITION":686, + "NORMAL":687, + "TEXCOORD_0":688 + }, + "indices":689, + "material":3 + } + ] + }, + { + "name":"Mesh.7215", + "primitives":[ + { + "attributes":{ + "POSITION":690, + "NORMAL":691, + "TEXCOORD_0":692 + }, + "indices":693, + "material":7 + } + ] + }, + { + "name":"Mesh.1802", + "primitives":[ + { + "attributes":{ + "POSITION":694, + "NORMAL":695 + }, + "indices":696, + "material":1 + } + ] + }, + { + "name":"Mesh.1179", + "primitives":[ + { + "attributes":{ + "POSITION":697, + "NORMAL":698 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.9104", + "primitives":[ + { + "attributes":{ + "POSITION":699, + "NORMAL":700, + "TEXCOORD_0":701 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.130", + "primitives":[ + { + "attributes":{ + "POSITION":702, + "NORMAL":703, + "TEXCOORD_0":704 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.314", + "primitives":[ + { + "attributes":{ + "POSITION":705, + "NORMAL":706, + "TEXCOORD_0":707 + }, + "indices":708, + "material":0 + } + ] + }, + { + "name":"Mesh.8843", + "primitives":[ + { + "attributes":{ + "POSITION":709, + "NORMAL":710 + }, + "indices":711, + "material":3 + } + ] + }, + { + "name":"Mesh.2027", + "primitives":[ + { + "attributes":{ + "POSITION":712, + "NORMAL":713, + "TEXCOORD_0":714 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.908", + "primitives":[ + { + "attributes":{ + "POSITION":715, + "NORMAL":716, + "TEXCOORD_0":717 + }, + "indices":431, + "material":0 + } + ] + }, + { + "name":"Mesh.7062", + "primitives":[ + { + "attributes":{ + "POSITION":718, + "NORMAL":719 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.2268", + "primitives":[ + { + "attributes":{ + "POSITION":720, + "NORMAL":721, + "TEXCOORD_0":722 + }, + "indices":144, + "material":0 + } + ] + }, + { + "name":"Mesh.7360", + "primitives":[ + { + "attributes":{ + "POSITION":723, + "NORMAL":724, + "TEXCOORD_0":725 + }, + "indices":726, + "material":7 + } + ] + }, + { + "name":"Mesh.311", + "primitives":[ + { + "attributes":{ + "POSITION":727, + "NORMAL":728, + "TEXCOORD_0":729 + }, + "indices":730, + "material":0 + } + ] + }, + { + "name":"Mesh.2879", + "primitives":[ + { + "attributes":{ + "POSITION":731, + "NORMAL":732 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6428", + "primitives":[ + { + "attributes":{ + "POSITION":733, + "NORMAL":734 + }, + "indices":735, + "material":0 + } + ] + }, + { + "name":"Mesh.8307", + "primitives":[ + { + "attributes":{ + "POSITION":736, + "NORMAL":737 + }, + "indices":738, + "material":3 + } + ] + }, + { + "name":"Mesh.8962", + "primitives":[ + { + "attributes":{ + "POSITION":739, + "NORMAL":740, + "TEXCOORD_0":741 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.6141", + "primitives":[ + { + "attributes":{ + "POSITION":742, + "NORMAL":743, + "TEXCOORD_0":744 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.5708", + "primitives":[ + { + "attributes":{ + "POSITION":746, + "NORMAL":747 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.4808", + "primitives":[ + { + "attributes":{ + "POSITION":748, + "NORMAL":749, + "TEXCOORD_0":750 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6653", + "primitives":[ + { + "attributes":{ + "POSITION":751, + "NORMAL":752 + }, + "indices":753, + "material":0 + } + ] + }, + { + "name":"Mesh.5343", + "primitives":[ + { + "attributes":{ + "POSITION":754, + "NORMAL":755, + "TEXCOORD_0":756 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.766", + "primitives":[ + { + "attributes":{ + "POSITION":757, + "NORMAL":758, + "TEXCOORD_0":759 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.527", + "primitives":[ + { + "attributes":{ + "POSITION":760, + "NORMAL":761, + "TEXCOORD_0":762 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.7801", + "primitives":[ + { + "attributes":{ + "POSITION":763, + "NORMAL":764 + }, + "indices":765, + "material":3 + } + ] + }, + { + "name":"Mesh.2070", + "primitives":[ + { + "attributes":{ + "POSITION":766, + "NORMAL":767, + "TEXCOORD_0":768 + }, + "indices":769, + "material":0 + } + ] + }, + { + "name":"Mesh.951", + "primitives":[ + { + "attributes":{ + "POSITION":770, + "NORMAL":771, + "TEXCOORD_0":772 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.6542", + "primitives":[ + { + "attributes":{ + "POSITION":773, + "NORMAL":774 + }, + "indices":775, + "material":0 + } + ] + }, + { + "name":"Mesh.664", + "primitives":[ + { + "attributes":{ + "POSITION":776, + "NORMAL":777, + "TEXCOORD_0":778 + }, + "indices":779, + "material":3 + } + ] + }, + { + "name":"Mesh.8968", + "primitives":[ + { + "attributes":{ + "POSITION":780, + "NORMAL":781, + "TEXCOORD_0":782 + }, + "indices":465, + "material":7 + } + ] + }, + { + "name":"Mesh.6634", + "primitives":[ + { + "attributes":{ + "POSITION":783, + "NORMAL":784 + }, + "indices":785, + "material":0 + } + ] + }, + { + "name":"Mesh.6255", + "primitives":[ + { + "attributes":{ + "POSITION":786, + "NORMAL":787, + "TEXCOORD_0":788 + }, + "indices":202, + "material":11 + } + ] + }, + { + "name":"Mesh.4800", + "primitives":[ + { + "attributes":{ + "POSITION":789, + "NORMAL":790, + "TEXCOORD_0":791 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5968", + "primitives":[ + { + "attributes":{ + "POSITION":792, + "NORMAL":793, + "TEXCOORD_0":794 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.5312", + "primitives":[ + { + "attributes":{ + "POSITION":795, + "NORMAL":796, + "TEXCOORD_0":797 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2039", + "primitives":[ + { + "attributes":{ + "POSITION":798, + "NORMAL":799, + "TEXCOORD_0":800 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.6511", + "primitives":[ + { + "attributes":{ + "POSITION":801, + "NORMAL":802, + "TEXCOORD_0":803 + }, + "indices":804, + "material":0 + } + ] + }, + { + "name":"Mesh.226", + "primitives":[ + { + "attributes":{ + "POSITION":805, + "NORMAL":806, + "TEXCOORD_0":807 + }, + "indices":808, + "material":3 + } + ] + }, + { + "name":"Mesh.6883", + "primitives":[ + { + "attributes":{ + "POSITION":809, + "NORMAL":810 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.8131", + "primitives":[ + { + "attributes":{ + "POSITION":811, + "NORMAL":812 + }, + "indices":813, + "material":3 + } + ] + }, + { + "name":"Mesh.809", + "primitives":[ + { + "attributes":{ + "POSITION":814, + "NORMAL":815, + "TEXCOORD_0":816 + }, + "indices":817, + "material":0 + } + ] + }, + { + "name":"Mesh.2772", + "primitives":[ + { + "attributes":{ + "POSITION":818, + "NORMAL":819, + "TEXCOORD_0":820 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.8549", + "primitives":[ + { + "attributes":{ + "POSITION":822, + "NORMAL":823 + }, + "indices":824, + "material":3 + } + ] + }, + { + "name":"Mesh.1968", + "primitives":[ + { + "attributes":{ + "POSITION":825, + "NORMAL":826, + "TEXCOORD_0":827 + }, + "indices":55, + "material":0 + } + ] + }, + { + "name":"Mesh.619", + "primitives":[ + { + "attributes":{ + "POSITION":828, + "NORMAL":829, + "TEXCOORD_0":830 + }, + "indices":831, + "material":3 + } + ] + }, + { + "name":"Mesh.5641", + "primitives":[ + { + "attributes":{ + "POSITION":832, + "NORMAL":833, + "TEXCOORD_0":834 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5130", + "primitives":[ + { + "attributes":{ + "POSITION":835, + "NORMAL":836, + "TEXCOORD_0":837 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8822", + "primitives":[ + { + "attributes":{ + "POSITION":838, + "NORMAL":839 + }, + "indices":840, + "material":3 + } + ] + }, + { + "name":"Mesh.7537", + "primitives":[ + { + "attributes":{ + "POSITION":841, + "NORMAL":842 + }, + "indices":843, + "material":3 + } + ] + }, + { + "name":"Mesh.2209", + "primitives":[ + { + "attributes":{ + "POSITION":844, + "NORMAL":845, + "TEXCOORD_0":846 + }, + "indices":380, + "material":0 + } + ] + }, + { + "name":"Mesh.490", + "primitives":[ + { + "attributes":{ + "POSITION":847, + "NORMAL":848 + }, + "indices":557, + "material":17 + } + ] + }, + { + "name":"Mesh.5355", + "primitives":[ + { + "attributes":{ + "POSITION":849, + "NORMAL":850, + "TEXCOORD_0":851 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.834", + "primitives":[ + { + "attributes":{ + "POSITION":852, + "NORMAL":853, + "TEXCOORD_0":854 + }, + "indices":855, + "material":0 + } + ] + }, + { + "name":"Mesh.539", + "primitives":[ + { + "attributes":{ + "POSITION":856, + "NORMAL":857, + "TEXCOORD_0":858 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.8289", + "primitives":[ + { + "attributes":{ + "POSITION":859, + "NORMAL":860 + }, + "indices":861, + "material":3 + } + ] + }, + { + "name":"Mesh.8772", + "primitives":[ + { + "attributes":{ + "POSITION":862, + "NORMAL":863 + }, + "indices":864, + "material":3 + } + ] + }, + { + "name":"Mesh.7317", + "primitives":[ + { + "attributes":{ + "POSITION":865, + "NORMAL":866, + "TEXCOORD_0":867 + }, + "indices":868, + "material":7 + } + ] + }, + { + "name":"Mesh.7896", + "primitives":[ + { + "attributes":{ + "POSITION":869, + "NORMAL":870 + }, + "indices":871, + "material":3 + } + ] + }, + { + "name":"Mesh.6227", + "primitives":[ + { + "attributes":{ + "POSITION":872, + "NORMAL":873, + "TEXCOORD_0":874 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.5099", + "primitives":[ + { + "attributes":{ + "POSITION":875, + "NORMAL":876, + "TEXCOORD_0":877 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1154", + "primitives":[ + { + "attributes":{ + "POSITION":878, + "NORMAL":879, + "TEXCOORD_0":880 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.8174", + "primitives":[ + { + "attributes":{ + "POSITION":881, + "NORMAL":882 + }, + "indices":883, + "material":3 + } + ] + }, + { + "name":"Mesh.379", + "primitives":[ + { + "attributes":{ + "POSITION":884, + "NORMAL":885, + "TEXCOORD_0":886 + }, + "indices":887, + "material":0 + } + ] + }, + { + "name":"Mesh.2753", + "primitives":[ + { + "attributes":{ + "POSITION":888, + "NORMAL":889, + "TEXCOORD_0":890 + }, + "indices":296, + "material":4 + } + ] + }, + { + "name":"Mesh.003", + "primitives":[ + { + "attributes":{ + "POSITION":891, + "NORMAL":892, + "TEXCOORD_0":893 + }, + "indices":894, + "material":21 + } + ] + }, + { + "name":"Mesh.5324", + "primitives":[ + { + "attributes":{ + "POSITION":895, + "NORMAL":896, + "TEXCOORD_0":897 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5173", + "primitives":[ + { + "attributes":{ + "POSITION":898, + "NORMAL":899, + "TEXCOORD_0":900 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.697", + "primitives":[ + { + "attributes":{ + "POSITION":901, + "NORMAL":902, + "TEXCOORD_0":903 + }, + "indices":904, + "material":0 + } + ] + }, + { + "name":"Mesh.1144", + "primitives":[ + { + "attributes":{ + "POSITION":905, + "NORMAL":906, + "TEXCOORD_0":907 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.1603", + "primitives":[ + { + "attributes":{ + "POSITION":908, + "NORMAL":909 + }, + "indices":910, + "material":17 + } + ] + }, + { + "name":"Mesh.2506", + "primitives":[ + { + "attributes":{ + "POSITION":911, + "NORMAL":912, + "TEXCOORD_0":913 + }, + "indices":914, + "material":0 + } + ] + }, + { + "name":"Mesh.7026", + "primitives":[ + { + "attributes":{ + "POSITION":915, + "NORMAL":916 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.2823", + "primitives":[ + { + "attributes":{ + "POSITION":918, + "NORMAL":919 + }, + "indices":920, + "material":1 + } + ] + }, + { + "name":"Mesh.038", + "primitives":[ + { + "attributes":{ + "POSITION":921, + "NORMAL":922 + }, + "indices":923, + "material":22 + } + ] + }, + { + "name":"Mesh.6275", + "primitives":[ + { + "attributes":{ + "POSITION":924, + "NORMAL":925, + "TEXCOORD_0":926 + }, + "indices":927, + "material":12 + } + ] + }, + { + "name":"Mesh.2711", + "primitives":[ + { + "attributes":{ + "POSITION":928, + "NORMAL":929, + "TEXCOORD_0":930 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.9141", + "primitives":[ + { + "attributes":{ + "POSITION":931, + "NORMAL":932, + "TEXCOORD_0":933 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.2428", + "primitives":[ + { + "attributes":{ + "POSITION":934, + "NORMAL":935, + "TEXCOORD_0":936 + }, + "indices":313, + "material":4 + } + ] + }, + { + "name":"Mesh.631", + "primitives":[ + { + "attributes":{ + "POSITION":937, + "NORMAL":938, + "TEXCOORD_0":939 + }, + "indices":940, + "material":3 + } + ] + }, + { + "name":"Mesh.6597", + "primitives":[ + { + "attributes":{ + "POSITION":941, + "NORMAL":942 + }, + "indices":943, + "material":0 + } + ] + }, + { + "name":"Mesh.5983", + "primitives":[ + { + "attributes":{ + "POSITION":944, + "NORMAL":945, + "TEXCOORD_0":946 + }, + "indices":947, + "material":5 + } + ] + }, + { + "name":"Mesh.8990", + "primitives":[ + { + "attributes":{ + "POSITION":948, + "NORMAL":949, + "TEXCOORD_0":950 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.2620", + "primitives":[ + { + "attributes":{ + "POSITION":951, + "NORMAL":952, + "TEXCOORD_0":953 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.7658", + "primitives":[ + { + "attributes":{ + "POSITION":955, + "NORMAL":956 + }, + "indices":957, + "material":3 + } + ] + }, + { + "name":"Mesh.112", + "primitives":[ + { + "attributes":{ + "POSITION":958, + "NORMAL":959, + "TEXCOORD_0":960 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.6944", + "primitives":[ + { + "attributes":{ + "POSITION":961, + "NORMAL":962, + "TEXCOORD_0":963 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.6172", + "primitives":[ + { + "attributes":{ + "POSITION":964, + "NORMAL":965, + "TEXCOORD_0":966 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.9157", + "primitives":[ + { + "attributes":{ + "POSITION":968, + "NORMAL":969, + "TEXCOORD_0":970 + }, + "indices":971, + "material":7 + } + ] + }, + { + "name":"Mesh.5367", + "primitives":[ + { + "attributes":{ + "POSITION":972, + "NORMAL":973, + "TEXCOORD_0":974 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7634", + "primitives":[ + { + "attributes":{ + "POSITION":975, + "NORMAL":976 + }, + "indices":977, + "material":3 + } + ] + }, + { + "name":"Mesh.648", + "primitives":[ + { + "attributes":{ + "POSITION":978, + "NORMAL":979, + "TEXCOORD_0":980 + }, + "indices":981, + "material":3 + } + ] + }, + { + "name":"Mesh.089", + "primitives":[ + { + "attributes":{ + "POSITION":982, + "NORMAL":983, + "TEXCOORD_0":984 + }, + "indices":985, + "material":3 + } + ] + }, + { + "name":"Mesh.5952", + "primitives":[ + { + "attributes":{ + "POSITION":986, + "NORMAL":987, + "TEXCOORD_0":988 + }, + "indices":989, + "material":5 + } + ] + }, + { + "name":"Mesh.7013", + "primitives":[ + { + "attributes":{ + "POSITION":990, + "NORMAL":991 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.317", + "primitives":[ + { + "attributes":{ + "POSITION":992, + "NORMAL":993, + "TEXCOORD_0":994 + }, + "indices":995, + "material":0 + } + ] + }, + { + "name":"Mesh.283", + "primitives":[ + { + "attributes":{ + "POSITION":996, + "NORMAL":997, + "TEXCOORD_0":998 + }, + "indices":999, + "material":0 + } + ] + }, + { + "name":"Mesh.8284", + "primitives":[ + { + "attributes":{ + "POSITION":1000, + "NORMAL":1001 + }, + "indices":1002, + "material":3 + } + ] + }, + { + "name":"Mesh.8542", + "primitives":[ + { + "attributes":{ + "POSITION":1003, + "NORMAL":1004 + }, + "indices":1005, + "material":3 + } + ] + }, + { + "name":"Mesh.1912", + "primitives":[ + { + "attributes":{ + "POSITION":1006, + "NORMAL":1007 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.7038", + "primitives":[ + { + "attributes":{ + "POSITION":1008, + "NORMAL":1009 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.563", + "primitives":[ + { + "attributes":{ + "POSITION":1010, + "NORMAL":1011, + "TEXCOORD_0":1012 + }, + "indices":1013, + "material":0 + } + ] + }, + { + "name":"Mesh.7214", + "primitives":[ + { + "attributes":{ + "POSITION":1014, + "NORMAL":1015, + "TEXCOORD_0":1016 + }, + "indices":1017, + "material":7 + } + ] + }, + { + "name":"Mesh.1801", + "primitives":[ + { + "attributes":{ + "POSITION":1018, + "NORMAL":1019 + }, + "indices":696, + "material":1 + } + ] + }, + { + "name":"Mesh.7468", + "primitives":[ + { + "attributes":{ + "POSITION":1020, + "NORMAL":1021 + }, + "indices":1022, + "material":3 + } + ] + }, + { + "name":"Mesh.1178", + "primitives":[ + { + "attributes":{ + "POSITION":1023, + "NORMAL":1024 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.7909", + "primitives":[ + { + "attributes":{ + "POSITION":1025, + "NORMAL":1026 + }, + "indices":1027, + "material":3 + } + ] + }, + { + "name":"Mesh.2338", + "primitives":[ + { + "attributes":{ + "POSITION":1028, + "NORMAL":1029, + "TEXCOORD_0":1030 + }, + "indices":144, + "material":0 + } + ] + }, + { + "name":"Mesh.7757", + "primitives":[ + { + "attributes":{ + "POSITION":1031, + "NORMAL":1032 + }, + "indices":1033, + "material":3 + } + ] + }, + { + "name":"Mesh.2026", + "primitives":[ + { + "attributes":{ + "POSITION":1034, + "NORMAL":1035, + "TEXCOORD_0":1036 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2369", + "primitives":[ + { + "attributes":{ + "POSITION":1037, + "NORMAL":1038, + "TEXCOORD_0":1039 + }, + "indices":1040, + "material":0 + } + ] + }, + { + "name":"Mesh.6585", + "primitives":[ + { + "attributes":{ + "POSITION":1041, + "NORMAL":1042 + }, + "indices":1043, + "material":0 + } + ] + }, + { + "name":"Mesh.7461", + "primitives":[ + { + "attributes":{ + "POSITION":1044, + "NORMAL":1045 + }, + "indices":1046, + "material":3 + } + ] + }, + { + "name":"Mesh.8996", + "primitives":[ + { + "attributes":{ + "POSITION":1047, + "NORMAL":1048, + "TEXCOORD_0":1049 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.2267", + "primitives":[ + { + "attributes":{ + "POSITION":1050, + "NORMAL":1051, + "TEXCOORD_0":1052 + }, + "indices":469, + "material":0 + } + ] + }, + { + "name":"Mesh.7359", + "primitives":[ + { + "attributes":{ + "POSITION":1053, + "NORMAL":1054, + "TEXCOORD_0":1055 + }, + "indices":1056, + "material":7 + } + ] + }, + { + "name":"Mesh.2561", + "primitives":[ + { + "attributes":{ + "POSITION":1057, + "NORMAL":1058, + "TEXCOORD_0":1059 + }, + "indices":1060, + "material":0 + } + ] + }, + { + "name":"Mesh.8789", + "primitives":[ + { + "attributes":{ + "POSITION":1061, + "NORMAL":1062 + }, + "indices":1063, + "material":3 + } + ] + }, + { + "name":"Mesh.8696", + "primitives":[ + { + "attributes":{ + "POSITION":1064, + "NORMAL":1065 + }, + "indices":1066, + "material":3 + } + ] + }, + { + "name":"Mesh.2878", + "primitives":[ + { + "attributes":{ + "POSITION":1067, + "NORMAL":1068 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.2737", + "primitives":[ + { + "attributes":{ + "POSITION":1069, + "NORMAL":1070, + "TEXCOORD_0":1071 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.6140", + "primitives":[ + { + "attributes":{ + "POSITION":1072, + "NORMAL":1073, + "TEXCOORD_0":1074 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.1708", + "primitives":[ + { + "attributes":{ + "POSITION":1075, + "NORMAL":1076, + "TEXCOORD_0":1077 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.8737", + "primitives":[ + { + "attributes":{ + "POSITION":1079, + "NORMAL":1080 + }, + "indices":1081, + "material":3 + } + ] + }, + { + "name":"Mesh.6652", + "primitives":[ + { + "attributes":{ + "POSITION":1082, + "NORMAL":1083 + }, + "indices":1084, + "material":0 + } + ] + }, + { + "name":"Mesh.765", + "primitives":[ + { + "attributes":{ + "POSITION":1085, + "NORMAL":1086, + "TEXCOORD_0":1087 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.526", + "primitives":[ + { + "attributes":{ + "POSITION":1088, + "NORMAL":1089, + "TEXCOORD_0":1090 + }, + "indices":1091, + "material":0 + } + ] + }, + { + "name":"Mesh.7800", + "primitives":[ + { + "attributes":{ + "POSITION":1092, + "NORMAL":1093 + }, + "indices":1094, + "material":3 + } + ] + }, + { + "name":"Mesh.950", + "primitives":[ + { + "attributes":{ + "POSITION":1095, + "NORMAL":1096, + "TEXCOORD_0":1097 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.168", + "primitives":[ + { + "attributes":{ + "POSITION":1098, + "NORMAL":1099, + "TEXCOORD_0":1100 + }, + "indices":1101, + "material":0 + } + ] + }, + { + "name":"Mesh.6541", + "primitives":[ + { + "attributes":{ + "POSITION":1102, + "NORMAL":1103 + }, + "indices":1104, + "material":0 + } + ] + }, + { + "name":"Mesh.663", + "primitives":[ + { + "attributes":{ + "POSITION":1105, + "NORMAL":1106, + "TEXCOORD_0":1107 + }, + "indices":1108, + "material":3 + } + ] + }, + { + "name":"Mesh.6326", + "primitives":[ + { + "attributes":{ + "POSITION":1109, + "NORMAL":1110, + "TEXCOORD_0":1111 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.4838", + "primitives":[ + { + "attributes":{ + "POSITION":1112, + "NORMAL":1113, + "TEXCOORD_0":1114 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7689", + "primitives":[ + { + "attributes":{ + "POSITION":1115, + "NORMAL":1116 + }, + "indices":1117, + "material":3 + } + ] + }, + { + "name":"Mesh.4799", + "primitives":[ + { + "attributes":{ + "POSITION":1118, + "NORMAL":1119, + "TEXCOORD_0":1120 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.315", + "primitives":[ + { + "attributes":{ + "POSITION":1121, + "NORMAL":1122, + "TEXCOORD_0":1123 + }, + "indices":1124, + "material":0 + } + ] + }, + { + "name":"Mesh.292", + "primitives":[ + { + "attributes":{ + "POSITION":1125, + "NORMAL":1126, + "TEXCOORD_0":1127 + }, + "indices":1128, + "material":0 + } + ] + }, + { + "name":"Mesh.5967", + "primitives":[ + { + "attributes":{ + "POSITION":1129, + "NORMAL":1130, + "TEXCOORD_0":1131 + }, + "indices":1132, + "material":23 + } + ] + }, + { + "name":"Mesh.5311", + "primitives":[ + { + "attributes":{ + "POSITION":1133, + "NORMAL":1134, + "TEXCOORD_0":1135 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2038", + "primitives":[ + { + "attributes":{ + "POSITION":1136, + "NORMAL":1137, + "TEXCOORD_0":1138 + }, + "indices":1139, + "material":0 + } + ] + }, + { + "name":"Mesh.6510", + "primitives":[ + { + "attributes":{ + "POSITION":1140, + "NORMAL":1141, + "TEXCOORD_0":1142 + }, + "indices":1143, + "material":0 + } + ] + }, + { + "name":"Mesh.227", + "primitives":[ + { + "attributes":{ + "POSITION":1144, + "NORMAL":1145, + "TEXCOORD_0":1146 + }, + "indices":1147, + "material":3 + } + ] + }, + { + "name":"Mesh.8332", + "primitives":[ + { + "attributes":{ + "POSITION":1148, + "NORMAL":1149 + }, + "indices":1150, + "material":3 + } + ] + }, + { + "name":"Mesh.8380", + "primitives":[ + { + "attributes":{ + "POSITION":1151, + "NORMAL":1152 + }, + "indices":16, + "material":3 + } + ] + }, + { + "name":"Mesh.6882", + "primitives":[ + { + "attributes":{ + "POSITION":1153, + "NORMAL":1154 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.8130", + "primitives":[ + { + "attributes":{ + "POSITION":1155, + "NORMAL":1156 + }, + "indices":1157, + "material":3 + } + ] + }, + { + "name":"Mesh.2279", + "primitives":[ + { + "attributes":{ + "POSITION":1158, + "NORMAL":1159, + "TEXCOORD_0":1160 + }, + "indices":887, + "material":0 + } + ] + }, + { + "name":"Mesh.5489", + "primitives":[ + { + "attributes":{ + "POSITION":1161, + "NORMAL":1162, + "TEXCOORD_0":1163 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1967", + "primitives":[ + { + "attributes":{ + "POSITION":1164, + "NORMAL":1165, + "TEXCOORD_0":1166 + }, + "indices":1167, + "material":0 + } + ] + }, + { + "name":"Mesh.2890", + "primitives":[ + { + "attributes":{ + "POSITION":1168, + "NORMAL":1169 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.5129", + "primitives":[ + { + "attributes":{ + "POSITION":1170, + "NORMAL":1171, + "TEXCOORD_0":1172 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2462", + "primitives":[ + { + "attributes":{ + "POSITION":1173, + "NORMAL":1174, + "TEXCOORD_0":1175 + }, + "indices":313, + "material":4 + } + ] + }, + { + "name":"Mesh.2208", + "primitives":[ + { + "attributes":{ + "POSITION":1176, + "NORMAL":1177, + "TEXCOORD_0":1178 + }, + "indices":1179, + "material":0 + } + ] + }, + { + "name":"Mesh.489", + "primitives":[ + { + "attributes":{ + "POSITION":1180, + "NORMAL":1181 + }, + "indices":1182, + "material":17 + } + ] + }, + { + "name":"Mesh.316", + "primitives":[ + { + "attributes":{ + "POSITION":1183, + "NORMAL":1184, + "TEXCOORD_0":1185 + }, + "indices":1186, + "material":0 + } + ] + }, + { + "name":"Mesh.1646", + "primitives":[ + { + "attributes":{ + "POSITION":1187, + "NORMAL":1188, + "TEXCOORD_0":1189 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.8678", + "primitives":[ + { + "attributes":{ + "POSITION":1190, + "NORMAL":1191 + }, + "indices":1192, + "material":3 + } + ] + }, + { + "name":"Mesh.5354", + "primitives":[ + { + "attributes":{ + "POSITION":1193, + "NORMAL":1194, + "TEXCOORD_0":1195 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7886", + "primitives":[ + { + "attributes":{ + "POSITION":1196, + "NORMAL":1197 + }, + "indices":1198, + "material":3 + } + ] + }, + { + "name":"Mesh.538", + "primitives":[ + { + "attributes":{ + "POSITION":1199, + "NORMAL":1200, + "TEXCOORD_0":1201 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8456", + "primitives":[ + { + "attributes":{ + "POSITION":1202, + "NORMAL":1203 + }, + "indices":1204, + "material":3 + } + ] + }, + { + "name":"Mesh.9073", + "primitives":[ + { + "attributes":{ + "POSITION":1205, + "NORMAL":1206, + "TEXCOORD_0":1207 + }, + "indices":1208, + "material":7 + } + ] + }, + { + "name":"Mesh.6226", + "primitives":[ + { + "attributes":{ + "POSITION":1209, + "NORMAL":1210, + "TEXCOORD_0":1211 + }, + "indices":1132, + "material":23 + } + ] + }, + { + "name":"Mesh.5098", + "primitives":[ + { + "attributes":{ + "POSITION":1212, + "NORMAL":1213, + "TEXCOORD_0":1214 + }, + "indices":1215, + "material":2 + } + ] + }, + { + "name":"Mesh.1153", + "primitives":[ + { + "attributes":{ + "POSITION":1216, + "NORMAL":1217, + "TEXCOORD_0":1218 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.8173", + "primitives":[ + { + "attributes":{ + "POSITION":1219, + "NORMAL":1220 + }, + "indices":1221, + "material":3 + } + ] + }, + { + "name":"Mesh.8028", + "primitives":[ + { + "attributes":{ + "POSITION":1222, + "NORMAL":1223, + "TEXCOORD_0":1224 + }, + "indices":1225, + "material":0 + } + ] + }, + { + "name":"Mesh.2752", + "primitives":[ + { + "attributes":{ + "POSITION":1226, + "NORMAL":1227, + "TEXCOORD_0":1228 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.002", + "primitives":[ + { + "attributes":{ + "POSITION":1229, + "NORMAL":1230, + "TEXCOORD_0":1231 + }, + "indices":1232, + "material":24 + } + ] + }, + { + "name":"Mesh.8802", + "primitives":[ + { + "attributes":{ + "POSITION":1233, + "NORMAL":1234 + }, + "indices":1235, + "material":3 + } + ] + }, + { + "name":"Mesh.5683", + "primitives":[ + { + "attributes":{ + "POSITION":1236, + "NORMAL":1237, + "TEXCOORD_0":1238 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6946", + "primitives":[ + { + "attributes":{ + "POSITION":1239, + "NORMAL":1240 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.5172", + "primitives":[ + { + "attributes":{ + "POSITION":1241, + "NORMAL":1242, + "TEXCOORD_0":1243 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2505", + "primitives":[ + { + "attributes":{ + "POSITION":1244, + "NORMAL":1245, + "TEXCOORD_0":1246 + }, + "indices":1247, + "material":0 + } + ] + }, + { + "name":"Mesh.6707", + "primitives":[ + { + "attributes":{ + "POSITION":1248, + "NORMAL":1249 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.2427", + "primitives":[ + { + "attributes":{ + "POSITION":1250, + "NORMAL":1251, + "TEXCOORD_0":1252 + }, + "indices":313, + "material":4 + } + ] + }, + { + "name":"Mesh.820", + "primitives":[ + { + "attributes":{ + "POSITION":1253, + "NORMAL":1254, + "TEXCOORD_0":1255 + }, + "indices":1256, + "material":0 + } + ] + }, + { + "name":"Mesh.8980", + "primitives":[ + { + "attributes":{ + "POSITION":1257, + "NORMAL":1258, + "TEXCOORD_0":1259 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.1726", + "primitives":[ + { + "attributes":{ + "POSITION":1260, + "NORMAL":1261, + "TEXCOORD_0":1262 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.630", + "primitives":[ + { + "attributes":{ + "POSITION":1263, + "NORMAL":1264, + "TEXCOORD_0":1265 + }, + "indices":1147, + "material":3 + } + ] + }, + { + "name":"Mesh.6596", + "primitives":[ + { + "attributes":{ + "POSITION":1266, + "NORMAL":1267 + }, + "indices":1268, + "material":0 + } + ] + }, + { + "name":"Mesh.5982", + "primitives":[ + { + "attributes":{ + "POSITION":1269, + "NORMAL":1270, + "TEXCOORD_0":1271 + }, + "indices":947, + "material":5 + } + ] + }, + { + "name":"Mesh.8221", + "primitives":[ + { + "attributes":{ + "POSITION":1272, + "NORMAL":1273 + }, + "indices":1274, + "material":3 + } + ] + }, + { + "name":"Mesh.2619", + "primitives":[ + { + "attributes":{ + "POSITION":1275, + "NORMAL":1276, + "TEXCOORD_0":1277 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.1055", + "primitives":[ + { + "attributes":{ + "POSITION":1278, + "NORMAL":1279, + "TEXCOORD_0":1280 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.9033", + "primitives":[ + { + "attributes":{ + "POSITION":1281, + "NORMAL":1282, + "TEXCOORD_0":1283 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.347", + "primitives":[ + { + "attributes":{ + "POSITION":1284, + "NORMAL":1285, + "TEXCOORD_0":1286 + }, + "indices":584, + "material":0 + } + ] + }, + { + "name":"Mesh.5366", + "primitives":[ + { + "attributes":{ + "POSITION":1287, + "NORMAL":1288, + "TEXCOORD_0":1289 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7633", + "primitives":[ + { + "attributes":{ + "POSITION":1290, + "NORMAL":1291 + }, + "indices":1292, + "material":3 + } + ] + }, + { + "name":"Mesh.550", + "primitives":[ + { + "attributes":{ + "POSITION":1293, + "NORMAL":1294, + "TEXCOORD_0":1295 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.647", + "primitives":[ + { + "attributes":{ + "POSITION":1296, + "NORMAL":1297, + "TEXCOORD_0":1298 + }, + "indices":1299, + "material":3 + } + ] + }, + { + "name":"Mesh.088", + "primitives":[ + { + "attributes":{ + "POSITION":1300, + "NORMAL":1301, + "TEXCOORD_0":1302 + }, + "indices":1303, + "material":7 + } + ] + }, + { + "name":"Mesh.9164", + "primitives":[ + { + "attributes":{ + "POSITION":1304, + "NORMAL":1305, + "TEXCOORD_0":1306 + }, + "indices":1307, + "material":7 + } + ] + }, + { + "name":"Mesh.5951", + "primitives":[ + { + "attributes":{ + "POSITION":1308, + "NORMAL":1309, + "TEXCOORD_0":1310 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.2588", + "primitives":[ + { + "attributes":{ + "POSITION":1312, + "NORMAL":1313, + "TEXCOORD_0":1314 + }, + "indices":1315, + "material":0 + } + ] + }, + { + "name":"Mesh.2069", + "primitives":[ + { + "attributes":{ + "POSITION":1316, + "NORMAL":1317, + "TEXCOORD_0":1318 + }, + "indices":1319, + "material":0 + } + ] + }, + { + "name":"Mesh.8486", + "primitives":[ + { + "attributes":{ + "POSITION":1320, + "NORMAL":1321 + }, + "indices":1322, + "material":3 + } + ] + }, + { + "name":"Mesh.9118", + "primitives":[ + { + "attributes":{ + "POSITION":1323, + "NORMAL":1324, + "TEXCOORD_0":1325 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.8539", + "primitives":[ + { + "attributes":{ + "POSITION":1326, + "NORMAL":1327 + }, + "indices":1328, + "material":3 + } + ] + }, + { + "name":"Mesh.318", + "primitives":[ + { + "attributes":{ + "POSITION":1329, + "NORMAL":1330, + "TEXCOORD_0":1331 + }, + "indices":1332, + "material":0 + } + ] + }, + { + "name":"Mesh.6891", + "primitives":[ + { + "attributes":{ + "POSITION":1333, + "NORMAL":1334, + "TEXCOORD_0":1335 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.5512", + "primitives":[ + { + "attributes":{ + "POSITION":1336, + "NORMAL":1337, + "TEXCOORD_0":1338 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5184", + "primitives":[ + { + "attributes":{ + "POSITION":1339, + "NORMAL":1340, + "TEXCOORD_0":1341 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1911", + "primitives":[ + { + "attributes":{ + "POSITION":1342, + "NORMAL":1343 + }, + "indices":386, + "material":0 + } + ] + }, + { + "name":"Mesh.7037", + "primitives":[ + { + "attributes":{ + "POSITION":1344, + "NORMAL":1345, + "TEXCOORD_0":1346 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.562", + "primitives":[ + { + "attributes":{ + "POSITION":1347, + "NORMAL":1348, + "TEXCOORD_0":1349 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8559", + "primitives":[ + { + "attributes":{ + "POSITION":1350, + "NORMAL":1351 + }, + "indices":1352, + "material":3 + } + ] + }, + { + "name":"Mesh.6719", + "primitives":[ + { + "attributes":{ + "POSITION":1353, + "NORMAL":1354 + }, + "indices":1355, + "material":0 + } + ] + }, + { + "name":"Mesh.7213", + "primitives":[ + { + "attributes":{ + "POSITION":1356, + "NORMAL":1357, + "TEXCOORD_0":1358 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.618", + "primitives":[ + { + "attributes":{ + "POSITION":1360, + "NORMAL":1361, + "TEXCOORD_0":1362 + }, + "indices":1363, + "material":3 + } + ] + }, + { + "name":"Mesh.9207", + "primitives":[ + { + "attributes":{ + "POSITION":1364, + "NORMAL":1365, + "TEXCOORD_0":1366 + }, + "indices":247, + "material":7 + } + ] + }, + { + "name":"Mesh.1800", + "primitives":[ + { + "attributes":{ + "POSITION":1367, + "NORMAL":1368 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.7969", + "primitives":[ + { + "attributes":{ + "POSITION":1369, + "NORMAL":1370, + "TEXCOORD_0":1371 + }, + "indices":1372, + "material":0 + } + ] + }, + { + "name":"Mesh.2025", + "primitives":[ + { + "attributes":{ + "POSITION":1373, + "NORMAL":1374, + "TEXCOORD_0":1375 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2368", + "primitives":[ + { + "attributes":{ + "POSITION":1376, + "NORMAL":1377, + "TEXCOORD_0":1378 + }, + "indices":1379, + "material":0 + } + ] + }, + { + "name":"Mesh.7460", + "primitives":[ + { + "attributes":{ + "POSITION":1380, + "NORMAL":1381 + }, + "indices":1382, + "material":3 + } + ] + }, + { + "name":"Mesh.6544", + "primitives":[ + { + "attributes":{ + "POSITION":1383, + "NORMAL":1384 + }, + "indices":1385, + "material":0 + } + ] + }, + { + "name":"Mesh.8647", + "primitives":[ + { + "attributes":{ + "POSITION":1386, + "NORMAL":1387 + }, + "indices":1388, + "material":3 + } + ] + }, + { + "name":"Mesh.2266", + "primitives":[ + { + "attributes":{ + "POSITION":1389, + "NORMAL":1390, + "TEXCOORD_0":1391 + }, + "indices":1392, + "material":0 + } + ] + }, + { + "name":"Mesh.7358", + "primitives":[ + { + "attributes":{ + "POSITION":1393, + "NORMAL":1394, + "TEXCOORD_0":1395 + }, + "indices":1396, + "material":7 + } + ] + }, + { + "name":"Mesh.2560", + "primitives":[ + { + "attributes":{ + "POSITION":1397, + "NORMAL":1398, + "TEXCOORD_0":1399 + }, + "indices":1400, + "material":0 + } + ] + }, + { + "name":"Mesh.2877", + "primitives":[ + { + "attributes":{ + "POSITION":1401, + "NORMAL":1402 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.2657", + "primitives":[ + { + "attributes":{ + "POSITION":1403, + "NORMAL":1404, + "TEXCOORD_0":1405 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.2736", + "primitives":[ + { + "attributes":{ + "POSITION":1406, + "NORMAL":1407, + "TEXCOORD_0":1408 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.6139", + "primitives":[ + { + "attributes":{ + "POSITION":1409, + "NORMAL":1410, + "TEXCOORD_0":1411 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.1707", + "primitives":[ + { + "attributes":{ + "POSITION":1412, + "NORMAL":1413, + "TEXCOORD_0":1414 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.6969", + "primitives":[ + { + "attributes":{ + "POSITION":1415, + "NORMAL":1416 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6179", + "primitives":[ + { + "attributes":{ + "POSITION":1417, + "NORMAL":1418, + "TEXCOORD_0":1419 + }, + "indices":449, + "material":12 + } + ] + }, + { + "name":"Mesh.6651", + "primitives":[ + { + "attributes":{ + "POSITION":1420, + "NORMAL":1421 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.764", + "primitives":[ + { + "attributes":{ + "POSITION":1422, + "NORMAL":1423, + "TEXCOORD_0":1424 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.525", + "primitives":[ + { + "attributes":{ + "POSITION":1425, + "NORMAL":1426, + "TEXCOORD_0":1427 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7799", + "primitives":[ + { + "attributes":{ + "POSITION":1428, + "NORMAL":1429 + }, + "indices":1430, + "material":3 + } + ] + }, + { + "name":"Mesh.8858", + "primitives":[ + { + "attributes":{ + "POSITION":1431, + "NORMAL":1432 + }, + "indices":194, + "material":3 + } + ] + }, + { + "name":"Mesh.949", + "primitives":[ + { + "attributes":{ + "POSITION":1433, + "NORMAL":1434, + "TEXCOORD_0":1435 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.6540", + "primitives":[ + { + "attributes":{ + "POSITION":1436, + "NORMAL":1437 + }, + "indices":1438, + "material":0 + } + ] + }, + { + "name":"Mesh.2705", + "primitives":[ + { + "attributes":{ + "POSITION":1439, + "NORMAL":1440, + "TEXCOORD_0":1441 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.662", + "primitives":[ + { + "attributes":{ + "POSITION":1442, + "NORMAL":1443, + "TEXCOORD_0":1444 + }, + "indices":1445, + "material":3 + } + ] + }, + { + "name":"Mesh.5542", + "primitives":[ + { + "attributes":{ + "POSITION":1446, + "NORMAL":1447, + "TEXCOORD_0":1448 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6253", + "primitives":[ + { + "attributes":{ + "POSITION":1449, + "NORMAL":1450, + "TEXCOORD_0":1451 + }, + "indices":1452, + "material":12 + } + ] + }, + { + "name":"Mesh.4798", + "primitives":[ + { + "attributes":{ + "POSITION":1453, + "NORMAL":1454, + "TEXCOORD_0":1455 + }, + "indices":1215, + "material":2 + } + ] + }, + { + "name":"Mesh.6543", + "primitives":[ + { + "attributes":{ + "POSITION":1456, + "NORMAL":1457 + }, + "indices":1458, + "material":0 + } + ] + }, + { + "name":"Mesh.8228", + "primitives":[ + { + "attributes":{ + "POSITION":1459, + "NORMAL":1460 + }, + "indices":1461, + "material":3 + } + ] + }, + { + "name":"Mesh.5966", + "primitives":[ + { + "attributes":{ + "POSITION":1462, + "NORMAL":1463, + "TEXCOORD_0":1464 + }, + "indices":1465, + "material":25 + } + ] + }, + { + "name":"Mesh.8055", + "primitives":[ + { + "attributes":{ + "POSITION":1466, + "NORMAL":1467, + "TEXCOORD_0":1468 + }, + "indices":1469, + "material":0 + } + ] + }, + { + "name":"Mesh.5310", + "primitives":[ + { + "attributes":{ + "POSITION":1470, + "NORMAL":1471, + "TEXCOORD_0":1472 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2037", + "primitives":[ + { + "attributes":{ + "POSITION":1473, + "NORMAL":1474, + "TEXCOORD_0":1475 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.2166", + "primitives":[ + { + "attributes":{ + "POSITION":1476, + "NORMAL":1477, + "TEXCOORD_0":1478 + }, + "indices":1479, + "material":0 + } + ] + }, + { + "name":"Mesh.8673", + "primitives":[ + { + "attributes":{ + "POSITION":1480, + "NORMAL":1481 + }, + "indices":1482, + "material":3 + } + ] + }, + { + "name":"Mesh.7134", + "primitives":[ + { + "attributes":{ + "POSITION":1483, + "NORMAL":1484, + "TEXCOORD_0":1485 + }, + "indices":1486, + "material":7 + } + ] + }, + { + "name":"Mesh.6509", + "primitives":[ + { + "attributes":{ + "POSITION":1487, + "NORMAL":1488, + "TEXCOORD_0":1489 + }, + "indices":1490, + "material":0 + } + ] + }, + { + "name":"Mesh.5054", + "primitives":[ + { + "attributes":{ + "POSITION":1491, + "NORMAL":1492, + "TEXCOORD_0":1493 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.326", + "primitives":[ + { + "attributes":{ + "POSITION":1494, + "NORMAL":1495, + "TEXCOORD_0":1496 + }, + "indices":1497, + "material":0 + } + ] + }, + { + "name":"Mesh.8129", + "primitives":[ + { + "attributes":{ + "POSITION":1498, + "NORMAL":1499 + }, + "indices":1500, + "material":3 + } + ] + }, + { + "name":"Mesh.807", + "primitives":[ + { + "attributes":{ + "POSITION":1501, + "NORMAL":1502, + "TEXCOORD_0":1503 + }, + "indices":887, + "material":0 + } + ] + }, + { + "name":"Mesh.1966", + "primitives":[ + { + "attributes":{ + "POSITION":1504, + "NORMAL":1505, + "TEXCOORD_0":1506 + }, + "indices":647, + "material":0 + } + ] + }, + { + "name":"Mesh.2318", + "primitives":[ + { + "attributes":{ + "POSITION":1507, + "NORMAL":1508, + "TEXCOORD_0":1509 + }, + "indices":1510, + "material":0 + } + ] + }, + { + "name":"Mesh.2889", + "primitives":[ + { + "attributes":{ + "POSITION":1511, + "NORMAL":1512 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.5128", + "primitives":[ + { + "attributes":{ + "POSITION":1513, + "NORMAL":1514, + "TEXCOORD_0":1515 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.907", + "primitives":[ + { + "attributes":{ + "POSITION":1516, + "NORMAL":1517, + "TEXCOORD_0":1518 + }, + "indices":144, + "material":0 + } + ] + }, + { + "name":"Mesh.2461", + "primitives":[ + { + "attributes":{ + "POSITION":1519, + "NORMAL":1520, + "TEXCOORD_0":1521 + }, + "indices":1522, + "material":4 + } + ] + }, + { + "name":"Mesh.1813", + "primitives":[ + { + "attributes":{ + "POSITION":1523, + "NORMAL":1524 + }, + "indices":696, + "material":1 + } + ] + }, + { + "name":"Mesh.2207", + "primitives":[ + { + "attributes":{ + "POSITION":1525, + "NORMAL":1526, + "TEXCOORD_0":1527 + }, + "indices":1528, + "material":0 + } + ] + }, + { + "name":"Mesh.488", + "primitives":[ + { + "attributes":{ + "POSITION":1529, + "NORMAL":1530, + "TEXCOORD_0":1531 + }, + "indices":1532, + "material":17 + } + ] + }, + { + "name":"Mesh.1087", + "primitives":[ + { + "attributes":{ + "POSITION":1533, + "NORMAL":1534, + "TEXCOORD_0":1535 + }, + "indices":1536, + "material":0 + } + ] + }, + { + "name":"Mesh.7299", + "primitives":[ + { + "attributes":{ + "POSITION":1537, + "NORMAL":1538, + "TEXCOORD_0":1539 + }, + "indices":1540, + "material":7 + } + ] + }, + { + "name":"Mesh.5353", + "primitives":[ + { + "attributes":{ + "POSITION":1541, + "NORMAL":1542, + "TEXCOORD_0":1543 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.537", + "primitives":[ + { + "attributes":{ + "POSITION":1544, + "NORMAL":1545, + "TEXCOORD_0":1546 + }, + "indices":1547, + "material":0 + } + ] + }, + { + "name":"Mesh.6225", + "primitives":[ + { + "attributes":{ + "POSITION":1548, + "NORMAL":1549, + "TEXCOORD_0":1550 + }, + "indices":1465, + "material":25 + } + ] + }, + { + "name":"Mesh.586", + "primitives":[ + { + "attributes":{ + "POSITION":1551, + "NORMAL":1552, + "TEXCOORD_0":1553 + }, + "indices":1554, + "material":0 + } + ] + }, + { + "name":"Mesh.1986", + "primitives":[ + { + "attributes":{ + "POSITION":1555, + "NORMAL":1556, + "TEXCOORD_0":1557 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5097", + "primitives":[ + { + "attributes":{ + "POSITION":1558, + "NORMAL":1559, + "TEXCOORD_0":1560 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1152", + "primitives":[ + { + "attributes":{ + "POSITION":1561, + "NORMAL":1562, + "TEXCOORD_0":1563 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.2751", + "primitives":[ + { + "attributes":{ + "POSITION":1564, + "NORMAL":1565, + "TEXCOORD_0":1566 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.6881", + "primitives":[ + { + "attributes":{ + "POSITION":1567, + "NORMAL":1568, + "TEXCOORD_0":1569 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.001", + "primitives":[ + { + "attributes":{ + "POSITION":1570, + "NORMAL":1571, + "TEXCOORD_0":1572 + }, + "indices":1573, + "material":26 + } + ] + }, + { + "name":"Mesh.8489", + "primitives":[ + { + "attributes":{ + "POSITION":1574, + "NORMAL":1575 + }, + "indices":1576, + "material":3 + } + ] + }, + { + "name":"Mesh.5322", + "primitives":[ + { + "attributes":{ + "POSITION":1577, + "NORMAL":1578, + "TEXCOORD_0":1579 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1623", + "primitives":[ + { + "attributes":{ + "POSITION":1580, + "NORMAL":1581, + "TEXCOORD_0":1582 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.5608", + "primitives":[ + { + "attributes":{ + "POSITION":1583, + "NORMAL":1584, + "TEXCOORD_0":1585 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6521", + "primitives":[ + { + "attributes":{ + "POSITION":1586, + "NORMAL":1587, + "TEXCOORD_0":1588 + }, + "indices":1589, + "material":0 + } + ] + }, + { + "name":"Mesh.7024", + "primitives":[ + { + "attributes":{ + "POSITION":1590, + "NORMAL":1591 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.2518", + "primitives":[ + { + "attributes":{ + "POSITION":1592, + "NORMAL":1593, + "TEXCOORD_0":1594 + }, + "indices":1595, + "material":4 + } + ] + }, + { + "name":"Mesh.819", + "primitives":[ + { + "attributes":{ + "POSITION":1596, + "NORMAL":1597, + "TEXCOORD_0":1598 + }, + "indices":1599, + "material":0 + } + ] + }, + { + "name":"Mesh.8655", + "primitives":[ + { + "attributes":{ + "POSITION":1600, + "NORMAL":1601 + }, + "indices":1033, + "material":3 + } + ] + }, + { + "name":"Mesh.6113", + "primitives":[ + { + "attributes":{ + "POSITION":1602, + "NORMAL":1603, + "TEXCOORD_0":1604 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.6595", + "primitives":[ + { + "attributes":{ + "POSITION":1606, + "NORMAL":1607 + }, + "indices":373, + "material":0 + } + ] + }, + { + "name":"Mesh.2618", + "primitives":[ + { + "attributes":{ + "POSITION":1608, + "NORMAL":1609, + "TEXCOORD_0":1610 + }, + "indices":1611, + "material":0 + } + ] + }, + { + "name":"Mesh.1054", + "primitives":[ + { + "attributes":{ + "POSITION":1612, + "NORMAL":1613, + "TEXCOORD_0":1614 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.464", + "primitives":[ + { + "attributes":{ + "POSITION":1615, + "NORMAL":1616 + }, + "indices":1617, + "material":3 + } + ] + }, + { + "name":"Mesh.2219", + "primitives":[ + { + "attributes":{ + "POSITION":1618, + "NORMAL":1619, + "TEXCOORD_0":1620 + }, + "indices":1621, + "material":0 + } + ] + }, + { + "name":"Mesh.2843", + "primitives":[ + { + "attributes":{ + "POSITION":1622, + "NORMAL":1623 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.5365", + "primitives":[ + { + "attributes":{ + "POSITION":1624, + "NORMAL":1625, + "TEXCOORD_0":1626 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.549", + "primitives":[ + { + "attributes":{ + "POSITION":1627, + "NORMAL":1628, + "TEXCOORD_0":1629 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.646", + "primitives":[ + { + "attributes":{ + "POSITION":1630, + "NORMAL":1631, + "TEXCOORD_0":1632 + }, + "indices":1633, + "material":3 + } + ] + }, + { + "name":"Mesh.087", + "primitives":[ + { + "attributes":{ + "POSITION":1634, + "NORMAL":1635, + "TEXCOORD_0":1636 + }, + "indices":1303, + "material":7 + } + ] + }, + { + "name":"Mesh.673", + "primitives":[ + { + "attributes":{ + "POSITION":1637, + "NORMAL":1638, + "TEXCOORD_0":1639 + }, + "indices":1640, + "material":3 + } + ] + }, + { + "name":"Mesh.7726", + "primitives":[ + { + "attributes":{ + "POSITION":1641, + "NORMAL":1642 + }, + "indices":1643, + "material":3 + } + ] + }, + { + "name":"Mesh.6973", + "primitives":[ + { + "attributes":{ + "POSITION":1644, + "NORMAL":1645, + "TEXCOORD_0":1646 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.5950", + "primitives":[ + { + "attributes":{ + "POSITION":1647, + "NORMAL":1648, + "TEXCOORD_0":1649 + }, + "indices":1650, + "material":20 + } + ] + }, + { + "name":"Mesh.6633", + "primitives":[ + { + "attributes":{ + "POSITION":1651, + "NORMAL":1652, + "TEXCOORD_0":1653 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.7712", + "primitives":[ + { + "attributes":{ + "POSITION":1654, + "NORMAL":1655 + }, + "indices":1656, + "material":3 + } + ] + }, + { + "name":"Mesh.9066", + "primitives":[ + { + "attributes":{ + "POSITION":1657, + "NORMAL":1658, + "TEXCOORD_0":1659 + }, + "indices":1660, + "material":7 + } + ] + }, + { + "name":"Mesh.8538", + "primitives":[ + { + "attributes":{ + "POSITION":1661, + "NORMAL":1662 + }, + "indices":1663, + "material":3 + } + ] + }, + { + "name":"Mesh.1085", + "primitives":[ + { + "attributes":{ + "POSITION":1664, + "NORMAL":1665, + "TEXCOORD_0":1666 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.460", + "primitives":[ + { + "attributes":{ + "POSITION":1667, + "NORMAL":1668 + }, + "indices":1669, + "material":3 + } + ] + }, + { + "name":"Mesh.5183", + "primitives":[ + { + "attributes":{ + "POSITION":1670, + "NORMAL":1671, + "TEXCOORD_0":1672 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6206", + "primitives":[ + { + "attributes":{ + "POSITION":1673, + "NORMAL":1674, + "TEXCOORD_0":1675 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.1910", + "primitives":[ + { + "attributes":{ + "POSITION":1676, + "NORMAL":1677 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.7036", + "primitives":[ + { + "attributes":{ + "POSITION":1678, + "NORMAL":1679, + "TEXCOORD_0":1680 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.561", + "primitives":[ + { + "attributes":{ + "POSITION":1681, + "NORMAL":1682, + "TEXCOORD_0":1683 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8246", + "primitives":[ + { + "attributes":{ + "POSITION":1684, + "NORMAL":1685 + }, + "indices":1686, + "material":3 + } + ] + }, + { + "name":"Mesh.8612", + "primitives":[ + { + "attributes":{ + "POSITION":1687, + "NORMAL":1688 + }, + "indices":1689, + "material":3 + } + ] + }, + { + "name":"Mesh.6718", + "primitives":[ + { + "attributes":{ + "POSITION":1690, + "NORMAL":1691 + }, + "indices":785, + "material":0 + } + ] + }, + { + "name":"Mesh.7212", + "primitives":[ + { + "attributes":{ + "POSITION":1692, + "NORMAL":1693, + "TEXCOORD_0":1694 + }, + "indices":1695, + "material":7 + } + ] + }, + { + "name":"Mesh.1799", + "primitives":[ + { + "attributes":{ + "POSITION":1696, + "NORMAL":1697, + "TEXCOORD_0":1698 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.2024", + "primitives":[ + { + "attributes":{ + "POSITION":1699, + "NORMAL":1700, + "TEXCOORD_0":1701 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.905", + "primitives":[ + { + "attributes":{ + "POSITION":1702, + "NORMAL":1703, + "TEXCOORD_0":1704 + }, + "indices":1392, + "material":0 + } + ] + }, + { + "name":"Mesh.7459", + "primitives":[ + { + "attributes":{ + "POSITION":1705, + "NORMAL":1706 + }, + "indices":1707, + "material":3 + } + ] + }, + { + "name":"Mesh.9084", + "primitives":[ + { + "attributes":{ + "POSITION":1708, + "NORMAL":1709, + "TEXCOORD_0":1710 + }, + "indices":1711, + "material":7 + } + ] + }, + { + "name":"Mesh.8379", + "primitives":[ + { + "attributes":{ + "POSITION":1712, + "NORMAL":1713 + }, + "indices":1033, + "material":3 + } + ] + }, + { + "name":"Mesh.7182", + "primitives":[ + { + "attributes":{ + "POSITION":1714, + "NORMAL":1715, + "TEXCOORD_0":1716 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.6204", + "primitives":[ + { + "attributes":{ + "POSITION":1717, + "NORMAL":1718, + "TEXCOORD_0":1719 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.398", + "primitives":[ + { + "attributes":{ + "POSITION":1720, + "NORMAL":1721, + "TEXCOORD_0":1722 + }, + "indices":887, + "material":0 + } + ] + }, + { + "name":"Mesh.2716", + "primitives":[ + { + "attributes":{ + "POSITION":1723, + "NORMAL":1724, + "TEXCOORD_0":1725 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.2265", + "primitives":[ + { + "attributes":{ + "POSITION":1726, + "NORMAL":1727, + "TEXCOORD_0":1728 + }, + "indices":1497, + "material":0 + } + ] + }, + { + "name":"Mesh.1915", + "primitives":[ + { + "attributes":{ + "POSITION":1729, + "NORMAL":1730 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.7357", + "primitives":[ + { + "attributes":{ + "POSITION":1731, + "NORMAL":1732, + "TEXCOORD_0":1733 + }, + "indices":1056, + "material":7 + } + ] + }, + { + "name":"Mesh.2559", + "primitives":[ + { + "attributes":{ + "POSITION":1734, + "NORMAL":1735, + "TEXCOORD_0":1736 + }, + "indices":914, + "material":0 + } + ] + }, + { + "name":"Mesh.2801", + "primitives":[ + { + "attributes":{ + "POSITION":1737, + "NORMAL":1738, + "TEXCOORD_0":1739 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.7645", + "primitives":[ + { + "attributes":{ + "POSITION":1740, + "NORMAL":1741 + }, + "indices":1742, + "material":3 + } + ] + }, + { + "name":"Mesh.2472", + "primitives":[ + { + "attributes":{ + "POSITION":1743, + "NORMAL":1744, + "TEXCOORD_0":1745 + }, + "indices":1746, + "material":0 + } + ] + }, + { + "name":"Mesh.6425", + "primitives":[ + { + "attributes":{ + "POSITION":1747, + "NORMAL":1748 + }, + "indices":1749, + "material":0 + } + ] + }, + { + "name":"Mesh.7110", + "primitives":[ + { + "attributes":{ + "POSITION":1750, + "NORMAL":1751, + "TEXCOORD_0":1752 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.6138", + "primitives":[ + { + "attributes":{ + "POSITION":1753, + "NORMAL":1754, + "TEXCOORD_0":1755 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.1706", + "primitives":[ + { + "attributes":{ + "POSITION":1756, + "NORMAL":1757, + "TEXCOORD_0":1758 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.6968", + "primitives":[ + { + "attributes":{ + "POSITION":1759, + "NORMAL":1760 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.1213", + "primitives":[ + { + "attributes":{ + "POSITION":1761, + "NORMAL":1762 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.2086", + "primitives":[ + { + "attributes":{ + "POSITION":1763, + "NORMAL":1764, + "TEXCOORD_0":1765 + }, + "indices":1766, + "material":3 + } + ] + }, + { + "name":"Mesh.8947", + "primitives":[ + { + "attributes":{ + "POSITION":1767, + "NORMAL":1768, + "TEXCOORD_0":1769 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.6178", + "primitives":[ + { + "attributes":{ + "POSITION":1770, + "NORMAL":1771, + "TEXCOORD_0":1772 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.6650", + "primitives":[ + { + "attributes":{ + "POSITION":1773, + "NORMAL":1774 + }, + "indices":1775, + "material":0 + } + ] + }, + { + "name":"Mesh.7615", + "primitives":[ + { + "attributes":{ + "POSITION":1776, + "NORMAL":1777 + }, + "indices":1778, + "material":3 + } + ] + }, + { + "name":"Mesh.763", + "primitives":[ + { + "attributes":{ + "POSITION":1779, + "NORMAL":1780, + "TEXCOORD_0":1781 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7462", + "primitives":[ + { + "attributes":{ + "POSITION":1782, + "NORMAL":1783 + }, + "indices":1784, + "material":3 + } + ] + }, + { + "name":"Mesh.7326", + "primitives":[ + { + "attributes":{ + "POSITION":1785, + "NORMAL":1786, + "TEXCOORD_0":1787 + }, + "indices":1788, + "material":7 + } + ] + }, + { + "name":"Mesh.7798", + "primitives":[ + { + "attributes":{ + "POSITION":1789, + "NORMAL":1790 + }, + "indices":1791, + "material":3 + } + ] + }, + { + "name":"Mesh.5400", + "primitives":[ + { + "attributes":{ + "POSITION":1792, + "NORMAL":1793, + "TEXCOORD_0":1794 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.948", + "primitives":[ + { + "attributes":{ + "POSITION":1795, + "NORMAL":1796, + "TEXCOORD_0":1797 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.2704", + "primitives":[ + { + "attributes":{ + "POSITION":1798, + "NORMAL":1799, + "TEXCOORD_0":1800 + }, + "indices":1801, + "material":0 + } + ] + }, + { + "name":"Mesh.661", + "primitives":[ + { + "attributes":{ + "POSITION":1802, + "NORMAL":1803, + "TEXCOORD_0":1804 + }, + "indices":1805, + "material":3 + } + ] + }, + { + "name":"Mesh.6252", + "primitives":[ + { + "attributes":{ + "POSITION":1806, + "NORMAL":1807, + "TEXCOORD_0":1808 + }, + "indices":30, + "material":5 + } + ] + }, + { + "name":"Mesh.7542", + "primitives":[ + { + "attributes":{ + "POSITION":1809, + "NORMAL":1810 + }, + "indices":1811, + "material":3 + } + ] + }, + { + "name":"Mesh.1811", + "primitives":[ + { + "attributes":{ + "POSITION":1812, + "NORMAL":1813, + "TEXCOORD_0":1814 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.293", + "primitives":[ + { + "attributes":{ + "POSITION":1815, + "NORMAL":1816, + "TEXCOORD_0":1817 + }, + "indices":1818, + "material":0 + } + ] + }, + { + "name":"Mesh.5965", + "primitives":[ + { + "attributes":{ + "POSITION":1819, + "NORMAL":1820, + "TEXCOORD_0":1821 + }, + "indices":1822, + "material":11 + } + ] + }, + { + "name":"Mesh.8027", + "primitives":[ + { + "attributes":{ + "POSITION":1823, + "NORMAL":1824, + "TEXCOORD_0":1825 + }, + "indices":1372, + "material":0 + } + ] + }, + { + "name":"Mesh.8054", + "primitives":[ + { + "attributes":{ + "POSITION":1826, + "NORMAL":1827, + "TEXCOORD_0":1828 + }, + "indices":1829, + "material":0 + } + ] + }, + { + "name":"Mesh.5669", + "primitives":[ + { + "attributes":{ + "POSITION":1830, + "NORMAL":1831, + "TEXCOORD_0":1832 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9119", + "primitives":[ + { + "attributes":{ + "POSITION":1833, + "NORMAL":1834, + "TEXCOORD_0":1835 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.6468", + "primitives":[ + { + "attributes":{ + "POSITION":1836, + "NORMAL":1837, + "TEXCOORD_0":1838 + }, + "indices":1839, + "material":0 + } + ] + }, + { + "name":"Mesh.6894", + "primitives":[ + { + "attributes":{ + "POSITION":1840, + "NORMAL":1841 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.5674", + "primitives":[ + { + "attributes":{ + "POSITION":1842, + "NORMAL":1843, + "TEXCOORD_0":1844 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2036", + "primitives":[ + { + "attributes":{ + "POSITION":1845, + "NORMAL":1846, + "TEXCOORD_0":1847 + }, + "indices":1013, + "material":0 + } + ] + }, + { + "name":"Mesh.1718", + "primitives":[ + { + "attributes":{ + "POSITION":1848, + "NORMAL":1849, + "TEXCOORD_0":1850 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.6508", + "primitives":[ + { + "attributes":{ + "POSITION":1851, + "NORMAL":1852, + "TEXCOORD_0":1853 + }, + "indices":1854, + "material":0 + } + ] + }, + { + "name":"Mesh.5053", + "primitives":[ + { + "attributes":{ + "POSITION":1855, + "NORMAL":1856, + "TEXCOORD_0":1857 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8128", + "primitives":[ + { + "attributes":{ + "POSITION":1858, + "NORMAL":1859 + }, + "indices":1860, + "material":3 + } + ] + }, + { + "name":"Mesh.7983", + "primitives":[ + { + "attributes":{ + "POSITION":1861, + "NORMAL":1862, + "TEXCOORD_0":1863 + }, + "indices":1864, + "material":0 + } + ] + }, + { + "name":"Mesh.806", + "primitives":[ + { + "attributes":{ + "POSITION":1865, + "NORMAL":1866, + "TEXCOORD_0":1867 + }, + "indices":1868, + "material":0 + } + ] + }, + { + "name":"Mesh.1965", + "primitives":[ + { + "attributes":{ + "POSITION":1869, + "NORMAL":1870 + }, + "indices":1871, + "material":22 + } + ] + }, + { + "name":"Mesh.9027", + "primitives":[ + { + "attributes":{ + "POSITION":1872, + "NORMAL":1873, + "TEXCOORD_0":1874 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.2317", + "primitives":[ + { + "attributes":{ + "POSITION":1875, + "NORMAL":1876, + "TEXCOORD_0":1877 + }, + "indices":1878, + "material":0 + } + ] + }, + { + "name":"Mesh.616", + "primitives":[ + { + "attributes":{ + "POSITION":1879, + "NORMAL":1880, + "TEXCOORD_0":1881 + }, + "indices":1882, + "material":3 + } + ] + }, + { + "name":"Mesh.9189", + "primitives":[ + { + "attributes":{ + "POSITION":1883, + "NORMAL":1884, + "TEXCOORD_0":1885 + }, + "indices":1886, + "material":7 + } + ] + }, + { + "name":"Mesh.6437", + "primitives":[ + { + "attributes":{ + "POSITION":1887, + "NORMAL":1888, + "TEXCOORD_0":1889 + }, + "indices":1890, + "material":0 + } + ] + }, + { + "name":"Mesh.5127", + "primitives":[ + { + "attributes":{ + "POSITION":1891, + "NORMAL":1892, + "TEXCOORD_0":1893 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2005", + "primitives":[ + { + "attributes":{ + "POSITION":1894, + "NORMAL":1895, + "TEXCOORD_0":1896 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.2460", + "primitives":[ + { + "attributes":{ + "POSITION":1897, + "NORMAL":1898, + "TEXCOORD_0":1899 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.2206", + "primitives":[ + { + "attributes":{ + "POSITION":1900, + "NORMAL":1901, + "TEXCOORD_0":1902 + }, + "indices":1903, + "material":0 + } + ] + }, + { + "name":"Mesh.7298", + "primitives":[ + { + "attributes":{ + "POSITION":1904, + "NORMAL":1905, + "TEXCOORD_0":1906 + }, + "indices":1907, + "material":7 + } + ] + }, + { + "name":"Mesh.8698", + "primitives":[ + { + "attributes":{ + "POSITION":1908, + "NORMAL":1909 + }, + "indices":1617, + "material":3 + } + ] + }, + { + "name":"Mesh.5352", + "primitives":[ + { + "attributes":{ + "POSITION":1910, + "NORMAL":1911, + "TEXCOORD_0":1912 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8424", + "primitives":[ + { + "attributes":{ + "POSITION":1913, + "NORMAL":1914 + }, + "indices":1915, + "material":3 + } + ] + }, + { + "name":"Mesh.536", + "primitives":[ + { + "attributes":{ + "POSITION":1916, + "NORMAL":1917, + "TEXCOORD_0":1918 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.7514", + "primitives":[ + { + "attributes":{ + "POSITION":1919, + "NORMAL":1920 + }, + "indices":1921, + "material":3 + } + ] + }, + { + "name":"Mesh.9106", + "primitives":[ + { + "attributes":{ + "POSITION":1922, + "NORMAL":1923, + "TEXCOORD_0":1924 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.5096", + "primitives":[ + { + "attributes":{ + "POSITION":1925, + "NORMAL":1926, + "TEXCOORD_0":1927 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1151", + "primitives":[ + { + "attributes":{ + "POSITION":1928, + "NORMAL":1929, + "TEXCOORD_0":1930 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.8929", + "primitives":[ + { + "attributes":{ + "POSITION":1931, + "NORMAL":1932, + "TEXCOORD_0":1933 + }, + "indices":1934, + "material":7 + } + ] + }, + { + "name":"Mesh.2645", + "primitives":[ + { + "attributes":{ + "POSITION":1935, + "NORMAL":1936, + "TEXCOORD_0":1937 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.8026", + "primitives":[ + { + "attributes":{ + "POSITION":1938, + "NORMAL":1939, + "TEXCOORD_0":1940 + }, + "indices":804, + "material":0 + } + ] + }, + { + "name":"Mesh.228", + "primitives":[ + { + "attributes":{ + "POSITION":1941, + "NORMAL":1942, + "TEXCOORD_0":1943 + }, + "indices":940, + "material":3 + } + ] + }, + { + "name":"Mesh.6880", + "primitives":[ + { + "attributes":{ + "POSITION":1944, + "NORMAL":1945 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.6767", + "primitives":[ + { + "attributes":{ + "POSITION":1947, + "NORMAL":1948 + }, + "indices":1949, + "material":0 + } + ] + }, + { + "name":"Mesh.218", + "primitives":[ + { + "attributes":{ + "POSITION":1950, + "NORMAL":1951, + "TEXCOORD_0":1952 + }, + "indices":1953, + "material":3 + } + ] + }, + { + "name":"Mesh.5681", + "primitives":[ + { + "attributes":{ + "POSITION":1954, + "NORMAL":1955, + "TEXCOORD_0":1956 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2503", + "primitives":[ + { + "attributes":{ + "POSITION":1957, + "NORMAL":1958, + "TEXCOORD_0":1959 + }, + "indices":1315, + "material":0 + } + ] + }, + { + "name":"Mesh.7023", + "primitives":[ + { + "attributes":{ + "POSITION":1960, + "NORMAL":1961 + }, + "indices":1962, + "material":1 + } + ] + }, + { + "name":"Mesh.9053", + "primitives":[ + { + "attributes":{ + "POSITION":1963, + "NORMAL":1964, + "TEXCOORD_0":1965 + }, + "indices":1966, + "material":7 + } + ] + }, + { + "name":"Mesh.194", + "primitives":[ + { + "attributes":{ + "POSITION":1967, + "NORMAL":1968, + "TEXCOORD_0":1969 + }, + "indices":1970, + "material":0 + } + ] + }, + { + "name":"Mesh.818", + "primitives":[ + { + "attributes":{ + "POSITION":1971, + "NORMAL":1972, + "TEXCOORD_0":1973 + }, + "indices":1974, + "material":0 + } + ] + }, + { + "name":"Mesh.8527", + "primitives":[ + { + "attributes":{ + "POSITION":1975, + "NORMAL":1976 + }, + "indices":1977, + "material":3 + } + ] + }, + { + "name":"Mesh.1158", + "primitives":[ + { + "attributes":{ + "POSITION":1978, + "NORMAL":1979, + "TEXCOORD_0":1980 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.628", + "primitives":[ + { + "attributes":{ + "POSITION":1981, + "NORMAL":1982, + "TEXCOORD_0":1983 + }, + "indices":1984, + "material":0 + } + ] + }, + { + "name":"Mesh.6594", + "primitives":[ + { + "attributes":{ + "POSITION":1985, + "NORMAL":1986 + }, + "indices":1987, + "material":0 + } + ] + }, + { + "name":"Mesh.6307", + "primitives":[ + { + "attributes":{ + "POSITION":1988, + "NORMAL":1989 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.1053", + "primitives":[ + { + "attributes":{ + "POSITION":1990, + "NORMAL":1991, + "TEXCOORD_0":1992 + }, + "indices":296, + "material":4 + } + ] + }, + { + "name":"Mesh.2218", + "primitives":[ + { + "attributes":{ + "POSITION":1993, + "NORMAL":1994, + "TEXCOORD_0":1995 + }, + "indices":1996, + "material":0 + } + ] + }, + { + "name":"Mesh.6674", + "primitives":[ + { + "attributes":{ + "POSITION":1997, + "NORMAL":1998, + "TEXCOORD_0":1999 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.5364", + "primitives":[ + { + "attributes":{ + "POSITION":2000, + "NORMAL":2001, + "TEXCOORD_0":2002 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.548", + "primitives":[ + { + "attributes":{ + "POSITION":2003, + "NORMAL":2004, + "TEXCOORD_0":2005 + }, + "indices":2006, + "material":0 + } + ] + }, + { + "name":"Mesh.1251", + "primitives":[ + { + "attributes":{ + "POSITION":2007, + "NORMAL":2008, + "TEXCOORD_0":2009 + }, + "indices":359, + "material":15 + } + ] + }, + { + "name":"Mesh.8602", + "primitives":[ + { + "attributes":{ + "POSITION":2010, + "NORMAL":2011 + }, + "indices":2012, + "material":3 + } + ] + }, + { + "name":"Mesh.6850", + "primitives":[ + { + "attributes":{ + "POSITION":2013, + "NORMAL":2014, + "TEXCOORD_0":2015 + }, + "indices":2016, + "material":3 + } + ] + }, + { + "name":"Mesh.5108", + "primitives":[ + { + "attributes":{ + "POSITION":2017, + "NORMAL":2018, + "TEXCOORD_0":2019 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5949", + "primitives":[ + { + "attributes":{ + "POSITION":2020, + "NORMAL":2021, + "TEXCOORD_0":2022 + }, + "indices":989, + "material":5 + } + ] + }, + { + "name":"Mesh.8979", + "primitives":[ + { + "attributes":{ + "POSITION":2023, + "NORMAL":2024, + "TEXCOORD_0":2025 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.6192", + "primitives":[ + { + "attributes":{ + "POSITION":2026, + "NORMAL":2027, + "TEXCOORD_0":2028 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.2586", + "primitives":[ + { + "attributes":{ + "POSITION":2029, + "NORMAL":2030, + "TEXCOORD_0":2031 + }, + "indices":2032, + "material":0 + } + ] + }, + { + "name":"Mesh.8875", + "primitives":[ + { + "attributes":{ + "POSITION":2033, + "NORMAL":2034 + }, + "indices":547, + "material":3 + } + ] + }, + { + "name":"Mesh.8220", + "primitives":[ + { + "attributes":{ + "POSITION":2035, + "NORMAL":2036 + }, + "indices":864, + "material":3 + } + ] + }, + { + "name":"Mesh.8537", + "primitives":[ + { + "attributes":{ + "POSITION":2037, + "NORMAL":2038 + }, + "indices":2039, + "material":3 + } + ] + }, + { + "name":"Mesh.459", + "primitives":[ + { + "attributes":{ + "POSITION":2040, + "NORMAL":2041 + }, + "indices":2042, + "material":3 + } + ] + }, + { + "name":"Mesh.319", + "primitives":[ + { + "attributes":{ + "POSITION":2043, + "NORMAL":2044, + "TEXCOORD_0":2045 + }, + "indices":121, + "material":0 + } + ] + }, + { + "name":"Mesh.5182", + "primitives":[ + { + "attributes":{ + "POSITION":2046, + "NORMAL":2047, + "TEXCOORD_0":2048 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1198", + "primitives":[ + { + "attributes":{ + "POSITION":2049, + "NORMAL":2050 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.6205", + "primitives":[ + { + "attributes":{ + "POSITION":2051, + "NORMAL":2052, + "TEXCOORD_0":2053 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.1909", + "primitives":[ + { + "attributes":{ + "POSITION":2054, + "NORMAL":2055 + }, + "indices":1871, + "material":22 + } + ] + }, + { + "name":"Mesh.7035", + "primitives":[ + { + "attributes":{ + "POSITION":2056, + "NORMAL":2057 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.560", + "primitives":[ + { + "attributes":{ + "POSITION":2058, + "NORMAL":2059, + "TEXCOORD_0":2060 + }, + "indices":2061, + "material":0 + } + ] + }, + { + "name":"Mesh.6717", + "primitives":[ + { + "attributes":{ + "POSITION":2062, + "NORMAL":2063, + "TEXCOORD_0":2064 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.7211", + "primitives":[ + { + "attributes":{ + "POSITION":2065, + "NORMAL":2066, + "TEXCOORD_0":2067 + }, + "indices":2068, + "material":7 + } + ] + }, + { + "name":"Mesh.2976", + "primitives":[ + { + "attributes":{ + "POSITION":2069, + "NORMAL":2070, + "TEXCOORD_0":2071 + }, + "indices":2072, + "material":7 + } + ] + }, + { + "name":"Mesh.9202", + "primitives":[ + { + "attributes":{ + "POSITION":2073, + "NORMAL":2074, + "TEXCOORD_0":2075 + }, + "indices":2076, + "material":7 + } + ] + }, + { + "name":"Mesh.8834", + "primitives":[ + { + "attributes":{ + "POSITION":2077, + "NORMAL":2078 + }, + "indices":2079, + "material":3 + } + ] + }, + { + "name":"Mesh.7754", + "primitives":[ + { + "attributes":{ + "POSITION":2080, + "NORMAL":2081 + }, + "indices":2082, + "material":3 + } + ] + }, + { + "name":"Mesh.2366", + "primitives":[ + { + "attributes":{ + "POSITION":2083, + "NORMAL":2084, + "TEXCOORD_0":2085 + }, + "indices":2086, + "material":0 + } + ] + }, + { + "name":"Mesh.8528", + "primitives":[ + { + "attributes":{ + "POSITION":2087, + "NORMAL":2088 + }, + "indices":2089, + "material":3 + } + ] + }, + { + "name":"Mesh.8464", + "primitives":[ + { + "attributes":{ + "POSITION":2090, + "NORMAL":2091 + }, + "indices":2092, + "material":3 + } + ] + }, + { + "name":"Mesh.7458", + "primitives":[ + { + "attributes":{ + "POSITION":2093, + "NORMAL":2094 + }, + "indices":2095, + "material":3 + } + ] + }, + { + "name":"Mesh.2875", + "primitives":[ + { + "attributes":{ + "POSITION":2096, + "NORMAL":2097 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.7356", + "primitives":[ + { + "attributes":{ + "POSITION":2099, + "NORMAL":2100, + "TEXCOORD_0":2101 + }, + "indices":1660, + "material":7 + } + ] + }, + { + "name":"Mesh.2558", + "primitives":[ + { + "attributes":{ + "POSITION":2102, + "NORMAL":2103, + "TEXCOORD_0":2104 + }, + "indices":1247, + "material":0 + } + ] + }, + { + "name":"Mesh.6424", + "primitives":[ + { + "attributes":{ + "POSITION":2105, + "NORMAL":2106 + }, + "indices":2107, + "material":0 + } + ] + }, + { + "name":"Mesh.7109", + "primitives":[ + { + "attributes":{ + "POSITION":2108, + "NORMAL":2109, + "TEXCOORD_0":2110 + }, + "indices":2111, + "material":7 + } + ] + }, + { + "name":"Mesh.6137", + "primitives":[ + { + "attributes":{ + "POSITION":2112, + "NORMAL":2113, + "TEXCOORD_0":2114 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.6125", + "primitives":[ + { + "attributes":{ + "POSITION":2115, + "NORMAL":2116, + "TEXCOORD_0":2117 + }, + "indices":2118, + "material":12 + } + ] + }, + { + "name":"Mesh.8448", + "primitives":[ + { + "attributes":{ + "POSITION":2119, + "NORMAL":2120 + }, + "indices":2121, + "material":3 + } + ] + }, + { + "name":"Mesh.343", + "primitives":[ + { + "attributes":{ + "POSITION":2122, + "NORMAL":2123, + "TEXCOORD_0":2124 + }, + "indices":1379, + "material":0 + } + ] + }, + { + "name":"Mesh.6791", + "primitives":[ + { + "attributes":{ + "POSITION":2125, + "NORMAL":2126, + "TEXCOORD_0":2127 + }, + "indices":2128, + "material":3 + } + ] + }, + { + "name":"Mesh.6177", + "primitives":[ + { + "attributes":{ + "POSITION":2129, + "NORMAL":2130, + "TEXCOORD_0":2131 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.6649", + "primitives":[ + { + "attributes":{ + "POSITION":2132, + "NORMAL":2133 + }, + "indices":102, + "material":0 + } + ] + }, + { + "name":"Mesh.5194", + "primitives":[ + { + "attributes":{ + "POSITION":2134, + "NORMAL":2135, + "TEXCOORD_0":2136 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7325", + "primitives":[ + { + "attributes":{ + "POSITION":2137, + "NORMAL":2138, + "TEXCOORD_0":2139 + }, + "indices":2140, + "material":7 + } + ] + }, + { + "name":"Mesh.7797", + "primitives":[ + { + "attributes":{ + "POSITION":2141, + "NORMAL":2142 + }, + "indices":2143, + "material":3 + } + ] + }, + { + "name":"Mesh.947", + "primitives":[ + { + "attributes":{ + "POSITION":2144, + "NORMAL":2145, + "TEXCOORD_0":2146 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.5234", + "primitives":[ + { + "attributes":{ + "POSITION":2147, + "NORMAL":2148, + "TEXCOORD_0":2149 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.163", + "primitives":[ + { + "attributes":{ + "POSITION":2150, + "NORMAL":2151, + "TEXCOORD_0":2152 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2703", + "primitives":[ + { + "attributes":{ + "POSITION":2153, + "NORMAL":2154, + "TEXCOORD_0":2155 + }, + "indices":2156, + "material":0 + } + ] + }, + { + "name":"Mesh.660", + "primitives":[ + { + "attributes":{ + "POSITION":2157, + "NORMAL":2158, + "TEXCOORD_0":2159 + }, + "indices":2160, + "material":3 + } + ] + }, + { + "name":"Mesh.1132", + "primitives":[ + { + "attributes":{ + "POSITION":2161, + "NORMAL":2162, + "TEXCOORD_0":2163 + }, + "indices":273, + "material":0 + } + ] + }, + { + "name":"Mesh.7541", + "primitives":[ + { + "attributes":{ + "POSITION":2164, + "NORMAL":2165 + }, + "indices":2166, + "material":3 + } + ] + }, + { + "name":"Mesh.808", + "primitives":[ + { + "attributes":{ + "POSITION":2167, + "NORMAL":2168, + "TEXCOORD_0":2169 + }, + "indices":136, + "material":0 + } + ] + }, + { + "name":"Mesh.294", + "primitives":[ + { + "attributes":{ + "POSITION":2170, + "NORMAL":2171, + "TEXCOORD_0":2172 + }, + "indices":1128, + "material":0 + } + ] + }, + { + "name":"Mesh.415", + "primitives":[ + { + "attributes":{ + "POSITION":2173, + "NORMAL":2174 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.2870", + "primitives":[ + { + "attributes":{ + "POSITION":2175, + "NORMAL":2176 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.8053", + "primitives":[ + { + "attributes":{ + "POSITION":2177, + "NORMAL":2178, + "TEXCOORD_0":2179 + }, + "indices":1864, + "material":0 + } + ] + }, + { + "name":"Mesh.5308", + "primitives":[ + { + "attributes":{ + "POSITION":2180, + "NORMAL":2181, + "TEXCOORD_0":2182 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6893", + "primitives":[ + { + "attributes":{ + "POSITION":2183, + "NORMAL":2184, + "TEXCOORD_0":2185 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.2035", + "primitives":[ + { + "attributes":{ + "POSITION":2186, + "NORMAL":2187, + "TEXCOORD_0":2188 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2813", + "primitives":[ + { + "attributes":{ + "POSITION":2189, + "NORMAL":2190, + "TEXCOORD_0":2191 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.6507", + "primitives":[ + { + "attributes":{ + "POSITION":2193, + "NORMAL":2194, + "TEXCOORD_0":2195 + }, + "indices":2196, + "material":0 + } + ] + }, + { + "name":"Mesh.5052", + "primitives":[ + { + "attributes":{ + "POSITION":2197, + "NORMAL":2198, + "TEXCOORD_0":2199 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7982", + "primitives":[ + { + "attributes":{ + "POSITION":2200, + "NORMAL":2201, + "TEXCOORD_0":2202 + }, + "indices":2203, + "material":0 + } + ] + }, + { + "name":"Mesh.2276", + "primitives":[ + { + "attributes":{ + "POSITION":2204, + "NORMAL":2205, + "TEXCOORD_0":2206 + }, + "indices":887, + "material":0 + } + ] + }, + { + "name":"Mesh.8924", + "primitives":[ + { + "attributes":{ + "POSITION":2207, + "NORMAL":2208, + "TEXCOORD_0":2209 + }, + "indices":2210, + "material":7 + } + ] + }, + { + "name":"Mesh.1259", + "primitives":[ + { + "attributes":{ + "POSITION":2211, + "NORMAL":2212, + "TEXCOORD_0":2213 + }, + "indices":2214, + "material":15 + } + ] + }, + { + "name":"Mesh.1964", + "primitives":[ + { + "attributes":{ + "POSITION":2215, + "NORMAL":2216 + }, + "indices":2217, + "material":22 + } + ] + }, + { + "name":"Mesh.2316", + "primitives":[ + { + "attributes":{ + "POSITION":2218, + "NORMAL":2219, + "TEXCOORD_0":2220 + }, + "indices":2221, + "material":0 + } + ] + }, + { + "name":"Mesh.2887", + "primitives":[ + { + "attributes":{ + "POSITION":2222, + "NORMAL":2223 + }, + "indices":2224, + "material":1 + } + ] + }, + { + "name":"Mesh.7766", + "primitives":[ + { + "attributes":{ + "POSITION":2225, + "NORMAL":2226 + }, + "indices":2227, + "material":3 + } + ] + }, + { + "name":"Mesh.5977", + "primitives":[ + { + "attributes":{ + "POSITION":2228, + "NORMAL":2229, + "TEXCOORD_0":2230 + }, + "indices":321, + "material":12 + } + ] + }, + { + "name":"Mesh.2459", + "primitives":[ + { + "attributes":{ + "POSITION":2231, + "NORMAL":2232, + "TEXCOORD_0":2233 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.2205", + "primitives":[ + { + "attributes":{ + "POSITION":2234, + "NORMAL":2235, + "TEXCOORD_0":2236 + }, + "indices":2237, + "material":0 + } + ] + }, + { + "name":"Mesh.2869", + "primitives":[ + { + "attributes":{ + "POSITION":2238, + "NORMAL":2239 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.8423", + "primitives":[ + { + "attributes":{ + "POSITION":2240, + "NORMAL":2241 + }, + "indices":2242, + "material":3 + } + ] + }, + { + "name":"Mesh.535", + "primitives":[ + { + "attributes":{ + "POSITION":2243, + "NORMAL":2244, + "TEXCOORD_0":2245 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.1933", + "primitives":[ + { + "attributes":{ + "POSITION":2246, + "NORMAL":2247 + }, + "indices":2248, + "material":0 + } + ] + }, + { + "name":"Mesh.8298", + "primitives":[ + { + "attributes":{ + "POSITION":2249, + "NORMAL":2250 + }, + "indices":2251, + "material":3 + } + ] + }, + { + "name":"Mesh.8781", + "primitives":[ + { + "attributes":{ + "POSITION":2252, + "NORMAL":2253 + }, + "indices":2254, + "material":3 + } + ] + }, + { + "name":"Mesh.584", + "primitives":[ + { + "attributes":{ + "POSITION":2255, + "NORMAL":2256, + "TEXCOORD_0":2257 + }, + "indices":2258, + "material":0 + } + ] + }, + { + "name":"Mesh.8430", + "primitives":[ + { + "attributes":{ + "POSITION":2259, + "NORMAL":2260 + }, + "indices":2261, + "material":3 + } + ] + }, + { + "name":"Mesh.5095", + "primitives":[ + { + "attributes":{ + "POSITION":2262, + "NORMAL":2263, + "TEXCOORD_0":2264 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8025", + "primitives":[ + { + "attributes":{ + "POSITION":2265, + "NORMAL":2266, + "TEXCOORD_0":2267 + }, + "indices":2268, + "material":0 + } + ] + }, + { + "name":"Mesh.6879", + "primitives":[ + { + "attributes":{ + "POSITION":2269, + "NORMAL":2270 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.4984", + "primitives":[ + { + "attributes":{ + "POSITION":2271, + "NORMAL":2272, + "TEXCOORD_0":2273 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5320", + "primitives":[ + { + "attributes":{ + "POSITION":2274, + "NORMAL":2275, + "TEXCOORD_0":2276 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2390", + "primitives":[ + { + "attributes":{ + "POSITION":2277, + "NORMAL":2278 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6519", + "primitives":[ + { + "attributes":{ + "POSITION":2279, + "NORMAL":2280, + "TEXCOORD_0":2281 + }, + "indices":2282, + "material":0 + } + ] + }, + { + "name":"Mesh.8068", + "primitives":[ + { + "attributes":{ + "POSITION":2283, + "NORMAL":2284, + "TEXCOORD_0":2285 + }, + "indices":2286, + "material":3 + } + ] + }, + { + "name":"Mesh.817", + "primitives":[ + { + "attributes":{ + "POSITION":2287, + "NORMAL":2288, + "TEXCOORD_0":2289 + }, + "indices":2016, + "material":3 + } + ] + }, + { + "name":"Mesh.8592", + "primitives":[ + { + "attributes":{ + "POSITION":2290, + "NORMAL":2291 + }, + "indices":2292, + "material":3 + } + ] + }, + { + "name":"Mesh.5739", + "primitives":[ + { + "attributes":{ + "POSITION":2293, + "NORMAL":2294 + }, + "indices":2295, + "material":0 + } + ] + }, + { + "name":"Mesh.7380", + "primitives":[ + { + "attributes":{ + "POSITION":2296, + "NORMAL":2297, + "TEXCOORD_0":2298 + }, + "indices":2299, + "material":7 + } + ] + }, + { + "name":"Mesh.627", + "primitives":[ + { + "attributes":{ + "POSITION":2300, + "NORMAL":2301, + "TEXCOORD_0":2302 + }, + "indices":2303, + "material":3 + } + ] + }, + { + "name":"Mesh.2616", + "primitives":[ + { + "attributes":{ + "POSITION":2304, + "NORMAL":2305, + "TEXCOORD_0":2306 + }, + "indices":2307, + "material":0 + } + ] + }, + { + "name":"Mesh.9139", + "primitives":[ + { + "attributes":{ + "POSITION":2308, + "NORMAL":2309, + "TEXCOORD_0":2310 + }, + "indices":2311, + "material":7 + } + ] + }, + { + "name":"Mesh.6161", + "primitives":[ + { + "attributes":{ + "POSITION":2312, + "NORMAL":2313, + "TEXCOORD_0":2314 + }, + "indices":266, + "material":12 + } + ] + }, + { + "name":"Mesh.1052", + "primitives":[ + { + "attributes":{ + "POSITION":2315, + "NORMAL":2316, + "TEXCOORD_0":2317 + }, + "indices":26, + "material":4 + } + ] + }, + { + "name":"Mesh.2217", + "primitives":[ + { + "attributes":{ + "POSITION":2318, + "NORMAL":2319, + "TEXCOORD_0":2320 + }, + "indices":2321, + "material":0 + } + ] + }, + { + "name":"Mesh.2373", + "primitives":[ + { + "attributes":{ + "POSITION":2322, + "NORMAL":2323, + "TEXCOORD_0":2324 + }, + "indices":1179, + "material":0 + } + ] + }, + { + "name":"Mesh.6673", + "primitives":[ + { + "attributes":{ + "POSITION":2325, + "NORMAL":2326 + }, + "indices":2327, + "material":0 + } + ] + }, + { + "name":"Mesh.5363", + "primitives":[ + { + "attributes":{ + "POSITION":2328, + "NORMAL":2329, + "TEXCOORD_0":2330 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6953", + "primitives":[ + { + "attributes":{ + "POSITION":2331, + "NORMAL":2332, + "TEXCOORD_0":2333 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.547", + "primitives":[ + { + "attributes":{ + "POSITION":2334, + "NORMAL":2335, + "TEXCOORD_0":2336 + }, + "indices":2337, + "material":0 + } + ] + }, + { + "name":"Mesh.430", + "primitives":[ + { + "attributes":{ + "POSITION":2338, + "NORMAL":2339 + }, + "indices":785, + "material":0 + } + ] + }, + { + "name":"Mesh.644", + "primitives":[ + { + "attributes":{ + "POSITION":2340, + "NORMAL":2341, + "TEXCOORD_0":2342 + }, + "indices":2343, + "material":3 + } + ] + }, + { + "name":"Mesh.5107", + "primitives":[ + { + "attributes":{ + "POSITION":2344, + "NORMAL":2345, + "TEXCOORD_0":2346 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5948", + "primitives":[ + { + "attributes":{ + "POSITION":2347, + "NORMAL":2348, + "TEXCOORD_0":2349 + }, + "indices":989, + "material":5 + } + ] + }, + { + "name":"Mesh.2585", + "primitives":[ + { + "attributes":{ + "POSITION":2350, + "NORMAL":2351, + "TEXCOORD_0":2352 + }, + "indices":1060, + "material":0 + } + ] + }, + { + "name":"Mesh.8536", + "primitives":[ + { + "attributes":{ + "POSITION":2353, + "NORMAL":2354 + }, + "indices":2355, + "material":3 + } + ] + }, + { + "name":"Mesh.320", + "primitives":[ + { + "attributes":{ + "POSITION":2356, + "NORMAL":2357, + "TEXCOORD_0":2358 + }, + "indices":144, + "material":0 + } + ] + }, + { + "name":"Mesh.825", + "primitives":[ + { + "attributes":{ + "POSITION":2359, + "NORMAL":2360, + "TEXCOORD_0":2361 + }, + "indices":2362, + "material":3 + } + ] + }, + { + "name":"Mesh.8622", + "primitives":[ + { + "attributes":{ + "POSITION":2363, + "NORMAL":2364 + }, + "indices":2365, + "material":3 + } + ] + }, + { + "name":"Mesh.9078", + "primitives":[ + { + "attributes":{ + "POSITION":2366, + "NORMAL":2367, + "TEXCOORD_0":2368 + }, + "indices":2369, + "material":7 + } + ] + }, + { + "name":"Mesh.8280", + "primitives":[ + { + "attributes":{ + "POSITION":2370, + "NORMAL":2371 + }, + "indices":2372, + "material":3 + } + ] + }, + { + "name":"Mesh.8505", + "primitives":[ + { + "attributes":{ + "POSITION":2373, + "NORMAL":2374 + }, + "indices":2375, + "material":3 + } + ] + }, + { + "name":"Mesh.7308", + "primitives":[ + { + "attributes":{ + "POSITION":2376, + "NORMAL":2377, + "TEXCOORD_0":2378 + }, + "indices":1056, + "material":7 + } + ] + }, + { + "name":"Mesh.8103", + "primitives":[ + { + "attributes":{ + "POSITION":2379, + "NORMAL":2380 + }, + "indices":1033, + "material":3 + } + ] + }, + { + "name":"Mesh.6993", + "primitives":[ + { + "attributes":{ + "POSITION":2381, + "NORMAL":2382 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.5181", + "primitives":[ + { + "attributes":{ + "POSITION":2383, + "NORMAL":2384, + "TEXCOORD_0":2385 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7236", + "primitives":[ + { + "attributes":{ + "POSITION":2386, + "NORMAL":2387, + "TEXCOORD_0":2388 + }, + "indices":2389, + "material":7 + } + ] + }, + { + "name":"Mesh.2982", + "primitives":[ + { + "attributes":{ + "POSITION":2390, + "NORMAL":2391, + "TEXCOORD_0":2392 + }, + "indices":2393, + "material":7 + } + ] + }, + { + "name":"Mesh.1908", + "primitives":[ + { + "attributes":{ + "POSITION":2394, + "NORMAL":2395 + }, + "indices":2217, + "material":22 + } + ] + }, + { + "name":"Mesh.8635", + "primitives":[ + { + "attributes":{ + "POSITION":2396, + "NORMAL":2397 + }, + "indices":1046, + "material":3 + } + ] + }, + { + "name":"Mesh.6716", + "primitives":[ + { + "attributes":{ + "POSITION":2398, + "NORMAL":2399 + }, + "indices":2400, + "material":0 + } + ] + }, + { + "name":"Mesh.7210", + "primitives":[ + { + "attributes":{ + "POSITION":2401, + "NORMAL":2402, + "TEXCOORD_0":2403 + }, + "indices":2404, + "material":7 + } + ] + }, + { + "name":"Mesh.8478", + "primitives":[ + { + "attributes":{ + "POSITION":2405, + "NORMAL":2406 + }, + "indices":2407, + "material":3 + } + ] + }, + { + "name":"Mesh.6127", + "primitives":[ + { + "attributes":{ + "POSITION":2408, + "NORMAL":2409, + "TEXCOORD_0":2410 + }, + "indices":927, + "material":12 + } + ] + }, + { + "name":"Mesh.8842", + "primitives":[ + { + "attributes":{ + "POSITION":2411, + "NORMAL":2412 + }, + "indices":2413, + "material":3 + } + ] + }, + { + "name":"Mesh.2365", + "primitives":[ + { + "attributes":{ + "POSITION":2414, + "NORMAL":2415, + "TEXCOORD_0":2416 + }, + "indices":2417, + "material":0 + } + ] + }, + { + "name":"Mesh.7457", + "primitives":[ + { + "attributes":{ + "POSITION":2418, + "NORMAL":2419 + }, + "indices":2420, + "material":3 + } + ] + }, + { + "name":"Mesh.7355", + "primitives":[ + { + "attributes":{ + "POSITION":2421, + "NORMAL":2422, + "TEXCOORD_0":2423 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.2557", + "primitives":[ + { + "attributes":{ + "POSITION":2424, + "NORMAL":2425, + "TEXCOORD_0":2426 + }, + "indices":2427, + "material":0 + } + ] + }, + { + "name":"Mesh.6974", + "primitives":[ + { + "attributes":{ + "POSITION":2428, + "NORMAL":2429, + "TEXCOORD_0":2430 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.8375", + "primitives":[ + { + "attributes":{ + "POSITION":2431, + "NORMAL":2432 + }, + "indices":2433, + "material":3 + } + ] + }, + { + "name":"Mesh.8564", + "primitives":[ + { + "attributes":{ + "POSITION":2434, + "NORMAL":2435 + }, + "indices":2436, + "material":3 + } + ] + }, + { + "name":"Mesh.6423", + "primitives":[ + { + "attributes":{ + "POSITION":2437, + "NORMAL":2438 + }, + "indices":2439, + "material":0 + } + ] + }, + { + "name":"Mesh.7865", + "primitives":[ + { + "attributes":{ + "POSITION":2440, + "NORMAL":2441 + }, + "indices":2442, + "material":3 + } + ] + }, + { + "name":"Mesh.6031", + "primitives":[ + { + "attributes":{ + "POSITION":2443, + "NORMAL":2444, + "TEXCOORD_0":2445 + }, + "indices":479, + "material":12 + } + ] + }, + { + "name":"Mesh.7913", + "primitives":[ + { + "attributes":{ + "POSITION":2446, + "NORMAL":2447 + }, + "indices":2448, + "material":3 + } + ] + }, + { + "name":"Mesh.6772", + "primitives":[ + { + "attributes":{ + "POSITION":2449, + "NORMAL":2450, + "TEXCOORD_0":2451 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.287", + "primitives":[ + { + "attributes":{ + "POSITION":2452, + "NORMAL":2453, + "TEXCOORD_0":2454 + }, + "indices":2455, + "material":0 + } + ] + }, + { + "name":"Mesh.6136", + "primitives":[ + { + "attributes":{ + "POSITION":2456, + "NORMAL":2457, + "TEXCOORD_0":2458 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.6379", + "primitives":[ + { + "attributes":{ + "POSITION":2459, + "NORMAL":2460 + }, + "indices":2461, + "material":0 + } + ] + }, + { + "name":"Mesh.4807", + "primitives":[ + { + "attributes":{ + "POSITION":2462, + "NORMAL":2463, + "TEXCOORD_0":2464 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7067", + "primitives":[ + { + "attributes":{ + "POSITION":2465, + "NORMAL":2466 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.1704", + "primitives":[ + { + "attributes":{ + "POSITION":2467, + "NORMAL":2468, + "TEXCOORD_0":2469 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.6790", + "primitives":[ + { + "attributes":{ + "POSITION":2470, + "NORMAL":2471, + "TEXCOORD_0":2472 + }, + "indices":2473, + "material":0 + } + ] + }, + { + "name":"Mesh.6176", + "primitives":[ + { + "attributes":{ + "POSITION":2474, + "NORMAL":2475, + "TEXCOORD_0":2476 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.6648", + "primitives":[ + { + "attributes":{ + "POSITION":2477, + "NORMAL":2478 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.761", + "primitives":[ + { + "attributes":{ + "POSITION":2479, + "NORMAL":2480, + "TEXCOORD_0":2481 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7324", + "primitives":[ + { + "attributes":{ + "POSITION":2482, + "NORMAL":2483, + "TEXCOORD_0":2484 + }, + "indices":2485, + "material":7 + } + ] + }, + { + "name":"Mesh.7796", + "primitives":[ + { + "attributes":{ + "POSITION":2486, + "NORMAL":2487 + }, + "indices":2488, + "material":3 + } + ] + }, + { + "name":"Mesh.5233", + "primitives":[ + { + "attributes":{ + "POSITION":2489, + "NORMAL":2490, + "TEXCOORD_0":2491 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2702", + "primitives":[ + { + "attributes":{ + "POSITION":2492, + "NORMAL":2493, + "TEXCOORD_0":2494 + }, + "indices":2495, + "material":0 + } + ] + }, + { + "name":"Mesh.659", + "primitives":[ + { + "attributes":{ + "POSITION":2496, + "NORMAL":2497, + "TEXCOORD_0":2498 + }, + "indices":2499, + "material":3 + } + ] + }, + { + "name":"Mesh.8967", + "primitives":[ + { + "attributes":{ + "POSITION":2500, + "NORMAL":2501, + "TEXCOORD_0":2502 + }, + "indices":465, + "material":7 + } + ] + }, + { + "name":"Mesh.8609", + "primitives":[ + { + "attributes":{ + "POSITION":2503, + "NORMAL":2504 + }, + "indices":2505, + "material":3 + } + ] + }, + { + "name":"Mesh.9015", + "primitives":[ + { + "attributes":{ + "POSITION":2506, + "NORMAL":2507, + "TEXCOORD_0":2508 + }, + "indices":465, + "material":7 + } + ] + }, + { + "name":"Mesh.8052", + "primitives":[ + { + "attributes":{ + "POSITION":2509, + "NORMAL":2510, + "TEXCOORD_0":2511 + }, + "indices":2512, + "material":0 + } + ] + }, + { + "name":"Mesh.5667", + "primitives":[ + { + "attributes":{ + "POSITION":2513, + "NORMAL":2514, + "TEXCOORD_0":2515 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2179", + "primitives":[ + { + "attributes":{ + "POSITION":2516, + "NORMAL":2517, + "TEXCOORD_0":2518 + }, + "indices":2519, + "material":0 + } + ] + }, + { + "name":"Mesh.2574", + "primitives":[ + { + "attributes":{ + "POSITION":2520, + "NORMAL":2521, + "TEXCOORD_0":2522 + }, + "indices":1247, + "material":0 + } + ] + }, + { + "name":"Mesh.1727", + "primitives":[ + { + "attributes":{ + "POSITION":2523, + "NORMAL":2524 + }, + "indices":2525, + "material":27 + } + ] + }, + { + "name":"Mesh.6892", + "primitives":[ + { + "attributes":{ + "POSITION":2526, + "NORMAL":2527 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.2034", + "primitives":[ + { + "attributes":{ + "POSITION":2528, + "NORMAL":2529, + "TEXCOORD_0":2530 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2812", + "primitives":[ + { + "attributes":{ + "POSITION":2531, + "NORMAL":2532, + "TEXCOORD_0":2533 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.6506", + "primitives":[ + { + "attributes":{ + "POSITION":2534, + "NORMAL":2535, + "TEXCOORD_0":2536 + }, + "indices":2537, + "material":0 + } + ] + }, + { + "name":"Mesh.5051", + "primitives":[ + { + "attributes":{ + "POSITION":2538, + "NORMAL":2539, + "TEXCOORD_0":2540 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7981", + "primitives":[ + { + "attributes":{ + "POSITION":2541, + "NORMAL":2542, + "TEXCOORD_0":2543 + }, + "indices":2544, + "material":0 + } + ] + }, + { + "name":"Mesh.2275", + "primitives":[ + { + "attributes":{ + "POSITION":2545, + "NORMAL":2546, + "TEXCOORD_0":2547 + }, + "indices":2548, + "material":0 + } + ] + }, + { + "name":"Mesh.7498", + "primitives":[ + { + "attributes":{ + "POSITION":2549, + "NORMAL":2550 + }, + "indices":243, + "material":3 + } + ] + }, + { + "name":"Mesh.1963", + "primitives":[ + { + "attributes":{ + "POSITION":2551, + "NORMAL":2552 + }, + "indices":2553, + "material":22 + } + ] + }, + { + "name":"Mesh.2315", + "primitives":[ + { + "attributes":{ + "POSITION":2554, + "NORMAL":2555, + "TEXCOORD_0":2556 + }, + "indices":639, + "material":0 + } + ] + }, + { + "name":"Mesh.614", + "primitives":[ + { + "attributes":{ + "POSITION":2557, + "NORMAL":2558, + "TEXCOORD_0":2559 + }, + "indices":2560, + "material":3 + } + ] + }, + { + "name":"Mesh.9196", + "primitives":[ + { + "attributes":{ + "POSITION":2561, + "NORMAL":2562, + "TEXCOORD_0":2563 + }, + "indices":2564, + "material":7 + } + ] + }, + { + "name":"Mesh.2003", + "primitives":[ + { + "attributes":{ + "POSITION":2565, + "NORMAL":2566, + "TEXCOORD_0":2567 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2458", + "primitives":[ + { + "attributes":{ + "POSITION":2568, + "NORMAL":2569, + "TEXCOORD_0":2570 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.2204", + "primitives":[ + { + "attributes":{ + "POSITION":2571, + "NORMAL":2572, + "TEXCOORD_0":2573 + }, + "indices":1040, + "material":0 + } + ] + }, + { + "name":"Mesh.7296", + "primitives":[ + { + "attributes":{ + "POSITION":2574, + "NORMAL":2575, + "TEXCOORD_0":2576 + }, + "indices":2577, + "material":7 + } + ] + }, + { + "name":"Mesh.8422", + "primitives":[ + { + "attributes":{ + "POSITION":2578, + "NORMAL":2579 + }, + "indices":1617, + "material":3 + } + ] + }, + { + "name":"Mesh.833", + "primitives":[ + { + "attributes":{ + "POSITION":2580, + "NORMAL":2581, + "TEXCOORD_0":2582 + }, + "indices":2583, + "material":0 + } + ] + }, + { + "name":"Mesh.534", + "primitives":[ + { + "attributes":{ + "POSITION":2584, + "NORMAL":2585, + "TEXCOORD_0":2586 + }, + "indices":2587, + "material":0 + } + ] + }, + { + "name":"Mesh.8771", + "primitives":[ + { + "attributes":{ + "POSITION":2588, + "NORMAL":2589 + }, + "indices":2590, + "material":3 + } + ] + }, + { + "name":"Mesh.5339", + "primitives":[ + { + "attributes":{ + "POSITION":2591, + "NORMAL":2592, + "TEXCOORD_0":2593 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7316", + "primitives":[ + { + "attributes":{ + "POSITION":2594, + "NORMAL":2595, + "TEXCOORD_0":2596 + }, + "indices":2597, + "material":7 + } + ] + }, + { + "name":"Mesh.1932", + "primitives":[ + { + "attributes":{ + "POSITION":2598, + "NORMAL":2599 + }, + "indices":2600, + "material":0 + } + ] + }, + { + "name":"Mesh.5689", + "primitives":[ + { + "attributes":{ + "POSITION":2601, + "NORMAL":2602, + "TEXCOORD_0":2603 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.583", + "primitives":[ + { + "attributes":{ + "POSITION":2604, + "NORMAL":2605, + "TEXCOORD_0":2606 + }, + "indices":1554, + "material":0 + } + ] + }, + { + "name":"Mesh.6404", + "primitives":[ + { + "attributes":{ + "POSITION":2607, + "NORMAL":2608, + "TEXCOORD_0":2609 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.5094", + "primitives":[ + { + "attributes":{ + "POSITION":2610, + "NORMAL":2611, + "TEXCOORD_0":2612 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8024", + "primitives":[ + { + "attributes":{ + "POSITION":2613, + "NORMAL":2614, + "TEXCOORD_0":2615 + }, + "indices":2616, + "material":0 + } + ] + }, + { + "name":"Mesh.6878", + "primitives":[ + { + "attributes":{ + "POSITION":2617, + "NORMAL":2618 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.4983", + "primitives":[ + { + "attributes":{ + "POSITION":2619, + "NORMAL":2620, + "TEXCOORD_0":2621 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1861", + "primitives":[ + { + "attributes":{ + "POSITION":2622, + "NORMAL":2623 + }, + "indices":2624, + "material":0 + } + ] + }, + { + "name":"Mesh.5319", + "primitives":[ + { + "attributes":{ + "POSITION":2625, + "NORMAL":2626, + "TEXCOORD_0":2627 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9042", + "primitives":[ + { + "attributes":{ + "POSITION":2628, + "NORMAL":2629, + "TEXCOORD_0":2630 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.8460", + "primitives":[ + { + "attributes":{ + "POSITION":2631, + "NORMAL":2632 + }, + "indices":2633, + "material":3 + } + ] + }, + { + "name":"Mesh.2389", + "primitives":[ + { + "attributes":{ + "POSITION":2634, + "NORMAL":2635 + }, + "indices":2224, + "material":1 + } + ] + }, + { + "name":"Mesh.6518", + "primitives":[ + { + "attributes":{ + "POSITION":2636, + "NORMAL":2637, + "TEXCOORD_0":2638 + }, + "indices":2639, + "material":0 + } + ] + }, + { + "name":"Mesh.5063", + "primitives":[ + { + "attributes":{ + "POSITION":2640, + "NORMAL":2641, + "TEXCOORD_0":2642 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.039", + "primitives":[ + { + "attributes":{ + "POSITION":2643, + "NORMAL":2644 + }, + "indices":2645, + "material":22 + } + ] + }, + { + "name":"Mesh.816", + "primitives":[ + { + "attributes":{ + "POSITION":2646, + "NORMAL":2647, + "TEXCOORD_0":2648 + }, + "indices":2649, + "material":3 + } + ] + }, + { + "name":"Mesh.7379", + "primitives":[ + { + "attributes":{ + "POSITION":2650, + "NORMAL":2651, + "TEXCOORD_0":2652 + }, + "indices":2653, + "material":7 + } + ] + }, + { + "name":"Mesh.5653", + "primitives":[ + { + "attributes":{ + "POSITION":2654, + "NORMAL":2655, + "TEXCOORD_0":2656 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5288", + "primitives":[ + { + "attributes":{ + "POSITION":2657, + "NORMAL":2658, + "TEXCOORD_0":2659 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.626", + "primitives":[ + { + "attributes":{ + "POSITION":2660, + "NORMAL":2661, + "TEXCOORD_0":2662 + }, + "indices":2663, + "material":3 + } + ] + }, + { + "name":"Mesh.9126", + "primitives":[ + { + "attributes":{ + "POSITION":2664, + "NORMAL":2665, + "TEXCOORD_0":2666 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.7657", + "primitives":[ + { + "attributes":{ + "POSITION":2667, + "NORMAL":2668 + }, + "indices":2669, + "material":3 + } + ] + }, + { + "name":"Mesh.1051", + "primitives":[ + { + "attributes":{ + "POSITION":2670, + "NORMAL":2671, + "TEXCOORD_0":2672 + }, + "indices":296, + "material":4 + } + ] + }, + { + "name":"Mesh.7705", + "primitives":[ + { + "attributes":{ + "POSITION":2673, + "NORMAL":2674 + }, + "indices":2675, + "material":3 + } + ] + }, + { + "name":"Mesh.2216", + "primitives":[ + { + "attributes":{ + "POSITION":2676, + "NORMAL":2677, + "TEXCOORD_0":2678 + }, + "indices":2679, + "material":0 + } + ] + }, + { + "name":"Mesh.6171", + "primitives":[ + { + "attributes":{ + "POSITION":2680, + "NORMAL":2681, + "TEXCOORD_0":2682 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.6943", + "primitives":[ + { + "attributes":{ + "POSITION":2683, + "NORMAL":2684, + "TEXCOORD_0":2685 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.286", + "primitives":[ + { + "attributes":{ + "POSITION":2686, + "NORMAL":2687, + "TEXCOORD_0":2688 + }, + "indices":2689, + "material":0 + } + ] + }, + { + "name":"Mesh.8107", + "primitives":[ + { + "attributes":{ + "POSITION":2690, + "NORMAL":2691 + }, + "indices":2692, + "material":3 + } + ] + }, + { + "name":"Mesh.5362", + "primitives":[ + { + "attributes":{ + "POSITION":2693, + "NORMAL":2694, + "TEXCOORD_0":2695 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6308", + "primitives":[ + { + "attributes":{ + "POSITION":2696, + "NORMAL":2697 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.546", + "primitives":[ + { + "attributes":{ + "POSITION":2698, + "NORMAL":2699, + "TEXCOORD_0":2700 + }, + "indices":2701, + "material":0 + } + ] + }, + { + "name":"Mesh.2686", + "primitives":[ + { + "attributes":{ + "POSITION":2702, + "NORMAL":2703, + "TEXCOORD_0":2704 + }, + "indices":2307, + "material":0 + } + ] + }, + { + "name":"Mesh.6848", + "primitives":[ + { + "attributes":{ + "POSITION":2705, + "NORMAL":2706, + "TEXCOORD_0":2707 + }, + "indices":2708, + "material":3 + } + ] + }, + { + "name":"Mesh.595", + "primitives":[ + { + "attributes":{ + "POSITION":2709, + "NORMAL":2710, + "TEXCOORD_0":2711 + }, + "indices":2712, + "material":3 + } + ] + }, + { + "name":"Mesh.5106", + "primitives":[ + { + "attributes":{ + "POSITION":2713, + "NORMAL":2714, + "TEXCOORD_0":2715 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5947", + "primitives":[ + { + "attributes":{ + "POSITION":2716, + "NORMAL":2717, + "TEXCOORD_0":2718 + }, + "indices":1650, + "material":20 + } + ] + }, + { + "name":"Mesh.2584", + "primitives":[ + { + "attributes":{ + "POSITION":2719, + "NORMAL":2720, + "TEXCOORD_0":2721 + }, + "indices":1400, + "material":0 + } + ] + }, + { + "name":"Mesh.8535", + "primitives":[ + { + "attributes":{ + "POSITION":2722, + "NORMAL":2723 + }, + "indices":2724, + "material":3 + } + ] + }, + { + "name":"Mesh.457", + "primitives":[ + { + "attributes":{ + "POSITION":2725, + "NORMAL":2726 + }, + "indices":92, + "material":3 + } + ] + }, + { + "name":"Mesh.6643", + "primitives":[ + { + "attributes":{ + "POSITION":2727, + "NORMAL":2728 + }, + "indices":75, + "material":0 + } + ] + }, + { + "name":"Mesh.2981", + "primitives":[ + { + "attributes":{ + "POSITION":2729, + "NORMAL":2730, + "TEXCOORD_0":2731 + }, + "indices":2732, + "material":7 + } + ] + }, + { + "name":"Mesh.1907", + "primitives":[ + { + "attributes":{ + "POSITION":2733, + "NORMAL":2734 + }, + "indices":2553, + "material":22 + } + ] + }, + { + "name":"Mesh.7965", + "primitives":[ + { + "attributes":{ + "POSITION":2735, + "NORMAL":2736, + "TEXCOORD_0":2737 + }, + "indices":2738, + "material":0 + } + ] + }, + { + "name":"Mesh.7033", + "primitives":[ + { + "attributes":{ + "POSITION":2739, + "NORMAL":2740 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.418", + "primitives":[ + { + "attributes":{ + "POSITION":2741, + "NORMAL":2742 + }, + "indices":2743, + "material":0 + } + ] + }, + { + "name":"Mesh.6715", + "primitives":[ + { + "attributes":{ + "POSITION":2744, + "NORMAL":2745 + }, + "indices":2746, + "material":0 + } + ] + }, + { + "name":"Mesh.8477", + "primitives":[ + { + "attributes":{ + "POSITION":2747, + "NORMAL":2748 + }, + "indices":2749, + "material":3 + } + ] + }, + { + "name":"Mesh.023", + "primitives":[ + { + "attributes":{ + "POSITION":2750, + "NORMAL":2751, + "TEXCOORD_0":2752 + }, + "indices":2753, + "material":28 + } + ] + }, + { + "name":"Mesh.4964", + "primitives":[ + { + "attributes":{ + "POSITION":2754, + "NORMAL":2755, + "TEXCOORD_0":2756 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.902", + "primitives":[ + { + "attributes":{ + "POSITION":2757, + "NORMAL":2758, + "TEXCOORD_0":2759 + }, + "indices":647, + "material":0 + } + ] + }, + { + "name":"Mesh.2228", + "primitives":[ + { + "attributes":{ + "POSITION":2760, + "NORMAL":2761, + "TEXCOORD_0":2762 + }, + "indices":2763, + "material":0 + } + ] + }, + { + "name":"Mesh.7456", + "primitives":[ + { + "attributes":{ + "POSITION":2764, + "NORMAL":2765 + }, + "indices":2766, + "material":3 + } + ] + }, + { + "name":"Mesh.7354", + "primitives":[ + { + "attributes":{ + "POSITION":2767, + "NORMAL":2768, + "TEXCOORD_0":2769 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.2444", + "primitives":[ + { + "attributes":{ + "POSITION":2770, + "NORMAL":2771, + "TEXCOORD_0":2772 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.2556", + "primitives":[ + { + "attributes":{ + "POSITION":2773, + "NORMAL":2774, + "TEXCOORD_0":2775 + }, + "indices":1315, + "material":0 + } + ] + }, + { + "name":"Mesh.8695", + "primitives":[ + { + "attributes":{ + "POSITION":2776, + "NORMAL":2777 + }, + "indices":2778, + "material":3 + } + ] + }, + { + "name":"Mesh.6925", + "primitives":[ + { + "attributes":{ + "POSITION":2779, + "NORMAL":2780, + "TEXCOORD_0":2781 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.288", + "primitives":[ + { + "attributes":{ + "POSITION":2782, + "NORMAL":2783, + "TEXCOORD_0":2784 + }, + "indices":2785, + "material":0 + } + ] + }, + { + "name":"Mesh.6135", + "primitives":[ + { + "attributes":{ + "POSITION":2786, + "NORMAL":2787, + "TEXCOORD_0":2788 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.408", + "primitives":[ + { + "attributes":{ + "POSITION":2789, + "NORMAL":2790 + }, + "indices":386, + "material":0 + } + ] + }, + { + "name":"Mesh.6789", + "primitives":[ + { + "attributes":{ + "POSITION":2791, + "NORMAL":2792, + "TEXCOORD_0":2793 + }, + "indices":730, + "material":0 + } + ] + }, + { + "name":"Mesh.6175", + "primitives":[ + { + "attributes":{ + "POSITION":2794, + "NORMAL":2795, + "TEXCOORD_0":2796 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.936", + "primitives":[ + { + "attributes":{ + "POSITION":2797, + "NORMAL":2798, + "TEXCOORD_0":2799 + }, + "indices":2307, + "material":0 + } + ] + }, + { + "name":"Mesh.760", + "primitives":[ + { + "attributes":{ + "POSITION":2800, + "NORMAL":2801, + "TEXCOORD_0":2802 + }, + "indices":2803, + "material":0 + } + ] + }, + { + "name":"Mesh.7323", + "primitives":[ + { + "attributes":{ + "POSITION":2804, + "NORMAL":2805, + "TEXCOORD_0":2806 + }, + "indices":2807, + "material":7 + } + ] + }, + { + "name":"Mesh.7795", + "primitives":[ + { + "attributes":{ + "POSITION":2808, + "NORMAL":2809 + }, + "indices":2810, + "material":3 + } + ] + }, + { + "name":"Mesh.704", + "primitives":[ + { + "attributes":{ + "POSITION":2811, + "NORMAL":2812, + "TEXCOORD_0":2813 + }, + "indices":2814, + "material":0 + } + ] + }, + { + "name":"Mesh.5232", + "primitives":[ + { + "attributes":{ + "POSITION":2815, + "NORMAL":2816, + "TEXCOORD_0":2817 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1610", + "primitives":[ + { + "attributes":{ + "POSITION":2818, + "NORMAL":2819, + "TEXCOORD_0":2820 + }, + "indices":1532, + "material":17 + } + ] + }, + { + "name":"Mesh.6061", + "primitives":[ + { + "attributes":{ + "POSITION":2821, + "NORMAL":2822, + "TEXCOORD_0":2823 + }, + "indices":615, + "material":20 + } + ] + }, + { + "name":"Mesh.2701", + "primitives":[ + { + "attributes":{ + "POSITION":2824, + "NORMAL":2825, + "TEXCOORD_0":2826 + }, + "indices":2827, + "material":0 + } + ] + }, + { + "name":"Mesh.6325", + "primitives":[ + { + "attributes":{ + "POSITION":2828, + "NORMAL":2829 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.7539", + "primitives":[ + { + "attributes":{ + "POSITION":2830, + "NORMAL":2831 + }, + "indices":44, + "material":3 + } + ] + }, + { + "name":"Mesh.295", + "primitives":[ + { + "attributes":{ + "POSITION":2832, + "NORMAL":2833, + "TEXCOORD_0":2834 + }, + "indices":1818, + "material":0 + } + ] + }, + { + "name":"Mesh.8051", + "primitives":[ + { + "attributes":{ + "POSITION":2835, + "NORMAL":2836, + "TEXCOORD_0":2837 + }, + "indices":2838, + "material":0 + } + ] + }, + { + "name":"Mesh.2329", + "primitives":[ + { + "attributes":{ + "POSITION":2839, + "NORMAL":2840, + "TEXCOORD_0":2841 + }, + "indices":2842, + "material":0 + } + ] + }, + { + "name":"Mesh.2178", + "primitives":[ + { + "attributes":{ + "POSITION":2843, + "NORMAL":2844, + "TEXCOORD_0":2845 + }, + "indices":2846, + "material":0 + } + ] + }, + { + "name":"Mesh.6329", + "primitives":[ + { + "attributes":{ + "POSITION":2847, + "NORMAL":2848 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.2033", + "primitives":[ + { + "attributes":{ + "POSITION":2849, + "NORMAL":2850, + "TEXCOORD_0":2851 + }, + "indices":2061, + "material":0 + } + ] + }, + { + "name":"Mesh.6647", + "primitives":[ + { + "attributes":{ + "POSITION":2852, + "NORMAL":2853, + "TEXCOORD_0":2854 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.2811", + "primitives":[ + { + "attributes":{ + "POSITION":2855, + "NORMAL":2856, + "TEXCOORD_0":2857 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.6505", + "primitives":[ + { + "attributes":{ + "POSITION":2859, + "NORMAL":2860, + "TEXCOORD_0":2861 + }, + "indices":2862, + "material":0 + } + ] + }, + { + "name":"Mesh.8589", + "primitives":[ + { + "attributes":{ + "POSITION":2863, + "NORMAL":2864 + }, + "indices":2865, + "material":3 + } + ] + }, + { + "name":"Mesh.5050", + "primitives":[ + { + "attributes":{ + "POSITION":2866, + "NORMAL":2867, + "TEXCOORD_0":2868 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8331", + "primitives":[ + { + "attributes":{ + "POSITION":2869, + "NORMAL":2870 + }, + "indices":2871, + "material":3 + } + ] + }, + { + "name":"Mesh.6885", + "primitives":[ + { + "attributes":{ + "POSITION":2872, + "NORMAL":2873 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.7980", + "primitives":[ + { + "attributes":{ + "POSITION":2874, + "NORMAL":2875, + "TEXCOORD_0":2876 + }, + "indices":1868, + "material":0 + } + ] + }, + { + "name":"Mesh.803", + "primitives":[ + { + "attributes":{ + "POSITION":2877, + "NORMAL":2878, + "TEXCOORD_0":2879 + }, + "indices":2880, + "material":0 + } + ] + }, + { + "name":"Mesh.1962", + "primitives":[ + { + "attributes":{ + "POSITION":2881, + "NORMAL":2882 + }, + "indices":2883, + "material":22 + } + ] + }, + { + "name":"Mesh.2314", + "primitives":[ + { + "attributes":{ + "POSITION":2884, + "NORMAL":2885, + "TEXCOORD_0":2886 + }, + "indices":2887, + "material":0 + } + ] + }, + { + "name":"Mesh.9195", + "primitives":[ + { + "attributes":{ + "POSITION":2888, + "NORMAL":2889, + "TEXCOORD_0":2890 + }, + "indices":2891, + "material":7 + } + ] + }, + { + "name":"Mesh.2002", + "primitives":[ + { + "attributes":{ + "POSITION":2892, + "NORMAL":2893, + "TEXCOORD_0":2894 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.883", + "primitives":[ + { + "attributes":{ + "POSITION":2895, + "NORMAL":2896, + "TEXCOORD_0":2897 + }, + "indices":2887, + "material":0 + } + ] + }, + { + "name":"Mesh.2457", + "primitives":[ + { + "attributes":{ + "POSITION":2898, + "NORMAL":2899, + "TEXCOORD_0":2900 + }, + "indices":313, + "material":4 + } + ] + }, + { + "name":"Mesh.2203", + "primitives":[ + { + "attributes":{ + "POSITION":2901, + "NORMAL":2902, + "TEXCOORD_0":2903 + }, + "indices":1379, + "material":0 + } + ] + }, + { + "name":"Mesh.7295", + "primitives":[ + { + "attributes":{ + "POSITION":2904, + "NORMAL":2905, + "TEXCOORD_0":2906 + }, + "indices":2577, + "material":7 + } + ] + }, + { + "name":"Mesh.2453", + "primitives":[ + { + "attributes":{ + "POSITION":2907, + "NORMAL":2908, + "TEXCOORD_0":2909 + }, + "indices":1522, + "material":0 + } + ] + }, + { + "name":"Mesh.8677", + "primitives":[ + { + "attributes":{ + "POSITION":2910, + "NORMAL":2911 + }, + "indices":2912, + "material":3 + } + ] + }, + { + "name":"Mesh.8421", + "primitives":[ + { + "attributes":{ + "POSITION":2913, + "NORMAL":2914 + }, + "indices":2915, + "material":3 + } + ] + }, + { + "name":"Mesh.533", + "primitives":[ + { + "attributes":{ + "POSITION":2916, + "NORMAL":2917, + "TEXCOORD_0":2918 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.7138", + "primitives":[ + { + "attributes":{ + "POSITION":2919, + "NORMAL":2920, + "TEXCOORD_0":2921 + }, + "indices":2922, + "material":7 + } + ] + }, + { + "name":"Mesh.8977", + "primitives":[ + { + "attributes":{ + "POSITION":2923, + "NORMAL":2924, + "TEXCOORD_0":2925 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.1931", + "primitives":[ + { + "attributes":{ + "POSITION":2926, + "NORMAL":2927 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.582", + "primitives":[ + { + "attributes":{ + "POSITION":2928, + "NORMAL":2929, + "TEXCOORD_0":2930 + }, + "indices":1554, + "material":0 + } + ] + }, + { + "name":"Mesh.2713", + "primitives":[ + { + "attributes":{ + "POSITION":2931, + "NORMAL":2932, + "TEXCOORD_0":2933 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.5093", + "primitives":[ + { + "attributes":{ + "POSITION":2934, + "NORMAL":2935, + "TEXCOORD_0":2936 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.280", + "primitives":[ + { + "attributes":{ + "POSITION":2937, + "NORMAL":2938, + "TEXCOORD_0":2939 + }, + "indices":2940, + "material":3 + } + ] + }, + { + "name":"Mesh.8023", + "primitives":[ + { + "attributes":{ + "POSITION":2941, + "NORMAL":2942, + "TEXCOORD_0":2943 + }, + "indices":2738, + "material":0 + } + ] + }, + { + "name":"Mesh.1860", + "primitives":[ + { + "attributes":{ + "POSITION":2944, + "NORMAL":2945 + }, + "indices":2946, + "material":0 + } + ] + }, + { + "name":"Mesh.5318", + "primitives":[ + { + "attributes":{ + "POSITION":2947, + "NORMAL":2948, + "TEXCOORD_0":2949 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8141", + "primitives":[ + { + "attributes":{ + "POSITION":2950, + "NORMAL":2951 + }, + "indices":2042, + "material":3 + } + ] + }, + { + "name":"Mesh.8507", + "primitives":[ + { + "attributes":{ + "POSITION":2952, + "NORMAL":2953 + }, + "indices":2954, + "material":3 + } + ] + }, + { + "name":"Mesh.2388", + "primitives":[ + { + "attributes":{ + "POSITION":2955, + "NORMAL":2956 + }, + "indices":2224, + "material":1 + } + ] + }, + { + "name":"Mesh.6517", + "primitives":[ + { + "attributes":{ + "POSITION":2957, + "NORMAL":2958, + "TEXCOORD_0":2959 + }, + "indices":2960, + "material":0 + } + ] + }, + { + "name":"Mesh.5062", + "primitives":[ + { + "attributes":{ + "POSITION":2961, + "NORMAL":2962, + "TEXCOORD_0":2963 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6702", + "primitives":[ + { + "attributes":{ + "POSITION":2964, + "NORMAL":2965 + }, + "indices":2966, + "material":0 + } + ] + }, + { + "name":"Mesh.2734", + "primitives":[ + { + "attributes":{ + "POSITION":2967, + "NORMAL":2968, + "TEXCOORD_0":2969 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.1789", + "primitives":[ + { + "attributes":{ + "POSITION":2970, + "NORMAL":2971 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.815", + "primitives":[ + { + "attributes":{ + "POSITION":2972, + "NORMAL":2973, + "TEXCOORD_0":2974 + }, + "indices":2975, + "material":0 + } + ] + }, + { + "name":"Mesh.7378", + "primitives":[ + { + "attributes":{ + "POSITION":2976, + "NORMAL":2977, + "TEXCOORD_0":2978 + }, + "indices":2979, + "material":7 + } + ] + }, + { + "name":"Mesh.5287", + "primitives":[ + { + "attributes":{ + "POSITION":2980, + "NORMAL":2981, + "TEXCOORD_0":2982 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.625", + "primitives":[ + { + "attributes":{ + "POSITION":2983, + "NORMAL":2984, + "TEXCOORD_0":2985 + }, + "indices":2986, + "material":3 + } + ] + }, + { + "name":"Mesh.1645", + "primitives":[ + { + "attributes":{ + "POSITION":2987, + "NORMAL":2988, + "TEXCOORD_0":2989 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.7125", + "primitives":[ + { + "attributes":{ + "POSITION":2990, + "NORMAL":2991, + "TEXCOORD_0":2992 + }, + "indices":2993, + "material":7 + } + ] + }, + { + "name":"Mesh.5432", + "primitives":[ + { + "attributes":{ + "POSITION":2994, + "NORMAL":2995, + "TEXCOORD_0":2996 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1050", + "primitives":[ + { + "attributes":{ + "POSITION":2997, + "NORMAL":2998, + "TEXCOORD_0":2999 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.2215", + "primitives":[ + { + "attributes":{ + "POSITION":3000, + "NORMAL":3001, + "TEXCOORD_0":3002 + }, + "indices":3003, + "material":0 + } + ] + }, + { + "name":"Mesh.758", + "primitives":[ + { + "attributes":{ + "POSITION":3004, + "NORMAL":3005, + "TEXCOORD_0":3006 + }, + "indices":3007, + "material":0 + } + ] + }, + { + "name":"Mesh.5361", + "primitives":[ + { + "attributes":{ + "POSITION":3008, + "NORMAL":3009, + "TEXCOORD_0":3010 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.784", + "primitives":[ + { + "attributes":{ + "POSITION":3011, + "NORMAL":3012, + "TEXCOORD_0":3013 + }, + "indices":366, + "material":0 + } + ] + }, + { + "name":"Mesh.545", + "primitives":[ + { + "attributes":{ + "POSITION":3014, + "NORMAL":3015, + "TEXCOORD_0":3016 + }, + "indices":3017, + "material":0 + } + ] + }, + { + "name":"Mesh.2685", + "primitives":[ + { + "attributes":{ + "POSITION":3018, + "NORMAL":3019, + "TEXCOORD_0":3020 + }, + "indices":2307, + "material":0 + } + ] + }, + { + "name":"Mesh.642", + "primitives":[ + { + "attributes":{ + "POSITION":3021, + "NORMAL":3022, + "TEXCOORD_0":3023 + }, + "indices":3024, + "material":3 + } + ] + }, + { + "name":"Mesh.594", + "primitives":[ + { + "attributes":{ + "POSITION":3025, + "NORMAL":3026, + "TEXCOORD_0":3027 + }, + "indices":3028, + "material":0 + } + ] + }, + { + "name":"Mesh.9163", + "primitives":[ + { + "attributes":{ + "POSITION":3029, + "NORMAL":3030, + "TEXCOORD_0":3031 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.5105", + "primitives":[ + { + "attributes":{ + "POSITION":3032, + "NORMAL":3033, + "TEXCOORD_0":3034 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5946", + "primitives":[ + { + "attributes":{ + "POSITION":3035, + "NORMAL":3036, + "TEXCOORD_0":3037 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.8485", + "primitives":[ + { + "attributes":{ + "POSITION":3038, + "NORMAL":3039 + }, + "indices":3040, + "material":3 + } + ] + }, + { + "name":"Mesh.2583", + "primitives":[ + { + "attributes":{ + "POSITION":3041, + "NORMAL":3042, + "TEXCOORD_0":3043 + }, + "indices":3044, + "material":0 + } + ] + }, + { + "name":"Mesh.8534", + "primitives":[ + { + "attributes":{ + "POSITION":3045, + "NORMAL":3046 + }, + "indices":3047, + "material":3 + } + ] + }, + { + "name":"Mesh.456", + "primitives":[ + { + "attributes":{ + "POSITION":3048, + "NORMAL":3049 + }, + "indices":3050, + "material":3 + } + ] + }, + { + "name":"Mesh.5511", + "primitives":[ + { + "attributes":{ + "POSITION":3051, + "NORMAL":3052, + "TEXCOORD_0":3053 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6981", + "primitives":[ + { + "attributes":{ + "POSITION":3054, + "NORMAL":3055, + "TEXCOORD_0":3056 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.505", + "primitives":[ + { + "attributes":{ + "POSITION":3057, + "NORMAL":3058, + "TEXCOORD_0":3059 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.5071", + "primitives":[ + { + "attributes":{ + "POSITION":3060, + "NORMAL":3061, + "TEXCOORD_0":3062 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7964", + "primitives":[ + { + "attributes":{ + "POSITION":3063, + "NORMAL":3064, + "TEXCOORD_0":3065 + }, + "indices":3066, + "material":0 + } + ] + }, + { + "name":"Mesh.7032", + "primitives":[ + { + "attributes":{ + "POSITION":3067, + "NORMAL":3068 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.7677", + "primitives":[ + { + "attributes":{ + "POSITION":3069, + "NORMAL":3070 + }, + "indices":3071, + "material":3 + } + ] + }, + { + "name":"Mesh.8558", + "primitives":[ + { + "attributes":{ + "POSITION":3072, + "NORMAL":3073 + }, + "indices":2079, + "material":3 + } + ] + }, + { + "name":"Mesh.6714", + "primitives":[ + { + "attributes":{ + "POSITION":3074, + "NORMAL":3075 + }, + "indices":3076, + "material":0 + } + ] + }, + { + "name":"Mesh.7682", + "primitives":[ + { + "attributes":{ + "POSITION":3077, + "NORMAL":3078 + }, + "indices":3079, + "material":3 + } + ] + }, + { + "name":"Mesh.8207", + "primitives":[ + { + "attributes":{ + "POSITION":3080, + "NORMAL":3081 + }, + "indices":44, + "material":3 + } + ] + }, + { + "name":"Mesh.8476", + "primitives":[ + { + "attributes":{ + "POSITION":3082, + "NORMAL":3083 + }, + "indices":3084, + "material":3 + } + ] + }, + { + "name":"Mesh.7151", + "primitives":[ + { + "attributes":{ + "POSITION":3085, + "NORMAL":3086, + "TEXCOORD_0":3087 + }, + "indices":2577, + "material":7 + } + ] + }, + { + "name":"Mesh.617", + "primitives":[ + { + "attributes":{ + "POSITION":3088, + "NORMAL":3089, + "TEXCOORD_0":3090 + }, + "indices":3091, + "material":3 + } + ] + }, + { + "name":"Mesh.8255", + "primitives":[ + { + "attributes":{ + "POSITION":3092, + "NORMAL":3093 + }, + "indices":3094, + "material":3 + } + ] + }, + { + "name":"Mesh.4801", + "primitives":[ + { + "attributes":{ + "POSITION":3095, + "NORMAL":3096, + "TEXCOORD_0":3097 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.4963", + "primitives":[ + { + "attributes":{ + "POSITION":3098, + "NORMAL":3099, + "TEXCOORD_0":3100 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8975", + "primitives":[ + { + "attributes":{ + "POSITION":3101, + "NORMAL":3102, + "TEXCOORD_0":3103 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.2227", + "primitives":[ + { + "attributes":{ + "POSITION":3104, + "NORMAL":3105, + "TEXCOORD_0":3106 + }, + "indices":584, + "material":0 + } + ] + }, + { + "name":"Mesh.7455", + "primitives":[ + { + "attributes":{ + "POSITION":3107, + "NORMAL":3108 + }, + "indices":3109, + "material":3 + } + ] + }, + { + "name":"Mesh.8961", + "primitives":[ + { + "attributes":{ + "POSITION":3110, + "NORMAL":3111, + "TEXCOORD_0":3112 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.8646", + "primitives":[ + { + "attributes":{ + "POSITION":3113, + "NORMAL":3114 + }, + "indices":3115, + "material":3 + } + ] + }, + { + "name":"Mesh.2443", + "primitives":[ + { + "attributes":{ + "POSITION":3116, + "NORMAL":3117, + "TEXCOORD_0":3118 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.2555", + "primitives":[ + { + "attributes":{ + "POSITION":3119, + "NORMAL":3120, + "TEXCOORD_0":3121 + }, + "indices":3122, + "material":0 + } + ] + }, + { + "name":"Mesh.953", + "primitives":[ + { + "attributes":{ + "POSITION":3123, + "NORMAL":3124, + "TEXCOORD_0":3125 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.5117", + "primitives":[ + { + "attributes":{ + "POSITION":3126, + "NORMAL":3127, + "TEXCOORD_0":3128 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2595", + "primitives":[ + { + "attributes":{ + "POSITION":3129, + "NORMAL":3130, + "TEXCOORD_0":3131 + }, + "indices":3122, + "material":0 + } + ] + }, + { + "name":"Mesh.7106", + "primitives":[ + { + "attributes":{ + "POSITION":3132, + "NORMAL":3133, + "TEXCOORD_0":3134 + }, + "indices":3135, + "material":7 + } + ] + }, + { + "name":"Mesh.5998", + "primitives":[ + { + "attributes":{ + "POSITION":3136, + "NORMAL":3137, + "TEXCOORD_0":3138 + }, + "indices":202, + "material":11 + } + ] + }, + { + "name":"Mesh.1702", + "primitives":[ + { + "attributes":{ + "POSITION":3139, + "NORMAL":3140, + "TEXCOORD_0":3141 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.6788", + "primitives":[ + { + "attributes":{ + "POSITION":3142, + "NORMAL":3143, + "TEXCOORD_0":3144 + }, + "indices":1974, + "material":0 + } + ] + }, + { + "name":"Mesh.6174", + "primitives":[ + { + "attributes":{ + "POSITION":3145, + "NORMAL":3146, + "TEXCOORD_0":3147 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.655", + "primitives":[ + { + "attributes":{ + "POSITION":3148, + "NORMAL":3149, + "TEXCOORD_0":3150 + }, + "indices":3151, + "material":3 + } + ] + }, + { + "name":"Mesh.759", + "primitives":[ + { + "attributes":{ + "POSITION":3152, + "NORMAL":3153, + "TEXCOORD_0":3154 + }, + "indices":3155, + "material":0 + } + ] + }, + { + "name":"Mesh.7322", + "primitives":[ + { + "attributes":{ + "POSITION":3156, + "NORMAL":3157, + "TEXCOORD_0":3158 + }, + "indices":3159, + "material":7 + } + ] + }, + { + "name":"Mesh.8725", + "primitives":[ + { + "attributes":{ + "POSITION":3160, + "NORMAL":3161 + }, + "indices":1221, + "material":3 + } + ] + }, + { + "name":"Mesh.2524", + "primitives":[ + { + "attributes":{ + "POSITION":3162, + "NORMAL":3163, + "TEXCOORD_0":3164 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.5231", + "primitives":[ + { + "attributes":{ + "POSITION":3165, + "NORMAL":3166, + "TEXCOORD_0":3167 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.136", + "primitives":[ + { + "attributes":{ + "POSITION":3168, + "NORMAL":3169, + "TEXCOORD_0":3170 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.107", + "primitives":[ + { + "attributes":{ + "POSITION":3171, + "NORMAL":3172, + "TEXCOORD_0":3173 + }, + "indices":3174, + "material":0 + } + ] + }, + { + "name":"Mesh.2700", + "primitives":[ + { + "attributes":{ + "POSITION":3175, + "NORMAL":3176, + "TEXCOORD_0":3177 + }, + "indices":3178, + "material":0 + } + ] + }, + { + "name":"Mesh.5541", + "primitives":[ + { + "attributes":{ + "POSITION":3179, + "NORMAL":3180, + "TEXCOORD_0":3181 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.609", + "primitives":[ + { + "attributes":{ + "POSITION":3182, + "NORMAL":3183, + "TEXCOORD_0":3184 + }, + "indices":3185, + "material":3 + } + ] + }, + { + "name":"Mesh.296", + "primitives":[ + { + "attributes":{ + "POSITION":3186, + "NORMAL":3187, + "TEXCOORD_0":3188 + }, + "indices":3189, + "material":0 + } + ] + }, + { + "name":"Mesh.7578", + "primitives":[ + { + "attributes":{ + "POSITION":3190, + "NORMAL":3191 + }, + "indices":1686, + "material":3 + } + ] + }, + { + "name":"Mesh.8050", + "primitives":[ + { + "attributes":{ + "POSITION":3192, + "NORMAL":3193, + "TEXCOORD_0":3194 + }, + "indices":3195, + "material":0 + } + ] + }, + { + "name":"Mesh.2177", + "primitives":[ + { + "attributes":{ + "POSITION":3196, + "NORMAL":3197, + "TEXCOORD_0":3198 + }, + "indices":3199, + "material":0 + } + ] + }, + { + "name":"Mesh.8726", + "primitives":[ + { + "attributes":{ + "POSITION":3200, + "NORMAL":3201 + }, + "indices":883, + "material":3 + } + ] + }, + { + "name":"Mesh.6890", + "primitives":[ + { + "attributes":{ + "POSITION":3202, + "NORMAL":3203 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.1687", + "primitives":[ + { + "attributes":{ + "POSITION":3204, + "NORMAL":3205, + "TEXCOORD_0":3206 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.1887", + "primitives":[ + { + "attributes":{ + "POSITION":3207, + "NORMAL":3208 + }, + "indices":386, + "material":0 + } + ] + }, + { + "name":"Mesh.7133", + "primitives":[ + { + "attributes":{ + "POSITION":3209, + "NORMAL":3210, + "TEXCOORD_0":3211 + }, + "indices":3212, + "material":7 + } + ] + }, + { + "name":"Mesh.2810", + "primitives":[ + { + "attributes":{ + "POSITION":3213, + "NORMAL":3214, + "TEXCOORD_0":3215 + }, + "indices":273, + "material":0 + } + ] + }, + { + "name":"Mesh.6504", + "primitives":[ + { + "attributes":{ + "POSITION":3216, + "NORMAL":3217, + "TEXCOORD_0":3218 + }, + "indices":3219, + "material":0 + } + ] + }, + { + "name":"Mesh.513", + "primitives":[ + { + "attributes":{ + "POSITION":3220, + "NORMAL":3221, + "TEXCOORD_0":3222 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5049", + "primitives":[ + { + "attributes":{ + "POSITION":3223, + "NORMAL":3224, + "TEXCOORD_0":3225 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5449", + "primitives":[ + { + "attributes":{ + "POSITION":3226, + "NORMAL":3227, + "TEXCOORD_0":3228 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5488", + "primitives":[ + { + "attributes":{ + "POSITION":3229, + "NORMAL":3230, + "TEXCOORD_0":3231 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7979", + "primitives":[ + { + "attributes":{ + "POSITION":3232, + "NORMAL":3233, + "TEXCOORD_0":3234 + }, + "indices":3235, + "material":0 + } + ] + }, + { + "name":"Mesh.1961", + "primitives":[ + { + "attributes":{ + "POSITION":3236, + "NORMAL":3237 + }, + "indices":2248, + "material":0 + } + ] + }, + { + "name":"Mesh.2313", + "primitives":[ + { + "attributes":{ + "POSITION":3238, + "NORMAL":3239, + "TEXCOORD_0":3240 + }, + "indices":3241, + "material":0 + } + ] + }, + { + "name":"Mesh.9193", + "primitives":[ + { + "attributes":{ + "POSITION":3242, + "NORMAL":3243, + "TEXCOORD_0":3244 + }, + "indices":247, + "material":7 + } + ] + }, + { + "name":"Mesh.2001", + "primitives":[ + { + "attributes":{ + "POSITION":3245, + "NORMAL":3246, + "TEXCOORD_0":3247 + }, + "indices":3248, + "material":0 + } + ] + }, + { + "name":"Mesh.906", + "primitives":[ + { + "attributes":{ + "POSITION":3249, + "NORMAL":3250, + "TEXCOORD_0":3251 + }, + "indices":469, + "material":0 + } + ] + }, + { + "name":"Mesh.882", + "primitives":[ + { + "attributes":{ + "POSITION":3252, + "NORMAL":3253, + "TEXCOORD_0":3254 + }, + "indices":3241, + "material":0 + } + ] + }, + { + "name":"Mesh.2456", + "primitives":[ + { + "attributes":{ + "POSITION":3255, + "NORMAL":3256, + "TEXCOORD_0":3257 + }, + "indices":313, + "material":4 + } + ] + }, + { + "name":"Mesh.2278", + "primitives":[ + { + "attributes":{ + "POSITION":3258, + "NORMAL":3259, + "TEXCOORD_0":3260 + }, + "indices":1868, + "material":0 + } + ] + }, + { + "name":"Mesh.7968", + "primitives":[ + { + "attributes":{ + "POSITION":3261, + "NORMAL":3262, + "TEXCOORD_0":3263 + }, + "indices":804, + "material":0 + } + ] + }, + { + "name":"Mesh.2202", + "primitives":[ + { + "attributes":{ + "POSITION":3264, + "NORMAL":3265, + "TEXCOORD_0":3266 + }, + "indices":3267, + "material":0 + } + ] + }, + { + "name":"Mesh.7294", + "primitives":[ + { + "attributes":{ + "POSITION":3268, + "NORMAL":3269, + "TEXCOORD_0":3270 + }, + "indices":2577, + "material":7 + } + ] + }, + { + "name":"Mesh.8420", + "primitives":[ + { + "attributes":{ + "POSITION":3271, + "NORMAL":3272 + }, + "indices":1066, + "material":3 + } + ] + }, + { + "name":"Mesh.1930", + "primitives":[ + { + "attributes":{ + "POSITION":3273, + "NORMAL":3274, + "TEXCOORD_0":3275 + }, + "indices":3276, + "material":6 + } + ] + }, + { + "name":"Mesh.581", + "primitives":[ + { + "attributes":{ + "POSITION":3277, + "NORMAL":3278, + "TEXCOORD_0":3279 + }, + "indices":3280, + "material":0 + } + ] + }, + { + "name":"Mesh.2712", + "primitives":[ + { + "attributes":{ + "POSITION":3281, + "NORMAL":3282, + "TEXCOORD_0":3283 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.5092", + "primitives":[ + { + "attributes":{ + "POSITION":3284, + "NORMAL":3285, + "TEXCOORD_0":3286 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8022", + "primitives":[ + { + "attributes":{ + "POSITION":3287, + "NORMAL":3288, + "TEXCOORD_0":3289 + }, + "indices":3066, + "material":0 + } + ] + }, + { + "name":"Mesh.8488", + "primitives":[ + { + "attributes":{ + "POSITION":3290, + "NORMAL":3291 + }, + "indices":3292, + "material":3 + } + ] + }, + { + "name":"Mesh.1859", + "primitives":[ + { + "attributes":{ + "POSITION":3293, + "NORMAL":3294 + }, + "indices":2946, + "material":0 + } + ] + }, + { + "name":"Mesh.5317", + "primitives":[ + { + "attributes":{ + "POSITION":3295, + "NORMAL":3296, + "TEXCOORD_0":3297 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1227", + "primitives":[ + { + "attributes":{ + "POSITION":3298, + "NORMAL":3299, + "TEXCOORD_0":3300 + }, + "indices":3301, + "material":29 + } + ] + }, + { + "name":"Mesh.5607", + "primitives":[ + { + "attributes":{ + "POSITION":3302, + "NORMAL":3303, + "TEXCOORD_0":3304 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2387", + "primitives":[ + { + "attributes":{ + "POSITION":3305, + "NORMAL":3306 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.2499", + "primitives":[ + { + "attributes":{ + "POSITION":3307, + "NORMAL":3308, + "TEXCOORD_0":3309 + }, + "indices":1400, + "material":0 + } + ] + }, + { + "name":"Mesh.7479", + "primitives":[ + { + "attributes":{ + "POSITION":3310, + "NORMAL":3311 + }, + "indices":3312, + "material":3 + } + ] + }, + { + "name":"Mesh.6516", + "primitives":[ + { + "attributes":{ + "POSITION":3313, + "NORMAL":3314, + "TEXCOORD_0":3315 + }, + "indices":3316, + "material":0 + } + ] + }, + { + "name":"Mesh.5061", + "primitives":[ + { + "attributes":{ + "POSITION":3317, + "NORMAL":3318, + "TEXCOORD_0":3319 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1788", + "primitives":[ + { + "attributes":{ + "POSITION":3320, + "NORMAL":3321 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.814", + "primitives":[ + { + "attributes":{ + "POSITION":3322, + "NORMAL":3323, + "TEXCOORD_0":3324 + }, + "indices":3325, + "material":3 + } + ] + }, + { + "name":"Mesh.7377", + "primitives":[ + { + "attributes":{ + "POSITION":3326, + "NORMAL":3327, + "TEXCOORD_0":3328 + }, + "indices":3329, + "material":7 + } + ] + }, + { + "name":"Mesh.8654", + "primitives":[ + { + "attributes":{ + "POSITION":3330, + "NORMAL":3331 + }, + "indices":3332, + "material":3 + } + ] + }, + { + "name":"Mesh.5286", + "primitives":[ + { + "attributes":{ + "POSITION":3333, + "NORMAL":3334, + "TEXCOORD_0":3335 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.624", + "primitives":[ + { + "attributes":{ + "POSITION":3336, + "NORMAL":3337, + "TEXCOORD_0":3338 + }, + "indices":3339, + "material":3 + } + ] + }, + { + "name":"Mesh.2013", + "primitives":[ + { + "attributes":{ + "POSITION":3340, + "NORMAL":3341, + "TEXCOORD_0":3342 + }, + "indices":3343, + "material":0 + } + ] + }, + { + "name":"Mesh.1049", + "primitives":[ + { + "attributes":{ + "POSITION":3344, + "NORMAL":3345, + "TEXCOORD_0":3346 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.6485", + "primitives":[ + { + "attributes":{ + "POSITION":3347, + "NORMAL":3348, + "TEXCOORD_0":3349 + }, + "indices":3350, + "material":0 + } + ] + }, + { + "name":"Mesh.2214", + "primitives":[ + { + "attributes":{ + "POSITION":3351, + "NORMAL":3352, + "TEXCOORD_0":3353 + }, + "indices":554, + "material":0 + } + ] + }, + { + "name":"Mesh.6670", + "primitives":[ + { + "attributes":{ + "POSITION":3354, + "NORMAL":3355 + }, + "indices":735, + "material":0 + } + ] + }, + { + "name":"Mesh.783", + "primitives":[ + { + "attributes":{ + "POSITION":3356, + "NORMAL":3357, + "TEXCOORD_0":3358 + }, + "indices":639, + "material":0 + } + ] + }, + { + "name":"Mesh.544", + "primitives":[ + { + "attributes":{ + "POSITION":3359, + "NORMAL":3360, + "TEXCOORD_0":3361 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.121", + "primitives":[ + { + "attributes":{ + "POSITION":3362, + "NORMAL":3363, + "TEXCOORD_0":3364 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2684", + "primitives":[ + { + "attributes":{ + "POSITION":3365, + "NORMAL":3366, + "TEXCOORD_0":3367 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.641", + "primitives":[ + { + "attributes":{ + "POSITION":3369, + "NORMAL":3370, + "TEXCOORD_0":3371 + }, + "indices":3372, + "material":3 + } + ] + }, + { + "name":"Mesh.672", + "primitives":[ + { + "attributes":{ + "POSITION":3373, + "NORMAL":3374, + "TEXCOORD_0":3375 + }, + "indices":3376, + "material":3 + } + ] + }, + { + "name":"Mesh.1212", + "primitives":[ + { + "attributes":{ + "POSITION":3377, + "NORMAL":3378 + }, + "indices":114, + "material":1 + } + ] + }, + { + "name":"Mesh.9149", + "primitives":[ + { + "attributes":{ + "POSITION":3379, + "NORMAL":3380, + "TEXCOORD_0":3381 + }, + "indices":3382, + "material":7 + } + ] + }, + { + "name":"Mesh.8601", + "primitives":[ + { + "attributes":{ + "POSITION":3383, + "NORMAL":3384 + }, + "indices":3385, + "material":3 + } + ] + }, + { + "name":"Mesh.593", + "primitives":[ + { + "attributes":{ + "POSITION":3386, + "NORMAL":3387, + "TEXCOORD_0":3388 + }, + "indices":3389, + "material":0 + } + ] + }, + { + "name":"Mesh.338", + "primitives":[ + { + "attributes":{ + "POSITION":3390, + "NORMAL":3391, + "TEXCOORD_0":3392 + }, + "indices":3393, + "material":0 + } + ] + }, + { + "name":"Mesh.5104", + "primitives":[ + { + "attributes":{ + "POSITION":3394, + "NORMAL":3395, + "TEXCOORD_0":3396 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6632", + "primitives":[ + { + "attributes":{ + "POSITION":3397, + "NORMAL":3398 + }, + "indices":2400, + "material":0 + } + ] + }, + { + "name":"Mesh.6972", + "primitives":[ + { + "attributes":{ + "POSITION":3399, + "NORMAL":3400, + "TEXCOORD_0":3401 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.2582", + "primitives":[ + { + "attributes":{ + "POSITION":3402, + "NORMAL":3403, + "TEXCOORD_0":3404 + }, + "indices":1247, + "material":0 + } + ] + }, + { + "name":"Mesh.8533", + "primitives":[ + { + "attributes":{ + "POSITION":3405, + "NORMAL":3406 + }, + "indices":3407, + "material":3 + } + ] + }, + { + "name":"Mesh.8836", + "primitives":[ + { + "attributes":{ + "POSITION":3408, + "NORMAL":3409 + }, + "indices":1002, + "material":3 + } + ] + }, + { + "name":"Mesh.455", + "primitives":[ + { + "attributes":{ + "POSITION":3410, + "NORMAL":3411 + }, + "indices":3412, + "material":3 + } + ] + }, + { + "name":"Mesh.8965", + "primitives":[ + { + "attributes":{ + "POSITION":3413, + "NORMAL":3414, + "TEXCOORD_0":3415 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.8490", + "primitives":[ + { + "attributes":{ + "POSITION":3416, + "NORMAL":3417 + }, + "indices":3418, + "material":3 + } + ] + }, + { + "name":"Mesh.504", + "primitives":[ + { + "attributes":{ + "POSITION":3419, + "NORMAL":3420, + "TEXCOORD_0":3421 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2056", + "primitives":[ + { + "attributes":{ + "POSITION":3422, + "NORMAL":3423, + "TEXCOORD_0":3424 + }, + "indices":1554, + "material":0 + } + ] + }, + { + "name":"Mesh.5066", + "primitives":[ + { + "attributes":{ + "POSITION":3425, + "NORMAL":3426, + "TEXCOORD_0":3427 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.937", + "primitives":[ + { + "attributes":{ + "POSITION":3428, + "NORMAL":3429, + "TEXCOORD_0":3430 + }, + "indices":3431, + "material":30 + } + ] + }, + { + "name":"Mesh.9004", + "primitives":[ + { + "attributes":{ + "POSITION":3432, + "NORMAL":3433, + "TEXCOORD_0":3434 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.7031", + "primitives":[ + { + "attributes":{ + "POSITION":3435, + "NORMAL":3436, + "TEXCOORD_0":3437 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.8689", + "primitives":[ + { + "attributes":{ + "POSITION":3438, + "NORMAL":3439 + }, + "indices":3412, + "material":3 + } + ] + }, + { + "name":"Mesh.2504", + "primitives":[ + { + "attributes":{ + "POSITION":3440, + "NORMAL":3441, + "TEXCOORD_0":3442 + }, + "indices":2427, + "material":0 + } + ] + }, + { + "name":"Mesh.8245", + "primitives":[ + { + "attributes":{ + "POSITION":3443, + "NORMAL":3444 + }, + "indices":3445, + "material":3 + } + ] + }, + { + "name":"Mesh.6363", + "primitives":[ + { + "attributes":{ + "POSITION":3446, + "NORMAL":3447, + "TEXCOORD_0":3448 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.6713", + "primitives":[ + { + "attributes":{ + "POSITION":3449, + "NORMAL":3450 + }, + "indices":3451, + "material":0 + } + ] + }, + { + "name":"Mesh.8475", + "primitives":[ + { + "attributes":{ + "POSITION":3452, + "NORMAL":3453 + }, + "indices":3454, + "material":3 + } + ] + }, + { + "name":"Mesh.4962", + "primitives":[ + { + "attributes":{ + "POSITION":3455, + "NORMAL":3456, + "TEXCOORD_0":3457 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7750", + "primitives":[ + { + "attributes":{ + "POSITION":3458, + "NORMAL":3459 + }, + "indices":3460, + "material":3 + } + ] + }, + { + "name":"Mesh.2226", + "primitives":[ + { + "attributes":{ + "POSITION":3461, + "NORMAL":3462, + "TEXCOORD_0":3463 + }, + "indices":3464, + "material":0 + } + ] + }, + { + "name":"Mesh.7454", + "primitives":[ + { + "attributes":{ + "POSITION":3465, + "NORMAL":3466, + "TEXCOORD_0":3467 + }, + "indices":1660, + "material":7 + } + ] + }, + { + "name":"Mesh.9083", + "primitives":[ + { + "attributes":{ + "POSITION":3468, + "NORMAL":3469, + "TEXCOORD_0":3470 + }, + "indices":3382, + "material":7 + } + ] + }, + { + "name":"Mesh.7937", + "primitives":[ + { + "attributes":{ + "POSITION":3471, + "NORMAL":3472 + }, + "indices":3473, + "material":3 + } + ] + }, + { + "name":"Mesh.8378", + "primitives":[ + { + "attributes":{ + "POSITION":3474, + "NORMAL":3475 + }, + "indices":3332, + "material":3 + } + ] + }, + { + "name":"Mesh.7181", + "primitives":[ + { + "attributes":{ + "POSITION":3476, + "NORMAL":3477, + "TEXCOORD_0":3478 + }, + "indices":3479, + "material":7 + } + ] + }, + { + "name":"Mesh.7535", + "primitives":[ + { + "attributes":{ + "POSITION":3480, + "NORMAL":3481 + }, + "indices":3482, + "material":3 + } + ] + }, + { + "name":"Mesh.6619", + "primitives":[ + { + "attributes":{ + "POSITION":3483, + "NORMAL":3484, + "TEXCOORD_0":3485 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.2442", + "primitives":[ + { + "attributes":{ + "POSITION":3486, + "NORMAL":3487, + "TEXCOORD_0":3488 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.2554", + "primitives":[ + { + "attributes":{ + "POSITION":3489, + "NORMAL":3490, + "TEXCOORD_0":3491 + }, + "indices":3492, + "material":0 + } + ] + }, + { + "name":"Mesh.5116", + "primitives":[ + { + "attributes":{ + "POSITION":3493, + "NORMAL":3494, + "TEXCOORD_0":3495 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2594", + "primitives":[ + { + "attributes":{ + "POSITION":3496, + "NORMAL":3497, + "TEXCOORD_0":3498 + }, + "indices":2032, + "material":0 + } + ] + }, + { + "name":"Mesh.8915", + "primitives":[ + { + "attributes":{ + "POSITION":3499, + "NORMAL":3500, + "TEXCOORD_0":3501 + }, + "indices":247, + "material":7 + } + ] + }, + { + "name":"Mesh.7105", + "primitives":[ + { + "attributes":{ + "POSITION":3502, + "NORMAL":3503, + "TEXCOORD_0":3504 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.406", + "primitives":[ + { + "attributes":{ + "POSITION":3505, + "NORMAL":3506 + }, + "indices":386, + "material":0 + } + ] + }, + { + "name":"Mesh.1701", + "primitives":[ + { + "attributes":{ + "POSITION":3507, + "NORMAL":3508, + "TEXCOORD_0":3509 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.738", + "primitives":[ + { + "attributes":{ + "POSITION":3510, + "NORMAL":3511, + "TEXCOORD_0":3512 + }, + "indices":3513, + "material":0 + } + ] + }, + { + "name":"Mesh.6787", + "primitives":[ + { + "attributes":{ + "POSITION":3514, + "NORMAL":3515, + "TEXCOORD_0":3516 + }, + "indices":855, + "material":0 + } + ] + }, + { + "name":"Mesh.8325", + "primitives":[ + { + "attributes":{ + "POSITION":3517, + "NORMAL":3518 + }, + "indices":3385, + "material":3 + } + ] + }, + { + "name":"Mesh.7608", + "primitives":[ + { + "attributes":{ + "POSITION":3519, + "NORMAL":3520 + }, + "indices":3521, + "material":3 + } + ] + }, + { + "name":"Mesh.8016", + "primitives":[ + { + "attributes":{ + "POSITION":3522, + "NORMAL":3523, + "TEXCOORD_0":3524 + }, + "indices":3525, + "material":0 + } + ] + }, + { + "name":"Mesh.5190", + "primitives":[ + { + "attributes":{ + "POSITION":3526, + "NORMAL":3527, + "TEXCOORD_0":3528 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.4910", + "primitives":[ + { + "attributes":{ + "POSITION":3529, + "NORMAL":3530, + "TEXCOORD_0":3531 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7321", + "primitives":[ + { + "attributes":{ + "POSITION":3532, + "NORMAL":3533, + "TEXCOORD_0":3534 + }, + "indices":3535, + "material":7 + } + ] + }, + { + "name":"Mesh.5267", + "primitives":[ + { + "attributes":{ + "POSITION":3536, + "NORMAL":3537, + "TEXCOORD_0":3538 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5399", + "primitives":[ + { + "attributes":{ + "POSITION":3539, + "NORMAL":3540, + "TEXCOORD_0":3541 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2523", + "primitives":[ + { + "attributes":{ + "POSITION":3542, + "NORMAL":3543, + "TEXCOORD_0":3544 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.5230", + "primitives":[ + { + "attributes":{ + "POSITION":3545, + "NORMAL":3546, + "TEXCOORD_0":3547 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2292", + "primitives":[ + { + "attributes":{ + "POSITION":3548, + "NORMAL":3549, + "TEXCOORD_0":3550 + }, + "indices":3267, + "material":0 + } + ] + }, + { + "name":"Mesh.106", + "primitives":[ + { + "attributes":{ + "POSITION":3551, + "NORMAL":3552, + "TEXCOORD_0":3553 + }, + "indices":3554, + "material":0 + } + ] + }, + { + "name":"Mesh.2699", + "primitives":[ + { + "attributes":{ + "POSITION":3555, + "NORMAL":3556, + "TEXCOORD_0":3557 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.838", + "primitives":[ + { + "attributes":{ + "POSITION":3558, + "NORMAL":3559, + "TEXCOORD_0":3560 + }, + "indices":2417, + "material":0 + } + ] + }, + { + "name":"Mesh.608", + "primitives":[ + { + "attributes":{ + "POSITION":3561, + "NORMAL":3562, + "TEXCOORD_0":3563 + }, + "indices":3564, + "material":3 + } + ] + }, + { + "name":"Mesh.8964", + "primitives":[ + { + "attributes":{ + "POSITION":3565, + "NORMAL":3566, + "TEXCOORD_0":3567 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.7577", + "primitives":[ + { + "attributes":{ + "POSITION":3568, + "NORMAL":3569 + }, + "indices":3445, + "material":3 + } + ] + }, + { + "name":"Mesh.8049", + "primitives":[ + { + "attributes":{ + "POSITION":3570, + "NORMAL":3571, + "TEXCOORD_0":3572 + }, + "indices":3573, + "material":3 + } + ] + }, + { + "name":"Mesh.2176", + "primitives":[ + { + "attributes":{ + "POSITION":3574, + "NORMAL":3575, + "TEXCOORD_0":3576 + }, + "indices":3189, + "material":0 + } + ] + }, + { + "name":"Mesh.7885", + "primitives":[ + { + "attributes":{ + "POSITION":3577, + "NORMAL":3578 + }, + "indices":3579, + "material":3 + } + ] + }, + { + "name":"Mesh.6889", + "primitives":[ + { + "attributes":{ + "POSITION":3580, + "NORMAL":3581, + "TEXCOORD_0":3582 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.4989", + "primitives":[ + { + "attributes":{ + "POSITION":3583, + "NORMAL":3584, + "TEXCOORD_0":3585 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1886", + "primitives":[ + { + "attributes":{ + "POSITION":3586, + "NORMAL":3587 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.2809", + "primitives":[ + { + "attributes":{ + "POSITION":3588, + "NORMAL":3589, + "TEXCOORD_0":3590 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.5048", + "primitives":[ + { + "attributes":{ + "POSITION":3591, + "NORMAL":3592, + "TEXCOORD_0":3593 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7978", + "primitives":[ + { + "attributes":{ + "POSITION":3594, + "NORMAL":3595, + "TEXCOORD_0":3596 + }, + "indices":3597, + "material":0 + } + ] + }, + { + "name":"Mesh.2312", + "primitives":[ + { + "attributes":{ + "POSITION":3598, + "NORMAL":3599, + "TEXCOORD_0":3600 + }, + "indices":3601, + "material":0 + } + ] + }, + { + "name":"Mesh.9188", + "primitives":[ + { + "attributes":{ + "POSITION":3602, + "NORMAL":3603, + "TEXCOORD_0":3604 + }, + "indices":2076, + "material":7 + } + ] + }, + { + "name":"Mesh.9194", + "primitives":[ + { + "attributes":{ + "POSITION":3605, + "NORMAL":3606, + "TEXCOORD_0":3607 + }, + "indices":3608, + "material":7 + } + ] + }, + { + "name":"Mesh.629", + "primitives":[ + { + "attributes":{ + "POSITION":3609, + "NORMAL":3610, + "TEXCOORD_0":3611 + }, + "indices":3612, + "material":3 + } + ] + }, + { + "name":"Mesh.2606", + "primitives":[ + { + "attributes":{ + "POSITION":3613, + "NORMAL":3614, + "TEXCOORD_0":3615 + }, + "indices":3616, + "material":0 + } + ] + }, + { + "name":"Mesh.2000", + "primitives":[ + { + "attributes":{ + "POSITION":3617, + "NORMAL":3618, + "TEXCOORD_0":3619 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.6733", + "primitives":[ + { + "attributes":{ + "POSITION":3620, + "NORMAL":3621 + }, + "indices":1775, + "material":0 + } + ] + }, + { + "name":"Mesh.881", + "primitives":[ + { + "attributes":{ + "POSITION":3622, + "NORMAL":3623, + "TEXCOORD_0":3624 + }, + "indices":3601, + "material":0 + } + ] + }, + { + "name":"Mesh.2139", + "primitives":[ + { + "attributes":{ + "POSITION":3625, + "NORMAL":3626, + "TEXCOORD_0":3627 + }, + "indices":3628, + "material":3 + } + ] + }, + { + "name":"Mesh.2455", + "primitives":[ + { + "attributes":{ + "POSITION":3629, + "NORMAL":3630, + "TEXCOORD_0":3631 + }, + "indices":313, + "material":4 + } + ] + }, + { + "name":"Mesh.7293", + "primitives":[ + { + "attributes":{ + "POSITION":3632, + "NORMAL":3633, + "TEXCOORD_0":3634 + }, + "indices":3635, + "material":7 + } + ] + }, + { + "name":"Mesh.1744", + "primitives":[ + { + "attributes":{ + "POSITION":3636, + "NORMAL":3637 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.8419", + "primitives":[ + { + "attributes":{ + "POSITION":3638, + "NORMAL":3639 + }, + "indices":2778, + "material":3 + } + ] + }, + { + "name":"Mesh.1929", + "primitives":[ + { + "attributes":{ + "POSITION":3640, + "NORMAL":3641 + }, + "indices":3642, + "material":0 + } + ] + }, + { + "name":"Mesh.580", + "primitives":[ + { + "attributes":{ + "POSITION":3643, + "NORMAL":3644, + "TEXCOORD_0":3645 + }, + "indices":3646, + "material":0 + } + ] + }, + { + "name":"Mesh.6401", + "primitives":[ + { + "attributes":{ + "POSITION":3647, + "NORMAL":3648 + }, + "indices":3451, + "material":0 + } + ] + }, + { + "name":"Mesh.5091", + "primitives":[ + { + "attributes":{ + "POSITION":3649, + "NORMAL":3650, + "TEXCOORD_0":3651 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5787", + "primitives":[ + { + "attributes":{ + "POSITION":3652, + "NORMAL":3653, + "TEXCOORD_0":3654 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.7998", + "primitives":[ + { + "attributes":{ + "POSITION":3655, + "NORMAL":3656, + "TEXCOORD_0":3657 + }, + "indices":2286, + "material":3 + } + ] + }, + { + "name":"Mesh.6114", + "primitives":[ + { + "attributes":{ + "POSITION":3658, + "NORMAL":3659, + "TEXCOORD_0":3660 + }, + "indices":1465, + "material":25 + } + ] + }, + { + "name":"Mesh.8021", + "primitives":[ + { + "attributes":{ + "POSITION":3661, + "NORMAL":3662, + "TEXCOORD_0":3663 + }, + "indices":3664, + "material":0 + } + ] + }, + { + "name":"Mesh.219", + "primitives":[ + { + "attributes":{ + "POSITION":3665, + "NORMAL":3666, + "TEXCOORD_0":3667 + }, + "indices":3668, + "material":3 + } + ] + }, + { + "name":"Mesh.8061", + "primitives":[ + { + "attributes":{ + "POSITION":3669, + "NORMAL":3670, + "TEXCOORD_0":3671 + }, + "indices":3573, + "material":3 + } + ] + }, + { + "name":"Mesh.5316", + "primitives":[ + { + "attributes":{ + "POSITION":3672, + "NORMAL":3673, + "TEXCOORD_0":3674 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1226", + "primitives":[ + { + "attributes":{ + "POSITION":3675, + "NORMAL":3676 + }, + "indices":3677, + "material":32 + } + ] + }, + { + "name":"Mesh.2386", + "primitives":[ + { + "attributes":{ + "POSITION":3678, + "NORMAL":3679 + }, + "indices":920, + "material":1 + } + ] + }, + { + "name":"Mesh.7478", + "primitives":[ + { + "attributes":{ + "POSITION":3680, + "NORMAL":3681 + }, + "indices":490, + "material":3 + } + ] + }, + { + "name":"Mesh.6515", + "primitives":[ + { + "attributes":{ + "POSITION":3682, + "NORMAL":3683, + "TEXCOORD_0":3684 + }, + "indices":3685, + "material":0 + } + ] + }, + { + "name":"Mesh.5060", + "primitives":[ + { + "attributes":{ + "POSITION":3686, + "NORMAL":3687, + "TEXCOORD_0":3688 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9052", + "primitives":[ + { + "attributes":{ + "POSITION":3689, + "NORMAL":3690, + "TEXCOORD_0":3691 + }, + "indices":2311, + "material":7 + } + ] + }, + { + "name":"Mesh.964", + "primitives":[ + { + "attributes":{ + "POSITION":3692, + "NORMAL":3693, + "TEXCOORD_0":3694 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.1787", + "primitives":[ + { + "attributes":{ + "POSITION":3695, + "NORMAL":3696 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.193", + "primitives":[ + { + "attributes":{ + "POSITION":3697, + "NORMAL":3698, + "TEXCOORD_0":3699 + }, + "indices":3700, + "material":0 + } + ] + }, + { + "name":"Mesh.813", + "primitives":[ + { + "attributes":{ + "POSITION":3701, + "NORMAL":3702, + "TEXCOORD_0":3703 + }, + "indices":3704, + "material":3 + } + ] + }, + { + "name":"Mesh.7376", + "primitives":[ + { + "attributes":{ + "POSITION":3705, + "NORMAL":3706, + "TEXCOORD_0":3707 + }, + "indices":3708, + "material":7 + } + ] + }, + { + "name":"Mesh.6012", + "primitives":[ + { + "attributes":{ + "POSITION":3709, + "NORMAL":3710, + "TEXCOORD_0":3711 + }, + "indices":3712, + "material":33 + } + ] + }, + { + "name":"Mesh.5460", + "primitives":[ + { + "attributes":{ + "POSITION":3713, + "NORMAL":3714, + "TEXCOORD_0":3715 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2180", + "primitives":[ + { + "attributes":{ + "POSITION":3716, + "NORMAL":3717, + "TEXCOORD_0":3718 + }, + "indices":3719, + "material":0 + } + ] + }, + { + "name":"Mesh.7407", + "primitives":[ + { + "attributes":{ + "POSITION":3720, + "NORMAL":3721, + "TEXCOORD_0":3722 + }, + "indices":1396, + "material":7 + } + ] + }, + { + "name":"Mesh.2012", + "primitives":[ + { + "attributes":{ + "POSITION":3723, + "NORMAL":3724, + "TEXCOORD_0":3725 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.6157", + "primitives":[ + { + "attributes":{ + "POSITION":3726, + "NORMAL":3727, + "TEXCOORD_0":3728 + }, + "indices":3729, + "material":33 + } + ] + }, + { + "name":"Mesh.5296", + "primitives":[ + { + "attributes":{ + "POSITION":3730, + "NORMAL":3731, + "TEXCOORD_0":3732 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6484", + "primitives":[ + { + "attributes":{ + "POSITION":3733, + "NORMAL":3734, + "TEXCOORD_0":3735 + }, + "indices":3736, + "material":0 + } + ] + }, + { + "name":"Mesh.2213", + "primitives":[ + { + "attributes":{ + "POSITION":3737, + "NORMAL":3738, + "TEXCOORD_0":3739 + }, + "indices":3740, + "material":0 + } + ] + }, + { + "name":"Mesh.6669", + "primitives":[ + { + "attributes":{ + "POSITION":3741, + "NORMAL":3742 + }, + "indices":1043, + "material":0 + } + ] + }, + { + "name":"Mesh.782", + "primitives":[ + { + "attributes":{ + "POSITION":3743, + "NORMAL":3744, + "TEXCOORD_0":3745 + }, + "indices":132, + "material":0 + } + ] + }, + { + "name":"Mesh.543", + "primitives":[ + { + "attributes":{ + "POSITION":3746, + "NORMAL":3747, + "TEXCOORD_0":3748 + }, + "indices":3749, + "material":0 + } + ] + }, + { + "name":"Mesh.2683", + "primitives":[ + { + "attributes":{ + "POSITION":3750, + "NORMAL":3751, + "TEXCOORD_0":3752 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.592", + "primitives":[ + { + "attributes":{ + "POSITION":3753, + "NORMAL":3754, + "TEXCOORD_0":3755 + }, + "indices":3756, + "material":0 + } + ] + }, + { + "name":"Mesh.6413", + "primitives":[ + { + "attributes":{ + "POSITION":3757, + "NORMAL":3758 + }, + "indices":1043, + "material":0 + } + ] + }, + { + "name":"Mesh.5103", + "primitives":[ + { + "attributes":{ + "POSITION":3759, + "NORMAL":3760, + "TEXCOORD_0":3761 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7706", + "primitives":[ + { + "attributes":{ + "POSITION":3762, + "NORMAL":3763 + }, + "indices":3764, + "material":3 + } + ] + }, + { + "name":"Mesh.8642", + "primitives":[ + { + "attributes":{ + "POSITION":3765, + "NORMAL":3766 + }, + "indices":1022, + "material":3 + } + ] + }, + { + "name":"Mesh.454", + "primitives":[ + { + "attributes":{ + "POSITION":3767, + "NORMAL":3768 + }, + "indices":3769, + "material":3 + } + ] + }, + { + "name":"Mesh.503", + "primitives":[ + { + "attributes":{ + "POSITION":3770, + "NORMAL":3771, + "TEXCOORD_0":3772 + }, + "indices":3773, + "material":0 + } + ] + }, + { + "name":"Mesh.966", + "primitives":[ + { + "attributes":{ + "POSITION":3774, + "NORMAL":3775, + "TEXCOORD_0":3776 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.1197", + "primitives":[ + { + "attributes":{ + "POSITION":3777, + "NORMAL":3778 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.2587", + "primitives":[ + { + "attributes":{ + "POSITION":3779, + "NORMAL":3780, + "TEXCOORD_0":3781 + }, + "indices":3122, + "material":0 + } + ] + }, + { + "name":"Mesh.6200", + "primitives":[ + { + "attributes":{ + "POSITION":3782, + "NORMAL":3783, + "TEXCOORD_0":3784 + }, + "indices":2118, + "material":12 + } + ] + }, + { + "name":"Mesh.6446", + "primitives":[ + { + "attributes":{ + "POSITION":3785, + "NORMAL":3786, + "TEXCOORD_0":3787 + }, + "indices":3788, + "material":0 + } + ] + }, + { + "name":"Mesh.4874", + "primitives":[ + { + "attributes":{ + "POSITION":3789, + "NORMAL":3790, + "TEXCOORD_0":3791 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7962", + "primitives":[ + { + "attributes":{ + "POSITION":3792, + "NORMAL":3793, + "TEXCOORD_0":3794 + }, + "indices":3795, + "material":0 + } + ] + }, + { + "name":"Mesh.7030", + "primitives":[ + { + "attributes":{ + "POSITION":3796, + "NORMAL":3797 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.414", + "primitives":[ + { + "attributes":{ + "POSITION":3798, + "NORMAL":3799 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.5072", + "primitives":[ + { + "attributes":{ + "POSITION":3800, + "NORMAL":3801, + "TEXCOORD_0":3802 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.419", + "primitives":[ + { + "attributes":{ + "POSITION":3803, + "NORMAL":3804 + }, + "indices":3642, + "material":0 + } + ] + }, + { + "name":"Mesh.7675", + "primitives":[ + { + "attributes":{ + "POSITION":3805, + "NORMAL":3806 + }, + "indices":3807, + "material":3 + } + ] + }, + { + "name":"Mesh.6712", + "primitives":[ + { + "attributes":{ + "POSITION":3808, + "NORMAL":3809 + }, + "indices":1385, + "material":0 + } + ] + }, + { + "name":"Mesh.8860", + "primitives":[ + { + "attributes":{ + "POSITION":3810, + "NORMAL":3811 + }, + "indices":3812, + "material":3 + } + ] + }, + { + "name":"Mesh.8474", + "primitives":[ + { + "attributes":{ + "POSITION":3813, + "NORMAL":3814 + }, + "indices":3815, + "material":3 + } + ] + }, + { + "name":"Mesh.4961", + "primitives":[ + { + "attributes":{ + "POSITION":3816, + "NORMAL":3817, + "TEXCOORD_0":3818 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5297", + "primitives":[ + { + "attributes":{ + "POSITION":3819, + "NORMAL":3820, + "TEXCOORD_0":3821 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9203", + "primitives":[ + { + "attributes":{ + "POSITION":3822, + "NORMAL":3823, + "TEXCOORD_0":3824 + }, + "indices":1886, + "material":7 + } + ] + }, + { + "name":"Mesh.487", + "primitives":[ + { + "attributes":{ + "POSITION":3825, + "NORMAL":3826, + "TEXCOORD_0":3827 + }, + "indices":1890, + "material":13 + } + ] + }, + { + "name":"Mesh.2225", + "primitives":[ + { + "attributes":{ + "POSITION":3828, + "NORMAL":3829, + "TEXCOORD_0":3830 + }, + "indices":3831, + "material":0 + } + ] + }, + { + "name":"Mesh.7453", + "primitives":[ + { + "attributes":{ + "POSITION":3832, + "NORMAL":3833, + "TEXCOORD_0":3834 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.2874", + "primitives":[ + { + "attributes":{ + "POSITION":3835, + "NORMAL":3836 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.5771", + "primitives":[ + { + "attributes":{ + "POSITION":3837, + "NORMAL":3838 + }, + "indices":3839, + "material":0 + } + ] + }, + { + "name":"Mesh.2553", + "primitives":[ + { + "attributes":{ + "POSITION":3840, + "NORMAL":3841, + "TEXCOORD_0":3842 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.604", + "primitives":[ + { + "attributes":{ + "POSITION":3843, + "NORMAL":3844, + "TEXCOORD_0":3845 + }, + "indices":3846, + "material":34 + } + ] + }, + { + "name":"Mesh.486", + "primitives":[ + { + "attributes":{ + "POSITION":3847, + "NORMAL":3848 + }, + "indices":3849, + "material":3 + } + ] + }, + { + "name":"Mesh.5115", + "primitives":[ + { + "attributes":{ + "POSITION":3850, + "NORMAL":3851, + "TEXCOORD_0":3852 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2593", + "primitives":[ + { + "attributes":{ + "POSITION":3853, + "NORMAL":3854, + "TEXCOORD_0":3855 + }, + "indices":1060, + "material":0 + } + ] + }, + { + "name":"Mesh.5969", + "primitives":[ + { + "attributes":{ + "POSITION":3856, + "NORMAL":3857, + "TEXCOORD_0":3858 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.7104", + "primitives":[ + { + "attributes":{ + "POSITION":3859, + "NORMAL":3860, + "TEXCOORD_0":3861 + }, + "indices":3862, + "material":7 + } + ] + }, + { + "name":"Mesh.5996", + "primitives":[ + { + "attributes":{ + "POSITION":3863, + "NORMAL":3864, + "TEXCOORD_0":3865 + }, + "indices":202, + "material":11 + } + ] + }, + { + "name":"Mesh.6124", + "primitives":[ + { + "attributes":{ + "POSITION":3866, + "NORMAL":3867, + "TEXCOORD_0":3868 + }, + "indices":266, + "material":12 + } + ] + }, + { + "name":"Mesh.2745", + "primitives":[ + { + "attributes":{ + "POSITION":3869, + "NORMAL":3870, + "TEXCOORD_0":3871 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.6472", + "primitives":[ + { + "attributes":{ + "POSITION":3872, + "NORMAL":3873, + "TEXCOORD_0":3874 + }, + "indices":3875, + "material":0 + } + ] + }, + { + "name":"Mesh.6786", + "primitives":[ + { + "attributes":{ + "POSITION":3876, + "NORMAL":3877, + "TEXCOORD_0":3878 + }, + "indices":3879, + "material":0 + } + ] + }, + { + "name":"Mesh.7607", + "primitives":[ + { + "attributes":{ + "POSITION":3880, + "NORMAL":3881 + }, + "indices":3882, + "material":3 + } + ] + }, + { + "name":"Mesh.7320", + "primitives":[ + { + "attributes":{ + "POSITION":3883, + "NORMAL":3884, + "TEXCOORD_0":3885 + }, + "indices":3886, + "material":7 + } + ] + }, + { + "name":"Mesh.432", + "primitives":[ + { + "attributes":{ + "POSITION":3887, + "NORMAL":3888 + }, + "indices":3889, + "material":0 + } + ] + }, + { + "name":"Mesh.105", + "primitives":[ + { + "attributes":{ + "POSITION":3890, + "NORMAL":3891, + "TEXCOORD_0":3892 + }, + "indices":3893, + "material":0 + } + ] + }, + { + "name":"Mesh.2698", + "primitives":[ + { + "attributes":{ + "POSITION":3894, + "NORMAL":3895, + "TEXCOORD_0":3896 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.837", + "primitives":[ + { + "attributes":{ + "POSITION":3897, + "NORMAL":3898, + "TEXCOORD_0":3899 + }, + "indices":3900, + "material":0 + } + ] + }, + { + "name":"Mesh.7536", + "primitives":[ + { + "attributes":{ + "POSITION":3901, + "NORMAL":3902 + }, + "indices":3903, + "material":3 + } + ] + }, + { + "name":"Mesh.8613", + "primitives":[ + { + "attributes":{ + "POSITION":3904, + "NORMAL":3905 + }, + "indices":3906, + "material":3 + } + ] + }, + { + "name":"Mesh.297", + "primitives":[ + { + "attributes":{ + "POSITION":3907, + "NORMAL":3908, + "TEXCOORD_0":3909 + }, + "indices":3910, + "material":0 + } + ] + }, + { + "name":"Mesh.6447", + "primitives":[ + { + "attributes":{ + "POSITION":3911, + "NORMAL":3912, + "TEXCOORD_0":3913 + }, + "indices":3914, + "material":0 + } + ] + }, + { + "name":"Mesh.4973", + "primitives":[ + { + "attributes":{ + "POSITION":3915, + "NORMAL":3916, + "TEXCOORD_0":3917 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7576", + "primitives":[ + { + "attributes":{ + "POSITION":3918, + "NORMAL":3919 + }, + "indices":3920, + "material":3 + } + ] + }, + { + "name":"Mesh.8048", + "primitives":[ + { + "attributes":{ + "POSITION":3921, + "NORMAL":3922, + "TEXCOORD_0":3923 + }, + "indices":3924, + "material":3 + } + ] + }, + { + "name":"Mesh.2175", + "primitives":[ + { + "attributes":{ + "POSITION":3925, + "NORMAL":3926, + "TEXCOORD_0":3927 + }, + "indices":1818, + "material":0 + } + ] + }, + { + "name":"Mesh.6888", + "primitives":[ + { + "attributes":{ + "POSITION":3928, + "NORMAL":3929 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.1046", + "primitives":[ + { + "attributes":{ + "POSITION":3930, + "NORMAL":3931, + "TEXCOORD_0":3932 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.6644", + "primitives":[ + { + "attributes":{ + "POSITION":3933, + "NORMAL":3934 + }, + "indices":6, + "material":0 + } + ] + }, + { + "name":"Mesh.492", + "primitives":[ + { + "attributes":{ + "POSITION":3935, + "NORMAL":3936 + }, + "indices":557, + "material":17 + } + ] + }, + { + "name":"Mesh.2237", + "primitives":[ + { + "attributes":{ + "POSITION":3937, + "NORMAL":3938, + "TEXCOORD_0":3939 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2808", + "primitives":[ + { + "attributes":{ + "POSITION":3940, + "NORMAL":3941, + "TEXCOORD_0":3942 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.5047", + "primitives":[ + { + "attributes":{ + "POSITION":3944, + "NORMAL":3945, + "TEXCOORD_0":3946 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9005", + "primitives":[ + { + "attributes":{ + "POSITION":3947, + "NORMAL":3948, + "TEXCOORD_0":3949 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.7977", + "primitives":[ + { + "attributes":{ + "POSITION":3950, + "NORMAL":3951, + "TEXCOORD_0":3952 + }, + "indices":3953, + "material":0 + } + ] + }, + { + "name":"Mesh.8923", + "primitives":[ + { + "attributes":{ + "POSITION":3954, + "NORMAL":3955, + "TEXCOORD_0":3956 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.991", + "primitives":[ + { + "attributes":{ + "POSITION":3957, + "NORMAL":3958, + "TEXCOORD_0":3959 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.8833", + "primitives":[ + { + "attributes":{ + "POSITION":3960, + "NORMAL":3961 + }, + "indices":3962, + "material":3 + } + ] + }, + { + "name":"Mesh.7507", + "primitives":[ + { + "attributes":{ + "POSITION":3963, + "NORMAL":3964 + }, + "indices":3965, + "material":3 + } + ] + }, + { + "name":"Mesh.8017", + "primitives":[ + { + "attributes":{ + "POSITION":3966, + "NORMAL":3967, + "TEXCOORD_0":3968 + }, + "indices":2838, + "material":0 + } + ] + }, + { + "name":"Mesh.2311", + "primitives":[ + { + "attributes":{ + "POSITION":3969, + "NORMAL":3970, + "TEXCOORD_0":3971 + }, + "indices":3972, + "material":0 + } + ] + }, + { + "name":"Mesh.5160", + "primitives":[ + { + "attributes":{ + "POSITION":3973, + "NORMAL":3974, + "TEXCOORD_0":3975 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5976", + "primitives":[ + { + "attributes":{ + "POSITION":3976, + "NORMAL":3977, + "TEXCOORD_0":3978 + }, + "indices":3979, + "material":12 + } + ] + }, + { + "name":"Mesh.2605", + "primitives":[ + { + "attributes":{ + "POSITION":3980, + "NORMAL":3981, + "TEXCOORD_0":3982 + }, + "indices":3983, + "material":0 + } + ] + }, + { + "name":"Mesh.1999", + "primitives":[ + { + "attributes":{ + "POSITION":3984, + "NORMAL":3985, + "TEXCOORD_0":3986 + }, + "indices":1091, + "material":0 + } + ] + }, + { + "name":"Mesh.880", + "primitives":[ + { + "attributes":{ + "POSITION":3987, + "NORMAL":3988, + "TEXCOORD_0":3989 + }, + "indices":3972, + "material":0 + } + ] + }, + { + "name":"Mesh.6144", + "primitives":[ + { + "attributes":{ + "POSITION":3990, + "NORMAL":3991, + "TEXCOORD_0":3992 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.159", + "primitives":[ + { + "attributes":{ + "POSITION":3994, + "NORMAL":3995, + "TEXCOORD_0":3996 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8892", + "primitives":[ + { + "attributes":{ + "POSITION":3997, + "NORMAL":3998 + }, + "indices":3999, + "material":3 + } + ] + }, + { + "name":"Mesh.7292", + "primitives":[ + { + "attributes":{ + "POSITION":4000, + "NORMAL":4001, + "TEXCOORD_0":4002 + }, + "indices":4003, + "material":7 + } + ] + }, + { + "name":"Mesh.8594", + "primitives":[ + { + "attributes":{ + "POSITION":4004, + "NORMAL":4005 + }, + "indices":4006, + "material":3 + } + ] + }, + { + "name":"Mesh.1743", + "primitives":[ + { + "attributes":{ + "POSITION":4007, + "NORMAL":4008 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.8418", + "primitives":[ + { + "attributes":{ + "POSITION":4009, + "NORMAL":4010 + }, + "indices":1669, + "material":3 + } + ] + }, + { + "name":"Mesh.1928", + "primitives":[ + { + "attributes":{ + "POSITION":4011, + "NORMAL":4012 + }, + "indices":2743, + "material":0 + } + ] + }, + { + "name":"Mesh.8780", + "primitives":[ + { + "attributes":{ + "POSITION":4013, + "NORMAL":4014 + }, + "indices":1461, + "material":3 + } + ] + }, + { + "name":"Mesh.7988", + "primitives":[ + { + "attributes":{ + "POSITION":4015, + "NORMAL":4016, + "TEXCOORD_0":4017 + }, + "indices":4018, + "material":3 + } + ] + }, + { + "name":"Mesh.7508", + "primitives":[ + { + "attributes":{ + "POSITION":4019, + "NORMAL":4020 + }, + "indices":4021, + "material":3 + } + ] + }, + { + "name":"Mesh.8429", + "primitives":[ + { + "attributes":{ + "POSITION":4022, + "NORMAL":4023 + }, + "indices":4024, + "material":3 + } + ] + }, + { + "name":"Mesh.6400", + "primitives":[ + { + "attributes":{ + "POSITION":4025, + "NORMAL":4026 + }, + "indices":4027, + "material":0 + } + ] + }, + { + "name":"Mesh.2826", + "primitives":[ + { + "attributes":{ + "POSITION":4028, + "NORMAL":4029, + "TEXCOORD_0":4030 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.7136", + "primitives":[ + { + "attributes":{ + "POSITION":4031, + "NORMAL":4032, + "TEXCOORD_0":4033 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.5786", + "primitives":[ + { + "attributes":{ + "POSITION":4034, + "NORMAL":4035, + "TEXCOORD_0":4036 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.8020", + "primitives":[ + { + "attributes":{ + "POSITION":4037, + "NORMAL":4038, + "TEXCOORD_0":4039 + }, + "indices":3795, + "material":0 + } + ] + }, + { + "name":"Mesh.1857", + "primitives":[ + { + "attributes":{ + "POSITION":4040, + "NORMAL":4041 + }, + "indices":4042, + "material":0 + } + ] + }, + { + "name":"Mesh.1225", + "primitives":[ + { + "attributes":{ + "POSITION":4043, + "NORMAL":4044, + "TEXCOORD_0":4045 + }, + "indices":4046, + "material":29 + } + ] + }, + { + "name":"Mesh.2385", + "primitives":[ + { + "attributes":{ + "POSITION":4047, + "NORMAL":4048 + }, + "indices":4049, + "material":0 + } + ] + }, + { + "name":"Mesh.8820", + "primitives":[ + { + "attributes":{ + "POSITION":4050, + "NORMAL":4051 + }, + "indices":4052, + "material":3 + } + ] + }, + { + "name":"Mesh.7477", + "primitives":[ + { + "attributes":{ + "POSITION":4053, + "NORMAL":4054 + }, + "indices":2433, + "material":3 + } + ] + }, + { + "name":"Mesh.6514", + "primitives":[ + { + "attributes":{ + "POSITION":4055, + "NORMAL":4056, + "TEXCOORD_0":4057 + }, + "indices":1839, + "material":0 + } + ] + }, + { + "name":"Mesh.8244", + "primitives":[ + { + "attributes":{ + "POSITION":4058, + "NORMAL":4059 + }, + "indices":3920, + "material":3 + } + ] + }, + { + "name":"Mesh.8469", + "primitives":[ + { + "attributes":{ + "POSITION":4060, + "NORMAL":4061 + }, + "indices":4062, + "material":3 + } + ] + }, + { + "name":"Mesh.7626", + "primitives":[ + { + "attributes":{ + "POSITION":4063, + "NORMAL":4064 + }, + "indices":4065, + "material":3 + } + ] + }, + { + "name":"Mesh.5059", + "primitives":[ + { + "attributes":{ + "POSITION":4066, + "NORMAL":4067, + "TEXCOORD_0":4068 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8067", + "primitives":[ + { + "attributes":{ + "POSITION":4069, + "NORMAL":4070, + "TEXCOORD_0":4071 + }, + "indices":1469, + "material":0 + } + ] + }, + { + "name":"Mesh.5738", + "primitives":[ + { + "attributes":{ + "POSITION":4072, + "NORMAL":4073 + }, + "indices":4074, + "material":0 + } + ] + }, + { + "name":"Mesh.5755", + "primitives":[ + { + "attributes":{ + "POSITION":4075, + "NORMAL":4076 + }, + "indices":735, + "material":0 + } + ] + }, + { + "name":"Mesh.7989", + "primitives":[ + { + "attributes":{ + "POSITION":4077, + "NORMAL":4078, + "TEXCOORD_0":4079 + }, + "indices":4080, + "material":3 + } + ] + }, + { + "name":"Mesh.812", + "primitives":[ + { + "attributes":{ + "POSITION":4081, + "NORMAL":4082, + "TEXCOORD_0":4083 + }, + "indices":4084, + "material":0 + } + ] + }, + { + "name":"Mesh.2113", + "primitives":[ + { + "attributes":{ + "POSITION":4085, + "NORMAL":4086, + "TEXCOORD_0":4087 + }, + "indices":4088, + "material":3 + } + ] + }, + { + "name":"Mesh.7375", + "primitives":[ + { + "attributes":{ + "POSITION":4089, + "NORMAL":4090, + "TEXCOORD_0":4091 + }, + "indices":4092, + "material":7 + } + ] + }, + { + "name":"Mesh.2891", + "primitives":[ + { + "attributes":{ + "POSITION":4093, + "NORMAL":4094 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.5284", + "primitives":[ + { + "attributes":{ + "POSITION":4095, + "NORMAL":4096, + "TEXCOORD_0":4097 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7406", + "primitives":[ + { + "attributes":{ + "POSITION":4098, + "NORMAL":4099, + "TEXCOORD_0":4100 + }, + "indices":1056, + "material":7 + } + ] + }, + { + "name":"Mesh.2011", + "primitives":[ + { + "attributes":{ + "POSITION":4101, + "NORMAL":4102, + "TEXCOORD_0":4103 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2825", + "primitives":[ + { + "attributes":{ + "POSITION":4104, + "NORMAL":4105, + "TEXCOORD_0":4106 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.6156", + "primitives":[ + { + "attributes":{ + "POSITION":4107, + "NORMAL":4108, + "TEXCOORD_0":4109 + }, + "indices":3712, + "material":33 + } + ] + }, + { + "name":"Mesh.6483", + "primitives":[ + { + "attributes":{ + "POSITION":4110, + "NORMAL":4111, + "TEXCOORD_0":4112 + }, + "indices":4113, + "material":0 + } + ] + }, + { + "name":"Mesh.2212", + "primitives":[ + { + "attributes":{ + "POSITION":4114, + "NORMAL":4115, + "TEXCOORD_0":4116 + }, + "indices":4117, + "material":0 + } + ] + }, + { + "name":"Mesh.9130", + "primitives":[ + { + "attributes":{ + "POSITION":4118, + "NORMAL":4119, + "TEXCOORD_0":4120 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.7351", + "primitives":[ + { + "attributes":{ + "POSITION":4121, + "NORMAL":4122, + "TEXCOORD_0":4123 + }, + "indices":2369, + "material":7 + } + ] + }, + { + "name":"Mesh.6668", + "primitives":[ + { + "attributes":{ + "POSITION":4124, + "NORMAL":4125 + }, + "indices":2295, + "material":0 + } + ] + }, + { + "name":"Mesh.781", + "primitives":[ + { + "attributes":{ + "POSITION":4126, + "NORMAL":4127, + "TEXCOORD_0":4128 + }, + "indices":1878, + "material":0 + } + ] + }, + { + "name":"Mesh.542", + "primitives":[ + { + "attributes":{ + "POSITION":4129, + "NORMAL":4130, + "TEXCOORD_0":4131 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.6952", + "primitives":[ + { + "attributes":{ + "POSITION":4132, + "NORMAL":4133 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.7344", + "primitives":[ + { + "attributes":{ + "POSITION":4134, + "NORMAL":4135, + "TEXCOORD_0":4136 + }, + "indices":4137, + "material":7 + } + ] + }, + { + "name":"Mesh.431", + "primitives":[ + { + "attributes":{ + "POSITION":4138, + "NORMAL":4139 + }, + "indices":1355, + "material":0 + } + ] + }, + { + "name":"Mesh.591", + "primitives":[ + { + "attributes":{ + "POSITION":4140, + "NORMAL":4141, + "TEXCOORD_0":4142 + }, + "indices":4143, + "material":0 + } + ] + }, + { + "name":"Mesh.6412", + "primitives":[ + { + "attributes":{ + "POSITION":4144, + "NORMAL":4145 + }, + "indices":2295, + "material":0 + } + ] + }, + { + "name":"Mesh.5102", + "primitives":[ + { + "attributes":{ + "POSITION":4146, + "NORMAL":4147, + "TEXCOORD_0":4148 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6270", + "primitives":[ + { + "attributes":{ + "POSITION":4149, + "NORMAL":4150, + "TEXCOORD_0":4151 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.453", + "primitives":[ + { + "attributes":{ + "POSITION":4152, + "NORMAL":4153 + }, + "indices":4154, + "material":3 + } + ] + }, + { + "name":"Mesh.824", + "primitives":[ + { + "attributes":{ + "POSITION":4155, + "NORMAL":4156, + "TEXCOORD_0":4157 + }, + "indices":2708, + "material":3 + } + ] + }, + { + "name":"Mesh.8621", + "primitives":[ + { + "attributes":{ + "POSITION":4158, + "NORMAL":4159 + }, + "indices":3071, + "material":3 + } + ] + }, + { + "name":"Mesh.8504", + "primitives":[ + { + "attributes":{ + "POSITION":4160, + "NORMAL":4161 + }, + "indices":4162, + "material":3 + } + ] + }, + { + "name":"Mesh.7307", + "primitives":[ + { + "attributes":{ + "POSITION":4163, + "NORMAL":4164, + "TEXCOORD_0":4165 + }, + "indices":4166, + "material":7 + } + ] + }, + { + "name":"Mesh.502", + "primitives":[ + { + "attributes":{ + "POSITION":4167, + "NORMAL":4168, + "TEXCOORD_0":4169 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.8102", + "primitives":[ + { + "attributes":{ + "POSITION":4170, + "NORMAL":4171 + }, + "indices":3332, + "material":3 + } + ] + }, + { + "name":"Mesh.6992", + "primitives":[ + { + "attributes":{ + "POSITION":4172, + "NORMAL":4173 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.2054", + "primitives":[ + { + "attributes":{ + "POSITION":4174, + "NORMAL":4175, + "TEXCOORD_0":4176 + }, + "indices":3280, + "material":0 + } + ] + }, + { + "name":"Mesh.6199", + "primitives":[ + { + "attributes":{ + "POSITION":4177, + "NORMAL":4178, + "TEXCOORD_0":4179 + }, + "indices":2118, + "material":12 + } + ] + }, + { + "name":"Mesh.7961", + "primitives":[ + { + "attributes":{ + "POSITION":4180, + "NORMAL":4181, + "TEXCOORD_0":4182 + }, + "indices":4183, + "material":0 + } + ] + }, + { + "name":"Mesh.8288", + "primitives":[ + { + "attributes":{ + "POSITION":4184, + "NORMAL":4185 + }, + "indices":2436, + "material":3 + } + ] + }, + { + "name":"Mesh.7674", + "primitives":[ + { + "attributes":{ + "POSITION":4186, + "NORMAL":4187 + }, + "indices":4188, + "material":3 + } + ] + }, + { + "name":"Mesh.6711", + "primitives":[ + { + "attributes":{ + "POSITION":4189, + "NORMAL":4190 + }, + "indices":1458, + "material":0 + } + ] + }, + { + "name":"Mesh.8473", + "primitives":[ + { + "attributes":{ + "POSITION":4191, + "NORMAL":4192 + }, + "indices":4193, + "material":3 + } + ] + }, + { + "name":"Mesh.4960", + "primitives":[ + { + "attributes":{ + "POSITION":4194, + "NORMAL":4195, + "TEXCOORD_0":4196 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9117", + "primitives":[ + { + "attributes":{ + "POSITION":4197, + "NORMAL":4198, + "TEXCOORD_0":4199 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.639", + "primitives":[ + { + "attributes":{ + "POSITION":4200, + "NORMAL":4201, + "TEXCOORD_0":4202 + }, + "indices":4203, + "material":3 + } + ] + }, + { + "name":"Mesh.7254", + "primitives":[ + { + "attributes":{ + "POSITION":4204, + "NORMAL":4205, + "TEXCOORD_0":4206 + }, + "indices":4207, + "material":7 + } + ] + }, + { + "name":"Mesh.8217", + "primitives":[ + { + "attributes":{ + "POSITION":4208, + "NORMAL":4209 + }, + "indices":4210, + "material":3 + } + ] + }, + { + "name":"Mesh.2224", + "primitives":[ + { + "attributes":{ + "POSITION":4211, + "NORMAL":4212, + "TEXCOORD_0":4213 + }, + "indices":4214, + "material":0 + } + ] + }, + { + "name":"Mesh.7129", + "primitives":[ + { + "attributes":{ + "POSITION":4215, + "NORMAL":4216, + "TEXCOORD_0":4217 + }, + "indices":4218, + "material":7 + } + ] + }, + { + "name":"Mesh.2274", + "primitives":[ + { + "attributes":{ + "POSITION":4219, + "NORMAL":4220, + "TEXCOORD_0":4221 + }, + "indices":1868, + "material":0 + } + ] + }, + { + "name":"Mesh.793", + "primitives":[ + { + "attributes":{ + "POSITION":4222, + "NORMAL":4223, + "TEXCOORD_0":4224 + }, + "indices":1497, + "material":0 + } + ] + }, + { + "name":"Mesh.5770", + "primitives":[ + { + "attributes":{ + "POSITION":4225, + "NORMAL":4226 + }, + "indices":4227, + "material":0 + } + ] + }, + { + "name":"Mesh.603", + "primitives":[ + { + "attributes":{ + "POSITION":4228, + "NORMAL":4229, + "TEXCOORD_0":4230 + }, + "indices":4231, + "material":0 + } + ] + }, + { + "name":"Mesh.425", + "primitives":[ + { + "attributes":{ + "POSITION":4232, + "NORMAL":4233 + }, + "indices":2600, + "material":0 + } + ] + }, + { + "name":"Mesh.1717", + "primitives":[ + { + "attributes":{ + "POSITION":4234, + "NORMAL":4235, + "TEXCOORD_0":4236 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.5114", + "primitives":[ + { + "attributes":{ + "POSITION":4237, + "NORMAL":4238, + "TEXCOORD_0":4239 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7864", + "primitives":[ + { + "attributes":{ + "POSITION":4240, + "NORMAL":4241 + }, + "indices":4242, + "material":3 + } + ] + }, + { + "name":"Mesh.5450", + "primitives":[ + { + "attributes":{ + "POSITION":4243, + "NORMAL":4244, + "TEXCOORD_0":4245 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2735", + "primitives":[ + { + "attributes":{ + "POSITION":4246, + "NORMAL":4247, + "TEXCOORD_0":4248 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.6771", + "primitives":[ + { + "attributes":{ + "POSITION":4249, + "NORMAL":4250 + }, + "indices":4251, + "material":0 + } + ] + }, + { + "name":"Mesh.7027", + "primitives":[ + { + "attributes":{ + "POSITION":4252, + "NORMAL":4253 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.7103", + "primitives":[ + { + "attributes":{ + "POSITION":4254, + "NORMAL":4255, + "TEXCOORD_0":4256 + }, + "indices":4257, + "material":7 + } + ] + }, + { + "name":"Mesh.6934", + "primitives":[ + { + "attributes":{ + "POSITION":4258, + "NORMAL":4259 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.5995", + "primitives":[ + { + "attributes":{ + "POSITION":4260, + "NORMAL":4261, + "TEXCOORD_0":4262 + }, + "indices":4263, + "material":5 + } + ] + }, + { + "name":"Mesh.4806", + "primitives":[ + { + "attributes":{ + "POSITION":4264, + "NORMAL":4265, + "TEXCOORD_0":4266 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6785", + "primitives":[ + { + "attributes":{ + "POSITION":4267, + "NORMAL":4268, + "TEXCOORD_0":4269 + }, + "indices":4270, + "material":0 + } + ] + }, + { + "name":"Mesh.7606", + "primitives":[ + { + "attributes":{ + "POSITION":4271, + "NORMAL":4272 + }, + "indices":4273, + "material":3 + } + ] + }, + { + "name":"Mesh.7319", + "primitives":[ + { + "attributes":{ + "POSITION":4274, + "NORMAL":4275, + "TEXCOORD_0":4276 + }, + "indices":2653, + "material":7 + } + ] + }, + { + "name":"Mesh.2521", + "primitives":[ + { + "attributes":{ + "POSITION":4277, + "NORMAL":4278, + "TEXCOORD_0":4279 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.5228", + "primitives":[ + { + "attributes":{ + "POSITION":4280, + "NORMAL":4281, + "TEXCOORD_0":4282 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.104", + "primitives":[ + { + "attributes":{ + "POSITION":4283, + "NORMAL":4284, + "TEXCOORD_0":4285 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2697", + "primitives":[ + { + "attributes":{ + "POSITION":4286, + "NORMAL":4287, + "TEXCOORD_0":4288 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.8966", + "primitives":[ + { + "attributes":{ + "POSITION":4289, + "NORMAL":4290, + "TEXCOORD_0":4291 + }, + "indices":1307, + "material":7 + } + ] + }, + { + "name":"Mesh.5268", + "primitives":[ + { + "attributes":{ + "POSITION":4292, + "NORMAL":4293, + "TEXCOORD_0":4294 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7412", + "primitives":[ + { + "attributes":{ + "POSITION":4295, + "NORMAL":4296, + "TEXCOORD_0":4297 + }, + "indices":4298, + "material":7 + } + ] + }, + { + "name":"Mesh.7748", + "primitives":[ + { + "attributes":{ + "POSITION":4299, + "NORMAL":4300 + }, + "indices":4301, + "material":3 + } + ] + }, + { + "name":"Mesh.4972", + "primitives":[ + { + "attributes":{ + "POSITION":4302, + "NORMAL":4303, + "TEXCOORD_0":4304 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7575", + "primitives":[ + { + "attributes":{ + "POSITION":4305, + "NORMAL":4306 + }, + "indices":4307, + "material":3 + } + ] + }, + { + "name":"Mesh.8047", + "primitives":[ + { + "attributes":{ + "POSITION":4308, + "NORMAL":4309, + "TEXCOORD_0":4310 + }, + "indices":4080, + "material":3 + } + ] + }, + { + "name":"Mesh.6467", + "primitives":[ + { + "attributes":{ + "POSITION":4311, + "NORMAL":4312, + "TEXCOORD_0":4313 + }, + "indices":4314, + "material":0 + } + ] + }, + { + "name":"Mesh.2174", + "primitives":[ + { + "attributes":{ + "POSITION":4315, + "NORMAL":4316, + "TEXCOORD_0":4317 + }, + "indices":1128, + "material":0 + } + ] + }, + { + "name":"Mesh.6887", + "primitives":[ + { + "attributes":{ + "POSITION":4318, + "NORMAL":4319, + "TEXCOORD_0":4320 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.1884", + "primitives":[ + { + "attributes":{ + "POSITION":4321, + "NORMAL":4322 + }, + "indices":386, + "material":0 + } + ] + }, + { + "name":"Mesh.2236", + "primitives":[ + { + "attributes":{ + "POSITION":4323, + "NORMAL":4324, + "TEXCOORD_0":4325 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2807", + "primitives":[ + { + "attributes":{ + "POSITION":4326, + "NORMAL":4327, + "TEXCOORD_0":4328 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.5046", + "primitives":[ + { + "attributes":{ + "POSITION":4329, + "NORMAL":4330, + "TEXCOORD_0":4331 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6143", + "primitives":[ + { + "attributes":{ + "POSITION":4332, + "NORMAL":4333, + "TEXCOORD_0":4334 + }, + "indices":187, + "material":5 + } + ] + }, + { + "name":"Mesh.885", + "primitives":[ + { + "attributes":{ + "POSITION":4335, + "NORMAL":4336, + "TEXCOORD_0":4337 + }, + "indices":2221, + "material":0 + } + ] + }, + { + "name":"Mesh.7976", + "primitives":[ + { + "attributes":{ + "POSITION":4338, + "NORMAL":4339, + "TEXCOORD_0":4340 + }, + "indices":1839, + "material":0 + } + ] + }, + { + "name":"Mesh.8340", + "primitives":[ + { + "attributes":{ + "POSITION":4341, + "NORMAL":4342 + }, + "indices":4343, + "material":3 + } + ] + }, + { + "name":"Mesh.6921", + "primitives":[ + { + "attributes":{ + "POSITION":4344, + "NORMAL":4345, + "TEXCOORD_0":4346 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.990", + "primitives":[ + { + "attributes":{ + "POSITION":4347, + "NORMAL":4348, + "TEXCOORD_0":4349 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.2310", + "primitives":[ + { + "attributes":{ + "POSITION":4350, + "NORMAL":4351, + "TEXCOORD_0":4352 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5126", + "primitives":[ + { + "attributes":{ + "POSITION":4353, + "NORMAL":4354, + "TEXCOORD_0":4355 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2604", + "primitives":[ + { + "attributes":{ + "POSITION":4356, + "NORMAL":4357, + "TEXCOORD_0":4358 + }, + "indices":4359, + "material":0 + } + ] + }, + { + "name":"Mesh.1998", + "primitives":[ + { + "attributes":{ + "POSITION":4360, + "NORMAL":4361, + "TEXCOORD_0":4362 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.879", + "primitives":[ + { + "attributes":{ + "POSITION":4363, + "NORMAL":4364, + "TEXCOORD_0":4365 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8891", + "primitives":[ + { + "attributes":{ + "POSITION":4366, + "NORMAL":4367 + }, + "indices":4368, + "material":3 + } + ] + }, + { + "name":"Mesh.7291", + "primitives":[ + { + "attributes":{ + "POSITION":4369, + "NORMAL":4370, + "TEXCOORD_0":4371 + }, + "indices":4372, + "material":7 + } + ] + }, + { + "name":"Mesh.1699", + "primitives":[ + { + "attributes":{ + "POSITION":4373, + "NORMAL":4374, + "TEXCOORD_0":4375 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.1742", + "primitives":[ + { + "attributes":{ + "POSITION":4376, + "NORMAL":4377 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.8417", + "primitives":[ + { + "attributes":{ + "POSITION":4378, + "NORMAL":4379 + }, + "indices":4380, + "material":3 + } + ] + }, + { + "name":"Mesh.8287", + "primitives":[ + { + "attributes":{ + "POSITION":4381, + "NORMAL":4382 + }, + "indices":4383, + "material":3 + } + ] + }, + { + "name":"Mesh.7315", + "primitives":[ + { + "attributes":{ + "POSITION":4384, + "NORMAL":4385, + "TEXCOORD_0":4386 + }, + "indices":4387, + "material":7 + } + ] + }, + { + "name":"Mesh.340", + "primitives":[ + { + "attributes":{ + "POSITION":4388, + "NORMAL":4389, + "TEXCOORD_0":4390 + }, + "indices":4391, + "material":0 + } + ] + }, + { + "name":"Mesh.1927", + "primitives":[ + { + "attributes":{ + "POSITION":4392, + "NORMAL":4393, + "TEXCOORD_0":4394 + }, + "indices":3276, + "material":6 + } + ] + }, + { + "name":"Mesh.5688", + "primitives":[ + { + "attributes":{ + "POSITION":4395, + "NORMAL":4396, + "TEXCOORD_0":4397 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2850", + "primitives":[ + { + "attributes":{ + "POSITION":4398, + "NORMAL":4399 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6399", + "primitives":[ + { + "attributes":{ + "POSITION":4400, + "NORMAL":4401 + }, + "indices":4402, + "material":0 + } + ] + }, + { + "name":"Mesh.5785", + "primitives":[ + { + "attributes":{ + "POSITION":4403, + "NORMAL":4404, + "TEXCOORD_0":4405 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.6112", + "primitives":[ + { + "attributes":{ + "POSITION":4406, + "NORMAL":4407, + "TEXCOORD_0":4408 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.6877", + "primitives":[ + { + "attributes":{ + "POSITION":4409, + "NORMAL":4410 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.008", + "primitives":[ + { + "attributes":{ + "POSITION":4411, + "NORMAL":4412, + "TEXCOORD_0":4413 + }, + "indices":34, + "material":35 + } + ] + }, + { + "name":"Mesh.8059", + "primitives":[ + { + "attributes":{ + "POSITION":4414, + "NORMAL":4415, + "TEXCOORD_0":4416 + }, + "indices":4080, + "material":3 + } + ] + }, + { + "name":"Mesh.1224", + "primitives":[ + { + "attributes":{ + "POSITION":4417, + "NORMAL":4418, + "TEXCOORD_0":4419 + }, + "indices":4420, + "material":29 + } + ] + }, + { + "name":"Mesh.9041", + "primitives":[ + { + "attributes":{ + "POSITION":4421, + "NORMAL":4422, + "TEXCOORD_0":4423 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.2367", + "primitives":[ + { + "attributes":{ + "POSITION":4424, + "NORMAL":4425, + "TEXCOORD_0":4426 + }, + "indices":3267, + "material":0 + } + ] + }, + { + "name":"Mesh.2384", + "primitives":[ + { + "attributes":{ + "POSITION":4427, + "NORMAL":4428 + }, + "indices":4429, + "material":0 + } + ] + }, + { + "name":"Mesh.6709", + "primitives":[ + { + "attributes":{ + "POSITION":4430, + "NORMAL":4431 + }, + "indices":1104, + "material":0 + } + ] + }, + { + "name":"Mesh.7476", + "primitives":[ + { + "attributes":{ + "POSITION":4432, + "NORMAL":4433 + }, + "indices":4434, + "material":3 + } + ] + }, + { + "name":"Mesh.6513", + "primitives":[ + { + "attributes":{ + "POSITION":4435, + "NORMAL":4436, + "TEXCOORD_0":4437 + }, + "indices":4314, + "material":0 + } + ] + }, + { + "name":"Mesh.5058", + "primitives":[ + { + "attributes":{ + "POSITION":4438, + "NORMAL":4439, + "TEXCOORD_0":4440 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5754", + "primitives":[ + { + "attributes":{ + "POSITION":4441, + "NORMAL":4442 + }, + "indices":1949, + "material":0 + } + ] + }, + { + "name":"Mesh.2974", + "primitives":[ + { + "attributes":{ + "POSITION":4443, + "NORMAL":4444, + "TEXCOORD_0":4445 + }, + "indices":602, + "material":7 + } + ] + }, + { + "name":"Mesh.1785", + "primitives":[ + { + "attributes":{ + "POSITION":4446, + "NORMAL":4447 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.2112", + "primitives":[ + { + "attributes":{ + "POSITION":4448, + "NORMAL":4449, + "TEXCOORD_0":4450 + }, + "indices":4203, + "material":3 + } + ] + }, + { + "name":"Mesh.7374", + "primitives":[ + { + "attributes":{ + "POSITION":4451, + "NORMAL":4452, + "TEXCOORD_0":4453 + }, + "indices":4454, + "material":7 + } + ] + }, + { + "name":"Mesh.5283", + "primitives":[ + { + "attributes":{ + "POSITION":4455, + "NORMAL":4456, + "TEXCOORD_0":4457 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7405", + "primitives":[ + { + "attributes":{ + "POSITION":4458, + "NORMAL":4459, + "TEXCOORD_0":4460 + }, + "indices":1660, + "material":7 + } + ] + }, + { + "name":"Mesh.2010", + "primitives":[ + { + "attributes":{ + "POSITION":4461, + "NORMAL":4462, + "TEXCOORD_0":4463 + }, + "indices":4464, + "material":0 + } + ] + }, + { + "name":"Mesh.7656", + "primitives":[ + { + "attributes":{ + "POSITION":4465, + "NORMAL":4466 + }, + "indices":68, + "material":3 + } + ] + }, + { + "name":"Mesh.6482", + "primitives":[ + { + "attributes":{ + "POSITION":4467, + "NORMAL":4468, + "TEXCOORD_0":4469 + }, + "indices":4470, + "material":0 + } + ] + }, + { + "name":"Mesh.2211", + "primitives":[ + { + "attributes":{ + "POSITION":4471, + "NORMAL":4472, + "TEXCOORD_0":4473 + }, + "indices":3513, + "material":0 + } + ] + }, + { + "name":"Mesh.5027", + "primitives":[ + { + "attributes":{ + "POSITION":4474, + "NORMAL":4475, + "TEXCOORD_0":4476 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6942", + "primitives":[ + { + "attributes":{ + "POSITION":4477, + "NORMAL":4478, + "TEXCOORD_0":4479 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.5723", + "primitives":[ + { + "attributes":{ + "POSITION":4480, + "NORMAL":4481 + }, + "indices":1084, + "material":0 + } + ] + }, + { + "name":"Mesh.6667", + "primitives":[ + { + "attributes":{ + "POSITION":4482, + "NORMAL":4483 + }, + "indices":4074, + "material":0 + } + ] + }, + { + "name":"Mesh.7343", + "primitives":[ + { + "attributes":{ + "POSITION":4484, + "NORMAL":4485, + "TEXCOORD_0":4486 + }, + "indices":3535, + "material":7 + } + ] + }, + { + "name":"Mesh.2681", + "primitives":[ + { + "attributes":{ + "POSITION":4487, + "NORMAL":4488, + "TEXCOORD_0":4489 + }, + "indices":4490, + "material":0 + } + ] + }, + { + "name":"Mesh.5252", + "primitives":[ + { + "attributes":{ + "POSITION":4491, + "NORMAL":4492, + "TEXCOORD_0":4493 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.590", + "primitives":[ + { + "attributes":{ + "POSITION":4494, + "NORMAL":4495, + "TEXCOORD_0":4496 + }, + "indices":4497, + "material":0 + } + ] + }, + { + "name":"Mesh.6411", + "primitives":[ + { + "attributes":{ + "POSITION":4498, + "NORMAL":4499 + }, + "indices":4074, + "material":0 + } + ] + }, + { + "name":"Mesh.5101", + "primitives":[ + { + "attributes":{ + "POSITION":4500, + "NORMAL":4501, + "TEXCOORD_0":4502 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8712", + "primitives":[ + { + "attributes":{ + "POSITION":4503, + "NORMAL":4504 + }, + "indices":4505, + "material":3 + } + ] + }, + { + "name":"Mesh.501", + "primitives":[ + { + "attributes":{ + "POSITION":4506, + "NORMAL":4507, + "TEXCOORD_0":4508 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.021", + "primitives":[ + { + "attributes":{ + "POSITION":4509, + "NORMAL":4510, + "TEXCOORD_0":4511 + }, + "indices":4512, + "material":28 + } + ] + }, + { + "name":"Mesh.6198", + "primitives":[ + { + "attributes":{ + "POSITION":4513, + "NORMAL":4514, + "TEXCOORD_0":4515 + }, + "indices":266, + "material":12 + } + ] + }, + { + "name":"Mesh.7488", + "primitives":[ + { + "attributes":{ + "POSITION":4516, + "NORMAL":4517 + }, + "indices":4518, + "material":3 + } + ] + }, + { + "name":"Mesh.7960", + "primitives":[ + { + "attributes":{ + "POSITION":4519, + "NORMAL":4520 + }, + "indices":4521, + "material":3 + } + ] + }, + { + "name":"Mesh.5070", + "primitives":[ + { + "attributes":{ + "POSITION":4522, + "NORMAL":4523, + "TEXCOORD_0":4524 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7673", + "primitives":[ + { + "attributes":{ + "POSITION":4525, + "NORMAL":4526 + }, + "indices":4527, + "material":3 + } + ] + }, + { + "name":"Mesh.682", + "primitives":[ + { + "attributes":{ + "POSITION":4528, + "NORMAL":4529, + "TEXCOORD_0":4530 + }, + "indices":4531, + "material":0 + } + ] + }, + { + "name":"Mesh.8472", + "primitives":[ + { + "attributes":{ + "POSITION":4532, + "NORMAL":4533 + }, + "indices":4534, + "material":3 + } + ] + }, + { + "name":"Mesh.7466", + "primitives":[ + { + "attributes":{ + "POSITION":4535, + "NORMAL":4536 + }, + "indices":4537, + "material":3 + } + ] + }, + { + "name":"Mesh.4959", + "primitives":[ + { + "attributes":{ + "POSITION":4538, + "NORMAL":4539, + "TEXCOORD_0":4540 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.022", + "primitives":[ + { + "attributes":{ + "POSITION":4541, + "NORMAL":4542, + "TEXCOORD_0":4543, + "TEXCOORD_1":4544 + }, + "indices":4545, + "material":36 + } + ] + }, + { + "name":"Mesh.524", + "primitives":[ + { + "attributes":{ + "POSITION":4546, + "NORMAL":4547, + "TEXCOORD_0":4548 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5295", + "primitives":[ + { + "attributes":{ + "POSITION":4549, + "NORMAL":4550, + "TEXCOORD_0":4551 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.4849", + "primitives":[ + { + "attributes":{ + "POSITION":4552, + "NORMAL":4553, + "TEXCOORD_0":4554 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8216", + "primitives":[ + { + "attributes":{ + "POSITION":4555, + "NORMAL":4556 + }, + "indices":4557, + "material":3 + } + ] + }, + { + "name":"Mesh.6494", + "primitives":[ + { + "attributes":{ + "POSITION":4558, + "NORMAL":4559, + "TEXCOORD_0":4560 + }, + "indices":4561, + "material":0 + } + ] + }, + { + "name":"Mesh.2223", + "primitives":[ + { + "attributes":{ + "POSITION":4562, + "NORMAL":4563, + "TEXCOORD_0":4564 + }, + "indices":1379, + "material":0 + } + ] + }, + { + "name":"Mesh.792", + "primitives":[ + { + "attributes":{ + "POSITION":4565, + "NORMAL":4566, + "TEXCOORD_0":4567 + }, + "indices":4568, + "material":0 + } + ] + }, + { + "name":"Mesh.801", + "primitives":[ + { + "attributes":{ + "POSITION":4569, + "NORMAL":4570, + "TEXCOORD_0":4571 + }, + "indices":995, + "material":0 + } + ] + }, + { + "name":"Mesh.8739", + "primitives":[ + { + "attributes":{ + "POSITION":4572, + "NORMAL":4573 + }, + "indices":4574, + "material":3 + } + ] + }, + { + "name":"Mesh.5769", + "primitives":[ + { + "attributes":{ + "POSITION":4575, + "NORMAL":4576 + }, + "indices":4577, + "material":0 + } + ] + }, + { + "name":"Mesh.8787", + "primitives":[ + { + "attributes":{ + "POSITION":4578, + "NORMAL":4579 + }, + "indices":4580, + "material":3 + } + ] + }, + { + "name":"Mesh.602", + "primitives":[ + { + "attributes":{ + "POSITION":4581, + "NORMAL":4582, + "TEXCOORD_0":4583 + }, + "indices":4231, + "material":0 + } + ] + }, + { + "name":"Mesh.6854", + "primitives":[ + { + "attributes":{ + "POSITION":4584, + "NORMAL":4585, + "TEXCOORD_0":4586 + }, + "indices":1256, + "material":0 + } + ] + }, + { + "name":"Mesh.5113", + "primitives":[ + { + "attributes":{ + "POSITION":4587, + "NORMAL":4588, + "TEXCOORD_0":4589 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5198", + "primitives":[ + { + "attributes":{ + "POSITION":4590, + "NORMAL":4591, + "TEXCOORD_0":4592 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.291", + "primitives":[ + { + "attributes":{ + "POSITION":4593, + "NORMAL":4594, + "TEXCOORD_0":4595 + }, + "indices":4596, + "material":0 + } + ] + }, + { + "name":"Mesh.4827", + "primitives":[ + { + "attributes":{ + "POSITION":4597, + "NORMAL":4598, + "TEXCOORD_0":4599 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8370", + "primitives":[ + { + "attributes":{ + "POSITION":4600, + "NORMAL":4601 + }, + "indices":3115, + "material":3 + } + ] + }, + { + "name":"Mesh.5994", + "primitives":[ + { + "attributes":{ + "POSITION":4602, + "NORMAL":4603, + "TEXCOORD_0":4604 + }, + "indices":1452, + "material":12 + } + ] + }, + { + "name":"Mesh.6784", + "primitives":[ + { + "attributes":{ + "POSITION":4605, + "NORMAL":4606 + }, + "indices":3839, + "material":0 + } + ] + }, + { + "name":"Mesh.7318", + "primitives":[ + { + "attributes":{ + "POSITION":4607, + "NORMAL":4608, + "TEXCOORD_0":4609 + }, + "indices":4610, + "material":7 + } + ] + }, + { + "name":"Mesh.8917", + "primitives":[ + { + "attributes":{ + "POSITION":4611, + "NORMAL":4612, + "TEXCOORD_0":4613 + }, + "indices":247, + "material":7 + } + ] + }, + { + "name":"Mesh.2520", + "primitives":[ + { + "attributes":{ + "POSITION":4614, + "NORMAL":4615, + "TEXCOORD_0":4616 + }, + "indices":1595, + "material":4 + } + ] + }, + { + "name":"Mesh.613", + "primitives":[ + { + "attributes":{ + "POSITION":4617, + "NORMAL":4618, + "TEXCOORD_0":4619 + }, + "indices":1766, + "material":3 + } + ] + }, + { + "name":"Mesh.5227", + "primitives":[ + { + "attributes":{ + "POSITION":4620, + "NORMAL":4621, + "TEXCOORD_0":4622 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6060", + "primitives":[ + { + "attributes":{ + "POSITION":4623, + "NORMAL":4624, + "TEXCOORD_0":4625 + }, + "indices":30, + "material":5 + } + ] + }, + { + "name":"Mesh.103", + "primitives":[ + { + "attributes":{ + "POSITION":4626, + "NORMAL":4627, + "TEXCOORD_0":4628 + }, + "indices":4629, + "material":0 + } + ] + }, + { + "name":"Mesh.7102", + "primitives":[ + { + "attributes":{ + "POSITION":4630, + "NORMAL":4631, + "TEXCOORD_0":4632 + }, + "indices":4633, + "material":7 + } + ] + }, + { + "name":"Mesh.6324", + "primitives":[ + { + "attributes":{ + "POSITION":4634, + "NORMAL":4635, + "TEXCOORD_0":4636 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.835", + "primitives":[ + { + "attributes":{ + "POSITION":4637, + "NORMAL":4638, + "TEXCOORD_0":4639 + }, + "indices":4640, + "material":0 + } + ] + }, + { + "name":"Mesh.5963", + "primitives":[ + { + "attributes":{ + "POSITION":4641, + "NORMAL":4642, + "TEXCOORD_0":4643 + }, + "indices":1822, + "material":11 + } + ] + }, + { + "name":"Mesh.4971", + "primitives":[ + { + "attributes":{ + "POSITION":4644, + "NORMAL":4645, + "TEXCOORD_0":4646 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7574", + "primitives":[ + { + "attributes":{ + "POSITION":4647, + "NORMAL":4648 + }, + "indices":4649, + "material":3 + } + ] + }, + { + "name":"Mesh.6466", + "primitives":[ + { + "attributes":{ + "POSITION":4650, + "NORMAL":4651, + "TEXCOORD_0":4652 + }, + "indices":514, + "material":0 + } + ] + }, + { + "name":"Mesh.2173", + "primitives":[ + { + "attributes":{ + "POSITION":4653, + "NORMAL":4654, + "TEXCOORD_0":4655 + }, + "indices":1818, + "material":0 + } + ] + }, + { + "name":"Mesh.6886", + "primitives":[ + { + "attributes":{ + "POSITION":4656, + "NORMAL":4657, + "TEXCOORD_0":4658 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.6642", + "primitives":[ + { + "attributes":{ + "POSITION":4659, + "NORMAL":4660 + }, + "indices":4661, + "material":0 + } + ] + }, + { + "name":"Mesh.2235", + "primitives":[ + { + "attributes":{ + "POSITION":4662, + "NORMAL":4663, + "TEXCOORD_0":4664 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2806", + "primitives":[ + { + "attributes":{ + "POSITION":4665, + "NORMAL":4666, + "TEXCOORD_0":4667 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.2199", + "primitives":[ + { + "attributes":{ + "POSITION":4668, + "NORMAL":4669, + "TEXCOORD_0":4670 + }, + "indices":4671, + "material":0 + } + ] + }, + { + "name":"Mesh.770", + "primitives":[ + { + "attributes":{ + "POSITION":4672, + "NORMAL":4673, + "TEXCOORD_0":4674 + }, + "indices":4675, + "material":0 + } + ] + }, + { + "name":"Mesh.8330", + "primitives":[ + { + "attributes":{ + "POSITION":4676, + "NORMAL":4677 + }, + "indices":4678, + "material":3 + } + ] + }, + { + "name":"Mesh.675", + "primitives":[ + { + "attributes":{ + "POSITION":4679, + "NORMAL":4680, + "TEXCOORD_0":4681 + }, + "indices":4682, + "material":3 + } + ] + }, + { + "name":"Mesh.7975", + "primitives":[ + { + "attributes":{ + "POSITION":4683, + "NORMAL":4684, + "TEXCOORD_0":4685 + }, + "indices":4686, + "material":0 + } + ] + }, + { + "name":"Mesh.6395", + "primitives":[ + { + "attributes":{ + "POSITION":4687, + "NORMAL":4688 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.8705", + "primitives":[ + { + "attributes":{ + "POSITION":4689, + "NORMAL":4690 + }, + "indices":4024, + "material":3 + } + ] + }, + { + "name":"Mesh.5125", + "primitives":[ + { + "attributes":{ + "POSITION":4691, + "NORMAL":4692, + "TEXCOORD_0":4693 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2603", + "primitives":[ + { + "attributes":{ + "POSITION":4694, + "NORMAL":4695, + "TEXCOORD_0":4696 + }, + "indices":3492, + "material":0 + } + ] + }, + { + "name":"Mesh.1997", + "primitives":[ + { + "attributes":{ + "POSITION":4697, + "NORMAL":4698, + "TEXCOORD_0":4699 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.878", + "primitives":[ + { + "attributes":{ + "POSITION":4700, + "NORMAL":4701, + "TEXCOORD_0":4702 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8890", + "primitives":[ + { + "attributes":{ + "POSITION":4703, + "NORMAL":4704 + }, + "indices":4705, + "material":3 + } + ] + }, + { + "name":"Mesh.1689", + "primitives":[ + { + "attributes":{ + "POSITION":4706, + "NORMAL":4707, + "TEXCOORD_0":4708 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.800", + "primitives":[ + { + "attributes":{ + "POSITION":4709, + "NORMAL":4710, + "TEXCOORD_0":4711 + }, + "indices":1332, + "material":0 + } + ] + }, + { + "name":"Mesh.6311", + "primitives":[ + { + "attributes":{ + "POSITION":4712, + "NORMAL":4713 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.1741", + "primitives":[ + { + "attributes":{ + "POSITION":4714, + "NORMAL":4715 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.8416", + "primitives":[ + { + "attributes":{ + "POSITION":4716, + "NORMAL":4717 + }, + "indices":4718, + "material":3 + } + ] + }, + { + "name":"Mesh.8271", + "primitives":[ + { + "attributes":{ + "POSITION":4719, + "NORMAL":4720 + }, + "indices":4721, + "material":3 + } + ] + }, + { + "name":"Mesh.1926", + "primitives":[ + { + "attributes":{ + "POSITION":4722, + "NORMAL":4723 + }, + "indices":3642, + "material":0 + } + ] + }, + { + "name":"Mesh.7465", + "primitives":[ + { + "attributes":{ + "POSITION":4724, + "NORMAL":4725 + }, + "indices":4726, + "material":3 + } + ] + }, + { + "name":"Mesh.6398", + "primitives":[ + { + "attributes":{ + "POSITION":4727, + "NORMAL":4728 + }, + "indices":4729, + "material":0 + } + ] + }, + { + "name":"Mesh.5784", + "primitives":[ + { + "attributes":{ + "POSITION":4730, + "NORMAL":4731, + "TEXCOORD_0":4732 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.769", + "primitives":[ + { + "attributes":{ + "POSITION":4733, + "NORMAL":4734, + "TEXCOORD_0":4735 + }, + "indices":3972, + "material":0 + } + ] + }, + { + "name":"Mesh.7083", + "primitives":[ + { + "attributes":{ + "POSITION":4736, + "NORMAL":4737, + "TEXCOORD_0":4738 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.8793", + "primitives":[ + { + "attributes":{ + "POSITION":4739, + "NORMAL":4740 + }, + "indices":4741, + "material":3 + } + ] + }, + { + "name":"Mesh.8800", + "primitives":[ + { + "attributes":{ + "POSITION":4742, + "NORMAL":4743 + }, + "indices":4744, + "material":3 + } + ] + }, + { + "name":"Mesh.1855", + "primitives":[ + { + "attributes":{ + "POSITION":4745, + "NORMAL":4746 + }, + "indices":2624, + "material":0 + } + ] + }, + { + "name":"Mesh.8140", + "primitives":[ + { + "attributes":{ + "POSITION":4747, + "NORMAL":4748 + }, + "indices":4749, + "material":3 + } + ] + }, + { + "name":"Mesh.8506", + "primitives":[ + { + "attributes":{ + "POSITION":4750, + "NORMAL":4751 + }, + "indices":4752, + "material":3 + } + ] + }, + { + "name":"Mesh.2383", + "primitives":[ + { + "attributes":{ + "POSITION":4753, + "NORMAL":4754, + "TEXCOORD_0":4755 + }, + "indices":4756, + "material":0 + } + ] + }, + { + "name":"Mesh.8607", + "primitives":[ + { + "attributes":{ + "POSITION":4757, + "NORMAL":4758 + }, + "indices":2871, + "material":3 + } + ] + }, + { + "name":"Mesh.7475", + "primitives":[ + { + "attributes":{ + "POSITION":4759, + "NORMAL":4760 + }, + "indices":4761, + "material":3 + } + ] + }, + { + "name":"Mesh.5057", + "primitives":[ + { + "attributes":{ + "POSITION":4762, + "NORMAL":4763, + "TEXCOORD_0":4764 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5753", + "primitives":[ + { + "attributes":{ + "POSITION":4765, + "NORMAL":4766 + }, + "indices":611, + "material":0 + } + ] + }, + { + "name":"Mesh.1784", + "primitives":[ + { + "attributes":{ + "POSITION":4767, + "NORMAL":4768 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.674", + "primitives":[ + { + "attributes":{ + "POSITION":4769, + "NORMAL":4770, + "TEXCOORD_0":4771 + }, + "indices":4772, + "material":3 + } + ] + }, + { + "name":"Mesh.7373", + "primitives":[ + { + "attributes":{ + "POSITION":4773, + "NORMAL":4774, + "TEXCOORD_0":4775 + }, + "indices":4776, + "material":7 + } + ] + }, + { + "name":"Mesh.9050", + "primitives":[ + { + "attributes":{ + "POSITION":4777, + "NORMAL":4778, + "TEXCOORD_0":4779 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.8978", + "primitives":[ + { + "attributes":{ + "POSITION":4780, + "NORMAL":4781, + "TEXCOORD_0":4782 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.5282", + "primitives":[ + { + "attributes":{ + "POSITION":4783, + "NORMAL":4784, + "TEXCOORD_0":4785 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1724", + "primitives":[ + { + "attributes":{ + "POSITION":4786, + "NORMAL":4787, + "TEXCOORD_0":4788 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.8756", + "primitives":[ + { + "attributes":{ + "POSITION":4789, + "NORMAL":4790 + }, + "indices":3903, + "material":3 + } + ] + }, + { + "name":"Mesh.7404", + "primitives":[ + { + "attributes":{ + "POSITION":4791, + "NORMAL":4792, + "TEXCOORD_0":4793 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.1763", + "primitives":[ + { + "attributes":{ + "POSITION":4794, + "NORMAL":4795, + "TEXCOORD_0":4796 + }, + "indices":4797, + "material":37 + } + ] + }, + { + "name":"Mesh.2009", + "primitives":[ + { + "attributes":{ + "POSITION":4798, + "NORMAL":4799, + "TEXCOORD_0":4800 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.8219", + "primitives":[ + { + "attributes":{ + "POSITION":4801, + "NORMAL":4802 + }, + "indices":2590, + "material":3 + } + ] + }, + { + "name":"Mesh.7817", + "primitives":[ + { + "attributes":{ + "POSITION":4803, + "NORMAL":4804 + }, + "indices":4805, + "material":3 + } + ] + }, + { + "name":"Mesh.6154", + "primitives":[ + { + "attributes":{ + "POSITION":4806, + "NORMAL":4807, + "TEXCOORD_0":4808 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.5431", + "primitives":[ + { + "attributes":{ + "POSITION":4809, + "NORMAL":4810, + "TEXCOORD_0":4811 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6481", + "primitives":[ + { + "attributes":{ + "POSITION":4812, + "NORMAL":4813, + "TEXCOORD_0":4814 + }, + "indices":4815, + "material":0 + } + ] + }, + { + "name":"Mesh.768", + "primitives":[ + { + "attributes":{ + "POSITION":4816, + "NORMAL":4817, + "TEXCOORD_0":4818 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5026", + "primitives":[ + { + "attributes":{ + "POSITION":4819, + "NORMAL":4820, + "TEXCOORD_0":4821 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8101", + "primitives":[ + { + "attributes":{ + "POSITION":4822, + "NORMAL":4823 + }, + "indices":3312, + "material":3 + } + ] + }, + { + "name":"Mesh.1753", + "primitives":[ + { + "attributes":{ + "POSITION":4824, + "NORMAL":4825 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.779", + "primitives":[ + { + "attributes":{ + "POSITION":4826, + "NORMAL":4827, + "TEXCOORD_0":4828 + }, + "indices":639, + "material":0 + } + ] + }, + { + "name":"Mesh.1881", + "primitives":[ + { + "attributes":{ + "POSITION":4829, + "NORMAL":4830 + }, + "indices":2883, + "material":22 + } + ] + }, + { + "name":"Mesh.7342", + "primitives":[ + { + "attributes":{ + "POSITION":4831, + "NORMAL":4832, + "TEXCOORD_0":4833 + }, + "indices":4834, + "material":7 + } + ] + }, + { + "name":"Mesh.2680", + "primitives":[ + { + "attributes":{ + "POSITION":4835, + "NORMAL":4836, + "TEXCOORD_0":4837 + }, + "indices":4490, + "material":0 + } + ] + }, + { + "name":"Mesh.5251", + "primitives":[ + { + "attributes":{ + "POSITION":4838, + "NORMAL":4839, + "TEXCOORD_0":4840 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.589", + "primitives":[ + { + "attributes":{ + "POSITION":4841, + "NORMAL":4842, + "TEXCOORD_0":4843 + }, + "indices":4844, + "material":3 + } + ] + }, + { + "name":"Mesh.6410", + "primitives":[ + { + "attributes":{ + "POSITION":4845, + "NORMAL":4846 + }, + "indices":4847, + "material":0 + } + ] + }, + { + "name":"Mesh.5100", + "primitives":[ + { + "attributes":{ + "POSITION":4848, + "NORMAL":4849, + "TEXCOORD_0":4850 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8352", + "primitives":[ + { + "attributes":{ + "POSITION":4851, + "NORMAL":4852 + }, + "indices":4853, + "material":3 + } + ] + }, + { + "name":"Mesh.4955", + "primitives":[ + { + "attributes":{ + "POSITION":4854, + "NORMAL":4855, + "TEXCOORD_0":4856 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8484", + "primitives":[ + { + "attributes":{ + "POSITION":4857, + "NORMAL":4858 + }, + "indices":4859, + "material":3 + } + ] + }, + { + "name":"Mesh.6123", + "primitives":[ + { + "attributes":{ + "POSITION":4860, + "NORMAL":4861, + "TEXCOORD_0":4862 + }, + "indices":3712, + "material":33 + } + ] + }, + { + "name":"Mesh.500", + "primitives":[ + { + "attributes":{ + "POSITION":4863, + "NORMAL":4864, + "TEXCOORD_0":4865 + }, + "indices":4866, + "material":0 + } + ] + }, + { + "name":"Mesh.933", + "primitives":[ + { + "attributes":{ + "POSITION":4867, + "NORMAL":4868, + "TEXCOORD_0":4869 + }, + "indices":4270, + "material":0 + } + ] + }, + { + "name":"Mesh.203", + "primitives":[ + { + "attributes":{ + "POSITION":4870, + "NORMAL":4871, + "TEXCOORD_0":4872 + }, + "indices":4873, + "material":3 + } + ] + }, + { + "name":"Mesh.7487", + "primitives":[ + { + "attributes":{ + "POSITION":4874, + "NORMAL":4875 + }, + "indices":4876, + "material":3 + } + ] + }, + { + "name":"Mesh.7959", + "primitives":[ + { + "attributes":{ + "POSITION":4877, + "NORMAL":4878 + }, + "indices":4879, + "material":3 + } + ] + }, + { + "name":"Mesh.5069", + "primitives":[ + { + "attributes":{ + "POSITION":4880, + "NORMAL":4881, + "TEXCOORD_0":4882 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.420", + "primitives":[ + { + "attributes":{ + "POSITION":4883, + "NORMAL":4884, + "TEXCOORD_0":4885 + }, + "indices":3276, + "material":6 + } + ] + }, + { + "name":"Mesh.767", + "primitives":[ + { + "attributes":{ + "POSITION":4886, + "NORMAL":4887, + "TEXCOORD_0":4888 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8557", + "primitives":[ + { + "attributes":{ + "POSITION":4889, + "NORMAL":4890 + }, + "indices":3962, + "material":3 + } + ] + }, + { + "name":"Mesh.7672", + "primitives":[ + { + "attributes":{ + "POSITION":4891, + "NORMAL":4892 + }, + "indices":3999, + "material":3 + } + ] + }, + { + "name":"Mesh.8206", + "primitives":[ + { + "attributes":{ + "POSITION":4893, + "NORMAL":4894 + }, + "indices":349, + "material":3 + } + ] + }, + { + "name":"Mesh.448", + "primitives":[ + { + "attributes":{ + "POSITION":4895, + "NORMAL":4896 + }, + "indices":1157, + "material":3 + } + ] + }, + { + "name":"Mesh.7681", + "primitives":[ + { + "attributes":{ + "POSITION":4897, + "NORMAL":4898 + }, + "indices":4899, + "material":3 + } + ] + }, + { + "name":"Mesh.8471", + "primitives":[ + { + "attributes":{ + "POSITION":4900, + "NORMAL":4901 + }, + "indices":4902, + "material":3 + } + ] + }, + { + "name":"Mesh", + "primitives":[ + { + "attributes":{ + "POSITION":4903, + "NORMAL":4904, + "TEXCOORD_0":4905 + }, + "indices":4906, + "material":38 + } + ] + }, + { + "name":"Mesh.7150", + "primitives":[ + { + "attributes":{ + "POSITION":4907, + "NORMAL":4908, + "TEXCOORD_0":4909 + }, + "indices":2577, + "material":7 + } + ] + }, + { + "name":"Mesh.4958", + "primitives":[ + { + "attributes":{ + "POSITION":4910, + "NORMAL":4911, + "TEXCOORD_0":4912 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5294", + "primitives":[ + { + "attributes":{ + "POSITION":4913, + "NORMAL":4914, + "TEXCOORD_0":4915 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5621", + "primitives":[ + { + "attributes":{ + "POSITION":4916, + "NORMAL":4917, + "TEXCOORD_0":4918 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8215", + "primitives":[ + { + "attributes":{ + "POSITION":4919, + "NORMAL":4920 + }, + "indices":4921, + "material":3 + } + ] + }, + { + "name":"Mesh.282", + "primitives":[ + { + "attributes":{ + "POSITION":4922, + "NORMAL":4923, + "TEXCOORD_0":4924 + }, + "indices":4925, + "material":0 + } + ] + }, + { + "name":"Mesh.6493", + "primitives":[ + { + "attributes":{ + "POSITION":4926, + "NORMAL":4927, + "TEXCOORD_0":4928 + }, + "indices":4929, + "material":0 + } + ] + }, + { + "name":"Mesh.2222", + "primitives":[ + { + "attributes":{ + "POSITION":4930, + "NORMAL":4931, + "TEXCOORD_0":4932 + }, + "indices":3267, + "material":0 + } + ] + }, + { + "name":"Mesh.5510", + "primitives":[ + { + "attributes":{ + "POSITION":4933, + "NORMAL":4934, + "TEXCOORD_0":4935 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2516", + "primitives":[ + { + "attributes":{ + "POSITION":4936, + "NORMAL":4937, + "TEXCOORD_0":4938 + }, + "indices":1060, + "material":0 + } + ] + }, + { + "name":"Mesh.791", + "primitives":[ + { + "attributes":{ + "POSITION":4939, + "NORMAL":4940, + "TEXCOORD_0":4941 + }, + "indices":647, + "material":0 + } + ] + }, + { + "name":"Mesh.1970", + "primitives":[ + { + "attributes":{ + "POSITION":4942, + "NORMAL":4943, + "TEXCOORD_0":4944 + }, + "indices":4945, + "material":0 + } + ] + }, + { + "name":"Mesh.2295", + "primitives":[ + { + "attributes":{ + "POSITION":4946, + "NORMAL":4947, + "TEXCOORD_0":4948 + }, + "indices":3831, + "material":0 + } + ] + }, + { + "name":"Mesh.434", + "primitives":[ + { + "attributes":{ + "POSITION":4949, + "NORMAL":4950 + }, + "indices":4951, + "material":0 + } + ] + }, + { + "name":"Mesh.8738", + "primitives":[ + { + "attributes":{ + "POSITION":4952, + "NORMAL":4953 + }, + "indices":4954, + "material":3 + } + ] + }, + { + "name":"Mesh.2438", + "primitives":[ + { + "attributes":{ + "POSITION":4955, + "NORMAL":4956, + "TEXCOORD_0":4957 + }, + "indices":4958, + "material":0 + } + ] + }, + { + "name":"Mesh.601", + "primitives":[ + { + "attributes":{ + "POSITION":4959, + "NORMAL":4960, + "TEXCOORD_0":4961 + }, + "indices":4231, + "material":0 + } + ] + }, + { + "name":"Mesh.5112", + "primitives":[ + { + "attributes":{ + "POSITION":4962, + "NORMAL":4963, + "TEXCOORD_0":4964 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9146", + "primitives":[ + { + "attributes":{ + "POSITION":4965, + "NORMAL":4966, + "TEXCOORD_0":4967 + }, + "indices":4968, + "material":7 + } + ] + }, + { + "name":"Mesh.8369", + "primitives":[ + { + "attributes":{ + "POSITION":4969, + "NORMAL":4970 + }, + "indices":4971, + "material":3 + } + ] + }, + { + "name":"Mesh.5993", + "primitives":[ + { + "attributes":{ + "POSITION":4972, + "NORMAL":4973, + "TEXCOORD_0":4974 + }, + "indices":30, + "material":5 + } + ] + }, + { + "name":"Mesh.6783", + "primitives":[ + { + "attributes":{ + "POSITION":4975, + "NORMAL":4976 + }, + "indices":4227, + "material":0 + } + ] + }, + { + "name":"Mesh.7803", + "primitives":[ + { + "attributes":{ + "POSITION":4977, + "NORMAL":4978 + }, + "indices":4979, + "material":3 + } + ] + }, + { + "name":"Mesh.1879", + "primitives":[ + { + "attributes":{ + "POSITION":4980, + "NORMAL":4981 + }, + "indices":2553, + "material":22 + } + ] + }, + { + "name":"Mesh.9000", + "primitives":[ + { + "attributes":{ + "POSITION":4982, + "NORMAL":4983, + "TEXCOORD_0":4984 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.654", + "primitives":[ + { + "attributes":{ + "POSITION":4985, + "NORMAL":4986, + "TEXCOORD_0":4987 + }, + "indices":4988, + "material":3 + } + ] + }, + { + "name":"Mesh.7108", + "primitives":[ + { + "attributes":{ + "POSITION":4989, + "NORMAL":4990, + "TEXCOORD_0":4991 + }, + "indices":4992, + "material":7 + } + ] + }, + { + "name":"Mesh.6800", + "primitives":[ + { + "attributes":{ + "POSITION":4993, + "NORMAL":4994, + "TEXCOORD_0":4995 + }, + "indices":4996, + "material":3 + } + ] + }, + { + "name":"Mesh.5737", + "primitives":[ + { + "attributes":{ + "POSITION":4997, + "NORMAL":4998 + }, + "indices":4847, + "material":0 + } + ] + }, + { + "name":"Mesh.5226", + "primitives":[ + { + "attributes":{ + "POSITION":4999, + "NORMAL":5000, + "TEXCOORD_0":5001 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.102", + "primitives":[ + { + "attributes":{ + "POSITION":5002, + "NORMAL":5003, + "TEXCOORD_0":5004 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.5266", + "primitives":[ + { + "attributes":{ + "POSITION":5005, + "NORMAL":5006, + "TEXCOORD_0":5007 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5962", + "primitives":[ + { + "attributes":{ + "POSITION":5008, + "NORMAL":5009, + "TEXCOORD_0":5010 + }, + "indices":1650, + "material":20 + } + ] + }, + { + "name":"Mesh.4970", + "primitives":[ + { + "attributes":{ + "POSITION":5011, + "NORMAL":5012, + "TEXCOORD_0":5013 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.874", + "primitives":[ + { + "attributes":{ + "POSITION":5014, + "NORMAL":5015, + "TEXCOORD_0":5016 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7573", + "primitives":[ + { + "attributes":{ + "POSITION":5017, + "NORMAL":5018 + }, + "indices":4741, + "material":3 + } + ] + }, + { + "name":"Mesh.6465", + "primitives":[ + { + "attributes":{ + "POSITION":5019, + "NORMAL":5020, + "TEXCOORD_0":5021 + }, + "indices":804, + "material":0 + } + ] + }, + { + "name":"Mesh.2172", + "primitives":[ + { + "attributes":{ + "POSITION":5022, + "NORMAL":5023, + "TEXCOORD_0":5024 + }, + "indices":1128, + "material":0 + } + ] + }, + { + "name":"Mesh.8902", + "primitives":[ + { + "attributes":{ + "POSITION":5025, + "NORMAL":5026 + }, + "indices":3079, + "material":3 + } + ] + }, + { + "name":"Mesh.2164", + "primitives":[ + { + "attributes":{ + "POSITION":5027, + "NORMAL":5028, + "TEXCOORD_0":5029 + }, + "indices":2785, + "material":0 + } + ] + }, + { + "name":"Mesh.1882", + "primitives":[ + { + "attributes":{ + "POSITION":5030, + "NORMAL":5031 + }, + "indices":1871, + "material":22 + } + ] + }, + { + "name":"Mesh.7132", + "primitives":[ + { + "attributes":{ + "POSITION":5032, + "NORMAL":5033, + "TEXCOORD_0":5034 + }, + "indices":5035, + "material":7 + } + ] + }, + { + "name":"Mesh.2234", + "primitives":[ + { + "attributes":{ + "POSITION":5036, + "NORMAL":5037, + "TEXCOORD_0":5038 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2805", + "primitives":[ + { + "attributes":{ + "POSITION":5039, + "NORMAL":5040, + "TEXCOORD_0":5041 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.5487", + "primitives":[ + { + "attributes":{ + "POSITION":5042, + "NORMAL":5043, + "TEXCOORD_0":5044 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6277", + "primitives":[ + { + "attributes":{ + "POSITION":5045, + "NORMAL":5046, + "TEXCOORD_0":5047 + }, + "indices":927, + "material":12 + } + ] + }, + { + "name":"Mesh.6394", + "primitives":[ + { + "attributes":{ + "POSITION":5048, + "NORMAL":5049 + }, + "indices":1775, + "material":0 + } + ] + }, + { + "name":"Mesh.988", + "primitives":[ + { + "attributes":{ + "POSITION":5050, + "NORMAL":5051, + "TEXCOORD_0":5052 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.5124", + "primitives":[ + { + "attributes":{ + "POSITION":5053, + "NORMAL":5054, + "TEXCOORD_0":5055 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2602", + "primitives":[ + { + "attributes":{ + "POSITION":5056, + "NORMAL":5057, + "TEXCOORD_0":5058 + }, + "indices":5059, + "material":0 + } + ] + }, + { + "name":"Mesh.877", + "primitives":[ + { + "attributes":{ + "POSITION":5060, + "NORMAL":5061, + "TEXCOORD_0":5062 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.076", + "primitives":[ + { + "attributes":{ + "POSITION":5063, + "NORMAL":5064 + }, + "indices":5065, + "material":39 + } + ] + }, + { + "name":"Mesh.2277", + "primitives":[ + { + "attributes":{ + "POSITION":5066, + "NORMAL":5067, + "TEXCOORD_0":5068 + }, + "indices":5069, + "material":0 + } + ] + }, + { + "name":"Mesh.8889", + "primitives":[ + { + "attributes":{ + "POSITION":5070, + "NORMAL":5071 + }, + "indices":5072, + "material":3 + } + ] + }, + { + "name":"Mesh.7967", + "primitives":[ + { + "attributes":{ + "POSITION":5073, + "NORMAL":5074, + "TEXCOORD_0":5075 + }, + "indices":2268, + "material":0 + } + ] + }, + { + "name":"Mesh.1740", + "primitives":[ + { + "attributes":{ + "POSITION":5076, + "NORMAL":5077 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.8270", + "primitives":[ + { + "attributes":{ + "POSITION":5078, + "NORMAL":5079 + }, + "indices":840, + "material":3 + } + ] + }, + { + "name":"Mesh.1925", + "primitives":[ + { + "attributes":{ + "POSITION":5080, + "NORMAL":5081 + }, + "indices":2743, + "material":0 + } + ] + }, + { + "name":"Mesh.2707", + "primitives":[ + { + "attributes":{ + "POSITION":5082, + "NORMAL":5083, + "TEXCOORD_0":5084 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.7082", + "primitives":[ + { + "attributes":{ + "POSITION":5085, + "NORMAL":5086 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.7650", + "primitives":[ + { + "attributes":{ + "POSITION":5087, + "NORMAL":5088 + }, + "indices":4006, + "material":3 + } + ] + }, + { + "name":"Mesh.2747", + "primitives":[ + { + "attributes":{ + "POSITION":5089, + "NORMAL":5090, + "TEXCOORD_0":5091 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.585", + "primitives":[ + { + "attributes":{ + "POSITION":5092, + "NORMAL":5093, + "TEXCOORD_0":5094 + }, + "indices":1554, + "material":0 + } + ] + }, + { + "name":"Mesh.6276", + "primitives":[ + { + "attributes":{ + "POSITION":5095, + "NORMAL":5096, + "TEXCOORD_0":5097 + }, + "indices":5098, + "material":12 + } + ] + }, + { + "name":"Mesh.4982", + "primitives":[ + { + "attributes":{ + "POSITION":5099, + "NORMAL":5100, + "TEXCOORD_0":5101 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5376", + "primitives":[ + { + "attributes":{ + "POSITION":5102, + "NORMAL":5103, + "TEXCOORD_0":5104 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1854", + "primitives":[ + { + "attributes":{ + "POSITION":5105, + "NORMAL":5106 + }, + "indices":5107, + "material":0 + } + ] + }, + { + "name":"Mesh.2382", + "primitives":[ + { + "attributes":{ + "POSITION":5108, + "NORMAL":5109, + "TEXCOORD_0":5110 + }, + "indices":136, + "material":0 + } + ] + }, + { + "name":"Mesh.5207", + "primitives":[ + { + "attributes":{ + "POSITION":5111, + "NORMAL":5112, + "TEXCOORD_0":5113 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7474", + "primitives":[ + { + "attributes":{ + "POSITION":5114, + "NORMAL":5115 + }, + "indices":5116, + "material":3 + } + ] + }, + { + "name":"Mesh.5056", + "primitives":[ + { + "attributes":{ + "POSITION":5117, + "NORMAL":5118, + "TEXCOORD_0":5119 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.960", + "primitives":[ + { + "attributes":{ + "POSITION":5120, + "NORMAL":5121, + "TEXCOORD_0":5122 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.1783", + "primitives":[ + { + "attributes":{ + "POSITION":5123, + "NORMAL":5124 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.2110", + "primitives":[ + { + "attributes":{ + "POSITION":5125, + "NORMAL":5126, + "TEXCOORD_0":5127 + }, + "indices":5128, + "material":3 + } + ] + }, + { + "name":"Mesh.1024", + "primitives":[ + { + "attributes":{ + "POSITION":5129, + "NORMAL":5130, + "TEXCOORD_0":5131 + }, + "indices":5132, + "material":0 + } + ] + }, + { + "name":"Mesh.2477", + "primitives":[ + { + "attributes":{ + "POSITION":5133, + "NORMAL":5134, + "TEXCOORD_0":5135 + }, + "indices":1746, + "material":0 + } + ] + }, + { + "name":"Mesh.5281", + "primitives":[ + { + "attributes":{ + "POSITION":5136, + "NORMAL":5137, + "TEXCOORD_0":5138 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6111", + "primitives":[ + { + "attributes":{ + "POSITION":5139, + "NORMAL":5140, + "TEXCOORD_0":5141 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.7403", + "primitives":[ + { + "attributes":{ + "POSITION":5142, + "NORMAL":5143, + "TEXCOORD_0":5144 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.2008", + "primitives":[ + { + "attributes":{ + "POSITION":5145, + "NORMAL":5146, + "TEXCOORD_0":5147 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8901", + "primitives":[ + { + "attributes":{ + "POSITION":5148, + "NORMAL":5149 + }, + "indices":4899, + "material":3 + } + ] + }, + { + "name":"Mesh.6480", + "primitives":[ + { + "attributes":{ + "POSITION":5150, + "NORMAL":5151, + "TEXCOORD_0":5152 + }, + "indices":3597, + "material":0 + } + ] + }, + { + "name":"Mesh.5025", + "primitives":[ + { + "attributes":{ + "POSITION":5153, + "NORMAL":5154, + "TEXCOORD_0":5155 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7755", + "primitives":[ + { + "attributes":{ + "POSITION":5156, + "NORMAL":5157 + }, + "indices":5158, + "material":3 + } + ] + }, + { + "name":"Mesh.1752", + "primitives":[ + { + "attributes":{ + "POSITION":5159, + "NORMAL":5160 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.778", + "primitives":[ + { + "attributes":{ + "POSITION":5161, + "NORMAL":5162, + "TEXCOORD_0":5163 + }, + "indices":3972, + "material":0 + } + ] + }, + { + "name":"Mesh.024", + "primitives":[ + { + "attributes":{ + "POSITION":5164, + "NORMAL":5165, + "TEXCOORD_0":5166 + }, + "indices":34, + "material":40 + } + ] + }, + { + "name":"Mesh.2679", + "primitives":[ + { + "attributes":{ + "POSITION":5167, + "NORMAL":5168, + "TEXCOORD_0":5169 + }, + "indices":5170, + "material":0 + } + ] + }, + { + "name":"Mesh.9148", + "primitives":[ + { + "attributes":{ + "POSITION":5171, + "NORMAL":5172, + "TEXCOORD_0":5173 + }, + "indices":1934, + "material":7 + } + ] + }, + { + "name":"Mesh.671", + "primitives":[ + { + "attributes":{ + "POSITION":5174, + "NORMAL":5175, + "TEXCOORD_0":5176 + }, + "indices":5177, + "material":3 + } + ] + }, + { + "name":"Mesh.8600", + "primitives":[ + { + "attributes":{ + "POSITION":5178, + "NORMAL":5179 + }, + "indices":68, + "material":3 + } + ] + }, + { + "name":"Mesh.185", + "primitives":[ + { + "attributes":{ + "POSITION":5180, + "NORMAL":5181, + "TEXCOORD_0":5182 + }, + "indices":5183, + "material":3 + } + ] + }, + { + "name":"Mesh.588", + "primitives":[ + { + "attributes":{ + "POSITION":5184, + "NORMAL":5185, + "TEXCOORD_0":5186 + }, + "indices":5187, + "material":3 + } + ] + }, + { + "name":"Mesh.7724", + "primitives":[ + { + "attributes":{ + "POSITION":5188, + "NORMAL":5189 + }, + "indices":5190, + "material":3 + } + ] + }, + { + "name":"Mesh.6409", + "primitives":[ + { + "attributes":{ + "POSITION":5191, + "NORMAL":5192 + }, + "indices":5193, + "material":0 + } + ] + }, + { + "name":"Mesh.6971", + "primitives":[ + { + "attributes":{ + "POSITION":5194, + "NORMAL":5195 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6631", + "primitives":[ + { + "attributes":{ + "POSITION":5196, + "NORMAL":5197 + }, + "indices":2746, + "material":0 + } + ] + }, + { + "name":"Mesh.4954", + "primitives":[ + { + "attributes":{ + "POSITION":5198, + "NORMAL":5199, + "TEXCOORD_0":5200 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5416", + "primitives":[ + { + "attributes":{ + "POSITION":5201, + "NORMAL":5202, + "TEXCOORD_0":5203 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.747", + "primitives":[ + { + "attributes":{ + "POSITION":5204, + "NORMAL":5205, + "TEXCOORD_0":5206 + }, + "indices":4391, + "material":0 + } + ] + }, + { + "name":"Mesh.499", + "primitives":[ + { + "attributes":{ + "POSITION":5207, + "NORMAL":5208, + "TEXCOORD_0":5209 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.2051", + "primitives":[ + { + "attributes":{ + "POSITION":5210, + "NORMAL":5211, + "TEXCOORD_0":5212 + }, + "indices":5213, + "material":0 + } + ] + }, + { + "name":"Mesh.932", + "primitives":[ + { + "attributes":{ + "POSITION":5214, + "NORMAL":5215, + "TEXCOORD_0":5216 + }, + "indices":4270, + "material":0 + } + ] + }, + { + "name":"Mesh.8640", + "primitives":[ + { + "attributes":{ + "POSITION":5217, + "NORMAL":5218 + }, + "indices":4537, + "material":3 + } + ] + }, + { + "name":"Mesh.9003", + "primitives":[ + { + "attributes":{ + "POSITION":5219, + "NORMAL":5220, + "TEXCOORD_0":5221 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.7486", + "primitives":[ + { + "attributes":{ + "POSITION":5222, + "NORMAL":5223 + }, + "indices":5224, + "material":3 + } + ] + }, + { + "name":"Mesh.7958", + "primitives":[ + { + "attributes":{ + "POSITION":5225, + "NORMAL":5226 + }, + "indices":5227, + "material":3 + } + ] + }, + { + "name":"Mesh.8688", + "primitives":[ + { + "attributes":{ + "POSITION":5228, + "NORMAL":5229 + }, + "indices":3769, + "material":3 + } + ] + }, + { + "name":"Mesh.2892", + "primitives":[ + { + "attributes":{ + "POSITION":5230, + "NORMAL":5231 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.5068", + "primitives":[ + { + "attributes":{ + "POSITION":5232, + "NORMAL":5233, + "TEXCOORD_0":5234 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6362", + "primitives":[ + { + "attributes":{ + "POSITION":5235, + "NORMAL":5236 + }, + "indices":5237, + "material":0 + } + ] + }, + { + "name":"Mesh.7671", + "primitives":[ + { + "attributes":{ + "POSITION":5238, + "NORMAL":5239 + }, + "indices":4368, + "material":3 + } + ] + }, + { + "name":"Mesh.5147", + "primitives":[ + { + "attributes":{ + "POSITION":5240, + "NORMAL":5241, + "TEXCOORD_0":5242 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6903", + "primitives":[ + { + "attributes":{ + "POSITION":5243, + "NORMAL":5244, + "TEXCOORD_0":5245 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.5293", + "primitives":[ + { + "attributes":{ + "POSITION":5246, + "NORMAL":5247, + "TEXCOORD_0":5248 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.450", + "primitives":[ + { + "attributes":{ + "POSITION":5249, + "NORMAL":5250 + }, + "indices":517, + "material":3 + } + ] + }, + { + "name":"Mesh.8214", + "primitives":[ + { + "attributes":{ + "POSITION":5251, + "NORMAL":5252 + }, + "indices":5253, + "material":3 + } + ] + }, + { + "name":"Mesh.6492", + "primitives":[ + { + "attributes":{ + "POSITION":5254, + "NORMAL":5255, + "TEXCOORD_0":5256 + }, + "indices":5257, + "material":0 + } + ] + }, + { + "name":"Mesh.2221", + "primitives":[ + { + "attributes":{ + "POSITION":5258, + "NORMAL":5259, + "TEXCOORD_0":5260 + }, + "indices":5261, + "material":0 + } + ] + }, + { + "name":"Mesh.8377", + "primitives":[ + { + "attributes":{ + "POSITION":5262, + "NORMAL":5263 + }, + "indices":3312, + "material":3 + } + ] + }, + { + "name":"Mesh.7180", + "primitives":[ + { + "attributes":{ + "POSITION":5264, + "NORMAL":5265, + "TEXCOORD_0":5266 + }, + "indices":4257, + "material":7 + } + ] + }, + { + "name":"Mesh.553", + "primitives":[ + { + "attributes":{ + "POSITION":5267, + "NORMAL":5268, + "TEXCOORD_0":5269 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2515", + "primitives":[ + { + "attributes":{ + "POSITION":5270, + "NORMAL":5271, + "TEXCOORD_0":5272 + }, + "indices":1400, + "material":0 + } + ] + }, + { + "name":"Mesh.6618", + "primitives":[ + { + "attributes":{ + "POSITION":5273, + "NORMAL":5274 + }, + "indices":5275, + "material":0 + } + ] + }, + { + "name":"Mesh.6093", + "primitives":[ + { + "attributes":{ + "POSITION":5276, + "NORMAL":5277, + "TEXCOORD_0":5278 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.790", + "primitives":[ + { + "attributes":{ + "POSITION":5279, + "NORMAL":5280, + "TEXCOORD_0":5281 + }, + "indices":5282, + "material":0 + } + ] + }, + { + "name":"Mesh.078", + "primitives":[ + { + "attributes":{ + "POSITION":5283, + "NORMAL":5284, + "TEXCOORD_0":5285 + }, + "indices":5286, + "material":41 + } + ] + }, + { + "name":"Mesh.8637", + "primitives":[ + { + "attributes":{ + "POSITION":5287, + "NORMAL":5288 + }, + "indices":5289, + "material":3 + } + ] + }, + { + "name":"Mesh.2437", + "primitives":[ + { + "attributes":{ + "POSITION":5290, + "NORMAL":5291, + "TEXCOORD_0":5292 + }, + "indices":4958, + "material":0 + } + ] + }, + { + "name":"Mesh.2799", + "primitives":[ + { + "attributes":{ + "POSITION":5293, + "NORMAL":5294, + "TEXCOORD_0":5295 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.600", + "primitives":[ + { + "attributes":{ + "POSITION":5296, + "NORMAL":5297, + "TEXCOORD_0":5298 + }, + "indices":5299, + "material":0 + } + ] + }, + { + "name":"Mesh.2731", + "primitives":[ + { + "attributes":{ + "POSITION":5300, + "NORMAL":5301, + "TEXCOORD_0":5302 + }, + "indices":296, + "material":4 + } + ] + }, + { + "name":"Mesh.5111", + "primitives":[ + { + "attributes":{ + "POSITION":5303, + "NORMAL":5304, + "TEXCOORD_0":5305 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5447", + "primitives":[ + { + "attributes":{ + "POSITION":5306, + "NORMAL":5307, + "TEXCOORD_0":5308 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2589", + "primitives":[ + { + "attributes":{ + "POSITION":5309, + "NORMAL":5310, + "TEXCOORD_0":5311 + }, + "indices":2427, + "material":0 + } + ] + }, + { + "name":"Mesh.6134", + "primitives":[ + { + "attributes":{ + "POSITION":5312, + "NORMAL":5313, + "TEXCOORD_0":5314 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.6876", + "primitives":[ + { + "attributes":{ + "POSITION":5315, + "NORMAL":5316 + }, + "indices":5317, + "material":0 + } + ] + }, + { + "name":"Mesh.8368", + "primitives":[ + { + "attributes":{ + "POSITION":5318, + "NORMAL":5319 + }, + "indices":510, + "material":3 + } + ] + }, + { + "name":"Mesh.1878", + "primitives":[ + { + "attributes":{ + "POSITION":5320, + "NORMAL":5321 + }, + "indices":5322, + "material":22 + } + ] + }, + { + "name":"Mesh.8324", + "primitives":[ + { + "attributes":{ + "POSITION":5323, + "NORMAL":5324 + }, + "indices":68, + "material":3 + } + ] + }, + { + "name":"Mesh.6097", + "primitives":[ + { + "attributes":{ + "POSITION":5325, + "NORMAL":5326, + "TEXCOORD_0":5327 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.4909", + "primitives":[ + { + "attributes":{ + "POSITION":5328, + "NORMAL":5329, + "TEXCOORD_0":5330 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5736", + "primitives":[ + { + "attributes":{ + "POSITION":5331, + "NORMAL":5332 + }, + "indices":5333, + "material":0 + } + ] + }, + { + "name":"Mesh.5398", + "primitives":[ + { + "attributes":{ + "POSITION":5334, + "NORMAL":5335, + "TEXCOORD_0":5336 + }, + "indices":1215, + "material":2 + } + ] + }, + { + "name":"Mesh.101", + "primitives":[ + { + "attributes":{ + "POSITION":5337, + "NORMAL":5338, + "TEXCOORD_0":5339 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5265", + "primitives":[ + { + "attributes":{ + "POSITION":5340, + "NORMAL":5341, + "TEXCOORD_0":5342 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5961", + "primitives":[ + { + "attributes":{ + "POSITION":5343, + "NORMAL":5344, + "TEXCOORD_0":5345 + }, + "indices":1822, + "material":11 + } + ] + }, + { + "name":"Mesh.1992", + "primitives":[ + { + "attributes":{ + "POSITION":5346, + "NORMAL":5347, + "TEXCOORD_0":5348 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.873", + "primitives":[ + { + "attributes":{ + "POSITION":5349, + "NORMAL":5350, + "TEXCOORD_0":5351 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7572", + "primitives":[ + { + "attributes":{ + "POSITION":5352, + "NORMAL":5353 + }, + "indices":5354, + "material":3 + } + ] + }, + { + "name":"Mesh.6464", + "primitives":[ + { + "attributes":{ + "POSITION":5355, + "NORMAL":5356, + "TEXCOORD_0":5357 + }, + "indices":3235, + "material":0 + } + ] + }, + { + "name":"Mesh.2171", + "primitives":[ + { + "attributes":{ + "POSITION":5358, + "NORMAL":5359, + "TEXCOORD_0":5360 + }, + "indices":5361, + "material":0 + } + ] + }, + { + "name":"Mesh.2617", + "primitives":[ + { + "attributes":{ + "POSITION":5362, + "NORMAL":5363, + "TEXCOORD_0":5364 + }, + "indices":1611, + "material":0 + } + ] + }, + { + "name":"Mesh.5672", + "primitives":[ + { + "attributes":{ + "POSITION":5365, + "NORMAL":5366, + "TEXCOORD_0":5367 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6640", + "primitives":[ + { + "attributes":{ + "POSITION":5368, + "NORMAL":5369 + }, + "indices":5370, + "material":0 + } + ] + }, + { + "name":"Mesh.2233", + "primitives":[ + { + "attributes":{ + "POSITION":5371, + "NORMAL":5372, + "TEXCOORD_0":5373 + }, + "indices":2803, + "material":0 + } + ] + }, + { + "name":"Mesh.5156", + "primitives":[ + { + "attributes":{ + "POSITION":5374, + "NORMAL":5375, + "TEXCOORD_0":5376 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.802", + "primitives":[ + { + "attributes":{ + "POSITION":5377, + "NORMAL":5378, + "TEXCOORD_0":5379 + }, + "indices":1868, + "material":0 + } + ] + }, + { + "name":"Mesh.6393", + "primitives":[ + { + "attributes":{ + "POSITION":5380, + "NORMAL":5381 + }, + "indices":1775, + "material":0 + } + ] + }, + { + "name":"Mesh.987", + "primitives":[ + { + "attributes":{ + "POSITION":5382, + "NORMAL":5383, + "TEXCOORD_0":5384 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.9025", + "primitives":[ + { + "attributes":{ + "POSITION":5385, + "NORMAL":5386, + "TEXCOORD_0":5387 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.9187", + "primitives":[ + { + "attributes":{ + "POSITION":5388, + "NORMAL":5389, + "TEXCOORD_0":5390 + }, + "indices":5391, + "material":7 + } + ] + }, + { + "name":"Mesh.5123", + "primitives":[ + { + "attributes":{ + "POSITION":5392, + "NORMAL":5393, + "TEXCOORD_0":5394 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2601", + "primitives":[ + { + "attributes":{ + "POSITION":5395, + "NORMAL":5396, + "TEXCOORD_0":5397 + }, + "indices":1060, + "material":0 + } + ] + }, + { + "name":"Mesh.876", + "primitives":[ + { + "attributes":{ + "POSITION":5398, + "NORMAL":5399, + "TEXCOORD_0":5400 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.6979", + "primitives":[ + { + "attributes":{ + "POSITION":5401, + "NORMAL":5402, + "TEXCOORD_0":5403 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.8888", + "primitives":[ + { + "attributes":{ + "POSITION":5404, + "NORMAL":5405 + }, + "indices":5406, + "material":3 + } + ] + }, + { + "name":"Mesh.8463", + "primitives":[ + { + "attributes":{ + "POSITION":5407, + "NORMAL":5408 + }, + "indices":4574, + "material":3 + } + ] + }, + { + "name":"Mesh.1739", + "primitives":[ + { + "attributes":{ + "POSITION":5409, + "NORMAL":5410 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.8269", + "primitives":[ + { + "attributes":{ + "POSITION":5411, + "NORMAL":5412 + }, + "indices":5413, + "material":3 + } + ] + }, + { + "name":"Mesh.2706", + "primitives":[ + { + "attributes":{ + "POSITION":5414, + "NORMAL":5415, + "TEXCOORD_0":5416 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.1070", + "primitives":[ + { + "attributes":{ + "POSITION":5417, + "NORMAL":5418, + "TEXCOORD_0":5419 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.7081", + "primitives":[ + { + "attributes":{ + "POSITION":5420, + "NORMAL":5421, + "TEXCOORD_0":5422 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.9131", + "primitives":[ + { + "attributes":{ + "POSITION":5423, + "NORMAL":5424, + "TEXCOORD_0":5425 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.2746", + "primitives":[ + { + "attributes":{ + "POSITION":5426, + "NORMAL":5427, + "TEXCOORD_0":5428 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.6271", + "primitives":[ + { + "attributes":{ + "POSITION":5429, + "NORMAL":5430, + "TEXCOORD_0":5431 + }, + "indices":3712, + "material":33 + } + ] + }, + { + "name":"Mesh.4981", + "primitives":[ + { + "attributes":{ + "POSITION":5432, + "NORMAL":5433, + "TEXCOORD_0":5434 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1853", + "primitives":[ + { + "attributes":{ + "POSITION":5435, + "NORMAL":5436 + }, + "indices":386, + "material":0 + } + ] + }, + { + "name":"Mesh.204", + "primitives":[ + { + "attributes":{ + "POSITION":5437, + "NORMAL":5438, + "TEXCOORD_0":5439 + }, + "indices":5440, + "material":3 + } + ] + }, + { + "name":"Mesh.7490", + "primitives":[ + { + "attributes":{ + "POSITION":5441, + "NORMAL":5442 + }, + "indices":5443, + "material":3 + } + ] + }, + { + "name":"Mesh.5206", + "primitives":[ + { + "attributes":{ + "POSITION":5444, + "NORMAL":5445, + "TEXCOORD_0":5446 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7473", + "primitives":[ + { + "attributes":{ + "POSITION":5447, + "NORMAL":5448 + }, + "indices":1388, + "material":3 + } + ] + }, + { + "name":"Mesh.5055", + "primitives":[ + { + "attributes":{ + "POSITION":5449, + "NORMAL":5450, + "TEXCOORD_0":5451 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8829", + "primitives":[ + { + "attributes":{ + "POSITION":5452, + "NORMAL":5453 + }, + "indices":5454, + "material":3 + } + ] + }, + { + "name":"Mesh.5751", + "primitives":[ + { + "attributes":{ + "POSITION":5455, + "NORMAL":5456 + }, + "indices":1268, + "material":0 + } + ] + }, + { + "name":"Mesh.1782", + "primitives":[ + { + "attributes":{ + "POSITION":5457, + "NORMAL":5458 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.6966", + "primitives":[ + { + "attributes":{ + "POSITION":5459, + "NORMAL":5460 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.2109", + "primitives":[ + { + "attributes":{ + "POSITION":5461, + "NORMAL":5462, + "TEXCOORD_0":5463 + }, + "indices":5464, + "material":3 + } + ] + }, + { + "name":"Mesh.6011", + "primitives":[ + { + "attributes":{ + "POSITION":5465, + "NORMAL":5466, + "TEXCOORD_0":5467 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.5280", + "primitives":[ + { + "attributes":{ + "POSITION":5468, + "NORMAL":5469, + "TEXCOORD_0":5470 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7402", + "primitives":[ + { + "attributes":{ + "POSITION":5471, + "NORMAL":5472, + "TEXCOORD_0":5473 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.6615", + "primitives":[ + { + "attributes":{ + "POSITION":5474, + "NORMAL":5475 + }, + "indices":4227, + "material":0 + } + ] + }, + { + "name":"Mesh.2007", + "primitives":[ + { + "attributes":{ + "POSITION":5476, + "NORMAL":5477, + "TEXCOORD_0":5478 + }, + "indices":5479, + "material":0 + } + ] + }, + { + "name":"Mesh.8900", + "primitives":[ + { + "attributes":{ + "POSITION":5480, + "NORMAL":5481 + }, + "indices":5482, + "material":3 + } + ] + }, + { + "name":"Mesh.6479", + "primitives":[ + { + "attributes":{ + "POSITION":5483, + "NORMAL":5484, + "TEXCOORD_0":5485 + }, + "indices":5486, + "material":0 + } + ] + }, + { + "name":"Mesh.5024", + "primitives":[ + { + "attributes":{ + "POSITION":5487, + "NORMAL":5488, + "TEXCOORD_0":5489 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5720", + "primitives":[ + { + "attributes":{ + "POSITION":5490, + "NORMAL":5491 + }, + "indices":1775, + "material":0 + } + ] + }, + { + "name":"Mesh.8019", + "primitives":[ + { + "attributes":{ + "POSITION":5492, + "NORMAL":5493, + "TEXCOORD_0":5494 + }, + "indices":4183, + "material":0 + } + ] + }, + { + "name":"Mesh.1751", + "primitives":[ + { + "attributes":{ + "POSITION":5495, + "NORMAL":5496 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.777", + "primitives":[ + { + "attributes":{ + "POSITION":5497, + "NORMAL":5498, + "TEXCOORD_0":5499 + }, + "indices":1878, + "material":0 + } + ] + }, + { + "name":"Mesh.7340", + "primitives":[ + { + "attributes":{ + "POSITION":5500, + "NORMAL":5501, + "TEXCOORD_0":5502 + }, + "indices":5503, + "material":7 + } + ] + }, + { + "name":"Mesh.5249", + "primitives":[ + { + "attributes":{ + "POSITION":5504, + "NORMAL":5505, + "TEXCOORD_0":5506 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.587", + "primitives":[ + { + "attributes":{ + "POSITION":5507, + "NORMAL":5508, + "TEXCOORD_0":5509 + }, + "indices":5510, + "material":0 + } + ] + }, + { + "name":"Mesh.184", + "primitives":[ + { + "attributes":{ + "POSITION":5511, + "NORMAL":5512, + "TEXCOORD_0":5513 + }, + "indices":5510, + "material":0 + } + ] + }, + { + "name":"Mesh.5631", + "primitives":[ + { + "attributes":{ + "POSITION":5514, + "NORMAL":5515, + "TEXCOORD_0":5516 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6408", + "primitives":[ + { + "attributes":{ + "POSITION":5517, + "NORMAL":5518 + }, + "indices":5519, + "material":0 + } + ] + }, + { + "name":"Mesh.4953", + "primitives":[ + { + "attributes":{ + "POSITION":5520, + "NORMAL":5521, + "TEXCOORD_0":5522 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6121", + "primitives":[ + { + "attributes":{ + "POSITION":5523, + "NORMAL":5524, + "TEXCOORD_0":5525 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.746", + "primitives":[ + { + "attributes":{ + "POSITION":5526, + "NORMAL":5527, + "TEXCOORD_0":5528 + }, + "indices":1621, + "material":0 + } + ] + }, + { + "name":"Mesh.498", + "primitives":[ + { + "attributes":{ + "POSITION":5529, + "NORMAL":5530, + "TEXCOORD_0":5531 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.4882", + "primitives":[ + { + "attributes":{ + "POSITION":5532, + "NORMAL":5533, + "TEXCOORD_0":5534 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.931", + "primitives":[ + { + "attributes":{ + "POSITION":5535, + "NORMAL":5536, + "TEXCOORD_0":5537 + }, + "indices":5538, + "material":0 + } + ] + }, + { + "name":"Mesh.6445", + "primitives":[ + { + "attributes":{ + "POSITION":5539, + "NORMAL":5540, + "TEXCOORD_0":5541 + }, + "indices":5542, + "material":0 + } + ] + }, + { + "name":"Mesh.7485", + "primitives":[ + { + "attributes":{ + "POSITION":5543, + "NORMAL":5544 + }, + "indices":2692, + "material":3 + } + ] + }, + { + "name":"Mesh.7957", + "primitives":[ + { + "attributes":{ + "POSITION":5545, + "NORMAL":5546 + }, + "indices":5547, + "material":3 + } + ] + }, + { + "name":"Mesh.4873", + "primitives":[ + { + "attributes":{ + "POSITION":5548, + "NORMAL":5549, + "TEXCOORD_0":5550 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5067", + "primitives":[ + { + "attributes":{ + "POSITION":5551, + "NORMAL":5552, + "TEXCOORD_0":5553 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5137", + "primitives":[ + { + "attributes":{ + "POSITION":5554, + "NORMAL":5555, + "TEXCOORD_0":5556 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5578", + "primitives":[ + { + "attributes":{ + "POSITION":5557, + "NORMAL":5558, + "TEXCOORD_0":5559 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7670", + "primitives":[ + { + "attributes":{ + "POSITION":5560, + "NORMAL":5561 + }, + "indices":4705, + "material":3 + } + ] + }, + { + "name":"Mesh.6902", + "primitives":[ + { + "attributes":{ + "POSITION":5562, + "NORMAL":5563 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.4956", + "primitives":[ + { + "attributes":{ + "POSITION":5564, + "NORMAL":5565, + "TEXCOORD_0":5566 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1084", + "primitives":[ + { + "attributes":{ + "POSITION":5567, + "NORMAL":5568, + "TEXCOORD_0":5569 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.5292", + "primitives":[ + { + "attributes":{ + "POSITION":5570, + "NORMAL":5571, + "TEXCOORD_0":5572 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.449", + "primitives":[ + { + "attributes":{ + "POSITION":5573, + "NORMAL":5574 + }, + "indices":813, + "material":3 + } + ] + }, + { + "name":"Mesh.996", + "primitives":[ + { + "attributes":{ + "POSITION":5575, + "NORMAL":5576, + "TEXCOORD_0":5577 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.1329", + "primitives":[ + { + "attributes":{ + "POSITION":5578, + "NORMAL":5579, + "TEXCOORD_0":5580 + }, + "indices":5581, + "material":29 + }, + { + "attributes":{ + "POSITION":5582, + "NORMAL":5583, + "TEXCOORD_0":5584 + }, + "indices":5585, + "material":42 + }, + { + "attributes":{ + "POSITION":5586, + "NORMAL":5587, + "TEXCOORD_0":5588 + }, + "indices":5589, + "material":43 + }, + { + "attributes":{ + "POSITION":5590, + "NORMAL":5591, + "TEXCOORD_0":5592 + }, + "indices":5593 + }, + { + "attributes":{ + "POSITION":5594, + "NORMAL":5595, + "TEXCOORD_0":5596 + }, + "indices":5597, + "material":44 + }, + { + "attributes":{ + "POSITION":5598, + "NORMAL":5599, + "TEXCOORD_0":5600 + }, + "indices":5601, + "material":32 + }, + { + "attributes":{ + "POSITION":5602, + "NORMAL":5603, + "TEXCOORD_0":5604 + }, + "indices":5605, + "material":45 + } + ] + }, + { + "name":"Mesh.8235", + "primitives":[ + { + "attributes":{ + "POSITION":5606, + "NORMAL":5607 + }, + "indices":4580, + "material":3 + } + ] + }, + { + "name":"Mesh.8058", + "primitives":[ + { + "attributes":{ + "POSITION":5608, + "NORMAL":5609, + "TEXCOORD_0":5610 + }, + "indices":5611, + "material":3 + } + ] + }, + { + "name":"Mesh.8526", + "primitives":[ + { + "attributes":{ + "POSITION":5612, + "NORMAL":5613 + }, + "indices":5614, + "material":3 + } + ] + }, + { + "name":"Mesh.6491", + "primitives":[ + { + "attributes":{ + "POSITION":5615, + "NORMAL":5616, + "TEXCOORD_0":5617 + }, + "indices":5618, + "material":0 + } + ] + }, + { + "name":"Mesh.2220", + "primitives":[ + { + "attributes":{ + "POSITION":5619, + "NORMAL":5620, + "TEXCOORD_0":5621 + }, + "indices":4391, + "material":0 + } + ] + }, + { + "name":"Mesh.6818", + "primitives":[ + { + "attributes":{ + "POSITION":5622, + "NORMAL":5623, + "TEXCOORD_0":5624 + }, + "indices":5625, + "material":3 + } + ] + }, + { + "name":"Mesh.5768", + "primitives":[ + { + "attributes":{ + "POSITION":5626, + "NORMAL":5627 + }, + "indices":5628, + "material":0 + } + ] + }, + { + "name":"Mesh.5508", + "primitives":[ + { + "attributes":{ + "POSITION":5629, + "NORMAL":5630, + "TEXCOORD_0":5631 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2514", + "primitives":[ + { + "attributes":{ + "POSITION":5632, + "NORMAL":5633, + "TEXCOORD_0":5634 + }, + "indices":914, + "material":0 + } + ] + }, + { + "name":"Mesh.789", + "primitives":[ + { + "attributes":{ + "POSITION":5635, + "NORMAL":5636, + "TEXCOORD_0":5637 + }, + "indices":5638, + "material":0 + } + ] + }, + { + "name":"Mesh.2873", + "primitives":[ + { + "attributes":{ + "POSITION":5639, + "NORMAL":5640 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.7753", + "primitives":[ + { + "attributes":{ + "POSITION":5641, + "NORMAL":5642 + }, + "indices":5643, + "material":3 + } + ] + }, + { + "name":"Mesh.7345", + "primitives":[ + { + "attributes":{ + "POSITION":5644, + "NORMAL":5645, + "TEXCOORD_0":5646 + }, + "indices":5647, + "material":7 + } + ] + }, + { + "name":"Mesh.1131", + "primitives":[ + { + "attributes":{ + "POSITION":5648, + "NORMAL":5649, + "TEXCOORD_0":5650 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.2436", + "primitives":[ + { + "attributes":{ + "POSITION":5651, + "NORMAL":5652, + "TEXCOORD_0":5653 + }, + "indices":5654, + "material":0 + } + ] + }, + { + "name":"Mesh.8543", + "primitives":[ + { + "attributes":{ + "POSITION":5655, + "NORMAL":5656 + }, + "indices":5657, + "material":3 + } + ] + }, + { + "name":"Mesh.599", + "primitives":[ + { + "attributes":{ + "POSITION":5658, + "NORMAL":5659, + "TEXCOORD_0":5660 + }, + "indices":5661, + "material":0 + } + ] + }, + { + "name":"Mesh.2730", + "primitives":[ + { + "attributes":{ + "POSITION":5662, + "NORMAL":5663, + "TEXCOORD_0":5664 + }, + "indices":26, + "material":4 + } + ] + }, + { + "name":"Mesh.5110", + "primitives":[ + { + "attributes":{ + "POSITION":5665, + "NORMAL":5666, + "TEXCOORD_0":5667 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6133", + "primitives":[ + { + "attributes":{ + "POSITION":5668, + "NORMAL":5669, + "TEXCOORD_0":5670 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.8367", + "primitives":[ + { + "attributes":{ + "POSITION":5671, + "NORMAL":5672 + }, + "indices":5673, + "material":3 + } + ] + }, + { + "name":"Mesh.5991", + "primitives":[ + { + "attributes":{ + "POSITION":5674, + "NORMAL":5675, + "TEXCOORD_0":5676 + }, + "indices":947, + "material":5 + } + ] + }, + { + "name":"Mesh.7789", + "primitives":[ + { + "attributes":{ + "POSITION":5677, + "NORMAL":5678 + }, + "indices":5679, + "material":3 + } + ] + }, + { + "name":"Mesh.2744", + "primitives":[ + { + "attributes":{ + "POSITION":5680, + "NORMAL":5681, + "TEXCOORD_0":5682 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.8446", + "primitives":[ + { + "attributes":{ + "POSITION":5683, + "NORMAL":5684 + }, + "indices":5685, + "material":3 + } + ] + }, + { + "name":"Mesh.6471", + "primitives":[ + { + "attributes":{ + "POSITION":5686, + "NORMAL":5687, + "TEXCOORD_0":5688 + }, + "indices":2960, + "material":0 + } + ] + }, + { + "name":"Mesh.1877", + "primitives":[ + { + "attributes":{ + "POSITION":5689, + "NORMAL":5690 + }, + "indices":5691, + "material":22 + } + ] + }, + { + "name":"Mesh.5735", + "primitives":[ + { + "attributes":{ + "POSITION":5692, + "NORMAL":5693 + }, + "indices":5694, + "material":0 + } + ] + }, + { + "name":"Mesh.2517", + "primitives":[ + { + "attributes":{ + "POSITION":5695, + "NORMAL":5696, + "TEXCOORD_0":5697 + }, + "indices":5698, + "material":0 + } + ] + }, + { + "name":"Mesh.7497", + "primitives":[ + { + "attributes":{ + "POSITION":5699, + "NORMAL":5700 + }, + "indices":5701, + "material":3 + } + ] + }, + { + "name":"Mesh.100", + "primitives":[ + { + "attributes":{ + "POSITION":5702, + "NORMAL":5703, + "TEXCOORD_0":5704 + }, + "indices":5705, + "material":0 + } + ] + }, + { + "name":"Mesh.832", + "primitives":[ + { + "attributes":{ + "POSITION":5706, + "NORMAL":5707, + "TEXCOORD_0":5708 + }, + "indices":708, + "material":0 + } + ] + }, + { + "name":"Mesh.1130", + "primitives":[ + { + "attributes":{ + "POSITION":5709, + "NORMAL":5710, + "TEXCOORD_0":5711 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.5960", + "primitives":[ + { + "attributes":{ + "POSITION":5712, + "NORMAL":5713, + "TEXCOORD_0":5714 + }, + "indices":1822, + "material":11 + } + ] + }, + { + "name":"Mesh.1991", + "primitives":[ + { + "attributes":{ + "POSITION":5715, + "NORMAL":5716, + "TEXCOORD_0":5717 + }, + "indices":5718, + "material":0 + } + ] + }, + { + "name":"Mesh.872", + "primitives":[ + { + "attributes":{ + "POSITION":5719, + "NORMAL":5720, + "TEXCOORD_0":5721 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7571", + "primitives":[ + { + "attributes":{ + "POSITION":5722, + "NORMAL":5723 + }, + "indices":5724, + "material":3 + } + ] + }, + { + "name":"Mesh.6463", + "primitives":[ + { + "attributes":{ + "POSITION":5725, + "NORMAL":5726, + "TEXCOORD_0":5727 + }, + "indices":5728, + "material":0 + } + ] + }, + { + "name":"Mesh.5008", + "primitives":[ + { + "attributes":{ + "POSITION":5729, + "NORMAL":5730, + "TEXCOORD_0":5731 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1047", + "primitives":[ + { + "attributes":{ + "POSITION":5732, + "NORMAL":5733, + "TEXCOORD_0":5734 + }, + "indices":140, + "material":0 + } + ] + }, + { + "name":"Mesh.1880", + "primitives":[ + { + "attributes":{ + "POSITION":5735, + "NORMAL":5736 + }, + "indices":2217, + "material":22 + } + ] + }, + { + "name":"Mesh.1735", + "primitives":[ + { + "attributes":{ + "POSITION":5737, + "NORMAL":5738 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.2232", + "primitives":[ + { + "attributes":{ + "POSITION":5739, + "NORMAL":5740, + "TEXCOORD_0":5741 + }, + "indices":3155, + "material":0 + } + ] + }, + { + "name":"Mesh.9099", + "primitives":[ + { + "attributes":{ + "POSITION":5742, + "NORMAL":5743, + "TEXCOORD_0":5744 + }, + "indices":465, + "material":7 + } + ] + }, + { + "name":"Mesh.6392", + "primitives":[ + { + "attributes":{ + "POSITION":5745, + "NORMAL":5746 + }, + "indices":5747, + "material":0 + } + ] + }, + { + "name":"Mesh.8922", + "primitives":[ + { + "attributes":{ + "POSITION":5748, + "NORMAL":5749, + "TEXCOORD_0":5750 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.1960", + "primitives":[ + { + "attributes":{ + "POSITION":5751, + "NORMAL":5752 + }, + "indices":2600, + "material":0 + } + ] + }, + { + "name":"Mesh.986", + "primitives":[ + { + "attributes":{ + "POSITION":5753, + "NORMAL":5754, + "TEXCOORD_0":5755 + }, + "indices":5756, + "material":0 + } + ] + }, + { + "name":"Mesh.8832", + "primitives":[ + { + "attributes":{ + "POSITION":5757, + "NORMAL":5758 + }, + "indices":2372, + "material":3 + } + ] + }, + { + "name":"Mesh.8040", + "primitives":[ + { + "attributes":{ + "POSITION":5759, + "NORMAL":5760, + "TEXCOORD_0":5761 + }, + "indices":2203, + "material":0 + } + ] + }, + { + "name":"Mesh.8012", + "primitives":[ + { + "attributes":{ + "POSITION":5762, + "NORMAL":5763, + "TEXCOORD_0":5764 + }, + "indices":5765, + "material":3 + } + ] + }, + { + "name":"Mesh.5122", + "primitives":[ + { + "attributes":{ + "POSITION":5766, + "NORMAL":5767, + "TEXCOORD_0":5768 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5975", + "primitives":[ + { + "attributes":{ + "POSITION":5769, + "NORMAL":5770, + "TEXCOORD_0":5771 + }, + "indices":5772, + "material":33 + } + ] + }, + { + "name":"Mesh.2600", + "primitives":[ + { + "attributes":{ + "POSITION":5773, + "NORMAL":5774, + "TEXCOORD_0":5775 + }, + "indices":1400, + "material":0 + } + ] + }, + { + "name":"Mesh.875", + "primitives":[ + { + "attributes":{ + "POSITION":5776, + "NORMAL":5777, + "TEXCOORD_0":5778 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.730", + "primitives":[ + { + "attributes":{ + "POSITION":5779, + "NORMAL":5780, + "TEXCOORD_0":5781 + }, + "indices":1379, + "material":0 + } + ] + }, + { + "name":"Mesh.8887", + "primitives":[ + { + "attributes":{ + "POSITION":5782, + "NORMAL":5783 + }, + "indices":5784, + "material":3 + } + ] + }, + { + "name":"Mesh.6524", + "primitives":[ + { + "attributes":{ + "POSITION":5785, + "NORMAL":5786, + "TEXCOORD_0":5787 + }, + "indices":5788, + "material":0 + } + ] + }, + { + "name":"Mesh.1738", + "primitives":[ + { + "attributes":{ + "POSITION":5789, + "NORMAL":5790 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.8268", + "primitives":[ + { + "attributes":{ + "POSITION":5791, + "NORMAL":5792 + }, + "indices":4052, + "material":3 + } + ] + }, + { + "name":"Mesh.407", + "primitives":[ + { + "attributes":{ + "POSITION":5793, + "NORMAL":5794 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.2417", + "primitives":[ + { + "attributes":{ + "POSITION":5795, + "NORMAL":5796, + "TEXCOORD_0":5797 + }, + "indices":4958, + "material":0 + } + ] + }, + { + "name":"Mesh.8296", + "primitives":[ + { + "attributes":{ + "POSITION":5798, + "NORMAL":5799 + }, + "indices":5800, + "material":3 + } + ] + }, + { + "name":"Mesh.8779", + "primitives":[ + { + "attributes":{ + "POSITION":5801, + "NORMAL":5802 + }, + "indices":5803, + "material":3 + } + ] + }, + { + "name":"Mesh.7987", + "primitives":[ + { + "attributes":{ + "POSITION":5804, + "NORMAL":5805, + "TEXCOORD_0":5806 + }, + "indices":5807, + "material":3 + } + ] + }, + { + "name":"Mesh.7080", + "primitives":[ + { + "attributes":{ + "POSITION":5808, + "NORMAL":5809 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.6108", + "primitives":[ + { + "attributes":{ + "POSITION":5810, + "NORMAL":5811, + "TEXCOORD_0":5812 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.8856", + "primitives":[ + { + "attributes":{ + "POSITION":5813, + "NORMAL":5814 + }, + "indices":355, + "material":3 + } + ] + }, + { + "name":"Mesh.4980", + "primitives":[ + { + "attributes":{ + "POSITION":5815, + "NORMAL":5816, + "TEXCOORD_0":5817 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.205", + "primitives":[ + { + "attributes":{ + "POSITION":5818, + "NORMAL":5819, + "TEXCOORD_0":5820 + }, + "indices":5821, + "material":3 + } + ] + }, + { + "name":"Mesh.5205", + "primitives":[ + { + "attributes":{ + "POSITION":5822, + "NORMAL":5823, + "TEXCOORD_0":5824 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7472", + "primitives":[ + { + "attributes":{ + "POSITION":5825, + "NORMAL":5826 + }, + "indices":3115, + "material":3 + } + ] + }, + { + "name":"Mesh.8819", + "primitives":[ + { + "attributes":{ + "POSITION":5827, + "NORMAL":5828 + }, + "indices":5829, + "material":3 + } + ] + }, + { + "name":"Mesh.8468", + "primitives":[ + { + "attributes":{ + "POSITION":5830, + "NORMAL":5831 + }, + "indices":5832, + "material":3 + } + ] + }, + { + "name":"Mesh.7625", + "primitives":[ + { + "attributes":{ + "POSITION":5833, + "NORMAL":5834 + }, + "indices":5835, + "material":3 + } + ] + }, + { + "name":"Mesh.958", + "primitives":[ + { + "attributes":{ + "POSITION":5836, + "NORMAL":5837, + "TEXCOORD_0":5838 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.1781", + "primitives":[ + { + "attributes":{ + "POSITION":5839, + "NORMAL":5840 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.2108", + "primitives":[ + { + "attributes":{ + "POSITION":5841, + "NORMAL":5842, + "TEXCOORD_0":5843 + }, + "indices":5844, + "material":3 + } + ] + }, + { + "name":"Mesh.111", + "primitives":[ + { + "attributes":{ + "POSITION":5845, + "NORMAL":5846, + "TEXCOORD_0":5847 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7301", + "primitives":[ + { + "attributes":{ + "POSITION":5848, + "NORMAL":5849, + "TEXCOORD_0":5850 + }, + "indices":5851, + "material":7 + } + ] + }, + { + "name":"Mesh.7401", + "primitives":[ + { + "attributes":{ + "POSITION":5852, + "NORMAL":5853, + "TEXCOORD_0":5854 + }, + "indices":1934, + "material":7 + } + ] + }, + { + "name":"Mesh.2006", + "primitives":[ + { + "attributes":{ + "POSITION":5855, + "NORMAL":5856, + "TEXCOORD_0":5857 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.210", + "primitives":[ + { + "attributes":{ + "POSITION":5858, + "NORMAL":5859, + "TEXCOORD_0":5860 + }, + "indices":5861, + "material":3 + } + ] + }, + { + "name":"Mesh.9136", + "primitives":[ + { + "attributes":{ + "POSITION":5862, + "NORMAL":5863, + "TEXCOORD_0":5864 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.8899", + "primitives":[ + { + "attributes":{ + "POSITION":5865, + "NORMAL":5866 + }, + "indices":5867, + "material":3 + } + ] + }, + { + "name":"Mesh.6478", + "primitives":[ + { + "attributes":{ + "POSITION":5868, + "NORMAL":5869, + "TEXCOORD_0":5870 + }, + "indices":5871, + "material":0 + } + ] + }, + { + "name":"Mesh.7758", + "primitives":[ + { + "attributes":{ + "POSITION":5872, + "NORMAL":5873 + }, + "indices":5874, + "material":3 + } + ] + }, + { + "name":"Mesh.5023", + "primitives":[ + { + "attributes":{ + "POSITION":5875, + "NORMAL":5876, + "TEXCOORD_0":5877 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6440", + "primitives":[ + { + "attributes":{ + "POSITION":5878, + "NORMAL":5879, + "TEXCOORD_0":5880 + }, + "indices":5618, + "material":0 + } + ] + }, + { + "name":"Mesh.5684", + "primitives":[ + { + "attributes":{ + "POSITION":5881, + "NORMAL":5882, + "TEXCOORD_0":5883 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6263", + "primitives":[ + { + "attributes":{ + "POSITION":5884, + "NORMAL":5885, + "TEXCOORD_0":5886 + }, + "indices":5887, + "material":23 + } + ] + }, + { + "name":"Mesh.1750", + "primitives":[ + { + "attributes":{ + "POSITION":5888, + "NORMAL":5889 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.776", + "primitives":[ + { + "attributes":{ + "POSITION":5890, + "NORMAL":5891, + "TEXCOORD_0":5892 + }, + "indices":1510, + "material":0 + } + ] + }, + { + "name":"Mesh.032", + "primitives":[ + { + "attributes":{ + "POSITION":5893, + "NORMAL":5894 + }, + "indices":5895, + "material":22 + } + ] + }, + { + "name":"Mesh.6845", + "primitives":[ + { + "attributes":{ + "POSITION":5896, + "NORMAL":5897, + "TEXCOORD_0":5898 + }, + "indices":5899, + "material":3 + } + ] + }, + { + "name":"Mesh.7339", + "primitives":[ + { + "attributes":{ + "POSITION":5900, + "NORMAL":5901, + "TEXCOORD_0":5902 + }, + "indices":5903, + "material":7 + } + ] + }, + { + "name":"Mesh.5248", + "primitives":[ + { + "attributes":{ + "POSITION":5904, + "NORMAL":5905, + "TEXCOORD_0":5906 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.183", + "primitives":[ + { + "attributes":{ + "POSITION":5907, + "NORMAL":5908, + "TEXCOORD_0":5909 + }, + "indices":1554, + "material":0 + } + ] + }, + { + "name":"Mesh.6407", + "primitives":[ + { + "attributes":{ + "POSITION":5910, + "NORMAL":5911 + }, + "indices":5912, + "material":0 + } + ] + }, + { + "name":"Mesh.4952", + "primitives":[ + { + "attributes":{ + "POSITION":5913, + "NORMAL":5914, + "TEXCOORD_0":5915 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.856", + "primitives":[ + { + "attributes":{ + "POSITION":5916, + "NORMAL":5917, + "TEXCOORD_0":5918 + }, + "indices":1996, + "material":0 + } + ] + }, + { + "name":"Mesh.6120", + "primitives":[ + { + "attributes":{ + "POSITION":5919, + "NORMAL":5920, + "TEXCOORD_0":5921 + }, + "indices":5922, + "material":33 + } + ] + }, + { + "name":"Mesh.823", + "primitives":[ + { + "attributes":{ + "POSITION":5923, + "NORMAL":5924, + "TEXCOORD_0":5925 + }, + "indices":5926, + "material":0 + } + ] + }, + { + "name":"Mesh.8620", + "primitives":[ + { + "attributes":{ + "POSITION":5927, + "NORMAL":5928 + }, + "indices":5929, + "material":3 + } + ] + }, + { + "name":"Mesh.9076", + "primitives":[ + { + "attributes":{ + "POSITION":5930, + "NORMAL":5931, + "TEXCOORD_0":5932 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.8278", + "primitives":[ + { + "attributes":{ + "POSITION":5933, + "NORMAL":5934 + }, + "indices":5935, + "material":3 + } + ] + }, + { + "name":"Mesh.8503", + "primitives":[ + { + "attributes":{ + "POSITION":5936, + "NORMAL":5937 + }, + "indices":5803, + "material":3 + } + ] + }, + { + "name":"Mesh.7306", + "primitives":[ + { + "attributes":{ + "POSITION":5938, + "NORMAL":5939, + "TEXCOORD_0":5940 + }, + "indices":4257, + "material":7 + } + ] + }, + { + "name":"Mesh.745", + "primitives":[ + { + "attributes":{ + "POSITION":5941, + "NORMAL":5942, + "TEXCOORD_0":5943 + }, + "indices":1996, + "material":0 + } + ] + }, + { + "name":"Mesh.497", + "primitives":[ + { + "attributes":{ + "POSITION":5944, + "NORMAL":5945, + "TEXCOORD_0":5946 + }, + "indices":5947, + "material":0 + } + ] + }, + { + "name":"Mesh.6991", + "primitives":[ + { + "attributes":{ + "POSITION":5948, + "NORMAL":5949 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.930", + "primitives":[ + { + "attributes":{ + "POSITION":5950, + "NORMAL":5951, + "TEXCOORD_0":5952 + }, + "indices":5953, + "material":0 + } + ] + }, + { + "name":"Mesh.7484", + "primitives":[ + { + "attributes":{ + "POSITION":5954, + "NORMAL":5955 + }, + "indices":5956, + "material":3 + } + ] + }, + { + "name":"Mesh.8283", + "primitives":[ + { + "attributes":{ + "POSITION":5957, + "NORMAL":5958 + }, + "indices":5959, + "material":3 + } + ] + }, + { + "name":"Mesh.7669", + "primitives":[ + { + "attributes":{ + "POSITION":5960, + "NORMAL":5961 + }, + "indices":5072, + "material":3 + } + ] + }, + { + "name":"Mesh.6901", + "primitives":[ + { + "attributes":{ + "POSITION":5962, + "NORMAL":5963, + "TEXCOORD_0":5964 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.638", + "primitives":[ + { + "attributes":{ + "POSITION":5965, + "NORMAL":5966, + "TEXCOORD_0":5967 + }, + "indices":5968, + "material":3 + } + ] + }, + { + "name":"Mesh.9116", + "primitives":[ + { + "attributes":{ + "POSITION":5969, + "NORMAL":5970, + "TEXCOORD_0":5971 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.8036", + "primitives":[ + { + "attributes":{ + "POSITION":5972, + "NORMAL":5973, + "TEXCOORD_0":5974 + }, + "indices":3597, + "material":0 + } + ] + }, + { + "name":"Mesh.5291", + "primitives":[ + { + "attributes":{ + "POSITION":5975, + "NORMAL":5976, + "TEXCOORD_0":5977 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7784", + "primitives":[ + { + "attributes":{ + "POSITION":5978, + "NORMAL":5979 + }, + "indices":5980, + "material":3 + } + ] + }, + { + "name":"Mesh.5618", + "primitives":[ + { + "attributes":{ + "POSITION":5981, + "NORMAL":5982, + "TEXCOORD_0":5983 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8840", + "primitives":[ + { + "attributes":{ + "POSITION":5984, + "NORMAL":5985 + }, + "indices":2436, + "material":3 + } + ] + }, + { + "name":"Mesh.9178", + "primitives":[ + { + "attributes":{ + "POSITION":5986, + "NORMAL":5987, + "TEXCOORD_0":5988 + }, + "indices":5989, + "material":7 + } + ] + }, + { + "name":"Mesh.8212", + "primitives":[ + { + "attributes":{ + "POSITION":5990, + "NORMAL":5991 + }, + "indices":5992, + "material":3 + } + ] + }, + { + "name":"Mesh.6490", + "primitives":[ + { + "attributes":{ + "POSITION":5993, + "NORMAL":5994, + "TEXCOORD_0":5995 + }, + "indices":1890, + "material":0 + } + ] + }, + { + "name":"Mesh.6817", + "primitives":[ + { + "attributes":{ + "POSITION":5996, + "NORMAL":5997, + "TEXCOORD_0":5998 + }, + "indices":5999, + "material":3 + } + ] + }, + { + "name":"Mesh.5507", + "primitives":[ + { + "attributes":{ + "POSITION":6000, + "NORMAL":6001, + "TEXCOORD_0":6002 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2513", + "primitives":[ + { + "attributes":{ + "POSITION":6003, + "NORMAL":6004, + "TEXCOORD_0":6005 + }, + "indices":1247, + "material":0 + } + ] + }, + { + "name":"Mesh.1762", + "primitives":[ + { + "attributes":{ + "POSITION":6006, + "NORMAL":6007, + "TEXCOORD_0":6008 + }, + "indices":6009, + "material":37 + } + ] + }, + { + "name":"Mesh.788", + "primitives":[ + { + "attributes":{ + "POSITION":6010, + "NORMAL":6011, + "TEXCOORD_0":6012 + }, + "indices":6013, + "material":0 + } + ] + }, + { + "name":"Mesh.5916", + "primitives":[ + { + "attributes":{ + "POSITION":6014, + "NORMAL":6015 + }, + "indices":6016 + } + ] + }, + { + "name":"Mesh.598", + "primitives":[ + { + "attributes":{ + "POSITION":6017, + "NORMAL":6018, + "TEXCOORD_0":6019 + }, + "indices":317, + "material":0 + } + ] + }, + { + "name":"Mesh.2729", + "primitives":[ + { + "attributes":{ + "POSITION":6020, + "NORMAL":6021, + "TEXCOORD_0":6022 + }, + "indices":296, + "material":4 + } + ] + }, + { + "name":"Mesh.5109", + "primitives":[ + { + "attributes":{ + "POSITION":6023, + "NORMAL":6024, + "TEXCOORD_0":6025 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8562", + "primitives":[ + { + "attributes":{ + "POSITION":6026, + "NORMAL":6027 + }, + "indices":6028, + "material":3 + } + ] + }, + { + "name":"Mesh.1987", + "primitives":[ + { + "attributes":{ + "POSITION":6029, + "NORMAL":6030, + "TEXCOORD_0":6031 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7863", + "primitives":[ + { + "attributes":{ + "POSITION":6032, + "NORMAL":6033 + }, + "indices":6034, + "material":3 + } + ] + }, + { + "name":"Mesh.5445", + "primitives":[ + { + "attributes":{ + "POSITION":6035, + "NORMAL":6036, + "TEXCOORD_0":6037 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8304", + "primitives":[ + { + "attributes":{ + "POSITION":6038, + "NORMAL":6039 + }, + "indices":355, + "material":3 + } + ] + }, + { + "name":"Mesh.5666", + "primitives":[ + { + "attributes":{ + "POSITION":6040, + "NORMAL":6041, + "TEXCOORD_0":6042 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6029", + "primitives":[ + { + "attributes":{ + "POSITION":6043, + "NORMAL":6044, + "TEXCOORD_0":6045 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.6132", + "primitives":[ + { + "attributes":{ + "POSITION":6046, + "NORMAL":6047, + "TEXCOORD_0":6048 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.6770", + "primitives":[ + { + "attributes":{ + "POSITION":6049, + "NORMAL":6050 + }, + "indices":6051, + "material":0 + } + ] + }, + { + "name":"Mesh.8366", + "primitives":[ + { + "attributes":{ + "POSITION":6052, + "NORMAL":6053 + }, + "indices":1022, + "material":3 + } + ] + }, + { + "name":"Mesh.4805", + "primitives":[ + { + "attributes":{ + "POSITION":6054, + "NORMAL":6055, + "TEXCOORD_0":6056 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1876", + "primitives":[ + { + "attributes":{ + "POSITION":6057, + "NORMAL":6058 + }, + "indices":2217, + "material":22 + } + ] + }, + { + "name":"Mesh.359", + "primitives":[ + { + "attributes":{ + "POSITION":6059, + "NORMAL":6060, + "TEXCOORD_0":6061 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5734", + "primitives":[ + { + "attributes":{ + "POSITION":6062, + "NORMAL":6063 + }, + "indices":6064, + "material":0 + } + ] + }, + { + "name":"Mesh.7496", + "primitives":[ + { + "attributes":{ + "POSITION":6065, + "NORMAL":6066 + }, + "indices":6067, + "material":3 + } + ] + }, + { + "name":"Mesh.099", + "primitives":[ + { + "attributes":{ + "POSITION":6068, + "NORMAL":6069, + "TEXCOORD_0":6070 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.982", + "primitives":[ + { + "attributes":{ + "POSITION":6071, + "NORMAL":6072, + "TEXCOORD_0":6073 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.2642", + "primitives":[ + { + "attributes":{ + "POSITION":6074, + "NORMAL":6075, + "TEXCOORD_0":6076 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.5263", + "primitives":[ + { + "attributes":{ + "POSITION":6077, + "NORMAL":6078, + "TEXCOORD_0":6079 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7411", + "primitives":[ + { + "attributes":{ + "POSITION":6080, + "NORMAL":6081, + "TEXCOORD_0":6082 + }, + "indices":6083, + "material":7 + } + ] + }, + { + "name":"Mesh.5959", + "primitives":[ + { + "attributes":{ + "POSITION":6084, + "NORMAL":6085, + "TEXCOORD_0":6086 + }, + "indices":1822, + "material":11 + } + ] + }, + { + "name":"Mesh.1990", + "primitives":[ + { + "attributes":{ + "POSITION":6087, + "NORMAL":6088, + "TEXCOORD_0":6089 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8088", + "primitives":[ + { + "attributes":{ + "POSITION":6090, + "NORMAL":6091 + }, + "indices":4537, + "material":3 + } + ] + }, + { + "name":"Mesh.7779", + "primitives":[ + { + "attributes":{ + "POSITION":6092, + "NORMAL":6093 + }, + "indices":6094, + "material":3 + } + ] + }, + { + "name":"Mesh.5663", + "primitives":[ + { + "attributes":{ + "POSITION":6095, + "NORMAL":6096, + "TEXCOORD_0":6097 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7570", + "primitives":[ + { + "attributes":{ + "POSITION":6098, + "NORMAL":6099 + }, + "indices":6100, + "material":3 + } + ] + }, + { + "name":"Mesh.5630", + "primitives":[ + { + "attributes":{ + "POSITION":6101, + "NORMAL":6102, + "TEXCOORD_0":6103 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6462", + "primitives":[ + { + "attributes":{ + "POSITION":6104, + "NORMAL":6105, + "TEXCOORD_0":6106 + }, + "indices":1868, + "material":0 + } + ] + }, + { + "name":"Mesh.5007", + "primitives":[ + { + "attributes":{ + "POSITION":6107, + "NORMAL":6108, + "TEXCOORD_0":6109 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.146", + "primitives":[ + { + "attributes":{ + "POSITION":6110, + "NORMAL":6111, + "TEXCOORD_0":6112 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2231", + "primitives":[ + { + "attributes":{ + "POSITION":6113, + "NORMAL":6114, + "TEXCOORD_0":6115 + }, + "indices":3007, + "material":0 + } + ] + }, + { + "name":"Mesh.884", + "primitives":[ + { + "attributes":{ + "POSITION":6116, + "NORMAL":6117, + "TEXCOORD_0":6118 + }, + "indices":639, + "material":0 + } + ] + }, + { + "name":"Mesh.506", + "primitives":[ + { + "attributes":{ + "POSITION":6119, + "NORMAL":6120, + "TEXCOORD_0":6121 + }, + "indices":4629, + "material":0 + } + ] + }, + { + "name":"Mesh.6391", + "primitives":[ + { + "attributes":{ + "POSITION":6122, + "NORMAL":6123, + "TEXCOORD_0":6124 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.5551", + "primitives":[ + { + "attributes":{ + "POSITION":6125, + "NORMAL":6126, + "TEXCOORD_0":6127 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6920", + "primitives":[ + { + "attributes":{ + "POSITION":6128, + "NORMAL":6129, + "TEXCOORD_0":6130 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.1959", + "primitives":[ + { + "attributes":{ + "POSITION":6131, + "NORMAL":6132 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.985", + "primitives":[ + { + "attributes":{ + "POSITION":6133, + "NORMAL":6134, + "TEXCOORD_0":6135 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.8011", + "primitives":[ + { + "attributes":{ + "POSITION":6136, + "NORMAL":6137, + "TEXCOORD_0":6138 + }, + "indices":5807, + "material":3 + } + ] + }, + { + "name":"Mesh.1663", + "primitives":[ + { + "attributes":{ + "POSITION":6139, + "NORMAL":6140, + "TEXCOORD_0":6141 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.5121", + "primitives":[ + { + "attributes":{ + "POSITION":6142, + "NORMAL":6143, + "TEXCOORD_0":6144 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2599", + "primitives":[ + { + "attributes":{ + "POSITION":6145, + "NORMAL":6146, + "TEXCOORD_0":6147 + }, + "indices":3044, + "material":0 + } + ] + }, + { + "name":"Mesh.729", + "primitives":[ + { + "attributes":{ + "POSITION":6148, + "NORMAL":6149, + "TEXCOORD_0":6150 + }, + "indices":3267, + "material":0 + } + ] + }, + { + "name":"Mesh.8886", + "primitives":[ + { + "attributes":{ + "POSITION":6151, + "NORMAL":6152 + }, + "indices":6153, + "material":3 + } + ] + }, + { + "name":"Mesh.1737", + "primitives":[ + { + "attributes":{ + "POSITION":6154, + "NORMAL":6155 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.831", + "primitives":[ + { + "attributes":{ + "POSITION":6156, + "NORMAL":6157, + "TEXCOORD_0":6158 + }, + "indices":6159, + "material":3 + } + ] + }, + { + "name":"Mesh.8544", + "primitives":[ + { + "attributes":{ + "POSITION":6160, + "NORMAL":6161 + }, + "indices":6162, + "material":3 + } + ] + }, + { + "name":"Mesh.8769", + "primitives":[ + { + "attributes":{ + "POSITION":6163, + "NORMAL":6164 + }, + "indices":4210, + "material":3 + } + ] + }, + { + "name":"Mesh.8267", + "primitives":[ + { + "attributes":{ + "POSITION":6165, + "NORMAL":6166 + }, + "indices":5829, + "material":3 + } + ] + }, + { + "name":"Mesh.8286", + "primitives":[ + { + "attributes":{ + "POSITION":6167, + "NORMAL":6168 + }, + "indices":6169, + "material":3 + } + ] + }, + { + "name":"Mesh.7314", + "primitives":[ + { + "attributes":{ + "POSITION":6170, + "NORMAL":6171, + "TEXCOORD_0":6172 + }, + "indices":4298, + "material":7 + } + ] + }, + { + "name":"Mesh.2416", + "primitives":[ + { + "attributes":{ + "POSITION":6173, + "NORMAL":6174, + "TEXCOORD_0":6175 + }, + "indices":4958, + "material":0 + } + ] + }, + { + "name":"Mesh.5687", + "primitives":[ + { + "attributes":{ + "POSITION":6176, + "NORMAL":6177, + "TEXCOORD_0":6178 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.249", + "primitives":[ + { + "attributes":{ + "POSITION":6179, + "NORMAL":6180, + "TEXCOORD_0":6181 + }, + "indices":6182, + "material":0 + } + ] + }, + { + "name":"Mesh.7079", + "primitives":[ + { + "attributes":{ + "POSITION":6183, + "NORMAL":6184, + "TEXCOORD_0":6185 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.8855", + "primitives":[ + { + "attributes":{ + "POSITION":6186, + "NORMAL":6187 + }, + "indices":633, + "material":3 + } + ] + }, + { + "name":"Mesh.4979", + "primitives":[ + { + "attributes":{ + "POSITION":6188, + "NORMAL":6189, + "TEXCOORD_0":6190 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1808", + "primitives":[ + { + "attributes":{ + "POSITION":6191, + "NORMAL":6192, + "TEXCOORD_0":6193 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.7119", + "primitives":[ + { + "attributes":{ + "POSITION":6194, + "NORMAL":6195, + "TEXCOORD_0":6196 + }, + "indices":6197, + "material":7 + } + ] + }, + { + "name":"Mesh.158", + "primitives":[ + { + "attributes":{ + "POSITION":6198, + "NORMAL":6199, + "TEXCOORD_0":6200 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.1195", + "primitives":[ + { + "attributes":{ + "POSITION":6201, + "NORMAL":6202 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.871", + "primitives":[ + { + "attributes":{ + "POSITION":6203, + "NORMAL":6204, + "TEXCOORD_0":6205 + }, + "indices":2803, + "material":0 + } + ] + }, + { + "name":"Mesh.8458", + "primitives":[ + { + "attributes":{ + "POSITION":6206, + "NORMAL":6207 + }, + "indices":6208, + "material":3 + } + ] + }, + { + "name":"Mesh.6708", + "primitives":[ + { + "attributes":{ + "POSITION":6209, + "NORMAL":6210 + }, + "indices":6211, + "material":0 + } + ] + }, + { + "name":"Mesh.5204", + "primitives":[ + { + "attributes":{ + "POSITION":6212, + "NORMAL":6213, + "TEXCOORD_0":6214 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7471", + "primitives":[ + { + "attributes":{ + "POSITION":6215, + "NORMAL":6216 + }, + "indices":4971, + "material":3 + } + ] + }, + { + "name":"Mesh.352", + "primitives":[ + { + "attributes":{ + "POSITION":6217, + "NORMAL":6218, + "TEXCOORD_0":6219 + }, + "indices":3155, + "material":0 + } + ] + }, + { + "name":"Mesh.040", + "primitives":[ + { + "attributes":{ + "POSITION":6220, + "NORMAL":6221 + }, + "indices":6222, + "material":22 + } + ] + }, + { + "name":"Mesh.5749", + "primitives":[ + { + "attributes":{ + "POSITION":6223, + "NORMAL":6224 + }, + "indices":6225, + "material":0 + } + ] + }, + { + "name":"Mesh.7838", + "primitives":[ + { + "attributes":{ + "POSITION":6226, + "NORMAL":6227 + }, + "indices":6228, + "material":3 + } + ] + }, + { + "name":"Mesh.670", + "primitives":[ + { + "attributes":{ + "POSITION":6229, + "NORMAL":6230, + "TEXCOORD_0":6231 + }, + "indices":6232, + "material":3 + } + ] + }, + { + "name":"Mesh.7400", + "primitives":[ + { + "attributes":{ + "POSITION":6233, + "NORMAL":6234, + "TEXCOORD_0":6235 + }, + "indices":2369, + "material":7 + } + ] + }, + { + "name":"Mesh.211", + "primitives":[ + { + "attributes":{ + "POSITION":6236, + "NORMAL":6237, + "TEXCOORD_0":6238 + }, + "indices":6239, + "material":3 + } + ] + }, + { + "name":"Mesh.7655", + "primitives":[ + { + "attributes":{ + "POSITION":6240, + "NORMAL":6241 + }, + "indices":547, + "material":3 + } + ] + }, + { + "name":"Mesh.1772", + "primitives":[ + { + "attributes":{ + "POSITION":6242, + "NORMAL":6243 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8898", + "primitives":[ + { + "attributes":{ + "POSITION":6244, + "NORMAL":6245 + }, + "indices":2365, + "material":3 + } + ] + }, + { + "name":"Mesh.6477", + "primitives":[ + { + "attributes":{ + "POSITION":6246, + "NORMAL":6247, + "TEXCOORD_0":6248 + }, + "indices":5788, + "material":0 + } + ] + }, + { + "name":"Mesh.5022", + "primitives":[ + { + "attributes":{ + "POSITION":6249, + "NORMAL":6250, + "TEXCOORD_0":6251 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6941", + "primitives":[ + { + "attributes":{ + "POSITION":6252, + "NORMAL":6253, + "TEXCOORD_0":6254 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.5722", + "primitives":[ + { + "attributes":{ + "POSITION":6255, + "NORMAL":6256 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.5718", + "primitives":[ + { + "attributes":{ + "POSITION":6257, + "NORMAL":6258, + "TEXCOORD_0":6259 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.1749", + "primitives":[ + { + "attributes":{ + "POSITION":6260, + "NORMAL":6261 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.7338", + "primitives":[ + { + "attributes":{ + "POSITION":6262, + "NORMAL":6263, + "TEXCOORD_0":6264 + }, + "indices":6265, + "material":7 + } + ] + }, + { + "name":"Mesh.7839", + "primitives":[ + { + "attributes":{ + "POSITION":6266, + "NORMAL":6267 + }, + "indices":6268, + "material":3 + } + ] + }, + { + "name":"Mesh.5247", + "primitives":[ + { + "attributes":{ + "POSITION":6269, + "NORMAL":6270, + "TEXCOORD_0":6271 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.182", + "primitives":[ + { + "attributes":{ + "POSITION":6272, + "NORMAL":6273, + "TEXCOORD_0":6274 + }, + "indices":1554, + "material":0 + } + ] + }, + { + "name":"Mesh.6406", + "primitives":[ + { + "attributes":{ + "POSITION":6275, + "NORMAL":6276 + }, + "indices":6277, + "material":0 + } + ] + }, + { + "name":"Mesh.4951", + "primitives":[ + { + "attributes":{ + "POSITION":6278, + "NORMAL":6279, + "TEXCOORD_0":6280 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.855", + "primitives":[ + { + "attributes":{ + "POSITION":6281, + "NORMAL":6282, + "TEXCOORD_0":6283 + }, + "indices":2321, + "material":0 + } + ] + }, + { + "name":"Mesh.6119", + "primitives":[ + { + "attributes":{ + "POSITION":6284, + "NORMAL":6285, + "TEXCOORD_0":6286 + }, + "indices":3729, + "material":33 + } + ] + }, + { + "name":"Mesh.8260", + "primitives":[ + { + "attributes":{ + "POSITION":6287, + "NORMAL":6288 + }, + "indices":6289, + "material":3 + } + ] + }, + { + "name":"Mesh.6170", + "primitives":[ + { + "attributes":{ + "POSITION":6290, + "NORMAL":6291, + "TEXCOORD_0":6292 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.6641", + "primitives":[ + { + "attributes":{ + "POSITION":6293, + "NORMAL":6294 + }, + "indices":6295, + "material":0 + } + ] + }, + { + "name":"Mesh.744", + "primitives":[ + { + "attributes":{ + "POSITION":6296, + "NORMAL":6297, + "TEXCOORD_0":6298 + }, + "indices":2321, + "material":0 + } + ] + }, + { + "name":"Mesh.5216", + "primitives":[ + { + "attributes":{ + "POSITION":6299, + "NORMAL":6300, + "TEXCOORD_0":6301 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7483", + "primitives":[ + { + "attributes":{ + "POSITION":6302, + "NORMAL":6303 + }, + "indices":6304, + "material":3 + } + ] + }, + { + "name":"Mesh.5065", + "primitives":[ + { + "attributes":{ + "POSITION":6305, + "NORMAL":6306, + "TEXCOORD_0":6307 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1852", + "primitives":[ + { + "attributes":{ + "POSITION":6308, + "NORMAL":6309 + }, + "indices":2946, + "material":0 + } + ] + }, + { + "name":"Mesh.2309", + "primitives":[ + { + "attributes":{ + "POSITION":6310, + "NORMAL":6311, + "TEXCOORD_0":6312 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.339", + "primitives":[ + { + "attributes":{ + "POSITION":6313, + "NORMAL":6314, + "TEXCOORD_0":6315 + }, + "indices":1621, + "material":0 + } + ] + }, + { + "name":"Mesh.2107", + "primitives":[ + { + "attributes":{ + "POSITION":6316, + "NORMAL":6317, + "TEXCOORD_0":6318 + }, + "indices":6319, + "material":3 + } + ] + }, + { + "name":"Mesh.7690", + "primitives":[ + { + "attributes":{ + "POSITION":6320, + "NORMAL":6321 + }, + "indices":6322, + "material":3 + } + ] + }, + { + "name":"Mesh.7906", + "primitives":[ + { + "attributes":{ + "POSITION":6323, + "NORMAL":6324 + }, + "indices":6325, + "material":3 + } + ] + }, + { + "name":"Mesh.5290", + "primitives":[ + { + "attributes":{ + "POSITION":6326, + "NORMAL":6327, + "TEXCOORD_0":6328 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6288", + "primitives":[ + { + "attributes":{ + "POSITION":6329, + "NORMAL":6330, + "TEXCOORD_0":6331 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.5617", + "primitives":[ + { + "attributes":{ + "POSITION":6332, + "NORMAL":6333, + "TEXCOORD_0":6334 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8018", + "primitives":[ + { + "attributes":{ + "POSITION":6335, + "NORMAL":6336, + "TEXCOORD_0":6337 + }, + "indices":2512, + "material":0 + } + ] + }, + { + "name":"Mesh.4848", + "primitives":[ + { + "attributes":{ + "POSITION":6338, + "NORMAL":6339, + "TEXCOORD_0":6340 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8211", + "primitives":[ + { + "attributes":{ + "POSITION":6341, + "NORMAL":6342 + }, + "indices":6343, + "material":3 + } + ] + }, + { + "name":"Mesh.7452", + "primitives":[ + { + "attributes":{ + "POSITION":6344, + "NORMAL":6345, + "TEXCOORD_0":6346 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.6489", + "primitives":[ + { + "attributes":{ + "POSITION":6347, + "NORMAL":6348, + "TEXCOORD_0":6349 + }, + "indices":1890, + "material":0 + } + ] + }, + { + "name":"Mesh.6816", + "primitives":[ + { + "attributes":{ + "POSITION":6350, + "NORMAL":6351, + "TEXCOORD_0":6352 + }, + "indices":6353, + "material":0 + } + ] + }, + { + "name":"Mesh.2512", + "primitives":[ + { + "attributes":{ + "POSITION":6354, + "NORMAL":6355, + "TEXCOORD_0":6356 + }, + "indices":2427, + "material":0 + } + ] + }, + { + "name":"Mesh.1761", + "primitives":[ + { + "attributes":{ + "POSITION":6357, + "NORMAL":6358 + }, + "indices":6359, + "material":46 + } + ] + }, + { + "name":"Mesh.787", + "primitives":[ + { + "attributes":{ + "POSITION":6360, + "NORMAL":6361, + "TEXCOORD_0":6362 + }, + "indices":2842, + "material":0 + } + ] + }, + { + "name":"Mesh.5915", + "primitives":[ + { + "attributes":{ + "POSITION":6363, + "NORMAL":6364 + }, + "indices":6365, + "material":43 + } + ] + }, + { + "name":"Mesh.2552", + "primitives":[ + { + "attributes":{ + "POSITION":6366, + "NORMAL":6367, + "TEXCOORD_0":6368 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.8786", + "primitives":[ + { + "attributes":{ + "POSITION":6369, + "NORMAL":6370 + }, + "indices":6371, + "material":3 + } + ] + }, + { + "name":"Mesh.597", + "primitives":[ + { + "attributes":{ + "POSITION":6372, + "NORMAL":6373, + "TEXCOORD_0":6374 + }, + "indices":769, + "material":0 + } + ] + }, + { + "name":"Mesh.6853", + "primitives":[ + { + "attributes":{ + "POSITION":6375, + "NORMAL":6376, + "TEXCOORD_0":6377 + }, + "indices":708, + "material":0 + } + ] + }, + { + "name":"Mesh.2728", + "primitives":[ + { + "attributes":{ + "POSITION":6378, + "NORMAL":6379, + "TEXCOORD_0":6380 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.8870", + "primitives":[ + { + "attributes":{ + "POSITION":6381, + "NORMAL":6382 + }, + "indices":4006, + "material":3 + } + ] + }, + { + "name":"Mesh.6923", + "primitives":[ + { + "attributes":{ + "POSITION":6383, + "NORMAL":6384, + "TEXCOORD_0":6385 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.5197", + "primitives":[ + { + "attributes":{ + "POSITION":6386, + "NORMAL":6387, + "TEXCOORD_0":6388 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5444", + "primitives":[ + { + "attributes":{ + "POSITION":6389, + "NORMAL":6390, + "TEXCOORD_0":6391 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6131", + "primitives":[ + { + "attributes":{ + "POSITION":6392, + "NORMAL":6393, + "TEXCOORD_0":6394 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.2768", + "primitives":[ + { + "attributes":{ + "POSITION":6395, + "NORMAL":6396, + "TEXCOORD_0":6397 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.8365", + "primitives":[ + { + "attributes":{ + "POSITION":6398, + "NORMAL":6399 + }, + "indices":6400, + "material":3 + } + ] + }, + { + "name":"Mesh.9101", + "primitives":[ + { + "attributes":{ + "POSITION":6401, + "NORMAL":6402, + "TEXCOORD_0":6403 + }, + "indices":1660, + "material":7 + } + ] + }, + { + "name":"Mesh.1875", + "primitives":[ + { + "attributes":{ + "POSITION":6404, + "NORMAL":6405 + }, + "indices":6406, + "material":22 + } + ] + }, + { + "name":"Mesh.427", + "primitives":[ + { + "attributes":{ + "POSITION":6407, + "NORMAL":6408 + }, + "indices":2746, + "material":0 + } + ] + }, + { + "name":"Mesh.5733", + "primitives":[ + { + "attributes":{ + "POSITION":6409, + "NORMAL":6410 + }, + "indices":6411, + "material":0 + } + ] + }, + { + "name":"Mesh.8916", + "primitives":[ + { + "attributes":{ + "POSITION":6412, + "NORMAL":6413, + "TEXCOORD_0":6414 + }, + "indices":247, + "material":7 + } + ] + }, + { + "name":"Mesh.7495", + "primitives":[ + { + "attributes":{ + "POSITION":6415, + "NORMAL":6416 + }, + "indices":6417, + "material":3 + } + ] + }, + { + "name":"Mesh.612", + "primitives":[ + { + "attributes":{ + "POSITION":6418, + "NORMAL":6419, + "TEXCOORD_0":6420 + }, + "indices":6421, + "material":3 + } + ] + }, + { + "name":"Mesh.6059", + "primitives":[ + { + "attributes":{ + "POSITION":6422, + "NORMAL":6423, + "TEXCOORD_0":6424 + }, + "indices":30, + "material":5 + } + ] + }, + { + "name":"Mesh.981", + "primitives":[ + { + "attributes":{ + "POSITION":6425, + "NORMAL":6426, + "TEXCOORD_0":6427 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.5594", + "primitives":[ + { + "attributes":{ + "POSITION":6428, + "NORMAL":6429, + "TEXCOORD_0":6430 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5262", + "primitives":[ + { + "attributes":{ + "POSITION":6431, + "NORMAL":6432, + "TEXCOORD_0":6433 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5958", + "primitives":[ + { + "attributes":{ + "POSITION":6434, + "NORMAL":6435, + "TEXCOORD_0":6436 + }, + "indices":187, + "material":5 + } + ] + }, + { + "name":"Mesh.4966", + "primitives":[ + { + "attributes":{ + "POSITION":6437, + "NORMAL":6438, + "TEXCOORD_0":6439 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5662", + "primitives":[ + { + "attributes":{ + "POSITION":6440, + "NORMAL":6441, + "TEXCOORD_0":6442 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5629", + "primitives":[ + { + "attributes":{ + "POSITION":6443, + "NORMAL":6444, + "TEXCOORD_0":6445 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6461", + "primitives":[ + { + "attributes":{ + "POSITION":6446, + "NORMAL":6447, + "TEXCOORD_0":6448 + }, + "indices":6449, + "material":0 + } + ] + }, + { + "name":"Mesh.5006", + "primitives":[ + { + "attributes":{ + "POSITION":6450, + "NORMAL":6451, + "TEXCOORD_0":6452 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8300", + "primitives":[ + { + "attributes":{ + "POSITION":6453, + "NORMAL":6454 + }, + "indices":6455, + "material":3 + } + ] + }, + { + "name":"Mesh.2230", + "primitives":[ + { + "attributes":{ + "POSITION":6456, + "NORMAL":6457, + "TEXCOORD_0":6458 + }, + "indices":6459, + "material":0 + } + ] + }, + { + "name":"Mesh.8587", + "primitives":[ + { + "attributes":{ + "POSITION":6460, + "NORMAL":6461 + }, + "indices":6462, + "material":3 + } + ] + }, + { + "name":"Mesh.8329", + "primitives":[ + { + "attributes":{ + "POSITION":6463, + "NORMAL":6464 + }, + "indices":6465, + "material":3 + } + ] + }, + { + "name":"Mesh.7680", + "primitives":[ + { + "attributes":{ + "POSITION":6466, + "NORMAL":6467 + }, + "indices":5482, + "material":3 + } + ] + }, + { + "name":"Mesh.1958", + "primitives":[ + { + "attributes":{ + "POSITION":6468, + "NORMAL":6469, + "TEXCOORD_0":6470 + }, + "indices":3276, + "material":6 + } + ] + }, + { + "name":"Mesh.984", + "primitives":[ + { + "attributes":{ + "POSITION":6471, + "NORMAL":6472, + "TEXCOORD_0":6473 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.1662", + "primitives":[ + { + "attributes":{ + "POSITION":6474, + "NORMAL":6475, + "TEXCOORD_0":6476 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.5120", + "primitives":[ + { + "attributes":{ + "POSITION":6477, + "NORMAL":6478, + "TEXCOORD_0":6479 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2598", + "primitives":[ + { + "attributes":{ + "POSITION":6480, + "NORMAL":6481, + "TEXCOORD_0":6482 + }, + "indices":1247, + "material":0 + } + ] + }, + { + "name":"Mesh.728", + "primitives":[ + { + "attributes":{ + "POSITION":6483, + "NORMAL":6484, + "TEXCOORD_0":6485 + }, + "indices":2086, + "material":0 + } + ] + }, + { + "name":"Mesh.8885", + "primitives":[ + { + "attributes":{ + "POSITION":6486, + "NORMAL":6487 + }, + "indices":6488, + "material":3 + } + ] + }, + { + "name":"Mesh.1688", + "primitives":[ + { + "attributes":{ + "POSITION":6489, + "NORMAL":6490, + "TEXCOORD_0":6491 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.6310", + "primitives":[ + { + "attributes":{ + "POSITION":6492, + "NORMAL":6493 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8408", + "primitives":[ + { + "attributes":{ + "POSITION":6494, + "NORMAL":6495 + }, + "indices":517, + "material":3 + } + ] + }, + { + "name":"Mesh.1736", + "primitives":[ + { + "attributes":{ + "POSITION":6496, + "NORMAL":6497 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.2055", + "primitives":[ + { + "attributes":{ + "POSITION":6498, + "NORMAL":6499, + "TEXCOORD_0":6500 + }, + "indices":1554, + "material":0 + } + ] + }, + { + "name":"Mesh.8266", + "primitives":[ + { + "attributes":{ + "POSITION":6501, + "NORMAL":6502 + }, + "indices":6503, + "material":3 + } + ] + }, + { + "name":"Mesh.5620", + "primitives":[ + { + "attributes":{ + "POSITION":6504, + "NORMAL":6505, + "TEXCOORD_0":6506 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2415", + "primitives":[ + { + "attributes":{ + "POSITION":6507, + "NORMAL":6508, + "TEXCOORD_0":6509 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.6575", + "primitives":[ + { + "attributes":{ + "POSITION":6510, + "NORMAL":6511 + }, + "indices":6512, + "material":0 + } + ] + }, + { + "name":"Mesh.7078", + "primitives":[ + { + "attributes":{ + "POSITION":6513, + "NORMAL":6514 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.8854", + "primitives":[ + { + "attributes":{ + "POSITION":6515, + "NORMAL":6516 + }, + "indices":977, + "material":3 + } + ] + }, + { + "name":"Mesh.4978", + "primitives":[ + { + "attributes":{ + "POSITION":6517, + "NORMAL":6518, + "TEXCOORD_0":6519 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.645", + "primitives":[ + { + "attributes":{ + "POSITION":6520, + "NORMAL":6521, + "TEXCOORD_0":6522 + }, + "indices":6523, + "material":3 + } + ] + }, + { + "name":"Mesh.7118", + "primitives":[ + { + "attributes":{ + "POSITION":6524, + "NORMAL":6525, + "TEXCOORD_0":6526 + }, + "indices":6527, + "material":7 + } + ] + }, + { + "name":"Mesh.8799", + "primitives":[ + { + "attributes":{ + "POSITION":6528, + "NORMAL":6529 + }, + "indices":95, + "material":3 + } + ] + }, + { + "name":"Mesh.206", + "primitives":[ + { + "attributes":{ + "POSITION":6530, + "NORMAL":6531, + "TEXCOORD_0":6532 + }, + "indices":6533, + "material":3 + } + ] + }, + { + "name":"Mesh.080", + "primitives":[ + { + "attributes":{ + "POSITION":6534, + "NORMAL":6535 + }, + "indices":5065, + "material":39 + } + ] + }, + { + "name":"Mesh.2494", + "primitives":[ + { + "attributes":{ + "POSITION":6536, + "NORMAL":6537, + "TEXCOORD_0":6538 + }, + "indices":3122, + "material":0 + } + ] + }, + { + "name":"Mesh.5203", + "primitives":[ + { + "attributes":{ + "POSITION":6539, + "NORMAL":6540, + "TEXCOORD_0":6541 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5530", + "primitives":[ + { + "attributes":{ + "POSITION":6542, + "NORMAL":6543, + "TEXCOORD_0":6544 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2337", + "primitives":[ + { + "attributes":{ + "POSITION":6545, + "NORMAL":6546, + "TEXCOORD_0":6547 + }, + "indices":469, + "material":0 + } + ] + }, + { + "name":"Mesh.5748", + "primitives":[ + { + "attributes":{ + "POSITION":6548, + "NORMAL":6549 + }, + "indices":6550, + "material":0 + } + ] + }, + { + "name":"Mesh.868", + "primitives":[ + { + "attributes":{ + "POSITION":6551, + "NORMAL":6552, + "TEXCOORD_0":6553 + }, + "indices":6459, + "material":0 + } + ] + }, + { + "name":"Mesh.7047", + "primitives":[ + { + "attributes":{ + "POSITION":6554, + "NORMAL":6555, + "TEXCOORD_0":6556 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.7837", + "primitives":[ + { + "attributes":{ + "POSITION":6557, + "NORMAL":6558 + }, + "indices":6559, + "material":3 + } + ] + }, + { + "name":"Mesh.669", + "primitives":[ + { + "attributes":{ + "POSITION":6560, + "NORMAL":6561, + "TEXCOORD_0":6562 + }, + "indices":6563, + "material":3 + } + ] + }, + { + "name":"Mesh.8755", + "primitives":[ + { + "attributes":{ + "POSITION":6564, + "NORMAL":6565 + }, + "indices":3482, + "material":3 + } + ] + }, + { + "name":"Mesh.1723", + "primitives":[ + { + "attributes":{ + "POSITION":6566, + "NORMAL":6567, + "TEXCOORD_0":6568 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.7399", + "primitives":[ + { + "attributes":{ + "POSITION":6569, + "NORMAL":6570, + "TEXCOORD_0":6571 + }, + "indices":525, + "material":7 + } + ] + }, + { + "name":"Mesh.8218", + "primitives":[ + { + "attributes":{ + "POSITION":6572, + "NORMAL":6573 + }, + "indices":6574, + "material":3 + } + ] + }, + { + "name":"Mesh.7123", + "primitives":[ + { + "attributes":{ + "POSITION":6575, + "NORMAL":6576, + "TEXCOORD_0":6577 + }, + "indices":6578, + "material":7 + } + ] + }, + { + "name":"Mesh.5430", + "primitives":[ + { + "attributes":{ + "POSITION":6579, + "NORMAL":6580, + "TEXCOORD_0":6581 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8897", + "primitives":[ + { + "attributes":{ + "POSITION":6582, + "NORMAL":6583 + }, + "indices":3071, + "material":3 + } + ] + }, + { + "name":"Mesh.2641", + "primitives":[ + { + "attributes":{ + "POSITION":6584, + "NORMAL":6585, + "TEXCOORD_0":6586 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.5021", + "primitives":[ + { + "attributes":{ + "POSITION":6587, + "NORMAL":6588, + "TEXCOORD_0":6589 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.349", + "primitives":[ + { + "attributes":{ + "POSITION":6590, + "NORMAL":6591, + "TEXCOORD_0":6592 + }, + "indices":6459, + "material":0 + } + ] + }, + { + "name":"Mesh.5717", + "primitives":[ + { + "attributes":{ + "POSITION":6593, + "NORMAL":6594 + }, + "indices":6595, + "material":0 + } + ] + }, + { + "name":"Mesh.1748", + "primitives":[ + { + "attributes":{ + "POSITION":6596, + "NORMAL":6597 + }, + "indices":6598, + "material":31 + } + ] + }, + { + "name":"Mesh.6843", + "primitives":[ + { + "attributes":{ + "POSITION":6599, + "NORMAL":6600, + "TEXCOORD_0":6601 + }, + "indices":6353, + "material":0 + } + ] + }, + { + "name":"Mesh.7337", + "primitives":[ + { + "attributes":{ + "POSITION":6602, + "NORMAL":6603, + "TEXCOORD_0":6604 + }, + "indices":6605, + "material":7 + } + ] + }, + { + "name":"Mesh.6346", + "primitives":[ + { + "attributes":{ + "POSITION":6606, + "NORMAL":6607 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.5246", + "primitives":[ + { + "attributes":{ + "POSITION":6608, + "NORMAL":6609, + "TEXCOORD_0":6610 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1220", + "primitives":[ + { + "attributes":{ + "POSITION":6611, + "NORMAL":6612 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.9161", + "primitives":[ + { + "attributes":{ + "POSITION":6613, + "NORMAL":6614, + "TEXCOORD_0":6615 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.181", + "primitives":[ + { + "attributes":{ + "POSITION":6616, + "NORMAL":6617, + "TEXCOORD_0":6618 + }, + "indices":2258, + "material":0 + } + ] + }, + { + "name":"Mesh.6405", + "primitives":[ + { + "attributes":{ + "POSITION":6619, + "NORMAL":6620 + }, + "indices":6621, + "material":0 + } + ] + }, + { + "name":"Mesh.9174", + "primitives":[ + { + "attributes":{ + "POSITION":6622, + "NORMAL":6623, + "TEXCOORD_0":6624 + }, + "indices":2311, + "material":7 + } + ] + }, + { + "name":"Mesh.4950", + "primitives":[ + { + "attributes":{ + "POSITION":6625, + "NORMAL":6626, + "TEXCOORD_0":6627 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8483", + "primitives":[ + { + "attributes":{ + "POSITION":6628, + "NORMAL":6629 + }, + "indices":6630, + "material":3 + } + ] + }, + { + "name":"Mesh.854", + "primitives":[ + { + "attributes":{ + "POSITION":6631, + "NORMAL":6632, + "TEXCOORD_0":6633 + }, + "indices":2679, + "material":0 + } + ] + }, + { + "name":"Mesh.6118", + "primitives":[ + { + "attributes":{ + "POSITION":6634, + "NORMAL":6635, + "TEXCOORD_0":6636 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.5752", + "primitives":[ + { + "attributes":{ + "POSITION":6637, + "NORMAL":6638 + }, + "indices":6639, + "material":0 + } + ] + }, + { + "name":"Mesh.5635", + "primitives":[ + { + "attributes":{ + "POSITION":6640, + "NORMAL":6641, + "TEXCOORD_0":6642 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5509", + "primitives":[ + { + "attributes":{ + "POSITION":6643, + "NORMAL":6644, + "TEXCOORD_0":6645 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.743", + "primitives":[ + { + "attributes":{ + "POSITION":6646, + "NORMAL":6647, + "TEXCOORD_0":6648 + }, + "indices":2679, + "material":0 + } + ] + }, + { + "name":"Mesh.4879", + "primitives":[ + { + "attributes":{ + "POSITION":6649, + "NORMAL":6650, + "TEXCOORD_0":6651 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5215", + "primitives":[ + { + "attributes":{ + "POSITION":6652, + "NORMAL":6653, + "TEXCOORD_0":6654 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7482", + "primitives":[ + { + "attributes":{ + "POSITION":6655, + "NORMAL":6656 + }, + "indices":16, + "material":3 + } + ] + }, + { + "name":"Mesh.5064", + "primitives":[ + { + "attributes":{ + "POSITION":6657, + "NORMAL":6658, + "TEXCOORD_0":6659 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1942", + "primitives":[ + { + "attributes":{ + "POSITION":6660, + "NORMAL":6661 + }, + "indices":386, + "material":0 + } + ] + }, + { + "name":"Mesh.8556", + "primitives":[ + { + "attributes":{ + "POSITION":6662, + "NORMAL":6663 + }, + "indices":2372, + "material":3 + } + ] + }, + { + "name":"Mesh.447", + "primitives":[ + { + "attributes":{ + "POSITION":6664, + "NORMAL":6665 + }, + "indices":1500, + "material":3 + } + ] + }, + { + "name":"Mesh.8205", + "primitives":[ + { + "attributes":{ + "POSITION":6666, + "NORMAL":6667 + }, + "indices":6668, + "material":3 + } + ] + }, + { + "name":"Mesh.7149", + "primitives":[ + { + "attributes":{ + "POSITION":6669, + "NORMAL":6670, + "TEXCOORD_0":6671 + }, + "indices":2577, + "material":7 + } + ] + }, + { + "name":"Mesh.615", + "primitives":[ + { + "attributes":{ + "POSITION":6672, + "NORMAL":6673, + "TEXCOORD_0":6674 + }, + "indices":6675, + "material":3 + } + ] + }, + { + "name":"Mesh.6899", + "primitives":[ + { + "attributes":{ + "POSITION":6676, + "NORMAL":6677, + "TEXCOORD_0":6678 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.4883", + "primitives":[ + { + "attributes":{ + "POSITION":6679, + "NORMAL":6680, + "TEXCOORD_0":6681 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8034", + "primitives":[ + { + "attributes":{ + "POSITION":6682, + "NORMAL":6683, + "TEXCOORD_0":6684 + }, + "indices":1839, + "material":0 + } + ] + }, + { + "name":"Mesh.5289", + "primitives":[ + { + "attributes":{ + "POSITION":6685, + "NORMAL":6686, + "TEXCOORD_0":6687 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5144", + "primitives":[ + { + "attributes":{ + "POSITION":6688, + "NORMAL":6689, + "TEXCOORD_0":6690 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8644", + "primitives":[ + { + "attributes":{ + "POSITION":6691, + "NORMAL":6692 + }, + "indices":510, + "material":3 + } + ] + }, + { + "name":"Mesh.5616", + "primitives":[ + { + "attributes":{ + "POSITION":6693, + "NORMAL":6694, + "TEXCOORD_0":6695 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8210", + "primitives":[ + { + "attributes":{ + "POSITION":6696, + "NORMAL":6697 + }, + "indices":1811, + "material":3 + } + ] + }, + { + "name":"Mesh.7451", + "primitives":[ + { + "attributes":{ + "POSITION":6698, + "NORMAL":6699, + "TEXCOORD_0":6700 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.6488", + "primitives":[ + { + "attributes":{ + "POSITION":6701, + "NORMAL":6702, + "TEXCOORD_0":6703 + }, + "indices":1890, + "material":0 + } + ] + }, + { + "name":"Mesh.6815", + "primitives":[ + { + "attributes":{ + "POSITION":6704, + "NORMAL":6705, + "TEXCOORD_0":6706 + }, + "indices":5926, + "material":0 + } + ] + }, + { + "name":"Mesh.5729", + "primitives":[ + { + "attributes":{ + "POSITION":6707, + "NORMAL":6708 + }, + "indices":6709, + "material":0 + } + ] + }, + { + "name":"Mesh.2511", + "primitives":[ + { + "attributes":{ + "POSITION":6710, + "NORMAL":6711, + "TEXCOORD_0":6712 + }, + "indices":1315, + "material":0 + } + ] + }, + { + "name":"Mesh.1760", + "primitives":[ + { + "attributes":{ + "POSITION":6713, + "NORMAL":6714 + }, + "indices":6359, + "material":46 + } + ] + }, + { + "name":"Mesh.1705", + "primitives":[ + { + "attributes":{ + "POSITION":6715, + "NORMAL":6716, + "TEXCOORD_0":6717 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.786", + "primitives":[ + { + "attributes":{ + "POSITION":6718, + "NORMAL":6719, + "TEXCOORD_0":6720 + }, + "indices":328, + "material":0 + } + ] + }, + { + "name":"Mesh.2294", + "primitives":[ + { + "attributes":{ + "POSITION":6721, + "NORMAL":6722, + "TEXCOORD_0":6723 + }, + "indices":4214, + "material":0 + } + ] + }, + { + "name":"Mesh.5914", + "primitives":[ + { + "attributes":{ + "POSITION":6724, + "NORMAL":6725 + }, + "indices":6016 + } + ] + }, + { + "name":"Mesh.2551", + "primitives":[ + { + "attributes":{ + "POSITION":6726, + "NORMAL":6727, + "TEXCOORD_0":6728 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.596", + "primitives":[ + { + "attributes":{ + "POSITION":6729, + "NORMAL":6730, + "TEXCOORD_0":6731 + }, + "indices":1319, + "material":0 + } + ] + }, + { + "name":"Mesh.5585", + "primitives":[ + { + "attributes":{ + "POSITION":6732, + "NORMAL":6733, + "TEXCOORD_0":6734 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2727", + "primitives":[ + { + "attributes":{ + "POSITION":6735, + "NORMAL":6736, + "TEXCOORD_0":6737 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.1985", + "primitives":[ + { + "attributes":{ + "POSITION":6738, + "NORMAL":6739, + "TEXCOORD_0":6740 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5443", + "primitives":[ + { + "attributes":{ + "POSITION":6741, + "NORMAL":6742, + "TEXCOORD_0":6743 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6130", + "primitives":[ + { + "attributes":{ + "POSITION":6744, + "NORMAL":6745, + "TEXCOORD_0":6746 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.2767", + "primitives":[ + { + "attributes":{ + "POSITION":6747, + "NORMAL":6748, + "TEXCOORD_0":6749 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.8364", + "primitives":[ + { + "attributes":{ + "POSITION":6750, + "NORMAL":6751 + }, + "indices":4537, + "material":3 + } + ] + }, + { + "name":"Mesh.1874", + "primitives":[ + { + "attributes":{ + "POSITION":6752, + "NORMAL":6753 + }, + "indices":6754, + "material":22 + } + ] + }, + { + "name":"Mesh.8999", + "primitives":[ + { + "attributes":{ + "POSITION":6755, + "NORMAL":6756, + "TEXCOORD_0":6757 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.653", + "primitives":[ + { + "attributes":{ + "POSITION":6758, + "NORMAL":6759, + "TEXCOORD_0":6760 + }, + "indices":6761, + "material":3 + } + ] + }, + { + "name":"Mesh.422", + "primitives":[ + { + "attributes":{ + "POSITION":6762, + "NORMAL":6763 + }, + "indices":3642, + "material":0 + } + ] + }, + { + "name":"Mesh.8723", + "primitives":[ + { + "attributes":{ + "POSITION":6764, + "NORMAL":6765 + }, + "indices":6766, + "material":3 + } + ] + }, + { + "name":"Mesh.5732", + "primitives":[ + { + "attributes":{ + "POSITION":6767, + "NORMAL":6768 + }, + "indices":6769, + "material":0 + } + ] + }, + { + "name":"Mesh.6799", + "primitives":[ + { + "attributes":{ + "POSITION":6770, + "NORMAL":6771, + "TEXCOORD_0":6772 + }, + "indices":6773, + "material":3 + } + ] + }, + { + "name":"Mesh.8546", + "primitives":[ + { + "attributes":{ + "POSITION":6774, + "NORMAL":6775 + }, + "indices":6776, + "material":3 + } + ] + }, + { + "name":"Mesh.7494", + "primitives":[ + { + "attributes":{ + "POSITION":6777, + "NORMAL":6778 + }, + "indices":6779, + "material":3 + } + ] + }, + { + "name":"Mesh.019", + "primitives":[ + { + "attributes":{ + "POSITION":6780, + "NORMAL":6781, + "TEXCOORD_0":6782 + }, + "indices":6783, + "material":47 + } + ] + }, + { + "name":"Mesh.7821", + "primitives":[ + { + "attributes":{ + "POSITION":6784, + "NORMAL":6785 + }, + "indices":6786, + "material":3 + } + ] + }, + { + "name":"Mesh.4957", + "primitives":[ + { + "attributes":{ + "POSITION":6787, + "NORMAL":6788, + "TEXCOORD_0":6789 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.980", + "primitives":[ + { + "attributes":{ + "POSITION":6790, + "NORMAL":6791, + "TEXCOORD_0":6792 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.5957", + "primitives":[ + { + "attributes":{ + "POSITION":6793, + "NORMAL":6794, + "TEXCOORD_0":6795 + }, + "indices":6796, + "material":12 + } + ] + }, + { + "name":"Mesh.4965", + "primitives":[ + { + "attributes":{ + "POSITION":6797, + "NORMAL":6798, + "TEXCOORD_0":6799 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5661", + "primitives":[ + { + "attributes":{ + "POSITION":6800, + "NORMAL":6801, + "TEXCOORD_0":6802 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5628", + "primitives":[ + { + "attributes":{ + "POSITION":6803, + "NORMAL":6804, + "TEXCOORD_0":6805 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6460", + "primitives":[ + { + "attributes":{ + "POSITION":6806, + "NORMAL":6807, + "TEXCOORD_0":6808 + }, + "indices":6809, + "material":0 + } + ] + }, + { + "name":"Mesh.5005", + "primitives":[ + { + "attributes":{ + "POSITION":6810, + "NORMAL":6811, + "TEXCOORD_0":6812 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.957", + "primitives":[ + { + "attributes":{ + "POSITION":6813, + "NORMAL":6814, + "TEXCOORD_0":6815 + }, + "indices":5756, + "material":0 + } + ] + }, + { + "name":"Mesh.8670", + "primitives":[ + { + "attributes":{ + "POSITION":6816, + "NORMAL":6817 + }, + "indices":6067, + "material":3 + } + ] + }, + { + "name":"Mesh.6305", + "primitives":[ + { + "attributes":{ + "POSITION":6818, + "NORMAL":6819 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.7131", + "primitives":[ + { + "attributes":{ + "POSITION":6820, + "NORMAL":6821, + "TEXCOORD_0":6822 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.2229", + "primitives":[ + { + "attributes":{ + "POSITION":6823, + "NORMAL":6824, + "TEXCOORD_0":6825 + }, + "indices":6459, + "material":0 + } + ] + }, + { + "name":"Mesh.6389", + "primitives":[ + { + "attributes":{ + "POSITION":6826, + "NORMAL":6827 + }, + "indices":6828, + "material":0 + } + ] + }, + { + "name":"Mesh.1957", + "primitives":[ + { + "attributes":{ + "POSITION":6829, + "NORMAL":6830 + }, + "indices":3642, + "material":0 + } + ] + }, + { + "name":"Mesh.983", + "primitives":[ + { + "attributes":{ + "POSITION":6831, + "NORMAL":6832, + "TEXCOORD_0":6833 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.1661", + "primitives":[ + { + "attributes":{ + "POSITION":6834, + "NORMAL":6835, + "TEXCOORD_0":6836 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.5119", + "primitives":[ + { + "attributes":{ + "POSITION":6837, + "NORMAL":6838, + "TEXCOORD_0":6839 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.904", + "primitives":[ + { + "attributes":{ + "POSITION":6840, + "NORMAL":6841, + "TEXCOORD_0":6842 + }, + "indices":1497, + "material":0 + } + ] + }, + { + "name":"Mesh.1810", + "primitives":[ + { + "attributes":{ + "POSITION":6843, + "NORMAL":6844, + "TEXCOORD_0":6845 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.075", + "primitives":[ + { + "attributes":{ + "POSITION":6846, + "NORMAL":6847 + }, + "indices":6848, + "material":4 + } + ] + }, + { + "name":"Mesh.727", + "primitives":[ + { + "attributes":{ + "POSITION":6849, + "NORMAL":6850, + "TEXCOORD_0":6851 + }, + "indices":2417, + "material":0 + } + ] + }, + { + "name":"Mesh.8884", + "primitives":[ + { + "attributes":{ + "POSITION":6852, + "NORMAL":6853 + }, + "indices":6854, + "material":3 + } + ] + }, + { + "name":"Mesh.7966", + "primitives":[ + { + "attributes":{ + "POSITION":6855, + "NORMAL":6856, + "TEXCOORD_0":6857 + }, + "indices":2616, + "material":0 + } + ] + }, + { + "name":"Mesh.8265", + "primitives":[ + { + "attributes":{ + "POSITION":6858, + "NORMAL":6859 + }, + "indices":6860, + "material":3 + } + ] + }, + { + "name":"Mesh.2414", + "primitives":[ + { + "attributes":{ + "POSITION":6861, + "NORMAL":6862, + "TEXCOORD_0":6863 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.1114", + "primitives":[ + { + "attributes":{ + "POSITION":6864, + "NORMAL":6865, + "TEXCOORD_0":6866 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.6574", + "primitives":[ + { + "attributes":{ + "POSITION":6867, + "NORMAL":6868 + }, + "indices":6869, + "material":0 + } + ] + }, + { + "name":"Mesh.7077", + "primitives":[ + { + "attributes":{ + "POSITION":6870, + "NORMAL":6871, + "TEXCOORD_0":6872 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.8227", + "primitives":[ + { + "attributes":{ + "POSITION":6873, + "NORMAL":6874 + }, + "indices":5803, + "material":3 + } + ] + }, + { + "name":"Mesh.7334", + "primitives":[ + { + "attributes":{ + "POSITION":6875, + "NORMAL":6876, + "TEXCOORD_0":6877 + }, + "indices":6878, + "material":7 + } + ] + }, + { + "name":"Mesh.4977", + "primitives":[ + { + "attributes":{ + "POSITION":6879, + "NORMAL":6880, + "TEXCOORD_0":6881 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7117", + "primitives":[ + { + "attributes":{ + "POSITION":6882, + "NORMAL":6883, + "TEXCOORD_0":6884 + }, + "indices":6885, + "material":7 + } + ] + }, + { + "name":"Mesh.007", + "primitives":[ + { + "attributes":{ + "POSITION":6886, + "NORMAL":6887, + "TEXCOORD_0":6888 + }, + "indices":34, + "material":35 + } + ] + }, + { + "name":"Mesh.5473", + "primitives":[ + { + "attributes":{ + "POSITION":6889, + "NORMAL":6890, + "TEXCOORD_0":6891 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.306", + "primitives":[ + { + "attributes":{ + "POSITION":6892, + "NORMAL":6893, + "TEXCOORD_0":6894 + }, + "indices":6895, + "material":3 + } + ] + }, + { + "name":"Mesh.5202", + "primitives":[ + { + "attributes":{ + "POSITION":6896, + "NORMAL":6897, + "TEXCOORD_0":6898 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6397", + "primitives":[ + { + "attributes":{ + "POSITION":6899, + "NORMAL":6900 + }, + "indices":6901, + "material":0 + } + ] + }, + { + "name":"Mesh.5529", + "primitives":[ + { + "attributes":{ + "POSITION":6902, + "NORMAL":6903, + "TEXCOORD_0":6904 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7046", + "primitives":[ + { + "attributes":{ + "POSITION":6905, + "NORMAL":6906 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.7836", + "primitives":[ + { + "attributes":{ + "POSITION":6907, + "NORMAL":6908 + }, + "indices":6909, + "material":3 + } + ] + }, + { + "name":"Mesh.668", + "primitives":[ + { + "attributes":{ + "POSITION":6910, + "NORMAL":6911, + "TEXCOORD_0":6912 + }, + "indices":6913, + "material":3 + } + ] + }, + { + "name":"Mesh.8163", + "primitives":[ + { + "attributes":{ + "POSITION":6914, + "NORMAL":6915 + }, + "indices":6916, + "material":3 + } + ] + }, + { + "name":"Mesh.8652", + "primitives":[ + { + "attributes":{ + "POSITION":6917, + "NORMAL":6918 + }, + "indices":490, + "material":3 + } + ] + }, + { + "name":"Mesh.2476", + "primitives":[ + { + "attributes":{ + "POSITION":6919, + "NORMAL":6920, + "TEXCOORD_0":6921 + }, + "indices":1746, + "material":0 + } + ] + }, + { + "name":"Mesh.8394", + "primitives":[ + { + "attributes":{ + "POSITION":6922, + "NORMAL":6923 + }, + "indices":6067, + "material":3 + } + ] + }, + { + "name":"Mesh.5747", + "primitives":[ + { + "attributes":{ + "POSITION":6924, + "NORMAL":6925 + }, + "indices":6926, + "material":0 + } + ] + }, + { + "name":"Mesh.6110", + "primitives":[ + { + "attributes":{ + "POSITION":6927, + "NORMAL":6928, + "TEXCOORD_0":6929 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.485", + "primitives":[ + { + "attributes":{ + "POSITION":6930, + "NORMAL":6931 + }, + "indices":6932, + "material":3 + } + ] + }, + { + "name":"Mesh.212", + "primitives":[ + { + "attributes":{ + "POSITION":6933, + "NORMAL":6934, + "TEXCOORD_0":6935 + }, + "indices":6936, + "material":3 + } + ] + }, + { + "name":"Mesh.1865", + "primitives":[ + { + "attributes":{ + "POSITION":6937, + "NORMAL":6938, + "TEXCOORD_0":6939 + }, + "indices":3276, + "material":6 + } + ] + }, + { + "name":"Mesh.8896", + "primitives":[ + { + "attributes":{ + "POSITION":6940, + "NORMAL":6941 + }, + "indices":6942, + "material":3 + } + ] + }, + { + "name":"Mesh.5020", + "primitives":[ + { + "attributes":{ + "POSITION":6943, + "NORMAL":6944, + "TEXCOORD_0":6945 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5716", + "primitives":[ + { + "attributes":{ + "POSITION":6946, + "NORMAL":6947 + }, + "indices":6948, + "material":0 + } + ] + }, + { + "name":"Mesh.1747", + "primitives":[ + { + "attributes":{ + "POSITION":6949, + "NORMAL":6950 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.6842", + "primitives":[ + { + "attributes":{ + "POSITION":6951, + "NORMAL":6952, + "TEXCOORD_0":6953 + }, + "indices":5926, + "material":0 + } + ] + }, + { + "name":"Mesh.7336", + "primitives":[ + { + "attributes":{ + "POSITION":6954, + "NORMAL":6955, + "TEXCOORD_0":6956 + }, + "indices":6957, + "material":7 + } + ] + }, + { + "name":"Mesh.6710", + "primitives":[ + { + "attributes":{ + "POSITION":6958, + "NORMAL":6959 + }, + "indices":775, + "material":0 + } + ] + }, + { + "name":"Mesh.2426", + "primitives":[ + { + "attributes":{ + "POSITION":6960, + "NORMAL":6961, + "TEXCOORD_0":6962 + }, + "indices":313, + "material":4 + } + ] + }, + { + "name":"Mesh.9147", + "primitives":[ + { + "attributes":{ + "POSITION":6963, + "NORMAL":6964, + "TEXCOORD_0":6965 + }, + "indices":6966, + "material":7 + } + ] + }, + { + "name":"Mesh.5245", + "primitives":[ + { + "attributes":{ + "POSITION":6967, + "NORMAL":6968, + "TEXCOORD_0":6969 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7723", + "primitives":[ + { + "attributes":{ + "POSITION":6970, + "NORMAL":6971 + }, + "indices":6972, + "material":3 + } + ] + }, + { + "name":"Mesh.180", + "primitives":[ + { + "attributes":{ + "POSITION":6973, + "NORMAL":6974, + "TEXCOORD_0":6975 + }, + "indices":1554, + "material":0 + } + ] + }, + { + "name":"Mesh.307", + "primitives":[ + { + "attributes":{ + "POSITION":6976, + "NORMAL":6977, + "TEXCOORD_0":6978 + }, + "indices":6979, + "material":3 + } + ] + }, + { + "name":"Mesh.6189", + "primitives":[ + { + "attributes":{ + "POSITION":6980, + "NORMAL":6981, + "TEXCOORD_0":6982 + }, + "indices":1132, + "material":23 + } + ] + }, + { + "name":"Mesh.6630", + "primitives":[ + { + "attributes":{ + "POSITION":6983, + "NORMAL":6984 + }, + "indices":3076, + "material":0 + } + ] + }, + { + "name":"Mesh.6970", + "primitives":[ + { + "attributes":{ + "POSITION":6985, + "NORMAL":6986 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.9173", + "primitives":[ + { + "attributes":{ + "POSITION":6987, + "NORMAL":6988, + "TEXCOORD_0":6989 + }, + "indices":3382, + "material":7 + } + ] + }, + { + "name":"Mesh.202", + "primitives":[ + { + "attributes":{ + "POSITION":6990, + "NORMAL":6991, + "TEXCOORD_0":6992 + }, + "indices":6993, + "material":3 + } + ] + }, + { + "name":"Mesh.853", + "primitives":[ + { + "attributes":{ + "POSITION":6994, + "NORMAL":6995, + "TEXCOORD_0":6996 + }, + "indices":6997, + "material":0 + } + ] + }, + { + "name":"Mesh.6117", + "primitives":[ + { + "attributes":{ + "POSITION":6998, + "NORMAL":6999, + "TEXCOORD_0":7000 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.5981", + "primitives":[ + { + "attributes":{ + "POSITION":7001, + "NORMAL":7002, + "TEXCOORD_0":7003 + }, + "indices":7004, + "material":12 + } + ] + }, + { + "name":"Mesh.742", + "primitives":[ + { + "attributes":{ + "POSITION":7005, + "NORMAL":7006, + "TEXCOORD_0":7007 + }, + "indices":3003, + "material":0 + } + ] + }, + { + "name":"Mesh.5214", + "primitives":[ + { + "attributes":{ + "POSITION":7008, + "NORMAL":7009, + "TEXCOORD_0":7010 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8639", + "primitives":[ + { + "attributes":{ + "POSITION":7011, + "NORMAL":7012 + }, + "indices":4726, + "material":3 + } + ] + }, + { + "name":"Mesh.7481", + "primitives":[ + { + "attributes":{ + "POSITION":7013, + "NORMAL":7014 + }, + "indices":1033, + "material":3 + } + ] + }, + { + "name":"Mesh.8540", + "primitives":[ + { + "attributes":{ + "POSITION":7015, + "NORMAL":7016 + }, + "indices":7017, + "material":3 + } + ] + }, + { + "name":"Mesh.2502", + "primitives":[ + { + "attributes":{ + "POSITION":7018, + "NORMAL":7019, + "TEXCOORD_0":7020 + }, + "indices":3122, + "material":0 + } + ] + }, + { + "name":"Mesh.1941", + "primitives":[ + { + "attributes":{ + "POSITION":7021, + "NORMAL":7022 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.4870", + "primitives":[ + { + "attributes":{ + "POSITION":7023, + "NORMAL":7024, + "TEXCOORD_0":7025 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6361", + "primitives":[ + { + "attributes":{ + "POSITION":7026, + "NORMAL":7027 + }, + "indices":7028, + "material":0 + } + ] + }, + { + "name":"Mesh.6898", + "primitives":[ + { + "attributes":{ + "POSITION":7029, + "NORMAL":7030 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.6947", + "primitives":[ + { + "attributes":{ + "POSITION":7031, + "NORMAL":7032, + "TEXCOORD_0":7033 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.5615", + "primitives":[ + { + "attributes":{ + "POSITION":7034, + "NORMAL":7035, + "TEXCOORD_0":7036 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8209", + "primitives":[ + { + "attributes":{ + "POSITION":7037, + "NORMAL":7038 + }, + "indices":7039, + "material":3 + } + ] + }, + { + "name":"Mesh.4881", + "primitives":[ + { + "attributes":{ + "POSITION":7040, + "NORMAL":7041, + "TEXCOORD_0":7042 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6629", + "primitives":[ + { + "attributes":{ + "POSITION":7043, + "NORMAL":7044 + }, + "indices":3451, + "material":0 + } + ] + }, + { + "name":"Mesh.7450", + "primitives":[ + { + "attributes":{ + "POSITION":7045, + "NORMAL":7046, + "TEXCOORD_0":7047 + }, + "indices":1934, + "material":7 + } + ] + }, + { + "name":"Mesh.6487", + "primitives":[ + { + "attributes":{ + "POSITION":7048, + "NORMAL":7049, + "TEXCOORD_0":7050 + }, + "indices":1890, + "material":0 + } + ] + }, + { + "name":"Mesh.8811", + "primitives":[ + { + "attributes":{ + "POSITION":7051, + "NORMAL":7052 + }, + "indices":7053, + "material":3 + } + ] + }, + { + "name":"Mesh.2004", + "primitives":[ + { + "attributes":{ + "POSITION":7054, + "NORMAL":7055, + "TEXCOORD_0":7056 + }, + "indices":7057, + "material":0 + } + ] + }, + { + "name":"Mesh.6814", + "primitives":[ + { + "attributes":{ + "POSITION":7058, + "NORMAL":7059, + "TEXCOORD_0":7060 + }, + "indices":1256, + "material":0 + } + ] + }, + { + "name":"Mesh.5997", + "primitives":[ + { + "attributes":{ + "POSITION":7061, + "NORMAL":7062, + "TEXCOORD_0":7063 + }, + "indices":202, + "material":11 + } + ] + }, + { + "name":"Mesh.7935", + "primitives":[ + { + "attributes":{ + "POSITION":7064, + "NORMAL":7065 + }, + "indices":7066, + "material":3 + } + ] + }, + { + "name":"Mesh.043", + "primitives":[ + { + "attributes":{ + "POSITION":7067, + "NORMAL":7068 + }, + "indices":7069, + "material":22 + } + ] + }, + { + "name":"Mesh.2510", + "primitives":[ + { + "attributes":{ + "POSITION":7070, + "NORMAL":7071, + "TEXCOORD_0":7072 + }, + "indices":3122, + "material":0 + } + ] + }, + { + "name":"Mesh.552", + "primitives":[ + { + "attributes":{ + "POSITION":7073, + "NORMAL":7074, + "TEXCOORD_0":7075 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.6092", + "primitives":[ + { + "attributes":{ + "POSITION":7076, + "NORMAL":7077, + "TEXCOORD_0":7078 + }, + "indices":927, + "material":12 + } + ] + }, + { + "name":"Mesh.1759", + "primitives":[ + { + "attributes":{ + "POSITION":7079, + "NORMAL":7080, + "TEXCOORD_0":7081 + }, + "indices":34, + "material":48 + } + ] + }, + { + "name":"Mesh.785", + "primitives":[ + { + "attributes":{ + "POSITION":7082, + "NORMAL":7083, + "TEXCOORD_0":7084 + }, + "indices":51, + "material":0 + } + ] + }, + { + "name":"Mesh.5913", + "primitives":[ + { + "attributes":{ + "POSITION":7085, + "NORMAL":7086 + }, + "indices":6016 + } + ] + }, + { + "name":"Mesh.2550", + "primitives":[ + { + "attributes":{ + "POSITION":7087, + "NORMAL":7088, + "TEXCOORD_0":7089 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.2798", + "primitives":[ + { + "attributes":{ + "POSITION":7090, + "NORMAL":7091, + "TEXCOORD_0":7092 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.8139", + "primitives":[ + { + "attributes":{ + "POSITION":7093, + "NORMAL":7094 + }, + "indices":92, + "material":3 + } + ] + }, + { + "name":"Mesh.5584", + "primitives":[ + { + "attributes":{ + "POSITION":7095, + "NORMAL":7096, + "TEXCOORD_0":7097 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2726", + "primitives":[ + { + "attributes":{ + "POSITION":7098, + "NORMAL":7099, + "TEXCOORD_0":7100 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.1984", + "primitives":[ + { + "attributes":{ + "POSITION":7101, + "NORMAL":7102, + "TEXCOORD_0":7103 + }, + "indices":7104, + "material":0 + } + ] + }, + { + "name":"Mesh.5442", + "primitives":[ + { + "attributes":{ + "POSITION":7105, + "NORMAL":7106, + "TEXCOORD_0":7107 + }, + "indices":7108, + "material":49 + } + ] + }, + { + "name":"Mesh.2327", + "primitives":[ + { + "attributes":{ + "POSITION":7109, + "NORMAL":7110, + "TEXCOORD_0":7111 + }, + "indices":51, + "material":0 + } + ] + }, + { + "name":"Mesh.6129", + "primitives":[ + { + "attributes":{ + "POSITION":7112, + "NORMAL":7113, + "TEXCOORD_0":7114 + }, + "indices":927, + "material":12 + } + ] + }, + { + "name":"Mesh.2766", + "primitives":[ + { + "attributes":{ + "POSITION":7115, + "NORMAL":7116, + "TEXCOORD_0":7117 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.8363", + "primitives":[ + { + "attributes":{ + "POSITION":7118, + "NORMAL":7119 + }, + "indices":4726, + "material":3 + } + ] + }, + { + "name":"Mesh.6875", + "primitives":[ + { + "attributes":{ + "POSITION":7120, + "NORMAL":7121 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.736", + "primitives":[ + { + "attributes":{ + "POSITION":7122, + "NORMAL":7123, + "TEXCOORD_0":7124 + }, + "indices":380, + "material":0 + } + ] + }, + { + "name":"Mesh.7666", + "primitives":[ + { + "attributes":{ + "POSITION":7125, + "NORMAL":7126 + }, + "indices":6153, + "material":3 + } + ] + }, + { + "name":"Mesh.7604", + "primitives":[ + { + "attributes":{ + "POSITION":7127, + "NORMAL":7128 + }, + "indices":7129, + "material":3 + } + ] + }, + { + "name":"Mesh.1873", + "primitives":[ + { + "attributes":{ + "POSITION":7130, + "NORMAL":7131 + }, + "indices":6754, + "material":22 + } + ] + }, + { + "name":"Mesh.2537", + "primitives":[ + { + "attributes":{ + "POSITION":7132, + "NORMAL":7133, + "TEXCOORD_0":7134 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.8014", + "primitives":[ + { + "attributes":{ + "POSITION":7135, + "NORMAL":7136, + "TEXCOORD_0":7137 + }, + "indices":3924, + "material":3 + } + ] + }, + { + "name":"Mesh.4908", + "primitives":[ + { + "attributes":{ + "POSITION":7138, + "NORMAL":7139, + "TEXCOORD_0":7140 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5731", + "primitives":[ + { + "attributes":{ + "POSITION":7141, + "NORMAL":7142, + "TEXCOORD_0":7143 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.7493", + "primitives":[ + { + "attributes":{ + "POSITION":7144, + "NORMAL":7145 + }, + "indices":7146, + "material":3 + } + ] + }, + { + "name":"Mesh.1633", + "primitives":[ + { + "attributes":{ + "POSITION":7147, + "NORMAL":7148, + "TEXCOORD_0":7149 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.1617", + "primitives":[ + { + "attributes":{ + "POSITION":7150, + "NORMAL":7151, + "TEXCOORD_0":7152 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.979", + "primitives":[ + { + "attributes":{ + "POSITION":7153, + "NORMAL":7154, + "TEXCOORD_0":7155 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.220", + "primitives":[ + { + "attributes":{ + "POSITION":7156, + "NORMAL":7157, + "TEXCOORD_0":7158 + }, + "indices":7159, + "material":3 + } + ] + }, + { + "name":"Mesh.5956", + "primitives":[ + { + "attributes":{ + "POSITION":7160, + "NORMAL":7161, + "TEXCOORD_0":7162 + }, + "indices":989, + "material":5 + } + ] + }, + { + "name":"Mesh.417", + "primitives":[ + { + "attributes":{ + "POSITION":7163, + "NORMAL":7164 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.1842", + "primitives":[ + { + "attributes":{ + "POSITION":7165, + "NORMAL":7166 + }, + "indices":7167, + "material":8 + } + ] + }, + { + "name":"Mesh.5660", + "primitives":[ + { + "attributes":{ + "POSITION":7168, + "NORMAL":7169, + "TEXCOORD_0":7170 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5627", + "primitives":[ + { + "attributes":{ + "POSITION":7171, + "NORMAL":7172, + "TEXCOORD_0":7173 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6459", + "primitives":[ + { + "attributes":{ + "POSITION":7174, + "NORMAL":7175, + "TEXCOORD_0":7176 + }, + "indices":1143, + "material":0 + } + ] + }, + { + "name":"Mesh.6427", + "primitives":[ + { + "attributes":{ + "POSITION":7177, + "NORMAL":7178 + }, + "indices":1043, + "material":0 + } + ] + }, + { + "name":"Mesh.5004", + "primitives":[ + { + "attributes":{ + "POSITION":7179, + "NORMAL":7180, + "TEXCOORD_0":7181 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5671", + "primitives":[ + { + "attributes":{ + "POSITION":7182, + "NORMAL":7183, + "TEXCOORD_0":7184 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.4987", + "primitives":[ + { + "attributes":{ + "POSITION":7185, + "NORMAL":7186, + "TEXCOORD_0":7187 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5569", + "primitives":[ + { + "attributes":{ + "POSITION":7188, + "NORMAL":7189, + "TEXCOORD_0":7190 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1771", + "primitives":[ + { + "attributes":{ + "POSITION":7191, + "NORMAL":7192, + "TEXCOORD_0":7193 + }, + "indices":5286, + "material":41 + } + ] + }, + { + "name":"Mesh.797", + "primitives":[ + { + "attributes":{ + "POSITION":7194, + "NORMAL":7195, + "TEXCOORD_0":7196 + }, + "indices":431, + "material":0 + } + ] + }, + { + "name":"Mesh.6388", + "primitives":[ + { + "attributes":{ + "POSITION":7197, + "NORMAL":7198 + }, + "indices":7199, + "material":0 + } + ] + }, + { + "name":"Mesh.1956", + "primitives":[ + { + "attributes":{ + "POSITION":7200, + "NORMAL":7201 + }, + "indices":2743, + "material":0 + } + ] + }, + { + "name":"Mesh.046", + "primitives":[ + { + "attributes":{ + "POSITION":7202, + "NORMAL":7203, + "TEXCOORD_0":7204 + }, + "indices":7205, + "material":50 + } + ] + }, + { + "name":"Mesh.762", + "primitives":[ + { + "attributes":{ + "POSITION":7206, + "NORMAL":7207, + "TEXCOORD_0":7208 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.9024", + "primitives":[ + { + "attributes":{ + "POSITION":7209, + "NORMAL":7210, + "TEXCOORD_0":7211 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.9186", + "primitives":[ + { + "attributes":{ + "POSITION":7212, + "NORMAL":7213, + "TEXCOORD_0":7214 + }, + "indices":7215, + "material":7 + } + ] + }, + { + "name":"Mesh.1660", + "primitives":[ + { + "attributes":{ + "POSITION":7216, + "NORMAL":7217, + "TEXCOORD_0":7218 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.5118", + "primitives":[ + { + "attributes":{ + "POSITION":7219, + "NORMAL":7220, + "TEXCOORD_0":7221 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1632", + "primitives":[ + { + "attributes":{ + "POSITION":7222, + "NORMAL":7223, + "TEXCOORD_0":7224 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.6755", + "primitives":[ + { + "attributes":{ + "POSITION":7225, + "NORMAL":7226 + }, + "indices":7227, + "material":0 + } + ] + }, + { + "name":"Mesh.7161", + "primitives":[ + { + "attributes":{ + "POSITION":7228, + "NORMAL":7229, + "TEXCOORD_0":7230 + }, + "indices":4257, + "material":7 + } + ] + }, + { + "name":"Mesh.6731", + "primitives":[ + { + "attributes":{ + "POSITION":7231, + "NORMAL":7232, + "TEXCOORD_0":7233 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.6978", + "primitives":[ + { + "attributes":{ + "POSITION":7234, + "NORMAL":7235, + "TEXCOORD_0":7236 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.726", + "primitives":[ + { + "attributes":{ + "POSITION":7237, + "NORMAL":7238, + "TEXCOORD_0":7239 + }, + "indices":3900, + "material":0 + } + ] + }, + { + "name":"Mesh.7002", + "primitives":[ + { + "attributes":{ + "POSITION":7240, + "NORMAL":7241, + "TEXCOORD_0":7242 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.8264", + "primitives":[ + { + "attributes":{ + "POSITION":7243, + "NORMAL":7244 + }, + "indices":7017, + "material":3 + } + ] + }, + { + "name":"Mesh.2413", + "primitives":[ + { + "attributes":{ + "POSITION":7245, + "NORMAL":7246, + "TEXCOORD_0":7247 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.1069", + "primitives":[ + { + "attributes":{ + "POSITION":7248, + "NORMAL":7249, + "TEXCOORD_0":7250 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.8872", + "primitives":[ + { + "attributes":{ + "POSITION":7251, + "NORMAL":7252 + }, + "indices":7253, + "material":3 + } + ] + }, + { + "name":"Mesh.2687", + "primitives":[ + { + "attributes":{ + "POSITION":7254, + "NORMAL":7255, + "TEXCOORD_0":7256 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.6573", + "primitives":[ + { + "attributes":{ + "POSITION":7257, + "NORMAL":7258 + }, + "indices":7259, + "material":0 + } + ] + }, + { + "name":"Mesh.7076", + "primitives":[ + { + "attributes":{ + "POSITION":7260, + "NORMAL":7261 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.7372", + "primitives":[ + { + "attributes":{ + "POSITION":7262, + "NORMAL":7263, + "TEXCOORD_0":7264 + }, + "indices":7265, + "material":7 + } + ] + }, + { + "name":"Mesh.6153", + "primitives":[ + { + "attributes":{ + "POSITION":7266, + "NORMAL":7267, + "TEXCOORD_0":7268 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.8852", + "primitives":[ + { + "attributes":{ + "POSITION":7269, + "NORMAL":7270 + }, + "indices":6455, + "material":3 + } + ] + }, + { + "name":"Mesh.230", + "primitives":[ + { + "attributes":{ + "POSITION":7271, + "NORMAL":7272, + "TEXCOORD_0":7273 + }, + "indices":7274, + "material":3 + } + ] + }, + { + "name":"Mesh.4976", + "primitives":[ + { + "attributes":{ + "POSITION":7275, + "NORMAL":7276, + "TEXCOORD_0":7277 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7116", + "primitives":[ + { + "attributes":{ + "POSITION":7278, + "NORMAL":7279, + "TEXCOORD_0":7280 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.7434", + "primitives":[ + { + "attributes":{ + "POSITION":7281, + "NORMAL":7282, + "TEXCOORD_0":7283 + }, + "indices":6957, + "material":7 + } + ] + }, + { + "name":"Mesh.7879", + "primitives":[ + { + "attributes":{ + "POSITION":7284, + "NORMAL":7285 + }, + "indices":7286, + "material":3 + } + ] + }, + { + "name":"Mesh.5201", + "primitives":[ + { + "attributes":{ + "POSITION":7287, + "NORMAL":7288, + "TEXCOORD_0":7289 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5528", + "primitives":[ + { + "attributes":{ + "POSITION":7290, + "NORMAL":7291, + "TEXCOORD_0":7292 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2534", + "primitives":[ + { + "attributes":{ + "POSITION":7293, + "NORMAL":7294, + "TEXCOORD_0":7295 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.929", + "primitives":[ + { + "attributes":{ + "POSITION":7296, + "NORMAL":7297, + "TEXCOORD_0":7298 + }, + "indices":7299, + "material":0 + } + ] + }, + { + "name":"Mesh.8828", + "primitives":[ + { + "attributes":{ + "POSITION":7300, + "NORMAL":7301 + }, + "indices":3521, + "material":3 + } + ] + }, + { + "name":"Mesh.7045", + "primitives":[ + { + "attributes":{ + "POSITION":7302, + "NORMAL":7303, + "TEXCOORD_0":7304 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.7835", + "primitives":[ + { + "attributes":{ + "POSITION":7305, + "NORMAL":7306 + }, + "indices":7307, + "material":3 + } + ] + }, + { + "name":"Mesh.8162", + "primitives":[ + { + "attributes":{ + "POSITION":7308, + "NORMAL":7309 + }, + "indices":7310, + "material":3 + } + ] + }, + { + "name":"Mesh.4969", + "primitives":[ + { + "attributes":{ + "POSITION":7311, + "NORMAL":7312, + "TEXCOORD_0":7313 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6010", + "primitives":[ + { + "attributes":{ + "POSITION":7314, + "NORMAL":7315, + "TEXCOORD_0":7316 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.7875", + "primitives":[ + { + "attributes":{ + "POSITION":7317, + "NORMAL":7318 + }, + "indices":7319, + "material":3 + } + ] + }, + { + "name":"Mesh.213", + "primitives":[ + { + "attributes":{ + "POSITION":7320, + "NORMAL":7321, + "TEXCOORD_0":7322 + }, + "indices":7323, + "material":3 + } + ] + }, + { + "name":"Mesh.471", + "primitives":[ + { + "attributes":{ + "POSITION":7324, + "NORMAL":7325 + }, + "indices":4024, + "material":3 + } + ] + }, + { + "name":"Mesh.5170", + "primitives":[ + { + "attributes":{ + "POSITION":7326, + "NORMAL":7327, + "TEXCOORD_0":7328 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8895", + "primitives":[ + { + "attributes":{ + "POSITION":7329, + "NORMAL":7330 + }, + "indices":3807, + "material":3 + } + ] + }, + { + "name":"Mesh.186", + "primitives":[ + { + "attributes":{ + "POSITION":7331, + "NORMAL":7332, + "TEXCOORD_0":7333 + }, + "indices":7334, + "material":3 + } + ] + }, + { + "name":"Mesh.2639", + "primitives":[ + { + "attributes":{ + "POSITION":7335, + "NORMAL":7336, + "TEXCOORD_0":7337 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.5019", + "primitives":[ + { + "attributes":{ + "POSITION":7338, + "NORMAL":7339, + "TEXCOORD_0":7340 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5715", + "primitives":[ + { + "attributes":{ + "POSITION":7341, + "NORMAL":7342 + }, + "indices":3076, + "material":0 + } + ] + }, + { + "name":"Mesh.1746", + "primitives":[ + { + "attributes":{ + "POSITION":7343, + "NORMAL":7344 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.8199", + "primitives":[ + { + "attributes":{ + "POSITION":7345, + "NORMAL":7346 + }, + "indices":7347, + "material":3 + } + ] + }, + { + "name":"Mesh.7581", + "primitives":[ + { + "attributes":{ + "POSITION":7348, + "NORMAL":7349 + }, + "indices":7350, + "material":3 + } + ] + }, + { + "name":"Mesh.6841", + "primitives":[ + { + "attributes":{ + "POSITION":7351, + "NORMAL":7352, + "TEXCOORD_0":7353 + }, + "indices":1256, + "material":0 + } + ] + }, + { + "name":"Mesh.7513", + "primitives":[ + { + "attributes":{ + "POSITION":7354, + "NORMAL":7355 + }, + "indices":7356, + "material":3 + } + ] + }, + { + "name":"Mesh.2425", + "primitives":[ + { + "attributes":{ + "POSITION":7357, + "NORMAL":7358, + "TEXCOORD_0":7359 + }, + "indices":4958, + "material":0 + } + ] + }, + { + "name":"Mesh.5009", + "primitives":[ + { + "attributes":{ + "POSITION":7360, + "NORMAL":7361, + "TEXCOORD_0":7362 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5244", + "primitives":[ + { + "attributes":{ + "POSITION":7363, + "NORMAL":7364, + "TEXCOORD_0":7365 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.4967", + "primitives":[ + { + "attributes":{ + "POSITION":7366, + "NORMAL":7367, + "TEXCOORD_0":7368 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.207", + "primitives":[ + { + "attributes":{ + "POSITION":7369, + "NORMAL":7370, + "TEXCOORD_0":7371 + }, + "indices":7372, + "material":3 + } + ] + }, + { + "name":"Mesh.9172", + "primitives":[ + { + "attributes":{ + "POSITION":7373, + "NORMAL":7374, + "TEXCOORD_0":7375 + }, + "indices":7376, + "material":7 + } + ] + }, + { + "name":"Mesh.4948", + "primitives":[ + { + "attributes":{ + "POSITION":7377, + "NORMAL":7378, + "TEXCOORD_0":7379 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.852", + "primitives":[ + { + "attributes":{ + "POSITION":7380, + "NORMAL":7381, + "TEXCOORD_0":7382 + }, + "indices":7383, + "material":0 + } + ] + }, + { + "name":"Mesh.892", + "primitives":[ + { + "attributes":{ + "POSITION":7384, + "NORMAL":7385, + "TEXCOORD_0":7386 + }, + "indices":7387, + "material":0 + } + ] + }, + { + "name":"Mesh.8615", + "primitives":[ + { + "attributes":{ + "POSITION":7388, + "NORMAL":7389 + }, + "indices":7390, + "material":3 + } + ] + }, + { + "name":"Mesh.741", + "primitives":[ + { + "attributes":{ + "POSITION":7391, + "NORMAL":7392, + "TEXCOORD_0":7393 + }, + "indices":554, + "material":0 + } + ] + }, + { + "name":"Mesh.1627", + "primitives":[ + { + "attributes":{ + "POSITION":7394, + "NORMAL":7395, + "TEXCOORD_0":7396 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.120", + "primitives":[ + { + "attributes":{ + "POSITION":7397, + "NORMAL":7398, + "TEXCOORD_0":7399 + }, + "indices":7400, + "material":0 + } + ] + }, + { + "name":"Mesh.378", + "primitives":[ + { + "attributes":{ + "POSITION":7401, + "NORMAL":7402, + "TEXCOORD_0":7403 + }, + "indices":7404, + "material":0 + } + ] + }, + { + "name":"Mesh.4877", + "primitives":[ + { + "attributes":{ + "POSITION":7405, + "NORMAL":7406, + "TEXCOORD_0":7407 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5213", + "primitives":[ + { + "attributes":{ + "POSITION":7408, + "NORMAL":7409, + "TEXCOORD_0":7410 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7480", + "primitives":[ + { + "attributes":{ + "POSITION":7411, + "NORMAL":7412 + }, + "indices":3332, + "material":3 + } + ] + }, + { + "name":"Mesh.4872", + "primitives":[ + { + "attributes":{ + "POSITION":7413, + "NORMAL":7414, + "TEXCOORD_0":7415 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.042", + "primitives":[ + { + "attributes":{ + "POSITION":7416, + "NORMAL":7417 + }, + "indices":7069, + "material":22 + } + ] + }, + { + "name":"Mesh.5577", + "primitives":[ + { + "attributes":{ + "POSITION":7418, + "NORMAL":7419, + "TEXCOORD_0":7420 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1940", + "primitives":[ + { + "attributes":{ + "POSITION":7421, + "NORMAL":7422 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.2722", + "primitives":[ + { + "attributes":{ + "POSITION":7423, + "NORMAL":7424, + "TEXCOORD_0":7425 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.6897", + "primitives":[ + { + "attributes":{ + "POSITION":7426, + "NORMAL":7427, + "TEXCOORD_0":7428 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.7560", + "primitives":[ + { + "attributes":{ + "POSITION":7429, + "NORMAL":7430 + }, + "indices":1461, + "material":3 + } + ] + }, + { + "name":"Mesh.8032", + "primitives":[ + { + "attributes":{ + "POSITION":7431, + "NORMAL":7432, + "TEXCOORD_0":7433 + }, + "indices":7434, + "material":0 + } + ] + }, + { + "name":"Mesh.710", + "primitives":[ + { + "attributes":{ + "POSITION":7435, + "NORMAL":7436, + "TEXCOORD_0":7437 + }, + "indices":7438, + "material":0 + } + ] + }, + { + "name":"Mesh.444", + "primitives":[ + { + "attributes":{ + "POSITION":7439, + "NORMAL":7440 + }, + "indices":1192, + "material":3 + } + ] + }, + { + "name":"Mesh.995", + "primitives":[ + { + "attributes":{ + "POSITION":7441, + "NORMAL":7442, + "TEXCOORD_0":7443 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.145", + "primitives":[ + { + "attributes":{ + "POSITION":7444, + "NORMAL":7445, + "TEXCOORD_0":7446 + }, + "indices":2006, + "material":0 + } + ] + }, + { + "name":"Mesh.8234", + "primitives":[ + { + "attributes":{ + "POSITION":7447, + "NORMAL":7448 + }, + "indices":6371, + "material":3 + } + ] + }, + { + "name":"Mesh.7262", + "primitives":[ + { + "attributes":{ + "POSITION":7449, + "NORMAL":7450, + "TEXCOORD_0":7451 + }, + "indices":7452, + "material":7 + } + ] + }, + { + "name":"Mesh.7449", + "primitives":[ + { + "attributes":{ + "POSITION":7453, + "NORMAL":7454, + "TEXCOORD_0":7455 + }, + "indices":2369, + "material":7 + } + ] + }, + { + "name":"Mesh.6486", + "primitives":[ + { + "attributes":{ + "POSITION":7456, + "NORMAL":7457, + "TEXCOORD_0":7458 + }, + "indices":1890, + "material":0 + } + ] + }, + { + "name":"Mesh.8525", + "primitives":[ + { + "attributes":{ + "POSITION":7459, + "NORMAL":7460 + }, + "indices":7350, + "material":3 + } + ] + }, + { + "name":"Mesh.6341", + "primitives":[ + { + "attributes":{ + "POSITION":7461, + "NORMAL":7462 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6813", + "primitives":[ + { + "attributes":{ + "POSITION":7463, + "NORMAL":7464, + "TEXCOORD_0":7465 + }, + "indices":708, + "material":0 + } + ] + }, + { + "name":"Mesh.5767", + "primitives":[ + { + "attributes":{ + "POSITION":7466, + "NORMAL":7467 + }, + "indices":7468, + "material":0 + } + ] + }, + { + "name":"Mesh.5727", + "primitives":[ + { + "attributes":{ + "POSITION":7469, + "NORMAL":7470 + }, + "indices":7471, + "material":0 + } + ] + }, + { + "name":"Mesh.2509", + "primitives":[ + { + "attributes":{ + "POSITION":7472, + "NORMAL":7473, + "TEXCOORD_0":7474 + }, + "indices":7475, + "material":0 + } + ] + }, + { + "name":"Mesh.1758", + "primitives":[ + { + "attributes":{ + "POSITION":7476, + "NORMAL":7477, + "TEXCOORD_0":7478 + }, + "indices":34, + "material":48 + } + ] + }, + { + "name":"Mesh.1126", + "primitives":[ + { + "attributes":{ + "POSITION":7479, + "NORMAL":7480, + "TEXCOORD_0":7481 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.2549", + "primitives":[ + { + "attributes":{ + "POSITION":7482, + "NORMAL":7483, + "TEXCOORD_0":7484 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.5583", + "primitives":[ + { + "attributes":{ + "POSITION":7485, + "NORMAL":7486, + "TEXCOORD_0":7487 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2725", + "primitives":[ + { + "attributes":{ + "POSITION":7488, + "NORMAL":7489, + "TEXCOORD_0":7490 + }, + "indices":140, + "material":0 + } + ] + }, + { + "name":"Mesh.9200", + "primitives":[ + { + "attributes":{ + "POSITION":7491, + "NORMAL":7492, + "TEXCOORD_0":7493 + }, + "indices":7215, + "material":7 + } + ] + }, + { + "name":"Mesh.1983", + "primitives":[ + { + "attributes":{ + "POSITION":7494, + "NORMAL":7495, + "TEXCOORD_0":7496 + }, + "indices":7497, + "material":0 + } + ] + }, + { + "name":"Mesh.9072", + "primitives":[ + { + "attributes":{ + "POSITION":7498, + "NORMAL":7499, + "TEXCOORD_0":7500 + }, + "indices":7501, + "material":7 + } + ] + }, + { + "name":"Mesh.2326", + "primitives":[ + { + "attributes":{ + "POSITION":7502, + "NORMAL":7503, + "TEXCOORD_0":7504 + }, + "indices":366, + "material":0 + } + ] + }, + { + "name":"Mesh.6128", + "primitives":[ + { + "attributes":{ + "POSITION":7505, + "NORMAL":7506, + "TEXCOORD_0":7507 + }, + "indices":5098, + "material":12 + } + ] + }, + { + "name":"Mesh.7740", + "primitives":[ + { + "attributes":{ + "POSITION":7508, + "NORMAL":7509 + }, + "indices":7510, + "material":3 + } + ] + }, + { + "name":"Mesh.2157", + "primitives":[ + { + "attributes":{ + "POSITION":7511, + "NORMAL":7512, + "TEXCOORD_0":7513 + }, + "indices":7514, + "material":0 + } + ] + }, + { + "name":"Mesh.2765", + "primitives":[ + { + "attributes":{ + "POSITION":7515, + "NORMAL":7516, + "TEXCOORD_0":7517 + }, + "indices":1536, + "material":0 + } + ] + }, + { + "name":"Mesh.7788", + "primitives":[ + { + "attributes":{ + "POSITION":7518, + "NORMAL":7519 + }, + "indices":7520, + "material":3 + } + ] + }, + { + "name":"Mesh.1989", + "primitives":[ + { + "attributes":{ + "POSITION":7521, + "NORMAL":7522, + "TEXCOORD_0":7523 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8445", + "primitives":[ + { + "attributes":{ + "POSITION":7524, + "NORMAL":7525 + }, + "indices":7526, + "material":3 + } + ] + }, + { + "name":"Mesh.6782", + "primitives":[ + { + "attributes":{ + "POSITION":7527, + "NORMAL":7528 + }, + "indices":4577, + "material":0 + } + ] + }, + { + "name":"Mesh.6122", + "primitives":[ + { + "attributes":{ + "POSITION":7529, + "NORMAL":7530, + "TEXCOORD_0":7531 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.6254", + "primitives":[ + { + "attributes":{ + "POSITION":7532, + "NORMAL":7533, + "TEXCOORD_0":7534 + }, + "indices":4263, + "material":5 + } + ] + }, + { + "name":"Mesh.6470", + "primitives":[ + { + "attributes":{ + "POSITION":7535, + "NORMAL":7536, + "TEXCOORD_0":7537 + }, + "indices":3316, + "material":0 + } + ] + }, + { + "name":"Mesh.1872", + "primitives":[ + { + "attributes":{ + "POSITION":7538, + "NORMAL":7539 + }, + "indices":6754, + "material":22 + } + ] + }, + { + "name":"Mesh.8443", + "primitives":[ + { + "attributes":{ + "POSITION":7540, + "NORMAL":7541 + }, + "indices":7542, + "material":3 + } + ] + }, + { + "name":"Mesh.5730", + "primitives":[ + { + "attributes":{ + "POSITION":7543, + "NORMAL":7544 + }, + "indices":6512, + "material":0 + } + ] + }, + { + "name":"Mesh.5225", + "primitives":[ + { + "attributes":{ + "POSITION":7545, + "NORMAL":7546, + "TEXCOORD_0":7547 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7492", + "primitives":[ + { + "attributes":{ + "POSITION":7548, + "NORMAL":7549 + }, + "indices":7550, + "material":3 + } + ] + }, + { + "name":"Mesh.2694", + "primitives":[ + { + "attributes":{ + "POSITION":7551, + "NORMAL":7552, + "TEXCOORD_0":7553 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.978", + "primitives":[ + { + "attributes":{ + "POSITION":7554, + "NORMAL":7555, + "TEXCOORD_0":7556 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.9018", + "primitives":[ + { + "attributes":{ + "POSITION":7557, + "NORMAL":7558, + "TEXCOORD_0":7559 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.805", + "primitives":[ + { + "attributes":{ + "POSITION":7560, + "NORMAL":7561, + "TEXCOORD_0":7562 + }, + "indices":5069, + "material":0 + } + ] + }, + { + "name":"Mesh.1129", + "primitives":[ + { + "attributes":{ + "POSITION":7563, + "NORMAL":7564, + "TEXCOORD_0":7565 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.5955", + "primitives":[ + { + "attributes":{ + "POSITION":7566, + "NORMAL":7567, + "TEXCOORD_0":7568 + }, + "indices":1650, + "material":20 + } + ] + }, + { + "name":"Mesh.7245", + "primitives":[ + { + "attributes":{ + "POSITION":7569, + "NORMAL":7570, + "TEXCOORD_0":7571 + }, + "indices":7572, + "material":7 + } + ] + }, + { + "name":"Mesh.8044", + "primitives":[ + { + "attributes":{ + "POSITION":7573, + "NORMAL":7574, + "TEXCOORD_0":7575 + }, + "indices":2286, + "material":3 + } + ] + }, + { + "name":"Mesh.867", + "primitives":[ + { + "attributes":{ + "POSITION":7576, + "NORMAL":7577, + "TEXCOORD_0":7578 + }, + "indices":6459, + "material":0 + } + ] + }, + { + "name":"Mesh.5626", + "primitives":[ + { + "attributes":{ + "POSITION":7579, + "NORMAL":7580, + "TEXCOORD_0":7581 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5003", + "primitives":[ + { + "attributes":{ + "POSITION":7582, + "NORMAL":7583, + "TEXCOORD_0":7584 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.514", + "primitives":[ + { + "attributes":{ + "POSITION":7585, + "NORMAL":7586, + "TEXCOORD_0":7587 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.1770", + "primitives":[ + { + "attributes":{ + "POSITION":7588, + "NORMAL":7589, + "TEXCOORD_0":7590 + }, + "indices":7591, + "material":37 + } + ] + }, + { + "name":"Mesh.796", + "primitives":[ + { + "attributes":{ + "POSITION":7592, + "NORMAL":7593, + "TEXCOORD_0":7594 + }, + "indices":144, + "material":0 + } + ] + }, + { + "name":"Mesh.6387", + "primitives":[ + { + "attributes":{ + "POSITION":7595, + "NORMAL":7596 + }, + "indices":75, + "material":0 + } + ] + }, + { + "name":"Mesh.458", + "primitives":[ + { + "attributes":{ + "POSITION":7597, + "NORMAL":7598 + }, + "indices":4749, + "material":3 + } + ] + }, + { + "name":"Mesh.8831", + "primitives":[ + { + "attributes":{ + "POSITION":7599, + "NORMAL":7600 + }, + "indices":7601, + "material":3 + } + ] + }, + { + "name":"Mesh.7814", + "primitives":[ + { + "attributes":{ + "POSITION":7602, + "NORMAL":7603 + }, + "indices":7604, + "material":3 + } + ] + }, + { + "name":"Mesh.8039", + "primitives":[ + { + "attributes":{ + "POSITION":7605, + "NORMAL":7606, + "TEXCOORD_0":7607 + }, + "indices":2544, + "material":0 + } + ] + }, + { + "name":"Mesh.7649", + "primitives":[ + { + "attributes":{ + "POSITION":7608, + "NORMAL":7609 + }, + "indices":7610, + "material":3 + } + ] + }, + { + "name":"Mesh.1122", + "primitives":[ + { + "attributes":{ + "POSITION":7611, + "NORMAL":7612, + "TEXCOORD_0":7613 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.5158", + "primitives":[ + { + "attributes":{ + "POSITION":7614, + "NORMAL":7615, + "TEXCOORD_0":7616 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6754", + "primitives":[ + { + "attributes":{ + "POSITION":7617, + "NORMAL":7618 + }, + "indices":735, + "material":0 + } + ] + }, + { + "name":"Mesh.725", + "primitives":[ + { + "attributes":{ + "POSITION":7619, + "NORMAL":7620, + "TEXCOORD_0":7621 + }, + "indices":7622, + "material":0 + } + ] + }, + { + "name":"Mesh.5605", + "primitives":[ + { + "attributes":{ + "POSITION":7623, + "NORMAL":7624, + "TEXCOORD_0":7625 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7001", + "primitives":[ + { + "attributes":{ + "POSITION":7626, + "NORMAL":7627, + "TEXCOORD_0":7628 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.8263", + "primitives":[ + { + "attributes":{ + "POSITION":7629, + "NORMAL":7630 + }, + "indices":7631, + "material":3 + } + ] + }, + { + "name":"Mesh.6683", + "primitives":[ + { + "attributes":{ + "POSITION":7632, + "NORMAL":7633 + }, + "indices":7634, + "material":0 + } + ] + }, + { + "name":"Mesh.2412", + "primitives":[ + { + "attributes":{ + "POSITION":7635, + "NORMAL":7636, + "TEXCOORD_0":7637 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.8388", + "primitives":[ + { + "attributes":{ + "POSITION":7638, + "NORMAL":7639 + }, + "indices":5443, + "material":3 + } + ] + }, + { + "name":"Mesh.8778", + "primitives":[ + { + "attributes":{ + "POSITION":7640, + "NORMAL":7641 + }, + "indices":7642, + "material":3 + } + ] + }, + { + "name":"Mesh.6188", + "primitives":[ + { + "attributes":{ + "POSITION":7643, + "NORMAL":7644, + "TEXCOORD_0":7645 + }, + "indices":1465, + "material":25 + } + ] + }, + { + "name":"Mesh.7986", + "primitives":[ + { + "attributes":{ + "POSITION":7646, + "NORMAL":7647, + "TEXCOORD_0":7648 + }, + "indices":7649, + "material":3 + } + ] + }, + { + "name":"Mesh.8295", + "primitives":[ + { + "attributes":{ + "POSITION":7650, + "NORMAL":7651 + }, + "indices":7652, + "material":3 + } + ] + }, + { + "name":"Mesh.8427", + "primitives":[ + { + "attributes":{ + "POSITION":7653, + "NORMAL":7654 + }, + "indices":7655, + "material":3 + } + ] + }, + { + "name":"Mesh.6572", + "primitives":[ + { + "attributes":{ + "POSITION":7656, + "NORMAL":7657 + }, + "indices":7471, + "material":0 + } + ] + }, + { + "name":"Mesh.7075", + "primitives":[ + { + "attributes":{ + "POSITION":7658, + "NORMAL":7659, + "TEXCOORD_0":7660 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.8343", + "primitives":[ + { + "attributes":{ + "POSITION":7661, + "NORMAL":7662 + }, + "indices":3807, + "material":3 + } + ] + }, + { + "name":"Mesh.8851", + "primitives":[ + { + "attributes":{ + "POSITION":7663, + "NORMAL":7664 + }, + "indices":7665, + "material":3 + } + ] + }, + { + "name":"Mesh.6165", + "primitives":[ + { + "attributes":{ + "POSITION":7666, + "NORMAL":7667, + "TEXCOORD_0":7668 + }, + "indices":5098, + "material":12 + } + ] + }, + { + "name":"Mesh.7822", + "primitives":[ + { + "attributes":{ + "POSITION":7669, + "NORMAL":7670 + }, + "indices":7671, + "material":3 + } + ] + }, + { + "name":"Mesh.461", + "primitives":[ + { + "attributes":{ + "POSITION":7672, + "NORMAL":7673 + }, + "indices":2778, + "material":3 + } + ] + }, + { + "name":"Mesh.4975", + "primitives":[ + { + "attributes":{ + "POSITION":7674, + "NORMAL":7675, + "TEXCOORD_0":7676 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7115", + "primitives":[ + { + "attributes":{ + "POSITION":7677, + "NORMAL":7678, + "TEXCOORD_0":7679 + }, + "indices":38, + "material":7 + } + ] + }, + { + "name":"Mesh.7433", + "primitives":[ + { + "attributes":{ + "POSITION":7680, + "NORMAL":7681, + "TEXCOORD_0":7682 + }, + "indices":7683, + "material":7 + } + ] + }, + { + "name":"Mesh.208", + "primitives":[ + { + "attributes":{ + "POSITION":7684, + "NORMAL":7685, + "TEXCOORD_0":7686 + }, + "indices":7687, + "material":3 + } + ] + }, + { + "name":"Mesh.5200", + "primitives":[ + { + "attributes":{ + "POSITION":7688, + "NORMAL":7689, + "TEXCOORD_0":7690 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8242", + "primitives":[ + { + "attributes":{ + "POSITION":7691, + "NORMAL":7692 + }, + "indices":4649, + "material":3 + } + ] + }, + { + "name":"Mesh.5527", + "primitives":[ + { + "attributes":{ + "POSITION":7693, + "NORMAL":7694, + "TEXCOORD_0":7695 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6448", + "primitives":[ + { + "attributes":{ + "POSITION":7696, + "NORMAL":7697, + "TEXCOORD_0":7698 + }, + "indices":3788, + "material":0 + } + ] + }, + { + "name":"Mesh.2533", + "primitives":[ + { + "attributes":{ + "POSITION":7699, + "NORMAL":7700, + "TEXCOORD_0":7701 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.6756", + "primitives":[ + { + "attributes":{ + "POSITION":7702, + "NORMAL":7703 + }, + "indices":7704, + "material":0 + } + ] + }, + { + "name":"Mesh.7044", + "primitives":[ + { + "attributes":{ + "POSITION":7705, + "NORMAL":7706 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.7467", + "primitives":[ + { + "attributes":{ + "POSITION":7707, + "NORMAL":7708 + }, + "indices":6400, + "material":3 + } + ] + }, + { + "name":"Mesh.5567", + "primitives":[ + { + "attributes":{ + "POSITION":7709, + "NORMAL":7710, + "TEXCOORD_0":7711 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6290", + "primitives":[ + { + "attributes":{ + "POSITION":7712, + "NORMAL":7713, + "TEXCOORD_0":7714 + }, + "indices":449, + "material":12 + } + ] + }, + { + "name":"Mesh.7834", + "primitives":[ + { + "attributes":{ + "POSITION":7715, + "NORMAL":7716 + }, + "indices":7717, + "material":3 + } + ] + }, + { + "name":"Mesh.8161", + "primitives":[ + { + "attributes":{ + "POSITION":7718, + "NORMAL":7719 + }, + "indices":7720, + "material":3 + } + ] + }, + { + "name":"Mesh.7874", + "primitives":[ + { + "attributes":{ + "POSITION":7721, + "NORMAL":7722 + }, + "indices":7723, + "material":3 + } + ] + }, + { + "name":"Mesh.9036", + "primitives":[ + { + "attributes":{ + "POSITION":7724, + "NORMAL":7725, + "TEXCOORD_0":7726 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.9137", + "primitives":[ + { + "attributes":{ + "POSITION":7727, + "NORMAL":7728, + "TEXCOORD_0":7729 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.5169", + "primitives":[ + { + "attributes":{ + "POSITION":7730, + "NORMAL":7731, + "TEXCOORD_0":7732 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8894", + "primitives":[ + { + "attributes":{ + "POSITION":7733, + "NORMAL":7734 + }, + "indices":4188, + "material":3 + } + ] + }, + { + "name":"Mesh.1733", + "primitives":[ + { + "attributes":{ + "POSITION":7735, + "NORMAL":7736 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.2638", + "primitives":[ + { + "attributes":{ + "POSITION":7737, + "NORMAL":7738, + "TEXCOORD_0":7739 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.5714", + "primitives":[ + { + "attributes":{ + "POSITION":7740, + "NORMAL":7741 + }, + "indices":3451, + "material":0 + } + ] + }, + { + "name":"Mesh.7349", + "primitives":[ + { + "attributes":{ + "POSITION":7742, + "NORMAL":7743, + "TEXCOORD_0":7744 + }, + "indices":7745, + "material":7 + } + ] + }, + { + "name":"Mesh.6439", + "primitives":[ + { + "attributes":{ + "POSITION":7746, + "NORMAL":7747, + "TEXCOORD_0":7748 + }, + "indices":1890, + "material":0 + } + ] + }, + { + "name":"Mesh.8702", + "primitives":[ + { + "attributes":{ + "POSITION":7749, + "NORMAL":7750 + }, + "indices":7751, + "material":3 + } + ] + }, + { + "name":"Mesh.711", + "primitives":[ + { + "attributes":{ + "POSITION":7752, + "NORMAL":7753, + "TEXCOORD_0":7754 + }, + "indices":7755, + "material":0 + } + ] + }, + { + "name":"Mesh.6262", + "primitives":[ + { + "attributes":{ + "POSITION":7756, + "NORMAL":7757, + "TEXCOORD_0":7758 + }, + "indices":7759, + "material":25 + } + ] + }, + { + "name":"Mesh.6950", + "primitives":[ + { + "attributes":{ + "POSITION":7760, + "NORMAL":7761 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.6840", + "primitives":[ + { + "attributes":{ + "POSITION":7762, + "NORMAL":7763, + "TEXCOORD_0":7764 + }, + "indices":708, + "material":0 + } + ] + }, + { + "name":"Mesh.2424", + "primitives":[ + { + "attributes":{ + "POSITION":7765, + "NORMAL":7766, + "TEXCOORD_0":7767 + }, + "indices":1522, + "material":0 + } + ] + }, + { + "name":"Mesh.178", + "primitives":[ + { + "attributes":{ + "POSITION":7768, + "NORMAL":7769, + "TEXCOORD_0":7770 + }, + "indices":7771, + "material":0 + } + ] + }, + { + "name":"Mesh.9171", + "primitives":[ + { + "attributes":{ + "POSITION":7772, + "NORMAL":7773, + "TEXCOORD_0":7774 + }, + "indices":1711, + "material":7 + } + ] + }, + { + "name":"Mesh.4947", + "primitives":[ + { + "attributes":{ + "POSITION":7775, + "NORMAL":7776, + "TEXCOORD_0":7777 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.252", + "primitives":[ + { + "attributes":{ + "POSITION":7778, + "NORMAL":7779, + "TEXCOORD_0":7780 + }, + "indices":7781, + "material":3 + } + ] + }, + { + "name":"Mesh.851", + "primitives":[ + { + "attributes":{ + "POSITION":7782, + "NORMAL":7783, + "TEXCOORD_0":7784 + }, + "indices":7785, + "material":0 + } + ] + }, + { + "name":"Mesh.403", + "primitives":[ + { + "attributes":{ + "POSITION":7786, + "NORMAL":7787 + }, + "indices":386, + "material":0 + } + ] + }, + { + "name":"Mesh.9075", + "primitives":[ + { + "attributes":{ + "POSITION":7788, + "NORMAL":7789, + "TEXCOORD_0":7790 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.891", + "primitives":[ + { + "attributes":{ + "POSITION":7791, + "NORMAL":7792, + "TEXCOORD_0":7793 + }, + "indices":3972, + "material":0 + } + ] + }, + { + "name":"Mesh.8619", + "primitives":[ + { + "attributes":{ + "POSITION":7794, + "NORMAL":7795 + }, + "indices":7796, + "material":3 + } + ] + }, + { + "name":"Mesh.7819", + "primitives":[ + { + "attributes":{ + "POSITION":7797, + "NORMAL":7798 + }, + "indices":7799, + "material":3 + } + ] + }, + { + "name":"Mesh.5979", + "primitives":[ + { + "attributes":{ + "POSITION":7800, + "NORMAL":7801, + "TEXCOORD_0":7802 + }, + "indices":7004, + "material":12 + } + ] + }, + { + "name":"Mesh.8502", + "primitives":[ + { + "attributes":{ + "POSITION":7803, + "NORMAL":7804 + }, + "indices":7642, + "material":3 + } + ] + }, + { + "name":"Mesh.7305", + "primitives":[ + { + "attributes":{ + "POSITION":7805, + "NORMAL":7806, + "TEXCOORD_0":7807 + }, + "indices":7808, + "material":7 + } + ] + }, + { + "name":"Mesh.6809", + "primitives":[ + { + "attributes":{ + "POSITION":7809, + "NORMAL":7810, + "TEXCOORD_0":7811 + }, + "indices":7812, + "material":0 + } + ] + }, + { + "name":"Mesh.6990", + "primitives":[ + { + "attributes":{ + "POSITION":7813, + "NORMAL":7814 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.5212", + "primitives":[ + { + "attributes":{ + "POSITION":7815, + "NORMAL":7816, + "TEXCOORD_0":7817 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1939", + "primitives":[ + { + "attributes":{ + "POSITION":7818, + "NORMAL":7819 + }, + "indices":386, + "material":0 + } + ] + }, + { + "name":"Mesh.2721", + "primitives":[ + { + "attributes":{ + "POSITION":7820, + "NORMAL":7821, + "TEXCOORD_0":7822 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.6896", + "primitives":[ + { + "attributes":{ + "POSITION":7823, + "NORMAL":7824 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.1186", + "primitives":[ + { + "attributes":{ + "POSITION":7825, + "NORMAL":7826 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.6071", + "primitives":[ + { + "attributes":{ + "POSITION":7827, + "NORMAL":7828, + "TEXCOORD_0":7829 + }, + "indices":202, + "material":11 + } + ] + }, + { + "name":"Mesh.7559", + "primitives":[ + { + "attributes":{ + "POSITION":7830, + "NORMAL":7831 + }, + "indices":5803, + "material":3 + } + ] + }, + { + "name":"Mesh.2077", + "primitives":[ + { + "attributes":{ + "POSITION":7832, + "NORMAL":7833, + "TEXCOORD_0":7834 + }, + "indices":3846, + "material":34 + } + ] + }, + { + "name":"Mesh.5141", + "primitives":[ + { + "attributes":{ + "POSITION":7835, + "NORMAL":7836, + "TEXCOORD_0":7837 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.443", + "primitives":[ + { + "attributes":{ + "POSITION":7838, + "NORMAL":7839 + }, + "indices":2912, + "material":3 + } + ] + }, + { + "name":"Mesh.8839", + "primitives":[ + { + "attributes":{ + "POSITION":7840, + "NORMAL":7841 + }, + "indices":4383, + "material":3 + } + ] + }, + { + "name":"Mesh.8721", + "primitives":[ + { + "attributes":{ + "POSITION":7842, + "NORMAL":7843 + }, + "indices":7526, + "material":3 + } + ] + }, + { + "name":"Mesh.144", + "primitives":[ + { + "attributes":{ + "POSITION":7844, + "NORMAL":7845, + "TEXCOORD_0":7846 + }, + "indices":7847, + "material":0 + } + ] + }, + { + "name":"Mesh.7448", + "primitives":[ + { + "attributes":{ + "POSITION":7848, + "NORMAL":7849, + "TEXCOORD_0":7850 + }, + "indices":525, + "material":7 + } + ] + }, + { + "name":"Mesh.254", + "primitives":[ + { + "attributes":{ + "POSITION":7851, + "NORMAL":7852, + "TEXCOORD_0":7853 + }, + "indices":7854, + "material":3 + } + ] + }, + { + "name":"Mesh.2650", + "primitives":[ + { + "attributes":{ + "POSITION":7855, + "NORMAL":7856, + "TEXCOORD_0":7857 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.6812", + "primitives":[ + { + "attributes":{ + "POSITION":7858, + "NORMAL":7859, + "TEXCOORD_0":7860 + }, + "indices":7861, + "material":0 + } + ] + }, + { + "name":"Mesh.5726", + "primitives":[ + { + "attributes":{ + "POSITION":7862, + "NORMAL":7863 + }, + "indices":7864, + "material":0 + } + ] + }, + { + "name":"Mesh.2508", + "primitives":[ + { + "attributes":{ + "POSITION":7865, + "NORMAL":7866, + "TEXCOORD_0":7867 + }, + "indices":1060, + "material":0 + } + ] + }, + { + "name":"Mesh.1757", + "primitives":[ + { + "attributes":{ + "POSITION":7868, + "NORMAL":7869, + "TEXCOORD_0":7870 + }, + "indices":34, + "material":48 + } + ] + }, + { + "name":"Mesh.2548", + "primitives":[ + { + "attributes":{ + "POSITION":7871, + "NORMAL":7872, + "TEXCOORD_0":7873 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.8213", + "primitives":[ + { + "attributes":{ + "POSITION":7874, + "NORMAL":7875 + }, + "indices":7876, + "material":3 + } + ] + }, + { + "name":"Mesh.8000", + "primitives":[ + { + "attributes":{ + "POSITION":7877, + "NORMAL":7878, + "TEXCOORD_0":7879 + }, + "indices":5611, + "material":3 + } + ] + }, + { + "name":"Mesh.423", + "primitives":[ + { + "attributes":{ + "POSITION":7880, + "NORMAL":7881, + "TEXCOORD_0":7882 + }, + "indices":3276, + "material":6 + } + ] + }, + { + "name":"Mesh.1165", + "primitives":[ + { + "attributes":{ + "POSITION":7883, + "NORMAL":7884 + }, + "indices":114, + "material":1 + } + ] + }, + { + "name":"Mesh.2724", + "primitives":[ + { + "attributes":{ + "POSITION":7885, + "NORMAL":7886, + "TEXCOORD_0":7887 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.1982", + "primitives":[ + { + "attributes":{ + "POSITION":7888, + "NORMAL":7889, + "TEXCOORD_0":7890 + }, + "indices":7891, + "material":0 + } + ] + }, + { + "name":"Mesh.2733", + "primitives":[ + { + "attributes":{ + "POSITION":7892, + "NORMAL":7893, + "TEXCOORD_0":7894 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.2325", + "primitives":[ + { + "attributes":{ + "POSITION":7895, + "NORMAL":7896, + "TEXCOORD_0":7897 + }, + "indices":639, + "material":0 + } + ] + }, + { + "name":"Mesh.6769", + "primitives":[ + { + "attributes":{ + "POSITION":7898, + "NORMAL":7899 + }, + "indices":7900, + "material":0 + } + ] + }, + { + "name":"Mesh.7025", + "primitives":[ + { + "attributes":{ + "POSITION":7901, + "NORMAL":7902 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6028", + "primitives":[ + { + "attributes":{ + "POSITION":7903, + "NORMAL":7904, + "TEXCOORD_0":7905 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.2764", + "primitives":[ + { + "attributes":{ + "POSITION":7906, + "NORMAL":7907, + "TEXCOORD_0":7908 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.5704", + "primitives":[ + { + "attributes":{ + "POSITION":7909, + "NORMAL":7910, + "TEXCOORD_0":7911 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.6781", + "primitives":[ + { + "attributes":{ + "POSITION":7912, + "NORMAL":7913 + }, + "indices":5628, + "material":0 + } + ] + }, + { + "name":"Mesh.7602", + "primitives":[ + { + "attributes":{ + "POSITION":7914, + "NORMAL":7915 + }, + "indices":840, + "material":3 + } + ] + }, + { + "name":"Mesh.1871", + "primitives":[ + { + "attributes":{ + "POSITION":7916, + "NORMAL":7917 + }, + "indices":2248, + "material":0 + } + ] + }, + { + "name":"Mesh.7929", + "primitives":[ + { + "attributes":{ + "POSITION":7918, + "NORMAL":7919 + }, + "indices":7920, + "material":3 + } + ] + }, + { + "name":"Mesh.5224", + "primitives":[ + { + "attributes":{ + "POSITION":7921, + "NORMAL":7922, + "TEXCOORD_0":7923 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7491", + "primitives":[ + { + "attributes":{ + "POSITION":7924, + "NORMAL":7925 + }, + "indices":7926, + "material":3 + } + ] + }, + { + "name":"Mesh.7818", + "primitives":[ + { + "attributes":{ + "POSITION":7927, + "NORMAL":7928 + }, + "indices":7929, + "material":3 + } + ] + }, + { + "name":"Mesh.091", + "primitives":[ + { + "attributes":{ + "POSITION":7930, + "NORMAL":7931, + "TEXCOORD_0":7932 + }, + "indices":1167, + "material":0 + } + ] + }, + { + "name":"Mesh.1951", + "primitives":[ + { + "attributes":{ + "POSITION":7933, + "NORMAL":7934 + }, + "indices":2624, + "material":0 + } + ] + }, + { + "name":"Mesh.7862", + "primitives":[ + { + "attributes":{ + "POSITION":7935, + "NORMAL":7936 + }, + "indices":7937, + "material":3 + } + ] + }, + { + "name":"Mesh.977", + "primitives":[ + { + "attributes":{ + "POSITION":7938, + "NORMAL":7939, + "TEXCOORD_0":7940 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.6152", + "primitives":[ + { + "attributes":{ + "POSITION":7941, + "NORMAL":7942, + "TEXCOORD_0":7943 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.6096", + "primitives":[ + { + "attributes":{ + "POSITION":7944, + "NORMAL":7945, + "TEXCOORD_0":7946 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.7410", + "primitives":[ + { + "attributes":{ + "POSITION":7947, + "NORMAL":7948, + "TEXCOORD_0":7949 + }, + "indices":435, + "material":7 + } + ] + }, + { + "name":"Mesh.6964", + "primitives":[ + { + "attributes":{ + "POSITION":7950, + "NORMAL":7951 + }, + "indices":1962, + "material":1 + } + ] + }, + { + "name":"Mesh.7244", + "primitives":[ + { + "attributes":{ + "POSITION":7952, + "NORMAL":7953, + "TEXCOORD_0":7954 + }, + "indices":7955, + "material":7 + } + ] + }, + { + "name":"Mesh.8043", + "primitives":[ + { + "attributes":{ + "POSITION":7956, + "NORMAL":7957, + "TEXCOORD_0":7958 + }, + "indices":1469, + "material":0 + } + ] + }, + { + "name":"Mesh.866", + "primitives":[ + { + "attributes":{ + "POSITION":7959, + "NORMAL":7960, + "TEXCOORD_0":7961 + }, + "indices":2763, + "material":0 + } + ] + }, + { + "name":"Mesh.8788", + "primitives":[ + { + "attributes":{ + "POSITION":7962, + "NORMAL":7963 + }, + "indices":7964, + "material":3 + } + ] + }, + { + "name":"Mesh.5625", + "primitives":[ + { + "attributes":{ + "POSITION":7965, + "NORMAL":7966, + "TEXCOORD_0":7967 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5002", + "primitives":[ + { + "attributes":{ + "POSITION":7968, + "NORMAL":7969, + "TEXCOORD_0":7970 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1248", + "primitives":[ + { + "attributes":{ + "POSITION":7971, + "NORMAL":7972, + "TEXCOORD_0":7973 + }, + "indices":7974, + "material":51 + } + ] + }, + { + "name":"Mesh.1729", + "primitives":[ + { + "attributes":{ + "POSITION":7975, + "NORMAL":7976 + }, + "indices":2525, + "material":27 + } + ] + }, + { + "name":"Mesh.2059", + "primitives":[ + { + "attributes":{ + "POSITION":7977, + "NORMAL":7978, + "TEXCOORD_0":7979 + }, + "indices":1554, + "material":0 + } + ] + }, + { + "name":"Mesh.1769", + "primitives":[ + { + "attributes":{ + "POSITION":7980, + "NORMAL":7981, + "TEXCOORD_0":7982 + }, + "indices":7983, + "material":37 + } + ] + }, + { + "name":"Mesh.795", + "primitives":[ + { + "attributes":{ + "POSITION":7984, + "NORMAL":7985, + "TEXCOORD_0":7986 + }, + "indices":469, + "material":0 + } + ] + }, + { + "name":"Mesh.8470", + "primitives":[ + { + "attributes":{ + "POSITION":7987, + "NORMAL":7988 + }, + "indices":7989, + "material":3 + } + ] + }, + { + "name":"Mesh.1954", + "primitives":[ + { + "attributes":{ + "POSITION":7990, + "NORMAL":7991 + }, + "indices":3642, + "material":0 + } + ] + }, + { + "name":"Mesh.1658", + "primitives":[ + { + "attributes":{ + "POSITION":7992, + "NORMAL":7993, + "TEXCOORD_0":7994 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.6753", + "primitives":[ + { + "attributes":{ + "POSITION":7995, + "NORMAL":7996 + }, + "indices":1043, + "material":0 + } + ] + }, + { + "name":"Mesh.1901", + "primitives":[ + { + "attributes":{ + "POSITION":7997, + "NORMAL":7998 + }, + "indices":2743, + "material":0 + } + ] + }, + { + "name":"Mesh.2776", + "primitives":[ + { + "attributes":{ + "POSITION":7999, + "NORMAL":8000, + "TEXCOORD_0":8001 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.724", + "primitives":[ + { + "attributes":{ + "POSITION":8002, + "NORMAL":8003, + "TEXCOORD_0":8004 + }, + "indices":4640, + "material":0 + } + ] + }, + { + "name":"Mesh.7000", + "primitives":[ + { + "attributes":{ + "POSITION":8005, + "NORMAL":8006, + "TEXCOORD_0":8007 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.1697", + "primitives":[ + { + "attributes":{ + "POSITION":8008, + "NORMAL":8009, + "TEXCOORD_0":8010 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.830", + "primitives":[ + { + "attributes":{ + "POSITION":8011, + "NORMAL":8012, + "TEXCOORD_0":8013 + }, + "indices":8014, + "material":3 + } + ] + }, + { + "name":"Mesh.8285", + "primitives":[ + { + "attributes":{ + "POSITION":8015, + "NORMAL":8016 + }, + "indices":8017, + "material":3 + } + ] + }, + { + "name":"Mesh.8768", + "primitives":[ + { + "attributes":{ + "POSITION":8018, + "NORMAL":8019 + }, + "indices":4557, + "material":3 + } + ] + }, + { + "name":"Mesh.7313", + "primitives":[ + { + "attributes":{ + "POSITION":8020, + "NORMAL":8021, + "TEXCOORD_0":8022 + }, + "indices":6083, + "material":7 + } + ] + }, + { + "name":"Mesh.2411", + "primitives":[ + { + "attributes":{ + "POSITION":8023, + "NORMAL":8024, + "TEXCOORD_0":8025 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.7991", + "primitives":[ + { + "attributes":{ + "POSITION":8026, + "NORMAL":8027, + "TEXCOORD_0":8028 + }, + "indices":3573, + "material":3 + } + ] + }, + { + "name":"Mesh.5686", + "primitives":[ + { + "attributes":{ + "POSITION":8029, + "NORMAL":8030, + "TEXCOORD_0":8031 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7830", + "primitives":[ + { + "attributes":{ + "POSITION":8032, + "NORMAL":8033 + }, + "indices":8034, + "material":3 + } + ] + }, + { + "name":"Mesh.6571", + "primitives":[ + { + "attributes":{ + "POSITION":8035, + "NORMAL":8036 + }, + "indices":7864, + "material":0 + } + ] + }, + { + "name":"Mesh.8342", + "primitives":[ + { + "attributes":{ + "POSITION":8037, + "NORMAL":8038 + }, + "indices":4188, + "material":3 + } + ] + }, + { + "name":"Mesh.8850", + "primitives":[ + { + "attributes":{ + "POSITION":8039, + "NORMAL":8040 + }, + "indices":2251, + "material":3 + } + ] + }, + { + "name":"Mesh.8191", + "primitives":[ + { + "attributes":{ + "POSITION":8041, + "NORMAL":8042 + }, + "indices":8043, + "material":3 + } + ] + }, + { + "name":"Mesh.7114", + "primitives":[ + { + "attributes":{ + "POSITION":8044, + "NORMAL":8045, + "TEXCOORD_0":8046 + }, + "indices":8047, + "material":7 + } + ] + }, + { + "name":"Mesh.7432", + "primitives":[ + { + "attributes":{ + "POSITION":8048, + "NORMAL":8049, + "TEXCOORD_0":8050 + }, + "indices":6878, + "material":7 + } + ] + }, + { + "name":"Mesh.209", + "primitives":[ + { + "attributes":{ + "POSITION":8051, + "NORMAL":8052, + "TEXCOORD_0":8053 + }, + "indices":8054, + "material":3 + } + ] + }, + { + "name":"Mesh.870", + "primitives":[ + { + "attributes":{ + "POSITION":8055, + "NORMAL":8056, + "TEXCOORD_0":8057 + }, + "indices":8058, + "material":0 + } + ] + }, + { + "name":"Mesh.1194", + "primitives":[ + { + "attributes":{ + "POSITION":8059, + "NORMAL":8060 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.9039", + "primitives":[ + { + "attributes":{ + "POSITION":8061, + "NORMAL":8062, + "TEXCOORD_0":8063 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.8457", + "primitives":[ + { + "attributes":{ + "POSITION":8064, + "NORMAL":8065 + }, + "indices":8066, + "material":3 + } + ] + }, + { + "name":"Mesh.5199", + "primitives":[ + { + "attributes":{ + "POSITION":8067, + "NORMAL":8068, + "TEXCOORD_0":8069 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7086", + "primitives":[ + { + "attributes":{ + "POSITION":8070, + "NORMAL":8071 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.1900", + "primitives":[ + { + "attributes":{ + "POSITION":8072, + "NORMAL":8073, + "TEXCOORD_0":8074 + }, + "indices":3276, + "material":6 + } + ] + }, + { + "name":"Mesh.2068", + "primitives":[ + { + "attributes":{ + "POSITION":8075, + "NORMAL":8076, + "TEXCOORD_0":8077 + }, + "indices":8078, + "material":3 + } + ] + }, + { + "name":"Mesh.5526", + "primitives":[ + { + "attributes":{ + "POSITION":8079, + "NORMAL":8080, + "TEXCOORD_0":8081 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.041", + "primitives":[ + { + "attributes":{ + "POSITION":8082, + "NORMAL":8083 + }, + "indices":8084, + "material":22 + } + ] + }, + { + "name":"Mesh.2532", + "primitives":[ + { + "attributes":{ + "POSITION":8085, + "NORMAL":8086, + "TEXCOORD_0":8087 + }, + "indices":1595, + "material":4 + } + ] + }, + { + "name":"Mesh.2972", + "primitives":[ + { + "attributes":{ + "POSITION":8088, + "NORMAL":8089, + "TEXCOORD_0":8090 + }, + "indices":8091, + "material":7 + } + ] + }, + { + "name":"Mesh.5566", + "primitives":[ + { + "attributes":{ + "POSITION":8092, + "NORMAL":8093, + "TEXCOORD_0":8094 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7833", + "primitives":[ + { + "attributes":{ + "POSITION":8095, + "NORMAL":8096 + }, + "indices":8097, + "material":3 + } + ] + }, + { + "name":"Mesh.8160", + "primitives":[ + { + "attributes":{ + "POSITION":8098, + "NORMAL":8099 + }, + "indices":4505, + "material":3 + } + ] + }, + { + "name":"Mesh.7873", + "primitives":[ + { + "attributes":{ + "POSITION":8100, + "NORMAL":8101 + }, + "indices":8102, + "material":3 + } + ] + }, + { + "name":"Mesh.9009", + "primitives":[ + { + "attributes":{ + "POSITION":8103, + "NORMAL":8104, + "TEXCOORD_0":8105 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.9035", + "primitives":[ + { + "attributes":{ + "POSITION":8106, + "NORMAL":8107, + "TEXCOORD_0":8108 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.214", + "primitives":[ + { + "attributes":{ + "POSITION":8109, + "NORMAL":8110, + "TEXCOORD_0":8111 + }, + "indices":8112, + "material":3 + } + ] + }, + { + "name":"Mesh.5168", + "primitives":[ + { + "attributes":{ + "POSITION":8113, + "NORMAL":8114, + "TEXCOORD_0":8115 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8893", + "primitives":[ + { + "attributes":{ + "POSITION":8116, + "NORMAL":8117 + }, + "indices":4527, + "material":3 + } + ] + }, + { + "name":"Mesh.1066", + "primitives":[ + { + "attributes":{ + "POSITION":8118, + "NORMAL":8119, + "TEXCOORD_0":8120 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.2637", + "primitives":[ + { + "attributes":{ + "POSITION":8121, + "NORMAL":8122, + "TEXCOORD_0":8123 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.6940", + "primitives":[ + { + "attributes":{ + "POSITION":8124, + "NORMAL":8125, + "TEXCOORD_0":8126 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.5713", + "primitives":[ + { + "attributes":{ + "POSITION":8127, + "NORMAL":8128 + }, + "indices":1385, + "material":0 + } + ] + }, + { + "name":"Mesh.8733", + "primitives":[ + { + "attributes":{ + "POSITION":8129, + "NORMAL":8130 + }, + "indices":8131, + "material":3 + } + ] + }, + { + "name":"Mesh.1263", + "primitives":[ + { + "attributes":{ + "POSITION":8132, + "NORMAL":8133, + "TEXCOORD_0":8134 + }, + "indices":8135, + "material":15 + } + ] + }, + { + "name":"Mesh.374", + "primitives":[ + { + "attributes":{ + "POSITION":8136, + "NORMAL":8137, + "TEXCOORD_0":8138 + }, + "indices":7387, + "material":0 + } + ] + }, + { + "name":"Mesh.6839", + "primitives":[ + { + "attributes":{ + "POSITION":8139, + "NORMAL":8140, + "TEXCOORD_0":8141 + }, + "indices":7861, + "material":0 + } + ] + }, + { + "name":"Mesh.2423", + "primitives":[ + { + "attributes":{ + "POSITION":8142, + "NORMAL":8143, + "TEXCOORD_0":8144 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.177", + "primitives":[ + { + "attributes":{ + "POSITION":8145, + "NORMAL":8146, + "TEXCOORD_0":8147 + }, + "indices":3646, + "material":0 + } + ] + }, + { + "name":"Mesh.9170", + "primitives":[ + { + "attributes":{ + "POSITION":8148, + "NORMAL":8149, + "TEXCOORD_0":8150 + }, + "indices":3382, + "material":7 + } + ] + }, + { + "name":"Mesh.1944", + "primitives":[ + { + "attributes":{ + "POSITION":8151, + "NORMAL":8152 + }, + "indices":386, + "material":0 + } + ] + }, + { + "name":"Mesh.850", + "primitives":[ + { + "attributes":{ + "POSITION":8153, + "NORMAL":8154, + "TEXCOORD_0":8155 + }, + "indices":8156, + "material":0 + } + ] + }, + { + "name":"Mesh.8711", + "primitives":[ + { + "attributes":{ + "POSITION":8157, + "NORMAL":8158 + }, + "indices":8159, + "material":3 + } + ] + }, + { + "name":"Mesh.5609", + "primitives":[ + { + "attributes":{ + "POSITION":8160, + "NORMAL":8161, + "TEXCOORD_0":8162 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7826", + "primitives":[ + { + "attributes":{ + "POSITION":8163, + "NORMAL":8164 + }, + "indices":8165, + "material":3 + } + ] + }, + { + "name":"Mesh.6169", + "primitives":[ + { + "attributes":{ + "POSITION":8166, + "NORMAL":8167, + "TEXCOORD_0":8168 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.8918", + "primitives":[ + { + "attributes":{ + "POSITION":8169, + "NORMAL":8170, + "TEXCOORD_0":8171 + }, + "indices":247, + "material":7 + } + ] + }, + { + "name":"Mesh.890", + "primitives":[ + { + "attributes":{ + "POSITION":8172, + "NORMAL":8173, + "TEXCOORD_0":8174 + }, + "indices":8175, + "material":0 + } + ] + }, + { + "name":"Mesh.6808", + "primitives":[ + { + "attributes":{ + "POSITION":8176, + "NORMAL":8177, + "TEXCOORD_0":8178 + }, + "indices":8179, + "material":0 + } + ] + }, + { + "name":"Mesh.4875", + "primitives":[ + { + "attributes":{ + "POSITION":8180, + "NORMAL":8181, + "TEXCOORD_0":8182 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.396", + "primitives":[ + { + "attributes":{ + "POSITION":8183, + "NORMAL":8184, + "TEXCOORD_0":8185 + }, + "indices":8186, + "material":0 + } + ] + }, + { + "name":"Mesh.5211", + "primitives":[ + { + "attributes":{ + "POSITION":8187, + "NORMAL":8188, + "TEXCOORD_0":8189 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1938", + "primitives":[ + { + "attributes":{ + "POSITION":8190, + "NORMAL":8191 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.2720", + "primitives":[ + { + "attributes":{ + "POSITION":8192, + "NORMAL":8193, + "TEXCOORD_0":8194 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.6895", + "primitives":[ + { + "attributes":{ + "POSITION":8195, + "NORMAL":8196, + "TEXCOORD_0":8197 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.1851", + "primitives":[ + { + "attributes":{ + "POSITION":8198, + "NORMAL":8199 + }, + "indices":386, + "material":0 + } + ] + }, + { + "name":"Mesh.2308", + "primitives":[ + { + "attributes":{ + "POSITION":8200, + "NORMAL":8201, + "TEXCOORD_0":8202 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8172", + "primitives":[ + { + "attributes":{ + "POSITION":8203, + "NORMAL":8204 + }, + "indices":8205, + "material":3 + } + ] + }, + { + "name":"Mesh.7464", + "primitives":[ + { + "attributes":{ + "POSITION":8206, + "NORMAL":8207 + }, + "indices":8208, + "material":3 + } + ] + }, + { + "name":"Mesh.7905", + "primitives":[ + { + "attributes":{ + "POSITION":8209, + "NORMAL":8210 + }, + "indices":8211, + "material":3 + } + ] + }, + { + "name":"Mesh.2106", + "primitives":[ + { + "attributes":{ + "POSITION":8212, + "NORMAL":8213, + "TEXCOORD_0":8214 + }, + "indices":8215, + "material":3 + } + ] + }, + { + "name":"Mesh.6861", + "primitives":[ + { + "attributes":{ + "POSITION":8216, + "NORMAL":8217, + "TEXCOORD_0":8218 + }, + "indices":2708, + "material":3 + } + ] + }, + { + "name":"Mesh.7558", + "primitives":[ + { + "attributes":{ + "POSITION":8219, + "NORMAL":8220 + }, + "indices":7642, + "material":3 + } + ] + }, + { + "name":"Mesh.8030", + "primitives":[ + { + "attributes":{ + "POSITION":8221, + "NORMAL":8222, + "TEXCOORD_0":8223 + }, + "indices":8224, + "material":0 + } + ] + }, + { + "name":"Mesh.5140", + "primitives":[ + { + "attributes":{ + "POSITION":8225, + "NORMAL":8226, + "TEXCOORD_0":8227 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8720", + "primitives":[ + { + "attributes":{ + "POSITION":8228, + "NORMAL":8229 + }, + "indices":3849, + "material":3 + } + ] + }, + { + "name":"Mesh.3047", + "primitives":[ + { + "attributes":{ + "POSITION":8230, + "NORMAL":8231, + "TEXCOORD_0":8232 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6626", + "primitives":[ + { + "attributes":{ + "POSITION":8233, + "NORMAL":8234 + }, + "indices":775, + "material":0 + } + ] + }, + { + "name":"Mesh.8293", + "primitives":[ + { + "attributes":{ + "POSITION":8235, + "NORMAL":8236 + }, + "indices":5835, + "material":3 + } + ] + }, + { + "name":"Mesh.7984", + "primitives":[ + { + "attributes":{ + "POSITION":8237, + "NORMAL":8238, + "TEXCOORD_0":8239 + }, + "indices":1829, + "material":0 + } + ] + }, + { + "name":"Mesh.6747", + "primitives":[ + { + "attributes":{ + "POSITION":8240, + "NORMAL":8241 + }, + "indices":6064, + "material":0 + } + ] + }, + { + "name":"Mesh.8397", + "primitives":[ + { + "attributes":{ + "POSITION":8242, + "NORMAL":8243 + }, + "indices":1482, + "material":3 + } + ] + }, + { + "name":"Mesh.7447", + "primitives":[ + { + "attributes":{ + "POSITION":8244, + "NORMAL":8245, + "TEXCOORD_0":8246 + }, + "indices":7745, + "material":7 + } + ] + }, + { + "name":"Mesh.6339", + "primitives":[ + { + "attributes":{ + "POSITION":8247, + "NORMAL":8248 + }, + "indices":1962, + "material":1 + } + ] + }, + { + "name":"Mesh.6811", + "primitives":[ + { + "attributes":{ + "POSITION":8249, + "NORMAL":8250, + "TEXCOORD_0":8251 + }, + "indices":4270, + "material":0 + } + ] + }, + { + "name":"Mesh.5725", + "primitives":[ + { + "attributes":{ + "POSITION":8252, + "NORMAL":8253 + }, + "indices":8254, + "material":0 + } + ] + }, + { + "name":"Mesh.1756", + "primitives":[ + { + "attributes":{ + "POSITION":8255, + "NORMAL":8256, + "TEXCOORD_0":8257 + }, + "indices":34, + "material":48 + } + ] + }, + { + "name":"Mesh.1124", + "primitives":[ + { + "attributes":{ + "POSITION":8258, + "NORMAL":8259, + "TEXCOORD_0":8260 + }, + "indices":8261, + "material":0 + } + ] + }, + { + "name":"Mesh.2894", + "primitives":[ + { + "attributes":{ + "POSITION":8262, + "NORMAL":8263 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.799", + "primitives":[ + { + "attributes":{ + "POSITION":8264, + "NORMAL":8265, + "TEXCOORD_0":8266 + }, + "indices":121, + "material":0 + } + ] + }, + { + "name":"Mesh.2547", + "primitives":[ + { + "attributes":{ + "POSITION":8267, + "NORMAL":8268, + "TEXCOORD_0":8269 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.7999", + "primitives":[ + { + "attributes":{ + "POSITION":8270, + "NORMAL":8271, + "TEXCOORD_0":8272 + }, + "indices":5807, + "material":3 + } + ] + }, + { + "name":"Mesh.6852", + "primitives":[ + { + "attributes":{ + "POSITION":8273, + "NORMAL":8274, + "TEXCOORD_0":8275 + }, + "indices":7861, + "material":0 + } + ] + }, + { + "name":"Mesh.5581", + "primitives":[ + { + "attributes":{ + "POSITION":8276, + "NORMAL":8277, + "TEXCOORD_0":8278 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6922", + "primitives":[ + { + "attributes":{ + "POSITION":8279, + "NORMAL":8280, + "TEXCOORD_0":8281 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.5196", + "primitives":[ + { + "attributes":{ + "POSITION":8282, + "NORMAL":8283, + "TEXCOORD_0":8284 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1981", + "primitives":[ + { + "attributes":{ + "POSITION":8285, + "NORMAL":8286, + "TEXCOORD_0":8287 + }, + "indices":8288, + "material":0 + } + ] + }, + { + "name":"Mesh.6761", + "primitives":[ + { + "attributes":{ + "POSITION":8289, + "NORMAL":8290 + }, + "indices":6550, + "material":0 + } + ] + }, + { + "name":"Mesh.2324", + "primitives":[ + { + "attributes":{ + "POSITION":8291, + "NORMAL":8292, + "TEXCOORD_0":8293 + }, + "indices":8294, + "material":0 + } + ] + }, + { + "name":"Mesh.6126", + "primitives":[ + { + "attributes":{ + "POSITION":8295, + "NORMAL":8296, + "TEXCOORD_0":8297 + }, + "indices":2118, + "material":12 + } + ] + }, + { + "name":"Mesh.2763", + "primitives":[ + { + "attributes":{ + "POSITION":8298, + "NORMAL":8299, + "TEXCOORD_0":8300 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.6780", + "primitives":[ + { + "attributes":{ + "POSITION":8301, + "NORMAL":8302 + }, + "indices":7468, + "material":0 + } + ] + }, + { + "name":"Mesh.7601", + "primitives":[ + { + "attributes":{ + "POSITION":8303, + "NORMAL":8304 + }, + "indices":5413, + "material":3 + } + ] + }, + { + "name":"Mesh.7928", + "primitives":[ + { + "attributes":{ + "POSITION":8305, + "NORMAL":8306 + }, + "indices":8307, + "material":3 + } + ] + }, + { + "name":"Mesh.5223", + "primitives":[ + { + "attributes":{ + "POSITION":8308, + "NORMAL":8309, + "TEXCOORD_0":8310 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.611", + "primitives":[ + { + "attributes":{ + "POSITION":8311, + "NORMAL":8312, + "TEXCOORD_0":8313 + }, + "indices":8314, + "material":3 + } + ] + }, + { + "name":"Mesh.7145", + "primitives":[ + { + "attributes":{ + "POSITION":8315, + "NORMAL":8316, + "TEXCOORD_0":8317 + }, + "indices":8318, + "material":7 + } + ] + }, + { + "name":"Mesh.1614", + "primitives":[ + { + "attributes":{ + "POSITION":8319, + "NORMAL":8320, + "TEXCOORD_0":8321 + }, + "indices":8322, + "material":52 + } + ] + }, + { + "name":"Mesh.6058", + "primitives":[ + { + "attributes":{ + "POSITION":8323, + "NORMAL":8324, + "TEXCOORD_0":8325 + }, + "indices":615, + "material":20 + } + ] + }, + { + "name":"Mesh.5323", + "primitives":[ + { + "attributes":{ + "POSITION":8326, + "NORMAL":8327, + "TEXCOORD_0":8328 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1950", + "primitives":[ + { + "attributes":{ + "POSITION":8329, + "NORMAL":8330 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.976", + "primitives":[ + { + "attributes":{ + "POSITION":8331, + "NORMAL":8332, + "TEXCOORD_0":8333 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.6095", + "primitives":[ + { + "attributes":{ + "POSITION":8334, + "NORMAL":8335, + "TEXCOORD_0":8336 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.541", + "primitives":[ + { + "attributes":{ + "POSITION":8337, + "NORMAL":8338, + "TEXCOORD_0":8339 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2848", + "primitives":[ + { + "attributes":{ + "POSITION":8340, + "NORMAL":8341 + }, + "indices":2224, + "material":1 + } + ] + }, + { + "name":"Mesh.7243", + "primitives":[ + { + "attributes":{ + "POSITION":8342, + "NORMAL":8343, + "TEXCOORD_0":8344 + }, + "indices":8345, + "material":7 + } + ] + }, + { + "name":"Mesh.8042", + "primitives":[ + { + "attributes":{ + "POSITION":8346, + "NORMAL":8347, + "TEXCOORD_0":8348 + }, + "indices":1829, + "material":0 + } + ] + }, + { + "name":"Mesh.8687", + "primitives":[ + { + "attributes":{ + "POSITION":8349, + "NORMAL":8350 + }, + "indices":4154, + "material":3 + } + ] + }, + { + "name":"Mesh.2284", + "primitives":[ + { + "attributes":{ + "POSITION":8351, + "NORMAL":8352, + "TEXCOORD_0":8353 + }, + "indices":7383, + "material":0 + } + ] + }, + { + "name":"Mesh.5624", + "primitives":[ + { + "attributes":{ + "POSITION":8354, + "NORMAL":8355, + "TEXCOORD_0":8356 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5001", + "primitives":[ + { + "attributes":{ + "POSITION":8357, + "NORMAL":8358, + "TEXCOORD_0":8359 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8955", + "primitives":[ + { + "attributes":{ + "POSITION":8360, + "NORMAL":8361, + "TEXCOORD_0":8362 + }, + "indices":2311, + "material":7 + } + ] + }, + { + "name":"Mesh.7623", + "primitives":[ + { + "attributes":{ + "POSITION":8363, + "NORMAL":8364 + }, + "indices":711, + "material":3 + } + ] + }, + { + "name":"Mesh.7540", + "primitives":[ + { + "attributes":{ + "POSITION":8365, + "NORMAL":8366 + }, + "indices":571, + "material":3 + } + ] + }, + { + "name":"Mesh.6530", + "primitives":[ + { + "attributes":{ + "POSITION":8367, + "NORMAL":8368, + "TEXCOORD_0":8369 + }, + "indices":1868, + "material":0 + } + ] + }, + { + "name":"Mesh.8328", + "primitives":[ + { + "attributes":{ + "POSITION":8370, + "NORMAL":8371 + }, + "indices":8372, + "material":3 + } + ] + }, + { + "name":"Mesh.945", + "primitives":[ + { + "attributes":{ + "POSITION":8373, + "NORMAL":8374, + "TEXCOORD_0":8375 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.1768", + "primitives":[ + { + "attributes":{ + "POSITION":8376, + "NORMAL":8377, + "TEXCOORD_0":8378 + }, + "indices":8379, + "material":37 + } + ] + }, + { + "name":"Mesh.794", + "primitives":[ + { + "attributes":{ + "POSITION":8380, + "NORMAL":8381, + "TEXCOORD_0":8382 + }, + "indices":1392, + "material":0 + } + ] + }, + { + "name":"Mesh.5081", + "primitives":[ + { + "attributes":{ + "POSITION":8383, + "NORMAL":8384, + "TEXCOORD_0":8385 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5375", + "primitives":[ + { + "attributes":{ + "POSITION":8386, + "NORMAL":8387, + "TEXCOORD_0":8388 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6054", + "primitives":[ + { + "attributes":{ + "POSITION":8389, + "NORMAL":8390, + "TEXCOORD_0":8391 + }, + "indices":8392, + "material":12 + } + ] + }, + { + "name":"Mesh.047", + "primitives":[ + { + "attributes":{ + "POSITION":8393, + "NORMAL":8394, + "TEXCOORD_0":8395 + }, + "indices":7205, + "material":50 + } + ] + }, + { + "name":"Mesh.1657", + "primitives":[ + { + "attributes":{ + "POSITION":8396, + "NORMAL":8397, + "TEXCOORD_0":8398 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.137", + "primitives":[ + { + "attributes":{ + "POSITION":8399, + "NORMAL":8400, + "TEXCOORD_0":8401 + }, + "indices":8402, + "material":0 + } + ] + }, + { + "name":"Mesh.6752", + "primitives":[ + { + "attributes":{ + "POSITION":8403, + "NORMAL":8404 + }, + "indices":2295, + "material":0 + } + ] + }, + { + "name":"Mesh.1953", + "primitives":[ + { + "attributes":{ + "POSITION":8405, + "NORMAL":8406 + }, + "indices":2743, + "material":0 + } + ] + }, + { + "name":"Mesh.723", + "primitives":[ + { + "attributes":{ + "POSITION":8407, + "NORMAL":8408, + "TEXCOORD_0":8409 + }, + "indices":855, + "material":0 + } + ] + }, + { + "name":"Mesh.009", + "primitives":[ + { + "attributes":{ + "POSITION":8410, + "NORMAL":8411, + "TEXCOORD_0":8412 + }, + "indices":894, + "material":21 + } + ] + }, + { + "name":"Mesh.9062", + "primitives":[ + { + "attributes":{ + "POSITION":8413, + "NORMAL":8414, + "TEXCOORD_0":8415 + }, + "indices":3382, + "material":7 + } + ] + }, + { + "name":"Mesh.2450", + "primitives":[ + { + "attributes":{ + "POSITION":8416, + "NORMAL":8417, + "TEXCOORD_0":8418 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.6999", + "primitives":[ + { + "attributes":{ + "POSITION":8419, + "NORMAL":8420, + "TEXCOORD_0":8421 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.6309", + "primitives":[ + { + "attributes":{ + "POSITION":8422, + "NORMAL":8423 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.1093", + "primitives":[ + { + "attributes":{ + "POSITION":8424, + "NORMAL":8425, + "TEXCOORD_0":8426 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.5619", + "primitives":[ + { + "attributes":{ + "POSITION":8427, + "NORMAL":8428, + "TEXCOORD_0":8429 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6681", + "primitives":[ + { + "attributes":{ + "POSITION":8430, + "NORMAL":8431 + }, + "indices":8432, + "material":0 + } + ] + }, + { + "name":"Mesh.2410", + "primitives":[ + { + "attributes":{ + "POSITION":8433, + "NORMAL":8434, + "TEXCOORD_0":8435 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.7829", + "primitives":[ + { + "attributes":{ + "POSITION":8436, + "NORMAL":8437 + }, + "indices":8438, + "material":3 + } + ] + }, + { + "name":"Mesh.6107", + "primitives":[ + { + "attributes":{ + "POSITION":8439, + "NORMAL":8440, + "TEXCOORD_0":8441 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.6570", + "primitives":[ + { + "attributes":{ + "POSITION":8442, + "NORMAL":8443 + }, + "indices":8254, + "material":0 + } + ] + }, + { + "name":"Mesh.8341", + "primitives":[ + { + "attributes":{ + "POSITION":8444, + "NORMAL":8445 + }, + "indices":4527, + "material":3 + } + ] + }, + { + "name":"Mesh.8849", + "primitives":[ + { + "attributes":{ + "POSITION":8446, + "NORMAL":8447 + }, + "indices":8448, + "material":3 + } + ] + }, + { + "name":"Mesh.7113", + "primitives":[ + { + "attributes":{ + "POSITION":8449, + "NORMAL":8450, + "TEXCOORD_0":8451 + }, + "indices":8452, + "material":7 + } + ] + }, + { + "name":"Mesh.8798", + "primitives":[ + { + "attributes":{ + "POSITION":8453, + "NORMAL":8454 + }, + "indices":1686, + "material":3 + } + ] + }, + { + "name":"Mesh.7431", + "primitives":[ + { + "attributes":{ + "POSITION":8455, + "NORMAL":8456, + "TEXCOORD_0":8457 + }, + "indices":8458, + "material":7 + } + ] + }, + { + "name":"Mesh.079", + "primitives":[ + { + "attributes":{ + "POSITION":8459, + "NORMAL":8460 + }, + "indices":6848, + "material":4 + } + ] + }, + { + "name":"Mesh.8138", + "primitives":[ + { + "attributes":{ + "POSITION":8461, + "NORMAL":8462 + }, + "indices":3050, + "material":3 + } + ] + }, + { + "name":"Mesh.5257", + "primitives":[ + { + "attributes":{ + "POSITION":8463, + "NORMAL":8464, + "TEXCOORD_0":8465 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2067", + "primitives":[ + { + "attributes":{ + "POSITION":8466, + "NORMAL":8467, + "TEXCOORD_0":8468 + }, + "indices":3028, + "material":0 + } + ] + }, + { + "name":"Mesh.2531", + "primitives":[ + { + "attributes":{ + "POSITION":8469, + "NORMAL":8470, + "TEXCOORD_0":8471 + }, + "indices":26, + "material":4 + } + ] + }, + { + "name":"Mesh.989", + "primitives":[ + { + "attributes":{ + "POSITION":8472, + "NORMAL":8473, + "TEXCOORD_0":8474 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.6539", + "primitives":[ + { + "attributes":{ + "POSITION":8475, + "NORMAL":8476 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.7042", + "primitives":[ + { + "attributes":{ + "POSITION":8477, + "NORMAL":8478 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.8814", + "primitives":[ + { + "attributes":{ + "POSITION":8479, + "NORMAL":8480 + }, + "indices":1663, + "material":3 + } + ] + }, + { + "name":"Mesh.5565", + "primitives":[ + { + "attributes":{ + "POSITION":8481, + "NORMAL":8482, + "TEXCOORD_0":8483 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7832", + "primitives":[ + { + "attributes":{ + "POSITION":8484, + "NORMAL":8485 + }, + "indices":8486, + "material":3 + } + ] + }, + { + "name":"Mesh.8159", + "primitives":[ + { + "attributes":{ + "POSITION":8487, + "NORMAL":8488 + }, + "indices":8159, + "material":3 + } + ] + }, + { + "name":"Mesh.8937", + "primitives":[ + { + "attributes":{ + "POSITION":8489, + "NORMAL":8490, + "TEXCOORD_0":8491 + }, + "indices":971, + "material":7 + } + ] + }, + { + "name":"Mesh.9183", + "primitives":[ + { + "attributes":{ + "POSITION":8492, + "NORMAL":8493, + "TEXCOORD_0":8494 + }, + "indices":8495, + "material":7 + } + ] + }, + { + "name":"Mesh.8976", + "primitives":[ + { + "attributes":{ + "POSITION":8496, + "NORMAL":8497, + "TEXCOORD_0":8498 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.1722", + "primitives":[ + { + "attributes":{ + "POSITION":8499, + "NORMAL":8500, + "TEXCOORD_0":8501 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.7872", + "primitives":[ + { + "attributes":{ + "POSITION":8502, + "NORMAL":8503 + }, + "indices":8504, + "material":3 + } + ] + }, + { + "name":"Mesh.8754", + "primitives":[ + { + "attributes":{ + "POSITION":8505, + "NORMAL":8506 + }, + "indices":8507, + "material":3 + } + ] + }, + { + "name":"Mesh.9133", + "primitives":[ + { + "attributes":{ + "POSITION":8508, + "NORMAL":8509, + "TEXCOORD_0":8510 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.7122", + "primitives":[ + { + "attributes":{ + "POSITION":8511, + "NORMAL":8512, + "TEXCOORD_0":8513 + }, + "indices":8514, + "material":7 + } + ] + }, + { + "name":"Mesh.9034", + "primitives":[ + { + "attributes":{ + "POSITION":8515, + "NORMAL":8516, + "TEXCOORD_0":8517 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.215", + "primitives":[ + { + "attributes":{ + "POSITION":8518, + "NORMAL":8519, + "TEXCOORD_0":8520 + }, + "indices":8521, + "material":3 + } + ] + }, + { + "name":"Mesh.5167", + "primitives":[ + { + "attributes":{ + "POSITION":8522, + "NORMAL":8523, + "TEXCOORD_0":8524 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5429", + "primitives":[ + { + "attributes":{ + "POSITION":8525, + "NORMAL":8526, + "TEXCOORD_0":8527 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1065", + "primitives":[ + { + "attributes":{ + "POSITION":8528, + "NORMAL":8529, + "TEXCOORD_0":8530 + }, + "indices":296, + "material":4 + } + ] + }, + { + "name":"Mesh.8632", + "primitives":[ + { + "attributes":{ + "POSITION":8531, + "NORMAL":8532 + }, + "indices":2095, + "material":3 + } + ] + }, + { + "name":"Mesh.5712", + "primitives":[ + { + "attributes":{ + "POSITION":8533, + "NORMAL":8534 + }, + "indices":1458, + "material":0 + } + ] + }, + { + "name":"Mesh.775", + "primitives":[ + { + "attributes":{ + "POSITION":8535, + "NORMAL":8536, + "TEXCOORD_0":8537 + }, + "indices":1878, + "material":0 + } + ] + }, + { + "name":"Mesh.373", + "primitives":[ + { + "attributes":{ + "POSITION":8538, + "NORMAL":8539, + "TEXCOORD_0":8540 + }, + "indices":3972, + "material":0 + } + ] + }, + { + "name":"Mesh.6838", + "primitives":[ + { + "attributes":{ + "POSITION":8541, + "NORMAL":8542, + "TEXCOORD_0":8543 + }, + "indices":4270, + "material":0 + } + ] + }, + { + "name":"Mesh.2422", + "primitives":[ + { + "attributes":{ + "POSITION":8544, + "NORMAL":8545, + "TEXCOORD_0":8546 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.176", + "primitives":[ + { + "attributes":{ + "POSITION":8547, + "NORMAL":8548, + "TEXCOORD_0":8549 + }, + "indices":8550, + "material":0 + } + ] + }, + { + "name":"Mesh.1219", + "primitives":[ + { + "attributes":{ + "POSITION":8551, + "NORMAL":8552 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.9160", + "primitives":[ + { + "attributes":{ + "POSITION":8553, + "NORMAL":8554, + "TEXCOORD_0":8555 + }, + "indices":1208, + "material":7 + } + ] + }, + { + "name":"Mesh.8482", + "primitives":[ + { + "attributes":{ + "POSITION":8556, + "NORMAL":8557 + }, + "indices":8558, + "material":3 + } + ] + }, + { + "name":"Mesh.849", + "primitives":[ + { + "attributes":{ + "POSITION":8559, + "NORMAL":8560, + "TEXCOORD_0":8561 + }, + "indices":3513, + "material":0 + } + ] + }, + { + "name":"Mesh.5015", + "primitives":[ + { + "attributes":{ + "POSITION":8562, + "NORMAL":8563, + "TEXCOORD_0":8564 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.889", + "primitives":[ + { + "attributes":{ + "POSITION":8565, + "NORMAL":8566, + "TEXCOORD_0":8567 + }, + "indices":8568, + "material":0 + } + ] + }, + { + "name":"Mesh.7443", + "primitives":[ + { + "attributes":{ + "POSITION":8569, + "NORMAL":8570, + "TEXCOORD_0":8571 + }, + "indices":5647, + "material":7 + } + ] + }, + { + "name":"Mesh.6807", + "primitives":[ + { + "attributes":{ + "POSITION":8572, + "NORMAL":8573, + "TEXCOORD_0":8574 + }, + "indices":8575, + "material":3 + } + ] + }, + { + "name":"Mesh.5210", + "primitives":[ + { + "attributes":{ + "POSITION":8576, + "NORMAL":8577, + "TEXCOORD_0":8578 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7668", + "primitives":[ + { + "attributes":{ + "POSITION":8579, + "NORMAL":8580 + }, + "indices":5406, + "material":3 + } + ] + }, + { + "name":"Mesh.1937", + "primitives":[ + { + "attributes":{ + "POSITION":8581, + "NORMAL":8582 + }, + "indices":1871, + "material":22 + } + ] + }, + { + "name":"Mesh.8555", + "primitives":[ + { + "attributes":{ + "POSITION":8583, + "NORMAL":8584 + }, + "indices":8585, + "material":3 + } + ] + }, + { + "name":"Mesh.8204", + "primitives":[ + { + "attributes":{ + "POSITION":8586, + "NORMAL":8587 + }, + "indices":3903, + "material":3 + } + ] + }, + { + "name":"Mesh.446", + "primitives":[ + { + "attributes":{ + "POSITION":8588, + "NORMAL":8589 + }, + "indices":1860, + "material":3 + } + ] + }, + { + "name":"Mesh.954", + "primitives":[ + { + "attributes":{ + "POSITION":8590, + "NORMAL":8591, + "TEXCOORD_0":8592 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.6370", + "primitives":[ + { + "attributes":{ + "POSITION":8593, + "NORMAL":8594 + }, + "indices":8595, + "material":0 + } + ] + }, + { + "name":"Mesh.6586", + "primitives":[ + { + "attributes":{ + "POSITION":8596, + "NORMAL":8597 + }, + "indices":735, + "material":0 + } + ] + }, + { + "name":"Mesh.7557", + "primitives":[ + { + "attributes":{ + "POSITION":8598, + "NORMAL":8599 + }, + "indices":8600, + "material":3 + } + ] + }, + { + "name":"Mesh.8029", + "primitives":[ + { + "attributes":{ + "POSITION":8601, + "NORMAL":8602, + "TEXCOORD_0":8603 + }, + "indices":8604, + "material":0 + } + ] + }, + { + "name":"Mesh.7884", + "primitives":[ + { + "attributes":{ + "POSITION":8605, + "NORMAL":8606 + }, + "indices":8607, + "material":3 + } + ] + }, + { + "name":"Mesh.5139", + "primitives":[ + { + "attributes":{ + "POSITION":8608, + "NORMAL":8609, + "TEXCOORD_0":8610 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8719", + "primitives":[ + { + "attributes":{ + "POSITION":8611, + "NORMAL":8612 + }, + "indices":6932, + "material":3 + } + ] + }, + { + "name":"Mesh.6625", + "primitives":[ + { + "attributes":{ + "POSITION":8613, + "NORMAL":8614 + }, + "indices":1104, + "material":0 + } + ] + }, + { + "name":"Mesh.8396", + "primitives":[ + { + "attributes":{ + "POSITION":8615, + "NORMAL":8616 + }, + "indices":243, + "material":3 + } + ] + }, + { + "name":"Mesh.7446", + "primitives":[ + { + "attributes":{ + "POSITION":8617, + "NORMAL":8618, + "TEXCOORD_0":8619 + }, + "indices":525, + "material":7 + } + ] + }, + { + "name":"Mesh.6338", + "primitives":[ + { + "attributes":{ + "POSITION":8620, + "NORMAL":8621 + }, + "indices":1962, + "material":1 + } + ] + }, + { + "name":"Mesh.6810", + "primitives":[ + { + "attributes":{ + "POSITION":8622, + "NORMAL":8623, + "TEXCOORD_0":8624 + }, + "indices":4270, + "material":0 + } + ] + }, + { + "name":"Mesh.1906", + "primitives":[ + { + "attributes":{ + "POSITION":8625, + "NORMAL":8626 + }, + "indices":2248, + "material":0 + } + ] + }, + { + "name":"Mesh.5724", + "primitives":[ + { + "attributes":{ + "POSITION":8627, + "NORMAL":8628 + }, + "indices":8629, + "material":0 + } + ] + }, + { + "name":"Mesh.8958", + "primitives":[ + { + "attributes":{ + "POSITION":8630, + "NORMAL":8631, + "TEXCOORD_0":8632 + }, + "indices":2311, + "material":7 + } + ] + }, + { + "name":"Mesh.1755", + "primitives":[ + { + "attributes":{ + "POSITION":8633, + "NORMAL":8634, + "TEXCOORD_0":8635 + }, + "indices":8636, + "material":48 + } + ] + }, + { + "name":"Mesh.8643", + "primitives":[ + { + "attributes":{ + "POSITION":8637, + "NORMAL":8638 + }, + "indices":5673, + "material":3 + } + ] + }, + { + "name":"Mesh.5313", + "primitives":[ + { + "attributes":{ + "POSITION":8639, + "NORMAL":8640, + "TEXCOORD_0":8641 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6278", + "primitives":[ + { + "attributes":{ + "POSITION":8642, + "NORMAL":8643, + "TEXCOORD_0":8644 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.2293", + "primitives":[ + { + "attributes":{ + "POSITION":8645, + "NORMAL":8646, + "TEXCOORD_0":8647 + }, + "indices":1379, + "material":0 + } + ] + }, + { + "name":"Mesh.2546", + "primitives":[ + { + "attributes":{ + "POSITION":8648, + "NORMAL":8649, + "TEXCOORD_0":8650 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.5411", + "primitives":[ + { + "attributes":{ + "POSITION":8651, + "NORMAL":8652, + "TEXCOORD_0":8653 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2984", + "primitives":[ + { + "attributes":{ + "POSITION":8654, + "NORMAL":8655, + "TEXCOORD_0":8656 + }, + "indices":8657, + "material":7 + } + ] + }, + { + "name":"Mesh.5580", + "primitives":[ + { + "attributes":{ + "POSITION":8658, + "NORMAL":8659, + "TEXCOORD_0":8660 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1980", + "primitives":[ + { + "attributes":{ + "POSITION":8661, + "NORMAL":8662, + "TEXCOORD_0":8663 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2323", + "primitives":[ + { + "attributes":{ + "POSITION":8664, + "NORMAL":8665, + "TEXCOORD_0":8666 + }, + "indices":8667, + "material":0 + } + ] + }, + { + "name":"Mesh.2762", + "primitives":[ + { + "attributes":{ + "POSITION":8668, + "NORMAL":8669, + "TEXCOORD_0":8670 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.6779", + "primitives":[ + { + "attributes":{ + "POSITION":8671, + "NORMAL":8672 + }, + "indices":1043, + "material":0 + } + ] + }, + { + "name":"Mesh.7600", + "primitives":[ + { + "attributes":{ + "POSITION":8673, + "NORMAL":8674 + }, + "indices":4052, + "material":3 + } + ] + }, + { + "name":"Mesh.8998", + "primitives":[ + { + "attributes":{ + "POSITION":8675, + "NORMAL":8676, + "TEXCOORD_0":8677 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.7927", + "primitives":[ + { + "attributes":{ + "POSITION":8678, + "NORMAL":8679 + }, + "indices":8680, + "material":3 + } + ] + }, + { + "name":"Mesh.652", + "primitives":[ + { + "attributes":{ + "POSITION":8681, + "NORMAL":8682, + "TEXCOORD_0":8683 + }, + "indices":8684, + "material":0 + } + ] + }, + { + "name":"Mesh.2714", + "primitives":[ + { + "attributes":{ + "POSITION":8685, + "NORMAL":8686, + "TEXCOORD_0":8687 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.8722", + "primitives":[ + { + "attributes":{ + "POSITION":8688, + "NORMAL":8689 + }, + "indices":8690, + "material":3 + } + ] + }, + { + "name":"Mesh.6798", + "primitives":[ + { + "attributes":{ + "POSITION":8691, + "NORMAL":8692, + "TEXCOORD_0":8693 + }, + "indices":8694, + "material":0 + } + ] + }, + { + "name":"Mesh.6396", + "primitives":[ + { + "attributes":{ + "POSITION":8695, + "NORMAL":8696 + }, + "indices":8697, + "material":0 + } + ] + }, + { + "name":"Mesh.5222", + "primitives":[ + { + "attributes":{ + "POSITION":8698, + "NORMAL":8699, + "TEXCOORD_0":8700 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7489", + "primitives":[ + { + "attributes":{ + "POSITION":8701, + "NORMAL":8702 + }, + "indices":8703, + "material":3 + } + ] + }, + { + "name":"Mesh.057", + "primitives":[ + { + "attributes":{ + "POSITION":8704, + "NORMAL":8705 + }, + "indices":8706, + "material":39 + } + ] + }, + { + "name":"Mesh.7816", + "primitives":[ + { + "attributes":{ + "POSITION":8707, + "NORMAL":8708 + }, + "indices":8709, + "material":3 + } + ] + }, + { + "name":"Mesh.1949", + "primitives":[ + { + "attributes":{ + "POSITION":8710, + "NORMAL":8711 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.975", + "primitives":[ + { + "attributes":{ + "POSITION":8712, + "NORMAL":8713, + "TEXCOORD_0":8714 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.6094", + "primitives":[ + { + "attributes":{ + "POSITION":8715, + "NORMAL":8716, + "TEXCOORD_0":8717 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.7744", + "primitives":[ + { + "attributes":{ + "POSITION":8718, + "NORMAL":8719 + }, + "indices":8720, + "material":3 + } + ] + }, + { + "name":"Mesh.7242", + "primitives":[ + { + "attributes":{ + "POSITION":8721, + "NORMAL":8722, + "TEXCOORD_0":8723 + }, + "indices":8724, + "material":7 + } + ] + }, + { + "name":"Mesh.7569", + "primitives":[ + { + "attributes":{ + "POSITION":8725, + "NORMAL":8726 + }, + "indices":1063, + "material":3 + } + ] + }, + { + "name":"Mesh.8041", + "primitives":[ + { + "attributes":{ + "POSITION":8727, + "NORMAL":8728, + "TEXCOORD_0":8729 + }, + "indices":1864, + "material":0 + } + ] + }, + { + "name":"Mesh.5623", + "primitives":[ + { + "attributes":{ + "POSITION":8730, + "NORMAL":8731, + "TEXCOORD_0":8732 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8945", + "primitives":[ + { + "attributes":{ + "POSITION":8733, + "NORMAL":8734, + "TEXCOORD_0":8735 + }, + "indices":1307, + "material":7 + } + ] + }, + { + "name":"Mesh.956", + "primitives":[ + { + "attributes":{ + "POSITION":8736, + "NORMAL":8737, + "TEXCOORD_0":8738 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.8669", + "primitives":[ + { + "attributes":{ + "POSITION":8739, + "NORMAL":8740 + }, + "indices":6417, + "material":3 + } + ] + }, + { + "name":"Mesh.6304", + "primitives":[ + { + "attributes":{ + "POSITION":8741, + "NORMAL":8742 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.7130", + "primitives":[ + { + "attributes":{ + "POSITION":8743, + "NORMAL":8744, + "TEXCOORD_0":8745 + }, + "indices":8746, + "material":7 + } + ] + }, + { + "name":"Mesh.8105", + "primitives":[ + { + "attributes":{ + "POSITION":8747, + "NORMAL":8748 + }, + "indices":6304, + "material":3 + } + ] + }, + { + "name":"Mesh.7785", + "primitives":[ + { + "attributes":{ + "POSITION":8749, + "NORMAL":8750 + }, + "indices":8751, + "material":3 + } + ] + }, + { + "name":"Mesh.5446", + "primitives":[ + { + "attributes":{ + "POSITION":8752, + "NORMAL":8753, + "TEXCOORD_0":8754 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.944", + "primitives":[ + { + "attributes":{ + "POSITION":8755, + "NORMAL":8756, + "TEXCOORD_0":8757 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.1767", + "primitives":[ + { + "attributes":{ + "POSITION":8758, + "NORMAL":8759, + "TEXCOORD_0":8760 + }, + "indices":8761, + "material":37 + } + ] + }, + { + "name":"Mesh.5080", + "primitives":[ + { + "attributes":{ + "POSITION":8762, + "NORMAL":8763, + "TEXCOORD_0":8764 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1952", + "primitives":[ + { + "attributes":{ + "POSITION":8765, + "NORMAL":8766 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.8010", + "primitives":[ + { + "attributes":{ + "POSITION":8767, + "NORMAL":8768, + "TEXCOORD_0":8769 + }, + "indices":2286, + "material":3 + } + ] + }, + { + "name":"Mesh.1656", + "primitives":[ + { + "attributes":{ + "POSITION":8770, + "NORMAL":8771, + "TEXCOORD_0":8772 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.6751", + "primitives":[ + { + "attributes":{ + "POSITION":8773, + "NORMAL":8774 + }, + "indices":4074, + "material":0 + } + ] + }, + { + "name":"Mesh.7692", + "primitives":[ + { + "attributes":{ + "POSITION":8775, + "NORMAL":8776 + }, + "indices":8777, + "material":3 + } + ] + }, + { + "name":"Mesh.903", + "primitives":[ + { + "attributes":{ + "POSITION":8778, + "NORMAL":8779, + "TEXCOORD_0":8780 + }, + "indices":4568, + "material":0 + } + ] + }, + { + "name":"Mesh.074", + "primitives":[ + { + "attributes":{ + "POSITION":8781, + "NORMAL":8782, + "TEXCOORD_0":8783 + }, + "indices":5286, + "material":41 + } + ] + }, + { + "name":"Mesh.6348", + "primitives":[ + { + "attributes":{ + "POSITION":8784, + "NORMAL":8785, + "TEXCOORD_0":8786 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.722", + "primitives":[ + { + "attributes":{ + "POSITION":8787, + "NORMAL":8788, + "TEXCOORD_0":8789 + }, + "indices":2583, + "material":0 + } + ] + }, + { + "name":"Mesh.9061", + "primitives":[ + { + "attributes":{ + "POSITION":8790, + "NORMAL":8791, + "TEXCOORD_0":8792 + }, + "indices":1934, + "material":7 + } + ] + }, + { + "name":"Mesh.6998", + "primitives":[ + { + "attributes":{ + "POSITION":8793, + "NORMAL":8794 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.1092", + "primitives":[ + { + "attributes":{ + "POSITION":8795, + "NORMAL":8796, + "TEXCOORD_0":8797 + }, + "indices":140, + "material":0 + } + ] + }, + { + "name":"Mesh.5682", + "primitives":[ + { + "attributes":{ + "POSITION":8798, + "NORMAL":8799, + "TEXCOORD_0":8800 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5397", + "primitives":[ + { + "attributes":{ + "POSITION":8801, + "NORMAL":8802, + "TEXCOORD_0":8803 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6680", + "primitives":[ + { + "attributes":{ + "POSITION":8804, + "NORMAL":8805 + }, + "indices":4847, + "material":0 + } + ] + }, + { + "name":"Mesh.2409", + "primitives":[ + { + "attributes":{ + "POSITION":8806, + "NORMAL":8807, + "TEXCOORD_0":8808 + }, + "indices":4958, + "material":0 + } + ] + }, + { + "name":"Mesh.150", + "primitives":[ + { + "attributes":{ + "POSITION":8809, + "NORMAL":8810, + "TEXCOORD_0":8811 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7828", + "primitives":[ + { + "attributes":{ + "POSITION":8812, + "NORMAL":8813 + }, + "indices":8814, + "material":3 + } + ] + }, + { + "name":"Mesh.6106", + "primitives":[ + { + "attributes":{ + "POSITION":8815, + "NORMAL":8816, + "TEXCOORD_0":8817 + }, + "indices":187, + "material":5 + } + ] + }, + { + "name":"Mesh.6569", + "primitives":[ + { + "attributes":{ + "POSITION":8818, + "NORMAL":8819 + }, + "indices":8629, + "material":0 + } + ] + }, + { + "name":"Mesh.7648", + "primitives":[ + { + "attributes":{ + "POSITION":8820, + "NORMAL":8821 + }, + "indices":8822, + "material":3 + } + ] + }, + { + "name":"Mesh.2696", + "primitives":[ + { + "attributes":{ + "POSITION":8823, + "NORMAL":8824, + "TEXCOORD_0":8825 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.7333", + "primitives":[ + { + "attributes":{ + "POSITION":8826, + "NORMAL":8827, + "TEXCOORD_0":8828 + }, + "indices":8458, + "material":7 + } + ] + }, + { + "name":"Mesh.7112", + "primitives":[ + { + "attributes":{ + "POSITION":8829, + "NORMAL":8830, + "TEXCOORD_0":8831 + }, + "indices":8832, + "material":7 + } + ] + }, + { + "name":"Mesh.7430", + "primitives":[ + { + "attributes":{ + "POSITION":8833, + "NORMAL":8834, + "TEXCOORD_0":8835 + }, + "indices":3535, + "material":7 + } + ] + }, + { + "name":"Mesh.3942", + "primitives":[ + { + "attributes":{ + "POSITION":8836, + "NORMAL":8837, + "TEXCOORD_0":8838 + }, + "indices":7108, + "material":49 + } + ] + }, + { + "name":"Mesh.2066", + "primitives":[ + { + "attributes":{ + "POSITION":8839, + "NORMAL":8840, + "TEXCOORD_0":8841 + }, + "indices":3389, + "material":0 + } + ] + }, + { + "name":"Mesh.5524", + "primitives":[ + { + "attributes":{ + "POSITION":8842, + "NORMAL":8843, + "TEXCOORD_0":8844 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8495", + "primitives":[ + { + "attributes":{ + "POSITION":8845, + "NORMAL":8846 + }, + "indices":2590, + "material":3 + } + ] + }, + { + "name":"Mesh.2530", + "primitives":[ + { + "attributes":{ + "POSITION":8847, + "NORMAL":8848, + "TEXCOORD_0":8849 + }, + "indices":1595, + "material":4 + } + ] + }, + { + "name":"Mesh.6523", + "primitives":[ + { + "attributes":{ + "POSITION":8850, + "NORMAL":8851, + "TEXCOORD_0":8852 + }, + "indices":1372, + "material":0 + } + ] + }, + { + "name":"Mesh.6538", + "primitives":[ + { + "attributes":{ + "POSITION":8853, + "NORMAL":8854 + }, + "indices":102, + "material":0 + } + ] + }, + { + "name":"Mesh.7041", + "primitives":[ + { + "attributes":{ + "POSITION":8855, + "NORMAL":8856, + "TEXCOORD_0":8857 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.1121", + "primitives":[ + { + "attributes":{ + "POSITION":8858, + "NORMAL":8859, + "TEXCOORD_0":8860 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.5564", + "primitives":[ + { + "attributes":{ + "POSITION":8861, + "NORMAL":8862, + "TEXCOORD_0":8863 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7831", + "primitives":[ + { + "attributes":{ + "POSITION":8864, + "NORMAL":8865 + }, + "indices":8866, + "material":3 + } + ] + }, + { + "name":"Mesh.1022", + "primitives":[ + { + "attributes":{ + "POSITION":8867, + "NORMAL":8868, + "TEXCOORD_0":8869 + }, + "indices":3178, + "material":0 + } + ] + }, + { + "name":"Mesh.6251", + "primitives":[ + { + "attributes":{ + "POSITION":8870, + "NORMAL":8871, + "TEXCOORD_0":8872 + }, + "indices":615, + "material":20 + } + ] + }, + { + "name":"Mesh.8158", + "primitives":[ + { + "attributes":{ + "POSITION":8873, + "NORMAL":8874 + }, + "indices":8875, + "material":3 + } + ] + }, + { + "name":"Mesh.8651", + "primitives":[ + { + "attributes":{ + "POSITION":8876, + "NORMAL":8877 + }, + "indices":2433, + "material":3 + } + ] + }, + { + "name":"Mesh.8801", + "primitives":[ + { + "attributes":{ + "POSITION":8878, + "NORMAL":8879 + }, + "indices":7350, + "material":3 + } + ] + }, + { + "name":"Mesh.5746", + "primitives":[ + { + "attributes":{ + "POSITION":8880, + "NORMAL":8881 + }, + "indices":6621, + "material":0 + } + ] + }, + { + "name":"Mesh.6109", + "primitives":[ + { + "attributes":{ + "POSITION":8882, + "NORMAL":8883, + "TEXCOORD_0":8884 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.7871", + "primitives":[ + { + "attributes":{ + "POSITION":8885, + "NORMAL":8886 + }, + "indices":8887, + "material":3 + } + ] + }, + { + "name":"Mesh.8085", + "primitives":[ + { + "attributes":{ + "POSITION":8888, + "NORMAL":8889 + }, + "indices":5289, + "material":3 + } + ] + }, + { + "name":"Mesh.2786", + "primitives":[ + { + "attributes":{ + "POSITION":8890, + "NORMAL":8891, + "TEXCOORD_0":8892 + }, + "indices":140, + "material":0 + } + ] + }, + { + "name":"Mesh.5166", + "primitives":[ + { + "attributes":{ + "POSITION":8893, + "NORMAL":8894, + "TEXCOORD_0":8895 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1064", + "primitives":[ + { + "attributes":{ + "POSITION":8896, + "NORMAL":8897, + "TEXCOORD_0":8898 + }, + "indices":26, + "material":4 + } + ] + }, + { + "name":"Mesh.2635", + "primitives":[ + { + "attributes":{ + "POSITION":8899, + "NORMAL":8900, + "TEXCOORD_0":8901 + }, + "indices":5756, + "material":0 + } + ] + }, + { + "name":"Mesh.372", + "primitives":[ + { + "attributes":{ + "POSITION":8902, + "NORMAL":8903, + "TEXCOORD_0":8904 + }, + "indices":639, + "material":0 + } + ] + }, + { + "name":"Mesh.6837", + "primitives":[ + { + "attributes":{ + "POSITION":8905, + "NORMAL":8906, + "TEXCOORD_0":8907 + }, + "indices":2016, + "material":3 + } + ] + }, + { + "name":"Mesh.8127", + "primitives":[ + { + "attributes":{ + "POSITION":8908, + "NORMAL":8909 + }, + "indices":8910, + "material":3 + } + ] + }, + { + "name":"Mesh.2421", + "primitives":[ + { + "attributes":{ + "POSITION":8911, + "NORMAL":8912, + "TEXCOORD_0":8913 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.8598", + "primitives":[ + { + "attributes":{ + "POSITION":8914, + "NORMAL":8915 + }, + "indices":8916, + "material":3 + } + ] + }, + { + "name":"Mesh.9168", + "primitives":[ + { + "attributes":{ + "POSITION":8917, + "NORMAL":8918, + "TEXCOORD_0":8919 + }, + "indices":525, + "material":7 + } + ] + }, + { + "name":"Mesh.848", + "primitives":[ + { + "attributes":{ + "POSITION":8920, + "NORMAL":8921, + "TEXCOORD_0":8922 + }, + "indices":554, + "material":0 + } + ] + }, + { + "name":"Mesh.8547", + "primitives":[ + { + "attributes":{ + "POSITION":8923, + "NORMAL":8924 + }, + "indices":8925, + "material":3 + } + ] + }, + { + "name":"Mesh.7696", + "primitives":[ + { + "attributes":{ + "POSITION":8926, + "NORMAL":8927 + }, + "indices":8928, + "material":3 + } + ] + }, + { + "name":"Mesh.421", + "primitives":[ + { + "attributes":{ + "POSITION":8929, + "NORMAL":8930 + }, + "indices":2743, + "material":0 + } + ] + }, + { + "name":"Mesh.7124", + "primitives":[ + { + "attributes":{ + "POSITION":8931, + "NORMAL":8932, + "TEXCOORD_0":8933 + }, + "indices":8934, + "material":7 + } + ] + }, + { + "name":"Mesh.7442", + "primitives":[ + { + "attributes":{ + "POSITION":8935, + "NORMAL":8936, + "TEXCOORD_0":8937 + }, + "indices":4137, + "material":7 + } + ] + }, + { + "name":"Mesh.6806", + "primitives":[ + { + "attributes":{ + "POSITION":8938, + "NORMAL":8939, + "TEXCOORD_0":8940 + }, + "indices":8941, + "material":3 + } + ] + }, + { + "name":"Mesh.2381", + "primitives":[ + { + "attributes":{ + "POSITION":8942, + "NORMAL":8943, + "TEXCOORD_0":8944 + }, + "indices":887, + "material":0 + } + ] + }, + { + "name":"Mesh.9001", + "primitives":[ + { + "attributes":{ + "POSITION":8945, + "NORMAL":8946, + "TEXCOORD_0":8947 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.5209", + "primitives":[ + { + "attributes":{ + "POSITION":8948, + "NORMAL":8949, + "TEXCOORD_0":8950 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8686", + "primitives":[ + { + "attributes":{ + "POSITION":8951, + "NORMAL":8952 + }, + "indices":8953, + "material":3 + } + ] + }, + { + "name":"Mesh.2501", + "primitives":[ + { + "attributes":{ + "POSITION":8954, + "NORMAL":8955, + "TEXCOORD_0":8956 + }, + "indices":8957, + "material":0 + } + ] + }, + { + "name":"Mesh.8428", + "primitives":[ + { + "attributes":{ + "POSITION":8958, + "NORMAL":8959 + }, + "indices":22, + "material":3 + } + ] + }, + { + "name":"Mesh.7231", + "primitives":[ + { + "attributes":{ + "POSITION":8960, + "NORMAL":8961, + "TEXCOORD_0":8962 + }, + "indices":1540, + "material":7 + } + ] + }, + { + "name":"Mesh.7667", + "primitives":[ + { + "attributes":{ + "POSITION":8963, + "NORMAL":8964 + }, + "indices":5784, + "material":3 + } + ] + }, + { + "name":"Mesh.1936", + "primitives":[ + { + "attributes":{ + "POSITION":8965, + "NORMAL":8966 + }, + "indices":2217, + "material":22 + } + ] + }, + { + "name":"Mesh.6360", + "primitives":[ + { + "attributes":{ + "POSITION":8967, + "NORMAL":8968 + }, + "indices":8969, + "material":0 + } + ] + }, + { + "name":"Mesh.5945", + "primitives":[ + { + "attributes":{ + "POSITION":8970, + "NORMAL":8971, + "TEXCOORD_0":8972 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.8170", + "primitives":[ + { + "attributes":{ + "POSITION":8973, + "NORMAL":8974 + }, + "indices":8690, + "material":3 + } + ] + }, + { + "name":"Mesh.2723", + "primitives":[ + { + "attributes":{ + "POSITION":8975, + "NORMAL":8976, + "TEXCOORD_0":8977 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.7556", + "primitives":[ + { + "attributes":{ + "POSITION":8978, + "NORMAL":8979 + }, + "indices":8980, + "material":3 + } + ] + }, + { + "name":"Mesh.7883", + "primitives":[ + { + "attributes":{ + "POSITION":8981, + "NORMAL":8982 + }, + "indices":8983, + "material":3 + } + ] + }, + { + "name":"Mesh.5138", + "primitives":[ + { + "attributes":{ + "POSITION":8984, + "NORMAL":8985, + "TEXCOORD_0":8986 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8718", + "primitives":[ + { + "attributes":{ + "POSITION":8987, + "NORMAL":8988 + }, + "indices":8989, + "material":3 + } + ] + }, + { + "name":"Mesh.6624", + "primitives":[ + { + "attributes":{ + "POSITION":8990, + "NORMAL":8991 + }, + "indices":1438, + "material":0 + } + ] + }, + { + "name":"Mesh.8395", + "primitives":[ + { + "attributes":{ + "POSITION":8992, + "NORMAL":8993 + }, + "indices":5701, + "material":3 + } + ] + }, + { + "name":"Mesh.7445", + "primitives":[ + { + "attributes":{ + "POSITION":8994, + "NORMAL":8995, + "TEXCOORD_0":8996 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.6337", + "primitives":[ + { + "attributes":{ + "POSITION":8997, + "NORMAL":8998 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.7934", + "primitives":[ + { + "attributes":{ + "POSITION":8999, + "NORMAL":9000 + }, + "indices":9001, + "material":3 + } + ] + }, + { + "name":"Mesh.2283", + "primitives":[ + { + "attributes":{ + "POSITION":9002, + "NORMAL":9003, + "TEXCOORD_0":9004 + }, + "indices":3740, + "material":0 + } + ] + }, + { + "name":"Mesh.7178", + "primitives":[ + { + "attributes":{ + "POSITION":9005, + "NORMAL":9006, + "TEXCOORD_0":9007 + }, + "indices":9008, + "material":7 + } + ] + }, + { + "name":"Mesh.551", + "primitives":[ + { + "attributes":{ + "POSITION":9009, + "NORMAL":9010, + "TEXCOORD_0":9011 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.6616", + "primitives":[ + { + "attributes":{ + "POSITION":9012, + "NORMAL":9013 + }, + "indices":9014, + "material":0 + } + ] + }, + { + "name":"Mesh.6091", + "primitives":[ + { + "attributes":{ + "POSITION":9015, + "NORMAL":9016, + "TEXCOORD_0":9017 + }, + "indices":5098, + "material":12 + } + ] + }, + { + "name":"Mesh.1754", + "primitives":[ + { + "attributes":{ + "POSITION":9018, + "NORMAL":9019 + }, + "indices":6598, + "material":31 + } + ] + }, + { + "name":"Mesh.2545", + "primitives":[ + { + "attributes":{ + "POSITION":9020, + "NORMAL":9021, + "TEXCOORD_0":9022 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.7997", + "primitives":[ + { + "attributes":{ + "POSITION":9023, + "NORMAL":9024, + "TEXCOORD_0":9025 + }, + "indices":1469, + "material":0 + } + ] + }, + { + "name":"Mesh.5579", + "primitives":[ + { + "attributes":{ + "POSITION":9026, + "NORMAL":9027, + "TEXCOORD_0":9028 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1979", + "primitives":[ + { + "attributes":{ + "POSITION":9029, + "NORMAL":9030, + "TEXCOORD_0":9031 + }, + "indices":4629, + "material":0 + } + ] + }, + { + "name":"Mesh.1834", + "primitives":[ + { + "attributes":{ + "POSITION":9032, + "NORMAL":9033 + }, + "indices":65, + "material":8 + } + ] + }, + { + "name":"Mesh.2322", + "primitives":[ + { + "attributes":{ + "POSITION":9034, + "NORMAL":9035, + "TEXCOORD_0":9036 + }, + "indices":3972, + "material":0 + } + ] + }, + { + "name":"Mesh.2761", + "primitives":[ + { + "attributes":{ + "POSITION":9037, + "NORMAL":9038, + "TEXCOORD_0":9039 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.735", + "primitives":[ + { + "attributes":{ + "POSITION":9040, + "NORMAL":9041, + "TEXCOORD_0":9042 + }, + "indices":1179, + "material":0 + } + ] + }, + { + "name":"Mesh.6778", + "primitives":[ + { + "attributes":{ + "POSITION":9043, + "NORMAL":9044 + }, + "indices":9045, + "material":0 + } + ] + }, + { + "name":"Mesh.8190", + "primitives":[ + { + "attributes":{ + "POSITION":9046, + "NORMAL":9047 + }, + "indices":9048, + "material":3 + } + ] + }, + { + "name":"Mesh.7599", + "primitives":[ + { + "attributes":{ + "POSITION":9049, + "NORMAL":9050 + }, + "indices":9051, + "material":3 + } + ] + }, + { + "name":"Mesh.7665", + "primitives":[ + { + "attributes":{ + "POSITION":9052, + "NORMAL":9053 + }, + "indices":6488, + "material":3 + } + ] + }, + { + "name":"Mesh.8013", + "primitives":[ + { + "attributes":{ + "POSITION":9054, + "NORMAL":9055, + "TEXCOORD_0":9056 + }, + "indices":4080, + "material":3 + } + ] + }, + { + "name":"Mesh.8322", + "primitives":[ + { + "attributes":{ + "POSITION":9057, + "NORMAL":9058 + }, + "indices":8916, + "material":3 + } + ] + }, + { + "name":"Mesh.7926", + "primitives":[ + { + "attributes":{ + "POSITION":9059, + "NORMAL":9060 + }, + "indices":9061, + "material":3 + } + ] + }, + { + "name":"Mesh.6347", + "primitives":[ + { + "attributes":{ + "POSITION":9062, + "NORMAL":9063 + }, + "indices":9064, + "material":0 + } + ] + }, + { + "name":"Mesh.5036", + "primitives":[ + { + "attributes":{ + "POSITION":9065, + "NORMAL":9066, + "TEXCOORD_0":9067 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5264", + "primitives":[ + { + "attributes":{ + "POSITION":9068, + "NORMAL":9069, + "TEXCOORD_0":9070 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5221", + "primitives":[ + { + "attributes":{ + "POSITION":9071, + "NORMAL":9072, + "TEXCOORD_0":9073 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8794", + "primitives":[ + { + "attributes":{ + "POSITION":9074, + "NORMAL":9075 + }, + "indices":4649, + "material":3 + } + ] + }, + { + "name":"Mesh.056", + "primitives":[ + { + "attributes":{ + "POSITION":9076, + "NORMAL":9077, + "TEXCOORD_0":9078 + }, + "indices":9079, + "material":53 + } + ] + }, + { + "name":"Mesh.7815", + "primitives":[ + { + "attributes":{ + "POSITION":9080, + "NORMAL":9081 + }, + "indices":9082, + "material":3 + } + ] + }, + { + "name":"Mesh.1948", + "primitives":[ + { + "attributes":{ + "POSITION":9083, + "NORMAL":9084 + }, + "indices":4042, + "material":0 + } + ] + }, + { + "name":"Mesh.974", + "primitives":[ + { + "attributes":{ + "POSITION":9085, + "NORMAL":9086, + "TEXCOORD_0":9087 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.7065", + "primitives":[ + { + "attributes":{ + "POSITION":9088, + "NORMAL":9089 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.7241", + "primitives":[ + { + "attributes":{ + "POSITION":9090, + "NORMAL":9091, + "TEXCOORD_0":9092 + }, + "indices":9093, + "material":7 + } + ] + }, + { + "name":"Mesh.8189", + "primitives":[ + { + "attributes":{ + "POSITION":9094, + "NORMAL":9095 + }, + "indices":9096, + "material":3 + } + ] + }, + { + "name":"Mesh.6863", + "primitives":[ + { + "attributes":{ + "POSITION":9097, + "NORMAL":9098 + }, + "indices":9099, + "material":0 + } + ] + }, + { + "name":"Mesh.7568", + "primitives":[ + { + "attributes":{ + "POSITION":9100, + "NORMAL":9101 + }, + "indices":7964, + "material":3 + } + ] + }, + { + "name":"Mesh.5622", + "primitives":[ + { + "attributes":{ + "POSITION":9102, + "NORMAL":9103, + "TEXCOORD_0":9104 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7281", + "primitives":[ + { + "attributes":{ + "POSITION":9105, + "NORMAL":9106, + "TEXCOORD_0":9107 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.6426", + "primitives":[ + { + "attributes":{ + "POSITION":9108, + "NORMAL":9109 + }, + "indices":9110, + "material":0 + } + ] + }, + { + "name":"Mesh.5670", + "primitives":[ + { + "attributes":{ + "POSITION":9111, + "NORMAL":9112, + "TEXCOORD_0":9113 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.4986", + "primitives":[ + { + "attributes":{ + "POSITION":9114, + "NORMAL":9115, + "TEXCOORD_0":9116 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2800", + "primitives":[ + { + "attributes":{ + "POSITION":9117, + "NORMAL":9118, + "TEXCOORD_0":9119 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.5568", + "primitives":[ + { + "attributes":{ + "POSITION":9120, + "NORMAL":9121, + "TEXCOORD_0":9122 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6349", + "primitives":[ + { + "attributes":{ + "POSITION":9123, + "NORMAL":9124 + }, + "indices":9125, + "material":0 + } + ] + }, + { + "name":"Mesh.943", + "primitives":[ + { + "attributes":{ + "POSITION":9126, + "NORMAL":9127, + "TEXCOORD_0":9128 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.8946", + "primitives":[ + { + "attributes":{ + "POSITION":9129, + "NORMAL":9130, + "TEXCOORD_0":9131 + }, + "indices":2369, + "material":7 + } + ] + }, + { + "name":"Mesh.1766", + "primitives":[ + { + "attributes":{ + "POSITION":9132, + "NORMAL":9133, + "TEXCOORD_0":9134 + }, + "indices":8761, + "material":37 + } + ] + }, + { + "name":"Mesh.5079", + "primitives":[ + { + "attributes":{ + "POSITION":9135, + "NORMAL":9136, + "TEXCOORD_0":9137 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8009", + "primitives":[ + { + "attributes":{ + "POSITION":9138, + "NORMAL":9139, + "TEXCOORD_0":9140 + }, + "indices":1469, + "material":0 + } + ] + }, + { + "name":"Mesh.9023", + "primitives":[ + { + "attributes":{ + "POSITION":9141, + "NORMAL":9142, + "TEXCOORD_0":9143 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.1655", + "primitives":[ + { + "attributes":{ + "POSITION":9144, + "NORMAL":9145, + "TEXCOORD_0":9146 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.9185", + "primitives":[ + { + "attributes":{ + "POSITION":9147, + "NORMAL":9148, + "TEXCOORD_0":9149 + }, + "indices":9150, + "material":7 + } + ] + }, + { + "name":"Mesh.7160", + "primitives":[ + { + "attributes":{ + "POSITION":9151, + "NORMAL":9152, + "TEXCOORD_0":9153 + }, + "indices":7808, + "material":7 + } + ] + }, + { + "name":"Mesh.5941", + "primitives":[ + { + "attributes":{ + "POSITION":9154, + "NORMAL":9155, + "TEXCOORD_0":9156 + }, + "indices":9157, + "material":12 + } + ] + }, + { + "name":"Mesh.6730", + "primitives":[ + { + "attributes":{ + "POSITION":9158, + "NORMAL":9159 + }, + "indices":6595, + "material":0 + } + ] + }, + { + "name":"Mesh.6977", + "primitives":[ + { + "attributes":{ + "POSITION":9160, + "NORMAL":9161, + "TEXCOORD_0":9162 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.9060", + "primitives":[ + { + "attributes":{ + "POSITION":9163, + "NORMAL":9164, + "TEXCOORD_0":9165 + }, + "indices":6966, + "material":7 + } + ] + }, + { + "name":"Mesh.2622", + "primitives":[ + { + "attributes":{ + "POSITION":9166, + "NORMAL":9167, + "TEXCOORD_0":9168 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.6997", + "primitives":[ + { + "attributes":{ + "POSITION":9169, + "NORMAL":9170, + "TEXCOORD_0":9171 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.1091", + "primitives":[ + { + "attributes":{ + "POSITION":9172, + "NORMAL":9173, + "TEXCOORD_0":9174 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.6679", + "primitives":[ + { + "attributes":{ + "POSITION":9175, + "NORMAL":9176 + }, + "indices":373, + "material":0 + } + ] + }, + { + "name":"Mesh.7827", + "primitives":[ + { + "attributes":{ + "POSITION":9177, + "NORMAL":9178 + }, + "indices":9179, + "material":3 + } + ] + }, + { + "name":"Mesh.7506", + "primitives":[ + { + "attributes":{ + "POSITION":9180, + "NORMAL":9181 + }, + "indices":9182, + "material":3 + } + ] + }, + { + "name":"Mesh.8871", + "primitives":[ + { + "attributes":{ + "POSITION":9183, + "NORMAL":9184 + }, + "indices":9185, + "material":3 + } + ] + }, + { + "name":"Mesh.6105", + "primitives":[ + { + "attributes":{ + "POSITION":9186, + "NORMAL":9187, + "TEXCOORD_0":9188 + }, + "indices":449, + "material":12 + } + ] + }, + { + "name":"Mesh.6568", + "primitives":[ + { + "attributes":{ + "POSITION":9189, + "NORMAL":9190 + }, + "indices":1084, + "material":0 + } + ] + }, + { + "name":"Mesh.8339", + "primitives":[ + { + "attributes":{ + "POSITION":9191, + "NORMAL":9192 + }, + "indices":9193, + "material":3 + } + ] + }, + { + "name":"Mesh.231", + "primitives":[ + { + "attributes":{ + "POSITION":9194, + "NORMAL":9195, + "TEXCOORD_0":9196 + }, + "indices":9197, + "material":3 + } + ] + }, + { + "name":"Mesh.7253", + "primitives":[ + { + "attributes":{ + "POSITION":9198, + "NORMAL":9199, + "TEXCOORD_0":9200 + }, + "indices":9201, + "material":7 + } + ] + }, + { + "name":"Mesh.7111", + "primitives":[ + { + "attributes":{ + "POSITION":9202, + "NORMAL":9203, + "TEXCOORD_0":9204 + }, + "indices":9205, + "material":7 + } + ] + }, + { + "name":"Mesh.175", + "primitives":[ + { + "attributes":{ + "POSITION":9206, + "NORMAL":9207, + "TEXCOORD_0":9208 + }, + "indices":5213, + "material":0 + } + ] + }, + { + "name":"Mesh.7429", + "primitives":[ + { + "attributes":{ + "POSITION":9209, + "NORMAL":9210, + "TEXCOORD_0":9211 + }, + "indices":2299, + "material":7 + } + ] + }, + { + "name":"Mesh.2065", + "primitives":[ + { + "attributes":{ + "POSITION":9212, + "NORMAL":9213, + "TEXCOORD_0":9214 + }, + "indices":3756, + "material":0 + } + ] + }, + { + "name":"Mesh.5523", + "primitives":[ + { + "attributes":{ + "POSITION":9215, + "NORMAL":9216, + "TEXCOORD_0":9217 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8631", + "primitives":[ + { + "attributes":{ + "POSITION":9218, + "NORMAL":9219 + }, + "indices":2420, + "material":3 + } + ] + }, + { + "name":"Mesh.2529", + "primitives":[ + { + "attributes":{ + "POSITION":9220, + "NORMAL":9221, + "TEXCOORD_0":9222 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.2345", + "primitives":[ + { + "attributes":{ + "POSITION":9223, + "NORMAL":9224, + "TEXCOORD_0":9225 + }, + "indices":9226, + "material":0 + } + ] + }, + { + "name":"Mesh.8827", + "primitives":[ + { + "attributes":{ + "POSITION":9227, + "NORMAL":9228 + }, + "indices":3882, + "material":3 + } + ] + }, + { + "name":"Mesh.6537", + "primitives":[ + { + "attributes":{ + "POSITION":9229, + "NORMAL":9230 + }, + "indices":1775, + "material":0 + } + ] + }, + { + "name":"Mesh.7040", + "primitives":[ + { + "attributes":{ + "POSITION":9231, + "NORMAL":9232 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.5563", + "primitives":[ + { + "attributes":{ + "POSITION":9233, + "NORMAL":9234, + "TEXCOORD_0":9235 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7791", + "primitives":[ + { + "attributes":{ + "POSITION":9236, + "NORMAL":9237 + }, + "indices":9238, + "material":3 + } + ] + }, + { + "name":"Mesh.6250", + "primitives":[ + { + "attributes":{ + "POSITION":9239, + "NORMAL":9240, + "TEXCOORD_0":9241 + }, + "indices":947, + "material":5 + } + ] + }, + { + "name":"Mesh.8157", + "primitives":[ + { + "attributes":{ + "POSITION":9242, + "NORMAL":9243 + }, + "indices":9244, + "material":3 + } + ] + }, + { + "name":"Mesh.6009", + "primitives":[ + { + "attributes":{ + "POSITION":9245, + "NORMAL":9246, + "TEXCOORD_0":9247 + }, + "indices":9248, + "material":33 + } + ] + }, + { + "name":"Mesh.4968", + "primitives":[ + { + "attributes":{ + "POSITION":9249, + "NORMAL":9250, + "TEXCOORD_0":9251 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7870", + "primitives":[ + { + "attributes":{ + "POSITION":9252, + "NORMAL":9253 + }, + "indices":9254, + "material":3 + } + ] + }, + { + "name":"Mesh.9032", + "primitives":[ + { + "attributes":{ + "POSITION":9255, + "NORMAL":9256, + "TEXCOORD_0":9257 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.2785", + "primitives":[ + { + "attributes":{ + "POSITION":9258, + "NORMAL":9259, + "TEXCOORD_0":9260 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.5165", + "primitives":[ + { + "attributes":{ + "POSITION":9261, + "NORMAL":9262, + "TEXCOORD_0":9263 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1063", + "primitives":[ + { + "attributes":{ + "POSITION":9264, + "NORMAL":9265, + "TEXCOORD_0":9266 + }, + "indices":296, + "material":4 + } + ] + }, + { + "name":"Mesh.2498", + "primitives":[ + { + "attributes":{ + "POSITION":9267, + "NORMAL":9268, + "TEXCOORD_0":9269 + }, + "indices":914, + "material":0 + } + ] + }, + { + "name":"Mesh.371", + "primitives":[ + { + "attributes":{ + "POSITION":9270, + "NORMAL":9271, + "TEXCOORD_0":9272 + }, + "indices":8568, + "material":0 + } + ] + }, + { + "name":"Mesh.8126", + "primitives":[ + { + "attributes":{ + "POSITION":9273, + "NORMAL":9274 + }, + "indices":1192, + "material":3 + } + ] + }, + { + "name":"Mesh.2420", + "primitives":[ + { + "attributes":{ + "POSITION":9275, + "NORMAL":9276, + "TEXCOORD_0":9277 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.5917", + "primitives":[ + { + "attributes":{ + "POSITION":9278, + "NORMAL":9279 + }, + "indices":6016 + } + ] + }, + { + "name":"Mesh.1636", + "primitives":[ + { + "attributes":{ + "POSITION":9280, + "NORMAL":9281, + "TEXCOORD_0":9282 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.1110", + "primitives":[ + { + "attributes":{ + "POSITION":9283, + "NORMAL":9284, + "TEXCOORD_0":9285 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.9167", + "primitives":[ + { + "attributes":{ + "POSITION":9286, + "NORMAL":9287, + "TEXCOORD_0":9288 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.8750", + "primitives":[ + { + "attributes":{ + "POSITION":9289, + "NORMAL":9290 + }, + "indices":9291, + "material":3 + } + ] + }, + { + "name":"Mesh.5425", + "primitives":[ + { + "attributes":{ + "POSITION":9292, + "NORMAL":9293, + "TEXCOORD_0":9294 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8351", + "primitives":[ + { + "attributes":{ + "POSITION":9295, + "NORMAL":9296 + }, + "indices":9297, + "material":3 + } + ] + }, + { + "name":"Mesh.887", + "primitives":[ + { + "attributes":{ + "POSITION":9298, + "NORMAL":9299, + "TEXCOORD_0":9300 + }, + "indices":1510, + "material":0 + } + ] + }, + { + "name":"Mesh.7441", + "primitives":[ + { + "attributes":{ + "POSITION":9301, + "NORMAL":9302, + "TEXCOORD_0":9303 + }, + "indices":3535, + "material":7 + } + ] + }, + { + "name":"Mesh.7713", + "primitives":[ + { + "attributes":{ + "POSITION":9304, + "NORMAL":9305 + }, + "indices":9306, + "material":3 + } + ] + }, + { + "name":"Mesh.6805", + "primitives":[ + { + "attributes":{ + "POSITION":9307, + "NORMAL":9308, + "TEXCOORD_0":9309 + }, + "indices":1124, + "material":0 + } + ] + }, + { + "name":"Mesh.119", + "primitives":[ + { + "attributes":{ + "POSITION":9310, + "NORMAL":9311, + "TEXCOORD_0":9312 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.377", + "primitives":[ + { + "attributes":{ + "POSITION":9313, + "NORMAL":9314, + "TEXCOORD_0":9315 + }, + "indices":366, + "material":0 + } + ] + }, + { + "name":"Mesh.5142", + "primitives":[ + { + "attributes":{ + "POSITION":9316, + "NORMAL":9317, + "TEXCOORD_0":9318 + }, + "indices":7108, + "material":49 + } + ] + }, + { + "name":"Mesh.6443", + "primitives":[ + { + "attributes":{ + "POSITION":9319, + "NORMAL":9320, + "TEXCOORD_0":9321 + }, + "indices":4561, + "material":0 + } + ] + }, + { + "name":"Mesh.5208", + "primitives":[ + { + "attributes":{ + "POSITION":9322, + "NORMAL":9323, + "TEXCOORD_0":9324 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.4871", + "primitives":[ + { + "attributes":{ + "POSITION":9325, + "NORMAL":9326, + "TEXCOORD_0":9327 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5537", + "primitives":[ + { + "attributes":{ + "POSITION":9328, + "NORMAL":9329, + "TEXCOORD_0":9330 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1935", + "primitives":[ + { + "attributes":{ + "POSITION":9331, + "NORMAL":9332 + }, + "indices":2553, + "material":22 + } + ] + }, + { + "name":"Mesh.7341", + "primitives":[ + { + "attributes":{ + "POSITION":9333, + "NORMAL":9334, + "TEXCOORD_0":9335 + }, + "indices":9336, + "material":7 + } + ] + }, + { + "name":"Mesh.5944", + "primitives":[ + { + "attributes":{ + "POSITION":9337, + "NORMAL":9338, + "TEXCOORD_0":9339 + }, + "indices":9340, + "material":12 + } + ] + }, + { + "name":"Mesh.8169", + "primitives":[ + { + "attributes":{ + "POSITION":9341, + "NORMAL":9342 + }, + "indices":7526, + "material":3 + } + ] + }, + { + "name":"Mesh.8523", + "primitives":[ + { + "attributes":{ + "POSITION":9343, + "NORMAL":9344 + }, + "indices":95, + "material":3 + } + ] + }, + { + "name":"Mesh.7555", + "primitives":[ + { + "attributes":{ + "POSITION":9345, + "NORMAL":9346 + }, + "indices":9347, + "material":3 + } + ] + }, + { + "name":"Mesh.7882", + "primitives":[ + { + "attributes":{ + "POSITION":9348, + "NORMAL":9349 + }, + "indices":9350, + "material":3 + } + ] + }, + { + "name":"Mesh.705", + "primitives":[ + { + "attributes":{ + "POSITION":9351, + "NORMAL":9352, + "TEXCOORD_0":9353 + }, + "indices":2846, + "material":0 + } + ] + }, + { + "name":"Mesh.8262", + "primitives":[ + { + "attributes":{ + "POSITION":9354, + "NORMAL":9355 + }, + "indices":1663, + "material":3 + } + ] + }, + { + "name":"Mesh.8717", + "primitives":[ + { + "attributes":{ + "POSITION":9356, + "NORMAL":9357 + }, + "indices":9358, + "material":3 + } + ] + }, + { + "name":"Mesh.442", + "primitives":[ + { + "attributes":{ + "POSITION":9359, + "NORMAL":9360 + }, + "indices":9361, + "material":3 + } + ] + }, + { + "name":"Mesh.994", + "primitives":[ + { + "attributes":{ + "POSITION":9362, + "NORMAL":9363, + "TEXCOORD_0":9364 + }, + "indices":5756, + "material":4 + } + ] + }, + { + "name":"Mesh.6623", + "primitives":[ + { + "attributes":{ + "POSITION":9365, + "NORMAL":9366 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.8233", + "primitives":[ + { + "attributes":{ + "POSITION":9367, + "NORMAL":9368 + }, + "indices":9369, + "material":3 + } + ] + }, + { + "name":"Mesh.484", + "primitives":[ + { + "attributes":{ + "POSITION":9370, + "NORMAL":9371 + }, + "indices":8989, + "material":3 + } + ] + }, + { + "name":"Mesh.8056", + "primitives":[ + { + "attributes":{ + "POSITION":9372, + "NORMAL":9373, + "TEXCOORD_0":9374 + }, + "indices":2286, + "material":3 + } + ] + }, + { + "name":"Mesh.7444", + "primitives":[ + { + "attributes":{ + "POSITION":9375, + "NORMAL":9376, + "TEXCOORD_0":9377 + }, + "indices":9378, + "material":7 + } + ] + }, + { + "name":"Mesh.8524", + "primitives":[ + { + "attributes":{ + "POSITION":9379, + "NORMAL":9380 + }, + "indices":9381, + "material":3 + } + ] + }, + { + "name":"Mesh.5504", + "primitives":[ + { + "attributes":{ + "POSITION":9382, + "NORMAL":9383, + "TEXCOORD_0":9384 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6336", + "primitives":[ + { + "attributes":{ + "POSITION":9385, + "NORMAL":9386 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.5766", + "primitives":[ + { + "attributes":{ + "POSITION":9387, + "NORMAL":9388 + }, + "indices":1043, + "material":0 + } + ] + }, + { + "name":"Mesh.1904", + "primitives":[ + { + "attributes":{ + "POSITION":9389, + "NORMAL":9390 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.044", + "primitives":[ + { + "attributes":{ + "POSITION":9391, + "NORMAL":9392 + }, + "indices":6848, + "material":4 + } + ] + }, + { + "name":"Mesh.2871", + "primitives":[ + { + "attributes":{ + "POSITION":9393, + "NORMAL":9394 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.2544", + "primitives":[ + { + "attributes":{ + "POSITION":9395, + "NORMAL":9396, + "TEXCOORD_0":9397 + }, + "indices":1595, + "material":4 + } + ] + }, + { + "name":"Mesh.7524", + "primitives":[ + { + "attributes":{ + "POSITION":9398, + "NORMAL":9399 + }, + "indices":9400, + "material":3 + } + ] + }, + { + "name":"Mesh.7996", + "primitives":[ + { + "attributes":{ + "POSITION":9401, + "NORMAL":9402, + "TEXCOORD_0":9403 + }, + "indices":1829, + "material":0 + } + ] + }, + { + "name":"Mesh.1161", + "primitives":[ + { + "attributes":{ + "POSITION":9404, + "NORMAL":9405, + "TEXCOORD_0":9406 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.9071", + "primitives":[ + { + "attributes":{ + "POSITION":9407, + "NORMAL":9408, + "TEXCOORD_0":9409 + }, + "indices":971, + "material":7 + } + ] + }, + { + "name":"Mesh.1833", + "primitives":[ + { + "attributes":{ + "POSITION":9410, + "NORMAL":9411 + }, + "indices":65, + "material":8 + } + ] + }, + { + "name":"Mesh.2321", + "primitives":[ + { + "attributes":{ + "POSITION":9412, + "NORMAL":9413, + "TEXCOORD_0":9414 + }, + "indices":639, + "material":0 + } + ] + }, + { + "name":"Mesh.2156", + "primitives":[ + { + "attributes":{ + "POSITION":9415, + "NORMAL":9416, + "TEXCOORD_0":9417 + }, + "indices":9418, + "material":3 + } + ] + }, + { + "name":"Mesh.7739", + "primitives":[ + { + "attributes":{ + "POSITION":9419, + "NORMAL":9420 + }, + "indices":9421, + "material":3 + } + ] + }, + { + "name":"Mesh.1988", + "primitives":[ + { + "attributes":{ + "POSITION":9422, + "NORMAL":9423, + "TEXCOORD_0":9424 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7787", + "primitives":[ + { + "attributes":{ + "POSITION":9425, + "NORMAL":9426 + }, + "indices":9427, + "material":3 + } + ] + }, + { + "name":"Mesh.2742", + "primitives":[ + { + "attributes":{ + "POSITION":9428, + "NORMAL":9429, + "TEXCOORD_0":9430 + }, + "indices":26, + "material":4 + } + ] + }, + { + "name":"Mesh.6777", + "primitives":[ + { + "attributes":{ + "POSITION":9431, + "NORMAL":9432 + }, + "indices":9433, + "material":0 + } + ] + }, + { + "name":"Mesh.8444", + "primitives":[ + { + "attributes":{ + "POSITION":9434, + "NORMAL":9435 + }, + "indices":9436, + "material":3 + } + ] + }, + { + "name":"Mesh.6469", + "primitives":[ + { + "attributes":{ + "POSITION":9437, + "NORMAL":9438, + "TEXCOORD_0":9439 + }, + "indices":3685, + "material":0 + } + ] + }, + { + "name":"Mesh.7598", + "primitives":[ + { + "attributes":{ + "POSITION":9440, + "NORMAL":9441 + }, + "indices":9442, + "material":3 + } + ] + }, + { + "name":"Mesh.7925", + "primitives":[ + { + "attributes":{ + "POSITION":9443, + "NORMAL":9444 + }, + "indices":9445, + "material":3 + } + ] + }, + { + "name":"Mesh.5035", + "primitives":[ + { + "attributes":{ + "POSITION":9446, + "NORMAL":9447, + "TEXCOORD_0":9448 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5220", + "primitives":[ + { + "attributes":{ + "POSITION":9449, + "NORMAL":9450, + "TEXCOORD_0":9451 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.055", + "primitives":[ + { + "attributes":{ + "POSITION":9452, + "NORMAL":9453 + }, + "indices":9454, + "material":39 + } + ] + }, + { + "name":"Mesh.2689", + "primitives":[ + { + "attributes":{ + "POSITION":9455, + "NORMAL":9456, + "TEXCOORD_0":9457 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.1947", + "primitives":[ + { + "attributes":{ + "POSITION":9458, + "NORMAL":9459 + }, + "indices":2624, + "material":0 + } + ] + }, + { + "name":"Mesh.7064", + "primitives":[ + { + "attributes":{ + "POSITION":9460, + "NORMAL":9461 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.1128", + "primitives":[ + { + "attributes":{ + "POSITION":9462, + "NORMAL":9463, + "TEXCOORD_0":9464 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.804", + "primitives":[ + { + "attributes":{ + "POSITION":9465, + "NORMAL":9466, + "TEXCOORD_0":9467 + }, + "indices":887, + "material":0 + } + ] + }, + { + "name":"Mesh.8610", + "primitives":[ + { + "attributes":{ + "POSITION":9468, + "NORMAL":9469 + }, + "indices":9470, + "material":3 + } + ] + }, + { + "name":"Mesh.2116", + "primitives":[ + { + "attributes":{ + "POSITION":9471, + "NORMAL":9472, + "TEXCOORD_0":9473 + }, + "indices":9474, + "material":3 + } + ] + }, + { + "name":"Mesh.6746", + "primitives":[ + { + "attributes":{ + "POSITION":9475, + "NORMAL":9476 + }, + "indices":6411, + "material":0 + } + ] + }, + { + "name":"Mesh.7240", + "primitives":[ + { + "attributes":{ + "POSITION":9477, + "NORMAL":9478, + "TEXCOORD_0":9479 + }, + "indices":9480, + "material":7 + } + ] + }, + { + "name":"Mesh.7567", + "primitives":[ + { + "attributes":{ + "POSITION":9481, + "NORMAL":9482 + }, + "indices":4580, + "material":3 + } + ] + }, + { + "name":"Mesh.1836", + "primitives":[ + { + "attributes":{ + "POSITION":9483, + "NORMAL":9484 + }, + "indices":7167, + "material":8 + } + ] + }, + { + "name":"Mesh.7280", + "primitives":[ + { + "attributes":{ + "POSITION":9485, + "NORMAL":9486, + "TEXCOORD_0":9487 + }, + "indices":1695, + "material":7 + } + ] + }, + { + "name":"Mesh.9103", + "primitives":[ + { + "attributes":{ + "POSITION":9488, + "NORMAL":9489, + "TEXCOORD_0":9490 + }, + "indices":9491, + "material":7 + } + ] + }, + { + "name":"Mesh.8406", + "primitives":[ + { + "attributes":{ + "POSITION":9492, + "NORMAL":9493 + }, + "indices":9494, + "material":3 + } + ] + }, + { + "name":"Mesh.509", + "primitives":[ + { + "attributes":{ + "POSITION":9495, + "NORMAL":9496, + "TEXCOORD_0":9497 + }, + "indices":7891, + "material":0 + } + ] + }, + { + "name":"Mesh.7752", + "primitives":[ + { + "attributes":{ + "POSITION":9498, + "NORMAL":9499 + }, + "indices":9500, + "material":3 + } + ] + }, + { + "name":"Mesh.7783", + "primitives":[ + { + "attributes":{ + "POSITION":9501, + "NORMAL":9502 + }, + "indices":9503, + "material":3 + } + ] + }, + { + "name":"Mesh.942", + "primitives":[ + { + "attributes":{ + "POSITION":9504, + "NORMAL":9505, + "TEXCOORD_0":9506 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.6884", + "primitives":[ + { + "attributes":{ + "POSITION":9507, + "NORMAL":9508, + "TEXCOORD_0":9509 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.1765", + "primitives":[ + { + "attributes":{ + "POSITION":9510, + "NORMAL":9511, + "TEXCOORD_0":9512 + }, + "indices":4797, + "material":37 + } + ] + }, + { + "name":"Mesh.712", + "primitives":[ + { + "attributes":{ + "POSITION":9513, + "NORMAL":9514, + "TEXCOORD_0":9515 + }, + "indices":5926, + "material":0 + } + ] + }, + { + "name":"Mesh.1168", + "primitives":[ + { + "attributes":{ + "POSITION":9516, + "NORMAL":9517 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.5078", + "primitives":[ + { + "attributes":{ + "POSITION":9518, + "NORMAL":9519, + "TEXCOORD_0":9520 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1843", + "primitives":[ + { + "attributes":{ + "POSITION":9521, + "NORMAL":9522 + }, + "indices":65, + "material":8 + } + ] + }, + { + "name":"Mesh.7209", + "primitives":[ + { + "attributes":{ + "POSITION":9523, + "NORMAL":9524, + "TEXCOORD_0":9525 + }, + "indices":9526, + "material":7 + } + ] + }, + { + "name":"Mesh.8830", + "primitives":[ + { + "attributes":{ + "POSITION":9527, + "NORMAL":9528 + }, + "indices":5935, + "material":3 + } + ] + }, + { + "name":"Mesh.8008", + "primitives":[ + { + "attributes":{ + "POSITION":9529, + "NORMAL":9530, + "TEXCOORD_0":9531 + }, + "indices":1829, + "material":0 + } + ] + }, + { + "name":"Mesh.7813", + "primitives":[ + { + "attributes":{ + "POSITION":9532, + "NORMAL":9533 + }, + "indices":9534, + "material":3 + } + ] + }, + { + "name":"Mesh.8038", + "primitives":[ + { + "attributes":{ + "POSITION":9535, + "NORMAL":9536, + "TEXCOORD_0":9537 + }, + "indices":1868, + "material":0 + } + ] + }, + { + "name":"Mesh.7366", + "primitives":[ + { + "attributes":{ + "POSITION":9538, + "NORMAL":9539, + "TEXCOORD_0":9540 + }, + "indices":9541, + "material":7 + } + ] + }, + { + "name":"Mesh.5973", + "primitives":[ + { + "attributes":{ + "POSITION":9542, + "NORMAL":9543, + "TEXCOORD_0":9544 + }, + "indices":9545, + "material":11 + } + ] + }, + { + "name":"Mesh.6749", + "primitives":[ + { + "attributes":{ + "POSITION":9546, + "NORMAL":9547 + }, + "indices":5333, + "material":0 + } + ] + }, + { + "name":"Mesh.5373", + "primitives":[ + { + "attributes":{ + "POSITION":9548, + "NORMAL":9549, + "TEXCOORD_0":9550 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.469", + "primitives":[ + { + "attributes":{ + "POSITION":9551, + "NORMAL":9552 + }, + "indices":7655, + "material":3 + } + ] + }, + { + "name":"Mesh.9059", + "primitives":[ + { + "attributes":{ + "POSITION":9553, + "NORMAL":9554, + "TEXCOORD_0":9555 + }, + "indices":4968, + "material":7 + } + ] + }, + { + "name":"Mesh.939", + "primitives":[ + { + "attributes":{ + "POSITION":9556, + "NORMAL":9557, + "TEXCOORD_0":9558 + }, + "indices":1611, + "material":0 + } + ] + }, + { + "name":"Mesh.6996", + "primitives":[ + { + "attributes":{ + "POSITION":9559, + "NORMAL":9560 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.1090", + "primitives":[ + { + "attributes":{ + "POSITION":9561, + "NORMAL":9562, + "TEXCOORD_0":9563 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.6678", + "primitives":[ + { + "attributes":{ + "POSITION":9564, + "NORMAL":9565 + }, + "indices":5519, + "material":0 + } + ] + }, + { + "name":"Mesh.8294", + "primitives":[ + { + "attributes":{ + "POSITION":9566, + "NORMAL":9567 + }, + "indices":4065, + "material":3 + } + ] + }, + { + "name":"Mesh.8777", + "primitives":[ + { + "attributes":{ + "POSITION":9568, + "NORMAL":9569 + }, + "indices":8600, + "material":3 + } + ] + }, + { + "name":"Mesh.6187", + "primitives":[ + { + "attributes":{ + "POSITION":9570, + "NORMAL":9571, + "TEXCOORD_0":9572 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.7985", + "primitives":[ + { + "attributes":{ + "POSITION":9573, + "NORMAL":9574, + "TEXCOORD_0":9575 + }, + "indices":1469, + "material":0 + } + ] + }, + { + "name":"Mesh.8426", + "primitives":[ + { + "attributes":{ + "POSITION":9576, + "NORMAL":9577 + }, + "indices":7751, + "material":3 + } + ] + }, + { + "name":"Mesh.6104", + "primitives":[ + { + "attributes":{ + "POSITION":9578, + "NORMAL":9579, + "TEXCOORD_0":9580 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.6567", + "primitives":[ + { + "attributes":{ + "POSITION":9581, + "NORMAL":9582 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.8338", + "primitives":[ + { + "attributes":{ + "POSITION":9583, + "NORMAL":9584 + }, + "indices":9585, + "material":3 + } + ] + }, + { + "name":"Mesh.7252", + "primitives":[ + { + "attributes":{ + "POSITION":9586, + "NORMAL":9587, + "TEXCOORD_0":9588 + }, + "indices":9589, + "material":7 + } + ] + }, + { + "name":"Mesh.6965", + "primitives":[ + { + "attributes":{ + "POSITION":9590, + "NORMAL":9591 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.7428", + "primitives":[ + { + "attributes":{ + "POSITION":9592, + "NORMAL":9593, + "TEXCOORD_0":9594 + }, + "indices":2653, + "material":7 + } + ] + }, + { + "name":"Mesh.8082", + "primitives":[ + { + "attributes":{ + "POSITION":9595, + "NORMAL":9596 + }, + "indices":1382, + "material":3 + } + ] + }, + { + "name":"Mesh.8685", + "primitives":[ + { + "attributes":{ + "POSITION":9597, + "NORMAL":9598 + }, + "indices":233, + "material":3 + } + ] + }, + { + "name":"Mesh.1653", + "primitives":[ + { + "attributes":{ + "POSITION":9599, + "NORMAL":9600, + "TEXCOORD_0":9601 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.7893", + "primitives":[ + { + "attributes":{ + "POSITION":9602, + "NORMAL":9603 + }, + "indices":9604, + "material":3 + } + ] + }, + { + "name":"Mesh.8817", + "primitives":[ + { + "attributes":{ + "POSITION":9605, + "NORMAL":9606 + }, + "indices":6860, + "material":3 + } + ] + }, + { + "name":"Mesh.2064", + "primitives":[ + { + "attributes":{ + "POSITION":9607, + "NORMAL":9608, + "TEXCOORD_0":9609 + }, + "indices":4143, + "material":0 + } + ] + }, + { + "name":"Mesh.2856", + "primitives":[ + { + "attributes":{ + "POSITION":9610, + "NORMAL":9611 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8241", + "primitives":[ + { + "attributes":{ + "POSITION":9612, + "NORMAL":9613 + }, + "indices":4741, + "material":3 + } + ] + }, + { + "name":"Mesh.8466", + "primitives":[ + { + "attributes":{ + "POSITION":9614, + "NORMAL":9615 + }, + "indices":9616, + "material":3 + } + ] + }, + { + "name":"Mesh.8630", + "primitives":[ + { + "attributes":{ + "POSITION":9617, + "NORMAL":9618 + }, + "indices":2766, + "material":3 + } + ] + }, + { + "name":"Mesh.2528", + "primitives":[ + { + "attributes":{ + "POSITION":9619, + "NORMAL":9620, + "TEXCOORD_0":9621 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.6536", + "primitives":[ + { + "attributes":{ + "POSITION":9622, + "NORMAL":9623 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.7039", + "primitives":[ + { + "attributes":{ + "POSITION":9624, + "NORMAL":9625, + "TEXCOORD_0":9626 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.070", + "primitives":[ + { + "attributes":{ + "POSITION":9627, + "NORMAL":9628 + }, + "indices":9629, + "material":39 + } + ] + }, + { + "name":"Mesh.2104", + "primitives":[ + { + "attributes":{ + "POSITION":9630, + "NORMAL":9631, + "TEXCOORD_0":9632 + }, + "indices":940, + "material":3 + } + ] + }, + { + "name":"Mesh.5562", + "primitives":[ + { + "attributes":{ + "POSITION":9633, + "NORMAL":9634, + "TEXCOORD_0":9635 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6249", + "primitives":[ + { + "attributes":{ + "POSITION":9636, + "NORMAL":9637, + "TEXCOORD_0":9638 + }, + "indices":9639, + "material":11 + } + ] + }, + { + "name":"Mesh.2888", + "primitives":[ + { + "attributes":{ + "POSITION":9640, + "NORMAL":9641 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8156", + "primitives":[ + { + "attributes":{ + "POSITION":9642, + "NORMAL":9643 + }, + "indices":9644, + "material":3 + } + ] + }, + { + "name":"Mesh.7869", + "primitives":[ + { + "attributes":{ + "POSITION":9645, + "NORMAL":9646 + }, + "indices":9647, + "material":3 + } + ] + }, + { + "name":"Mesh.9031", + "primitives":[ + { + "attributes":{ + "POSITION":9648, + "NORMAL":9649, + "TEXCOORD_0":9650 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.2784", + "primitives":[ + { + "attributes":{ + "POSITION":9651, + "NORMAL":9652, + "TEXCOORD_0":9653 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.5164", + "primitives":[ + { + "attributes":{ + "POSITION":9654, + "NORMAL":9655, + "TEXCOORD_0":9656 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1825", + "primitives":[ + { + "attributes":{ + "POSITION":9657, + "NORMAL":9658 + }, + "indices":696, + "material":1 + } + ] + }, + { + "name":"Mesh.1062", + "primitives":[ + { + "attributes":{ + "POSITION":9659, + "NORMAL":9660, + "TEXCOORD_0":9661 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.9127", + "primitives":[ + { + "attributes":{ + "POSITION":9662, + "NORMAL":9663, + "TEXCOORD_0":9664 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.1732", + "primitives":[ + { + "attributes":{ + "POSITION":9665, + "NORMAL":9666 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.2497", + "primitives":[ + { + "attributes":{ + "POSITION":9667, + "NORMAL":9668, + "TEXCOORD_0":9669 + }, + "indices":1247, + "material":0 + } + ] + }, + { + "name":"Mesh.6438", + "primitives":[ + { + "attributes":{ + "POSITION":9670, + "NORMAL":9671, + "TEXCOORD_0":9672 + }, + "indices":1890, + "material":0 + } + ] + }, + { + "name":"Mesh.7348", + "primitives":[ + { + "attributes":{ + "POSITION":9673, + "NORMAL":9674, + "TEXCOORD_0":9675 + }, + "indices":525, + "material":7 + } + ] + }, + { + "name":"Mesh.772", + "primitives":[ + { + "attributes":{ + "POSITION":9676, + "NORMAL":9677, + "TEXCOORD_0":9678 + }, + "indices":2887, + "material":0 + } + ] + }, + { + "name":"Mesh.6949", + "primitives":[ + { + "attributes":{ + "POSITION":9679, + "NORMAL":9680, + "TEXCOORD_0":9681 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.370", + "primitives":[ + { + "attributes":{ + "POSITION":9682, + "NORMAL":9683, + "TEXCOORD_0":9684 + }, + "indices":1878, + "material":0 + } + ] + }, + { + "name":"Mesh.8125", + "primitives":[ + { + "attributes":{ + "POSITION":9685, + "NORMAL":9686 + }, + "indices":2912, + "material":3 + } + ] + }, + { + "name":"Mesh.2419", + "primitives":[ + { + "attributes":{ + "POSITION":9687, + "NORMAL":9688, + "TEXCOORD_0":9689 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.1635", + "primitives":[ + { + "attributes":{ + "POSITION":9690, + "NORMAL":9691, + "TEXCOORD_0":9692 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.9166", + "primitives":[ + { + "attributes":{ + "POSITION":9693, + "NORMAL":9694, + "TEXCOORD_0":9695 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.8350", + "primitives":[ + { + "attributes":{ + "POSITION":9696, + "NORMAL":9697 + }, + "indices":3079, + "material":3 + } + ] + }, + { + "name":"Mesh.5974", + "primitives":[ + { + "attributes":{ + "POSITION":9698, + "NORMAL":9699, + "TEXCOORD_0":9700 + }, + "indices":9545, + "material":11 + } + ] + }, + { + "name":"Mesh.9077", + "primitives":[ + { + "attributes":{ + "POSITION":9701, + "NORMAL":9702, + "TEXCOORD_0":9703 + }, + "indices":1307, + "material":7 + } + ] + }, + { + "name":"Mesh.821", + "primitives":[ + { + "attributes":{ + "POSITION":9704, + "NORMAL":9705, + "TEXCOORD_0":9706 + }, + "indices":9707, + "material":0 + } + ] + }, + { + "name":"Mesh.8618", + "primitives":[ + { + "attributes":{ + "POSITION":9708, + "NORMAL":9709 + }, + "indices":9710, + "material":3 + } + ] + }, + { + "name":"Mesh.886", + "primitives":[ + { + "attributes":{ + "POSITION":9711, + "NORMAL":9712, + "TEXCOORD_0":9713 + }, + "indices":1878, + "material":0 + } + ] + }, + { + "name":"Mesh.7172", + "primitives":[ + { + "attributes":{ + "POSITION":9714, + "NORMAL":9715, + "TEXCOORD_0":9716 + }, + "indices":9717, + "material":7 + } + ] + }, + { + "name":"Mesh.7440", + "primitives":[ + { + "attributes":{ + "POSITION":9718, + "NORMAL":9719, + "TEXCOORD_0":9720 + }, + "indices":4834, + "material":7 + } + ] + }, + { + "name":"Mesh.6989", + "primitives":[ + { + "attributes":{ + "POSITION":9721, + "NORMAL":9722 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.7427", + "primitives":[ + { + "attributes":{ + "POSITION":9723, + "NORMAL":9724, + "TEXCOORD_0":9725 + }, + "indices":9726, + "material":7 + } + ] + }, + { + "name":"Mesh.6804", + "primitives":[ + { + "attributes":{ + "POSITION":9727, + "NORMAL":9728, + "TEXCOORD_0":9729 + }, + "indices":439, + "material":3 + } + ] + }, + { + "name":"Mesh.2540", + "primitives":[ + { + "attributes":{ + "POSITION":9730, + "NORMAL":9731, + "TEXCOORD_0":9732 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.1934", + "primitives":[ + { + "attributes":{ + "POSITION":9733, + "NORMAL":9734 + }, + "indices":2883, + "material":22 + } + ] + }, + { + "name":"Mesh.361", + "primitives":[ + { + "attributes":{ + "POSITION":9735, + "NORMAL":9736, + "TEXCOORD_0":9737 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5943", + "primitives":[ + { + "attributes":{ + "POSITION":9738, + "NORMAL":9739, + "TEXCOORD_0":9740 + }, + "indices":9741, + "material":12 + } + ] + }, + { + "name":"Mesh.8168", + "primitives":[ + { + "attributes":{ + "POSITION":9742, + "NORMAL":9743 + }, + "indices":3849, + "material":3 + } + ] + }, + { + "name":"Mesh.636", + "primitives":[ + { + "attributes":{ + "POSITION":9744, + "NORMAL":9745, + "TEXCOORD_0":9746 + }, + "indices":5464, + "material":3 + } + ] + }, + { + "name":"Mesh.8522", + "primitives":[ + { + "attributes":{ + "POSITION":9747, + "NORMAL":9748 + }, + "indices":9749, + "material":3 + } + ] + }, + { + "name":"Mesh.7554", + "primitives":[ + { + "attributes":{ + "POSITION":9750, + "NORMAL":9751 + }, + "indices":9752, + "material":3 + } + ] + }, + { + "name":"Mesh.9114", + "primitives":[ + { + "attributes":{ + "POSITION":9753, + "NORMAL":9754, + "TEXCOORD_0":9755 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.8091", + "primitives":[ + { + "attributes":{ + "POSITION":9756, + "NORMAL":9757 + }, + "indices":5673, + "material":3 + } + ] + }, + { + "name":"Mesh.7881", + "primitives":[ + { + "attributes":{ + "POSITION":9758, + "NORMAL":9759 + }, + "indices":9760, + "material":3 + } + ] + }, + { + "name":"Mesh.5136", + "primitives":[ + { + "attributes":{ + "POSITION":9761, + "NORMAL":9762, + "TEXCOORD_0":9763 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.259", + "primitives":[ + { + "attributes":{ + "POSITION":9764, + "NORMAL":9765, + "TEXCOORD_0":9766 + }, + "indices":9767, + "material":3 + } + ] + }, + { + "name":"Mesh.8716", + "primitives":[ + { + "attributes":{ + "POSITION":9768, + "NORMAL":9769 + }, + "indices":9770, + "material":3 + } + ] + }, + { + "name":"Mesh.6622", + "primitives":[ + { + "attributes":{ + "POSITION":9771, + "NORMAL":9772 + }, + "indices":102, + "material":0 + } + ] + }, + { + "name":"Mesh.8393", + "primitives":[ + { + "attributes":{ + "POSITION":9773, + "NORMAL":9774 + }, + "indices":6417, + "material":3 + } + ] + }, + { + "name":"Mesh.5503", + "primitives":[ + { + "attributes":{ + "POSITION":9775, + "NORMAL":9776, + "TEXCOORD_0":9777 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6335", + "primitives":[ + { + "attributes":{ + "POSITION":9778, + "NORMAL":9779 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.1903", + "primitives":[ + { + "attributes":{ + "POSITION":9780, + "NORMAL":9781, + "TEXCOORD_0":9782 + }, + "indices":3276, + "material":6 + } + ] + }, + { + "name":"Mesh.5721", + "primitives":[ + { + "attributes":{ + "POSITION":9783, + "NORMAL":9784 + }, + "indices":1775, + "material":0 + } + ] + }, + { + "name":"Mesh.7020", + "primitives":[ + { + "attributes":{ + "POSITION":9785, + "NORMAL":9786 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.5458", + "primitives":[ + { + "attributes":{ + "POSITION":9787, + "NORMAL":9788, + "TEXCOORD_0":9789 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7523", + "primitives":[ + { + "attributes":{ + "POSITION":9790, + "NORMAL":9791 + }, + "indices":9792, + "material":3 + } + ] + }, + { + "name":"Mesh.7995", + "primitives":[ + { + "attributes":{ + "POSITION":9793, + "NORMAL":9794, + "TEXCOORD_0":9795 + }, + "indices":1864, + "material":0 + } + ] + }, + { + "name":"Mesh.1160", + "primitives":[ + { + "attributes":{ + "POSITION":9796, + "NORMAL":9797, + "TEXCOORD_0":9798 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.8560", + "primitives":[ + { + "attributes":{ + "POSITION":9799, + "NORMAL":9800 + }, + "indices":9801, + "material":3 + } + ] + }, + { + "name":"Mesh.7861", + "primitives":[ + { + "attributes":{ + "POSITION":9802, + "NORMAL":9803 + }, + "indices":9804, + "material":3 + } + ] + }, + { + "name":"Mesh.8302", + "primitives":[ + { + "attributes":{ + "POSITION":9805, + "NORMAL":9806 + }, + "indices":977, + "material":3 + } + ] + }, + { + "name":"Mesh.1832", + "primitives":[ + { + "attributes":{ + "POSITION":9807, + "NORMAL":9808 + }, + "indices":65, + "material":8 + } + ] + }, + { + "name":"Mesh.5664", + "primitives":[ + { + "attributes":{ + "POSITION":9809, + "NORMAL":9810, + "TEXCOORD_0":9811 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2320", + "primitives":[ + { + "attributes":{ + "POSITION":9812, + "NORMAL":9813, + "TEXCOORD_0":9814 + }, + "indices":8568, + "material":0 + } + ] + }, + { + "name":"Mesh.6768", + "primitives":[ + { + "attributes":{ + "POSITION":9815, + "NORMAL":9816 + }, + "indices":735, + "material":0 + } + ] + }, + { + "name":"Mesh.6931", + "primitives":[ + { + "attributes":{ + "POSITION":9817, + "NORMAL":9818 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.5703", + "primitives":[ + { + "attributes":{ + "POSITION":9819, + "NORMAL":9820 + }, + "indices":2966, + "material":0 + } + ] + }, + { + "name":"Mesh.247", + "primitives":[ + { + "attributes":{ + "POSITION":9821, + "NORMAL":9822, + "TEXCOORD_0":9823 + }, + "indices":9824, + "material":3 + } + ] + }, + { + "name":"Mesh.6776", + "primitives":[ + { + "attributes":{ + "POSITION":9825, + "NORMAL":9826 + }, + "indices":9827, + "material":0 + } + ] + }, + { + "name":"Mesh.7597", + "primitives":[ + { + "attributes":{ + "POSITION":9828, + "NORMAL":9829 + }, + "indices":6860, + "material":3 + } + ] + }, + { + "name":"Mesh.7924", + "primitives":[ + { + "attributes":{ + "POSITION":9830, + "NORMAL":9831 + }, + "indices":9832, + "material":3 + } + ] + }, + { + "name":"Mesh.5034", + "primitives":[ + { + "attributes":{ + "POSITION":9833, + "NORMAL":9834, + "TEXCOORD_0":9835 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5219", + "primitives":[ + { + "attributes":{ + "POSITION":9836, + "NORMAL":9837, + "TEXCOORD_0":9838 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.054", + "primitives":[ + { + "attributes":{ + "POSITION":9839, + "NORMAL":9840, + "TEXCOORD_0":9841 + }, + "indices":9079, + "material":53 + } + ] + }, + { + "name":"Mesh.2688", + "primitives":[ + { + "attributes":{ + "POSITION":9842, + "NORMAL":9843, + "TEXCOORD_0":9844 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.1946", + "primitives":[ + { + "attributes":{ + "POSITION":9845, + "NORMAL":9846 + }, + "indices":2624, + "material":0 + } + ] + }, + { + "name":"Mesh.2640", + "primitives":[ + { + "attributes":{ + "POSITION":9847, + "NORMAL":9848, + "TEXCOORD_0":9849 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.7063", + "primitives":[ + { + "attributes":{ + "POSITION":9850, + "NORMAL":9851, + "TEXCOORD_0":9852 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.6151", + "primitives":[ + { + "attributes":{ + "POSITION":9853, + "NORMAL":9854, + "TEXCOORD_0":9855 + }, + "indices":1465, + "material":25 + } + ] + }, + { + "name":"Mesh.7409", + "primitives":[ + { + "attributes":{ + "POSITION":9856, + "NORMAL":9857, + "TEXCOORD_0":9858 + }, + "indices":9859, + "material":7 + } + ] + }, + { + "name":"Mesh.6745", + "primitives":[ + { + "attributes":{ + "POSITION":9860, + "NORMAL":9861 + }, + "indices":6769, + "material":0 + } + ] + }, + { + "name":"Mesh.7239", + "primitives":[ + { + "attributes":{ + "POSITION":9862, + "NORMAL":9863, + "TEXCOORD_0":9864 + }, + "indices":4166, + "material":7 + } + ] + }, + { + "name":"Mesh.7566", + "primitives":[ + { + "attributes":{ + "POSITION":9865, + "NORMAL":9866 + }, + "indices":6371, + "material":3 + } + ] + }, + { + "name":"Mesh.1835", + "primitives":[ + { + "attributes":{ + "POSITION":9867, + "NORMAL":9868 + }, + "indices":7167, + "material":8 + } + ] + }, + { + "name":"Mesh.1690", + "primitives":[ + { + "attributes":{ + "POSITION":9869, + "NORMAL":9870, + "TEXCOORD_0":9871 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.7279", + "primitives":[ + { + "attributes":{ + "POSITION":9872, + "NORMAL":9873, + "TEXCOORD_0":9874 + }, + "indices":1486, + "material":7 + } + ] + }, + { + "name":"Mesh.8405", + "primitives":[ + { + "attributes":{ + "POSITION":9875, + "NORMAL":9876 + }, + "indices":9877, + "material":3 + } + ] + }, + { + "name":"Mesh.508", + "primitives":[ + { + "attributes":{ + "POSITION":9878, + "NORMAL":9879, + "TEXCOORD_0":9880 + }, + "indices":8288, + "material":0 + } + ] + }, + { + "name":"Mesh.7782", + "primitives":[ + { + "attributes":{ + "POSITION":9881, + "NORMAL":9882 + }, + "indices":9883, + "material":3 + } + ] + }, + { + "name":"Mesh.298", + "primitives":[ + { + "attributes":{ + "POSITION":9884, + "NORMAL":9885, + "TEXCOORD_0":9886 + }, + "indices":2846, + "material":0 + } + ] + }, + { + "name":"Mesh.941", + "primitives":[ + { + "attributes":{ + "POSITION":9887, + "NORMAL":9888, + "TEXCOORD_0":9889 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.8865", + "primitives":[ + { + "attributes":{ + "POSITION":9890, + "NORMAL":9891 + }, + "indices":1742, + "material":3 + } + ] + }, + { + "name":"Mesh.2058", + "primitives":[ + { + "attributes":{ + "POSITION":9892, + "NORMAL":9893, + "TEXCOORD_0":9894 + }, + "indices":1554, + "material":0 + } + ] + }, + { + "name":"Mesh.1764", + "primitives":[ + { + "attributes":{ + "POSITION":9895, + "NORMAL":9896, + "TEXCOORD_0":9897 + }, + "indices":9898, + "material":37 + } + ] + }, + { + "name":"Mesh.2596", + "primitives":[ + { + "attributes":{ + "POSITION":9899, + "NORMAL":9900, + "TEXCOORD_0":9901 + }, + "indices":1315, + "material":0 + } + ] + }, + { + "name":"Mesh.2370", + "primitives":[ + { + "attributes":{ + "POSITION":9902, + "NORMAL":9903, + "TEXCOORD_0":9904 + }, + "indices":2237, + "material":0 + } + ] + }, + { + "name":"Mesh.5077", + "primitives":[ + { + "attributes":{ + "POSITION":9905, + "NORMAL":9906, + "TEXCOORD_0":9907 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5783", + "primitives":[ + { + "attributes":{ + "POSITION":9908, + "NORMAL":9909, + "TEXCOORD_0":9910 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.7208", + "primitives":[ + { + "attributes":{ + "POSITION":9911, + "NORMAL":9912, + "TEXCOORD_0":9913 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.5549", + "primitives":[ + { + "attributes":{ + "POSITION":9914, + "NORMAL":9915, + "TEXCOORD_0":9916 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8007", + "primitives":[ + { + "attributes":{ + "POSITION":9917, + "NORMAL":9918, + "TEXCOORD_0":9919 + }, + "indices":1864, + "material":0 + } + ] + }, + { + "name":"Mesh.685", + "primitives":[ + { + "attributes":{ + "POSITION":9920, + "NORMAL":9921, + "TEXCOORD_0":9922 + }, + "indices":9923, + "material":0 + } + ] + }, + { + "name":"Mesh.6748", + "primitives":[ + { + "attributes":{ + "POSITION":9924, + "NORMAL":9925 + }, + "indices":5694, + "material":0 + } + ] + }, + { + "name":"Mesh.468", + "primitives":[ + { + "attributes":{ + "POSITION":9926, + "NORMAL":9927 + }, + "indices":7751, + "material":3 + } + ] + }, + { + "name":"Mesh.2771", + "primitives":[ + { + "attributes":{ + "POSITION":9928, + "NORMAL":9929, + "TEXCOORD_0":9930 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.5702", + "primitives":[ + { + "attributes":{ + "POSITION":9931, + "NORMAL":9932 + }, + "indices":9933, + "material":0 + } + ] + }, + { + "name":"Mesh.9058", + "primitives":[ + { + "attributes":{ + "POSITION":9934, + "NORMAL":9935, + "TEXCOORD_0":9936 + }, + "indices":3382, + "material":7 + } + ] + }, + { + "name":"Mesh.6995", + "primitives":[ + { + "attributes":{ + "POSITION":9937, + "NORMAL":9938 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.496", + "primitives":[ + { + "attributes":{ + "POSITION":9939, + "NORMAL":9940, + "TEXCOORD_0":9941 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.2759", + "primitives":[ + { + "attributes":{ + "POSITION":9942, + "NORMAL":9943, + "TEXCOORD_0":9944 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.1089", + "primitives":[ + { + "attributes":{ + "POSITION":9945, + "NORMAL":9946, + "TEXCOORD_0":9947 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.5501", + "primitives":[ + { + "attributes":{ + "POSITION":9948, + "NORMAL":9949, + "TEXCOORD_0":9950 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8767", + "primitives":[ + { + "attributes":{ + "POSITION":9951, + "NORMAL":9952 + }, + "indices":4921, + "material":3 + } + ] + }, + { + "name":"Mesh.6677", + "primitives":[ + { + "attributes":{ + "POSITION":9953, + "NORMAL":9954 + }, + "indices":6550, + "material":0 + } + ] + }, + { + "name":"Mesh.7312", + "primitives":[ + { + "attributes":{ + "POSITION":9955, + "NORMAL":9956, + "TEXCOORD_0":9957 + }, + "indices":435, + "material":7 + } + ] + }, + { + "name":"Mesh.321", + "primitives":[ + { + "attributes":{ + "POSITION":9958, + "NORMAL":9959, + "TEXCOORD_0":9960 + }, + "indices":431, + "material":0 + } + ] + }, + { + "name":"Mesh.5685", + "primitives":[ + { + "attributes":{ + "POSITION":9961, + "NORMAL":9962, + "TEXCOORD_0":9963 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.401", + "primitives":[ + { + "attributes":{ + "POSITION":9964, + "NORMAL":9965 + }, + "indices":9966, + "material":22 + } + ] + }, + { + "name":"Mesh.250", + "primitives":[ + { + "attributes":{ + "POSITION":9967, + "NORMAL":9968, + "TEXCOORD_0":9969 + }, + "indices":9970, + "material":3 + } + ] + }, + { + "name":"Mesh.5558", + "primitives":[ + { + "attributes":{ + "POSITION":9971, + "NORMAL":9972, + "TEXCOORD_0":9973 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7825", + "primitives":[ + { + "attributes":{ + "POSITION":9974, + "NORMAL":9975 + }, + "indices":9976, + "material":3 + } + ] + }, + { + "name":"Mesh.2872", + "primitives":[ + { + "attributes":{ + "POSITION":9977, + "NORMAL":9978 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.3217", + "primitives":[ + { + "attributes":{ + "POSITION":9979, + "NORMAL":9980, + "TEXCOORD_0":9981 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8337", + "primitives":[ + { + "attributes":{ + "POSITION":9982, + "NORMAL":9983 + }, + "indices":3906, + "material":3 + } + ] + }, + { + "name":"Mesh.7251", + "primitives":[ + { + "attributes":{ + "POSITION":9984, + "NORMAL":9985, + "TEXCOORD_0":9986 + }, + "indices":9987, + "material":7 + } + ] + }, + { + "name":"Mesh.8690", + "primitives":[ + { + "attributes":{ + "POSITION":9988, + "NORMAL":9989 + }, + "indices":3050, + "material":3 + } + ] + }, + { + "name":"Mesh.2165", + "primitives":[ + { + "attributes":{ + "POSITION":9990, + "NORMAL":9991, + "TEXCOORD_0":9992 + }, + "indices":9993, + "material":0 + } + ] + }, + { + "name":"Mesh.156", + "primitives":[ + { + "attributes":{ + "POSITION":9994, + "NORMAL":9995, + "TEXCOORD_0":9996 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.1193", + "primitives":[ + { + "attributes":{ + "POSITION":9997, + "NORMAL":9998 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.869", + "primitives":[ + { + "attributes":{ + "POSITION":9999, + "NORMAL":10000, + "TEXCOORD_0":10001 + }, + "indices":10002, + "material":0 + } + ] + }, + { + "name":"Mesh.9038", + "primitives":[ + { + "attributes":{ + "POSITION":10003, + "NORMAL":10004, + "TEXCOORD_0":10005 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.8081", + "primitives":[ + { + "attributes":{ + "POSITION":10006, + "NORMAL":10007 + }, + "indices":1707, + "material":3 + } + ] + }, + { + "name":"Mesh.2364", + "primitives":[ + { + "attributes":{ + "POSITION":10008, + "NORMAL":10009, + "TEXCOORD_0":10010 + }, + "indices":4671, + "material":0 + } + ] + }, + { + "name":"Mesh.6706", + "primitives":[ + { + "attributes":{ + "POSITION":10011, + "NORMAL":10012 + }, + "indices":102, + "material":0 + } + ] + }, + { + "name":"Mesh.2857", + "primitives":[ + { + "attributes":{ + "POSITION":10013, + "NORMAL":10014 + }, + "indices":2224, + "material":1 + } + ] + }, + { + "name":"Mesh.6359", + "primitives":[ + { + "attributes":{ + "POSITION":10015, + "NORMAL":10016 + }, + "indices":10017, + "material":0 + } + ] + }, + { + "name":"Mesh.2063", + "primitives":[ + { + "attributes":{ + "POSITION":10018, + "NORMAL":10019, + "TEXCOORD_0":10020 + }, + "indices":4497, + "material":0 + } + ] + }, + { + "name":"Mesh.2527", + "primitives":[ + { + "attributes":{ + "POSITION":10021, + "NORMAL":10022, + "TEXCOORD_0":10023 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.2971", + "primitives":[ + { + "attributes":{ + "POSITION":10024, + "NORMAL":10025, + "TEXCOORD_0":10026 + }, + "indices":8091, + "material":7 + } + ] + }, + { + "name":"Mesh.6535", + "primitives":[ + { + "attributes":{ + "POSITION":10027, + "NORMAL":10028, + "TEXCOORD_0":10029 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.2103", + "primitives":[ + { + "attributes":{ + "POSITION":10030, + "NORMAL":10031, + "TEXCOORD_0":10032 + }, + "indices":1147, + "material":3 + } + ] + }, + { + "name":"Mesh.5561", + "primitives":[ + { + "attributes":{ + "POSITION":10033, + "NORMAL":10034, + "TEXCOORD_0":10035 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6248", + "primitives":[ + { + "attributes":{ + "POSITION":10036, + "NORMAL":10037, + "TEXCOORD_0":10038 + }, + "indices":30, + "material":5 + } + ] + }, + { + "name":"Mesh.8155", + "primitives":[ + { + "attributes":{ + "POSITION":10039, + "NORMAL":10040 + }, + "indices":676, + "material":3 + } + ] + }, + { + "name":"Mesh.5500", + "primitives":[ + { + "attributes":{ + "POSITION":10041, + "NORMAL":10042, + "TEXCOORD_0":10043 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.253", + "primitives":[ + { + "attributes":{ + "POSITION":10044, + "NORMAL":10045, + "TEXCOORD_0":10046 + }, + "indices":10047, + "material":3 + } + ] + }, + { + "name":"Mesh.7614", + "primitives":[ + { + "attributes":{ + "POSITION":10048, + "NORMAL":10049 + }, + "indices":10050, + "material":3 + } + ] + }, + { + "name":"Mesh.9030", + "primitives":[ + { + "attributes":{ + "POSITION":10051, + "NORMAL":10052, + "TEXCOORD_0":10053 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.8496", + "primitives":[ + { + "attributes":{ + "POSITION":10054, + "NORMAL":10055 + }, + "indices":864, + "material":3 + } + ] + }, + { + "name":"Mesh.2783", + "primitives":[ + { + "attributes":{ + "POSITION":10056, + "NORMAL":10057, + "TEXCOORD_0":10058 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.5163", + "primitives":[ + { + "attributes":{ + "POSITION":10059, + "NORMAL":10060, + "TEXCOORD_0":10061 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6212", + "primitives":[ + { + "attributes":{ + "POSITION":10062, + "NORMAL":10063, + "TEXCOORD_0":10064 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.5018", + "primitives":[ + { + "attributes":{ + "POSITION":10065, + "NORMAL":10066, + "TEXCOORD_0":10067 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1061", + "primitives":[ + { + "attributes":{ + "POSITION":10068, + "NORMAL":10069, + "TEXCOORD_0":10070 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.2496", + "primitives":[ + { + "attributes":{ + "POSITION":10071, + "NORMAL":10072, + "TEXCOORD_0":10073 + }, + "indices":2427, + "material":0 + } + ] + }, + { + "name":"Mesh.771", + "primitives":[ + { + "attributes":{ + "POSITION":10074, + "NORMAL":10075, + "TEXCOORD_0":10076 + }, + "indices":3241, + "material":0 + } + ] + }, + { + "name":"Mesh.369", + "primitives":[ + { + "attributes":{ + "POSITION":10077, + "NORMAL":10078, + "TEXCOORD_0":10079 + }, + "indices":1510, + "material":0 + } + ] + }, + { + "name":"Mesh.959", + "primitives":[ + { + "attributes":{ + "POSITION":10080, + "NORMAL":10081, + "TEXCOORD_0":10082 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.4907", + "primitives":[ + { + "attributes":{ + "POSITION":10083, + "NORMAL":10084, + "TEXCOORD_0":10085 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2418", + "primitives":[ + { + "attributes":{ + "POSITION":10086, + "NORMAL":10087, + "TEXCOORD_0":10088 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.1634", + "primitives":[ + { + "attributes":{ + "POSITION":10089, + "NORMAL":10090, + "TEXCOORD_0":10091 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.8710", + "primitives":[ + { + "attributes":{ + "POSITION":10092, + "NORMAL":10093 + }, + "indices":8875, + "material":3 + } + ] + }, + { + "name":"Mesh.2525", + "primitives":[ + { + "attributes":{ + "POSITION":10094, + "NORMAL":10095, + "TEXCOORD_0":10096 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.8349", + "primitives":[ + { + "attributes":{ + "POSITION":10097, + "NORMAL":10098 + }, + "indices":4899, + "material":3 + } + ] + }, + { + "name":"Mesh.5604", + "primitives":[ + { + "attributes":{ + "POSITION":10099, + "NORMAL":10100, + "TEXCOORD_0":10101 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5459", + "primitives":[ + { + "attributes":{ + "POSITION":10102, + "NORMAL":10103, + "TEXCOORD_0":10104 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6639", + "primitives":[ + { + "attributes":{ + "POSITION":10105, + "NORMAL":10106 + }, + "indices":10107, + "material":0 + } + ] + }, + { + "name":"Mesh.7121", + "primitives":[ + { + "attributes":{ + "POSITION":10108, + "NORMAL":10109, + "TEXCOORD_0":10110 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.7439", + "primitives":[ + { + "attributes":{ + "POSITION":10111, + "NORMAL":10112, + "TEXCOORD_0":10113 + }, + "indices":9336, + "material":7 + } + ] + }, + { + "name":"Mesh.052", + "primitives":[ + { + "attributes":{ + "POSITION":10114, + "NORMAL":10115, + "TEXCOORD_0":10116 + }, + "indices":9079, + "material":53 + } + ] + }, + { + "name":"Mesh.7311", + "primitives":[ + { + "attributes":{ + "POSITION":10117, + "NORMAL":10118, + "TEXCOORD_0":10119 + }, + "indices":9859, + "material":7 + } + ] + }, + { + "name":"Mesh.284", + "primitives":[ + { + "attributes":{ + "POSITION":10120, + "NORMAL":10121, + "TEXCOORD_0":10122 + }, + "indices":1128, + "material":0 + } + ] + }, + { + "name":"Mesh.6803", + "primitives":[ + { + "attributes":{ + "POSITION":10123, + "NORMAL":10124, + "TEXCOORD_0":10125 + }, + "indices":10126, + "material":3 + } + ] + }, + { + "name":"Mesh.2539", + "primitives":[ + { + "attributes":{ + "POSITION":10127, + "NORMAL":10128, + "TEXCOORD_0":10129 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.362", + "primitives":[ + { + "attributes":{ + "POSITION":10130, + "NORMAL":10131, + "TEXCOORD_0":10132 + }, + "indices":3972, + "material":0 + } + ] + }, + { + "name":"Mesh.5942", + "primitives":[ + { + "attributes":{ + "POSITION":10133, + "NORMAL":10134, + "TEXCOORD_0":10135 + }, + "indices":9340, + "material":12 + } + ] + }, + { + "name":"Mesh.2715", + "primitives":[ + { + "attributes":{ + "POSITION":10136, + "NORMAL":10137, + "TEXCOORD_0":10138 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.2307", + "primitives":[ + { + "attributes":{ + "POSITION":10139, + "NORMAL":10140, + "TEXCOORD_0":10141 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8882", + "primitives":[ + { + "attributes":{ + "POSITION":10142, + "NORMAL":10143 + }, + "indices":10144, + "material":3 + } + ] + }, + { + "name":"Mesh.2105", + "primitives":[ + { + "attributes":{ + "POSITION":10145, + "NORMAL":10146, + "TEXCOORD_0":10147 + }, + "indices":10148, + "material":3 + } + ] + }, + { + "name":"Mesh.8638", + "primitives":[ + { + "attributes":{ + "POSITION":10149, + "NORMAL":10150 + }, + "indices":8208, + "material":3 + } + ] + }, + { + "name":"Mesh.7463", + "primitives":[ + { + "attributes":{ + "POSITION":10151, + "NORMAL":10152 + }, + "indices":5289, + "material":3 + } + ] + }, + { + "name":"Mesh.7688", + "primitives":[ + { + "attributes":{ + "POSITION":10153, + "NORMAL":10154 + }, + "indices":10155, + "material":3 + } + ] + }, + { + "name":"Mesh.7904", + "primitives":[ + { + "attributes":{ + "POSITION":10156, + "NORMAL":10157 + }, + "indices":10158, + "material":3 + } + ] + }, + { + "name":"Mesh.7553", + "primitives":[ + { + "attributes":{ + "POSITION":10159, + "NORMAL":10160 + }, + "indices":1274, + "material":3 + } + ] + }, + { + "name":"Mesh.7880", + "primitives":[ + { + "attributes":{ + "POSITION":10161, + "NORMAL":10162 + }, + "indices":10163, + "material":3 + } + ] + }, + { + "name":"Mesh.8715", + "primitives":[ + { + "attributes":{ + "POSITION":10164, + "NORMAL":10165 + }, + "indices":6916, + "material":3 + } + ] + }, + { + "name":"Mesh.6621", + "primitives":[ + { + "attributes":{ + "POSITION":10166, + "NORMAL":10167 + }, + "indices":1775, + "material":0 + } + ] + }, + { + "name":"Mesh.7920", + "primitives":[ + { + "attributes":{ + "POSITION":10168, + "NORMAL":10169 + }, + "indices":10170, + "material":3 + } + ] + }, + { + "name":"Mesh.8392", + "primitives":[ + { + "attributes":{ + "POSITION":10171, + "NORMAL":10172 + }, + "indices":6779, + "material":3 + } + ] + }, + { + "name":"Mesh.5502", + "primitives":[ + { + "attributes":{ + "POSITION":10173, + "NORMAL":10174, + "TEXCOORD_0":10175 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2644", + "primitives":[ + { + "attributes":{ + "POSITION":10176, + "NORMAL":10177, + "TEXCOORD_0":10178 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.1902", + "primitives":[ + { + "attributes":{ + "POSITION":10179, + "NORMAL":10180 + }, + "indices":3642, + "material":0 + } + ] + }, + { + "name":"Mesh.7019", + "primitives":[ + { + "attributes":{ + "POSITION":10181, + "NORMAL":10182 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.798", + "primitives":[ + { + "attributes":{ + "POSITION":10183, + "NORMAL":10184, + "TEXCOORD_0":10185 + }, + "indices":144, + "material":0 + } + ] + }, + { + "name":"Mesh.051", + "primitives":[ + { + "attributes":{ + "POSITION":10186, + "NORMAL":10187, + "TEXCOORD_0":10188 + }, + "indices":6783, + "material":47 + } + ] + }, + { + "name":"Mesh.6701", + "primitives":[ + { + "attributes":{ + "POSITION":10189, + "NORMAL":10190 + }, + "indices":9933, + "material":0 + } + ] + }, + { + "name":"Mesh.8037", + "primitives":[ + { + "attributes":{ + "POSITION":10191, + "NORMAL":10192, + "TEXCOORD_0":10193 + }, + "indices":3235, + "material":0 + } + ] + }, + { + "name":"Mesh.8253", + "primitives":[ + { + "attributes":{ + "POSITION":10194, + "NORMAL":10195 + }, + "indices":362, + "material":3 + } + ] + }, + { + "name":"Mesh.8736", + "primitives":[ + { + "attributes":{ + "POSITION":10196, + "NORMAL":10197 + }, + "indices":10198, + "material":3 + } + ] + }, + { + "name":"Mesh.7522", + "primitives":[ + { + "attributes":{ + "POSITION":10199, + "NORMAL":10200 + }, + "indices":10201, + "material":3 + } + ] + }, + { + "name":"Mesh.7994", + "primitives":[ + { + "attributes":{ + "POSITION":10202, + "NORMAL":10203, + "TEXCOORD_0":10204 + }, + "indices":2512, + "material":0 + } + ] + }, + { + "name":"Mesh.6851", + "primitives":[ + { + "attributes":{ + "POSITION":10205, + "NORMAL":10206, + "TEXCOORD_0":10207 + }, + "indices":4270, + "material":0 + } + ] + }, + { + "name":"Mesh.5195", + "primitives":[ + { + "attributes":{ + "POSITION":10208, + "NORMAL":10209, + "TEXCOORD_0":10210 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1831", + "primitives":[ + { + "attributes":{ + "POSITION":10211, + "NORMAL":10212 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.2319", + "primitives":[ + { + "attributes":{ + "POSITION":10213, + "NORMAL":10214, + "TEXCOORD_0":10215 + }, + "indices":10216, + "material":0 + } + ] + }, + { + "name":"Mesh.8361", + "primitives":[ + { + "attributes":{ + "POSITION":10217, + "NORMAL":10218 + }, + "indices":5289, + "material":3 + } + ] + }, + { + "name":"Mesh.6444", + "primitives":[ + { + "attributes":{ + "POSITION":10219, + "NORMAL":10220, + "TEXCOORD_0":10221 + }, + "indices":10222, + "material":0 + } + ] + }, + { + "name":"Mesh.8501", + "primitives":[ + { + "attributes":{ + "POSITION":10223, + "NORMAL":10224 + }, + "indices":8600, + "material":3 + } + ] + }, + { + "name":"Mesh.7738", + "primitives":[ + { + "attributes":{ + "POSITION":10225, + "NORMAL":10226 + }, + "indices":10227, + "material":3 + } + ] + }, + { + "name":"Mesh.7923", + "primitives":[ + { + "attributes":{ + "POSITION":10228, + "NORMAL":10229 + }, + "indices":10230, + "material":3 + } + ] + }, + { + "name":"Mesh.5033", + "primitives":[ + { + "attributes":{ + "POSITION":10231, + "NORMAL":10232, + "TEXCOORD_0":10233 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2399", + "primitives":[ + { + "attributes":{ + "POSITION":10234, + "NORMAL":10235 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8914", + "primitives":[ + { + "attributes":{ + "POSITION":10236, + "NORMAL":10237, + "TEXCOORD_0":10238 + }, + "indices":1886, + "material":7 + } + ] + }, + { + "name":"Mesh.405", + "primitives":[ + { + "attributes":{ + "POSITION":10239, + "NORMAL":10240 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.5218", + "primitives":[ + { + "attributes":{ + "POSITION":10241, + "NORMAL":10242, + "TEXCOORD_0":10243 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7144", + "primitives":[ + { + "attributes":{ + "POSITION":10244, + "NORMAL":10245, + "TEXCOORD_0":10246 + }, + "indices":10247, + "material":7 + } + ] + }, + { + "name":"Mesh.610", + "primitives":[ + { + "attributes":{ + "POSITION":10248, + "NORMAL":10249, + "TEXCOORD_0":10250 + }, + "indices":10251, + "material":3 + } + ] + }, + { + "name":"Mesh.053", + "primitives":[ + { + "attributes":{ + "POSITION":10252, + "NORMAL":10253 + }, + "indices":10254, + "material":39 + } + ] + }, + { + "name":"Mesh.7054", + "primitives":[ + { + "attributes":{ + "POSITION":10255, + "NORMAL":10256 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.6057", + "primitives":[ + { + "attributes":{ + "POSITION":10257, + "NORMAL":10258, + "TEXCOORD_0":10259 + }, + "indices":947, + "material":5 + } + ] + }, + { + "name":"Mesh.1945", + "primitives":[ + { + "attributes":{ + "POSITION":10260, + "NORMAL":10261 + }, + "indices":5107, + "material":0 + } + ] + }, + { + "name":"Mesh.5592", + "primitives":[ + { + "attributes":{ + "POSITION":10262, + "NORMAL":10263, + "TEXCOORD_0":10264 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6090", + "primitives":[ + { + "attributes":{ + "POSITION":10265, + "NORMAL":10266, + "TEXCOORD_0":10267 + }, + "indices":927, + "material":12 + } + ] + }, + { + "name":"Mesh.2847", + "primitives":[ + { + "attributes":{ + "POSITION":10268, + "NORMAL":10269 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6744", + "primitives":[ + { + "attributes":{ + "POSITION":10270, + "NORMAL":10271, + "TEXCOORD_0":10272 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.7238", + "primitives":[ + { + "attributes":{ + "POSITION":10273, + "NORMAL":10274, + "TEXCOORD_0":10275 + }, + "indices":4257, + "material":7 + } + ] + }, + { + "name":"Mesh.8093", + "primitives":[ + { + "attributes":{ + "POSITION":10276, + "NORMAL":10277 + }, + "indices":4971, + "material":3 + } + ] + }, + { + "name":"Mesh.7892", + "primitives":[ + { + "attributes":{ + "POSITION":10278, + "NORMAL":10279 + }, + "indices":10280, + "material":3 + } + ] + }, + { + "name":"Mesh.7278", + "primitives":[ + { + "attributes":{ + "POSITION":10281, + "NORMAL":10282, + "TEXCOORD_0":10283 + }, + "indices":2404, + "material":7 + } + ] + }, + { + "name":"Mesh.8404", + "primitives":[ + { + "attributes":{ + "POSITION":10284, + "NORMAL":10285 + }, + "indices":1860, + "material":3 + } + ] + }, + { + "name":"Mesh.507", + "primitives":[ + { + "attributes":{ + "POSITION":10286, + "NORMAL":10287, + "TEXCOORD_0":10288 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7781", + "primitives":[ + { + "attributes":{ + "POSITION":10289, + "NORMAL":10290 + }, + "indices":10291, + "material":3 + } + ] + }, + { + "name":"Mesh.2196", + "primitives":[ + { + "attributes":{ + "POSITION":10292, + "NORMAL":10293, + "TEXCOORD_0":10294 + }, + "indices":855, + "material":0 + } + ] + }, + { + "name":"Mesh.940", + "primitives":[ + { + "attributes":{ + "POSITION":10295, + "NORMAL":10296, + "TEXCOORD_0":10297 + }, + "indices":1611, + "material":0 + } + ] + }, + { + "name":"Mesh.6529", + "primitives":[ + { + "attributes":{ + "POSITION":10298, + "NORMAL":10299, + "TEXCOORD_0":10300 + }, + "indices":4815, + "material":0 + } + ] + }, + { + "name":"Mesh.8327", + "primitives":[ + { + "attributes":{ + "POSITION":10301, + "NORMAL":10302 + }, + "indices":62, + "material":3 + } + ] + }, + { + "name":"Mesh.5131", + "primitives":[ + { + "attributes":{ + "POSITION":10303, + "NORMAL":10304, + "TEXCOORD_0":10305 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8943", + "primitives":[ + { + "attributes":{ + "POSITION":10306, + "NORMAL":10307, + "TEXCOORD_0":10308 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.1812", + "primitives":[ + { + "attributes":{ + "POSITION":10309, + "NORMAL":10310 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6386", + "primitives":[ + { + "attributes":{ + "POSITION":10311, + "NORMAL":10312 + }, + "indices":10313, + "material":0 + } + ] + }, + { + "name":"Mesh.5076", + "primitives":[ + { + "attributes":{ + "POSITION":10314, + "NORMAL":10315, + "TEXCOORD_0":10316 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7207", + "primitives":[ + { + "attributes":{ + "POSITION":10317, + "NORMAL":10318, + "TEXCOORD_0":10319 + }, + "indices":8746, + "material":7 + } + ] + }, + { + "name":"Mesh.8006", + "primitives":[ + { + "attributes":{ + "POSITION":10320, + "NORMAL":10321, + "TEXCOORD_0":10322 + }, + "indices":2512, + "material":0 + } + ] + }, + { + "name":"Mesh.684", + "primitives":[ + { + "attributes":{ + "POSITION":10323, + "NORMAL":10324, + "TEXCOORD_0":10325 + }, + "indices":10326, + "material":0 + } + ] + }, + { + "name":"Mesh.7265", + "primitives":[ + { + "attributes":{ + "POSITION":10327, + "NORMAL":10328, + "TEXCOORD_0":10329 + }, + "indices":10330, + "material":7 + } + ] + }, + { + "name":"Mesh.134", + "primitives":[ + { + "attributes":{ + "POSITION":10331, + "NORMAL":10332, + "TEXCOORD_0":10333 + }, + "indices":10334, + "material":0 + } + ] + }, + { + "name":"Mesh.1211", + "primitives":[ + { + "attributes":{ + "POSITION":10335, + "NORMAL":10336 + }, + "indices":114, + "material":1 + } + ] + }, + { + "name":"Mesh.2770", + "primitives":[ + { + "attributes":{ + "POSITION":10337, + "NORMAL":10338, + "TEXCOORD_0":10339 + }, + "indices":140, + "material":0 + } + ] + }, + { + "name":"Mesh.1686", + "primitives":[ + { + "attributes":{ + "POSITION":10340, + "NORMAL":10341, + "TEXCOORD_0":10342 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.9057", + "primitives":[ + { + "attributes":{ + "POSITION":10343, + "NORMAL":10344, + "TEXCOORD_0":10345 + }, + "indices":525, + "material":7 + } + ] + }, + { + "name":"Mesh.7639", + "primitives":[ + { + "attributes":{ + "POSITION":10346, + "NORMAL":10347 + }, + "indices":10348, + "material":3 + } + ] + }, + { + "name":"Mesh.6994", + "primitives":[ + { + "attributes":{ + "POSITION":10349, + "NORMAL":10350 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.2150", + "primitives":[ + { + "attributes":{ + "POSITION":10351, + "NORMAL":10352, + "TEXCOORD_0":10353 + }, + "indices":10354, + "material":0 + } + ] + }, + { + "name":"Mesh.5045", + "primitives":[ + { + "attributes":{ + "POSITION":10355, + "NORMAL":10356, + "TEXCOORD_0":10357 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1088", + "primitives":[ + { + "attributes":{ + "POSITION":10358, + "NORMAL":10359, + "TEXCOORD_0":10360 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.5309", + "primitives":[ + { + "attributes":{ + "POSITION":10361, + "NORMAL":10362, + "TEXCOORD_0":10363 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6676", + "primitives":[ + { + "attributes":{ + "POSITION":10364, + "NORMAL":10365 + }, + "indices":6926, + "material":0 + } + ] + }, + { + "name":"Mesh.5557", + "primitives":[ + { + "attributes":{ + "POSITION":10366, + "NORMAL":10367, + "TEXCOORD_0":10368 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1621", + "primitives":[ + { + "attributes":{ + "POSITION":10369, + "NORMAL":10370, + "TEXCOORD_0":10371 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.7074", + "primitives":[ + { + "attributes":{ + "POSITION":10372, + "NORMAL":10373 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.6102", + "primitives":[ + { + "attributes":{ + "POSITION":10374, + "NORMAL":10375, + "TEXCOORD_0":10376 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.8336", + "primitives":[ + { + "attributes":{ + "POSITION":10377, + "NORMAL":10378 + }, + "indices":1689, + "material":3 + } + ] + }, + { + "name":"Mesh.7250", + "primitives":[ + { + "attributes":{ + "POSITION":10379, + "NORMAL":10380, + "TEXCOORD_0":10381 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.643", + "primitives":[ + { + "attributes":{ + "POSITION":10382, + "NORMAL":10383, + "TEXCOORD_0":10384 + }, + "indices":9474, + "material":3 + } + ] + }, + { + "name":"Mesh.2452", + "primitives":[ + { + "attributes":{ + "POSITION":10385, + "NORMAL":10386, + "TEXCOORD_0":10387 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.8797", + "primitives":[ + { + "attributes":{ + "POSITION":10388, + "NORMAL":10389 + }, + "indices":3445, + "material":3 + } + ] + }, + { + "name":"Mesh.6963", + "primitives":[ + { + "attributes":{ + "POSITION":10390, + "NORMAL":10391 + }, + "indices":1962, + "material":1 + } + ] + }, + { + "name":"Mesh.7426", + "primitives":[ + { + "attributes":{ + "POSITION":10392, + "NORMAL":10393, + "TEXCOORD_0":10394 + }, + "indices":10395, + "material":7 + } + ] + }, + { + "name":"Mesh.8137", + "primitives":[ + { + "attributes":{ + "POSITION":10396, + "NORMAL":10397 + }, + "indices":3412, + "material":3 + } + ] + }, + { + "name":"Mesh.7290", + "primitives":[ + { + "attributes":{ + "POSITION":10398, + "NORMAL":10399, + "TEXCOORD_0":10400 + }, + "indices":8318, + "material":7 + } + ] + }, + { + "name":"Mesh.8080", + "primitives":[ + { + "attributes":{ + "POSITION":10401, + "NORMAL":10402 + }, + "indices":2095, + "material":3 + } + ] + }, + { + "name":"Mesh.6173", + "primitives":[ + { + "attributes":{ + "POSITION":10403, + "NORMAL":10404, + "TEXCOORD_0":10405 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.6358", + "primitives":[ + { + "attributes":{ + "POSITION":10406, + "NORMAL":10407 + }, + "indices":4577, + "material":0 + } + ] + }, + { + "name":"Mesh.2062", + "primitives":[ + { + "attributes":{ + "POSITION":10408, + "NORMAL":10409, + "TEXCOORD_0":10410 + }, + "indices":10411, + "material":3 + } + ] + }, + { + "name":"Mesh.8628", + "primitives":[ + { + "attributes":{ + "POSITION":10412, + "NORMAL":10413 + }, + "indices":10414, + "material":3 + } + ] + }, + { + "name":"Mesh.2526", + "primitives":[ + { + "attributes":{ + "POSITION":10415, + "NORMAL":10416, + "TEXCOORD_0":10417 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.6534", + "primitives":[ + { + "attributes":{ + "POSITION":10418, + "NORMAL":10419 + }, + "indices":5275, + "material":0 + } + ] + }, + { + "name":"Mesh.2738", + "primitives":[ + { + "attributes":{ + "POSITION":10420, + "NORMAL":10421, + "TEXCOORD_0":10422 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.2102", + "primitives":[ + { + "attributes":{ + "POSITION":10423, + "NORMAL":10424, + "TEXCOORD_0":10425 + }, + "indices":3612, + "material":3 + } + ] + }, + { + "name":"Mesh.5560", + "primitives":[ + { + "attributes":{ + "POSITION":10426, + "NORMAL":10427, + "TEXCOORD_0":10428 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6247", + "primitives":[ + { + "attributes":{ + "POSITION":10429, + "NORMAL":10430, + "TEXCOORD_0":10431 + }, + "indices":947, + "material":5 + } + ] + }, + { + "name":"Mesh.8936", + "primitives":[ + { + "attributes":{ + "POSITION":10432, + "NORMAL":10433, + "TEXCOORD_0":10434 + }, + "indices":1208, + "material":7 + } + ] + }, + { + "name":"Mesh.9182", + "primitives":[ + { + "attributes":{ + "POSITION":10435, + "NORMAL":10436, + "TEXCOORD_0":10437 + }, + "indices":2564, + "material":7 + } + ] + }, + { + "name":"Mesh.8753", + "primitives":[ + { + "attributes":{ + "POSITION":10438, + "NORMAL":10439 + }, + "indices":10440, + "material":3 + } + ] + }, + { + "name":"Mesh.7867", + "primitives":[ + { + "attributes":{ + "POSITION":10441, + "NORMAL":10442 + }, + "indices":10443, + "material":3 + } + ] + }, + { + "name":"Mesh.1721", + "primitives":[ + { + "attributes":{ + "POSITION":10444, + "NORMAL":10445, + "TEXCOORD_0":10446 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.1027", + "primitives":[ + { + "attributes":{ + "POSITION":10447, + "NORMAL":10448, + "TEXCOORD_0":10449 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.9029", + "primitives":[ + { + "attributes":{ + "POSITION":10450, + "NORMAL":10451, + "TEXCOORD_0":10452 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.5017", + "primitives":[ + { + "attributes":{ + "POSITION":10453, + "NORMAL":10454, + "TEXCOORD_0":10455 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2495", + "primitives":[ + { + "attributes":{ + "POSITION":10456, + "NORMAL":10457, + "TEXCOORD_0":10458 + }, + "indices":1315, + "material":0 + } + ] + }, + { + "name":"Mesh.8057", + "primitives":[ + { + "attributes":{ + "POSITION":10459, + "NORMAL":10460, + "TEXCOORD_0":10461 + }, + "indices":5807, + "material":3 + } + ] + }, + { + "name":"Mesh.368", + "primitives":[ + { + "attributes":{ + "POSITION":10462, + "NORMAL":10463, + "TEXCOORD_0":10464 + }, + "indices":1878, + "material":0 + } + ] + }, + { + "name":"Mesh.8123", + "primitives":[ + { + "attributes":{ + "POSITION":10465, + "NORMAL":10466 + }, + "indices":10467, + "material":3 + } + ] + }, + { + "name":"Mesh.1218", + "primitives":[ + { + "attributes":{ + "POSITION":10468, + "NORMAL":10469 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.9159", + "primitives":[ + { + "attributes":{ + "POSITION":10470, + "NORMAL":10471, + "TEXCOORD_0":10472 + }, + "indices":7501, + "material":7 + } + ] + }, + { + "name":"Mesh.2434", + "primitives":[ + { + "attributes":{ + "POSITION":10473, + "NORMAL":10474, + "TEXCOORD_0":10475 + }, + "indices":313, + "material":4 + } + ] + }, + { + "name":"Mesh.8481", + "primitives":[ + { + "attributes":{ + "POSITION":10476, + "NORMAL":10477 + }, + "indices":10478, + "material":3 + } + ] + }, + { + "name":"Mesh.8348", + "primitives":[ + { + "attributes":{ + "POSITION":10479, + "NORMAL":10480 + }, + "indices":5482, + "material":3 + } + ] + }, + { + "name":"Mesh.7120", + "primitives":[ + { + "attributes":{ + "POSITION":10481, + "NORMAL":10482, + "TEXCOORD_0":10483 + }, + "indices":10484, + "material":7 + } + ] + }, + { + "name":"Mesh.7438", + "primitives":[ + { + "attributes":{ + "POSITION":10485, + "NORMAL":10486, + "TEXCOORD_0":10487 + }, + "indices":5503, + "material":7 + } + ] + }, + { + "name":"Mesh.6802", + "primitives":[ + { + "attributes":{ + "POSITION":10488, + "NORMAL":10489, + "TEXCOORD_0":10490 + }, + "indices":668, + "material":0 + } + ] + }, + { + "name":"Mesh.2031", + "primitives":[ + { + "attributes":{ + "POSITION":10491, + "NORMAL":10492, + "TEXCOORD_0":10493 + }, + "indices":10494, + "material":0 + } + ] + }, + { + "name":"Mesh.1258", + "primitives":[ + { + "attributes":{ + "POSITION":10495, + "NORMAL":10496, + "TEXCOORD_0":10497 + }, + "indices":10498, + "material":15 + } + ] + }, + { + "name":"Mesh.5387", + "primitives":[ + { + "attributes":{ + "POSITION":10499, + "NORMAL":10500, + "TEXCOORD_0":10501 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2538", + "primitives":[ + { + "attributes":{ + "POSITION":10502, + "NORMAL":10503, + "TEXCOORD_0":10504 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.8554", + "primitives":[ + { + "attributes":{ + "POSITION":10505, + "NORMAL":10506 + }, + "indices":5935, + "material":3 + } + ] + }, + { + "name":"Mesh.445", + "primitives":[ + { + "attributes":{ + "POSITION":10507, + "NORMAL":10508 + }, + "indices":8910, + "material":3 + } + ] + }, + { + "name":"Mesh.8203", + "primitives":[ + { + "attributes":{ + "POSITION":10509, + "NORMAL":10510 + }, + "indices":3482, + "material":3 + } + ] + }, + { + "name":"Mesh.192", + "primitives":[ + { + "attributes":{ + "POSITION":10511, + "NORMAL":10512, + "TEXCOORD_0":10513 + }, + "indices":10514, + "material":3 + } + ] + }, + { + "name":"Mesh.8520", + "primitives":[ + { + "attributes":{ + "POSITION":10515, + "NORMAL":10516 + }, + "indices":10517, + "material":3 + } + ] + }, + { + "name":"Mesh.393", + "primitives":[ + { + "attributes":{ + "POSITION":10518, + "NORMAL":10519, + "TEXCOORD_0":10520 + }, + "indices":10521, + "material":0 + } + ] + }, + { + "name":"Mesh.8714", + "primitives":[ + { + "attributes":{ + "POSITION":10522, + "NORMAL":10523 + }, + "indices":7310, + "material":3 + } + ] + }, + { + "name":"Mesh.7919", + "primitives":[ + { + "attributes":{ + "POSITION":10524, + "NORMAL":10525 + }, + "indices":10526, + "material":3 + } + ] + }, + { + "name":"Mesh.8391", + "primitives":[ + { + "attributes":{ + "POSITION":10527, + "NORMAL":10528 + }, + "indices":7146, + "material":3 + } + ] + }, + { + "name":"Mesh.6333", + "primitives":[ + { + "attributes":{ + "POSITION":10529, + "NORMAL":10530 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.6700", + "primitives":[ + { + "attributes":{ + "POSITION":10531, + "NORMAL":10532 + }, + "indices":10533, + "material":0 + } + ] + }, + { + "name":"Mesh.7521", + "primitives":[ + { + "attributes":{ + "POSITION":10534, + "NORMAL":10535 + }, + "indices":10536, + "material":3 + } + ] + }, + { + "name":"Mesh.7963", + "primitives":[ + { + "attributes":{ + "POSITION":10537, + "NORMAL":10538, + "TEXCOORD_0":10539 + }, + "indices":3664, + "material":0 + } + ] + }, + { + "name":"Mesh.2983", + "primitives":[ + { + "attributes":{ + "POSITION":10540, + "NORMAL":10541, + "TEXCOORD_0":10542 + }, + "indices":10543, + "material":7 + } + ] + }, + { + "name":"Mesh.8683", + "primitives":[ + { + "attributes":{ + "POSITION":10544, + "NORMAL":10545 + }, + "indices":813, + "material":3 + } + ] + }, + { + "name":"Mesh.1830", + "primitives":[ + { + "attributes":{ + "POSITION":10546, + "NORMAL":10547 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8360", + "primitives":[ + { + "attributes":{ + "POSITION":10548, + "NORMAL":10549 + }, + "indices":1784, + "material":3 + } + ] + }, + { + "name":"Mesh.248", + "primitives":[ + { + "attributes":{ + "POSITION":10550, + "NORMAL":10551, + "TEXCOORD_0":10552 + }, + "indices":2880, + "material":0 + } + ] + }, + { + "name":"Mesh.6774", + "primitives":[ + { + "attributes":{ + "POSITION":10553, + "NORMAL":10554 + }, + "indices":10555, + "material":0 + } + ] + }, + { + "name":"Mesh.1870", + "primitives":[ + { + "attributes":{ + "POSITION":10556, + "NORMAL":10557 + }, + "indices":2600, + "material":0 + } + ] + }, + { + "name":"Mesh.7922", + "primitives":[ + { + "attributes":{ + "POSITION":10558, + "NORMAL":10559 + }, + "indices":10560, + "material":3 + } + ] + }, + { + "name":"Mesh.8997", + "primitives":[ + { + "attributes":{ + "POSITION":10561, + "NORMAL":10562, + "TEXCOORD_0":10563 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.5032", + "primitives":[ + { + "attributes":{ + "POSITION":10564, + "NORMAL":10565, + "TEXCOORD_0":10566 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7061", + "primitives":[ + { + "attributes":{ + "POSITION":10567, + "NORMAL":10568, + "TEXCOORD_0":10569 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.7237", + "primitives":[ + { + "attributes":{ + "POSITION":10570, + "NORMAL":10571, + "TEXCOORD_0":10572 + }, + "indices":7808, + "material":7 + } + ] + }, + { + "name":"Mesh.865", + "primitives":[ + { + "attributes":{ + "POSITION":10573, + "NORMAL":10574, + "TEXCOORD_0":10575 + }, + "indices":584, + "material":0 + } + ] + }, + { + "name":"Mesh.7564", + "primitives":[ + { + "attributes":{ + "POSITION":10576, + "NORMAL":10577 + }, + "indices":10578, + "material":3 + } + ] + }, + { + "name":"Mesh.9142", + "primitives":[ + { + "attributes":{ + "POSITION":10579, + "NORMAL":10580, + "TEXCOORD_0":10581 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.8944", + "primitives":[ + { + "attributes":{ + "POSITION":10582, + "NORMAL":10583, + "TEXCOORD_0":10584 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.7277", + "primitives":[ + { + "attributes":{ + "POSITION":10585, + "NORMAL":10586, + "TEXCOORD_0":10587 + }, + "indices":10588, + "material":7 + } + ] + }, + { + "name":"Mesh.2029", + "primitives":[ + { + "attributes":{ + "POSITION":10589, + "NORMAL":10590, + "TEXCOORD_0":10591 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8629", + "primitives":[ + { + "attributes":{ + "POSITION":10592, + "NORMAL":10593 + }, + "indices":3109, + "material":3 + } + ] + }, + { + "name":"Mesh.8521", + "primitives":[ + { + "attributes":{ + "POSITION":10594, + "NORMAL":10595 + }, + "indices":3445, + "material":3 + } + ] + }, + { + "name":"Mesh.8403", + "primitives":[ + { + "attributes":{ + "POSITION":10596, + "NORMAL":10597 + }, + "indices":8910, + "material":3 + } + ] + }, + { + "name":"Mesh.7780", + "primitives":[ + { + "attributes":{ + "POSITION":10598, + "NORMAL":10599 + }, + "indices":10600, + "material":3 + } + ] + }, + { + "name":"Mesh.299", + "primitives":[ + { + "attributes":{ + "POSITION":10601, + "NORMAL":10602, + "TEXCOORD_0":10603 + }, + "indices":2519, + "material":0 + } + ] + }, + { + "name":"Mesh.8942", + "primitives":[ + { + "attributes":{ + "POSITION":10604, + "NORMAL":10605, + "TEXCOORD_0":10606 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.6385", + "primitives":[ + { + "attributes":{ + "POSITION":10607, + "NORMAL":10608 + }, + "indices":10609, + "material":0 + } + ] + }, + { + "name":"Mesh.5075", + "primitives":[ + { + "attributes":{ + "POSITION":10610, + "NORMAL":10611, + "TEXCOORD_0":10612 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7206", + "primitives":[ + { + "attributes":{ + "POSITION":10613, + "NORMAL":10614, + "TEXCOORD_0":10615 + }, + "indices":4218, + "material":7 + } + ] + }, + { + "name":"Mesh.8005", + "primitives":[ + { + "attributes":{ + "POSITION":10616, + "NORMAL":10617, + "TEXCOORD_0":10618 + }, + "indices":2838, + "material":0 + } + ] + }, + { + "name":"Mesh.1734", + "primitives":[ + { + "attributes":{ + "POSITION":10619, + "NORMAL":10620 + }, + "indices":10621, + "material":31 + } + ] + }, + { + "name":"Mesh.683", + "primitives":[ + { + "attributes":{ + "POSITION":10622, + "NORMAL":10623, + "TEXCOORD_0":10624 + }, + "indices":10625, + "material":3 + } + ] + }, + { + "name":"Mesh.466", + "primitives":[ + { + "attributes":{ + "POSITION":10626, + "NORMAL":10627 + }, + "indices":1915, + "material":3 + } + ] + }, + { + "name":"Mesh.2769", + "primitives":[ + { + "attributes":{ + "POSITION":10628, + "NORMAL":10629, + "TEXCOORD_0":10630 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.5719", + "primitives":[ + { + "attributes":{ + "POSITION":10631, + "NORMAL":10632 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.2692", + "primitives":[ + { + "attributes":{ + "POSITION":10633, + "NORMAL":10634, + "TEXCOORD_0":10635 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.9056", + "primitives":[ + { + "attributes":{ + "POSITION":10636, + "NORMAL":10637, + "TEXCOORD_0":10638 + }, + "indices":2210, + "material":7 + } + ] + }, + { + "name":"Mesh.5044", + "primitives":[ + { + "attributes":{ + "POSITION":10639, + "NORMAL":10640, + "TEXCOORD_0":10641 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.036", + "primitives":[ + { + "attributes":{ + "POSITION":10642, + "NORMAL":10643 + }, + "indices":10644, + "material":22 + } + ] + }, + { + "name":"Mesh.7565", + "primitives":[ + { + "attributes":{ + "POSITION":10645, + "NORMAL":10646 + }, + "indices":9369, + "material":3 + } + ] + }, + { + "name":"Mesh.147", + "primitives":[ + { + "attributes":{ + "POSITION":10647, + "NORMAL":10648, + "TEXCOORD_0":10649 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5556", + "primitives":[ + { + "attributes":{ + "POSITION":10650, + "NORMAL":10651, + "TEXCOORD_0":10652 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1620", + "primitives":[ + { + "attributes":{ + "POSITION":10653, + "NORMAL":10654, + "TEXCOORD_0":10655 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.7073", + "primitives":[ + { + "attributes":{ + "POSITION":10656, + "NORMAL":10657, + "TEXCOORD_0":10658 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.6101", + "primitives":[ + { + "attributes":{ + "POSITION":10659, + "NORMAL":10660, + "TEXCOORD_0":10661 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.8335", + "primitives":[ + { + "attributes":{ + "POSITION":10662, + "NORMAL":10663 + }, + "indices":10664, + "material":3 + } + ] + }, + { + "name":"Mesh.2695", + "primitives":[ + { + "attributes":{ + "POSITION":10665, + "NORMAL":10666, + "TEXCOORD_0":10667 + }, + "indices":5170, + "material":0 + } + ] + }, + { + "name":"Mesh.2478", + "primitives":[ + { + "attributes":{ + "POSITION":10668, + "NORMAL":10669, + "TEXCOORD_0":10670 + }, + "indices":1746, + "material":0 + } + ] + }, + { + "name":"Mesh.2451", + "primitives":[ + { + "attributes":{ + "POSITION":10671, + "NORMAL":10672, + "TEXCOORD_0":10673 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.2163", + "primitives":[ + { + "attributes":{ + "POSITION":10674, + "NORMAL":10675, + "TEXCOORD_0":10676 + }, + "indices":2455, + "material":0 + } + ] + }, + { + "name":"Mesh.5471", + "primitives":[ + { + "attributes":{ + "POSITION":10677, + "NORMAL":10678, + "TEXCOORD_0":10679 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7289", + "primitives":[ + { + "attributes":{ + "POSITION":10680, + "NORMAL":10681, + "TEXCOORD_0":10682 + }, + "indices":10247, + "material":7 + } + ] + }, + { + "name":"Mesh.8079", + "primitives":[ + { + "attributes":{ + "POSITION":10683, + "NORMAL":10684 + }, + "indices":2420, + "material":3 + } + ] + }, + { + "name":"Mesh.1622", + "primitives":[ + { + "attributes":{ + "POSITION":10685, + "NORMAL":10686, + "TEXCOORD_0":10687 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.6357", + "primitives":[ + { + "attributes":{ + "POSITION":10688, + "NORMAL":10689 + }, + "indices":10690, + "material":0 + } + ] + }, + { + "name":"Mesh.2061", + "primitives":[ + { + "attributes":{ + "POSITION":10691, + "NORMAL":10692, + "TEXCOORD_0":10693 + }, + "indices":5187, + "material":3 + } + ] + }, + { + "name":"Mesh.8627", + "primitives":[ + { + "attributes":{ + "POSITION":10694, + "NORMAL":10695 + }, + "indices":10696, + "material":3 + } + ] + }, + { + "name":"Mesh.6533", + "primitives":[ + { + "attributes":{ + "POSITION":10697, + "NORMAL":10698 + }, + "indices":9933, + "material":0 + } + ] + }, + { + "name":"Mesh.5559", + "primitives":[ + { + "attributes":{ + "POSITION":10699, + "NORMAL":10700, + "TEXCOORD_0":10701 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1120", + "primitives":[ + { + "attributes":{ + "POSITION":10702, + "NORMAL":10703, + "TEXCOORD_0":10704 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.6246", + "primitives":[ + { + "attributes":{ + "POSITION":10705, + "NORMAL":10706, + "TEXCOORD_0":10707 + }, + "indices":615, + "material":20 + } + ] + }, + { + "name":"Mesh.8650", + "primitives":[ + { + "attributes":{ + "POSITION":10708, + "NORMAL":10709 + }, + "indices":4434, + "material":3 + } + ] + }, + { + "name":"Mesh.2474", + "primitives":[ + { + "attributes":{ + "POSITION":10710, + "NORMAL":10711, + "TEXCOORD_0":10712 + }, + "indices":10713, + "material":0 + } + ] + }, + { + "name":"Mesh.6390", + "primitives":[ + { + "attributes":{ + "POSITION":10714, + "NORMAL":10715 + }, + "indices":10716, + "material":0 + } + ] + }, + { + "name":"Mesh.8709", + "primitives":[ + { + "attributes":{ + "POSITION":10717, + "NORMAL":10718 + }, + "indices":9244, + "material":3 + } + ] + }, + { + "name":"Mesh.9028", + "primitives":[ + { + "attributes":{ + "POSITION":10719, + "NORMAL":10720, + "TEXCOORD_0":10721 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.478", + "primitives":[ + { + "attributes":{ + "POSITION":10722, + "NORMAL":10723 + }, + "indices":4505, + "material":3 + } + ] + }, + { + "name":"Mesh.2781", + "primitives":[ + { + "attributes":{ + "POSITION":10724, + "NORMAL":10725, + "TEXCOORD_0":10726 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.5016", + "primitives":[ + { + "attributes":{ + "POSITION":10727, + "NORMAL":10728, + "TEXCOORD_0":10729 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9068", + "primitives":[ + { + "attributes":{ + "POSITION":10730, + "NORMAL":10731, + "TEXCOORD_0":10732 + }, + "indices":1208, + "material":7 + } + ] + }, + { + "name":"Mesh.367", + "primitives":[ + { + "attributes":{ + "POSITION":10733, + "NORMAL":10734, + "TEXCOORD_0":10735 + }, + "indices":2221, + "material":0 + } + ] + }, + { + "name":"Mesh.4905", + "primitives":[ + { + "attributes":{ + "POSITION":10736, + "NORMAL":10737, + "TEXCOORD_0":10738 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9145", + "primitives":[ + { + "attributes":{ + "POSITION":10739, + "NORMAL":10740, + "TEXCOORD_0":10741 + }, + "indices":3382, + "material":7 + } + ] + }, + { + "name":"Mesh.8597", + "primitives":[ + { + "attributes":{ + "POSITION":10742, + "NORMAL":10743 + }, + "indices":10744, + "material":3 + } + ] + }, + { + "name":"Mesh.8671", + "primitives":[ + { + "attributes":{ + "POSITION":10745, + "NORMAL":10746 + }, + "indices":5701, + "material":3 + } + ] + }, + { + "name":"Mesh.8347", + "primitives":[ + { + "attributes":{ + "POSITION":10747, + "NORMAL":10748 + }, + "indices":5867, + "material":3 + } + ] + }, + { + "name":"Mesh.5457", + "primitives":[ + { + "attributes":{ + "POSITION":10749, + "NORMAL":10750, + "TEXCOORD_0":10751 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9065", + "primitives":[ + { + "attributes":{ + "POSITION":10752, + "NORMAL":10753, + "TEXCOORD_0":10754 + }, + "indices":59, + "material":7 + } + ] + }, + { + "name":"Mesh.7437", + "primitives":[ + { + "attributes":{ + "POSITION":10755, + "NORMAL":10756, + "TEXCOORD_0":10757 + }, + "indices":5903, + "material":7 + } + ] + }, + { + "name":"Mesh.6801", + "primitives":[ + { + "attributes":{ + "POSITION":10758, + "NORMAL":10759, + "TEXCOORD_0":10760 + }, + "indices":1599, + "material":0 + } + ] + }, + { + "name":"Mesh.2071", + "primitives":[ + { + "attributes":{ + "POSITION":10761, + "NORMAL":10762, + "TEXCOORD_0":10763 + }, + "indices":317, + "material":0 + } + ] + }, + { + "name":"Mesh.2380", + "primitives":[ + { + "attributes":{ + "POSITION":10764, + "NORMAL":10765, + "TEXCOORD_0":10766 + }, + "indices":1868, + "material":0 + } + ] + }, + { + "name":"Mesh.8611", + "primitives":[ + { + "attributes":{ + "POSITION":10767, + "NORMAL":10768 + }, + "indices":10664, + "material":3 + } + ] + }, + { + "name":"Mesh.2500", + "primitives":[ + { + "attributes":{ + "POSITION":10769, + "NORMAL":10770, + "TEXCOORD_0":10771 + }, + "indices":1060, + "material":0 + } + ] + }, + { + "name":"Mesh.5386", + "primitives":[ + { + "attributes":{ + "POSITION":10772, + "NORMAL":10773, + "TEXCOORD_0":10774 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7662", + "primitives":[ + { + "attributes":{ + "POSITION":10775, + "NORMAL":10776 + }, + "indices":10144, + "material":3 + } + ] + }, + { + "name":"Mesh.5321", + "primitives":[ + { + "attributes":{ + "POSITION":10777, + "NORMAL":10778, + "TEXCOORD_0":10779 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8316", + "primitives":[ + { + "attributes":{ + "POSITION":10780, + "NORMAL":10781 + }, + "indices":2292, + "material":3 + } + ] + }, + { + "name":"Mesh.191", + "primitives":[ + { + "attributes":{ + "POSITION":10782, + "NORMAL":10783, + "TEXCOORD_0":10784 + }, + "indices":10785, + "material":0 + } + ] + }, + { + "name":"Mesh.8165", + "primitives":[ + { + "attributes":{ + "POSITION":10786, + "NORMAL":10787 + }, + "indices":9358, + "material":3 + } + ] + }, + { + "name":"Mesh.8519", + "primitives":[ + { + "attributes":{ + "POSITION":10788, + "NORMAL":10789 + }, + "indices":10790, + "material":3 + } + ] + }, + { + "name":"Mesh.392", + "primitives":[ + { + "attributes":{ + "POSITION":10791, + "NORMAL":10792, + "TEXCOORD_0":10793 + }, + "indices":10794, + "material":0 + } + ] + }, + { + "name":"Mesh.7878", + "primitives":[ + { + "attributes":{ + "POSITION":10795, + "NORMAL":10796 + }, + "indices":10797, + "material":3 + } + ] + }, + { + "name":"Mesh.8713", + "primitives":[ + { + "attributes":{ + "POSITION":10798, + "NORMAL":10799 + }, + "indices":7720, + "material":3 + } + ] + }, + { + "name":"Mesh.2354", + "primitives":[ + { + "attributes":{ + "POSITION":10800, + "NORMAL":10801, + "TEXCOORD_0":10802 + }, + "indices":3601, + "material":0 + } + ] + }, + { + "name":"Mesh.7918", + "primitives":[ + { + "attributes":{ + "POSITION":10803, + "NORMAL":10804 + }, + "indices":10805, + "material":3 + } + ] + }, + { + "name":"Mesh.8390", + "primitives":[ + { + "attributes":{ + "POSITION":10806, + "NORMAL":10807 + }, + "indices":7550, + "material":3 + } + ] + }, + { + "name":"Mesh.7933", + "primitives":[ + { + "attributes":{ + "POSITION":10808, + "NORMAL":10809 + }, + "indices":10810, + "material":3 + } + ] + }, + { + "name":"Mesh.8374", + "primitives":[ + { + "attributes":{ + "POSITION":10811, + "NORMAL":10812 + }, + "indices":4434, + "material":3 + } + ] + }, + { + "name":"Mesh.018", + "primitives":[ + { + "attributes":{ + "POSITION":10813, + "NORMAL":10814, + "TEXCOORD_0":10815 + }, + "indices":10816, + "material":54 + } + ] + }, + { + "name":"Mesh.7329", + "primitives":[ + { + "attributes":{ + "POSITION":10817, + "NORMAL":10818, + "TEXCOORD_0":10819 + }, + "indices":9726, + "material":7 + } + ] + }, + { + "name":"Mesh.6699", + "primitives":[ + { + "attributes":{ + "POSITION":10820, + "NORMAL":10821 + }, + "indices":10822, + "material":0 + } + ] + }, + { + "name":"Mesh.7520", + "primitives":[ + { + "attributes":{ + "POSITION":10823, + "NORMAL":10824 + }, + "indices":10825, + "material":3 + } + ] + }, + { + "name":"Mesh.2743", + "primitives":[ + { + "attributes":{ + "POSITION":10826, + "NORMAL":10827, + "TEXCOORD_0":10828 + }, + "indices":296, + "material":4 + } + ] + }, + { + "name":"Mesh.1644", + "primitives":[ + { + "attributes":{ + "POSITION":10829, + "NORMAL":10830, + "TEXCOORD_0":10831 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.8319", + "primitives":[ + { + "attributes":{ + "POSITION":10832, + "NORMAL":10833 + }, + "indices":10834, + "material":3 + } + ] + }, + { + "name":"Mesh.8359", + "primitives":[ + { + "attributes":{ + "POSITION":10835, + "NORMAL":10836 + }, + "indices":1046, + "material":3 + } + ] + }, + { + "name":"Mesh.7736", + "primitives":[ + { + "attributes":{ + "POSITION":10837, + "NORMAL":10838 + }, + "indices":10839, + "material":3 + } + ] + }, + { + "name":"Mesh.1869", + "primitives":[ + { + "attributes":{ + "POSITION":10840, + "NORMAL":10841 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.7664", + "primitives":[ + { + "attributes":{ + "POSITION":10842, + "NORMAL":10843 + }, + "indices":6854, + "material":3 + } + ] + }, + { + "name":"Mesh.2081", + "primitives":[ + { + "attributes":{ + "POSITION":10844, + "NORMAL":10845, + "TEXCOORD_0":10846 + }, + "indices":3564, + "material":3 + } + ] + }, + { + "name":"Mesh.8321", + "primitives":[ + { + "attributes":{ + "POSITION":10847, + "NORMAL":10848 + }, + "indices":10744, + "material":3 + } + ] + }, + { + "name":"Mesh.7921", + "primitives":[ + { + "attributes":{ + "POSITION":10849, + "NORMAL":10850 + }, + "indices":10851, + "material":3 + } + ] + }, + { + "name":"Mesh.5031", + "primitives":[ + { + "attributes":{ + "POSITION":10852, + "NORMAL":10853, + "TEXCOORD_0":10854 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1943", + "primitives":[ + { + "attributes":{ + "POSITION":10855, + "NORMAL":10856 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.6557", + "primitives":[ + { + "attributes":{ + "POSITION":10857, + "NORMAL":10858 + }, + "indices":6295, + "material":0 + } + ] + }, + { + "name":"Mesh.7060", + "primitives":[ + { + "attributes":{ + "POSITION":10859, + "NORMAL":10860 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.864", + "primitives":[ + { + "attributes":{ + "POSITION":10861, + "NORMAL":10862, + "TEXCOORD_0":10863 + }, + "indices":3464, + "material":0 + } + ] + }, + { + "name":"Mesh.7276", + "primitives":[ + { + "attributes":{ + "POSITION":10864, + "NORMAL":10865, + "TEXCOORD_0":10866 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.8402", + "primitives":[ + { + "attributes":{ + "POSITION":10867, + "NORMAL":10868 + }, + "indices":10869, + "material":3 + } + ] + }, + { + "name":"Mesh.1083", + "primitives":[ + { + "attributes":{ + "POSITION":10870, + "NORMAL":10871, + "TEXCOORD_0":10872 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.6344", + "primitives":[ + { + "attributes":{ + "POSITION":10873, + "NORMAL":10874 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.300", + "primitives":[ + { + "attributes":{ + "POSITION":10875, + "NORMAL":10876, + "TEXCOORD_0":10877 + }, + "indices":10878, + "material":0 + } + ] + }, + { + "name":"Mesh.938", + "primitives":[ + { + "attributes":{ + "POSITION":10879, + "NORMAL":10880, + "TEXCOORD_0":10881 + }, + "indices":2307, + "material":0 + } + ] + }, + { + "name":"Mesh.2255", + "primitives":[ + { + "attributes":{ + "POSITION":10882, + "NORMAL":10883, + "TEXCOORD_0":10884 + }, + "indices":8294, + "material":0 + } + ] + }, + { + "name":"Mesh.8941", + "primitives":[ + { + "attributes":{ + "POSITION":10885, + "NORMAL":10886, + "TEXCOORD_0":10887 + }, + "indices":1208, + "material":7 + } + ] + }, + { + "name":"Mesh.6384", + "primitives":[ + { + "attributes":{ + "POSITION":10888, + "NORMAL":10889 + }, + "indices":10890, + "material":0 + } + ] + }, + { + "name":"Mesh.5074", + "primitives":[ + { + "attributes":{ + "POSITION":10891, + "NORMAL":10892, + "TEXCOORD_0":10893 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7205", + "primitives":[ + { + "attributes":{ + "POSITION":10894, + "NORMAL":10895, + "TEXCOORD_0":10896 + }, + "indices":10897, + "material":7 + } + ] + }, + { + "name":"Mesh.8004", + "primitives":[ + { + "attributes":{ + "POSITION":10898, + "NORMAL":10899, + "TEXCOORD_0":10900 + }, + "indices":3195, + "material":0 + } + ] + }, + { + "name":"Mesh.9022", + "primitives":[ + { + "attributes":{ + "POSITION":10901, + "NORMAL":10902, + "TEXCOORD_0":10903 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.9184", + "primitives":[ + { + "attributes":{ + "POSITION":10904, + "NORMAL":10905, + "TEXCOORD_0":10906 + }, + "indices":2564, + "material":7 + } + ] + }, + { + "name":"Mesh.8694", + "primitives":[ + { + "attributes":{ + "POSITION":10907, + "NORMAL":10908 + }, + "indices":1669, + "material":3 + } + ] + }, + { + "name":"Mesh.1209", + "primitives":[ + { + "attributes":{ + "POSITION":10909, + "NORMAL":10910 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.8790", + "primitives":[ + { + "attributes":{ + "POSITION":10911, + "NORMAL":10912 + }, + "indices":6100, + "material":3 + } + ] + }, + { + "name":"Mesh.169", + "primitives":[ + { + "attributes":{ + "POSITION":10913, + "NORMAL":10914, + "TEXCOORD_0":10915 + }, + "indices":10916, + "material":0 + } + ] + }, + { + "name":"Mesh.9055", + "primitives":[ + { + "attributes":{ + "POSITION":10917, + "NORMAL":10918, + "TEXCOORD_0":10919 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.160", + "primitives":[ + { + "attributes":{ + "POSITION":10920, + "NORMAL":10921, + "TEXCOORD_0":10922 + }, + "indices":1013, + "material":0 + } + ] + }, + { + "name":"Mesh.1086", + "primitives":[ + { + "attributes":{ + "POSITION":10923, + "NORMAL":10924, + "TEXCOORD_0":10925 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.5555", + "primitives":[ + { + "attributes":{ + "POSITION":10926, + "NORMAL":10927, + "TEXCOORD_0":10928 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1619", + "primitives":[ + { + "attributes":{ + "POSITION":10929, + "NORMAL":10930, + "TEXCOORD_0":10931 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.6100", + "primitives":[ + { + "attributes":{ + "POSITION":10932, + "NORMAL":10933, + "TEXCOORD_0":10934 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.9098", + "primitives":[ + { + "attributes":{ + "POSITION":10935, + "NORMAL":10936, + "TEXCOORD_0":10937 + }, + "indices":1307, + "material":7 + } + ] + }, + { + "name":"Mesh.7248", + "primitives":[ + { + "attributes":{ + "POSITION":10938, + "NORMAL":10939, + "TEXCOORD_0":10940 + }, + "indices":4257, + "material":7 + } + ] + }, + { + "name":"Mesh.426", + "primitives":[ + { + "attributes":{ + "POSITION":10941, + "NORMAL":10942 + }, + "indices":2248, + "material":0 + } + ] + }, + { + "name":"Mesh.2162", + "primitives":[ + { + "attributes":{ + "POSITION":10943, + "NORMAL":10944, + "TEXCOORD_0":10945 + }, + "indices":10946, + "material":0 + } + ] + }, + { + "name":"Mesh.097", + "primitives":[ + { + "attributes":{ + "POSITION":10947, + "NORMAL":10948, + "TEXCOORD_0":10949 + }, + "indices":10950, + "material":0 + } + ] + }, + { + "name":"Mesh.8078", + "primitives":[ + { + "attributes":{ + "POSITION":10951, + "NORMAL":10952 + }, + "indices":2766, + "material":3 + } + ] + }, + { + "name":"Mesh.6356", + "primitives":[ + { + "attributes":{ + "POSITION":10953, + "NORMAL":10954 + }, + "indices":4847, + "material":0 + } + ] + }, + { + "name":"Mesh.2060", + "primitives":[ + { + "attributes":{ + "POSITION":10955, + "NORMAL":10956, + "TEXCOORD_0":10957 + }, + "indices":5510, + "material":0 + } + ] + }, + { + "name":"Mesh.1924", + "primitives":[ + { + "attributes":{ + "POSITION":10958, + "NORMAL":10959 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.8626", + "primitives":[ + { + "attributes":{ + "POSITION":10960, + "NORMAL":10961 + }, + "indices":3079, + "material":3 + } + ] + }, + { + "name":"Mesh.9048", + "primitives":[ + { + "attributes":{ + "POSITION":10962, + "NORMAL":10963, + "TEXCOORD_0":10964 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.2344", + "primitives":[ + { + "attributes":{ + "POSITION":10965, + "NORMAL":10966, + "TEXCOORD_0":10967 + }, + "indices":1868, + "material":0 + } + ] + }, + { + "name":"Mesh.8826", + "primitives":[ + { + "attributes":{ + "POSITION":10968, + "NORMAL":10969 + }, + "indices":10970, + "material":3 + } + ] + }, + { + "name":"Mesh.6532", + "primitives":[ + { + "attributes":{ + "POSITION":10971, + "NORMAL":10972, + "TEXCOORD_0":10973 + }, + "indices":3235, + "material":0 + } + ] + }, + { + "name":"Mesh.2100", + "primitives":[ + { + "attributes":{ + "POSITION":10974, + "NORMAL":10975, + "TEXCOORD_0":10976 + }, + "indices":2303, + "material":3 + } + ] + }, + { + "name":"Mesh.694", + "primitives":[ + { + "attributes":{ + "POSITION":10977, + "NORMAL":10978, + "TEXCOORD_0":10979 + }, + "indices":4596, + "material":0 + } + ] + }, + { + "name":"Mesh.477", + "primitives":[ + { + "attributes":{ + "POSITION":10980, + "NORMAL":10981 + }, + "indices":8159, + "material":3 + } + ] + }, + { + "name":"Mesh.2780", + "primitives":[ + { + "attributes":{ + "POSITION":10982, + "NORMAL":10983, + "TEXCOORD_0":10984 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.919", + "primitives":[ + { + "attributes":{ + "POSITION":10985, + "NORMAL":10986, + "TEXCOORD_0":10987 + }, + "indices":136, + "material":0 + } + ] + }, + { + "name":"Mesh.2493", + "primitives":[ + { + "attributes":{ + "POSITION":10988, + "NORMAL":10989, + "TEXCOORD_0":10990 + }, + "indices":10991, + "material":0 + } + ] + }, + { + "name":"Mesh.8197", + "primitives":[ + { + "attributes":{ + "POSITION":10992, + "NORMAL":10993 + }, + "indices":10994, + "material":3 + } + ] + }, + { + "name":"Mesh.4904", + "primitives":[ + { + "attributes":{ + "POSITION":10995, + "NORMAL":10996, + "TEXCOORD_0":10997 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1141", + "primitives":[ + { + "attributes":{ + "POSITION":10998, + "NORMAL":10999, + "TEXCOORD_0":11000 + }, + "indices":11001, + "material":0 + } + ] + }, + { + "name":"Mesh.1631", + "primitives":[ + { + "attributes":{ + "POSITION":11002, + "NORMAL":11003, + "TEXCOORD_0":11004 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.1111", + "primitives":[ + { + "attributes":{ + "POSITION":11005, + "NORMAL":11006, + "TEXCOORD_0":11007 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.6726", + "primitives":[ + { + "attributes":{ + "POSITION":11008, + "NORMAL":11009 + }, + "indices":4661, + "material":0 + } + ] + }, + { + "name":"Mesh.8346", + "primitives":[ + { + "attributes":{ + "POSITION":11010, + "NORMAL":11011 + }, + "indices":2365, + "material":3 + } + ] + }, + { + "name":"Mesh.5456", + "primitives":[ + { + "attributes":{ + "POSITION":11012, + "NORMAL":11013, + "TEXCOORD_0":11014 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7436", + "primitives":[ + { + "attributes":{ + "POSITION":11015, + "NORMAL":11016, + "TEXCOORD_0":11017 + }, + "indices":6265, + "material":7 + } + ] + }, + { + "name":"Mesh.118", + "primitives":[ + { + "attributes":{ + "POSITION":11018, + "NORMAL":11019, + "TEXCOORD_0":11020 + }, + "indices":11021, + "material":0 + } + ] + }, + { + "name":"Mesh.395", + "primitives":[ + { + "attributes":{ + "POSITION":11022, + "NORMAL":11023, + "TEXCOORD_0":11024 + }, + "indices":6459, + "material":0 + } + ] + }, + { + "name":"Mesh.6303", + "primitives":[ + { + "attributes":{ + "POSITION":11025, + "NORMAL":11026, + "TEXCOORD_0":11027 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.2678", + "primitives":[ + { + "attributes":{ + "POSITION":11028, + "NORMAL":11029, + "TEXCOORD_0":11030 + }, + "indices":2307, + "material":0 + } + ] + }, + { + "name":"Mesh.5385", + "primitives":[ + { + "attributes":{ + "POSITION":11031, + "NORMAL":11032, + "TEXCOORD_0":11033 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2536", + "primitives":[ + { + "attributes":{ + "POSITION":11034, + "NORMAL":11035, + "TEXCOORD_0":11036 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.364", + "primitives":[ + { + "attributes":{ + "POSITION":11037, + "NORMAL":11038, + "TEXCOORD_0":11039 + }, + "indices":3241, + "material":0 + } + ] + }, + { + "name":"Mesh.8315", + "primitives":[ + { + "attributes":{ + "POSITION":11040, + "NORMAL":11041 + }, + "indices":11042, + "material":3 + } + ] + }, + { + "name":"Mesh.5939", + "primitives":[ + { + "attributes":{ + "POSITION":11043, + "NORMAL":11044, + "TEXCOORD_0":11045 + }, + "indices":11046, + "material":12 + } + ] + }, + { + "name":"Mesh.8164", + "primitives":[ + { + "attributes":{ + "POSITION":11047, + "NORMAL":11048 + }, + "indices":9770, + "material":3 + } + ] + }, + { + "name":"Mesh.8518", + "primitives":[ + { + "attributes":{ + "POSITION":11049, + "NORMAL":11050 + }, + "indices":4649, + "material":3 + } + ] + }, + { + "name":"Mesh.391", + "primitives":[ + { + "attributes":{ + "POSITION":11051, + "NORMAL":11052, + "TEXCOORD_0":11053 + }, + "indices":4671, + "material":0 + } + ] + }, + { + "name":"Mesh.7877", + "primitives":[ + { + "attributes":{ + "POSITION":11054, + "NORMAL":11055 + }, + "indices":11056, + "material":3 + } + ] + }, + { + "name":"Mesh.2353", + "primitives":[ + { + "attributes":{ + "POSITION":11057, + "NORMAL":11058, + "TEXCOORD_0":11059 + }, + "indices":3972, + "material":0 + } + ] + }, + { + "name":"Mesh.483", + "primitives":[ + { + "attributes":{ + "POSITION":11060, + "NORMAL":11061 + }, + "indices":9358, + "material":3 + } + ] + }, + { + "name":"Mesh.8232", + "primitives":[ + { + "attributes":{ + "POSITION":11062, + "NORMAL":11063 + }, + "indices":10578, + "material":3 + } + ] + }, + { + "name":"Mesh.1714", + "primitives":[ + { + "attributes":{ + "POSITION":11064, + "NORMAL":11065, + "TEXCOORD_0":11066 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.8389", + "primitives":[ + { + "attributes":{ + "POSITION":11067, + "NORMAL":11068 + }, + "indices":7926, + "material":3 + } + ] + }, + { + "name":"Mesh.5499", + "primitives":[ + { + "attributes":{ + "POSITION":11069, + "NORMAL":11070, + "TEXCOORD_0":11071 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9043", + "primitives":[ + { + "attributes":{ + "POSITION":11072, + "NORMAL":11073, + "TEXCOORD_0":11074 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.1899", + "primitives":[ + { + "attributes":{ + "POSITION":11075, + "NORMAL":11076 + }, + "indices":3642, + "material":0 + } + ] + }, + { + "name":"Mesh.017", + "primitives":[ + { + "attributes":{ + "POSITION":11077, + "NORMAL":11078, + "TEXCOORD_0":11079 + }, + "indices":11080, + "material":41 + } + ] + }, + { + "name":"Mesh.6698", + "primitives":[ + { + "attributes":{ + "POSITION":11081, + "NORMAL":11082 + }, + "indices":4577, + "material":0 + } + ] + }, + { + "name":"Mesh.8243", + "primitives":[ + { + "attributes":{ + "POSITION":11083, + "NORMAL":11084 + }, + "indices":4307, + "material":3 + } + ] + }, + { + "name":"Mesh.7519", + "primitives":[ + { + "attributes":{ + "POSITION":11085, + "NORMAL":11086 + }, + "indices":11087, + "material":3 + } + ] + }, + { + "name":"Mesh.1643", + "primitives":[ + { + "attributes":{ + "POSITION":11088, + "NORMAL":11089, + "TEXCOORD_0":11090 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.1624", + "primitives":[ + { + "attributes":{ + "POSITION":11091, + "NORMAL":11092, + "TEXCOORD_0":11093 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.9070", + "primitives":[ + { + "attributes":{ + "POSITION":11094, + "NORMAL":11095, + "TEXCOORD_0":11096 + }, + "indices":971, + "material":7 + } + ] + }, + { + "name":"Mesh.1828", + "primitives":[ + { + "attributes":{ + "POSITION":11097, + "NORMAL":11098 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8358", + "primitives":[ + { + "attributes":{ + "POSITION":11099, + "NORMAL":11100 + }, + "indices":1382, + "material":3 + } + ] + }, + { + "name":"Mesh.7786", + "primitives":[ + { + "attributes":{ + "POSITION":11101, + "NORMAL":11102 + }, + "indices":11103, + "material":3 + } + ] + }, + { + "name":"Mesh.1036", + "primitives":[ + { + "attributes":{ + "POSITION":11104, + "NORMAL":11105, + "TEXCOORD_0":11106 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.7735", + "primitives":[ + { + "attributes":{ + "POSITION":11107, + "NORMAL":11108 + }, + "indices":11109, + "material":3 + } + ] + }, + { + "name":"Mesh.1868", + "primitives":[ + { + "attributes":{ + "POSITION":11110, + "NORMAL":11111, + "TEXCOORD_0":11112 + }, + "indices":3276, + "material":6 + } + ] + }, + { + "name":"Mesh.5030", + "primitives":[ + { + "attributes":{ + "POSITION":11113, + "NORMAL":11114, + "TEXCOORD_0":11115 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2396", + "primitives":[ + { + "attributes":{ + "POSITION":11116, + "NORMAL":11117 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6053", + "primitives":[ + { + "attributes":{ + "POSITION":11118, + "NORMAL":11119, + "TEXCOORD_0":11120 + }, + "indices":7004, + "material":12 + } + ] + }, + { + "name":"Mesh.050", + "primitives":[ + { + "attributes":{ + "POSITION":11121, + "NORMAL":11122, + "TEXCOORD_0":11123 + }, + "indices":6783, + "material":47 + } + ] + }, + { + "name":"Mesh.6556", + "primitives":[ + { + "attributes":{ + "POSITION":11124, + "NORMAL":11125 + }, + "indices":5370, + "material":0 + } + ] + }, + { + "name":"Mesh.7059", + "primitives":[ + { + "attributes":{ + "POSITION":11126, + "NORMAL":11127, + "TEXCOORD_0":11128 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.9017", + "primitives":[ + { + "attributes":{ + "POSITION":11129, + "NORMAL":11130, + "TEXCOORD_0":11131 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.1127", + "primitives":[ + { + "attributes":{ + "POSITION":11132, + "NORMAL":11133, + "TEXCOORD_0":11134 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.6269", + "primitives":[ + { + "attributes":{ + "POSITION":11135, + "NORMAL":11136, + "TEXCOORD_0":11137 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.863", + "primitives":[ + { + "attributes":{ + "POSITION":11138, + "NORMAL":11139, + "TEXCOORD_0":11140 + }, + "indices":3831, + "material":0 + } + ] + }, + { + "name":"Mesh.7562", + "primitives":[ + { + "attributes":{ + "POSITION":11141, + "NORMAL":11142 + }, + "indices":222, + "material":3 + } + ] + }, + { + "name":"Mesh.7889", + "primitives":[ + { + "attributes":{ + "POSITION":11143, + "NORMAL":11144 + }, + "indices":11145, + "material":3 + } + ] + }, + { + "name":"Mesh.4999", + "primitives":[ + { + "attributes":{ + "POSITION":11146, + "NORMAL":11147, + "TEXCOORD_0":11148 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7275", + "primitives":[ + { + "attributes":{ + "POSITION":11149, + "NORMAL":11150, + "TEXCOORD_0":11151 + }, + "indices":8746, + "material":7 + } + ] + }, + { + "name":"Mesh.5185", + "primitives":[ + { + "attributes":{ + "POSITION":11152, + "NORMAL":11153, + "TEXCOORD_0":11154 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8401", + "primitives":[ + { + "attributes":{ + "POSITION":11155, + "NORMAL":11156 + }, + "indices":11157, + "material":3 + } + ] + }, + { + "name":"Mesh.1082", + "primitives":[ + { + "attributes":{ + "POSITION":11158, + "NORMAL":11159, + "TEXCOORD_0":11160 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.6343", + "primitives":[ + { + "attributes":{ + "POSITION":11161, + "NORMAL":11162 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.2254", + "primitives":[ + { + "attributes":{ + "POSITION":11163, + "NORMAL":11164, + "TEXCOORD_0":11165 + }, + "indices":1878, + "material":0 + } + ] + }, + { + "name":"Mesh.8940", + "primitives":[ + { + "attributes":{ + "POSITION":11166, + "NORMAL":11167, + "TEXCOORD_0":11168 + }, + "indices":7501, + "material":7 + } + ] + }, + { + "name":"Mesh.5073", + "primitives":[ + { + "attributes":{ + "POSITION":11169, + "NORMAL":11170, + "TEXCOORD_0":11171 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1167", + "primitives":[ + { + "attributes":{ + "POSITION":11172, + "NORMAL":11173 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.9096", + "primitives":[ + { + "attributes":{ + "POSITION":11174, + "NORMAL":11175, + "TEXCOORD_0":11176 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.4928", + "primitives":[ + { + "attributes":{ + "POSITION":11177, + "NORMAL":11178, + "TEXCOORD_0":11179 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7204", + "primitives":[ + { + "attributes":{ + "POSITION":11180, + "NORMAL":11181, + "TEXCOORD_0":11182 + }, + "indices":11183, + "material":7 + } + ] + }, + { + "name":"Mesh.6332", + "primitives":[ + { + "attributes":{ + "POSITION":11184, + "NORMAL":11185 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.8003", + "primitives":[ + { + "attributes":{ + "POSITION":11186, + "NORMAL":11187, + "TEXCOORD_0":11188 + }, + "indices":3573, + "material":3 + } + ] + }, + { + "name":"Mesh.7365", + "primitives":[ + { + "attributes":{ + "POSITION":11189, + "NORMAL":11190, + "TEXCOORD_0":11191 + }, + "indices":11192, + "material":7 + } + ] + }, + { + "name":"Mesh.681", + "primitives":[ + { + "attributes":{ + "POSITION":11193, + "NORMAL":11194, + "TEXCOORD_0":11195 + }, + "indices":11196, + "material":3 + } + ] + }, + { + "name":"Mesh.1008", + "primitives":[ + { + "attributes":{ + "POSITION":11197, + "NORMAL":11198, + "TEXCOORD_0":11199 + }, + "indices":2307, + "material":0 + } + ] + }, + { + "name":"Mesh.5153", + "primitives":[ + { + "attributes":{ + "POSITION":11200, + "NORMAL":11201, + "TEXCOORD_0":11202 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1208", + "primitives":[ + { + "attributes":{ + "POSITION":11203, + "NORMAL":11204 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.397", + "primitives":[ + { + "attributes":{ + "POSITION":11205, + "NORMAL":11206, + "TEXCOORD_0":11207 + }, + "indices":1868, + "material":0 + } + ] + }, + { + "name":"Mesh.5042", + "primitives":[ + { + "attributes":{ + "POSITION":11208, + "NORMAL":11209, + "TEXCOORD_0":11210 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2408", + "primitives":[ + { + "attributes":{ + "POSITION":11211, + "NORMAL":11212, + "TEXCOORD_0":11213 + }, + "indices":4958, + "material":0 + } + ] + }, + { + "name":"Mesh.2014", + "primitives":[ + { + "attributes":{ + "POSITION":11214, + "NORMAL":11215, + "TEXCOORD_0":11216 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8386", + "primitives":[ + { + "attributes":{ + "POSITION":11217, + "NORMAL":11218 + }, + "indices":4518, + "material":3 + } + ] + }, + { + "name":"Mesh.8776", + "primitives":[ + { + "attributes":{ + "POSITION":11219, + "NORMAL":11220 + }, + "indices":8980, + "material":3 + } + ] + }, + { + "name":"Mesh.5554", + "primitives":[ + { + "attributes":{ + "POSITION":11221, + "NORMAL":11222, + "TEXCOORD_0":11223 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6345", + "primitives":[ + { + "attributes":{ + "POSITION":11224, + "NORMAL":11225 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8425", + "primitives":[ + { + "attributes":{ + "POSITION":11226, + "NORMAL":11227 + }, + "indices":11228, + "material":3 + } + ] + }, + { + "name":"Mesh.6099", + "primitives":[ + { + "attributes":{ + "POSITION":11229, + "NORMAL":11230, + "TEXCOORD_0":11231 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.1177", + "primitives":[ + { + "attributes":{ + "POSITION":11232, + "NORMAL":11233 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.2435", + "primitives":[ + { + "attributes":{ + "POSITION":11234, + "NORMAL":11235, + "TEXCOORD_0":11236 + }, + "indices":313, + "material":4 + } + ] + }, + { + "name":"Mesh.7247", + "primitives":[ + { + "attributes":{ + "POSITION":11237, + "NORMAL":11238, + "TEXCOORD_0":11239 + }, + "indices":4633, + "material":7 + } + ] + }, + { + "name":"Mesh.2449", + "primitives":[ + { + "attributes":{ + "POSITION":11240, + "NORMAL":11241, + "TEXCOORD_0":11242 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.2161", + "primitives":[ + { + "attributes":{ + "POSITION":11243, + "NORMAL":11244, + "TEXCOORD_0":11245 + }, + "indices":11246, + "material":0 + } + ] + }, + { + "name":"Mesh.7287", + "primitives":[ + { + "attributes":{ + "POSITION":11247, + "NORMAL":11248, + "TEXCOORD_0":11249 + }, + "indices":11250, + "material":7 + } + ] + }, + { + "name":"Mesh.2489", + "primitives":[ + { + "attributes":{ + "POSITION":11251, + "NORMAL":11252, + "TEXCOORD_0":11253 + }, + "indices":11254, + "material":0 + } + ] + }, + { + "name":"Mesh.8077", + "primitives":[ + { + "attributes":{ + "POSITION":11255, + "NORMAL":11256 + }, + "indices":3109, + "material":3 + } + ] + }, + { + "name":"Mesh.8684", + "primitives":[ + { + "attributes":{ + "POSITION":11257, + "NORMAL":11258 + }, + "indices":517, + "material":3 + } + ] + }, + { + "name":"Mesh.8816", + "primitives":[ + { + "attributes":{ + "POSITION":11259, + "NORMAL":11260 + }, + "indices":7017, + "material":3 + } + ] + }, + { + "name":"Mesh.6355", + "primitives":[ + { + "attributes":{ + "POSITION":11261, + "NORMAL":11262 + }, + "indices":11263, + "material":0 + } + ] + }, + { + "name":"Mesh.8240", + "primitives":[ + { + "attributes":{ + "POSITION":11264, + "NORMAL":11265 + }, + "indices":5354, + "material":3 + } + ] + }, + { + "name":"Mesh.8465", + "primitives":[ + { + "attributes":{ + "POSITION":11266, + "NORMAL":11267 + }, + "indices":9096, + "material":3 + } + ] + }, + { + "name":"Mesh.1923", + "primitives":[ + { + "attributes":{ + "POSITION":11268, + "NORMAL":11269 + }, + "indices":2624, + "material":0 + } + ] + }, + { + "name":"Mesh.8625", + "primitives":[ + { + "attributes":{ + "POSITION":11270, + "NORMAL":11271 + }, + "indices":4899, + "material":3 + } + ] + }, + { + "name":"Mesh.8591", + "primitives":[ + { + "attributes":{ + "POSITION":11272, + "NORMAL":11273 + }, + "indices":11042, + "material":3 + } + ] + }, + { + "name":"Mesh.6531", + "primitives":[ + { + "attributes":{ + "POSITION":11274, + "NORMAL":11275, + "TEXCOORD_0":11276 + }, + "indices":5728, + "material":0 + } + ] + }, + { + "name":"Mesh.2099", + "primitives":[ + { + "attributes":{ + "POSITION":11277, + "NORMAL":11278, + "TEXCOORD_0":11279 + }, + "indices":2663, + "material":3 + } + ] + }, + { + "name":"Mesh.270", + "primitives":[ + { + "attributes":{ + "POSITION":11280, + "NORMAL":11281, + "TEXCOORD_0":11282 + }, + "indices":11283, + "material":3 + } + ] + }, + { + "name":"Mesh.693", + "primitives":[ + { + "attributes":{ + "POSITION":11284, + "NORMAL":11285, + "TEXCOORD_0":11286 + }, + "indices":1479, + "material":0 + } + ] + }, + { + "name":"Mesh.7824", + "primitives":[ + { + "attributes":{ + "POSITION":11287, + "NORMAL":11288 + }, + "indices":11289, + "material":3 + } + ] + }, + { + "name":"Mesh.6611", + "primitives":[ + { + "attributes":{ + "POSITION":11290, + "NORMAL":11291 + }, + "indices":11292, + "material":0 + } + ] + }, + { + "name":"Mesh.476", + "primitives":[ + { + "attributes":{ + "POSITION":11293, + "NORMAL":11294 + }, + "indices":8875, + "material":3 + } + ] + }, + { + "name":"Mesh.2779", + "primitives":[ + { + "attributes":{ + "POSITION":11295, + "NORMAL":11296, + "TEXCOORD_0":11297 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.5014", + "primitives":[ + { + "attributes":{ + "POSITION":11298, + "NORMAL":11299, + "TEXCOORD_0":11300 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1731", + "primitives":[ + { + "attributes":{ + "POSITION":11301, + "NORMAL":11302 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.8514", + "primitives":[ + { + "attributes":{ + "POSITION":11303, + "NORMAL":11304 + }, + "indices":11305, + "material":3 + } + ] + }, + { + "name":"Mesh.918", + "primitives":[ + { + "attributes":{ + "POSITION":11306, + "NORMAL":11307, + "TEXCOORD_0":11308 + }, + "indices":887, + "material":0 + } + ] + }, + { + "name":"Mesh.2492", + "primitives":[ + { + "attributes":{ + "POSITION":11309, + "NORMAL":11310, + "TEXCOORD_0":11311 + }, + "indices":2156, + "material":0 + } + ] + }, + { + "name":"Mesh.4903", + "primitives":[ + { + "attributes":{ + "POSITION":11312, + "NORMAL":11313, + "TEXCOORD_0":11314 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1140", + "primitives":[ + { + "attributes":{ + "POSITION":11315, + "NORMAL":11316, + "TEXCOORD_0":11317 + }, + "indices":11318, + "material":0 + } + ] + }, + { + "name":"Mesh.1630", + "primitives":[ + { + "attributes":{ + "POSITION":11319, + "NORMAL":11320, + "TEXCOORD_0":11321 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.6725", + "primitives":[ + { + "attributes":{ + "POSITION":11322, + "NORMAL":11323 + }, + "indices":6295, + "material":0 + } + ] + }, + { + "name":"Mesh.847", + "primitives":[ + { + "attributes":{ + "POSITION":11324, + "NORMAL":11325, + "TEXCOORD_0":11326 + }, + "indices":380, + "material":0 + } + ] + }, + { + "name":"Mesh.8345", + "primitives":[ + { + "attributes":{ + "POSITION":11327, + "NORMAL":11328 + }, + "indices":3071, + "material":3 + } + ] + }, + { + "name":"Mesh.5455", + "primitives":[ + { + "attributes":{ + "POSITION":11329, + "NORMAL":11330, + "TEXCOORD_0":11331 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8617", + "primitives":[ + { + "attributes":{ + "POSITION":11332, + "NORMAL":11333 + }, + "indices":11334, + "material":3 + } + ] + }, + { + "name":"Mesh.7435", + "primitives":[ + { + "attributes":{ + "POSITION":11335, + "NORMAL":11336, + "TEXCOORD_0":11337 + }, + "indices":6605, + "material":7 + } + ] + }, + { + "name":"Mesh.8500", + "primitives":[ + { + "attributes":{ + "POSITION":11338, + "NORMAL":11339 + }, + "indices":8980, + "material":3 + } + ] + }, + { + "name":"Mesh.7868", + "primitives":[ + { + "attributes":{ + "POSITION":11340, + "NORMAL":11341 + }, + "indices":11342, + "material":3 + } + ] + }, + { + "name":"Mesh.6260", + "primitives":[ + { + "attributes":{ + "POSITION":11343, + "NORMAL":11344, + "TEXCOORD_0":11345 + }, + "indices":9545, + "material":11 + } + ] + }, + { + "name":"Mesh.2677", + "primitives":[ + { + "attributes":{ + "POSITION":11346, + "NORMAL":11347, + "TEXCOORD_0":11348 + }, + "indices":2307, + "material":0 + } + ] + }, + { + "name":"Mesh.5384", + "primitives":[ + { + "attributes":{ + "POSITION":11349, + "NORMAL":11350, + "TEXCOORD_0":11351 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2535", + "primitives":[ + { + "attributes":{ + "POSITION":11352, + "NORMAL":11353, + "TEXCOORD_0":11354 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.577", + "primitives":[ + { + "attributes":{ + "POSITION":11355, + "NORMAL":11356, + "TEXCOORD_0":11357 + }, + "indices":11358, + "material":0 + } + ] + }, + { + "name":"Mesh.8314", + "primitives":[ + { + "attributes":{ + "POSITION":11359, + "NORMAL":11360 + }, + "indices":11361, + "material":3 + } + ] + }, + { + "name":"Mesh.189", + "primitives":[ + { + "attributes":{ + "POSITION":11362, + "NORMAL":11363, + "TEXCOORD_0":11364 + }, + "indices":11365, + "material":0 + } + ] + }, + { + "name":"Mesh.1824", + "primitives":[ + { + "attributes":{ + "POSITION":11366, + "NORMAL":11367 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8517", + "primitives":[ + { + "attributes":{ + "POSITION":11368, + "NORMAL":11369 + }, + "indices":11370, + "material":3 + } + ] + }, + { + "name":"Mesh.390", + "primitives":[ + { + "attributes":{ + "POSITION":11371, + "NORMAL":11372, + "TEXCOORD_0":11373 + }, + "indices":2417, + "material":0 + } + ] + }, + { + "name":"Mesh.7876", + "primitives":[ + { + "attributes":{ + "POSITION":11374, + "NORMAL":11375 + }, + "indices":11376, + "material":3 + } + ] + }, + { + "name":"Mesh.261", + "primitives":[ + { + "attributes":{ + "POSITION":11377, + "NORMAL":11378, + "TEXCOORD_0":11379 + }, + "indices":11380, + "material":3 + } + ] + }, + { + "name":"Mesh.2352", + "primitives":[ + { + "attributes":{ + "POSITION":11381, + "NORMAL":11382, + "TEXCOORD_0":11383 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.1713", + "primitives":[ + { + "attributes":{ + "POSITION":11384, + "NORMAL":11385, + "TEXCOORD_0":11386 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.5498", + "primitives":[ + { + "attributes":{ + "POSITION":11387, + "NORMAL":11388, + "TEXCOORD_0":11389 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1898", + "primitives":[ + { + "attributes":{ + "POSITION":11390, + "NORMAL":11391 + }, + "indices":2743, + "material":0 + } + ] + }, + { + "name":"Mesh.8791", + "primitives":[ + { + "attributes":{ + "POSITION":11392, + "NORMAL":11393 + }, + "indices":5724, + "material":3 + } + ] + }, + { + "name":"Mesh.6697", + "primitives":[ + { + "attributes":{ + "POSITION":11394, + "NORMAL":11395 + }, + "indices":11396, + "material":0 + } + ] + }, + { + "name":"Mesh.7518", + "primitives":[ + { + "attributes":{ + "POSITION":11397, + "NORMAL":11398 + }, + "indices":11399, + "material":3 + } + ] + }, + { + "name":"Mesh.1642", + "primitives":[ + { + "attributes":{ + "POSITION":11400, + "NORMAL":11401, + "TEXCOORD_0":11402 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.7165", + "primitives":[ + { + "attributes":{ + "POSITION":11403, + "NORMAL":11404, + "TEXCOORD_0":11405 + }, + "indices":11406, + "material":7 + } + ] + }, + { + "name":"Mesh.149", + "primitives":[ + { + "attributes":{ + "POSITION":11407, + "NORMAL":11408, + "TEXCOORD_0":11409 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7860", + "primitives":[ + { + "attributes":{ + "POSITION":11410, + "NORMAL":11411 + }, + "indices":11412, + "material":3 + } + ] + }, + { + "name":"Mesh.8301", + "primitives":[ + { + "attributes":{ + "POSITION":11413, + "NORMAL":11414 + }, + "indices":1292, + "material":3 + } + ] + }, + { + "name":"Mesh.1827", + "primitives":[ + { + "attributes":{ + "POSITION":11415, + "NORMAL":11416 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8357", + "primitives":[ + { + "attributes":{ + "POSITION":11417, + "NORMAL":11418 + }, + "indices":1707, + "material":3 + } + ] + }, + { + "name":"Mesh.1035", + "primitives":[ + { + "attributes":{ + "POSITION":11419, + "NORMAL":11420, + "TEXCOORD_0":11421 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.7734", + "primitives":[ + { + "attributes":{ + "POSITION":11422, + "NORMAL":11423 + }, + "indices":11424, + "material":3 + } + ] + }, + { + "name":"Mesh.5029", + "primitives":[ + { + "attributes":{ + "POSITION":11425, + "NORMAL":11426, + "TEXCOORD_0":11427 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2395", + "primitives":[ + { + "attributes":{ + "POSITION":11428, + "NORMAL":11429 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6052", + "primitives":[ + { + "attributes":{ + "POSITION":11430, + "NORMAL":11431, + "TEXCOORD_0":11432 + }, + "indices":321, + "material":12 + } + ] + }, + { + "name":"Mesh.049", + "primitives":[ + { + "attributes":{ + "POSITION":11433, + "NORMAL":11434, + "TEXCOORD_0":11435 + }, + "indices":7205, + "material":28 + } + ] + }, + { + "name":"Mesh.1978", + "primitives":[ + { + "attributes":{ + "POSITION":11436, + "NORMAL":11437, + "TEXCOORD_0":11438 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.973", + "primitives":[ + { + "attributes":{ + "POSITION":11439, + "NORMAL":11440, + "TEXCOORD_0":11441 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.6555", + "primitives":[ + { + "attributes":{ + "POSITION":11442, + "NORMAL":11443 + }, + "indices":11444, + "material":0 + } + ] + }, + { + "name":"Mesh.6150", + "primitives":[ + { + "attributes":{ + "POSITION":11445, + "NORMAL":11446, + "TEXCOORD_0":11447 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.7408", + "primitives":[ + { + "attributes":{ + "POSITION":11448, + "NORMAL":11449, + "TEXCOORD_0":11450 + }, + "indices":1056, + "material":7 + } + ] + }, + { + "name":"Mesh.2578", + "primitives":[ + { + "attributes":{ + "POSITION":11451, + "NORMAL":11452, + "TEXCOORD_0":11453 + }, + "indices":11454, + "material":0 + } + ] + }, + { + "name":"Mesh.862", + "primitives":[ + { + "attributes":{ + "POSITION":11455, + "NORMAL":11456, + "TEXCOORD_0":11457 + }, + "indices":4214, + "material":0 + } + ] + }, + { + "name":"Mesh.7416", + "primitives":[ + { + "attributes":{ + "POSITION":11458, + "NORMAL":11459, + "TEXCOORD_0":11460 + }, + "indices":4610, + "material":7 + } + ] + }, + { + "name":"Mesh.1685", + "primitives":[ + { + "attributes":{ + "POSITION":11461, + "NORMAL":11462, + "TEXCOORD_0":11463 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.4998", + "primitives":[ + { + "attributes":{ + "POSITION":11464, + "NORMAL":11465, + "TEXCOORD_0":11466 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7274", + "primitives":[ + { + "attributes":{ + "POSITION":11467, + "NORMAL":11468, + "TEXCOORD_0":11469 + }, + "indices":4218, + "material":7 + } + ] + }, + { + "name":"Mesh.143", + "primitives":[ + { + "attributes":{ + "POSITION":11470, + "NORMAL":11471, + "TEXCOORD_0":11472 + }, + "indices":11473, + "material":0 + } + ] + }, + { + "name":"Mesh.8400", + "primitives":[ + { + "attributes":{ + "POSITION":11474, + "NORMAL":11475 + }, + "indices":11476, + "material":3 + } + ] + }, + { + "name":"Mesh.1081", + "primitives":[ + { + "attributes":{ + "POSITION":11477, + "NORMAL":11478, + "TEXCOORD_0":11479 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.6342", + "primitives":[ + { + "attributes":{ + "POSITION":11480, + "NORMAL":11481 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.301", + "primitives":[ + { + "attributes":{ + "POSITION":11482, + "NORMAL":11483, + "TEXCOORD_0":11484 + }, + "indices":11485, + "material":0 + } + ] + }, + { + "name":"Mesh.2057", + "primitives":[ + { + "attributes":{ + "POSITION":11486, + "NORMAL":11487, + "TEXCOORD_0":11488 + }, + "indices":2258, + "material":0 + } + ] + }, + { + "name":"Mesh.2253", + "primitives":[ + { + "attributes":{ + "POSITION":11489, + "NORMAL":11490, + "TEXCOORD_0":11491 + }, + "indices":3972, + "material":0 + } + ] + }, + { + "name":"Mesh.8864", + "primitives":[ + { + "attributes":{ + "POSITION":11492, + "NORMAL":11493 + }, + "indices":11494, + "material":3 + } + ] + }, + { + "name":"Mesh.8939", + "primitives":[ + { + "attributes":{ + "POSITION":11495, + "NORMAL":11496, + "TEXCOORD_0":11497 + }, + "indices":971, + "material":7 + } + ] + }, + { + "name":"Mesh.6917", + "primitives":[ + { + "attributes":{ + "POSITION":11498, + "NORMAL":11499, + "TEXCOORD_0":11500 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.4927", + "primitives":[ + { + "attributes":{ + "POSITION":11501, + "NORMAL":11502, + "TEXCOORD_0":11503 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7203", + "primitives":[ + { + "attributes":{ + "POSITION":11504, + "NORMAL":11505, + "TEXCOORD_0":11506 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.5548", + "primitives":[ + { + "attributes":{ + "POSITION":11507, + "NORMAL":11508, + "TEXCOORD_0":11509 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8002", + "primitives":[ + { + "attributes":{ + "POSITION":11510, + "NORMAL":11511, + "TEXCOORD_0":11512 + }, + "indices":3924, + "material":3 + } + ] + }, + { + "name":"Mesh.7857", + "primitives":[ + { + "attributes":{ + "POSITION":11513, + "NORMAL":11514 + }, + "indices":11515, + "material":3 + } + ] + }, + { + "name":"Mesh.680", + "primitives":[ + { + "attributes":{ + "POSITION":11516, + "NORMAL":11517, + "TEXCOORD_0":11518 + }, + "indices":4531, + "material":0 + } + ] + }, + { + "name":"Mesh.1007", + "primitives":[ + { + "attributes":{ + "POSITION":11519, + "NORMAL":11520, + "TEXCOORD_0":11521 + }, + "indices":2307, + "material":0 + } + ] + }, + { + "name":"Mesh.9128", + "primitives":[ + { + "attributes":{ + "POSITION":11522, + "NORMAL":11523, + "TEXCOORD_0":11524 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.5152", + "primitives":[ + { + "attributes":{ + "POSITION":11525, + "NORMAL":11526, + "TEXCOORD_0":11527 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1207", + "primitives":[ + { + "attributes":{ + "POSITION":11528, + "NORMAL":11529 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.5697", + "primitives":[ + { + "attributes":{ + "POSITION":11530, + "NORMAL":11531, + "TEXCOORD_0":11532 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5041", + "primitives":[ + { + "attributes":{ + "POSITION":11533, + "NORMAL":11534, + "TEXCOORD_0":11535 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7272", + "primitives":[ + { + "attributes":{ + "POSITION":11536, + "NORMAL":11537, + "TEXCOORD_0":11538 + }, + "indices":11183, + "material":7 + } + ] + }, + { + "name":"Mesh.2407", + "primitives":[ + { + "attributes":{ + "POSITION":11539, + "NORMAL":11540, + "TEXCOORD_0":11541 + }, + "indices":5654, + "material":0 + } + ] + }, + { + "name":"Mesh.322", + "primitives":[ + { + "attributes":{ + "POSITION":11542, + "NORMAL":11543, + "TEXCOORD_0":11544 + }, + "indices":3267, + "material":0 + } + ] + }, + { + "name":"Mesh.5553", + "primitives":[ + { + "attributes":{ + "POSITION":11545, + "NORMAL":11546, + "TEXCOORD_0":11547 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1716", + "primitives":[ + { + "attributes":{ + "POSITION":11548, + "NORMAL":11549, + "TEXCOORD_0":11550 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.1176", + "primitives":[ + { + "attributes":{ + "POSITION":11551, + "NORMAL":11552 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.7246", + "primitives":[ + { + "attributes":{ + "POSITION":11553, + "NORMAL":11554, + "TEXCOORD_0":11555 + }, + "indices":9008, + "material":7 + } + ] + }, + { + "name":"Mesh.333", + "primitives":[ + { + "attributes":{ + "POSITION":11556, + "NORMAL":11557, + "TEXCOORD_0":11558 + }, + "indices":3740, + "material":0 + } + ] + }, + { + "name":"Mesh.424", + "primitives":[ + { + "attributes":{ + "POSITION":11559, + "NORMAL":11560 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.155", + "primitives":[ + { + "attributes":{ + "POSITION":11561, + "NORMAL":11562, + "TEXCOORD_0":11563 + }, + "indices":10494, + "material":0 + } + ] + }, + { + "name":"Mesh.2160", + "primitives":[ + { + "attributes":{ + "POSITION":11564, + "NORMAL":11565, + "TEXCOORD_0":11566 + }, + "indices":1128, + "material":0 + } + ] + }, + { + "name":"Mesh.6350", + "primitives":[ + { + "attributes":{ + "POSITION":11567, + "NORMAL":11568 + }, + "indices":11569, + "material":0 + } + ] + }, + { + "name":"Mesh.098", + "primitives":[ + { + "attributes":{ + "POSITION":11570, + "NORMAL":11571, + "TEXCOORD_0":11572 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.1192", + "primitives":[ + { + "attributes":{ + "POSITION":11573, + "NORMAL":11574 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.9037", + "primitives":[ + { + "attributes":{ + "POSITION":11575, + "NORMAL":11576, + "TEXCOORD_0":11577 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.1867", + "primitives":[ + { + "attributes":{ + "POSITION":11578, + "NORMAL":11579 + }, + "indices":11580, + "material":0 + } + ] + }, + { + "name":"Mesh.2488", + "primitives":[ + { + "attributes":{ + "POSITION":11581, + "NORMAL":11582, + "TEXCOORD_0":11583 + }, + "indices":1746, + "material":0 + } + ] + }, + { + "name":"Mesh.8076", + "primitives":[ + { + "attributes":{ + "POSITION":11584, + "NORMAL":11585, + "TEXCOORD_0":11586 + }, + "indices":2512, + "material":0 + } + ] + }, + { + "name":"Mesh.8455", + "primitives":[ + { + "attributes":{ + "POSITION":11587, + "NORMAL":11588 + }, + "indices":11589, + "material":3 + } + ] + }, + { + "name":"Mesh.6705", + "primitives":[ + { + "attributes":{ + "POSITION":11590, + "NORMAL":11591 + }, + "indices":1775, + "material":0 + } + ] + }, + { + "name":"Mesh.5522", + "primitives":[ + { + "attributes":{ + "POSITION":11592, + "NORMAL":11593, + "TEXCOORD_0":11594 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6354", + "primitives":[ + { + "attributes":{ + "POSITION":11595, + "NORMAL":11596 + }, + "indices":2295, + "material":0 + } + ] + }, + { + "name":"Mesh.1922", + "primitives":[ + { + "attributes":{ + "POSITION":11597, + "NORMAL":11598 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.8624", + "primitives":[ + { + "attributes":{ + "POSITION":11599, + "NORMAL":11600 + }, + "indices":5482, + "material":3 + } + ] + }, + { + "name":"Mesh.2098", + "primitives":[ + { + "attributes":{ + "POSITION":11601, + "NORMAL":11602, + "TEXCOORD_0":11603 + }, + "indices":2986, + "material":3 + } + ] + }, + { + "name":"Mesh.272", + "primitives":[ + { + "attributes":{ + "POSITION":11604, + "NORMAL":11605, + "TEXCOORD_0":11606 + }, + "indices":11607, + "material":3 + } + ] + }, + { + "name":"Mesh.8991", + "primitives":[ + { + "attributes":{ + "POSITION":11608, + "NORMAL":11609, + "TEXCOORD_0":11610 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.255", + "primitives":[ + { + "attributes":{ + "POSITION":11611, + "NORMAL":11612, + "TEXCOORD_0":11613 + }, + "indices":11614, + "material":3 + } + ] + }, + { + "name":"Mesh.6928", + "primitives":[ + { + "attributes":{ + "POSITION":11615, + "NORMAL":11616, + "TEXCOORD_0":11617 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.6610", + "primitives":[ + { + "attributes":{ + "POSITION":11618, + "NORMAL":11619 + }, + "indices":9045, + "material":0 + } + ] + }, + { + "name":"Mesh.8984", + "primitives":[ + { + "attributes":{ + "POSITION":11620, + "NORMAL":11621, + "TEXCOORD_0":11622 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.7613", + "primitives":[ + { + "attributes":{ + "POSITION":11623, + "NORMAL":11624 + }, + "indices":3962, + "material":3 + } + ] + }, + { + "name":"Mesh.475", + "primitives":[ + { + "attributes":{ + "POSITION":11625, + "NORMAL":11626 + }, + "indices":9244, + "material":3 + } + ] + }, + { + "name":"Mesh.2778", + "primitives":[ + { + "attributes":{ + "POSITION":11627, + "NORMAL":11628, + "TEXCOORD_0":11629 + }, + "indices":140, + "material":0 + } + ] + }, + { + "name":"Mesh.1715", + "primitives":[ + { + "attributes":{ + "POSITION":11630, + "NORMAL":11631, + "TEXCOORD_0":11632 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.2633", + "primitives":[ + { + "attributes":{ + "POSITION":11633, + "NORMAL":11634, + "TEXCOORD_0":11635 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.5013", + "primitives":[ + { + "attributes":{ + "POSITION":11636, + "NORMAL":11637, + "TEXCOORD_0":11638 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.917", + "primitives":[ + { + "attributes":{ + "POSITION":11639, + "NORMAL":11640, + "TEXCOORD_0":11641 + }, + "indices":1868, + "material":0 + } + ] + }, + { + "name":"Mesh.2491", + "primitives":[ + { + "attributes":{ + "POSITION":11642, + "NORMAL":11643, + "TEXCOORD_0":11644 + }, + "indices":2495, + "material":0 + } + ] + }, + { + "name":"Mesh.289", + "primitives":[ + { + "attributes":{ + "POSITION":11645, + "NORMAL":11646, + "TEXCOORD_0":11647 + }, + "indices":9993, + "material":0 + } + ] + }, + { + "name":"Mesh.4902", + "primitives":[ + { + "attributes":{ + "POSITION":11648, + "NORMAL":11649, + "TEXCOORD_0":11650 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1780", + "primitives":[ + { + "attributes":{ + "POSITION":11651, + "NORMAL":11652 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.1139", + "primitives":[ + { + "attributes":{ + "POSITION":11653, + "NORMAL":11654, + "TEXCOORD_0":11655 + }, + "indices":3616, + "material":0 + } + ] + }, + { + "name":"Mesh.1629", + "primitives":[ + { + "attributes":{ + "POSITION":11656, + "NORMAL":11657, + "TEXCOORD_0":11658 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.6724", + "primitives":[ + { + "attributes":{ + "POSITION":11659, + "NORMAL":11660 + }, + "indices":5370, + "material":0 + } + ] + }, + { + "name":"Mesh.846", + "primitives":[ + { + "attributes":{ + "POSITION":11661, + "NORMAL":11662, + "TEXCOORD_0":11663 + }, + "indices":11664, + "material":0 + } + ] + }, + { + "name":"Mesh.8344", + "primitives":[ + { + "attributes":{ + "POSITION":11665, + "NORMAL":11666 + }, + "indices":6942, + "material":3 + } + ] + }, + { + "name":"Mesh.5454", + "primitives":[ + { + "attributes":{ + "POSITION":11667, + "NORMAL":11668, + "TEXCOORD_0":11669 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8509", + "primitives":[ + { + "attributes":{ + "POSITION":11670, + "NORMAL":11671 + }, + "indices":11672, + "material":3 + } + ] + }, + { + "name":"Mesh.7011", + "primitives":[ + { + "attributes":{ + "POSITION":11673, + "NORMAL":11674 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.2676", + "primitives":[ + { + "attributes":{ + "POSITION":11675, + "NORMAL":11676, + "TEXCOORD_0":11677 + }, + "indices":11678, + "material":0 + } + ] + }, + { + "name":"Mesh.5383", + "primitives":[ + { + "attributes":{ + "POSITION":11679, + "NORMAL":11680, + "TEXCOORD_0":11681 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.576", + "primitives":[ + { + "attributes":{ + "POSITION":11682, + "NORMAL":11683, + "TEXCOORD_0":11684 + }, + "indices":11685, + "material":19 + } + ] + }, + { + "name":"Mesh.365", + "primitives":[ + { + "attributes":{ + "POSITION":11686, + "NORMAL":11687, + "TEXCOORD_0":11688 + }, + "indices":2887, + "material":0 + } + ] + }, + { + "name":"Mesh.8313", + "primitives":[ + { + "attributes":{ + "POSITION":11689, + "NORMAL":11690 + }, + "indices":2865, + "material":3 + } + ] + }, + { + "name":"Mesh.188", + "primitives":[ + { + "attributes":{ + "POSITION":11691, + "NORMAL":11692, + "TEXCOORD_0":11693 + }, + "indices":4143, + "material":0 + } + ] + }, + { + "name":"Mesh.8881", + "primitives":[ + { + "attributes":{ + "POSITION":11694, + "NORMAL":11695 + }, + "indices":11696, + "material":3 + } + ] + }, + { + "name":"Mesh.7227", + "primitives":[ + { + "attributes":{ + "POSITION":11697, + "NORMAL":11698, + "TEXCOORD_0":11699 + }, + "indices":2577, + "material":7 + } + ] + }, + { + "name":"Mesh.463", + "primitives":[ + { + "attributes":{ + "POSITION":11700, + "NORMAL":11701 + }, + "indices":2915, + "material":3 + } + ] + }, + { + "name":"Mesh.7687", + "primitives":[ + { + "attributes":{ + "POSITION":11702, + "NORMAL":11703 + }, + "indices":11704, + "material":3 + } + ] + }, + { + "name":"Mesh.7903", + "primitives":[ + { + "attributes":{ + "POSITION":11705, + "NORMAL":11706 + }, + "indices":11707, + "material":3 + } + ] + }, + { + "name":"Mesh.1823", + "primitives":[ + { + "attributes":{ + "POSITION":11708, + "NORMAL":11709, + "TEXCOORD_0":11710 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.8516", + "primitives":[ + { + "attributes":{ + "POSITION":11711, + "NORMAL":11712 + }, + "indices":11713, + "material":3 + } + ] + }, + { + "name":"Mesh.389", + "primitives":[ + { + "attributes":{ + "POSITION":11714, + "NORMAL":11715, + "TEXCOORD_0":11716 + }, + "indices":2086, + "material":0 + } + ] + }, + { + "name":"Mesh.262", + "primitives":[ + { + "attributes":{ + "POSITION":11717, + "NORMAL":11718, + "TEXCOORD_0":11719 + }, + "indices":11720, + "material":3 + } + ] + }, + { + "name":"Mesh.637", + "primitives":[ + { + "attributes":{ + "POSITION":11721, + "NORMAL":11722, + "TEXCOORD_0":11723 + }, + "indices":5128, + "material":3 + } + ] + }, + { + "name":"Mesh.2351", + "primitives":[ + { + "attributes":{ + "POSITION":11724, + "NORMAL":11725, + "TEXCOORD_0":11726 + }, + "indices":328, + "material":0 + } + ] + }, + { + "name":"Mesh.1712", + "primitives":[ + { + "attributes":{ + "POSITION":11727, + "NORMAL":11728, + "TEXCOORD_0":11729 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.5497", + "primitives":[ + { + "attributes":{ + "POSITION":11730, + "NORMAL":11731, + "TEXCOORD_0":11732 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.016", + "primitives":[ + { + "attributes":{ + "POSITION":11733, + "NORMAL":11734, + "TEXCOORD_0":11735 + }, + "indices":11080, + "material":41 + } + ] + }, + { + "name":"Mesh.6696", + "primitives":[ + { + "attributes":{ + "POSITION":11736, + "NORMAL":11737 + }, + "indices":7468, + "material":0 + } + ] + }, + { + "name":"Mesh.8735", + "primitives":[ + { + "attributes":{ + "POSITION":11738, + "NORMAL":11739 + }, + "indices":11740, + "material":3 + } + ] + }, + { + "name":"Mesh.8252", + "primitives":[ + { + "attributes":{ + "POSITION":11741, + "NORMAL":11742 + }, + "indices":2089, + "material":3 + } + ] + }, + { + "name":"Mesh.7517", + "primitives":[ + { + "attributes":{ + "POSITION":11743, + "NORMAL":11744 + }, + "indices":11745, + "material":3 + } + ] + }, + { + "name":"Mesh.179", + "primitives":[ + { + "attributes":{ + "POSITION":11746, + "NORMAL":11747, + "TEXCOORD_0":11748 + }, + "indices":1554, + "material":0 + } + ] + }, + { + "name":"Mesh.1641", + "primitives":[ + { + "attributes":{ + "POSITION":11749, + "NORMAL":11750, + "TEXCOORD_0":11751 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.1977", + "primitives":[ + { + "attributes":{ + "POSITION":11752, + "NORMAL":11753, + "TEXCOORD_0":11754 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.1826", + "primitives":[ + { + "attributes":{ + "POSITION":11755, + "NORMAL":11756 + }, + "indices":696, + "material":1 + } + ] + }, + { + "name":"Mesh.8356", + "primitives":[ + { + "attributes":{ + "POSITION":11757, + "NORMAL":11758 + }, + "indices":2095, + "material":3 + } + ] + }, + { + "name":"Mesh.1034", + "primitives":[ + { + "attributes":{ + "POSITION":11759, + "NORMAL":11760, + "TEXCOORD_0":11761 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.251", + "primitives":[ + { + "attributes":{ + "POSITION":11762, + "NORMAL":11763, + "TEXCOORD_0":11764 + }, + "indices":11765, + "material":3 + } + ] + }, + { + "name":"Mesh.1866", + "primitives":[ + { + "attributes":{ + "POSITION":11766, + "NORMAL":11767 + }, + "indices":2743, + "material":0 + } + ] + }, + { + "name":"Mesh.5028", + "primitives":[ + { + "attributes":{ + "POSITION":11768, + "NORMAL":11769, + "TEXCOORD_0":11770 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6665", + "primitives":[ + { + "attributes":{ + "POSITION":11771, + "NORMAL":11772 + }, + "indices":5333, + "material":0 + } + ] + }, + { + "name":"Mesh.2394", + "primitives":[ + { + "attributes":{ + "POSITION":11773, + "NORMAL":11774 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8913", + "primitives":[ + { + "attributes":{ + "POSITION":11775, + "NORMAL":11776, + "TEXCOORD_0":11777 + }, + "indices":2076, + "material":7 + } + ] + }, + { + "name":"Mesh.6051", + "primitives":[ + { + "attributes":{ + "POSITION":11778, + "NORMAL":11779, + "TEXCOORD_0":11780 + }, + "indices":321, + "material":12 + } + ] + }, + { + "name":"Mesh.404", + "primitives":[ + { + "attributes":{ + "POSITION":11781, + "NORMAL":11782 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.972", + "primitives":[ + { + "attributes":{ + "POSITION":11783, + "NORMAL":11784, + "TEXCOORD_0":11785 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.4832", + "primitives":[ + { + "attributes":{ + "POSITION":11786, + "NORMAL":11787, + "TEXCOORD_0":11788 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7057", + "primitives":[ + { + "attributes":{ + "POSITION":11789, + "NORMAL":11790, + "TEXCOORD_0":11791 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.5591", + "primitives":[ + { + "attributes":{ + "POSITION":11792, + "NORMAL":11793, + "TEXCOORD_0":11794 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2122", + "primitives":[ + { + "attributes":{ + "POSITION":11795, + "NORMAL":11796, + "TEXCOORD_0":11797 + }, + "indices":643, + "material":3 + } + ] + }, + { + "name":"Mesh.2846", + "primitives":[ + { + "attributes":{ + "POSITION":11798, + "NORMAL":11799 + }, + "indices":920, + "material":1 + } + ] + }, + { + "name":"Mesh.2577", + "primitives":[ + { + "attributes":{ + "POSITION":11800, + "NORMAL":11801, + "TEXCOORD_0":11802 + }, + "indices":1060, + "material":0 + } + ] + }, + { + "name":"Mesh.861", + "primitives":[ + { + "attributes":{ + "POSITION":11803, + "NORMAL":11804, + "TEXCOORD_0":11805 + }, + "indices":1379, + "material":0 + } + ] + }, + { + "name":"Mesh.441", + "primitives":[ + { + "attributes":{ + "POSITION":11806, + "NORMAL":11807 + }, + "indices":10467, + "material":3 + } + ] + }, + { + "name":"Mesh.7887", + "primitives":[ + { + "attributes":{ + "POSITION":11808, + "NORMAL":11809 + }, + "indices":11810, + "material":3 + } + ] + }, + { + "name":"Mesh.4997", + "primitives":[ + { + "attributes":{ + "POSITION":11811, + "NORMAL":11812, + "TEXCOORD_0":11813 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7273", + "primitives":[ + { + "attributes":{ + "POSITION":11814, + "NORMAL":11815, + "TEXCOORD_0":11816 + }, + "indices":11817, + "material":7 + } + ] + }, + { + "name":"Mesh.2363", + "primitives":[ + { + "attributes":{ + "POSITION":11818, + "NORMAL":11819, + "TEXCOORD_0":11820 + }, + "indices":10794, + "material":0 + } + ] + }, + { + "name":"Mesh.8953", + "primitives":[ + { + "attributes":{ + "POSITION":11821, + "NORMAL":11822, + "TEXCOORD_0":11823 + }, + "indices":7376, + "material":7 + } + ] + }, + { + "name":"Mesh.2651", + "primitives":[ + { + "attributes":{ + "POSITION":11824, + "NORMAL":11825, + "TEXCOORD_0":11826 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.7621", + "primitives":[ + { + "attributes":{ + "POSITION":11827, + "NORMAL":11828 + }, + "indices":861, + "material":3 + } + ] + }, + { + "name":"Mesh.1080", + "primitives":[ + { + "attributes":{ + "POSITION":11829, + "NORMAL":11830, + "TEXCOORD_0":11831 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.5229", + "primitives":[ + { + "attributes":{ + "POSITION":11832, + "NORMAL":11833, + "TEXCOORD_0":11834 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2195", + "primitives":[ + { + "attributes":{ + "POSITION":11835, + "NORMAL":11836, + "TEXCOORD_0":11837 + }, + "indices":11838, + "material":0 + } + ] + }, + { + "name":"Mesh.302", + "primitives":[ + { + "attributes":{ + "POSITION":11839, + "NORMAL":11840, + "TEXCOORD_0":11841 + }, + "indices":11842, + "material":0 + } + ] + }, + { + "name":"Mesh.8326", + "primitives":[ + { + "attributes":{ + "POSITION":11843, + "NORMAL":11844 + }, + "indices":2012, + "material":3 + } + ] + }, + { + "name":"Mesh.2252", + "primitives":[ + { + "attributes":{ + "POSITION":11845, + "NORMAL":11846, + "TEXCOORD_0":11847 + }, + "indices":639, + "material":0 + } + ] + }, + { + "name":"Mesh.8938", + "primitives":[ + { + "attributes":{ + "POSITION":11848, + "NORMAL":11849, + "TEXCOORD_0":11850 + }, + "indices":971, + "material":7 + } + ] + }, + { + "name":"Mesh.066", + "primitives":[ + { + "attributes":{ + "POSITION":11851, + "NORMAL":11852 + }, + "indices":11853, + "material":39 + } + ] + }, + { + "name":"Mesh.1720", + "primitives":[ + { + "attributes":{ + "POSITION":11854, + "NORMAL":11855, + "TEXCOORD_0":11856 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.4926", + "primitives":[ + { + "attributes":{ + "POSITION":11857, + "NORMAL":11858, + "TEXCOORD_0":11859 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7202", + "primitives":[ + { + "attributes":{ + "POSITION":11860, + "NORMAL":11861, + "TEXCOORD_0":11862 + }, + "indices":11863, + "material":7 + } + ] + }, + { + "name":"Mesh.8973", + "primitives":[ + { + "attributes":{ + "POSITION":11864, + "NORMAL":11865, + "TEXCOORD_0":11866 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.7856", + "primitives":[ + { + "attributes":{ + "POSITION":11867, + "NORMAL":11868 + }, + "indices":11869, + "material":3 + } + ] + }, + { + "name":"Mesh.679", + "primitives":[ + { + "attributes":{ + "POSITION":11870, + "NORMAL":11871, + "TEXCOORD_0":11872 + }, + "indices":11873, + "material":3 + } + ] + }, + { + "name":"Mesh.1006", + "primitives":[ + { + "attributes":{ + "POSITION":11874, + "NORMAL":11875, + "TEXCOORD_0":11876 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.5151", + "primitives":[ + { + "attributes":{ + "POSITION":11877, + "NORMAL":11878, + "TEXCOORD_0":11879 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.462", + "primitives":[ + { + "attributes":{ + "POSITION":11880, + "NORMAL":11881 + }, + "indices":1066, + "material":3 + } + ] + }, + { + "name":"Mesh.9125", + "primitives":[ + { + "attributes":{ + "POSITION":11882, + "NORMAL":11883, + "TEXCOORD_0":11884 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.5696", + "primitives":[ + { + "attributes":{ + "POSITION":11885, + "NORMAL":11886, + "TEXCOORD_0":11887 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2448", + "primitives":[ + { + "attributes":{ + "POSITION":11888, + "NORMAL":11889, + "TEXCOORD_0":11890 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.8222", + "primitives":[ + { + "attributes":{ + "POSITION":11891, + "NORMAL":11892 + }, + "indices":9752, + "material":3 + } + ] + }, + { + "name":"Mesh.5040", + "primitives":[ + { + "attributes":{ + "POSITION":11893, + "NORMAL":11894, + "TEXCOORD_0":11895 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2406", + "primitives":[ + { + "attributes":{ + "POSITION":11896, + "NORMAL":11897, + "TEXCOORD_0":11898 + }, + "indices":5654, + "material":0 + } + ] + }, + { + "name":"Mesh.5552", + "primitives":[ + { + "attributes":{ + "POSITION":11899, + "NORMAL":11900, + "TEXCOORD_0":11901 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5543", + "primitives":[ + { + "attributes":{ + "POSITION":11902, + "NORMAL":11903, + "TEXCOORD_0":11904 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6566", + "primitives":[ + { + "attributes":{ + "POSITION":11905, + "NORMAL":11906 + }, + "indices":1775, + "material":0 + } + ] + }, + { + "name":"Mesh.1175", + "primitives":[ + { + "attributes":{ + "POSITION":11907, + "NORMAL":11908 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.8796", + "primitives":[ + { + "attributes":{ + "POSITION":11909, + "NORMAL":11910 + }, + "indices":3920, + "material":3 + } + ] + }, + { + "name":"Mesh.9115", + "primitives":[ + { + "attributes":{ + "POSITION":11911, + "NORMAL":11912, + "TEXCOORD_0":11913 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.174", + "primitives":[ + { + "attributes":{ + "POSITION":11914, + "NORMAL":11915, + "TEXCOORD_0":11916 + }, + "indices":11358, + "material":0 + } + ] + }, + { + "name":"Mesh.7285", + "primitives":[ + { + "attributes":{ + "POSITION":11917, + "NORMAL":11918, + "TEXCOORD_0":11919 + }, + "indices":106, + "material":7 + } + ] + }, + { + "name":"Mesh.2487", + "primitives":[ + { + "attributes":{ + "POSITION":11920, + "NORMAL":11921, + "TEXCOORD_0":11922 + }, + "indices":1746, + "material":0 + } + ] + }, + { + "name":"Mesh.8075", + "primitives":[ + { + "attributes":{ + "POSITION":11923, + "NORMAL":11924, + "TEXCOORD_0":11925 + }, + "indices":2838, + "material":0 + } + ] + }, + { + "name":"Mesh.5521", + "primitives":[ + { + "attributes":{ + "POSITION":11926, + "NORMAL":11927, + "TEXCOORD_0":11928 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6353", + "primitives":[ + { + "attributes":{ + "POSITION":11929, + "NORMAL":11930 + }, + "indices":11931, + "material":0 + } + ] + }, + { + "name":"Mesh.1921", + "primitives":[ + { + "attributes":{ + "POSITION":11932, + "NORMAL":11933 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.8623", + "primitives":[ + { + "attributes":{ + "POSITION":11934, + "NORMAL":11935 + }, + "indices":5867, + "material":3 + } + ] + }, + { + "name":"Mesh.9124", + "primitives":[ + { + "attributes":{ + "POSITION":11936, + "NORMAL":11937, + "TEXCOORD_0":11938 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.2097", + "primitives":[ + { + "attributes":{ + "POSITION":11939, + "NORMAL":11940, + "TEXCOORD_0":11941 + }, + "indices":11942, + "material":3 + } + ] + }, + { + "name":"Mesh.8935", + "primitives":[ + { + "attributes":{ + "POSITION":11943, + "NORMAL":11944, + "TEXCOORD_0":11945 + }, + "indices":1660, + "material":7 + } + ] + }, + { + "name":"Mesh.256", + "primitives":[ + { + "attributes":{ + "POSITION":11946, + "NORMAL":11947, + "TEXCOORD_0":11948 + }, + "indices":11949, + "material":3 + } + ] + }, + { + "name":"Mesh.8974", + "primitives":[ + { + "attributes":{ + "POSITION":11950, + "NORMAL":11951, + "TEXCOORD_0":11952 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.6927", + "primitives":[ + { + "attributes":{ + "POSITION":11953, + "NORMAL":11954, + "TEXCOORD_0":11955 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.8752", + "primitives":[ + { + "attributes":{ + "POSITION":11956, + "NORMAL":11957 + }, + "indices":11958, + "material":3 + } + ] + }, + { + "name":"Mesh.1018", + "primitives":[ + { + "attributes":{ + "POSITION":11959, + "NORMAL":11960, + "TEXCOORD_0":11961 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.6609", + "primitives":[ + { + "attributes":{ + "POSITION":11962, + "NORMAL":11963 + }, + "indices":9433, + "material":0 + } + ] + }, + { + "name":"Mesh.474", + "primitives":[ + { + "attributes":{ + "POSITION":11964, + "NORMAL":11965 + }, + "indices":9644, + "material":3 + } + ] + }, + { + "name":"Mesh.6082", + "primitives":[ + { + "attributes":{ + "POSITION":11966, + "NORMAL":11967, + "TEXCOORD_0":11968 + }, + "indices":3712, + "material":33 + } + ] + }, + { + "name":"Mesh.7917", + "primitives":[ + { + "attributes":{ + "POSITION":11969, + "NORMAL":11970 + }, + "indices":11971, + "material":3 + } + ] + }, + { + "name":"Mesh.2632", + "primitives":[ + { + "attributes":{ + "POSITION":11972, + "NORMAL":11973, + "TEXCOORD_0":11974 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.5012", + "primitives":[ + { + "attributes":{ + "POSITION":11975, + "NORMAL":11976, + "TEXCOORD_0":11977 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.916", + "primitives":[ + { + "attributes":{ + "POSITION":11978, + "NORMAL":11979, + "TEXCOORD_0":11980 + }, + "indices":5069, + "material":0 + } + ] + }, + { + "name":"Mesh.2490", + "primitives":[ + { + "attributes":{ + "POSITION":11981, + "NORMAL":11982, + "TEXCOORD_0":11983 + }, + "indices":2827, + "material":0 + } + ] + }, + { + "name":"Mesh.523", + "primitives":[ + { + "attributes":{ + "POSITION":11984, + "NORMAL":11985, + "TEXCOORD_0":11986 + }, + "indices":11987, + "material":0 + } + ] + }, + { + "name":"Mesh.1138", + "primitives":[ + { + "attributes":{ + "POSITION":11988, + "NORMAL":11989, + "TEXCOORD_0":11990 + }, + "indices":3983, + "material":0 + } + ] + }, + { + "name":"Mesh.1628", + "primitives":[ + { + "attributes":{ + "POSITION":11991, + "NORMAL":11992, + "TEXCOORD_0":11993 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.2433", + "primitives":[ + { + "attributes":{ + "POSITION":11994, + "NORMAL":11995, + "TEXCOORD_0":11996 + }, + "indices":313, + "material":4 + } + ] + }, + { + "name":"Mesh.9158", + "primitives":[ + { + "attributes":{ + "POSITION":11997, + "NORMAL":11998, + "TEXCOORD_0":11999 + }, + "indices":971, + "material":7 + } + ] + }, + { + "name":"Mesh.6723", + "primitives":[ + { + "attributes":{ + "POSITION":12000, + "NORMAL":12001 + }, + "indices":11444, + "material":0 + } + ] + }, + { + "name":"Mesh.845", + "primitives":[ + { + "attributes":{ + "POSITION":12002, + "NORMAL":12003, + "TEXCOORD_0":12004 + }, + "indices":12005, + "material":0 + } + ] + }, + { + "name":"Mesh.8480", + "primitives":[ + { + "attributes":{ + "POSITION":12006, + "NORMAL":12007 + }, + "indices":12008, + "material":3 + } + ] + }, + { + "name":"Mesh.5467", + "primitives":[ + { + "attributes":{ + "POSITION":12009, + "NORMAL":12010, + "TEXCOORD_0":12011 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5453", + "primitives":[ + { + "attributes":{ + "POSITION":12012, + "NORMAL":12013, + "TEXCOORD_0":12014 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5506", + "primitives":[ + { + "attributes":{ + "POSITION":12015, + "NORMAL":12016, + "TEXCOORD_0":12017 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7010", + "primitives":[ + { + "attributes":{ + "POSITION":12018, + "NORMAL":12019, + "TEXCOORD_0":12020 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.2675", + "primitives":[ + { + "attributes":{ + "POSITION":12021, + "NORMAL":12022, + "TEXCOORD_0":12023 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.6692", + "primitives":[ + { + "attributes":{ + "POSITION":12024, + "NORMAL":12025 + }, + "indices":9827, + "material":0 + } + ] + }, + { + "name":"Mesh.5382", + "primitives":[ + { + "attributes":{ + "POSITION":12026, + "NORMAL":12027, + "TEXCOORD_0":12028 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8553", + "primitives":[ + { + "attributes":{ + "POSITION":12029, + "NORMAL":12030 + }, + "indices":5454, + "material":3 + } + ] + }, + { + "name":"Mesh.575", + "primitives":[ + { + "attributes":{ + "POSITION":12031, + "NORMAL":12032, + "TEXCOORD_0":12033 + }, + "indices":12034, + "material":0 + } + ] + }, + { + "name":"Mesh.9181", + "primitives":[ + { + "attributes":{ + "POSITION":12035, + "NORMAL":12036, + "TEXCOORD_0":12037 + }, + "indices":2891, + "material":7 + } + ] + }, + { + "name":"Mesh.366", + "primitives":[ + { + "attributes":{ + "POSITION":12038, + "NORMAL":12039, + "TEXCOORD_0":12040 + }, + "indices":639, + "material":0 + } + ] + }, + { + "name":"Mesh.8202", + "primitives":[ + { + "attributes":{ + "POSITION":12041, + "NORMAL":12042 + }, + "indices":8507, + "material":3 + } + ] + }, + { + "name":"Mesh.8312", + "primitives":[ + { + "attributes":{ + "POSITION":12043, + "NORMAL":12044 + }, + "indices":11494, + "material":3 + } + ] + }, + { + "name":"Mesh.7226", + "primitives":[ + { + "attributes":{ + "POSITION":12045, + "NORMAL":12046, + "TEXCOORD_0":12047 + }, + "indices":2577, + "material":7 + } + ] + }, + { + "name":"Mesh.4880", + "primitives":[ + { + "attributes":{ + "POSITION":12048, + "NORMAL":12049, + "TEXCOORD_0":12050 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1822", + "primitives":[ + { + "attributes":{ + "POSITION":12051, + "NORMAL":12052, + "TEXCOORD_0":12053 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.8515", + "primitives":[ + { + "attributes":{ + "POSITION":12054, + "NORMAL":12055 + }, + "indices":12056, + "material":3 + } + ] + }, + { + "name":"Mesh.388", + "primitives":[ + { + "attributes":{ + "POSITION":12057, + "NORMAL":12058, + "TEXCOORD_0":12059 + }, + "indices":1379, + "material":0 + } + ] + }, + { + "name":"Mesh.2350", + "primitives":[ + { + "attributes":{ + "POSITION":12060, + "NORMAL":12061, + "TEXCOORD_0":12062 + }, + "indices":51, + "material":0 + } + ] + }, + { + "name":"Mesh.7914", + "primitives":[ + { + "attributes":{ + "POSITION":12063, + "NORMAL":12064 + }, + "indices":12065, + "material":3 + } + ] + }, + { + "name":"Mesh.5496", + "primitives":[ + { + "attributes":{ + "POSITION":12066, + "NORMAL":12067, + "TEXCOORD_0":12068 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.928", + "primitives":[ + { + "attributes":{ + "POSITION":12069, + "NORMAL":12070, + "TEXCOORD_0":12071 + }, + "indices":3879, + "material":0 + } + ] + }, + { + "name":"Mesh.1204", + "primitives":[ + { + "attributes":{ + "POSITION":12072, + "NORMAL":12073 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.451", + "primitives":[ + { + "attributes":{ + "POSITION":12074, + "NORMAL":12075 + }, + "indices":233, + "material":3 + } + ] + }, + { + "name":"Mesh.8641", + "primitives":[ + { + "attributes":{ + "POSITION":12076, + "NORMAL":12077 + }, + "indices":6400, + "material":3 + } + ] + }, + { + "name":"Mesh.015", + "primitives":[ + { + "attributes":{ + "POSITION":12078, + "NORMAL":12079, + "TEXCOORD_0":12080 + }, + "indices":11080, + "material":41 + } + ] + }, + { + "name":"Mesh.6695", + "primitives":[ + { + "attributes":{ + "POSITION":12081, + "NORMAL":12082 + }, + "indices":11292, + "material":0 + } + ] + }, + { + "name":"Mesh.7516", + "primitives":[ + { + "attributes":{ + "POSITION":12083, + "NORMAL":12084 + }, + "indices":12085, + "material":3 + } + ] + }, + { + "name":"Mesh.172", + "primitives":[ + { + "attributes":{ + "POSITION":12086, + "NORMAL":12087, + "TEXCOORD_0":12088 + }, + "indices":12034, + "material":0 + } + ] + }, + { + "name":"Mesh.1640", + "primitives":[ + { + "attributes":{ + "POSITION":12089, + "NORMAL":12090, + "TEXCOORD_0":12091 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.1976", + "primitives":[ + { + "attributes":{ + "POSITION":12092, + "NORMAL":12093, + "TEXCOORD_0":12094 + }, + "indices":3773, + "material":0 + } + ] + }, + { + "name":"Mesh.8355", + "primitives":[ + { + "attributes":{ + "POSITION":12095, + "NORMAL":12096 + }, + "indices":2420, + "material":3 + } + ] + }, + { + "name":"Mesh.1033", + "primitives":[ + { + "attributes":{ + "POSITION":12097, + "NORMAL":12098, + "TEXCOORD_0":12099 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.7732", + "primitives":[ + { + "attributes":{ + "POSITION":12100, + "NORMAL":12101 + }, + "indices":12102, + "material":3 + } + ] + }, + { + "name":"Mesh.5954", + "primitives":[ + { + "attributes":{ + "POSITION":12103, + "NORMAL":12104, + "TEXCOORD_0":12105 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.2471", + "primitives":[ + { + "attributes":{ + "POSITION":12106, + "NORMAL":12107, + "TEXCOORD_0":12108 + }, + "indices":1746, + "material":0 + } + ] + }, + { + "name":"Mesh.6664", + "primitives":[ + { + "attributes":{ + "POSITION":12109, + "NORMAL":12110 + }, + "indices":5694, + "material":0 + } + ] + }, + { + "name":"Mesh.2393", + "primitives":[ + { + "attributes":{ + "POSITION":12111, + "NORMAL":12112 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6050", + "primitives":[ + { + "attributes":{ + "POSITION":12113, + "NORMAL":12114, + "TEXCOORD_0":12115 + }, + "indices":3979, + "material":12 + } + ] + }, + { + "name":"Mesh.7812", + "primitives":[ + { + "attributes":{ + "POSITION":12116, + "NORMAL":12117 + }, + "indices":12118, + "material":3 + } + ] + }, + { + "name":"Mesh.971", + "primitives":[ + { + "attributes":{ + "POSITION":12119, + "NORMAL":12120, + "TEXCOORD_0":12121 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.6553", + "primitives":[ + { + "attributes":{ + "POSITION":12122, + "NORMAL":12123 + }, + "indices":12124, + "material":0 + } + ] + }, + { + "name":"Mesh.2121", + "primitives":[ + { + "attributes":{ + "POSITION":12125, + "NORMAL":12126, + "TEXCOORD_0":12127 + }, + "indices":981, + "material":3 + } + ] + }, + { + "name":"Mesh.6932", + "primitives":[ + { + "attributes":{ + "POSITION":12128, + "NORMAL":12129 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.6266", + "primitives":[ + { + "attributes":{ + "POSITION":12130, + "NORMAL":12131, + "TEXCOORD_0":12132 + }, + "indices":9639, + "material":11 + } + ] + }, + { + "name":"Mesh.6738", + "primitives":[ + { + "attributes":{ + "POSITION":12133, + "NORMAL":12134 + }, + "indices":8254, + "material":0 + } + ] + }, + { + "name":"Mesh.860", + "primitives":[ + { + "attributes":{ + "POSITION":12135, + "NORMAL":12136, + "TEXCOORD_0":12137 + }, + "indices":3267, + "material":0 + } + ] + }, + { + "name":"Mesh.9140", + "primitives":[ + { + "attributes":{ + "POSITION":12138, + "NORMAL":12139, + "TEXCOORD_0":12140 + }, + "indices":1966, + "material":7 + } + ] + }, + { + "name":"Mesh.7414", + "primitives":[ + { + "attributes":{ + "POSITION":12141, + "NORMAL":12142, + "TEXCOORD_0":12143 + }, + "indices":11192, + "material":7 + } + ] + }, + { + "name":"Mesh.1683", + "primitives":[ + { + "attributes":{ + "POSITION":12144, + "NORMAL":12145, + "TEXCOORD_0":12146 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.4996", + "primitives":[ + { + "attributes":{ + "POSITION":12147, + "NORMAL":12148, + "TEXCOORD_0":12149 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2362", + "primitives":[ + { + "attributes":{ + "POSITION":12150, + "NORMAL":12151, + "TEXCOORD_0":12152 + }, + "indices":10521, + "material":0 + } + ] + }, + { + "name":"Mesh.8398", + "primitives":[ + { + "attributes":{ + "POSITION":12153, + "NORMAL":12154 + }, + "indices":12155, + "material":3 + } + ] + }, + { + "name":"Mesh.6302", + "primitives":[ + { + "attributes":{ + "POSITION":12156, + "NORMAL":12157, + "TEXCOORD_0":12158 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.6743", + "primitives":[ + { + "attributes":{ + "POSITION":12159, + "NORMAL":12160 + }, + "indices":6512, + "material":0 + } + ] + }, + { + "name":"Mesh.2050", + "primitives":[ + { + "attributes":{ + "POSITION":12161, + "NORMAL":12162, + "TEXCOORD_0":12163 + }, + "indices":11358, + "material":0 + } + ] + }, + { + "name":"Mesh.1079", + "primitives":[ + { + "attributes":{ + "POSITION":12164, + "NORMAL":12165, + "TEXCOORD_0":12166 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.2251", + "primitives":[ + { + "attributes":{ + "POSITION":12167, + "NORMAL":12168, + "TEXCOORD_0":12169 + }, + "indices":3972, + "material":0 + } + ] + }, + { + "name":"Mesh.7469", + "primitives":[ + { + "attributes":{ + "POSITION":12170, + "NORMAL":12171 + }, + "indices":5673, + "material":3 + } + ] + }, + { + "name":"Mesh.6380", + "primitives":[ + { + "attributes":{ + "POSITION":12172, + "NORMAL":12173 + }, + "indices":12174, + "material":0 + } + ] + }, + { + "name":"Mesh.8142", + "primitives":[ + { + "attributes":{ + "POSITION":12175, + "NORMAL":12176 + }, + "indices":1669, + "material":3 + } + ] + }, + { + "name":"Mesh.7201", + "primitives":[ + { + "attributes":{ + "POSITION":12177, + "NORMAL":12178, + "TEXCOORD_0":12179 + }, + "indices":12180, + "material":7 + } + ] + }, + { + "name":"Mesh.829", + "primitives":[ + { + "attributes":{ + "POSITION":12181, + "NORMAL":12182, + "TEXCOORD_0":12183 + }, + "indices":730, + "material":0 + } + ] + }, + { + "name":"Mesh.7855", + "primitives":[ + { + "attributes":{ + "POSITION":12184, + "NORMAL":12185 + }, + "indices":12186, + "material":3 + } + ] + }, + { + "name":"Mesh.678", + "primitives":[ + { + "attributes":{ + "POSITION":12187, + "NORMAL":12188, + "TEXCOORD_0":12189 + }, + "indices":4531, + "material":0 + } + ] + }, + { + "name":"Mesh.1005", + "primitives":[ + { + "attributes":{ + "POSITION":12190, + "NORMAL":12191, + "TEXCOORD_0":12192 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.8874", + "primitives":[ + { + "attributes":{ + "POSITION":12193, + "NORMAL":12194 + }, + "indices":8916, + "material":3 + } + ] + }, + { + "name":"Mesh.5150", + "primitives":[ + { + "attributes":{ + "POSITION":12195, + "NORMAL":12196, + "TEXCOORD_0":12197 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1205", + "primitives":[ + { + "attributes":{ + "POSITION":12198, + "NORMAL":12199 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.5695", + "primitives":[ + { + "attributes":{ + "POSITION":12200, + "NORMAL":12201, + "TEXCOORD_0":12202 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9105", + "primitives":[ + { + "attributes":{ + "POSITION":12203, + "NORMAL":12204, + "TEXCOORD_0":12205 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.6155", + "primitives":[ + { + "attributes":{ + "POSITION":12206, + "NORMAL":12207, + "TEXCOORD_0":12208 + }, + "indices":1132, + "material":23 + } + ] + }, + { + "name":"Mesh.8256", + "primitives":[ + { + "attributes":{ + "POSITION":12209, + "NORMAL":12210 + }, + "indices":12211, + "material":3 + } + ] + }, + { + "name":"Mesh.2405", + "primitives":[ + { + "attributes":{ + "POSITION":12212, + "NORMAL":12213, + "TEXCOORD_0":12214 + }, + "indices":10713, + "material":0 + } + ] + }, + { + "name":"Mesh.6062", + "primitives":[ + { + "attributes":{ + "POSITION":12215, + "NORMAL":12216, + "TEXCOORD_0":12217 + }, + "indices":947, + "material":5 + } + ] + }, + { + "name":"Mesh.6565", + "primitives":[ + { + "attributes":{ + "POSITION":12218, + "NORMAL":12219 + }, + "indices":1775, + "material":0 + } + ] + }, + { + "name":"Mesh.1265", + "primitives":[ + { + "attributes":{ + "POSITION":12220, + "NORMAL":12221 + }, + "indices":12222, + "material":55 + } + ] + }, + { + "name":"Mesh.1174", + "primitives":[ + { + "attributes":{ + "POSITION":12223, + "NORMAL":12224 + }, + "indices":114, + "material":1 + } + ] + }, + { + "name":"Mesh.7646", + "primitives":[ + { + "attributes":{ + "POSITION":12225, + "NORMAL":12226 + }, + "indices":653, + "material":3 + } + ] + }, + { + "name":"Mesh.7297", + "primitives":[ + { + "attributes":{ + "POSITION":12227, + "NORMAL":12228, + "TEXCOORD_0":12229 + }, + "indices":2577, + "material":7 + } + ] + }, + { + "name":"Mesh.7331", + "primitives":[ + { + "attributes":{ + "POSITION":12230, + "NORMAL":12231, + "TEXCOORD_0":12232 + }, + "indices":2299, + "material":7 + } + ] + }, + { + "name":"Mesh.2446", + "primitives":[ + { + "attributes":{ + "POSITION":12233, + "NORMAL":12234, + "TEXCOORD_0":12235 + }, + "indices":4958, + "material":0 + } + ] + }, + { + "name":"Mesh.7284", + "primitives":[ + { + "attributes":{ + "POSITION":12236, + "NORMAL":12237, + "TEXCOORD_0":12238 + }, + "indices":404, + "material":7 + } + ] + }, + { + "name":"Mesh.2486", + "primitives":[ + { + "attributes":{ + "POSITION":12239, + "NORMAL":12240, + "TEXCOORD_0":12241 + }, + "indices":1746, + "material":0 + } + ] + }, + { + "name":"Mesh.8074", + "primitives":[ + { + "attributes":{ + "POSITION":12242, + "NORMAL":12243, + "TEXCOORD_0":12244 + }, + "indices":3195, + "material":0 + } + ] + }, + { + "name":"Mesh.7938", + "primitives":[ + { + "attributes":{ + "POSITION":12245, + "NORMAL":12246 + }, + "indices":12247, + "material":3 + } + ] + }, + { + "name":"Mesh.5520", + "primitives":[ + { + "attributes":{ + "POSITION":12248, + "NORMAL":12249, + "TEXCOORD_0":12250 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6352", + "primitives":[ + { + "attributes":{ + "POSITION":12251, + "NORMAL":12252 + }, + "indices":9827, + "material":0 + } + ] + }, + { + "name":"Mesh.1920", + "primitives":[ + { + "attributes":{ + "POSITION":12253, + "NORMAL":12254 + }, + "indices":4042, + "material":0 + } + ] + }, + { + "name":"Mesh.2096", + "primitives":[ + { + "attributes":{ + "POSITION":12255, + "NORMAL":12256, + "TEXCOORD_0":12257 + }, + "indices":12258, + "material":3 + } + ] + }, + { + "name":"Mesh.8154", + "primitives":[ + { + "attributes":{ + "POSITION":12259, + "NORMAL":12260 + }, + "indices":2261, + "material":3 + } + ] + }, + { + "name":"Mesh.273", + "primitives":[ + { + "attributes":{ + "POSITION":12261, + "NORMAL":12262, + "TEXCOORD_0":12263 + }, + "indices":12264, + "material":0 + } + ] + }, + { + "name":"Mesh.8989", + "primitives":[ + { + "attributes":{ + "POSITION":12265, + "NORMAL":12266, + "TEXCOORD_0":12267 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.6068", + "primitives":[ + { + "attributes":{ + "POSITION":12268, + "NORMAL":12269, + "TEXCOORD_0":12270 + }, + "indices":1452, + "material":12 + } + ] + }, + { + "name":"Mesh.6926", + "primitives":[ + { + "attributes":{ + "POSITION":12271, + "NORMAL":12272, + "TEXCOORD_0":12273 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.1017", + "primitives":[ + { + "attributes":{ + "POSITION":12274, + "NORMAL":12275, + "TEXCOORD_0":12276 + }, + "indices":5170, + "material":0 + } + ] + }, + { + "name":"Mesh.6608", + "primitives":[ + { + "attributes":{ + "POSITION":12277, + "NORMAL":12278 + }, + "indices":9827, + "material":0 + } + ] + }, + { + "name":"Mesh.8257", + "primitives":[ + { + "attributes":{ + "POSITION":12279, + "NORMAL":12280 + }, + "indices":12281, + "material":3 + } + ] + }, + { + "name":"Mesh.5162", + "primitives":[ + { + "attributes":{ + "POSITION":12282, + "NORMAL":12283, + "TEXCOORD_0":12284 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.473", + "primitives":[ + { + "attributes":{ + "POSITION":12285, + "NORMAL":12286 + }, + "indices":676, + "material":3 + } + ] + }, + { + "name":"Mesh.2631", + "primitives":[ + { + "attributes":{ + "POSITION":12287, + "NORMAL":12288, + "TEXCOORD_0":12289 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.5011", + "primitives":[ + { + "attributes":{ + "POSITION":12290, + "NORMAL":12291, + "TEXCOORD_0":12292 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2377", + "primitives":[ + { + "attributes":{ + "POSITION":12293, + "NORMAL":12294, + "TEXCOORD_0":12295 + }, + "indices":8156, + "material":0 + } + ] + }, + { + "name":"Mesh.323", + "primitives":[ + { + "attributes":{ + "POSITION":12296, + "NORMAL":12297, + "TEXCOORD_0":12298 + }, + "indices":144, + "material":0 + } + ] + }, + { + "name":"Mesh.522", + "primitives":[ + { + "attributes":{ + "POSITION":12299, + "NORMAL":12300, + "TEXCOORD_0":12301 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.1159", + "primitives":[ + { + "attributes":{ + "POSITION":12302, + "NORMAL":12303, + "TEXCOORD_0":12304 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.9144", + "primitives":[ + { + "attributes":{ + "POSITION":12305, + "NORMAL":12306, + "TEXCOORD_0":12307 + }, + "indices":525, + "material":7 + } + ] + }, + { + "name":"Mesh.1778", + "primitives":[ + { + "attributes":{ + "POSITION":12308, + "NORMAL":12309, + "TEXCOORD_0":12310 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.8596", + "primitives":[ + { + "attributes":{ + "POSITION":12311, + "NORMAL":12312 + }, + "indices":12313, + "material":3 + } + ] + }, + { + "name":"Mesh.1137", + "primitives":[ + { + "attributes":{ + "POSITION":12314, + "NORMAL":12315, + "TEXCOORD_0":12316 + }, + "indices":4359, + "material":0 + } + ] + }, + { + "name":"Mesh.6722", + "primitives":[ + { + "attributes":{ + "POSITION":12317, + "NORMAL":12318 + }, + "indices":4951, + "material":0 + } + ] + }, + { + "name":"Mesh.5964", + "primitives":[ + { + "attributes":{ + "POSITION":12319, + "NORMAL":12320, + "TEXCOORD_0":12321 + }, + "indices":1822, + "material":11 + } + ] + }, + { + "name":"Mesh.844", + "primitives":[ + { + "attributes":{ + "POSITION":12322, + "NORMAL":12323, + "TEXCOORD_0":12324 + }, + "indices":12325, + "material":0 + } + ] + }, + { + "name":"Mesh.5603", + "primitives":[ + { + "attributes":{ + "POSITION":12326, + "NORMAL":12327, + "TEXCOORD_0":12328 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5452", + "primitives":[ + { + "attributes":{ + "POSITION":12329, + "NORMAL":12330, + "TEXCOORD_0":12331 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7009", + "primitives":[ + { + "attributes":{ + "POSITION":12332, + "NORMAL":12333 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.2379", + "primitives":[ + { + "attributes":{ + "POSITION":12334, + "NORMAL":12335, + "TEXCOORD_0":12336 + }, + "indices":5069, + "material":0 + } + ] + }, + { + "name":"Mesh.6364", + "primitives":[ + { + "attributes":{ + "POSITION":12337, + "NORMAL":12338 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.6691", + "primitives":[ + { + "attributes":{ + "POSITION":12339, + "NORMAL":12340 + }, + "indices":12341, + "material":0 + } + ] + }, + { + "name":"Mesh.5381", + "primitives":[ + { + "attributes":{ + "POSITION":12342, + "NORMAL":12343, + "TEXCOORD_0":12344 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.574", + "primitives":[ + { + "attributes":{ + "POSITION":12345, + "NORMAL":12346, + "TEXCOORD_0":12347 + }, + "indices":157, + "material":56 + } + ] + }, + { + "name":"Mesh.243", + "primitives":[ + { + "attributes":{ + "POSITION":12348, + "NORMAL":12349, + "TEXCOORD_0":12350 + }, + "indices":1633, + "material":3 + } + ] + }, + { + "name":"Mesh.8311", + "primitives":[ + { + "attributes":{ + "POSITION":12351, + "NORMAL":12352 + }, + "indices":6462, + "material":3 + } + ] + }, + { + "name":"Mesh.7225", + "primitives":[ + { + "attributes":{ + "POSITION":12353, + "NORMAL":12354, + "TEXCOORD_0":12355 + }, + "indices":12356, + "material":7 + } + ] + }, + { + "name":"Mesh.8867", + "primitives":[ + { + "attributes":{ + "POSITION":12357, + "NORMAL":12358 + }, + "indices":11042, + "material":3 + } + ] + }, + { + "name":"Mesh.387", + "primitives":[ + { + "attributes":{ + "POSITION":12359, + "NORMAL":12360, + "TEXCOORD_0":12361 + }, + "indices":1040, + "material":0 + } + ] + }, + { + "name":"Mesh.263", + "primitives":[ + { + "attributes":{ + "POSITION":12362, + "NORMAL":12363, + "TEXCOORD_0":12364 + }, + "indices":12365, + "material":3 + } + ] + }, + { + "name":"Mesh.6620", + "primitives":[ + { + "attributes":{ + "POSITION":12366, + "NORMAL":12367 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.2349", + "primitives":[ + { + "attributes":{ + "POSITION":12368, + "NORMAL":12369, + "TEXCOORD_0":12370 + }, + "indices":3601, + "material":0 + } + ] + }, + { + "name":"Mesh.1710", + "primitives":[ + { + "attributes":{ + "POSITION":12371, + "NORMAL":12372, + "TEXCOORD_0":12373 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.8109", + "primitives":[ + { + "attributes":{ + "POSITION":12374, + "NORMAL":12375 + }, + "indices":4876, + "material":3 + } + ] + }, + { + "name":"Mesh.927", + "primitives":[ + { + "attributes":{ + "POSITION":12376, + "NORMAL":12377, + "TEXCOORD_0":12378 + }, + "indices":8179, + "material":0 + } + ] + }, + { + "name":"Mesh.8373", + "primitives":[ + { + "attributes":{ + "POSITION":12379, + "NORMAL":12380 + }, + "indices":4761, + "material":3 + } + ] + }, + { + "name":"Mesh.7176", + "primitives":[ + { + "attributes":{ + "POSITION":12381, + "NORMAL":12382, + "TEXCOORD_0":12383 + }, + "indices":12384, + "material":7 + } + ] + }, + { + "name":"Mesh.7012", + "primitives":[ + { + "attributes":{ + "POSITION":12385, + "NORMAL":12386, + "TEXCOORD_0":12387 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.014", + "primitives":[ + { + "attributes":{ + "POSITION":12388, + "NORMAL":12389, + "TEXCOORD_0":12390 + }, + "indices":11080, + "material":41 + } + ] + }, + { + "name":"Mesh.6694", + "primitives":[ + { + "attributes":{ + "POSITION":12391, + "NORMAL":12392 + }, + "indices":9045, + "material":0 + } + ] + }, + { + "name":"Mesh.1250", + "primitives":[ + { + "attributes":{ + "POSITION":12393, + "NORMAL":12394, + "TEXCOORD_0":12395 + }, + "indices":12396, + "material":15 + } + ] + }, + { + "name":"Mesh.7370", + "primitives":[ + { + "attributes":{ + "POSITION":12397, + "NORMAL":12398, + "TEXCOORD_0":12399 + }, + "indices":3535, + "material":7 + } + ] + }, + { + "name":"Mesh.1639", + "primitives":[ + { + "attributes":{ + "POSITION":12400, + "NORMAL":12401, + "TEXCOORD_0":12402 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.6734", + "primitives":[ + { + "attributes":{ + "POSITION":12403, + "NORMAL":12404 + }, + "indices":1775, + "material":0 + } + ] + }, + { + "name":"Mesh.5279", + "primitives":[ + { + "attributes":{ + "POSITION":12405, + "NORMAL":12406, + "TEXCOORD_0":12407 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8354", + "primitives":[ + { + "attributes":{ + "POSITION":12408, + "NORMAL":12409 + }, + "indices":2766, + "material":3 + } + ] + }, + { + "name":"Mesh.1032", + "primitives":[ + { + "attributes":{ + "POSITION":12410, + "NORMAL":12411, + "TEXCOORD_0":12412 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.6741", + "primitives":[ + { + "attributes":{ + "POSITION":12413, + "NORMAL":12414 + }, + "indices":7259, + "material":0 + } + ] + }, + { + "name":"Mesh.2470", + "primitives":[ + { + "attributes":{ + "POSITION":12415, + "NORMAL":12416, + "TEXCOORD_0":12417 + }, + "indices":12418, + "material":0 + } + ] + }, + { + "name":"Mesh.8188", + "primitives":[ + { + "attributes":{ + "POSITION":12419, + "NORMAL":12420 + }, + "indices":12421, + "material":3 + } + ] + }, + { + "name":"Mesh.7663", + "primitives":[ + { + "attributes":{ + "POSITION":12422, + "NORMAL":12423 + }, + "indices":12424, + "material":3 + } + ] + }, + { + "name":"Mesh.069", + "primitives":[ + { + "attributes":{ + "POSITION":12425, + "NORMAL":12426 + }, + "indices":12427, + "material":39 + } + ] + }, + { + "name":"Mesh.6663", + "primitives":[ + { + "attributes":{ + "POSITION":12428, + "NORMAL":12429 + }, + "indices":6064, + "material":0 + } + ] + }, + { + "name":"Mesh.2392", + "primitives":[ + { + "attributes":{ + "POSITION":12430, + "NORMAL":12431 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6049", + "primitives":[ + { + "attributes":{ + "POSITION":12432, + "NORMAL":12433, + "TEXCOORD_0":12434 + }, + "indices":9545, + "material":11 + } + ] + }, + { + "name":"Mesh.7811", + "primitives":[ + { + "attributes":{ + "POSITION":12435, + "NORMAL":12436 + }, + "indices":12437, + "material":3 + } + ] + }, + { + "name":"Mesh.970", + "primitives":[ + { + "attributes":{ + "POSITION":12438, + "NORMAL":12439, + "TEXCOORD_0":12440 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.6552", + "primitives":[ + { + "attributes":{ + "POSITION":12441, + "NORMAL":12442 + }, + "indices":3889, + "material":0 + } + ] + }, + { + "name":"Mesh.2120", + "primitives":[ + { + "attributes":{ + "POSITION":12443, + "NORMAL":12444, + "TEXCOORD_0":12445 + }, + "indices":1299, + "material":3 + } + ] + }, + { + "name":"Mesh.6265", + "primitives":[ + { + "attributes":{ + "POSITION":12446, + "NORMAL":12447, + "TEXCOORD_0":12448 + }, + "indices":9639, + "material":11 + } + ] + }, + { + "name":"Mesh.859", + "primitives":[ + { + "attributes":{ + "POSITION":12449, + "NORMAL":12450, + "TEXCOORD_0":12451 + }, + "indices":5261, + "material":0 + } + ] + }, + { + "name":"Mesh.439", + "primitives":[ + { + "attributes":{ + "POSITION":12452, + "NORMAL":12453 + }, + "indices":75, + "material":0 + } + ] + }, + { + "name":"Mesh.4995", + "primitives":[ + { + "attributes":{ + "POSITION":12454, + "NORMAL":12455, + "TEXCOORD_0":12456 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8648", + "primitives":[ + { + "attributes":{ + "POSITION":12457, + "NORMAL":12458 + }, + "indices":5116, + "material":3 + } + ] + }, + { + "name":"Mesh.2361", + "primitives":[ + { + "attributes":{ + "POSITION":12459, + "NORMAL":12460, + "TEXCOORD_0":12461 + }, + "indices":328, + "material":0 + } + ] + }, + { + "name":"Mesh.5668", + "primitives":[ + { + "attributes":{ + "POSITION":12462, + "NORMAL":12463, + "TEXCOORD_0":12464 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2049", + "primitives":[ + { + "attributes":{ + "POSITION":12465, + "NORMAL":12466, + "TEXCOORD_0":12467 + }, + "indices":11685, + "material":19 + } + ] + }, + { + "name":"Mesh.1078", + "primitives":[ + { + "attributes":{ + "POSITION":12468, + "NORMAL":12469, + "TEXCOORD_0":12470 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.303", + "primitives":[ + { + "attributes":{ + "POSITION":12471, + "NORMAL":12472, + "TEXCOORD_0":12473 + }, + "indices":7438, + "material":0 + } + ] + }, + { + "name":"Mesh.2250", + "primitives":[ + { + "attributes":{ + "POSITION":12474, + "NORMAL":12475, + "TEXCOORD_0":12476 + }, + "indices":1878, + "material":0 + } + ] + }, + { + "name":"Mesh.4924", + "primitives":[ + { + "attributes":{ + "POSITION":12477, + "NORMAL":12478, + "TEXCOORD_0":12479 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9021", + "primitives":[ + { + "attributes":{ + "POSITION":12480, + "NORMAL":12481, + "TEXCOORD_0":12482 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.7854", + "primitives":[ + { + "attributes":{ + "POSITION":12483, + "NORMAL":12484 + }, + "indices":12485, + "material":3 + } + ] + }, + { + "name":"Mesh.677", + "primitives":[ + { + "attributes":{ + "POSITION":12486, + "NORMAL":12487, + "TEXCOORD_0":12488 + }, + "indices":10354, + "material":0 + } + ] + }, + { + "name":"Mesh.1004", + "primitives":[ + { + "attributes":{ + "POSITION":12489, + "NORMAL":12490, + "TEXCOORD_0":12491 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.2138", + "primitives":[ + { + "attributes":{ + "POSITION":12492, + "NORMAL":12493, + "TEXCOORD_0":12494 + }, + "indices":12495, + "material":3 + } + ] + }, + { + "name":"Mesh.5149", + "primitives":[ + { + "attributes":{ + "POSITION":12496, + "NORMAL":12497, + "TEXCOORD_0":12498 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5476", + "primitives":[ + { + "attributes":{ + "POSITION":12499, + "NORMAL":12500, + "TEXCOORD_0":12501 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5694", + "primitives":[ + { + "attributes":{ + "POSITION":12502, + "NORMAL":12503, + "TEXCOORD_0":12504 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5038", + "primitives":[ + { + "attributes":{ + "POSITION":12505, + "NORMAL":12506, + "TEXCOORD_0":12507 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2404", + "primitives":[ + { + "attributes":{ + "POSITION":12508, + "NORMAL":12509, + "TEXCOORD_0":12510 + }, + "indices":3431, + "material":30 + } + ] + }, + { + "name":"Mesh.5550", + "primitives":[ + { + "attributes":{ + "POSITION":12511, + "NORMAL":12512, + "TEXCOORD_0":12513 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9100", + "primitives":[ + { + "attributes":{ + "POSITION":12514, + "NORMAL":12515, + "TEXCOORD_0":12516 + }, + "indices":465, + "material":7 + } + ] + }, + { + "name":"Mesh.2777", + "primitives":[ + { + "attributes":{ + "POSITION":12517, + "NORMAL":12518, + "TEXCOORD_0":12519 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.8869", + "primitives":[ + { + "attributes":{ + "POSITION":12520, + "NORMAL":12521 + }, + "indices":7610, + "material":3 + } + ] + }, + { + "name":"Mesh.6564", + "primitives":[ + { + "attributes":{ + "POSITION":12522, + "NORMAL":12523 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.1173", + "primitives":[ + { + "attributes":{ + "POSITION":12524, + "NORMAL":12525 + }, + "indices":114, + "material":1 + } + ] + }, + { + "name":"Mesh.245", + "primitives":[ + { + "attributes":{ + "POSITION":12526, + "NORMAL":12527, + "TEXCOORD_0":12528 + }, + "indices":12529, + "material":3 + } + ] + }, + { + "name":"Mesh.1147", + "primitives":[ + { + "attributes":{ + "POSITION":12530, + "NORMAL":12531, + "TEXCOORD_0":12532 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.334", + "primitives":[ + { + "attributes":{ + "POSITION":12533, + "NORMAL":12534, + "TEXCOORD_0":12535 + }, + "indices":554, + "material":0 + } + ] + }, + { + "name":"Mesh.2445", + "primitives":[ + { + "attributes":{ + "POSITION":12536, + "NORMAL":12537, + "TEXCOORD_0":12538 + }, + "indices":4958, + "material":0 + } + ] + }, + { + "name":"Mesh.7425", + "primitives":[ + { + "attributes":{ + "POSITION":12539, + "NORMAL":12540, + "TEXCOORD_0":12541 + }, + "indices":3708, + "material":7 + } + ] + }, + { + "name":"Mesh.7283", + "primitives":[ + { + "attributes":{ + "POSITION":12542, + "NORMAL":12543, + "TEXCOORD_0":12544 + }, + "indices":12545, + "material":7 + } + ] + }, + { + "name":"Mesh.2485", + "primitives":[ + { + "attributes":{ + "POSITION":12546, + "NORMAL":12547, + "TEXCOORD_0":12548 + }, + "indices":1746, + "material":0 + } + ] + }, + { + "name":"Mesh.5519", + "primitives":[ + { + "attributes":{ + "POSITION":12549, + "NORMAL":12550, + "TEXCOORD_0":12551 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6351", + "primitives":[ + { + "attributes":{ + "POSITION":12552, + "NORMAL":12553 + }, + "indices":12554, + "material":0 + } + ] + }, + { + "name":"Mesh.2993", + "primitives":[ + { + "attributes":{ + "POSITION":12555, + "NORMAL":12556, + "TEXCOORD_0":12557 + }, + "indices":12558, + "material":7 + } + ] + }, + { + "name":"Mesh.1919", + "primitives":[ + { + "attributes":{ + "POSITION":12559, + "NORMAL":12560 + }, + "indices":2624, + "material":0 + } + ] + }, + { + "name":"Mesh.8825", + "primitives":[ + { + "attributes":{ + "POSITION":12561, + "NORMAL":12562 + }, + "indices":824, + "material":3 + } + ] + }, + { + "name":"Mesh.7901", + "primitives":[ + { + "attributes":{ + "POSITION":12563, + "NORMAL":12564 + }, + "indices":12565, + "material":3 + } + ] + }, + { + "name":"Mesh.6962", + "primitives":[ + { + "attributes":{ + "POSITION":12566, + "NORMAL":12567 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.8153", + "primitives":[ + { + "attributes":{ + "POSITION":12568, + "NORMAL":12569 + }, + "indices":4024, + "material":3 + } + ] + }, + { + "name":"Mesh.274", + "primitives":[ + { + "attributes":{ + "POSITION":12570, + "NORMAL":12571, + "TEXCOORD_0":12572 + }, + "indices":10354, + "material":0 + } + ] + }, + { + "name":"Mesh.8988", + "primitives":[ + { + "attributes":{ + "POSITION":12573, + "NORMAL":12574, + "TEXCOORD_0":12575 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.257", + "primitives":[ + { + "attributes":{ + "POSITION":12576, + "NORMAL":12577, + "TEXCOORD_0":12578 + }, + "indices":12579, + "material":3 + } + ] + }, + { + "name":"Mesh.1016", + "primitives":[ + { + "attributes":{ + "POSITION":12580, + "NORMAL":12581, + "TEXCOORD_0":12582 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.6607", + "primitives":[ + { + "attributes":{ + "POSITION":12583, + "NORMAL":12584 + }, + "indices":12341, + "material":0 + } + ] + }, + { + "name":"Mesh.5161", + "primitives":[ + { + "attributes":{ + "POSITION":12585, + "NORMAL":12586, + "TEXCOORD_0":12587 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5633", + "primitives":[ + { + "attributes":{ + "POSITION":12588, + "NORMAL":12589, + "TEXCOORD_0":12590 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2630", + "primitives":[ + { + "attributes":{ + "POSITION":12591, + "NORMAL":12592, + "TEXCOORD_0":12593 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.5010", + "primitives":[ + { + "attributes":{ + "POSITION":12594, + "NORMAL":12595, + "TEXCOORD_0":12596 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2376", + "primitives":[ + { + "attributes":{ + "POSITION":12597, + "NORMAL":12598, + "TEXCOORD_0":12599 + }, + "indices":3513, + "material":0 + } + ] + }, + { + "name":"Mesh.521", + "primitives":[ + { + "attributes":{ + "POSITION":12600, + "NORMAL":12601, + "TEXCOORD_0":12602 + }, + "indices":12603, + "material":0 + } + ] + }, + { + "name":"Mesh.8196", + "primitives":[ + { + "attributes":{ + "POSITION":12604, + "NORMAL":12605 + }, + "indices":12606, + "material":3 + } + ] + }, + { + "name":"Mesh.5377", + "primitives":[ + { + "attributes":{ + "POSITION":12607, + "NORMAL":12608, + "TEXCOORD_0":12609 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6900", + "primitives":[ + { + "attributes":{ + "POSITION":12610, + "NORMAL":12611 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.658", + "primitives":[ + { + "attributes":{ + "POSITION":12612, + "NORMAL":12613, + "TEXCOORD_0":12614 + }, + "indices":12615, + "material":3 + } + ] + }, + { + "name":"Mesh.1136", + "primitives":[ + { + "attributes":{ + "POSITION":12616, + "NORMAL":12617, + "TEXCOORD_0":12618 + }, + "indices":1536, + "material":0 + } + ] + }, + { + "name":"Mesh.6721", + "primitives":[ + { + "attributes":{ + "POSITION":12619, + "NORMAL":12620 + }, + "indices":12124, + "material":0 + } + ] + }, + { + "name":"Mesh.843", + "primitives":[ + { + "attributes":{ + "POSITION":12621, + "NORMAL":12622, + "TEXCOORD_0":12623 + }, + "indices":12624, + "material":0 + } + ] + }, + { + "name":"Mesh.5602", + "primitives":[ + { + "attributes":{ + "POSITION":12625, + "NORMAL":12626, + "TEXCOORD_0":12627 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5451", + "primitives":[ + { + "attributes":{ + "POSITION":12628, + "NORMAL":12629, + "TEXCOORD_0":12630 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7711", + "primitives":[ + { + "attributes":{ + "POSITION":12631, + "NORMAL":12632 + }, + "indices":12633, + "material":3 + } + ] + }, + { + "name":"Mesh.117", + "primitives":[ + { + "attributes":{ + "POSITION":12634, + "NORMAL":12635, + "TEXCOORD_0":12636 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7008", + "primitives":[ + { + "attributes":{ + "POSITION":12637, + "NORMAL":12638, + "TEXCOORD_0":12639 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.2673", + "primitives":[ + { + "attributes":{ + "POSITION":12640, + "NORMAL":12641, + "TEXCOORD_0":12642 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.8859", + "primitives":[ + { + "attributes":{ + "POSITION":12643, + "NORMAL":12644 + }, + "indices":10348, + "material":3 + } + ] + }, + { + "name":"Mesh.6690", + "primitives":[ + { + "attributes":{ + "POSITION":12645, + "NORMAL":12646 + }, + "indices":10555, + "material":0 + } + ] + }, + { + "name":"Mesh.5380", + "primitives":[ + { + "attributes":{ + "POSITION":12647, + "NORMAL":12648, + "TEXCOORD_0":12649 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.573", + "primitives":[ + { + "attributes":{ + "POSITION":12650, + "NORMAL":12651, + "TEXCOORD_0":12652 + }, + "indices":12653, + "material":0 + } + ] + }, + { + "name":"Mesh.8310", + "primitives":[ + { + "attributes":{ + "POSITION":12654, + "NORMAL":12655 + }, + "indices":12656, + "material":3 + } + ] + }, + { + "name":"Mesh.7224", + "primitives":[ + { + "attributes":{ + "POSITION":12657, + "NORMAL":12658, + "TEXCOORD_0":12659 + }, + "indices":4003, + "material":7 + } + ] + }, + { + "name":"Mesh.7515", + "primitives":[ + { + "attributes":{ + "POSITION":12660, + "NORMAL":12661 + }, + "indices":12662, + "material":3 + } + ] + }, + { + "name":"Mesh.1820", + "primitives":[ + { + "attributes":{ + "POSITION":12663, + "NORMAL":12664, + "TEXCOORD_0":12665 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.8700", + "primitives":[ + { + "attributes":{ + "POSITION":12666, + "NORMAL":12667 + }, + "indices":1915, + "material":3 + } + ] + }, + { + "name":"Mesh.1188", + "primitives":[ + { + "attributes":{ + "POSITION":12668, + "NORMAL":12669 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.433", + "primitives":[ + { + "attributes":{ + "POSITION":12670, + "NORMAL":12671 + }, + "indices":12124, + "material":0 + } + ] + }, + { + "name":"Mesh.4837", + "primitives":[ + { + "attributes":{ + "POSITION":12672, + "NORMAL":12673, + "TEXCOORD_0":12674 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2348", + "primitives":[ + { + "attributes":{ + "POSITION":12675, + "NORMAL":12676, + "TEXCOORD_0":12677 + }, + "indices":3972, + "material":0 + } + ] + }, + { + "name":"Mesh.8231", + "primitives":[ + { + "attributes":{ + "POSITION":12678, + "NORMAL":12679 + }, + "indices":2954, + "material":3 + } + ] + }, + { + "name":"Mesh.482", + "primitives":[ + { + "attributes":{ + "POSITION":12680, + "NORMAL":12681 + }, + "indices":9770, + "material":3 + } + ] + }, + { + "name":"Mesh.7912", + "primitives":[ + { + "attributes":{ + "POSITION":12682, + "NORMAL":12683 + }, + "indices":12684, + "material":3 + } + ] + }, + { + "name":"Mesh.394", + "primitives":[ + { + "attributes":{ + "POSITION":12685, + "NORMAL":12686, + "TEXCOORD_0":12687 + }, + "indices":12688, + "material":0 + } + ] + }, + { + "name":"Mesh.926", + "primitives":[ + { + "attributes":{ + "POSITION":12689, + "NORMAL":12690, + "TEXCOORD_0":12691 + }, + "indices":12692, + "material":0 + } + ] + }, + { + "name":"Mesh.8279", + "primitives":[ + { + "attributes":{ + "POSITION":12693, + "NORMAL":12694 + }, + "indices":7601, + "material":3 + } + ] + }, + { + "name":"Mesh.013", + "primitives":[ + { + "attributes":{ + "POSITION":12695, + "NORMAL":12696, + "TEXCOORD_0":12697, + "TEXCOORD_1":12698 + }, + "indices":12699, + "material":36 + } + ] + }, + { + "name":"Mesh.6693", + "primitives":[ + { + "attributes":{ + "POSITION":12700, + "NORMAL":12701 + }, + "indices":12702, + "material":0 + } + ] + }, + { + "name":"Mesh.7369", + "primitives":[ + { + "attributes":{ + "POSITION":12703, + "NORMAL":12704, + "TEXCOORD_0":12705 + }, + "indices":3886, + "material":7 + } + ] + }, + { + "name":"Mesh.1638", + "primitives":[ + { + "attributes":{ + "POSITION":12706, + "NORMAL":12707, + "TEXCOORD_0":12708 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.1974", + "primitives":[ + { + "attributes":{ + "POSITION":12709, + "NORMAL":12710, + "TEXCOORD_0":12711 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5278", + "primitives":[ + { + "attributes":{ + "POSITION":12712, + "NORMAL":12713, + "TEXCOORD_0":12714 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9069", + "primitives":[ + { + "attributes":{ + "POSITION":12715, + "NORMAL":12716, + "TEXCOORD_0":12717 + }, + "indices":971, + "material":7 + } + ] + }, + { + "name":"Mesh.8353", + "primitives":[ + { + "attributes":{ + "POSITION":12718, + "NORMAL":12719 + }, + "indices":3109, + "material":3 + } + ] + }, + { + "name":"Mesh.7737", + "primitives":[ + { + "attributes":{ + "POSITION":12720, + "NORMAL":12721 + }, + "indices":12722, + "material":3 + } + ] + }, + { + "name":"Mesh.1031", + "primitives":[ + { + "attributes":{ + "POSITION":12723, + "NORMAL":12724, + "TEXCOORD_0":12725 + }, + "indices":140, + "material":0 + } + ] + }, + { + "name":"Mesh.2469", + "primitives":[ + { + "attributes":{ + "POSITION":12726, + "NORMAL":12727, + "TEXCOORD_0":12728 + }, + "indices":12418, + "material":0 + } + ] + }, + { + "name":"Mesh.342", + "primitives":[ + { + "attributes":{ + "POSITION":12729, + "NORMAL":12730, + "TEXCOORD_0":12731 + }, + "indices":3267, + "material":0 + } + ] + }, + { + "name":"Mesh.1863", + "primitives":[ + { + "attributes":{ + "POSITION":12732, + "NORMAL":12733 + }, + "indices":2743, + "material":0 + } + ] + }, + { + "name":"Mesh.6980", + "primitives":[ + { + "attributes":{ + "POSITION":12734, + "NORMAL":12735, + "TEXCOORD_0":12736 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.8090", + "primitives":[ + { + "attributes":{ + "POSITION":12737, + "NORMAL":12738 + }, + "indices":1022, + "material":3 + } + ] + }, + { + "name":"Mesh.6662", + "primitives":[ + { + "attributes":{ + "POSITION":12739, + "NORMAL":12740 + }, + "indices":6411, + "material":0 + } + ] + }, + { + "name":"Mesh.2391", + "primitives":[ + { + "attributes":{ + "POSITION":12741, + "NORMAL":12742 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6048", + "primitives":[ + { + "attributes":{ + "POSITION":12743, + "NORMAL":12744, + "TEXCOORD_0":12745 + }, + "indices":9545, + "material":11 + } + ] + }, + { + "name":"Mesh.7810", + "primitives":[ + { + "attributes":{ + "POSITION":12746, + "NORMAL":12747 + }, + "indices":12748, + "material":3 + } + ] + }, + { + "name":"Mesh.161", + "primitives":[ + { + "attributes":{ + "POSITION":12749, + "NORMAL":12750, + "TEXCOORD_0":12751 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.969", + "primitives":[ + { + "attributes":{ + "POSITION":12752, + "NORMAL":12753, + "TEXCOORD_0":12754 + }, + "indices":1611, + "material":0 + } + ] + }, + { + "name":"Mesh.6551", + "primitives":[ + { + "attributes":{ + "POSITION":12755, + "NORMAL":12756 + }, + "indices":1355, + "material":0 + } + ] + }, + { + "name":"Mesh.9016", + "primitives":[ + { + "attributes":{ + "POSITION":12757, + "NORMAL":12758, + "TEXCOORD_0":12759 + }, + "indices":9491, + "material":7 + } + ] + }, + { + "name":"Mesh.2119", + "primitives":[ + { + "attributes":{ + "POSITION":12760, + "NORMAL":12761, + "TEXCOORD_0":12762 + }, + "indices":1633, + "material":3 + } + ] + }, + { + "name":"Mesh.8701", + "primitives":[ + { + "attributes":{ + "POSITION":12763, + "NORMAL":12764 + }, + "indices":11228, + "material":3 + } + ] + }, + { + "name":"Mesh.1000", + "primitives":[ + { + "attributes":{ + "POSITION":12765, + "NORMAL":12766, + "TEXCOORD_0":12767 + }, + "indices":2307, + "material":0 + } + ] + }, + { + "name":"Mesh.8608", + "primitives":[ + { + "attributes":{ + "POSITION":12768, + "NORMAL":12769 + }, + "indices":1150, + "material":3 + } + ] + }, + { + "name":"Mesh.6264", + "primitives":[ + { + "attributes":{ + "POSITION":12770, + "NORMAL":12771, + "TEXCOORD_0":12772 + }, + "indices":9639, + "material":11 + } + ] + }, + { + "name":"Mesh.858", + "primitives":[ + { + "attributes":{ + "POSITION":12773, + "NORMAL":12774, + "TEXCOORD_0":12775 + }, + "indices":4391, + "material":0 + } + ] + }, + { + "name":"Mesh.438", + "primitives":[ + { + "attributes":{ + "POSITION":12776, + "NORMAL":12777 + }, + "indices":4661, + "material":0 + } + ] + }, + { + "name":"Mesh.4994", + "primitives":[ + { + "attributes":{ + "POSITION":12778, + "NORMAL":12779, + "TEXCOORD_0":12780 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2360", + "primitives":[ + { + "attributes":{ + "POSITION":12781, + "NORMAL":12782, + "TEXCOORD_0":12783 + }, + "indices":51, + "material":0 + } + ] + }, + { + "name":"Mesh.5657", + "primitives":[ + { + "attributes":{ + "POSITION":12784, + "NORMAL":12785, + "TEXCOORD_0":12786 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2048", + "primitives":[ + { + "attributes":{ + "POSITION":12787, + "NORMAL":12788, + "TEXCOORD_0":12789 + }, + "indices":12034, + "material":0 + } + ] + }, + { + "name":"Mesh.1077", + "primitives":[ + { + "attributes":{ + "POSITION":12790, + "NORMAL":12791, + "TEXCOORD_0":12792 + }, + "indices":296, + "material":4 + } + ] + }, + { + "name":"Mesh.2249", + "primitives":[ + { + "attributes":{ + "POSITION":12793, + "NORMAL":12794, + "TEXCOORD_0":12795 + }, + "indices":1510, + "material":0 + } + ] + }, + { + "name":"Mesh.8708", + "primitives":[ + { + "attributes":{ + "POSITION":12796, + "NORMAL":12797 + }, + "indices":9644, + "material":3 + } + ] + }, + { + "name":"Mesh.063", + "primitives":[ + { + "attributes":{ + "POSITION":12798, + "NORMAL":12799 + }, + "indices":12800, + "material":39 + } + ] + }, + { + "name":"Mesh.1166", + "primitives":[ + { + "attributes":{ + "POSITION":12801, + "NORMAL":12802 + }, + "indices":114, + "material":1 + } + ] + }, + { + "name":"Mesh.9095", + "primitives":[ + { + "attributes":{ + "POSITION":12803, + "NORMAL":12804, + "TEXCOORD_0":12805 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.7126", + "primitives":[ + { + "attributes":{ + "POSITION":12806, + "NORMAL":12807, + "TEXCOORD_0":12808 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.1841", + "primitives":[ + { + "attributes":{ + "POSITION":12809, + "NORMAL":12810 + }, + "indices":7167, + "material":8 + } + ] + }, + { + "name":"Mesh.4923", + "primitives":[ + { + "attributes":{ + "POSITION":12811, + "NORMAL":12812, + "TEXCOORD_0":12813 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1664", + "primitives":[ + { + "attributes":{ + "POSITION":12814, + "NORMAL":12815, + "TEXCOORD_0":12816 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.6331", + "primitives":[ + { + "attributes":{ + "POSITION":12817, + "NORMAL":12818, + "TEXCOORD_0":12819 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.7853", + "primitives":[ + { + "attributes":{ + "POSITION":12820, + "NORMAL":12821 + }, + "indices":12822, + "material":3 + } + ] + }, + { + "name":"Mesh.7364", + "primitives":[ + { + "attributes":{ + "POSITION":12823, + "NORMAL":12824, + "TEXCOORD_0":12825 + }, + "indices":12826, + "material":7 + } + ] + }, + { + "name":"Mesh.1003", + "primitives":[ + { + "attributes":{ + "POSITION":12827, + "NORMAL":12828, + "TEXCOORD_0":12829 + }, + "indices":4490, + "material":0 + } + ] + }, + { + "name":"Mesh.2912", + "primitives":[ + { + "attributes":{ + "POSITION":12830, + "NORMAL":12831, + "TEXCOORD_0":12832 + }, + "indices":12833, + "material":57 + } + ] + }, + { + "name":"Mesh.2902", + "primitives":[ + { + "attributes":{ + "POSITION":12834, + "NORMAL":12835, + "TEXCOORD_0":12836 + }, + "indices":12837, + "material":57 + } + ] + }, + { + "name":"Mesh.2910", + "primitives":[ + { + "attributes":{ + "POSITION":12838, + "NORMAL":12839, + "TEXCOORD_0":12840 + }, + "indices":12841, + "material":57 + } + ] + }, + { + "name":"Mesh.2920", + "primitives":[ + { + "attributes":{ + "POSITION":12842, + "NORMAL":12843, + "TEXCOORD_0":12844 + }, + "indices":12845, + "material":57 + } + ] + }, + { + "name":"Mesh.2911", + "primitives":[ + { + "attributes":{ + "POSITION":12846, + "NORMAL":12847, + "TEXCOORD_0":12848 + }, + "indices":12849, + "material":58 + } + ] + }, + { + "name":"Mesh.2905", + "primitives":[ + { + "attributes":{ + "POSITION":12850, + "NORMAL":12851, + "TEXCOORD_0":12852 + }, + "indices":12849, + "material":58 + } + ] + }, + { + "name":"Mesh.2918", + "primitives":[ + { + "attributes":{ + "POSITION":12853, + "NORMAL":12854, + "TEXCOORD_0":12855 + }, + "indices":12849, + "material":58 + } + ] + }, + { + "name":"Mesh.2907", + "primitives":[ + { + "attributes":{ + "POSITION":12856, + "NORMAL":12857, + "TEXCOORD_0":12858 + }, + "indices":12849, + "material":58 + } + ] + }, + { + "name":"Mesh.2915", + "primitives":[ + { + "attributes":{ + "POSITION":12859, + "NORMAL":12860, + "TEXCOORD_0":12861 + }, + "indices":12862, + "material":59 + } + ] + }, + { + "name":"Mesh.2904", + "primitives":[ + { + "attributes":{ + "POSITION":12863, + "NORMAL":12864, + "TEXCOORD_0":12865 + }, + "indices":12866, + "material":59 + } + ] + }, + { + "name":"Mesh.2917", + "primitives":[ + { + "attributes":{ + "POSITION":12867, + "NORMAL":12868, + "TEXCOORD_0":12869 + }, + "indices":12870, + "material":59 + } + ] + }, + { + "name":"Mesh.2906", + "primitives":[ + { + "attributes":{ + "POSITION":12871, + "NORMAL":12872, + "TEXCOORD_0":12873 + }, + "indices":12874, + "material":59 + } + ] + }, + { + "name":"Mesh.2914", + "primitives":[ + { + "attributes":{ + "POSITION":12875, + "NORMAL":12876, + "TEXCOORD_0":12877 + }, + "indices":12878, + "material":57 + }, + { + "attributes":{ + "POSITION":12879, + "NORMAL":12880, + "TEXCOORD_0":12881 + }, + "indices":12882, + "material":60 + } + ] + }, + { + "name":"Mesh.2903", + "primitives":[ + { + "attributes":{ + "POSITION":12883, + "NORMAL":12884, + "TEXCOORD_0":12885 + }, + "indices":12878, + "material":57 + }, + { + "attributes":{ + "POSITION":12886, + "NORMAL":12887, + "TEXCOORD_0":12888 + }, + "indices":12882, + "material":60 + } + ] + }, + { + "name":"Mesh.2916", + "primitives":[ + { + "attributes":{ + "POSITION":12889, + "NORMAL":12890, + "TEXCOORD_0":12891 + }, + "indices":12878, + "material":57 + }, + { + "attributes":{ + "POSITION":12892, + "NORMAL":12893, + "TEXCOORD_0":12894 + }, + "indices":12882, + "material":60 + } + ] + }, + { + "name":"Mesh.2909", + "primitives":[ + { + "attributes":{ + "POSITION":12895, + "NORMAL":12896, + "TEXCOORD_0":12897 + }, + "indices":12878, + "material":57 + }, + { + "attributes":{ + "POSITION":12898, + "NORMAL":12899, + "TEXCOORD_0":12900 + }, + "indices":12882, + "material":60 + } + ] + }, + { + "name":"Mesh.2901", + "primitives":[ + { + "attributes":{ + "POSITION":12901, + "NORMAL":12902, + "TEXCOORD_0":12903 + }, + "indices":12904, + "material":61 + }, + { + "attributes":{ + "POSITION":12905, + "NORMAL":12906, + "TEXCOORD_0":12907 + }, + "indices":12908, + "material":62 + } + ] + }, + { + "name":"Mesh.2913", + "primitives":[ + { + "attributes":{ + "POSITION":12909, + "NORMAL":12910, + "TEXCOORD_0":12911 + }, + "indices":12912, + "material":61 + }, + { + "attributes":{ + "POSITION":12913, + "NORMAL":12914, + "TEXCOORD_0":12915 + }, + "indices":12916, + "material":62 + } + ] + }, + { + "name":"Mesh.2919", + "primitives":[ + { + "attributes":{ + "POSITION":12917, + "NORMAL":12918, + "TEXCOORD_0":12919 + }, + "indices":12920, + "material":61 + }, + { + "attributes":{ + "POSITION":12921, + "NORMAL":12922, + "TEXCOORD_0":12923 + }, + "indices":12924, + "material":62 + } + ] + }, + { + "name":"Mesh.2908", + "primitives":[ + { + "attributes":{ + "POSITION":12925, + "NORMAL":12926, + "TEXCOORD_0":12927 + }, + "indices":12920, + "material":61 + }, + { + "attributes":{ + "POSITION":12928, + "NORMAL":12929, + "TEXCOORD_0":12930 + }, + "indices":12931, + "material":62 + } + ] + }, + { + "name":"Mesh.2900", + "primitives":[ + { + "attributes":{ + "POSITION":12932, + "NORMAL":12933 + }, + "indices":12934, + "material":63 + } + ] + }, + { + "name":"Mesh.6458", + "primitives":[ + { + "attributes":{ + "POSITION":12935, + "NORMAL":12936, + "TEXCOORD_0":12937 + }, + "indices":1490, + "material":0 + } + ] + }, + { + "name":"Mesh.5148", + "primitives":[ + { + "attributes":{ + "POSITION":12938, + "NORMAL":12939, + "TEXCOORD_0":12940 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5475", + "primitives":[ + { + "attributes":{ + "POSITION":12941, + "NORMAL":12942, + "TEXCOORD_0":12943 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5037", + "primitives":[ + { + "attributes":{ + "POSITION":12944, + "NORMAL":12945, + "TEXCOORD_0":12946 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2403", + "primitives":[ + { + "attributes":{ + "POSITION":12947, + "NORMAL":12948, + "TEXCOORD_0":12949 + }, + "indices":10713, + "material":0 + } + ] + }, + { + "name":"Mesh.8595", + "primitives":[ + { + "attributes":{ + "POSITION":12950, + "NORMAL":12951 + }, + "indices":10834, + "material":3 + } + ] + }, + { + "name":"Mesh.557", + "primitives":[ + { + "attributes":{ + "POSITION":12952, + "NORMAL":12953, + "TEXCOORD_0":12954 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.6563", + "primitives":[ + { + "attributes":{ + "POSITION":12955, + "NORMAL":12956, + "TEXCOORD_0":12957 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.7066", + "primitives":[ + { + "attributes":{ + "POSITION":12958, + "NORMAL":12959, + "TEXCOORD_0":12960 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.345", + "primitives":[ + { + "attributes":{ + "POSITION":12961, + "NORMAL":12962, + "TEXCOORD_0":12963 + }, + "indices":3831, + "material":0 + } + ] + }, + { + "name":"Mesh.1172", + "primitives":[ + { + "attributes":{ + "POSITION":12964, + "NORMAL":12965 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.335", + "primitives":[ + { + "attributes":{ + "POSITION":12966, + "NORMAL":12967, + "TEXCOORD_0":12968 + }, + "indices":3003, + "material":0 + } + ] + }, + { + "name":"Mesh.7424", + "primitives":[ + { + "attributes":{ + "POSITION":12969, + "NORMAL":12970, + "TEXCOORD_0":12971 + }, + "indices":12972, + "material":7 + } + ] + }, + { + "name":"Mesh.7282", + "primitives":[ + { + "attributes":{ + "POSITION":12973, + "NORMAL":12974, + "TEXCOORD_0":12975 + }, + "indices":1017, + "material":7 + } + ] + }, + { + "name":"Mesh.8577", + "primitives":[ + { + "attributes":{ + "POSITION":12976, + "NORMAL":12977 + }, + "indices":12978, + "material":3 + } + ] + }, + { + "name":"Mesh.2484", + "primitives":[ + { + "attributes":{ + "POSITION":12979, + "NORMAL":12980, + "TEXCOORD_0":12981 + }, + "indices":12982, + "material":0 + } + ] + }, + { + "name":"Mesh.8757", + "primitives":[ + { + "attributes":{ + "POSITION":12983, + "NORMAL":12984 + }, + "indices":6668, + "material":3 + } + ] + }, + { + "name":"Mesh.7891", + "primitives":[ + { + "attributes":{ + "POSITION":12985, + "NORMAL":12986 + }, + "indices":12987, + "material":3 + } + ] + }, + { + "name":"Mesh.5518", + "primitives":[ + { + "attributes":{ + "POSITION":12988, + "NORMAL":12989, + "TEXCOORD_0":12990 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8815", + "primitives":[ + { + "attributes":{ + "POSITION":12991, + "NORMAL":12992 + }, + "indices":7631, + "material":3 + } + ] + }, + { + "name":"Mesh.2992", + "primitives":[ + { + "attributes":{ + "POSITION":12993, + "NORMAL":12994, + "TEXCOORD_0":12995 + }, + "indices":12996, + "material":7 + } + ] + }, + { + "name":"Mesh.1918", + "primitives":[ + { + "attributes":{ + "POSITION":12997, + "NORMAL":12998 + }, + "indices":2624, + "material":0 + } + ] + }, + { + "name":"Mesh.8152", + "primitives":[ + { + "attributes":{ + "POSITION":12999, + "NORMAL":13000 + }, + "indices":22, + "material":3 + } + ] + }, + { + "name":"Mesh.9090", + "primitives":[ + { + "attributes":{ + "POSITION":13001, + "NORMAL":13002, + "TEXCOORD_0":13003 + }, + "indices":2311, + "material":7 + } + ] + }, + { + "name":"Mesh.2886", + "primitives":[ + { + "attributes":{ + "POSITION":13004, + "NORMAL":13005 + }, + "indices":2224, + "material":1 + } + ] + }, + { + "name":"Mesh.8987", + "primitives":[ + { + "attributes":{ + "POSITION":13006, + "NORMAL":13007, + "TEXCOORD_0":13008 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.6924", + "primitives":[ + { + "attributes":{ + "POSITION":13009, + "NORMAL":13010, + "TEXCOORD_0":13011 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.1015", + "primitives":[ + { + "attributes":{ + "POSITION":13012, + "NORMAL":13013, + "TEXCOORD_0":13014 + }, + "indices":11678, + "material":0 + } + ] + }, + { + "name":"Mesh.6606", + "primitives":[ + { + "attributes":{ + "POSITION":13015, + "NORMAL":13016 + }, + "indices":10555, + "material":0 + } + ] + }, + { + "name":"Mesh.5632", + "primitives":[ + { + "attributes":{ + "POSITION":13017, + "NORMAL":13018, + "TEXCOORD_0":13019 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2629", + "primitives":[ + { + "attributes":{ + "POSITION":13020, + "NORMAL":13021, + "TEXCOORD_0":13022 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.1730", + "primitives":[ + { + "attributes":{ + "POSITION":13023, + "NORMAL":13024 + }, + "indices":10621, + "material":31 + } + ] + }, + { + "name":"Mesh.1955", + "primitives":[ + { + "attributes":{ + "POSITION":13025, + "NORMAL":13026, + "TEXCOORD_0":13027 + }, + "indices":3276, + "material":6 + } + ] + }, + { + "name":"Mesh.913", + "primitives":[ + { + "attributes":{ + "POSITION":13028, + "NORMAL":13029, + "TEXCOORD_0":13030 + }, + "indices":1868, + "material":0 + } + ] + }, + { + "name":"Mesh.8513", + "primitives":[ + { + "attributes":{ + "POSITION":13031, + "NORMAL":13032 + }, + "indices":13033, + "material":3 + } + ] + }, + { + "name":"Mesh.6436", + "primitives":[ + { + "attributes":{ + "POSITION":13034, + "NORMAL":13035, + "TEXCOORD_0":13036 + }, + "indices":1890, + "material":0 + } + ] + }, + { + "name":"Mesh.520", + "primitives":[ + { + "attributes":{ + "POSITION":13037, + "NORMAL":13038, + "TEXCOORD_0":13039 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5680", + "primitives":[ + { + "attributes":{ + "POSITION":13040, + "NORMAL":13041, + "TEXCOORD_0":13042 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6256", + "primitives":[ + { + "attributes":{ + "POSITION":13043, + "NORMAL":13044, + "TEXCOORD_0":13045 + }, + "indices":202, + "material":11 + } + ] + }, + { + "name":"Mesh.2669", + "primitives":[ + { + "attributes":{ + "POSITION":13046, + "NORMAL":13047, + "TEXCOORD_0":13048 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.1776", + "primitives":[ + { + "attributes":{ + "POSITION":13049, + "NORMAL":13050, + "TEXCOORD_0":13051 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.6862", + "primitives":[ + { + "attributes":{ + "POSITION":13052, + "NORMAL":13053, + "TEXCOORD_0":13054 + }, + "indices":2975, + "material":0 + } + ] + }, + { + "name":"Mesh.1135", + "primitives":[ + { + "attributes":{ + "POSITION":13055, + "NORMAL":13056, + "TEXCOORD_0":13057 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.480", + "primitives":[ + { + "attributes":{ + "POSITION":13058, + "NORMAL":13059 + }, + "indices":7310, + "material":3 + } + ] + }, + { + "name":"Mesh.6720", + "primitives":[ + { + "attributes":{ + "POSITION":13060, + "NORMAL":13061 + }, + "indices":3889, + "material":0 + } + ] + }, + { + "name":"Mesh.842", + "primitives":[ + { + "attributes":{ + "POSITION":13062, + "NORMAL":13063, + "TEXCOORD_0":13064 + }, + "indices":1040, + "material":0 + } + ] + }, + { + "name":"Mesh.5601", + "primitives":[ + { + "attributes":{ + "POSITION":13065, + "NORMAL":13066, + "TEXCOORD_0":13067 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8226", + "primitives":[ + { + "attributes":{ + "POSITION":13068, + "NORMAL":13069 + }, + "indices":7642, + "material":3 + } + ] + }, + { + "name":"Mesh.8616", + "primitives":[ + { + "attributes":{ + "POSITION":13070, + "NORMAL":13071 + }, + "indices":13072, + "material":3 + } + ] + }, + { + "name":"Mesh.8499", + "primitives":[ + { + "attributes":{ + "POSITION":13073, + "NORMAL":13074 + }, + "indices":9347, + "material":3 + } + ] + }, + { + "name":"Mesh.216", + "primitives":[ + { + "attributes":{ + "POSITION":13075, + "NORMAL":13076, + "TEXCOORD_0":13077 + }, + "indices":13078, + "material":3 + } + ] + }, + { + "name":"Mesh.6024", + "primitives":[ + { + "attributes":{ + "POSITION":13079, + "NORMAL":13080, + "TEXCOORD_0":13081 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.7007", + "primitives":[ + { + "attributes":{ + "POSITION":13082, + "NORMAL":13083 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.2672", + "primitives":[ + { + "attributes":{ + "POSITION":13084, + "NORMAL":13085, + "TEXCOORD_0":13086 + }, + "indices":5756, + "material":4 + } + ] + }, + { + "name":"Mesh.6689", + "primitives":[ + { + "attributes":{ + "POSITION":13087, + "NORMAL":13088 + }, + "indices":13089, + "material":0 + } + ] + }, + { + "name":"Mesh.5379", + "primitives":[ + { + "attributes":{ + "POSITION":13090, + "NORMAL":13091, + "TEXCOORD_0":13092 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.572", + "primitives":[ + { + "attributes":{ + "POSITION":13093, + "NORMAL":13094, + "TEXCOORD_0":13095 + }, + "indices":10916, + "material":0 + } + ] + }, + { + "name":"Mesh.8309", + "primitives":[ + { + "attributes":{ + "POSITION":13096, + "NORMAL":13097 + }, + "indices":13098, + "material":3 + } + ] + }, + { + "name":"Mesh.7223", + "primitives":[ + { + "attributes":{ + "POSITION":13099, + "NORMAL":13100, + "TEXCOORD_0":13101 + }, + "indices":4372, + "material":7 + } + ] + }, + { + "name":"Mesh.1819", + "primitives":[ + { + "attributes":{ + "POSITION":13102, + "NORMAL":13103 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.634", + "primitives":[ + { + "attributes":{ + "POSITION":13104, + "NORMAL":13105, + "TEXCOORD_0":13106 + }, + "indices":6319, + "material":3 + } + ] + }, + { + "name":"Mesh.9112", + "primitives":[ + { + "attributes":{ + "POSITION":13107, + "NORMAL":13108, + "TEXCOORD_0":13109 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.1187", + "primitives":[ + { + "attributes":{ + "POSITION":13110, + "NORMAL":13111 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.7263", + "primitives":[ + { + "attributes":{ + "POSITION":13112, + "NORMAL":13113, + "TEXCOORD_0":13114 + }, + "indices":13115, + "material":7 + } + ] + }, + { + "name":"Mesh.4836", + "primitives":[ + { + "attributes":{ + "POSITION":13116, + "NORMAL":13117, + "TEXCOORD_0":13118 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2347", + "primitives":[ + { + "attributes":{ + "POSITION":13119, + "NORMAL":13120, + "TEXCOORD_0":13121 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5940", + "primitives":[ + { + "attributes":{ + "POSITION":13122, + "NORMAL":13123, + "TEXCOORD_0":13124 + }, + "indices":9157, + "material":12 + } + ] + }, + { + "name":"Mesh.072", + "primitives":[ + { + "attributes":{ + "POSITION":13125, + "NORMAL":13126 + }, + "indices":13127, + "material":39 + } + ] + }, + { + "name":"Mesh.925", + "primitives":[ + { + "attributes":{ + "POSITION":13128, + "NORMAL":13129, + "TEXCOORD_0":13130 + }, + "indices":13131, + "material":3 + } + ] + }, + { + "name":"Mesh.232", + "primitives":[ + { + "attributes":{ + "POSITION":13132, + "NORMAL":13133, + "TEXCOORD_0":13134 + }, + "indices":13135, + "material":3 + } + ] + }, + { + "name":"Mesh.012", + "primitives":[ + { + "attributes":{ + "POSITION":13136, + "NORMAL":13137, + "TEXCOORD_0":13138 + }, + "indices":13139, + "material":56 + } + ] + }, + { + "name":"Mesh.7368", + "primitives":[ + { + "attributes":{ + "POSITION":13140, + "NORMAL":13141, + "TEXCOORD_0":13142 + }, + "indices":2653, + "material":7 + } + ] + }, + { + "name":"Mesh.1637", + "primitives":[ + { + "attributes":{ + "POSITION":13143, + "NORMAL":13144, + "TEXCOORD_0":13145 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.1973", + "primitives":[ + { + "attributes":{ + "POSITION":13146, + "NORMAL":13147, + "TEXCOORD_0":13148 + }, + "indices":4866, + "material":0 + } + ] + }, + { + "name":"Mesh.8261", + "primitives":[ + { + "attributes":{ + "POSITION":13149, + "NORMAL":13150 + }, + "indices":13151, + "material":3 + } + ] + }, + { + "name":"Mesh.5277", + "primitives":[ + { + "attributes":{ + "POSITION":13152, + "NORMAL":13153, + "TEXCOORD_0":13154 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6766", + "primitives":[ + { + "attributes":{ + "POSITION":13155, + "NORMAL":13156 + }, + "indices":611, + "material":0 + } + ] + }, + { + "name":"Mesh.7022", + "primitives":[ + { + "attributes":{ + "POSITION":13157, + "NORMAL":13158 + }, + "indices":1962, + "material":1 + } + ] + }, + { + "name":"Mesh.1030", + "primitives":[ + { + "attributes":{ + "POSITION":13159, + "NORMAL":13160, + "TEXCOORD_0":13161 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.2468", + "primitives":[ + { + "attributes":{ + "POSITION":13162, + "NORMAL":13163, + "TEXCOORD_0":13164 + }, + "indices":12982, + "material":0 + } + ] + }, + { + "name":"Mesh.1862", + "primitives":[ + { + "attributes":{ + "POSITION":13165, + "NORMAL":13166 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.1073", + "primitives":[ + { + "attributes":{ + "POSITION":13167, + "NORMAL":13168, + "TEXCOORD_0":13169 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.6661", + "primitives":[ + { + "attributes":{ + "POSITION":13170, + "NORMAL":13171 + }, + "indices":6769, + "material":0 + } + ] + }, + { + "name":"Mesh.6047", + "primitives":[ + { + "attributes":{ + "POSITION":13172, + "NORMAL":13173, + "TEXCOORD_0":13174 + }, + "indices":13175, + "material":33 + } + ] + }, + { + "name":"Mesh.7809", + "primitives":[ + { + "attributes":{ + "POSITION":13176, + "NORMAL":13177 + }, + "indices":13178, + "material":3 + } + ] + }, + { + "name":"Mesh.4919", + "primitives":[ + { + "attributes":{ + "POSITION":13179, + "NORMAL":13180, + "TEXCOORD_0":13181 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.968", + "primitives":[ + { + "attributes":{ + "POSITION":13182, + "NORMAL":13183, + "TEXCOORD_0":13184 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.6550", + "primitives":[ + { + "attributes":{ + "POSITION":13185, + "NORMAL":13186 + }, + "indices":785, + "material":0 + } + ] + }, + { + "name":"Mesh.2118", + "primitives":[ + { + "attributes":{ + "POSITION":13187, + "NORMAL":13188, + "TEXCOORD_0":13189 + }, + "indices":6523, + "material":3 + } + ] + }, + { + "name":"Mesh.999", + "primitives":[ + { + "attributes":{ + "POSITION":13190, + "NORMAL":13191, + "TEXCOORD_0":13192 + }, + "indices":2307, + "material":0 + } + ] + }, + { + "name":"Mesh.2573", + "primitives":[ + { + "attributes":{ + "POSITION":13193, + "NORMAL":13194, + "TEXCOORD_0":13195 + }, + "indices":2427, + "material":0 + } + ] + }, + { + "name":"Mesh.857", + "primitives":[ + { + "attributes":{ + "POSITION":13196, + "NORMAL":13197, + "TEXCOORD_0":13198 + }, + "indices":1621, + "material":0 + } + ] + }, + { + "name":"Mesh.2855", + "primitives":[ + { + "attributes":{ + "POSITION":13199, + "NORMAL":13200 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.1199", + "primitives":[ + { + "attributes":{ + "POSITION":13201, + "NORMAL":13202 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.4993", + "primitives":[ + { + "attributes":{ + "POSITION":13203, + "NORMAL":13204, + "TEXCOORD_0":13205 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2359", + "primitives":[ + { + "attributes":{ + "POSITION":13206, + "NORMAL":13207, + "TEXCOORD_0":13208 + }, + "indices":3601, + "material":0 + } + ] + }, + { + "name":"Mesh.142", + "primitives":[ + { + "attributes":{ + "POSITION":13209, + "NORMAL":13210, + "TEXCOORD_0":13211 + }, + "indices":3017, + "material":0 + } + ] + }, + { + "name":"Mesh.5656", + "primitives":[ + { + "attributes":{ + "POSITION":13212, + "NORMAL":13213, + "TEXCOORD_0":13214 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2047", + "primitives":[ + { + "attributes":{ + "POSITION":13215, + "NORMAL":13216, + "TEXCOORD_0":13217 + }, + "indices":157, + "material":64 + } + ] + }, + { + "name":"Mesh.1076", + "primitives":[ + { + "attributes":{ + "POSITION":13218, + "NORMAL":13219, + "TEXCOORD_0":13220 + }, + "indices":26, + "material":4 + } + ] + }, + { + "name":"Mesh.1249", + "primitives":[ + { + "attributes":{ + "POSITION":13221, + "NORMAL":13222, + "TEXCOORD_0":13223 + }, + "indices":13224, + "material":51 + } + ] + }, + { + "name":"Mesh.2248", + "primitives":[ + { + "attributes":{ + "POSITION":13225, + "NORMAL":13226, + "TEXCOORD_0":13227 + }, + "indices":1878, + "material":0 + } + ] + }, + { + "name":"Mesh.5992", + "primitives":[ + { + "attributes":{ + "POSITION":13228, + "NORMAL":13229, + "TEXCOORD_0":13230 + }, + "indices":615, + "material":20 + } + ] + }, + { + "name":"Mesh.4922", + "primitives":[ + { + "attributes":{ + "POSITION":13231, + "NORMAL":13232, + "TEXCOORD_0":13233 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2288", + "primitives":[ + { + "attributes":{ + "POSITION":13234, + "NORMAL":13235, + "TEXCOORD_0":13236 + }, + "indices":1996, + "material":0 + } + ] + }, + { + "name":"Mesh.8229", + "primitives":[ + { + "attributes":{ + "POSITION":13237, + "NORMAL":13238 + }, + "indices":2254, + "material":3 + } + ] + }, + { + "name":"Mesh.2170", + "primitives":[ + { + "attributes":{ + "POSITION":13239, + "NORMAL":13240, + "TEXCOORD_0":13241 + }, + "indices":904, + "material":0 + } + ] + }, + { + "name":"Mesh.7852", + "primitives":[ + { + "attributes":{ + "POSITION":13242, + "NORMAL":13243 + }, + "indices":13244, + "material":3 + } + ] + }, + { + "name":"Mesh.8703", + "primitives":[ + { + "attributes":{ + "POSITION":13245, + "NORMAL":13246 + }, + "indices":7655, + "material":3 + } + ] + }, + { + "name":"Mesh.1002", + "primitives":[ + { + "attributes":{ + "POSITION":13247, + "NORMAL":13248, + "TEXCOORD_0":13249 + }, + "indices":4490, + "material":0 + } + ] + }, + { + "name":"Mesh.2899", + "primitives":[ + { + "attributes":{ + "POSITION":13250, + "NORMAL":13251 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6457", + "primitives":[ + { + "attributes":{ + "POSITION":13252, + "NORMAL":13253, + "TEXCOORD_0":13254 + }, + "indices":1854, + "material":0 + } + ] + }, + { + "name":"Mesh.6951", + "primitives":[ + { + "attributes":{ + "POSITION":13255, + "NORMAL":13256, + "TEXCOORD_0":13257 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.5474", + "primitives":[ + { + "attributes":{ + "POSITION":13258, + "NORMAL":13259, + "TEXCOORD_0":13260 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2480", + "primitives":[ + { + "attributes":{ + "POSITION":13261, + "NORMAL":13262, + "TEXCOORD_0":13263 + }, + "indices":1746, + "material":0 + } + ] + }, + { + "name":"Mesh.8585", + "primitives":[ + { + "attributes":{ + "POSITION":13264, + "NORMAL":13265 + }, + "indices":13098, + "material":3 + } + ] + }, + { + "name":"Mesh.494", + "primitives":[ + { + "attributes":{ + "POSITION":13266, + "NORMAL":13267, + "TEXCOORD_0":13268 + }, + "indices":1167, + "material":0 + } + ] + }, + { + "name":"Mesh.1694", + "primitives":[ + { + "attributes":{ + "POSITION":13269, + "NORMAL":13270, + "TEXCOORD_0":13271 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.2402", + "primitives":[ + { + "attributes":{ + "POSITION":13272, + "NORMAL":13273, + "TEXCOORD_0":13274 + }, + "indices":3492, + "material":0 + } + ] + }, + { + "name":"Mesh.8282", + "primitives":[ + { + "attributes":{ + "POSITION":13275, + "NORMAL":13276 + }, + "indices":2079, + "material":3 + } + ] + }, + { + "name":"Mesh.7310", + "primitives":[ + { + "attributes":{ + "POSITION":13277, + "NORMAL":13278, + "TEXCOORD_0":13279 + }, + "indices":1056, + "material":7 + } + ] + }, + { + "name":"Mesh.8447", + "primitives":[ + { + "attributes":{ + "POSITION":13280, + "NORMAL":13281 + }, + "indices":13282, + "material":3 + } + ] + }, + { + "name":"Mesh.556", + "primitives":[ + { + "attributes":{ + "POSITION":13283, + "NORMAL":13284, + "TEXCOORD_0":13285 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5494", + "primitives":[ + { + "attributes":{ + "POSITION":13286, + "NORMAL":13287, + "TEXCOORD_0":13288 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8531", + "primitives":[ + { + "attributes":{ + "POSITION":13289, + "NORMAL":13290 + }, + "indices":13291, + "material":3 + } + ] + }, + { + "name":"Mesh.6562", + "primitives":[ + { + "attributes":{ + "POSITION":13292, + "NORMAL":13293 + }, + "indices":6595, + "material":0 + } + ] + }, + { + "name":"Mesh.346", + "primitives":[ + { + "attributes":{ + "POSITION":13294, + "NORMAL":13295, + "TEXCOORD_0":13296 + }, + "indices":3464, + "material":0 + } + ] + }, + { + "name":"Mesh.1171", + "primitives":[ + { + "attributes":{ + "POSITION":13297, + "NORMAL":13298 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.7423", + "primitives":[ + { + "attributes":{ + "POSITION":13299, + "NORMAL":13300, + "TEXCOORD_0":13301 + }, + "indices":4454, + "material":7 + } + ] + }, + { + "name":"Mesh.154", + "primitives":[ + { + "attributes":{ + "POSITION":13302, + "NORMAL":13303, + "TEXCOORD_0":13304 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.1191", + "primitives":[ + { + "attributes":{ + "POSITION":13305, + "NORMAL":13306 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.7974", + "primitives":[ + { + "attributes":{ + "POSITION":13307, + "NORMAL":13308, + "TEXCOORD_0":13309 + }, + "indices":7434, + "material":0 + } + ] + }, + { + "name":"Mesh.8576", + "primitives":[ + { + "attributes":{ + "POSITION":13310, + "NORMAL":13311 + }, + "indices":13312, + "material":3 + } + ] + }, + { + "name":"Mesh.2483", + "primitives":[ + { + "attributes":{ + "POSITION":13313, + "NORMAL":13314, + "TEXCOORD_0":13315 + }, + "indices":1746, + "material":0 + } + ] + }, + { + "name":"Mesh.8454", + "primitives":[ + { + "attributes":{ + "POSITION":13316, + "NORMAL":13317 + }, + "indices":13318, + "material":3 + } + ] + }, + { + "name":"Mesh.6704", + "primitives":[ + { + "attributes":{ + "POSITION":13319, + "NORMAL":13320 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.5517", + "primitives":[ + { + "attributes":{ + "POSITION":13321, + "NORMAL":13322, + "TEXCOORD_0":13323 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2991", + "primitives":[ + { + "attributes":{ + "POSITION":13324, + "NORMAL":13325, + "TEXCOORD_0":13326 + }, + "indices":13327, + "material":7 + } + ] + }, + { + "name":"Mesh.1917", + "primitives":[ + { + "attributes":{ + "POSITION":13328, + "NORMAL":13329 + }, + "indices":5107, + "material":0 + } + ] + }, + { + "name":"Mesh.8151", + "primitives":[ + { + "attributes":{ + "POSITION":13330, + "NORMAL":13331 + }, + "indices":7655, + "material":3 + } + ] + }, + { + "name":"Mesh.275", + "primitives":[ + { + "attributes":{ + "POSITION":13332, + "NORMAL":13333, + "TEXCOORD_0":13334 + }, + "indices":4531, + "material":0 + } + ] + }, + { + "name":"Mesh.8986", + "primitives":[ + { + "attributes":{ + "POSITION":13335, + "NORMAL":13336, + "TEXCOORD_0":13337 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.687", + "primitives":[ + { + "attributes":{ + "POSITION":13338, + "NORMAL":13339, + "TEXCOORD_0":13340 + }, + "indices":1128, + "material":0 + } + ] + }, + { + "name":"Mesh.8381", + "primitives":[ + { + "attributes":{ + "POSITION":13341, + "NORMAL":13342 + }, + "indices":6304, + "material":3 + } + ] + }, + { + "name":"Mesh.1014", + "primitives":[ + { + "attributes":{ + "POSITION":13343, + "NORMAL":13344, + "TEXCOORD_0":13345 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.6605", + "primitives":[ + { + "attributes":{ + "POSITION":13346, + "NORMAL":13347 + }, + "indices":13089, + "material":0 + } + ] + }, + { + "name":"Mesh.7612", + "primitives":[ + { + "attributes":{ + "POSITION":13348, + "NORMAL":13349 + }, + "indices":13350, + "material":3 + } + ] + }, + { + "name":"Mesh.8494", + "primitives":[ + { + "attributes":{ + "POSITION":13351, + "NORMAL":13352 + }, + "indices":6574, + "material":3 + } + ] + }, + { + "name":"Mesh.5159", + "primitives":[ + { + "attributes":{ + "POSITION":13353, + "NORMAL":13354, + "TEXCOORD_0":13355 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.470", + "primitives":[ + { + "attributes":{ + "POSITION":13356, + "NORMAL":13357 + }, + "indices":22, + "material":3 + } + ] + }, + { + "name":"Mesh.5486", + "primitives":[ + { + "attributes":{ + "POSITION":13358, + "NORMAL":13359, + "TEXCOORD_0":13360 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2628", + "primitives":[ + { + "attributes":{ + "POSITION":13361, + "NORMAL":13362, + "TEXCOORD_0":13363 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.912", + "primitives":[ + { + "attributes":{ + "POSITION":13364, + "NORMAL":13365, + "TEXCOORD_0":13366 + }, + "indices":995, + "material":0 + } + ] + }, + { + "name":"Mesh.048", + "primitives":[ + { + "attributes":{ + "POSITION":13367, + "NORMAL":13368, + "TEXCOORD_0":13369 + }, + "indices":34, + "material":16 + } + ] + }, + { + "name":"Mesh.290", + "primitives":[ + { + "attributes":{ + "POSITION":13370, + "NORMAL":13371, + "TEXCOORD_0":13372 + }, + "indices":1479, + "material":0 + } + ] + }, + { + "name":"Mesh.519", + "primitives":[ + { + "attributes":{ + "POSITION":13373, + "NORMAL":13374, + "TEXCOORD_0":13375 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2668", + "primitives":[ + { + "attributes":{ + "POSITION":13376, + "NORMAL":13377, + "TEXCOORD_0":13378 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.7179", + "primitives":[ + { + "attributes":{ + "POSITION":13379, + "NORMAL":13380, + "TEXCOORD_0":13381 + }, + "indices":4633, + "material":7 + } + ] + }, + { + "name":"Mesh.6431", + "primitives":[ + { + "attributes":{ + "POSITION":13382, + "NORMAL":13383, + "TEXCOORD_0":13384 + }, + "indices":4470, + "material":0 + } + ] + }, + { + "name":"Mesh.656", + "primitives":[ + { + "attributes":{ + "POSITION":13385, + "NORMAL":13386, + "TEXCOORD_0":13387 + }, + "indices":13388, + "material":3 + } + ] + }, + { + "name":"Mesh.1134", + "primitives":[ + { + "attributes":{ + "POSITION":13389, + "NORMAL":13390, + "TEXCOORD_0":13391 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.841", + "primitives":[ + { + "attributes":{ + "POSITION":13392, + "NORMAL":13393, + "TEXCOORD_0":13394 + }, + "indices":1379, + "material":0 + } + ] + }, + { + "name":"Mesh.5600", + "primitives":[ + { + "attributes":{ + "POSITION":13395, + "NORMAL":13396, + "TEXCOORD_0":13397 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7722", + "primitives":[ + { + "attributes":{ + "POSITION":13398, + "NORMAL":13399 + }, + "indices":13400, + "material":3 + } + ] + }, + { + "name":"Mesh.7823", + "primitives":[ + { + "attributes":{ + "POSITION":13401, + "NORMAL":13402 + }, + "indices":13403, + "material":3 + } + ] + }, + { + "name":"Mesh.7947", + "primitives":[ + { + "attributes":{ + "POSITION":13404, + "NORMAL":13405 + }, + "indices":13406, + "material":3 + } + ] + }, + { + "name":"Mesh.7006", + "primitives":[ + { + "attributes":{ + "POSITION":13407, + "NORMAL":13408, + "TEXCOORD_0":13409 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.020", + "primitives":[ + { + "attributes":{ + "POSITION":13410, + "NORMAL":13411, + "TEXCOORD_0":13412 + }, + "indices":13413, + "material":65 + } + ] + }, + { + "name":"Mesh.2671", + "primitives":[ + { + "attributes":{ + "POSITION":13414, + "NORMAL":13415, + "TEXCOORD_0":13416 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.6688", + "primitives":[ + { + "attributes":{ + "POSITION":13417, + "NORMAL":13418, + "TEXCOORD_0":13419 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.571", + "primitives":[ + { + "attributes":{ + "POSITION":13420, + "NORMAL":13421, + "TEXCOORD_0":13422 + }, + "indices":1101, + "material":0 + } + ] + }, + { + "name":"Mesh.8308", + "primitives":[ + { + "attributes":{ + "POSITION":13423, + "NORMAL":13424 + }, + "indices":3812, + "material":3 + } + ] + }, + { + "name":"Mesh.7731", + "primitives":[ + { + "attributes":{ + "POSITION":13425, + "NORMAL":13426 + }, + "indices":13427, + "material":3 + } + ] + }, + { + "name":"Mesh.4946", + "primitives":[ + { + "attributes":{ + "POSITION":13428, + "NORMAL":13429, + "TEXCOORD_0":13430 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7222", + "primitives":[ + { + "attributes":{ + "POSITION":13431, + "NORMAL":13432, + "TEXCOORD_0":13433 + }, + "indices":8318, + "material":7 + } + ] + }, + { + "name":"Mesh.6422", + "primitives":[ + { + "attributes":{ + "POSITION":13434, + "NORMAL":13435 + }, + "indices":6225, + "material":0 + } + ] + }, + { + "name":"Mesh.6638", + "primitives":[ + { + "attributes":{ + "POSITION":13436, + "NORMAL":13437 + }, + "indices":4951, + "material":0 + } + ] + }, + { + "name":"Mesh.1818", + "primitives":[ + { + "attributes":{ + "POSITION":13438, + "NORMAL":13439 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8467", + "primitives":[ + { + "attributes":{ + "POSITION":13440, + "NORMAL":13441 + }, + "indices":9792, + "material":3 + } + ] + }, + { + "name":"Mesh.8818", + "primitives":[ + { + "attributes":{ + "POSITION":13442, + "NORMAL":13443 + }, + "indices":6503, + "material":3 + } + ] + }, + { + "name":"Mesh.7017", + "primitives":[ + { + "attributes":{ + "POSITION":13444, + "NORMAL":13445 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.2398", + "primitives":[ + { + "attributes":{ + "POSITION":13446, + "NORMAL":13447 + }, + "indices":2224, + "material":1 + } + ] + }, + { + "name":"Mesh.1026", + "primitives":[ + { + "attributes":{ + "POSITION":13448, + "NORMAL":13449, + "TEXCOORD_0":13450 + }, + "indices":1801, + "material":0 + } + ] + }, + { + "name":"Mesh.4835", + "primitives":[ + { + "attributes":{ + "POSITION":13451, + "NORMAL":13452, + "TEXCOORD_0":13453 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2346", + "primitives":[ + { + "attributes":{ + "POSITION":13454, + "NORMAL":13455, + "TEXCOORD_0":13456 + }, + "indices":887, + "material":0 + } + ] + }, + { + "name":"Mesh.9067", + "primitives":[ + { + "attributes":{ + "POSITION":13457, + "NORMAL":13458, + "TEXCOORD_0":13459 + }, + "indices":1660, + "material":7 + } + ] + }, + { + "name":"Mesh.739", + "primitives":[ + { + "attributes":{ + "POSITION":13460, + "NORMAL":13461, + "TEXCOORD_0":13462 + }, + "indices":4117, + "material":0 + } + ] + }, + { + "name":"Mesh.924", + "primitives":[ + { + "attributes":{ + "POSITION":13463, + "NORMAL":13464, + "TEXCOORD_0":13465 + }, + "indices":13466, + "material":3 + } + ] + }, + { + "name":"Mesh.8277", + "primitives":[ + { + "attributes":{ + "POSITION":13467, + "NORMAL":13468 + }, + "indices":5454, + "material":3 + } + ] + }, + { + "name":"Mesh.011", + "primitives":[ + { + "attributes":{ + "POSITION":13469, + "NORMAL":13470, + "TEXCOORD_0":13471 + }, + "indices":34, + "material":16 + } + ] + }, + { + "name":"Mesh.133", + "primitives":[ + { + "attributes":{ + "POSITION":13472, + "NORMAL":13473, + "TEXCOORD_0":13474 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.7654", + "primitives":[ + { + "attributes":{ + "POSITION":13475, + "NORMAL":13476 + }, + "indices":8916, + "material":3 + } + ] + }, + { + "name":"Mesh.8035", + "primitives":[ + { + "attributes":{ + "POSITION":13477, + "NORMAL":13478, + "TEXCOORD_0":13479 + }, + "indices":3953, + "material":0 + } + ] + }, + { + "name":"Mesh.8251", + "primitives":[ + { + "attributes":{ + "POSITION":13480, + "NORMAL":13481 + }, + "indices":13482, + "material":3 + } + ] + }, + { + "name":"Mesh.8734", + "primitives":[ + { + "attributes":{ + "POSITION":13483, + "NORMAL":13484 + }, + "indices":13485, + "material":3 + } + ] + }, + { + "name":"Mesh.7367", + "primitives":[ + { + "attributes":{ + "POSITION":13486, + "NORMAL":13487, + "TEXCOORD_0":13488 + }, + "indices":4610, + "material":7 + } + ] + }, + { + "name":"Mesh.6849", + "primitives":[ + { + "attributes":{ + "POSITION":13489, + "NORMAL":13490, + "TEXCOORD_0":13491 + }, + "indices":2975, + "material":0 + } + ] + }, + { + "name":"Mesh.1972", + "primitives":[ + { + "attributes":{ + "POSITION":13492, + "NORMAL":13493, + "TEXCOORD_0":13494 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.5193", + "primitives":[ + { + "attributes":{ + "POSITION":13495, + "NORMAL":13496, + "TEXCOORD_0":13497 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5276", + "primitives":[ + { + "attributes":{ + "POSITION":13498, + "NORMAL":13499, + "TEXCOORD_0":13500 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1029", + "primitives":[ + { + "attributes":{ + "POSITION":13501, + "NORMAL":13502, + "TEXCOORD_0":13503 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.2467", + "primitives":[ + { + "attributes":{ + "POSITION":13504, + "NORMAL":13505, + "TEXCOORD_0":13506 + }, + "indices":10713, + "material":0 + } + ] + }, + { + "name":"Mesh.8837", + "primitives":[ + { + "attributes":{ + "POSITION":13507, + "NORMAL":13508 + }, + "indices":8017, + "material":3 + } + ] + }, + { + "name":"Mesh.1072", + "primitives":[ + { + "attributes":{ + "POSITION":13509, + "NORMAL":13510, + "TEXCOORD_0":13511 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.2397", + "primitives":[ + { + "attributes":{ + "POSITION":13512, + "NORMAL":13513 + }, + "indices":2224, + "material":1 + } + ] + }, + { + "name":"Mesh.285", + "primitives":[ + { + "attributes":{ + "POSITION":13514, + "NORMAL":13515, + "TEXCOORD_0":13516 + }, + "indices":13517, + "material":0 + } + ] + }, + { + "name":"Mesh.6660", + "primitives":[ + { + "attributes":{ + "POSITION":13518, + "NORMAL":13519, + "TEXCOORD_0":13520 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.6046", + "primitives":[ + { + "attributes":{ + "POSITION":13521, + "NORMAL":13522, + "TEXCOORD_0":13523 + }, + "indices":13524, + "material":33 + } + ] + }, + { + "name":"Mesh.7808", + "primitives":[ + { + "attributes":{ + "POSITION":13525, + "NORMAL":13526 + }, + "indices":13527, + "material":3 + } + ] + }, + { + "name":"Mesh.7142", + "primitives":[ + { + "attributes":{ + "POSITION":13528, + "NORMAL":13529, + "TEXCOORD_0":13530 + }, + "indices":13531, + "material":7 + } + ] + }, + { + "name":"Mesh.4918", + "primitives":[ + { + "attributes":{ + "POSITION":13532, + "NORMAL":13533, + "TEXCOORD_0":13534 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.967", + "primitives":[ + { + "attributes":{ + "POSITION":13535, + "NORMAL":13536, + "TEXCOORD_0":13537 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.6549", + "primitives":[ + { + "attributes":{ + "POSITION":13538, + "NORMAL":13539, + "TEXCOORD_0":13540 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.5590", + "primitives":[ + { + "attributes":{ + "POSITION":13541, + "NORMAL":13542, + "TEXCOORD_0":13543 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.4831", + "primitives":[ + { + "attributes":{ + "POSITION":13544, + "NORMAL":13545, + "TEXCOORD_0":13546 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7848", + "primitives":[ + { + "attributes":{ + "POSITION":13547, + "NORMAL":13548 + }, + "indices":13549, + "material":3 + } + ] + }, + { + "name":"Mesh.2117", + "primitives":[ + { + "attributes":{ + "POSITION":13550, + "NORMAL":13551, + "TEXCOORD_0":13552 + }, + "indices":2343, + "material":3 + } + ] + }, + { + "name":"Mesh.2845", + "primitives":[ + { + "attributes":{ + "POSITION":13553, + "NORMAL":13554 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.998", + "primitives":[ + { + "attributes":{ + "POSITION":13555, + "NORMAL":13556, + "TEXCOORD_0":13557 + }, + "indices":11678, + "material":0 + } + ] + }, + { + "name":"Mesh.2572", + "primitives":[ + { + "attributes":{ + "POSITION":13558, + "NORMAL":13559, + "TEXCOORD_0":13560 + }, + "indices":1315, + "material":0 + } + ] + }, + { + "name":"Mesh.5470", + "primitives":[ + { + "attributes":{ + "POSITION":13561, + "NORMAL":13562, + "TEXCOORD_0":13563 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1020", + "primitives":[ + { + "attributes":{ + "POSITION":13564, + "NORMAL":13565, + "TEXCOORD_0":13566 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.436", + "primitives":[ + { + "attributes":{ + "POSITION":13567, + "NORMAL":13568 + }, + "indices":5370, + "material":0 + } + ] + }, + { + "name":"Mesh.4992", + "primitives":[ + { + "attributes":{ + "POSITION":13569, + "NORMAL":13570, + "TEXCOORD_0":13571 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2358", + "primitives":[ + { + "attributes":{ + "POSITION":13572, + "NORMAL":13573, + "TEXCOORD_0":13574 + }, + "indices":3972, + "material":0 + } + ] + }, + { + "name":"Mesh.5655", + "primitives":[ + { + "attributes":{ + "POSITION":13575, + "NORMAL":13576, + "TEXCOORD_0":13577 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2046", + "primitives":[ + { + "attributes":{ + "POSITION":13578, + "NORMAL":13579, + "TEXCOORD_0":13580 + }, + "indices":13581, + "material":0 + } + ] + }, + { + "name":"Mesh.7620", + "primitives":[ + { + "attributes":{ + "POSITION":13582, + "NORMAL":13583 + }, + "indices":2436, + "material":3 + } + ] + }, + { + "name":"Mesh.2247", + "primitives":[ + { + "attributes":{ + "POSITION":13584, + "NORMAL":13585, + "TEXCOORD_0":13586 + }, + "indices":2221, + "material":0 + } + ] + }, + { + "name":"Mesh.640", + "primitives":[ + { + "attributes":{ + "POSITION":13587, + "NORMAL":13588, + "TEXCOORD_0":13589 + }, + "indices":4088, + "material":3 + } + ] + }, + { + "name":"Mesh.061", + "primitives":[ + { + "attributes":{ + "POSITION":13590, + "NORMAL":13591 + }, + "indices":13592, + "material":39 + } + ] + }, + { + "name":"Mesh.4921", + "primitives":[ + { + "attributes":{ + "POSITION":13593, + "NORMAL":13594, + "TEXCOORD_0":13595 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2287", + "primitives":[ + { + "attributes":{ + "POSITION":13596, + "NORMAL":13597, + "TEXCOORD_0":13598 + }, + "indices":2321, + "material":0 + } + ] + }, + { + "name":"Mesh.6473", + "primitives":[ + { + "attributes":{ + "POSITION":13599, + "NORMAL":13600, + "TEXCOORD_0":13601 + }, + "indices":2282, + "material":0 + } + ] + }, + { + "name":"Mesh.7851", + "primitives":[ + { + "attributes":{ + "POSITION":13602, + "NORMAL":13603 + }, + "indices":13604, + "material":3 + } + ] + }, + { + "name":"Mesh.1001", + "primitives":[ + { + "attributes":{ + "POSITION":13605, + "NORMAL":13606, + "TEXCOORD_0":13607 + }, + "indices":5170, + "material":0 + } + ] + }, + { + "name":"Mesh.7101", + "primitives":[ + { + "attributes":{ + "POSITION":13608, + "NORMAL":13609, + "TEXCOORD_0":13610 + }, + "indices":9008, + "material":7 + } + ] + }, + { + "name":"Mesh.2898", + "primitives":[ + { + "attributes":{ + "POSITION":13611, + "NORMAL":13612 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6456", + "primitives":[ + { + "attributes":{ + "POSITION":13613, + "NORMAL":13614, + "TEXCOORD_0":13615 + }, + "indices":2196, + "material":0 + } + ] + }, + { + "name":"Mesh.5146", + "primitives":[ + { + "attributes":{ + "POSITION":13616, + "NORMAL":13617, + "TEXCOORD_0":13618 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8883", + "primitives":[ + { + "attributes":{ + "POSITION":13619, + "NORMAL":13620 + }, + "indices":12424, + "material":3 + } + ] + }, + { + "name":"Mesh.1684", + "primitives":[ + { + "attributes":{ + "POSITION":13621, + "NORMAL":13622, + "TEXCOORD_0":13623 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.2479", + "primitives":[ + { + "attributes":{ + "POSITION":13624, + "NORMAL":13625, + "TEXCOORD_0":13626 + }, + "indices":1746, + "material":0 + } + ] + }, + { + "name":"Mesh.2447", + "primitives":[ + { + "attributes":{ + "POSITION":13627, + "NORMAL":13628, + "TEXCOORD_0":13629 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.6306", + "primitives":[ + { + "attributes":{ + "POSITION":13630, + "NORMAL":13631 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.5043", + "primitives":[ + { + "attributes":{ + "POSITION":13632, + "NORMAL":13633, + "TEXCOORD_0":13634 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2401", + "primitives":[ + { + "attributes":{ + "POSITION":13635, + "NORMAL":13636 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.555", + "primitives":[ + { + "attributes":{ + "POSITION":13637, + "NORMAL":13638, + "TEXCOORD_0":13639 + }, + "indices":13640, + "material":0 + } + ] + }, + { + "name":"Mesh.2867", + "primitives":[ + { + "attributes":{ + "POSITION":13641, + "NORMAL":13642, + "TEXCOORD_0":13643 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.6561", + "primitives":[ + { + "attributes":{ + "POSITION":13644, + "NORMAL":13645 + }, + "indices":6948, + "material":0 + } + ] + }, + { + "name":"Mesh.6919", + "primitives":[ + { + "attributes":{ + "POSITION":13646, + "NORMAL":13647, + "TEXCOORD_0":13648 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.1170", + "primitives":[ + { + "attributes":{ + "POSITION":13649, + "NORMAL":13650 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.336", + "primitives":[ + { + "attributes":{ + "POSITION":13651, + "NORMAL":13652, + "TEXCOORD_0":13653 + }, + "indices":2679, + "material":0 + } + ] + }, + { + "name":"Mesh.7422", + "primitives":[ + { + "attributes":{ + "POSITION":13654, + "NORMAL":13655, + "TEXCOORD_0":13656 + }, + "indices":13657, + "material":7 + } + ] + }, + { + "name":"Mesh.8795", + "primitives":[ + { + "attributes":{ + "POSITION":13658, + "NORMAL":13659 + }, + "indices":4307, + "material":3 + } + ] + }, + { + "name":"Mesh.8792", + "primitives":[ + { + "attributes":{ + "POSITION":13660, + "NORMAL":13661 + }, + "indices":5354, + "material":3 + } + ] + }, + { + "name":"Mesh.7034", + "primitives":[ + { + "attributes":{ + "POSITION":13662, + "NORMAL":13663, + "TEXCOORD_0":13664 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.8699", + "primitives":[ + { + "attributes":{ + "POSITION":13665, + "NORMAL":13666 + }, + "indices":2242, + "material":3 + } + ] + }, + { + "name":"Mesh.8575", + "primitives":[ + { + "attributes":{ + "POSITION":13667, + "NORMAL":13668 + }, + "indices":13669, + "material":3 + } + ] + }, + { + "name":"Mesh.2482", + "primitives":[ + { + "attributes":{ + "POSITION":13670, + "NORMAL":13671, + "TEXCOORD_0":13672 + }, + "indices":13673, + "material":0 + } + ] + }, + { + "name":"Mesh.4813", + "primitives":[ + { + "attributes":{ + "POSITION":13674, + "NORMAL":13675, + "TEXCOORD_0":13676 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5516", + "primitives":[ + { + "attributes":{ + "POSITION":13677, + "NORMAL":13678, + "TEXCOORD_0":13679 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2990", + "primitives":[ + { + "attributes":{ + "POSITION":13680, + "NORMAL":13681, + "TEXCOORD_0":13682 + }, + "indices":13683, + "material":7 + } + ] + }, + { + "name":"Mesh.1916", + "primitives":[ + { + "attributes":{ + "POSITION":13684, + "NORMAL":13685 + }, + "indices":386, + "material":0 + } + ] + }, + { + "name":"Mesh.8150", + "primitives":[ + { + "attributes":{ + "POSITION":13686, + "NORMAL":13687 + }, + "indices":7751, + "material":3 + } + ] + }, + { + "name":"Mesh.8985", + "primitives":[ + { + "attributes":{ + "POSITION":13688, + "NORMAL":13689, + "TEXCOORD_0":13690 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.8934", + "primitives":[ + { + "attributes":{ + "POSITION":13691, + "NORMAL":13692, + "TEXCOORD_0":13693 + }, + "indices":1660, + "material":7 + } + ] + }, + { + "name":"Mesh.9180", + "primitives":[ + { + "attributes":{ + "POSITION":13694, + "NORMAL":13695, + "TEXCOORD_0":13696 + }, + "indices":3608, + "material":7 + } + ] + }, + { + "name":"Mesh.686", + "primitives":[ + { + "attributes":{ + "POSITION":13697, + "NORMAL":13698, + "TEXCOORD_0":13699 + }, + "indices":13700, + "material":0 + } + ] + }, + { + "name":"Mesh.8751", + "primitives":[ + { + "attributes":{ + "POSITION":13701, + "NORMAL":13702 + }, + "indices":7347, + "material":3 + } + ] + }, + { + "name":"Mesh.1013", + "primitives":[ + { + "attributes":{ + "POSITION":13703, + "NORMAL":13704, + "TEXCOORD_0":13705 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.6604", + "primitives":[ + { + "attributes":{ + "POSITION":13706, + "NORMAL":13707, + "TEXCOORD_0":13708 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.5485", + "primitives":[ + { + "attributes":{ + "POSITION":13709, + "NORMAL":13710, + "TEXCOORD_0":13711 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2627", + "primitives":[ + { + "attributes":{ + "POSITION":13712, + "NORMAL":13713, + "TEXCOORD_0":13714 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.911", + "primitives":[ + { + "attributes":{ + "POSITION":13715, + "NORMAL":13716, + "TEXCOORD_0":13717 + }, + "indices":1332, + "material":0 + } + ] + }, + { + "name":"Mesh.518", + "primitives":[ + { + "attributes":{ + "POSITION":13718, + "NORMAL":13719, + "TEXCOORD_0":13720 + }, + "indices":5718, + "material":0 + } + ] + }, + { + "name":"Mesh.2667", + "primitives":[ + { + "attributes":{ + "POSITION":13721, + "NORMAL":13722, + "TEXCOORD_0":13723 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.5374", + "primitives":[ + { + "attributes":{ + "POSITION":13724, + "NORMAL":13725, + "TEXCOORD_0":13726 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7249", + "primitives":[ + { + "attributes":{ + "POSITION":13727, + "NORMAL":13728, + "TEXCOORD_0":13729 + }, + "indices":13730, + "material":7 + } + ] + }, + { + "name":"Mesh.6070", + "primitives":[ + { + "attributes":{ + "POSITION":13731, + "NORMAL":13732, + "TEXCOORD_0":13733 + }, + "indices":202, + "material":11 + } + ] + }, + { + "name":"Mesh.1774", + "primitives":[ + { + "attributes":{ + "POSITION":13734, + "NORMAL":13735, + "TEXCOORD_0":13736 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.6860", + "primitives":[ + { + "attributes":{ + "POSITION":13737, + "NORMAL":13738, + "TEXCOORD_0":13739 + }, + "indices":2362, + "material":3 + } + ] + }, + { + "name":"Mesh.1133", + "primitives":[ + { + "attributes":{ + "POSITION":13740, + "NORMAL":13741, + "TEXCOORD_0":13742 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.8667", + "primitives":[ + { + "attributes":{ + "POSITION":13743, + "NORMAL":13744 + }, + "indices":7146, + "material":3 + } + ] + }, + { + "name":"Mesh.8122", + "primitives":[ + { + "attributes":{ + "POSITION":13745, + "NORMAL":13746 + }, + "indices":12155, + "material":3 + } + ] + }, + { + "name":"Mesh.840", + "primitives":[ + { + "attributes":{ + "POSITION":13747, + "NORMAL":13748, + "TEXCOORD_0":13749 + }, + "indices":3267, + "material":0 + } + ] + }, + { + "name":"Mesh.8479", + "primitives":[ + { + "attributes":{ + "POSITION":13750, + "NORMAL":13751 + }, + "indices":3482, + "material":3 + } + ] + }, + { + "name":"Mesh.5599", + "primitives":[ + { + "attributes":{ + "POSITION":13752, + "NORMAL":13753, + "TEXCOORD_0":13754 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5466", + "primitives":[ + { + "attributes":{ + "POSITION":13755, + "NORMAL":13756, + "TEXCOORD_0":13757 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7721", + "primitives":[ + { + "attributes":{ + "POSITION":13758, + "NORMAL":13759 + }, + "indices":13760, + "material":3 + } + ] + }, + { + "name":"Mesh.5505", + "primitives":[ + { + "attributes":{ + "POSITION":13761, + "NORMAL":13762, + "TEXCOORD_0":13763 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1222", + "primitives":[ + { + "attributes":{ + "POSITION":13764, + "NORMAL":13765 + }, + "indices":13766, + "material":1 + } + ] + }, + { + "name":"Mesh.187", + "primitives":[ + { + "attributes":{ + "POSITION":13767, + "NORMAL":13768, + "TEXCOORD_0":13769 + }, + "indices":13770, + "material":0 + } + ] + }, + { + "name":"Mesh.7946", + "primitives":[ + { + "attributes":{ + "POSITION":13771, + "NORMAL":13772 + }, + "indices":13773, + "material":3 + } + ] + }, + { + "name":"Mesh.7005", + "primitives":[ + { + "attributes":{ + "POSITION":13774, + "NORMAL":13775 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.2670", + "primitives":[ + { + "attributes":{ + "POSITION":13776, + "NORMAL":13777, + "TEXCOORD_0":13778 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.6687", + "primitives":[ + { + "attributes":{ + "POSITION":13779, + "NORMAL":13780 + }, + "indices":13781, + "material":0 + } + ] + }, + { + "name":"Mesh.1745", + "primitives":[ + { + "attributes":{ + "POSITION":13782, + "NORMAL":13783 + }, + "indices":2098, + "material":31 + } + ] + }, + { + "name":"Mesh.570", + "primitives":[ + { + "attributes":{ + "POSITION":13784, + "NORMAL":13785, + "TEXCOORD_0":13786 + }, + "indices":13787, + "material":0 + } + ] + }, + { + "name":"Mesh.8552", + "primitives":[ + { + "attributes":{ + "POSITION":13788, + "NORMAL":13789 + }, + "indices":3521, + "material":3 + } + ] + }, + { + "name":"Mesh.8653", + "primitives":[ + { + "attributes":{ + "POSITION":13790, + "NORMAL":13791 + }, + "indices":3312, + "material":3 + } + ] + }, + { + "name":"Mesh.8201", + "primitives":[ + { + "attributes":{ + "POSITION":13792, + "NORMAL":13793 + }, + "indices":10440, + "material":3 + } + ] + }, + { + "name":"Mesh.4945", + "primitives":[ + { + "attributes":{ + "POSITION":13794, + "NORMAL":13795, + "TEXCOORD_0":13796 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7221", + "primitives":[ + { + "attributes":{ + "POSITION":13797, + "NORMAL":13798, + "TEXCOORD_0":13799 + }, + "indices":10247, + "material":7 + } + ] + }, + { + "name":"Mesh.5638", + "primitives":[ + { + "attributes":{ + "POSITION":13800, + "NORMAL":13801, + "TEXCOORD_0":13802 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1817", + "primitives":[ + { + "attributes":{ + "POSITION":13803, + "NORMAL":13804 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.1060", + "primitives":[ + { + "attributes":{ + "POSITION":13805, + "NORMAL":13806, + "TEXCOORD_0":13807 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.1025", + "primitives":[ + { + "attributes":{ + "POSITION":13808, + "NORMAL":13809, + "TEXCOORD_0":13810 + }, + "indices":2156, + "material":0 + } + ] + }, + { + "name":"Mesh.4834", + "primitives":[ + { + "attributes":{ + "POSITION":13811, + "NORMAL":13812, + "TEXCOORD_0":13813 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2200", + "primitives":[ + { + "attributes":{ + "POSITION":13814, + "NORMAL":13815, + "TEXCOORD_0":13816 + }, + "indices":2417, + "material":0 + } + ] + }, + { + "name":"Mesh.1897", + "primitives":[ + { + "attributes":{ + "POSITION":13817, + "NORMAL":13818 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.923", + "primitives":[ + { + "attributes":{ + "POSITION":13819, + "NORMAL":13820, + "TEXCOORD_0":13821 + }, + "indices":13822, + "material":3 + } + ] + }, + { + "name":"Mesh.1203", + "primitives":[ + { + "attributes":{ + "POSITION":13823, + "NORMAL":13824 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.8276", + "primitives":[ + { + "attributes":{ + "POSITION":13825, + "NORMAL":13826 + }, + "indices":3521, + "material":3 + } + ] + }, + { + "name":"Mesh.132", + "primitives":[ + { + "attributes":{ + "POSITION":13827, + "NORMAL":13828, + "TEXCOORD_0":13829 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7653", + "primitives":[ + { + "attributes":{ + "POSITION":13830, + "NORMAL":13831 + }, + "indices":498, + "material":3 + } + ] + }, + { + "name":"Mesh.6872", + "primitives":[ + { + "attributes":{ + "POSITION":13832, + "NORMAL":13833 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.167", + "primitives":[ + { + "attributes":{ + "POSITION":13834, + "NORMAL":13835, + "TEXCOORD_0":13836 + }, + "indices":13787, + "material":0 + } + ] + }, + { + "name":"Mesh.1971", + "primitives":[ + { + "attributes":{ + "POSITION":13837, + "NORMAL":13838, + "TEXCOORD_0":13839 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8785", + "primitives":[ + { + "attributes":{ + "POSITION":13840, + "NORMAL":13841 + }, + "indices":9369, + "material":3 + } + ] + }, + { + "name":"Mesh.5275", + "primitives":[ + { + "attributes":{ + "POSITION":13842, + "NORMAL":13843, + "TEXCOORD_0":13844 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1028", + "primitives":[ + { + "attributes":{ + "POSITION":13845, + "NORMAL":13846, + "TEXCOORD_0":13847 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.2466", + "primitives":[ + { + "attributes":{ + "POSITION":13848, + "NORMAL":13849, + "TEXCOORD_0":13850 + }, + "indices":10713, + "material":0 + } + ] + }, + { + "name":"Mesh.8995", + "primitives":[ + { + "attributes":{ + "POSITION":13851, + "NORMAL":13852, + "TEXCOORD_0":13853 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.1071", + "primitives":[ + { + "attributes":{ + "POSITION":13854, + "NORMAL":13855, + "TEXCOORD_0":13856 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.1059", + "primitives":[ + { + "attributes":{ + "POSITION":13857, + "NORMAL":13858, + "TEXCOORD_0":13859 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.7622", + "primitives":[ + { + "attributes":{ + "POSITION":13860, + "NORMAL":13861 + }, + "indices":2413, + "material":3 + } + ] + }, + { + "name":"Mesh.6659", + "primitives":[ + { + "attributes":{ + "POSITION":13862, + "NORMAL":13863 + }, + "indices":6512, + "material":0 + } + ] + }, + { + "name":"Mesh.6045", + "primitives":[ + { + "attributes":{ + "POSITION":13864, + "NORMAL":13865, + "TEXCOORD_0":13866 + }, + "indices":5772, + "material":33 + } + ] + }, + { + "name":"Mesh.6795", + "primitives":[ + { + "attributes":{ + "POSITION":13867, + "NORMAL":13868, + "TEXCOORD_0":13869 + }, + "indices":6159, + "material":3 + } + ] + }, + { + "name":"Mesh.7807", + "primitives":[ + { + "attributes":{ + "POSITION":13870, + "NORMAL":13871 + }, + "indices":13872, + "material":3 + } + ] + }, + { + "name":"Mesh.281", + "primitives":[ + { + "attributes":{ + "POSITION":13873, + "NORMAL":13874, + "TEXCOORD_0":13875 + }, + "indices":7514, + "material":0 + } + ] + }, + { + "name":"Mesh.5423", + "primitives":[ + { + "attributes":{ + "POSITION":13876, + "NORMAL":13877, + "TEXCOORD_0":13878 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7847", + "primitives":[ + { + "attributes":{ + "POSITION":13879, + "NORMAL":13880 + }, + "indices":13881, + "material":3 + } + ] + }, + { + "name":"Mesh.997", + "primitives":[ + { + "attributes":{ + "POSITION":13882, + "NORMAL":13883, + "TEXCOORD_0":13884 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.2571", + "primitives":[ + { + "attributes":{ + "POSITION":13885, + "NORMAL":13886, + "TEXCOORD_0":13887 + }, + "indices":3122, + "material":0 + } + ] + }, + { + "name":"Mesh.9201", + "primitives":[ + { + "attributes":{ + "POSITION":13888, + "NORMAL":13889, + "TEXCOORD_0":13890 + }, + "indices":5391, + "material":7 + } + ] + }, + { + "name":"Mesh.435", + "primitives":[ + { + "attributes":{ + "POSITION":13891, + "NORMAL":13892 + }, + "indices":11444, + "material":0 + } + ] + }, + { + "name":"Mesh.2357", + "primitives":[ + { + "attributes":{ + "POSITION":13893, + "NORMAL":13894, + "TEXCOORD_0":13895 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2159", + "primitives":[ + { + "attributes":{ + "POSITION":13896, + "NORMAL":13897, + "TEXCOORD_0":13898 + }, + "indices":13899, + "material":0 + } + ] + }, + { + "name":"Mesh.5654", + "primitives":[ + { + "attributes":{ + "POSITION":13900, + "NORMAL":13901, + "TEXCOORD_0":13902 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6301", + "primitives":[ + { + "attributes":{ + "POSITION":13903, + "NORMAL":13904, + "TEXCOORD_0":13905 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.6742", + "primitives":[ + { + "attributes":{ + "POSITION":13906, + "NORMAL":13907 + }, + "indices":6709, + "material":0 + } + ] + }, + { + "name":"Mesh.8297", + "primitives":[ + { + "attributes":{ + "POSITION":13908, + "NORMAL":13909 + }, + "indices":8448, + "material":3 + } + ] + }, + { + "name":"Mesh.2045", + "primitives":[ + { + "attributes":{ + "POSITION":13910, + "NORMAL":13911, + "TEXCOORD_0":13912 + }, + "indices":13913, + "material":0 + } + ] + }, + { + "name":"Mesh.2085", + "primitives":[ + { + "attributes":{ + "POSITION":13914, + "NORMAL":13915, + "TEXCOORD_0":13916 + }, + "indices":6421, + "material":3 + } + ] + }, + { + "name":"Mesh.060", + "primitives":[ + { + "attributes":{ + "POSITION":13917, + "NORMAL":13918, + "TEXCOORD_0":13919 + }, + "indices":13920, + "material":53 + } + ] + }, + { + "name":"Mesh.4920", + "primitives":[ + { + "attributes":{ + "POSITION":13921, + "NORMAL":13922, + "TEXCOORD_0":13923 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1058", + "primitives":[ + { + "attributes":{ + "POSITION":13924, + "NORMAL":13925, + "TEXCOORD_0":13926 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.1798", + "primitives":[ + { + "attributes":{ + "POSITION":13927, + "NORMAL":13928, + "TEXCOORD_0":13929 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.2286", + "primitives":[ + { + "attributes":{ + "POSITION":13930, + "NORMAL":13931, + "TEXCOORD_0":13932 + }, + "indices":2679, + "material":0 + } + ] + }, + { + "name":"Mesh.7850", + "primitives":[ + { + "attributes":{ + "POSITION":13933, + "NORMAL":13934 + }, + "indices":13935, + "material":3 + } + ] + }, + { + "name":"Mesh.7100", + "primitives":[ + { + "attributes":{ + "POSITION":13936, + "NORMAL":13937, + "TEXCOORD_0":13938 + }, + "indices":13939, + "material":7 + } + ] + }, + { + "name":"Mesh.2897", + "primitives":[ + { + "attributes":{ + "POSITION":13940, + "NORMAL":13941 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6455", + "primitives":[ + { + "attributes":{ + "POSITION":13942, + "NORMAL":13943, + "TEXCOORD_0":13944 + }, + "indices":2537, + "material":0 + } + ] + }, + { + "name":"Mesh.5145", + "primitives":[ + { + "attributes":{ + "POSITION":13945, + "NORMAL":13946, + "TEXCOORD_0":13947 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5472", + "primitives":[ + { + "attributes":{ + "POSITION":13948, + "NORMAL":13949, + "TEXCOORD_0":13950 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6168", + "primitives":[ + { + "attributes":{ + "POSITION":13951, + "NORMAL":13952, + "TEXCOORD_0":13953 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.6967", + "primitives":[ + { + "attributes":{ + "POSITION":13954, + "NORMAL":13955 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.2400", + "primitives":[ + { + "attributes":{ + "POSITION":13956, + "NORMAL":13957 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8442", + "primitives":[ + { + "attributes":{ + "POSITION":13958, + "NORMAL":13959 + }, + "indices":8989, + "material":3 + } + ] + }, + { + "name":"Mesh.554", + "primitives":[ + { + "attributes":{ + "POSITION":13960, + "NORMAL":13961, + "TEXCOORD_0":13962 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2866", + "primitives":[ + { + "attributes":{ + "POSITION":13963, + "NORMAL":13964, + "TEXCOORD_0":13965 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.6560", + "primitives":[ + { + "attributes":{ + "POSITION":13966, + "NORMAL":13967 + }, + "indices":6, + "material":0 + } + ] + }, + { + "name":"Mesh.6918", + "primitives":[ + { + "attributes":{ + "POSITION":13968, + "NORMAL":13969, + "TEXCOORD_0":13970 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.1169", + "primitives":[ + { + "attributes":{ + "POSITION":13971, + "NORMAL":13972 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.5441", + "primitives":[ + { + "attributes":{ + "POSITION":13973, + "NORMAL":13974, + "TEXCOORD_0":13975 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2693", + "primitives":[ + { + "attributes":{ + "POSITION":13976, + "NORMAL":13977, + "TEXCOORD_0":13978 + }, + "indices":11678, + "material":0 + } + ] + }, + { + "name":"Mesh.337", + "primitives":[ + { + "attributes":{ + "POSITION":13979, + "NORMAL":13980, + "TEXCOORD_0":13981 + }, + "indices":2321, + "material":0 + } + ] + }, + { + "name":"Mesh.162", + "primitives":[ + { + "attributes":{ + "POSITION":13982, + "NORMAL":13983, + "TEXCOORD_0":13984 + }, + "indices":400, + "material":0 + } + ] + }, + { + "name":"Mesh.7421", + "primitives":[ + { + "attributes":{ + "POSITION":13985, + "NORMAL":13986, + "TEXCOORD_0":13987 + }, + "indices":13988, + "material":7 + } + ] + }, + { + "name":"Mesh.8574", + "primitives":[ + { + "attributes":{ + "POSITION":13989, + "NORMAL":13990 + }, + "indices":2251, + "material":3 + } + ] + }, + { + "name":"Mesh.2481", + "primitives":[ + { + "attributes":{ + "POSITION":13991, + "NORMAL":13992, + "TEXCOORD_0":13993 + }, + "indices":1746, + "material":0 + } + ] + }, + { + "name":"Mesh.7605", + "primitives":[ + { + "attributes":{ + "POSITION":13994, + "NORMAL":13995 + }, + "indices":13996, + "material":3 + } + ] + }, + { + "name":"Mesh.8910", + "primitives":[ + { + "attributes":{ + "POSITION":13997, + "NORMAL":13998, + "TEXCOORD_0":13999 + }, + "indices":14000, + "material":7 + } + ] + }, + { + "name":"Mesh.5515", + "primitives":[ + { + "attributes":{ + "POSITION":14001, + "NORMAL":14002, + "TEXCOORD_0":14003 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2989", + "primitives":[ + { + "attributes":{ + "POSITION":14004, + "NORMAL":14005, + "TEXCOORD_0":14006 + }, + "indices":13683, + "material":7 + } + ] + }, + { + "name":"Mesh.8149", + "primitives":[ + { + "attributes":{ + "POSITION":14007, + "NORMAL":14008 + }, + "indices":11228, + "material":3 + } + ] + }, + { + "name":"Mesh.5495", + "primitives":[ + { + "attributes":{ + "POSITION":14009, + "NORMAL":14010, + "TEXCOORD_0":14011 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6067", + "primitives":[ + { + "attributes":{ + "POSITION":14012, + "NORMAL":14013, + "TEXCOORD_0":14014 + }, + "indices":30, + "material":5 + } + ] + }, + { + "name":"Mesh.5743", + "primitives":[ + { + "attributes":{ + "POSITION":14015, + "NORMAL":14016 + }, + "indices":7704, + "material":0 + } + ] + }, + { + "name":"Mesh.1012", + "primitives":[ + { + "attributes":{ + "POSITION":14017, + "NORMAL":14018, + "TEXCOORD_0":14019 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.6603", + "primitives":[ + { + "attributes":{ + "POSITION":14020, + "NORMAL":14021 + }, + "indices":4251, + "material":0 + } + ] + }, + { + "name":"Mesh.7902", + "primitives":[ + { + "attributes":{ + "POSITION":14022, + "NORMAL":14023 + }, + "indices":14024, + "material":3 + } + ] + }, + { + "name":"Mesh.5484", + "primitives":[ + { + "attributes":{ + "POSITION":14025, + "NORMAL":14026, + "TEXCOORD_0":14027 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2626", + "primitives":[ + { + "attributes":{ + "POSITION":14028, + "NORMAL":14029, + "TEXCOORD_0":14030 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.517", + "primitives":[ + { + "attributes":{ + "POSITION":14031, + "NORMAL":14032, + "TEXCOORD_0":14033 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2666", + "primitives":[ + { + "attributes":{ + "POSITION":14034, + "NORMAL":14035, + "TEXCOORD_0":14036 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.8118", + "primitives":[ + { + "attributes":{ + "POSITION":14037, + "NORMAL":14038 + }, + "indices":6067, + "material":3 + } + ] + }, + { + "name":"Mesh.7177", + "primitives":[ + { + "attributes":{ + "POSITION":14039, + "NORMAL":14040, + "TEXCOORD_0":14041 + }, + "indices":14042, + "material":7 + } + ] + }, + { + "name":"Mesh.7632", + "primitives":[ + { + "attributes":{ + "POSITION":14043, + "NORMAL":14044 + }, + "indices":6455, + "material":3 + } + ] + }, + { + "name":"Mesh.8073", + "primitives":[ + { + "attributes":{ + "POSITION":14045, + "NORMAL":14046, + "TEXCOORD_0":14047 + }, + "indices":3573, + "material":3 + } + ] + }, + { + "name":"Mesh.1206", + "primitives":[ + { + "attributes":{ + "POSITION":14048, + "NORMAL":14049 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.1773", + "primitives":[ + { + "attributes":{ + "POSITION":14050, + "NORMAL":14051 + }, + "indices":920, + "material":1 + } + ] + }, + { + "name":"Mesh.6859", + "primitives":[ + { + "attributes":{ + "POSITION":14052, + "NORMAL":14053, + "TEXCOORD_0":14054 + }, + "indices":2649, + "material":3 + } + ] + }, + { + "name":"Mesh.6520", + "primitives":[ + { + "attributes":{ + "POSITION":14055, + "NORMAL":14056, + "TEXCOORD_0":14057 + }, + "indices":514, + "material":0 + } + ] + }, + { + "name":"Mesh.8666", + "primitives":[ + { + "attributes":{ + "POSITION":14058, + "NORMAL":14059 + }, + "indices":7550, + "material":3 + } + ] + }, + { + "name":"Mesh.839", + "primitives":[ + { + "attributes":{ + "POSITION":14060, + "NORMAL":14061, + "TEXCOORD_0":14062 + }, + "indices":2086, + "material":0 + } + ] + }, + { + "name":"Mesh.5598", + "primitives":[ + { + "attributes":{ + "POSITION":14063, + "NORMAL":14064, + "TEXCOORD_0":14065 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8383", + "primitives":[ + { + "attributes":{ + "POSITION":14066, + "NORMAL":14067 + }, + "indices":2692, + "material":3 + } + ] + }, + { + "name":"Mesh.7720", + "primitives":[ + { + "attributes":{ + "POSITION":14068, + "NORMAL":14069 + }, + "indices":14070, + "material":3 + } + ] + }, + { + "name":"Mesh.1221", + "primitives":[ + { + "attributes":{ + "POSITION":14071, + "NORMAL":14072 + }, + "indices":14073, + "material":66 + } + ] + }, + { + "name":"Mesh.6797", + "primitives":[ + { + "attributes":{ + "POSITION":14074, + "NORMAL":14075, + "TEXCOORD_0":14076 + }, + "indices":14077, + "material":0 + } + ] + }, + { + "name":"Mesh.8586", + "primitives":[ + { + "attributes":{ + "POSITION":14078, + "NORMAL":14079 + }, + "indices":12656, + "material":3 + } + ] + }, + { + "name":"Mesh.7945", + "primitives":[ + { + "attributes":{ + "POSITION":14080, + "NORMAL":14081 + }, + "indices":711, + "material":3 + } + ] + }, + { + "name":"Mesh.7004", + "primitives":[ + { + "attributes":{ + "POSITION":14082, + "NORMAL":14083, + "TEXCOORD_0":14084 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.2378", + "primitives":[ + { + "attributes":{ + "POSITION":14085, + "NORMAL":14086, + "TEXCOORD_0":14087 + }, + "indices":6459, + "material":0 + } + ] + }, + { + "name":"Mesh.6686", + "primitives":[ + { + "attributes":{ + "POSITION":14088, + "NORMAL":14089 + }, + "indices":6051, + "material":0 + } + ] + }, + { + "name":"Mesh.569", + "primitives":[ + { + "attributes":{ + "POSITION":14090, + "NORMAL":14091, + "TEXCOORD_0":14092 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.4944", + "primitives":[ + { + "attributes":{ + "POSITION":14093, + "NORMAL":14094, + "TEXCOORD_0":14095 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7220", + "primitives":[ + { + "attributes":{ + "POSITION":14096, + "NORMAL":14097, + "TEXCOORD_0":14098 + }, + "indices":14099, + "material":7 + } + ] + }, + { + "name":"Mesh.7260", + "primitives":[ + { + "attributes":{ + "POSITION":14100, + "NORMAL":14101, + "TEXCOORD_0":14102 + }, + "indices":38, + "material":7 + } + ] + }, + { + "name":"Mesh.6654", + "primitives":[ + { + "attributes":{ + "POSITION":14103, + "NORMAL":14104 + }, + "indices":14105, + "material":0 + } + ] + }, + { + "name":"Mesh.2936", + "primitives":[ + { + "attributes":{ + "POSITION":14106, + "NORMAL":14107, + "TEXCOORD_0":14108 + }, + "indices":14109, + "material":67 + } + ] + }, + { + "name":"Mesh.2944", + "primitives":[ + { + "attributes":{ + "POSITION":14110, + "NORMAL":14111, + "TEXCOORD_0":14112 + }, + "indices":14109, + "material":67 + } + ] + }, + { + "name":"Mesh.2925", + "primitives":[ + { + "attributes":{ + "POSITION":14113, + "NORMAL":14114, + "TEXCOORD_0":14115 + }, + "indices":14109, + "material":67 + } + ] + }, + { + "name":"Mesh.2931", + "primitives":[ + { + "attributes":{ + "POSITION":14116, + "NORMAL":14117, + "TEXCOORD_0":14118 + }, + "indices":14109, + "material":67 + } + ] + }, + { + "name":"Mesh.2934", + "primitives":[ + { + "attributes":{ + "POSITION":14119, + "NORMAL":14120, + "TEXCOORD_0":14121 + }, + "indices":14122, + "material":68 + } + ] + }, + { + "name":"Mesh.2941", + "primitives":[ + { + "attributes":{ + "POSITION":14123, + "NORMAL":14124, + "TEXCOORD_0":14125 + }, + "indices":14122, + "material":68 + } + ] + }, + { + "name":"Mesh.2923", + "primitives":[ + { + "attributes":{ + "POSITION":14126, + "NORMAL":14127, + "TEXCOORD_0":14128 + }, + "indices":14122, + "material":68 + } + ] + }, + { + "name":"Mesh.2933", + "primitives":[ + { + "attributes":{ + "POSITION":14129, + "NORMAL":14130, + "TEXCOORD_0":14131 + }, + "indices":14122, + "material":68 + } + ] + }, + { + "name":"Mesh.2938", + "primitives":[ + { + "attributes":{ + "POSITION":14132, + "NORMAL":14133, + "TEXCOORD_0":14134 + }, + "indices":14135, + "material":69 + }, + { + "attributes":{ + "POSITION":14136, + "NORMAL":14137, + "TEXCOORD_0":14138 + }, + "indices":14139, + "material":67 + } + ] + }, + { + "name":"Mesh.2942", + "primitives":[ + { + "attributes":{ + "POSITION":14140, + "NORMAL":14141, + "TEXCOORD_0":14142 + }, + "indices":14143, + "material":69 + }, + { + "attributes":{ + "POSITION":14144, + "NORMAL":14145, + "TEXCOORD_0":14146 + }, + "indices":14147, + "material":67 + } + ] + }, + { + "name":"Mesh.2922", + "primitives":[ + { + "attributes":{ + "POSITION":14148, + "NORMAL":14149, + "TEXCOORD_0":14150 + }, + "indices":14151, + "material":69 + }, + { + "attributes":{ + "POSITION":14152, + "NORMAL":14153, + "TEXCOORD_0":14154 + }, + "indices":14139, + "material":67 + } + ] + }, + { + "name":"Mesh.2929", + "primitives":[ + { + "attributes":{ + "POSITION":14155, + "NORMAL":14156, + "TEXCOORD_0":14157 + }, + "indices":14158, + "material":69 + }, + { + "attributes":{ + "POSITION":14159, + "NORMAL":14160, + "TEXCOORD_0":14161 + }, + "indices":14147, + "material":67 + } + ] + }, + { + "name":"Mesh.2937", + "primitives":[ + { + "attributes":{ + "POSITION":14162, + "NORMAL":14163, + "TEXCOORD_0":14164 + }, + "indices":14165, + "material":70 + } + ] + }, + { + "name":"Mesh.2943", + "primitives":[ + { + "attributes":{ + "POSITION":14166, + "NORMAL":14167, + "TEXCOORD_0":14168 + }, + "indices":14165, + "material":70 + } + ] + }, + { + "name":"Mesh.2927", + "primitives":[ + { + "attributes":{ + "POSITION":14169, + "NORMAL":14170, + "TEXCOORD_0":14171 + }, + "indices":14165, + "material":70 + } + ] + }, + { + "name":"Mesh.2930", + "primitives":[ + { + "attributes":{ + "POSITION":14172, + "NORMAL":14173, + "TEXCOORD_0":14174 + }, + "indices":14165, + "material":70 + } + ] + }, + { + "name":"Mesh.2935", + "primitives":[ + { + "attributes":{ + "POSITION":14175, + "NORMAL":14176, + "TEXCOORD_0":14177 + }, + "indices":14178, + "material":71 + }, + { + "attributes":{ + "POSITION":14179, + "NORMAL":14180, + "TEXCOORD_0":14181 + }, + "indices":14182, + "material":67 + } + ] + }, + { + "name":"Mesh.2945", + "primitives":[ + { + "attributes":{ + "POSITION":14183, + "NORMAL":14184, + "TEXCOORD_0":14185 + }, + "indices":14178, + "material":71 + }, + { + "attributes":{ + "POSITION":14186, + "NORMAL":14187, + "TEXCOORD_0":14188 + }, + "indices":14182, + "material":67 + } + ] + }, + { + "name":"Mesh.2924", + "primitives":[ + { + "attributes":{ + "POSITION":14189, + "NORMAL":14190, + "TEXCOORD_0":14191 + }, + "indices":14182, + "material":67 + }, + { + "attributes":{ + "POSITION":14192, + "NORMAL":14193, + "TEXCOORD_0":14194 + }, + "indices":14178, + "material":71 + } + ] + }, + { + "name":"Mesh.2932", + "primitives":[ + { + "attributes":{ + "POSITION":14195, + "NORMAL":14196, + "TEXCOORD_0":14197 + }, + "indices":14178, + "material":71 + }, + { + "attributes":{ + "POSITION":14198, + "NORMAL":14199, + "TEXCOORD_0":14200 + }, + "indices":14182, + "material":67 + } + ] + }, + { + "name":"Mesh.2939", + "primitives":[ + { + "attributes":{ + "POSITION":14201, + "NORMAL":14202, + "TEXCOORD_0":14203 + }, + "indices":14204, + "material":72 + } + ] + }, + { + "name":"Mesh.2940", + "primitives":[ + { + "attributes":{ + "POSITION":14205, + "NORMAL":14206, + "TEXCOORD_0":14207 + }, + "indices":14208, + "material":72 + } + ] + }, + { + "name":"Mesh.2926", + "primitives":[ + { + "attributes":{ + "POSITION":14209, + "NORMAL":14210, + "TEXCOORD_0":14211 + }, + "indices":14204, + "material":72 + } + ] + }, + { + "name":"Mesh.2928", + "primitives":[ + { + "attributes":{ + "POSITION":14212, + "NORMAL":14213, + "TEXCOORD_0":14214 + }, + "indices":14208, + "material":72 + } + ] + }, + { + "name":"Mesh.2921", + "primitives":[ + { + "attributes":{ + "POSITION":14215, + "NORMAL":14216 + }, + "indices":14217, + "material":73 + } + ] + }, + { + "name":"Mesh.4833", + "primitives":[ + { + "attributes":{ + "POSITION":14218, + "NORMAL":14219, + "TEXCOORD_0":14220 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.737", + "primitives":[ + { + "attributes":{ + "POSITION":14221, + "NORMAL":14222, + "TEXCOORD_0":14223 + }, + "indices":554, + "material":0 + } + ] + }, + { + "name":"Mesh.8807", + "primitives":[ + { + "attributes":{ + "POSITION":14224, + "NORMAL":14225 + }, + "indices":3094, + "material":3 + } + ] + }, + { + "name":"Mesh.8108", + "primitives":[ + { + "attributes":{ + "POSITION":14226, + "NORMAL":14227 + }, + "indices":5224, + "material":3 + } + ] + }, + { + "name":"Mesh.1896", + "primitives":[ + { + "attributes":{ + "POSITION":14228, + "NORMAL":14229 + }, + "indices":2624, + "material":0 + } + ] + }, + { + "name":"Mesh.922", + "primitives":[ + { + "attributes":{ + "POSITION":14230, + "NORMAL":14231, + "TEXCOORD_0":14232 + }, + "indices":14233, + "material":3 + } + ] + }, + { + "name":"Mesh.8372", + "primitives":[ + { + "attributes":{ + "POSITION":14234, + "NORMAL":14235 + }, + "indices":5116, + "material":3 + } + ] + }, + { + "name":"Mesh.6844", + "primitives":[ + { + "attributes":{ + "POSITION":14236, + "NORMAL":14237, + "TEXCOORD_0":14238 + }, + "indices":5625, + "material":3 + } + ] + }, + { + "name":"Mesh.8636", + "primitives":[ + { + "attributes":{ + "POSITION":14239, + "NORMAL":14240 + }, + "indices":1784, + "material":3 + } + ] + }, + { + "name":"Mesh.8275", + "primitives":[ + { + "attributes":{ + "POSITION":14241, + "NORMAL":14242 + }, + "indices":3882, + "material":3 + } + ] + }, + { + "name":"Mesh.5745", + "primitives":[ + { + "attributes":{ + "POSITION":14243, + "NORMAL":14244, + "TEXCOORD_0":14245 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.7652", + "primitives":[ + { + "attributes":{ + "POSITION":14246, + "NORMAL":14247 + }, + "indices":7253, + "material":3 + } + ] + }, + { + "name":"Mesh.6871", + "primitives":[ + { + "attributes":{ + "POSITION":14248, + "NORMAL":14249 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.166", + "primitives":[ + { + "attributes":{ + "POSITION":14250, + "NORMAL":14251, + "TEXCOORD_0":14252 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.6729", + "primitives":[ + { + "attributes":{ + "POSITION":14253, + "NORMAL":14254 + }, + "indices":6948, + "material":0 + } + ] + }, + { + "name":"Mesh.5274", + "primitives":[ + { + "attributes":{ + "POSITION":14255, + "NORMAL":14256, + "TEXCOORD_0":14257 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6442", + "primitives":[ + { + "attributes":{ + "POSITION":14258, + "NORMAL":14259, + "TEXCOORD_0":14260 + }, + "indices":4929, + "material":0 + } + ] + }, + { + "name":"Mesh.8847", + "primitives":[ + { + "attributes":{ + "POSITION":14261, + "NORMAL":14262 + }, + "indices":7652, + "material":3 + } + ] + }, + { + "name":"Mesh.732", + "primitives":[ + { + "attributes":{ + "POSITION":14263, + "NORMAL":14264, + "TEXCOORD_0":14265 + }, + "indices":12624, + "material":0 + } + ] + }, + { + "name":"Mesh.2465", + "primitives":[ + { + "attributes":{ + "POSITION":14266, + "NORMAL":14267, + "TEXCOORD_0":14268 + }, + "indices":13673, + "material":0 + } + ] + }, + { + "name":"Mesh.8187", + "primitives":[ + { + "attributes":{ + "POSITION":14269, + "NORMAL":14270 + }, + "indices":4574, + "material":3 + } + ] + }, + { + "name":"Mesh.6976", + "primitives":[ + { + "attributes":{ + "POSITION":14271, + "NORMAL":14272, + "TEXCOORD_0":14273 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.7303", + "primitives":[ + { + "attributes":{ + "POSITION":14274, + "NORMAL":14275, + "TEXCOORD_0":14276 + }, + "indices":14277, + "material":7 + } + ] + }, + { + "name":"Mesh.6186", + "primitives":[ + { + "attributes":{ + "POSITION":14278, + "NORMAL":14279, + "TEXCOORD_0":14280 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.6658", + "primitives":[ + { + "attributes":{ + "POSITION":14281, + "NORMAL":14282 + }, + "indices":14283, + "material":0 + } + ] + }, + { + "name":"Mesh.1210", + "primitives":[ + { + "attributes":{ + "POSITION":14284, + "NORMAL":14285 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.9085", + "primitives":[ + { + "attributes":{ + "POSITION":14286, + "NORMAL":14287, + "TEXCOORD_0":14288 + }, + "indices":7376, + "material":7 + } + ] + }, + { + "name":"Mesh.7806", + "primitives":[ + { + "attributes":{ + "POSITION":14289, + "NORMAL":14290 + }, + "indices":14291, + "material":3 + } + ] + }, + { + "name":"Mesh.4916", + "primitives":[ + { + "attributes":{ + "POSITION":14292, + "NORMAL":14293, + "TEXCOORD_0":14294 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.965", + "primitives":[ + { + "attributes":{ + "POSITION":14295, + "NORMAL":14296, + "TEXCOORD_0":14297 + }, + "indices":5756, + "material":4 + } + ] + }, + { + "name":"Mesh.5243", + "primitives":[ + { + "attributes":{ + "POSITION":14298, + "NORMAL":14299, + "TEXCOORD_0":14300 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7846", + "primitives":[ + { + "attributes":{ + "POSITION":14301, + "NORMAL":14302 + }, + "indices":14303, + "material":3 + } + ] + }, + { + "name":"Mesh.2115", + "primitives":[ + { + "attributes":{ + "POSITION":14304, + "NORMAL":14305, + "TEXCOORD_0":14306 + }, + "indices":3024, + "material":3 + } + ] + }, + { + "name":"Mesh.1611", + "primitives":[ + { + "attributes":{ + "POSITION":14307, + "NORMAL":14308 + }, + "indices":557, + "material":17 + } + ] + }, + { + "name":"Mesh.5428", + "primitives":[ + { + "attributes":{ + "POSITION":14309, + "NORMAL":14310, + "TEXCOORD_0":14311 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2741", + "primitives":[ + { + "attributes":{ + "POSITION":14312, + "NORMAL":14313, + "TEXCOORD_0":14314 + }, + "indices":296, + "material":4 + } + ] + }, + { + "name":"Mesh.1196", + "primitives":[ + { + "attributes":{ + "POSITION":14315, + "NORMAL":14316 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.5468", + "primitives":[ + { + "attributes":{ + "POSITION":14317, + "NORMAL":14318, + "TEXCOORD_0":14319 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7072", + "primitives":[ + { + "attributes":{ + "POSITION":14320, + "NORMAL":14321 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.2356", + "primitives":[ + { + "attributes":{ + "POSITION":14322, + "NORMAL":14323, + "TEXCOORD_0":14324 + }, + "indices":328, + "material":0 + } + ] + }, + { + "name":"Mesh.2044", + "primitives":[ + { + "attributes":{ + "POSITION":14325, + "NORMAL":14326, + "TEXCOORD_0":14327 + }, + "indices":14328, + "material":0 + } + ] + }, + { + "name":"Mesh.2084", + "primitives":[ + { + "attributes":{ + "POSITION":14329, + "NORMAL":14330, + "TEXCOORD_0":14331 + }, + "indices":8314, + "material":3 + } + ] + }, + { + "name":"Mesh.1797", + "primitives":[ + { + "attributes":{ + "POSITION":14332, + "NORMAL":14333, + "TEXCOORD_0":14334 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.2285", + "primitives":[ + { + "attributes":{ + "POSITION":14335, + "NORMAL":14336, + "TEXCOORD_0":14337 + }, + "indices":14338, + "material":0 + } + ] + }, + { + "name":"Mesh.8972", + "primitives":[ + { + "attributes":{ + "POSITION":14339, + "NORMAL":14340, + "TEXCOORD_0":14341 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.2168", + "primitives":[ + { + "attributes":{ + "POSITION":14342, + "NORMAL":14343, + "TEXCOORD_0":14344 + }, + "indices":14345, + "material":0 + } + ] + }, + { + "name":"Mesh.7849", + "primitives":[ + { + "attributes":{ + "POSITION":14346, + "NORMAL":14347 + }, + "indices":14348, + "material":3 + } + ] + }, + { + "name":"Mesh.9020", + "primitives":[ + { + "attributes":{ + "POSITION":14349, + "NORMAL":14350, + "TEXCOORD_0":14351 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.465", + "primitives":[ + { + "attributes":{ + "POSITION":14352, + "NORMAL":14353 + }, + "indices":2242, + "material":3 + } + ] + }, + { + "name":"Mesh.623", + "primitives":[ + { + "attributes":{ + "POSITION":14354, + "NORMAL":14355, + "TEXCOORD_0":14356 + }, + "indices":12258, + "material":3 + } + ] + }, + { + "name":"Mesh.7099", + "primitives":[ + { + "attributes":{ + "POSITION":14357, + "NORMAL":14358, + "TEXCOORD_0":14359 + }, + "indices":14360, + "material":7 + } + ] + }, + { + "name":"Mesh.2896", + "primitives":[ + { + "attributes":{ + "POSITION":14361, + "NORMAL":14362 + }, + "indices":2224, + "material":1 + } + ] + }, + { + "name":"Mesh.085", + "primitives":[ + { + "attributes":{ + "POSITION":14363, + "NORMAL":14364, + "TEXCOORD_0":14365 + }, + "indices":14366, + "material":7 + } + ] + }, + { + "name":"Mesh.6454", + "primitives":[ + { + "attributes":{ + "POSITION":14367, + "NORMAL":14368, + "TEXCOORD_0":14369 + }, + "indices":2862, + "material":0 + } + ] + }, + { + "name":"Mesh.6167", + "primitives":[ + { + "attributes":{ + "POSITION":14370, + "NORMAL":14371, + "TEXCOORD_0":14372 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.2795", + "primitives":[ + { + "attributes":{ + "POSITION":14373, + "NORMAL":14374, + "TEXCOORD_0":14375 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.6988", + "primitives":[ + { + "attributes":{ + "POSITION":14376, + "NORMAL":14377 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.1728", + "primitives":[ + { + "attributes":{ + "POSITION":14378, + "NORMAL":14379 + }, + "indices":2525, + "material":27 + } + ] + }, + { + "name":"Mesh.8441", + "primitives":[ + { + "attributes":{ + "POSITION":14380, + "NORMAL":14381 + }, + "indices":14382, + "material":3 + } + ] + }, + { + "name":"Mesh.6056", + "primitives":[ + { + "attributes":{ + "POSITION":14383, + "NORMAL":14384, + "TEXCOORD_0":14385 + }, + "indices":947, + "material":5 + } + ] + }, + { + "name":"Mesh.9113", + "primitives":[ + { + "attributes":{ + "POSITION":14386, + "NORMAL":14387, + "TEXCOORD_0":14388 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.7503", + "primitives":[ + { + "attributes":{ + "POSITION":14389, + "NORMAL":14390 + }, + "indices":14391, + "material":3 + } + ] + }, + { + "name":"Mesh.2865", + "primitives":[ + { + "attributes":{ + "POSITION":14392, + "NORMAL":14393, + "TEXCOORD_0":14394 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.6559", + "primitives":[ + { + "attributes":{ + "POSITION":14395, + "NORMAL":14396 + }, + "indices":75, + "material":0 + } + ] + }, + { + "name":"Mesh.9097", + "primitives":[ + { + "attributes":{ + "POSITION":14397, + "NORMAL":14398, + "TEXCOORD_0":14399 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.348", + "primitives":[ + { + "attributes":{ + "POSITION":14400, + "NORMAL":14401, + "TEXCOORD_0":14402 + }, + "indices":14403, + "material":0 + } + ] + }, + { + "name":"Mesh.5440", + "primitives":[ + { + "attributes":{ + "POSITION":14404, + "NORMAL":14405, + "TEXCOORD_0":14406 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5645", + "primitives":[ + { + "attributes":{ + "POSITION":14407, + "NORMAL":14408, + "TEXCOORD_0":14409 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2158", + "primitives":[ + { + "attributes":{ + "POSITION":14410, + "NORMAL":14411, + "TEXCOORD_0":14412 + }, + "indices":9923, + "material":0 + } + ] + }, + { + "name":"Mesh.7420", + "primitives":[ + { + "attributes":{ + "POSITION":14413, + "NORMAL":14414, + "TEXCOORD_0":14415 + }, + "indices":14416, + "material":7 + } + ] + }, + { + "name":"Mesh.688", + "primitives":[ + { + "attributes":{ + "POSITION":14417, + "NORMAL":14418, + "TEXCOORD_0":14419 + }, + "indices":14420, + "material":0 + } + ] + }, + { + "name":"Mesh.8573", + "primitives":[ + { + "attributes":{ + "POSITION":14421, + "NORMAL":14422 + }, + "indices":14423, + "material":3 + } + ] + }, + { + "name":"Mesh.8176", + "primitives":[ + { + "attributes":{ + "POSITION":14424, + "NORMAL":14425 + }, + "indices":4021, + "material":3 + } + ] + }, + { + "name":"Mesh.8909", + "primitives":[ + { + "attributes":{ + "POSITION":14426, + "NORMAL":14427, + "TEXCOORD_0":14428 + }, + "indices":2564, + "material":7 + } + ] + }, + { + "name":"Mesh.5514", + "primitives":[ + { + "attributes":{ + "POSITION":14429, + "NORMAL":14430, + "TEXCOORD_0":14431 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.123", + "primitives":[ + { + "attributes":{ + "POSITION":14432, + "NORMAL":14433, + "TEXCOORD_0":14434 + }, + "indices":14435, + "material":0 + } + ] + }, + { + "name":"Mesh.2988", + "primitives":[ + { + "attributes":{ + "POSITION":14436, + "NORMAL":14437, + "TEXCOORD_0":14438 + }, + "indices":13683, + "material":7 + } + ] + }, + { + "name":"Mesh.9046", + "primitives":[ + { + "attributes":{ + "POSITION":14439, + "NORMAL":14440, + "TEXCOORD_0":14441 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.6528", + "primitives":[ + { + "attributes":{ + "POSITION":14442, + "NORMAL":14443, + "TEXCOORD_0":14444 + }, + "indices":3597, + "material":0 + } + ] + }, + { + "name":"Mesh.2342", + "primitives":[ + { + "attributes":{ + "POSITION":14445, + "NORMAL":14446, + "TEXCOORD_0":14447 + }, + "indices":14448, + "material":0 + } + ] + }, + { + "name":"Mesh.8824", + "primitives":[ + { + "attributes":{ + "POSITION":14449, + "NORMAL":14450 + }, + "indices":7129, + "material":3 + } + ] + }, + { + "name":"Mesh.6241", + "primitives":[ + { + "attributes":{ + "POSITION":14451, + "NORMAL":14452, + "TEXCOORD_0":14453 + }, + "indices":947, + "material":5 + } + ] + }, + { + "name":"Mesh.8148", + "primitives":[ + { + "attributes":{ + "POSITION":14454, + "NORMAL":14455 + }, + "indices":1915, + "material":3 + } + ] + }, + { + "name":"Mesh.6961", + "primitives":[ + { + "attributes":{ + "POSITION":14456, + "NORMAL":14457 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.7932", + "primitives":[ + { + "attributes":{ + "POSITION":14458, + "NORMAL":14459 + }, + "indices":14460, + "material":3 + } + ] + }, + { + "name":"Mesh.7389", + "primitives":[ + { + "attributes":{ + "POSITION":14461, + "NORMAL":14462, + "TEXCOORD_0":14463 + }, + "indices":5503, + "material":7 + } + ] + }, + { + "name":"Mesh.1011", + "primitives":[ + { + "attributes":{ + "POSITION":14464, + "NORMAL":14465, + "TEXCOORD_0":14466 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.1698", + "primitives":[ + { + "attributes":{ + "POSITION":14467, + "NORMAL":14468, + "TEXCOORD_0":14469 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.5483", + "primitives":[ + { + "attributes":{ + "POSITION":14470, + "NORMAL":14471, + "TEXCOORD_0":14472 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2625", + "primitives":[ + { + "attributes":{ + "POSITION":14473, + "NORMAL":14474, + "TEXCOORD_0":14475 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.516", + "primitives":[ + { + "attributes":{ + "POSITION":14476, + "NORMAL":14477, + "TEXCOORD_0":14478 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.740", + "primitives":[ + { + "attributes":{ + "POSITION":14479, + "NORMAL":14480, + "TEXCOORD_0":14481 + }, + "indices":7785, + "material":0 + } + ] + }, + { + "name":"Mesh.2665", + "primitives":[ + { + "attributes":{ + "POSITION":14482, + "NORMAL":14483, + "TEXCOORD_0":14484 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.8195", + "primitives":[ + { + "attributes":{ + "POSITION":14485, + "NORMAL":14486 + }, + "indices":14487, + "material":3 + } + ] + }, + { + "name":"Mesh.353", + "primitives":[ + { + "attributes":{ + "POSITION":14488, + "NORMAL":14489, + "TEXCOORD_0":14490 + }, + "indices":2803, + "material":0 + } + ] + }, + { + "name":"Mesh.8117", + "primitives":[ + { + "attributes":{ + "POSITION":14491, + "NORMAL":14492 + }, + "indices":6417, + "material":3 + } + ] + }, + { + "name":"Mesh.5372", + "primitives":[ + { + "attributes":{ + "POSITION":14493, + "NORMAL":14494, + "TEXCOORD_0":14495 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5269", + "primitives":[ + { + "attributes":{ + "POSITION":14496, + "NORMAL":14497, + "TEXCOORD_0":14498 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6858", + "primitives":[ + { + "attributes":{ + "POSITION":14499, + "NORMAL":14500, + "TEXCOORD_0":14501 + }, + "indices":5899, + "material":3 + } + ] + }, + { + "name":"Mesh.8665", + "primitives":[ + { + "attributes":{ + "POSITION":14502, + "NORMAL":14503 + }, + "indices":7926, + "material":3 + } + ] + }, + { + "name":"Mesh.5597", + "primitives":[ + { + "attributes":{ + "POSITION":14504, + "NORMAL":14505, + "TEXCOORD_0":14506 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7719", + "primitives":[ + { + "attributes":{ + "POSITION":14507, + "NORMAL":14508 + }, + "indices":14509, + "material":3 + } + ] + }, + { + "name":"Mesh.4829", + "primitives":[ + { + "attributes":{ + "POSITION":14510, + "NORMAL":14511, + "TEXCOORD_0":14512 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6796", + "primitives":[ + { + "attributes":{ + "POSITION":14513, + "NORMAL":14514, + "TEXCOORD_0":14515 + }, + "indices":8014, + "material":3 + } + ] + }, + { + "name":"Mesh.1779", + "primitives":[ + { + "attributes":{ + "POSITION":14516, + "NORMAL":14517, + "TEXCOORD_0":14518 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.116", + "primitives":[ + { + "attributes":{ + "POSITION":14519, + "NORMAL":14520, + "TEXCOORD_0":14521 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7710", + "primitives":[ + { + "attributes":{ + "POSITION":14522, + "NORMAL":14523 + }, + "indices":14524, + "material":3 + } + ] + }, + { + "name":"Mesh.6948", + "primitives":[ + { + "attributes":{ + "POSITION":14525, + "NORMAL":14526 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.2581", + "primitives":[ + { + "attributes":{ + "POSITION":14527, + "NORMAL":14528, + "TEXCOORD_0":14529 + }, + "indices":2427, + "material":0 + } + ] + }, + { + "name":"Mesh.7944", + "primitives":[ + { + "attributes":{ + "POSITION":14530, + "NORMAL":14531 + }, + "indices":14532, + "material":3 + } + ] + }, + { + "name":"Mesh.7003", + "primitives":[ + { + "attributes":{ + "POSITION":14533, + "NORMAL":14534, + "TEXCOORD_0":14535 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.6827", + "primitives":[ + { + "attributes":{ + "POSITION":14536, + "NORMAL":14537, + "TEXCOORD_0":14538 + }, + "indices":708, + "material":0 + } + ] + }, + { + "name":"Mesh.6685", + "primitives":[ + { + "attributes":{ + "POSITION":14539, + "NORMAL":14540 + }, + "indices":14541, + "material":0 + } + ] + }, + { + "name":"Mesh.2262", + "primitives":[ + { + "attributes":{ + "POSITION":14542, + "NORMAL":14543, + "TEXCOORD_0":14544 + }, + "indices":14545, + "material":0 + } + ] + }, + { + "name":"Mesh.4943", + "primitives":[ + { + "attributes":{ + "POSITION":14546, + "NORMAL":14547, + "TEXCOORD_0":14548 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7219", + "primitives":[ + { + "attributes":{ + "POSITION":14549, + "NORMAL":14550, + "TEXCOORD_0":14551 + }, + "indices":14552, + "material":7 + } + ] + }, + { + "name":"Mesh.1023", + "primitives":[ + { + "attributes":{ + "POSITION":14553, + "NORMAL":14554, + "TEXCOORD_0":14555 + }, + "indices":2827, + "material":0 + } + ] + }, + { + "name":"Mesh.2016", + "primitives":[ + { + "attributes":{ + "POSITION":14556, + "NORMAL":14557, + "TEXCOORD_0":14558 + }, + "indices":14559, + "material":0 + } + ] + }, + { + "name":"Mesh.6614", + "primitives":[ + { + "attributes":{ + "POSITION":14560, + "NORMAL":14561 + }, + "indices":4577, + "material":0 + } + ] + }, + { + "name":"Mesh.1858", + "primitives":[ + { + "attributes":{ + "POSITION":14562, + "NORMAL":14563 + }, + "indices":2946, + "material":0 + } + ] + }, + { + "name":"Mesh.481", + "primitives":[ + { + "attributes":{ + "POSITION":14564, + "NORMAL":14565 + }, + "indices":6916, + "material":3 + } + ] + }, + { + "name":"Mesh.2198", + "primitives":[ + { + "attributes":{ + "POSITION":14566, + "NORMAL":14567, + "TEXCOORD_0":14568 + }, + "indices":10794, + "material":0 + } + ] + }, + { + "name":"Mesh.8230", + "primitives":[ + { + "attributes":{ + "POSITION":14569, + "NORMAL":14570 + }, + "indices":222, + "material":3 + } + ] + }, + { + "name":"Mesh.1895", + "primitives":[ + { + "attributes":{ + "POSITION":14571, + "NORMAL":14572 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.921", + "primitives":[ + { + "attributes":{ + "POSITION":14573, + "NORMAL":14574, + "TEXCOORD_0":14575 + }, + "indices":14576, + "material":3 + } + ] + }, + { + "name":"Mesh.8853", + "primitives":[ + { + "attributes":{ + "POSITION":14577, + "NORMAL":14578 + }, + "indices":1292, + "material":3 + } + ] + }, + { + "name":"Mesh.2868", + "primitives":[ + { + "attributes":{ + "POSITION":14579, + "NORMAL":14580 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.8274", + "primitives":[ + { + "attributes":{ + "POSITION":14581, + "NORMAL":14582 + }, + "indices":10970, + "material":3 + } + ] + }, + { + "name":"Mesh.5744", + "primitives":[ + { + "attributes":{ + "POSITION":14583, + "NORMAL":14584 + }, + "indices":14585, + "material":0 + } + ] + }, + { + "name":"Mesh.7651", + "primitives":[ + { + "attributes":{ + "POSITION":14586, + "NORMAL":14587 + }, + "indices":9185, + "material":3 + } + ] + }, + { + "name":"Mesh.6080", + "primitives":[ + { + "attributes":{ + "POSITION":14588, + "NORMAL":14589, + "TEXCOORD_0":14590 + }, + "indices":9639, + "material":11 + } + ] + }, + { + "name":"Mesh.6870", + "primitives":[ + { + "attributes":{ + "POSITION":14591, + "NORMAL":14592 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.165", + "primitives":[ + { + "attributes":{ + "POSITION":14593, + "NORMAL":14594, + "TEXCOORD_0":14595 + }, + "indices":226, + "material":0 + } + ] + }, + { + "name":"Mesh.5273", + "primitives":[ + { + "attributes":{ + "POSITION":14596, + "NORMAL":14597, + "TEXCOORD_0":14598 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6441", + "primitives":[ + { + "attributes":{ + "POSITION":14599, + "NORMAL":14600, + "TEXCOORD_0":14601 + }, + "indices":5257, + "material":0 + } + ] + }, + { + "name":"Mesh.6296", + "primitives":[ + { + "attributes":{ + "POSITION":14602, + "NORMAL":14603, + "TEXCOORD_0":14604 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.2464", + "primitives":[ + { + "attributes":{ + "POSITION":14605, + "NORMAL":14606, + "TEXCOORD_0":14607 + }, + "indices":313, + "material":4 + } + ] + }, + { + "name":"Mesh.7777", + "primitives":[ + { + "attributes":{ + "POSITION":14608, + "NORMAL":14609 + }, + "indices":14610, + "material":3 + } + ] + }, + { + "name":"Mesh.9109", + "primitives":[ + { + "attributes":{ + "POSITION":14611, + "NORMAL":14612, + "TEXCOORD_0":14613 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.7302", + "primitives":[ + { + "attributes":{ + "POSITION":14614, + "NORMAL":14615, + "TEXCOORD_0":14616 + }, + "indices":14617, + "material":7 + } + ] + }, + { + "name":"Mesh.6185", + "primitives":[ + { + "attributes":{ + "POSITION":14618, + "NORMAL":14619, + "TEXCOORD_0":14620 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.6657", + "primitives":[ + { + "attributes":{ + "POSITION":14621, + "NORMAL":14622 + }, + "indices":7259, + "material":0 + } + ] + }, + { + "name":"Mesh.7552", + "primitives":[ + { + "attributes":{ + "POSITION":14623, + "NORMAL":14624 + }, + "indices":864, + "material":3 + } + ] + }, + { + "name":"Mesh.7956", + "primitives":[ + { + "attributes":{ + "POSITION":14625, + "NORMAL":14626 + }, + "indices":14627, + "material":3 + } + ] + }, + { + "name":"Mesh.7805", + "primitives":[ + { + "attributes":{ + "POSITION":14628, + "NORMAL":14629 + }, + "indices":14630, + "material":3 + } + ] + }, + { + "name":"Mesh.4915", + "primitives":[ + { + "attributes":{ + "POSITION":14631, + "NORMAL":14632, + "TEXCOORD_0":14633 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5242", + "primitives":[ + { + "attributes":{ + "POSITION":14634, + "NORMAL":14635, + "TEXCOORD_0":14636 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7845", + "primitives":[ + { + "attributes":{ + "POSITION":14637, + "NORMAL":14638 + }, + "indices":14639, + "material":3 + } + ] + }, + { + "name":"Mesh.2114", + "primitives":[ + { + "attributes":{ + "POSITION":14640, + "NORMAL":14641, + "TEXCOORD_0":14642 + }, + "indices":3372, + "material":3 + } + ] + }, + { + "name":"Mesh.1125", + "primitives":[ + { + "attributes":{ + "POSITION":14643, + "NORMAL":14644, + "TEXCOORD_0":14645 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.5427", + "primitives":[ + { + "attributes":{ + "POSITION":14646, + "NORMAL":14647, + "TEXCOORD_0":14648 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6930", + "primitives":[ + { + "attributes":{ + "POSITION":14649, + "NORMAL":14650 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.7271", + "primitives":[ + { + "attributes":{ + "POSITION":14651, + "NORMAL":14652, + "TEXCOORD_0":14653 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.2355", + "primitives":[ + { + "attributes":{ + "POSITION":14654, + "NORMAL":14655, + "TEXCOORD_0":14656 + }, + "indices":51, + "material":0 + } + ] + }, + { + "name":"Mesh.8320", + "primitives":[ + { + "attributes":{ + "POSITION":14657, + "NORMAL":14658 + }, + "indices":12313, + "material":3 + } + ] + }, + { + "name":"Mesh.5652", + "primitives":[ + { + "attributes":{ + "POSITION":14659, + "NORMAL":14660, + "TEXCOORD_0":14661 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2043", + "primitives":[ + { + "attributes":{ + "POSITION":14662, + "NORMAL":14663, + "TEXCOORD_0":14664 + }, + "indices":13787, + "material":0 + } + ] + }, + { + "name":"Mesh.199", + "primitives":[ + { + "attributes":{ + "POSITION":14665, + "NORMAL":14666, + "TEXCOORD_0":14667 + }, + "indices":4231, + "material":0 + } + ] + }, + { + "name":"Mesh.2083", + "primitives":[ + { + "attributes":{ + "POSITION":14668, + "NORMAL":14669, + "TEXCOORD_0":14670 + }, + "indices":10251, + "material":3 + } + ] + }, + { + "name":"Mesh.058", + "primitives":[ + { + "attributes":{ + "POSITION":14671, + "NORMAL":14672 + }, + "indices":5065, + "material":39 + } + ] + }, + { + "name":"Mesh.709", + "primitives":[ + { + "attributes":{ + "POSITION":14673, + "NORMAL":14674, + "TEXCOORD_0":14675 + }, + "indices":11842, + "material":0 + } + ] + }, + { + "name":"Mesh.5396", + "primitives":[ + { + "attributes":{ + "POSITION":14676, + "NORMAL":14677, + "TEXCOORD_0":14678 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9094", + "primitives":[ + { + "attributes":{ + "POSITION":14679, + "NORMAL":14680, + "TEXCOORD_0":14681 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.1615", + "primitives":[ + { + "attributes":{ + "POSITION":14682, + "NORMAL":14683 + }, + "indices":2525, + "material":27 + } + ] + }, + { + "name":"Mesh.1840", + "primitives":[ + { + "attributes":{ + "POSITION":14684, + "NORMAL":14685 + }, + "indices":65, + "material":8 + } + ] + }, + { + "name":"Mesh.1796", + "primitives":[ + { + "attributes":{ + "POSITION":14686, + "NORMAL":14687, + "TEXCOORD_0":14688 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.6330", + "primitives":[ + { + "attributes":{ + "POSITION":14689, + "NORMAL":14690 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.7363", + "primitives":[ + { + "attributes":{ + "POSITION":14691, + "NORMAL":14692, + "TEXCOORD_0":14693 + }, + "indices":14694, + "material":7 + } + ] + }, + { + "name":"Mesh.7098", + "primitives":[ + { + "attributes":{ + "POSITION":14695, + "NORMAL":14696, + "TEXCOORD_0":14697 + }, + "indices":14698, + "material":7 + } + ] + }, + { + "name":"Mesh.2895", + "primitives":[ + { + "attributes":{ + "POSITION":14699, + "NORMAL":14700 + }, + "indices":2224, + "material":1 + } + ] + }, + { + "name":"Mesh.1888", + "primitives":[ + { + "attributes":{ + "POSITION":14701, + "NORMAL":14702 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.6453", + "primitives":[ + { + "attributes":{ + "POSITION":14703, + "NORMAL":14704, + "TEXCOORD_0":14705 + }, + "indices":14706, + "material":0 + } + ] + }, + { + "name":"Mesh.6166", + "primitives":[ + { + "attributes":{ + "POSITION":14707, + "NORMAL":14708, + "TEXCOORD_0":14709 + }, + "indices":927, + "material":12 + } + ] + }, + { + "name":"Mesh.2794", + "primitives":[ + { + "attributes":{ + "POSITION":14710, + "NORMAL":14711, + "TEXCOORD_0":14712 + }, + "indices":273, + "material":0 + } + ] + }, + { + "name":"Mesh.6987", + "primitives":[ + { + "attributes":{ + "POSITION":14713, + "NORMAL":14714, + "TEXCOORD_0":14715 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.6197", + "primitives":[ + { + "attributes":{ + "POSITION":14716, + "NORMAL":14717, + "TEXCOORD_0":14718 + }, + "indices":3712, + "material":33 + } + ] + }, + { + "name":"Mesh.8440", + "primitives":[ + { + "attributes":{ + "POSITION":14719, + "NORMAL":14720 + }, + "indices":14721, + "material":3 + } + ] + }, + { + "name":"Mesh.6055", + "primitives":[ + { + "attributes":{ + "POSITION":14722, + "NORMAL":14723, + "TEXCOORD_0":14724 + }, + "indices":7004, + "material":12 + } + ] + }, + { + "name":"Mesh.8384", + "primitives":[ + { + "attributes":{ + "POSITION":14725, + "NORMAL":14726 + }, + "indices":5224, + "material":3 + } + ] + }, + { + "name":"Mesh.8291", + "primitives":[ + { + "attributes":{ + "POSITION":14727, + "NORMAL":14728 + }, + "indices":711, + "material":3 + } + ] + }, + { + "name":"Mesh.2864", + "primitives":[ + { + "attributes":{ + "POSITION":14729, + "NORMAL":14730, + "TEXCOORD_0":14731 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.6558", + "primitives":[ + { + "attributes":{ + "POSITION":14732, + "NORMAL":14733 + }, + "indices":4661, + "material":0 + } + ] + }, + { + "name":"Mesh.1654", + "primitives":[ + { + "attributes":{ + "POSITION":14734, + "NORMAL":14735, + "TEXCOORD_0":14736 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.6916", + "primitives":[ + { + "attributes":{ + "POSITION":14737, + "NORMAL":14738, + "TEXCOORD_0":14739 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.5439", + "primitives":[ + { + "attributes":{ + "POSITION":14740, + "NORMAL":14741, + "TEXCOORD_0":14742 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8868", + "primitives":[ + { + "attributes":{ + "POSITION":14743, + "NORMAL":14744 + }, + "indices":8822, + "material":3 + } + ] + }, + { + "name":"Mesh.4856", + "primitives":[ + { + "attributes":{ + "POSITION":14745, + "NORMAL":14746, + "TEXCOORD_0":14747 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8572", + "primitives":[ + { + "attributes":{ + "POSITION":14748, + "NORMAL":14749 + }, + "indices":14750, + "material":3 + } + ] + }, + { + "name":"Mesh.8908", + "primitives":[ + { + "attributes":{ + "POSITION":14751, + "NORMAL":14752, + "TEXCOORD_0":14753 + }, + "indices":8495, + "material":7 + } + ] + }, + { + "name":"Mesh.7931", + "primitives":[ + { + "attributes":{ + "POSITION":14754, + "NORMAL":14755 + }, + "indices":14756, + "material":3 + } + ] + }, + { + "name":"Mesh.8682", + "primitives":[ + { + "attributes":{ + "POSITION":14757, + "NORMAL":14758 + }, + "indices":1157, + "material":3 + } + ] + }, + { + "name":"Mesh.666", + "primitives":[ + { + "attributes":{ + "POSITION":14759, + "NORMAL":14760, + "TEXCOORD_0":14761 + }, + "indices":3628, + "material":3 + } + ] + }, + { + "name":"Mesh.7890", + "primitives":[ + { + "attributes":{ + "POSITION":14762, + "NORMAL":14763 + }, + "indices":14764, + "material":3 + } + ] + }, + { + "name":"Mesh.8238", + "primitives":[ + { + "attributes":{ + "POSITION":14765, + "NORMAL":14766 + }, + "indices":6100, + "material":3 + } + ] + }, + { + "name":"Mesh.124", + "primitives":[ + { + "attributes":{ + "POSITION":14767, + "NORMAL":14768, + "TEXCOORD_0":14769 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.2987", + "primitives":[ + { + "attributes":{ + "POSITION":14770, + "NORMAL":14771, + "TEXCOORD_0":14772 + }, + "indices":13683, + "material":7 + } + ] + }, + { + "name":"Mesh.6527", + "primitives":[ + { + "attributes":{ + "POSITION":14773, + "NORMAL":14774, + "TEXCOORD_0":14775 + }, + "indices":5486, + "material":0 + } + ] + }, + { + "name":"Mesh.6240", + "primitives":[ + { + "attributes":{ + "POSITION":14776, + "NORMAL":14777, + "TEXCOORD_0":14778 + }, + "indices":7004, + "material":12 + } + ] + }, + { + "name":"Mesh.8147", + "primitives":[ + { + "attributes":{ + "POSITION":14779, + "NORMAL":14780 + }, + "indices":2242, + "material":3 + } + ] + }, + { + "name":"Mesh.7388", + "primitives":[ + { + "attributes":{ + "POSITION":14781, + "NORMAL":14782, + "TEXCOORD_0":14783 + }, + "indices":5903, + "material":7 + } + ] + }, + { + "name":"Mesh.1010", + "primitives":[ + { + "attributes":{ + "POSITION":14784, + "NORMAL":14785, + "TEXCOORD_0":14786 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.7900", + "primitives":[ + { + "attributes":{ + "POSITION":14787, + "NORMAL":14788 + }, + "indices":14789, + "material":3 + } + ] + }, + { + "name":"Mesh.5155", + "primitives":[ + { + "attributes":{ + "POSITION":14790, + "NORMAL":14791, + "TEXCOORD_0":14792 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.691", + "primitives":[ + { + "attributes":{ + "POSITION":14793, + "NORMAL":14794, + "TEXCOORD_0":14795 + }, + "indices":2785, + "material":0 + } + ] + }, + { + "name":"Mesh.5482", + "primitives":[ + { + "attributes":{ + "POSITION":14796, + "NORMAL":14797, + "TEXCOORD_0":14798 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8512", + "primitives":[ + { + "attributes":{ + "POSITION":14799, + "NORMAL":14800 + }, + "indices":14801, + "material":3 + } + ] + }, + { + "name":"Mesh.2576", + "primitives":[ + { + "attributes":{ + "POSITION":14802, + "NORMAL":14803, + "TEXCOORD_0":14804 + }, + "indices":1400, + "material":0 + } + ] + }, + { + "name":"Mesh.515", + "primitives":[ + { + "attributes":{ + "POSITION":14805, + "NORMAL":14806, + "TEXCOORD_0":14807 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.6435", + "primitives":[ + { + "attributes":{ + "POSITION":14808, + "NORMAL":14809, + "TEXCOORD_0":14810 + }, + "indices":1890, + "material":0 + } + ] + }, + { + "name":"Mesh.5679", + "primitives":[ + { + "attributes":{ + "POSITION":14811, + "NORMAL":14812, + "TEXCOORD_0":14813 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2664", + "primitives":[ + { + "attributes":{ + "POSITION":14814, + "NORMAL":14815, + "TEXCOORD_0":14816 + }, + "indices":5756, + "material":0 + } + ] + }, + { + "name":"Mesh.8116", + "primitives":[ + { + "attributes":{ + "POSITION":14817, + "NORMAL":14818 + }, + "indices":6779, + "material":3 + } + ] + }, + { + "name":"Mesh.8841", + "primitives":[ + { + "attributes":{ + "POSITION":14819, + "NORMAL":14820 + }, + "indices":861, + "material":3 + } + ] + }, + { + "name":"Mesh.7175", + "primitives":[ + { + "attributes":{ + "POSITION":14821, + "NORMAL":14822, + "TEXCOORD_0":14823 + }, + "indices":14824, + "material":7 + } + ] + }, + { + "name":"Mesh.5612", + "primitives":[ + { + "attributes":{ + "POSITION":14825, + "NORMAL":14826, + "TEXCOORD_0":14827 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6857", + "primitives":[ + { + "attributes":{ + "POSITION":14828, + "NORMAL":14829, + "TEXCOORD_0":14830 + }, + "indices":5625, + "material":3 + } + ] + }, + { + "name":"Mesh.8664", + "primitives":[ + { + "attributes":{ + "POSITION":14831, + "NORMAL":14832 + }, + "indices":5443, + "material":3 + } + ] + }, + { + "name":"Mesh.665", + "primitives":[ + { + "attributes":{ + "POSITION":14833, + "NORMAL":14834, + "TEXCOORD_0":14835 + }, + "indices":14836, + "material":3 + } + ] + }, + { + "name":"Mesh.7533", + "primitives":[ + { + "attributes":{ + "POSITION":14837, + "NORMAL":14838 + }, + "indices":10440, + "material":3 + } + ] + }, + { + "name":"Mesh.5596", + "primitives":[ + { + "attributes":{ + "POSITION":14839, + "NORMAL":14840, + "TEXCOORD_0":14841 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7718", + "primitives":[ + { + "attributes":{ + "POSITION":14842, + "NORMAL":14843 + }, + "indices":14844, + "material":3 + } + ] + }, + { + "name":"Mesh.4828", + "primitives":[ + { + "attributes":{ + "POSITION":14845, + "NORMAL":14846, + "TEXCOORD_0":14847 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8225", + "primitives":[ + { + "attributes":{ + "POSITION":14848, + "NORMAL":14849 + }, + "indices":8600, + "material":3 + } + ] + }, + { + "name":"Mesh.8806", + "primitives":[ + { + "attributes":{ + "POSITION":14850, + "NORMAL":14851 + }, + "indices":14852, + "material":3 + } + ] + }, + { + "name":"Mesh.6323", + "primitives":[ + { + "attributes":{ + "POSITION":14853, + "NORMAL":14854 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.8498", + "primitives":[ + { + "attributes":{ + "POSITION":14855, + "NORMAL":14856 + }, + "indices":9752, + "material":3 + } + ] + }, + { + "name":"Mesh.6986", + "primitives":[ + { + "attributes":{ + "POSITION":14857, + "NORMAL":14858, + "TEXCOORD_0":14859 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.7943", + "primitives":[ + { + "attributes":{ + "POSITION":14860, + "NORMAL":14861 + }, + "indices":14862, + "material":3 + } + ] + }, + { + "name":"Mesh.6826", + "primitives":[ + { + "attributes":{ + "POSITION":14863, + "NORMAL":14864, + "TEXCOORD_0":14865 + }, + "indices":7861, + "material":0 + } + ] + }, + { + "name":"Mesh.6684", + "primitives":[ + { + "attributes":{ + "POSITION":14866, + "NORMAL":14867 + }, + "indices":735, + "material":0 + } + ] + }, + { + "name":"Mesh.4942", + "primitives":[ + { + "attributes":{ + "POSITION":14868, + "NORMAL":14869, + "TEXCOORD_0":14870 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9111", + "primitives":[ + { + "attributes":{ + "POSITION":14871, + "NORMAL":14872, + "TEXCOORD_0":14873 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.633", + "primitives":[ + { + "attributes":{ + "POSITION":14874, + "NORMAL":14875, + "TEXCOORD_0":14876 + }, + "indices":8215, + "material":3 + } + ] + }, + { + "name":"Mesh.7563", + "primitives":[ + { + "attributes":{ + "POSITION":14877, + "NORMAL":14878 + }, + "indices":2954, + "material":3 + } + ] + }, + { + "name":"Mesh.6764", + "primitives":[ + { + "attributes":{ + "POSITION":14879, + "NORMAL":14880 + }, + "indices":1268, + "material":0 + } + ] + }, + { + "name":"Mesh.7258", + "primitives":[ + { + "attributes":{ + "POSITION":14881, + "NORMAL":14882, + "TEXCOORD_0":14883 + }, + "indices":14884, + "material":7 + } + ] + }, + { + "name":"Mesh.6245", + "primitives":[ + { + "attributes":{ + "POSITION":14885, + "NORMAL":14886, + "TEXCOORD_0":14887 + }, + "indices":30, + "material":5 + } + ] + }, + { + "name":"Mesh.6613", + "primitives":[ + { + "attributes":{ + "POSITION":14888, + "NORMAL":14889 + }, + "indices":11396, + "material":0 + } + ] + }, + { + "name":"Mesh.2197", + "primitives":[ + { + "attributes":{ + "POSITION":14890, + "NORMAL":14891, + "TEXCOORD_0":14892 + }, + "indices":10521, + "material":0 + } + ] + }, + { + "name":"Mesh.1894", + "primitives":[ + { + "attributes":{ + "POSITION":14893, + "NORMAL":14894 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.920", + "primitives":[ + { + "attributes":{ + "POSITION":14895, + "NORMAL":14896, + "TEXCOORD_0":14897 + }, + "indices":14898, + "material":3 + } + ] + }, + { + "name":"Mesh.8415", + "primitives":[ + { + "attributes":{ + "POSITION":14899, + "NORMAL":14900 + }, + "indices":92, + "material":3 + } + ] + }, + { + "name":"Mesh.8273", + "primitives":[ + { + "attributes":{ + "POSITION":14901, + "NORMAL":14902 + }, + "indices":824, + "material":3 + } + ] + }, + { + "name":"Mesh.129", + "primitives":[ + { + "attributes":{ + "POSITION":14903, + "NORMAL":14904, + "TEXCOORD_0":14905 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.6079", + "primitives":[ + { + "attributes":{ + "POSITION":14906, + "NORMAL":14907, + "TEXCOORD_0":14908 + }, + "indices":9639, + "material":11 + } + ] + }, + { + "name":"Mesh.6869", + "primitives":[ + { + "attributes":{ + "POSITION":14909, + "NORMAL":14910 + }, + "indices":14911, + "material":0 + } + ] + }, + { + "name":"Mesh.164", + "primitives":[ + { + "attributes":{ + "POSITION":14912, + "NORMAL":14913, + "TEXCOORD_0":14914 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.1711", + "primitives":[ + { + "attributes":{ + "POSITION":14915, + "NORMAL":14916, + "TEXCOORD_0":14917 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.006", + "primitives":[ + { + "attributes":{ + "POSITION":14918, + "NORMAL":14919, + "TEXCOORD_0":14920 + }, + "indices":14921, + "material":18 + } + ] + }, + { + "name":"Mesh.7288", + "primitives":[ + { + "attributes":{ + "POSITION":14922, + "NORMAL":14923, + "TEXCOORD_0":14924 + }, + "indices":14099, + "material":7 + } + ] + }, + { + "name":"Mesh.7858", + "primitives":[ + { + "attributes":{ + "POSITION":14925, + "NORMAL":14926 + }, + "indices":14927, + "material":3 + } + ] + }, + { + "name":"Mesh.8299", + "primitives":[ + { + "attributes":{ + "POSITION":14928, + "NORMAL":14929 + }, + "indices":7665, + "material":3 + } + ] + }, + { + "name":"Mesh.5272", + "primitives":[ + { + "attributes":{ + "POSITION":14930, + "NORMAL":14931, + "TEXCOORD_0":14932 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6765", + "primitives":[ + { + "attributes":{ + "POSITION":14933, + "NORMAL":14934 + }, + "indices":6639, + "material":0 + } + ] + }, + { + "name":"Mesh.7021", + "primitives":[ + { + "attributes":{ + "POSITION":14935, + "NORMAL":14936 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.6295", + "primitives":[ + { + "attributes":{ + "POSITION":14937, + "NORMAL":14938, + "TEXCOORD_0":14939 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.2463", + "primitives":[ + { + "attributes":{ + "POSITION":14940, + "NORMAL":14941, + "TEXCOORD_0":14942 + }, + "indices":313, + "material":4 + } + ] + }, + { + "name":"Mesh.6008", + "primitives":[ + { + "attributes":{ + "POSITION":14943, + "NORMAL":14944, + "TEXCOORD_0":14945 + }, + "indices":14946, + "material":33 + } + ] + }, + { + "name":"Mesh.1068", + "primitives":[ + { + "attributes":{ + "POSITION":14947, + "NORMAL":14948, + "TEXCOORD_0":14949 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.6184", + "primitives":[ + { + "attributes":{ + "POSITION":14950, + "NORMAL":14951, + "TEXCOORD_0":14952 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.7955", + "primitives":[ + { + "attributes":{ + "POSITION":14953, + "NORMAL":14954 + }, + "indices":14955, + "material":3 + } + ] + }, + { + "name":"Mesh.7804", + "primitives":[ + { + "attributes":{ + "POSITION":14956, + "NORMAL":14957 + }, + "indices":14958, + "material":3 + } + ] + }, + { + "name":"Mesh.4914", + "primitives":[ + { + "attributes":{ + "POSITION":14959, + "NORMAL":14960, + "TEXCOORD_0":14961 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.440", + "primitives":[ + { + "attributes":{ + "POSITION":14962, + "NORMAL":14963 + }, + "indices":6, + "material":0 + } + ] + }, + { + "name":"Mesh.5241", + "primitives":[ + { + "attributes":{ + "POSITION":14964, + "NORMAL":14965, + "TEXCOORD_0":14966 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8770", + "primitives":[ + { + "attributes":{ + "POSITION":14967, + "NORMAL":14968 + }, + "indices":6574, + "material":3 + } + ] + }, + { + "name":"Mesh.6148", + "primitives":[ + { + "attributes":{ + "POSITION":14969, + "NORMAL":14970, + "TEXCOORD_0":14971 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.7844", + "primitives":[ + { + "attributes":{ + "POSITION":14972, + "NORMAL":14973 + }, + "indices":14974, + "material":3 + } + ] + }, + { + "name":"Mesh.5426", + "primitives":[ + { + "attributes":{ + "POSITION":14975, + "NORMAL":14976, + "TEXCOORD_0":14977 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2854", + "primitives":[ + { + "attributes":{ + "POSITION":14978, + "NORMAL":14979 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.1681", + "primitives":[ + { + "attributes":{ + "POSITION":14980, + "NORMAL":14981, + "TEXCOORD_0":14982 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.7270", + "primitives":[ + { + "attributes":{ + "POSITION":14983, + "NORMAL":14984, + "TEXCOORD_0":14985 + }, + "indices":14986, + "material":7 + } + ] + }, + { + "name":"Mesh.6244", + "primitives":[ + { + "attributes":{ + "POSITION":14987, + "NORMAL":14988, + "TEXCOORD_0":14989 + }, + "indices":30, + "material":5 + } + ] + }, + { + "name":"Mesh.141", + "primitives":[ + { + "attributes":{ + "POSITION":14990, + "NORMAL":14991, + "TEXCOORD_0":14992 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5651", + "primitives":[ + { + "attributes":{ + "POSITION":14993, + "NORMAL":14994, + "TEXCOORD_0":14995 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2042", + "primitives":[ + { + "attributes":{ + "POSITION":14996, + "NORMAL":14997, + "TEXCOORD_0":14998 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.197", + "primitives":[ + { + "attributes":{ + "POSITION":14999, + "NORMAL":15000, + "TEXCOORD_0":15001 + }, + "indices":15002, + "material":0 + } + ] + }, + { + "name":"Mesh.8730", + "primitives":[ + { + "attributes":{ + "POSITION":15003, + "NORMAL":15004 + }, + "indices":13318, + "material":3 + } + ] + }, + { + "name":"Mesh.8862", + "primitives":[ + { + "attributes":{ + "POSITION":15005, + "NORMAL":15006 + }, + "indices":12656, + "material":3 + } + ] + }, + { + "name":"Mesh.2082", + "primitives":[ + { + "attributes":{ + "POSITION":15007, + "NORMAL":15008, + "TEXCOORD_0":15009 + }, + "indices":3185, + "material":3 + } + ] + }, + { + "name":"Mesh.5395", + "primitives":[ + { + "attributes":{ + "POSITION":15010, + "NORMAL":15011, + "TEXCOORD_0":15012 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1795", + "primitives":[ + { + "attributes":{ + "POSITION":15013, + "NORMAL":15014 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8563", + "primitives":[ + { + "attributes":{ + "POSITION":15015, + "NORMAL":15016 + }, + "indices":15017, + "material":3 + } + ] + }, + { + "name":"Mesh.6378", + "primitives":[ + { + "attributes":{ + "POSITION":15018, + "NORMAL":15019 + }, + "indices":15020, + "material":0 + } + ] + }, + { + "name":"Mesh.7097", + "primitives":[ + { + "attributes":{ + "POSITION":15021, + "NORMAL":15022, + "TEXCOORD_0":15023 + }, + "indices":15024, + "material":7 + } + ] + }, + { + "name":"Mesh.6452", + "primitives":[ + { + "attributes":{ + "POSITION":15025, + "NORMAL":15026, + "TEXCOORD_0":15027 + }, + "indices":1490, + "material":0 + } + ] + }, + { + "name":"Mesh.5469", + "primitives":[ + { + "attributes":{ + "POSITION":15028, + "NORMAL":15029, + "TEXCOORD_0":15030 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.901", + "primitives":[ + { + "attributes":{ + "POSITION":15031, + "NORMAL":15032, + "TEXCOORD_0":15033 + }, + "indices":15034, + "material":0 + } + ] + }, + { + "name":"Mesh.2475", + "primitives":[ + { + "attributes":{ + "POSITION":15035, + "NORMAL":15036, + "TEXCOORD_0":15037 + }, + "indices":10713, + "material":0 + } + ] + }, + { + "name":"Mesh.2793", + "primitives":[ + { + "attributes":{ + "POSITION":15038, + "NORMAL":15039, + "TEXCOORD_0":15040 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.8584", + "primitives":[ + { + "attributes":{ + "POSITION":15041, + "NORMAL":15042 + }, + "indices":3812, + "material":3 + } + ] + }, + { + "name":"Mesh.493", + "primitives":[ + { + "attributes":{ + "POSITION":15043, + "NORMAL":15044 + }, + "indices":557, + "material":17 + } + ] + }, + { + "name":"Mesh.6196", + "primitives":[ + { + "attributes":{ + "POSITION":15045, + "NORMAL":15046, + "TEXCOORD_0":15047 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.8281", + "primitives":[ + { + "attributes":{ + "POSITION":15048, + "NORMAL":15049 + }, + "indices":3962, + "material":3 + } + ] + }, + { + "name":"Mesh.7309", + "primitives":[ + { + "attributes":{ + "POSITION":15050, + "NORMAL":15051, + "TEXCOORD_0":15052 + }, + "indices":1396, + "material":7 + } + ] + }, + { + "name":"Mesh.8439", + "primitives":[ + { + "attributes":{ + "POSITION":15053, + "NORMAL":15054 + }, + "indices":15055, + "material":3 + } + ] + }, + { + "name":"Mesh.327", + "primitives":[ + { + "attributes":{ + "POSITION":15056, + "NORMAL":15057, + "TEXCOORD_0":15058 + }, + "indices":4568, + "material":0 + } + ] + }, + { + "name":"Mesh.2863", + "primitives":[ + { + "attributes":{ + "POSITION":15059, + "NORMAL":15060, + "TEXCOORD_0":15061 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.6421", + "primitives":[ + { + "attributes":{ + "POSITION":15062, + "NORMAL":15063 + }, + "indices":15064, + "material":0 + } + ] + }, + { + "name":"Mesh.6915", + "primitives":[ + { + "attributes":{ + "POSITION":15065, + "NORMAL":15066, + "TEXCOORD_0":15067 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.5438", + "primitives":[ + { + "attributes":{ + "POSITION":15068, + "NORMAL":15069, + "TEXCOORD_0":15070 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7418", + "primitives":[ + { + "attributes":{ + "POSITION":15071, + "NORMAL":15072, + "TEXCOORD_0":15073 + }, + "indices":3886, + "material":7 + } + ] + }, + { + "name":"Mesh.153", + "primitives":[ + { + "attributes":{ + "POSITION":15074, + "NORMAL":15075, + "TEXCOORD_0":15076 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.1190", + "primitives":[ + { + "attributes":{ + "POSITION":15077, + "NORMAL":15078 + }, + "indices":114, + "material":1 + } + ] + }, + { + "name":"Mesh.4855", + "primitives":[ + { + "attributes":{ + "POSITION":15079, + "NORMAL":15080, + "TEXCOORD_0":15081 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7973", + "primitives":[ + { + "attributes":{ + "POSITION":15082, + "NORMAL":15083, + "TEXCOORD_0":15084 + }, + "indices":15085, + "material":0 + } + ] + }, + { + "name":"Mesh.8907", + "primitives":[ + { + "attributes":{ + "POSITION":15086, + "NORMAL":15087, + "TEXCOORD_0":15088 + }, + "indices":2564, + "material":7 + } + ] + }, + { + "name":"Mesh.8453", + "primitives":[ + { + "attributes":{ + "POSITION":15089, + "NORMAL":15090 + }, + "indices":15091, + "material":3 + } + ] + }, + { + "name":"Mesh.7419", + "primitives":[ + { + "attributes":{ + "POSITION":15092, + "NORMAL":15093, + "TEXCOORD_0":15094 + }, + "indices":3535, + "material":7 + } + ] + }, + { + "name":"Mesh.6703", + "primitives":[ + { + "attributes":{ + "POSITION":15095, + "NORMAL":15096, + "TEXCOORD_0":15097 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.2986", + "primitives":[ + { + "attributes":{ + "POSITION":15098, + "NORMAL":15099, + "TEXCOORD_0":15100 + }, + "indices":15101, + "material":7 + } + ] + }, + { + "name":"Mesh.6239", + "primitives":[ + { + "attributes":{ + "POSITION":15102, + "NORMAL":15103, + "TEXCOORD_0":15104 + }, + "indices":8392, + "material":12 + } + ] + }, + { + "name":"Mesh.8146", + "primitives":[ + { + "attributes":{ + "POSITION":15105, + "NORMAL":15106 + }, + "indices":1617, + "material":3 + } + ] + }, + { + "name":"Mesh.7387", + "primitives":[ + { + "attributes":{ + "POSITION":15107, + "NORMAL":15108, + "TEXCOORD_0":15109 + }, + "indices":6265, + "material":7 + } + ] + }, + { + "name":"Mesh.7611", + "primitives":[ + { + "attributes":{ + "POSITION":15110, + "NORMAL":15111 + }, + "indices":15112, + "material":3 + } + ] + }, + { + "name":"Mesh.1696", + "primitives":[ + { + "attributes":{ + "POSITION":15113, + "NORMAL":15114, + "TEXCOORD_0":15115 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.5154", + "primitives":[ + { + "attributes":{ + "POSITION":15116, + "NORMAL":15117, + "TEXCOORD_0":15118 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8493", + "primitives":[ + { + "attributes":{ + "POSITION":15119, + "NORMAL":15120 + }, + "indices":4210, + "material":3 + } + ] + }, + { + "name":"Mesh.5481", + "primitives":[ + { + "attributes":{ + "POSITION":15121, + "NORMAL":15122, + "TEXCOORD_0":15123 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5171", + "primitives":[ + { + "attributes":{ + "POSITION":15124, + "NORMAL":15125, + "TEXCOORD_0":15126 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2663", + "primitives":[ + { + "attributes":{ + "POSITION":15127, + "NORMAL":15128, + "TEXCOORD_0":15129 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.8115", + "primitives":[ + { + "attributes":{ + "POSITION":15130, + "NORMAL":15131 + }, + "indices":7146, + "material":3 + } + ] + }, + { + "name":"Mesh.5370", + "primitives":[ + { + "attributes":{ + "POSITION":15132, + "NORMAL":15133, + "TEXCOORD_0":15134 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1103", + "primitives":[ + { + "attributes":{ + "POSITION":15135, + "NORMAL":15136, + "TEXCOORD_0":15137 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.651", + "primitives":[ + { + "attributes":{ + "POSITION":15138, + "NORMAL":15139, + "TEXCOORD_0":15140 + }, + "indices":985, + "material":3 + } + ] + }, + { + "name":"Mesh.8663", + "primitives":[ + { + "attributes":{ + "POSITION":15141, + "NORMAL":15142 + }, + "indices":8703, + "material":3 + } + ] + }, + { + "name":"Mesh.6334", + "primitives":[ + { + "attributes":{ + "POSITION":15143, + "NORMAL":15144 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.946", + "primitives":[ + { + "attributes":{ + "POSITION":15145, + "NORMAL":15146, + "TEXCOORD_0":15147 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.7532", + "primitives":[ + { + "attributes":{ + "POSITION":15148, + "NORMAL":15149 + }, + "indices":15150, + "material":3 + } + ] + }, + { + "name":"Mesh.2137", + "primitives":[ + { + "attributes":{ + "POSITION":15151, + "NORMAL":15152, + "TEXCOORD_0":15153 + }, + "indices":779, + "material":3 + } + ] + }, + { + "name":"Mesh.5595", + "primitives":[ + { + "attributes":{ + "POSITION":15154, + "NORMAL":15155, + "TEXCOORD_0":15156 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2441", + "primitives":[ + { + "attributes":{ + "POSITION":15157, + "NORMAL":15158, + "TEXCOORD_0":15159 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.2522", + "primitives":[ + { + "attributes":{ + "POSITION":15160, + "NORMAL":15161, + "TEXCOORD_0":15162 + }, + "indices":170, + "material":3 + } + ] + }, + { + "name":"Mesh.7717", + "primitives":[ + { + "attributes":{ + "POSITION":15163, + "NORMAL":15164 + }, + "indices":15165, + "material":3 + } + ] + }, + { + "name":"Mesh.1850", + "primitives":[ + { + "attributes":{ + "POSITION":15166, + "NORMAL":15167 + }, + "indices":2946, + "material":0 + } + ] + }, + { + "name":"Mesh.8259", + "primitives":[ + { + "attributes":{ + "POSITION":15168, + "NORMAL":15169 + }, + "indices":7053, + "material":3 + } + ] + }, + { + "name":"Mesh.6322", + "primitives":[ + { + "attributes":{ + "POSITION":15170, + "NORMAL":15171, + "TEXCOORD_0":15172 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.7942", + "primitives":[ + { + "attributes":{ + "POSITION":15173, + "NORMAL":15174 + }, + "indices":15175, + "material":3 + } + ] + }, + { + "name":"Mesh.6825", + "primitives":[ + { + "attributes":{ + "POSITION":15176, + "NORMAL":15177, + "TEXCOORD_0":15178 + }, + "indices":4270, + "material":0 + } + ] + }, + { + "name":"Mesh.8879", + "primitives":[ + { + "attributes":{ + "POSITION":15179, + "NORMAL":15180 + }, + "indices":15181, + "material":3 + } + ] + }, + { + "name":"Mesh.4941", + "primitives":[ + { + "attributes":{ + "POSITION":15182, + "NORMAL":15183, + "TEXCOORD_0":15184 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8993", + "primitives":[ + { + "attributes":{ + "POSITION":15185, + "NORMAL":15186, + "TEXCOORD_0":15187 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.6637", + "primitives":[ + { + "attributes":{ + "POSITION":15188, + "NORMAL":15189 + }, + "indices":12124, + "material":0 + } + ] + }, + { + "name":"Mesh.7016", + "primitives":[ + { + "attributes":{ + "POSITION":15190, + "NORMAL":15191 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.1021", + "primitives":[ + { + "attributes":{ + "POSITION":15192, + "NORMAL":15193, + "TEXCOORD_0":15194 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.4830", + "primitives":[ + { + "attributes":{ + "POSITION":15195, + "NORMAL":15196, + "TEXCOORD_0":15197 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2643", + "primitives":[ + { + "attributes":{ + "POSITION":15198, + "NORMAL":15199, + "TEXCOORD_0":15200 + }, + "indices":5756, + "material":4 + } + ] + }, + { + "name":"Mesh.734", + "primitives":[ + { + "attributes":{ + "POSITION":15201, + "NORMAL":15202, + "TEXCOORD_0":15203 + }, + "indices":12005, + "material":0 + } + ] + }, + { + "name":"Mesh.5493", + "primitives":[ + { + "attributes":{ + "POSITION":15204, + "NORMAL":15205, + "TEXCOORD_0":15206 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1893", + "primitives":[ + { + "attributes":{ + "POSITION":15207, + "NORMAL":15208 + }, + "indices":4042, + "material":0 + } + ] + }, + { + "name":"Mesh.8414", + "primitives":[ + { + "attributes":{ + "POSITION":15209, + "NORMAL":15210 + }, + "indices":15211, + "material":3 + } + ] + }, + { + "name":"Mesh.8272", + "primitives":[ + { + "attributes":{ + "POSITION":15212, + "NORMAL":15213 + }, + "indices":7129, + "material":3 + } + ] + }, + { + "name":"Mesh.128", + "primitives":[ + { + "attributes":{ + "POSITION":15214, + "NORMAL":15215, + "TEXCOORD_0":15216 + }, + "indices":15217, + "material":0 + } + ] + }, + { + "name":"Mesh.6078", + "primitives":[ + { + "attributes":{ + "POSITION":15218, + "NORMAL":15219, + "TEXCOORD_0":15220 + }, + "indices":5887, + "material":23 + } + ] + }, + { + "name":"Mesh.6368", + "primitives":[ + { + "attributes":{ + "POSITION":15221, + "NORMAL":15222 + }, + "indices":15223, + "material":0 + } + ] + }, + { + "name":"Mesh.8250", + "primitives":[ + { + "attributes":{ + "POSITION":15224, + "NORMAL":15225 + }, + "indices":1235, + "material":3 + } + ] + }, + { + "name":"Mesh.6868", + "primitives":[ + { + "attributes":{ + "POSITION":15226, + "NORMAL":15227 + }, + "indices":14911, + "material":0 + } + ] + }, + { + "name":"Mesh.5422", + "primitives":[ + { + "attributes":{ + "POSITION":15228, + "NORMAL":15229, + "TEXCOORD_0":15230 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5192", + "primitives":[ + { + "attributes":{ + "POSITION":15231, + "NORMAL":15232, + "TEXCOORD_0":15233 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5271", + "primitives":[ + { + "attributes":{ + "POSITION":15234, + "NORMAL":15235, + "TEXCOORD_0":15236 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.703", + "primitives":[ + { + "attributes":{ + "POSITION":15237, + "NORMAL":15238, + "TEXCOORD_0":15239 + }, + "indices":3189, + "material":0 + } + ] + }, + { + "name":"Mesh.7993", + "primitives":[ + { + "attributes":{ + "POSITION":15240, + "NORMAL":15241, + "TEXCOORD_0":15242 + }, + "indices":2838, + "material":0 + } + ] + }, + { + "name":"Mesh.6007", + "primitives":[ + { + "attributes":{ + "POSITION":15243, + "NORMAL":15244, + "TEXCOORD_0":15245 + }, + "indices":9639, + "material":11 + } + ] + }, + { + "name":"Mesh.1067", + "primitives":[ + { + "attributes":{ + "POSITION":15246, + "NORMAL":15247, + "TEXCOORD_0":15248 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.7155", + "primitives":[ + { + "attributes":{ + "POSITION":15249, + "NORMAL":15250, + "TEXCOORD_0":15251 + }, + "indices":15252, + "material":7 + } + ] + }, + { + "name":"Mesh.6183", + "primitives":[ + { + "attributes":{ + "POSITION":15253, + "NORMAL":15254, + "TEXCOORD_0":15255 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.9088", + "primitives":[ + { + "attributes":{ + "POSITION":15256, + "NORMAL":15257, + "TEXCOORD_0":15258 + }, + "indices":1966, + "material":7 + } + ] + }, + { + "name":"Mesh.2291", + "primitives":[ + { + "attributes":{ + "POSITION":15259, + "NORMAL":15260, + "TEXCOORD_0":15261 + }, + "indices":5261, + "material":0 + } + ] + }, + { + "name":"Mesh.8911", + "primitives":[ + { + "attributes":{ + "POSITION":15262, + "NORMAL":15263, + "TEXCOORD_0":15264 + }, + "indices":7215, + "material":7 + } + ] + }, + { + "name":"Mesh.559", + "primitives":[ + { + "attributes":{ + "POSITION":15265, + "NORMAL":15266, + "TEXCOORD_0":15267 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.402", + "primitives":[ + { + "attributes":{ + "POSITION":15268, + "NORMAL":15269 + }, + "indices":15270, + "material":22 + } + ] + }, + { + "name":"Mesh.607", + "primitives":[ + { + "attributes":{ + "POSITION":15271, + "NORMAL":15272, + "TEXCOORD_0":15273 + }, + "indices":15274, + "material":3 + } + ] + }, + { + "name":"Mesh.6672", + "primitives":[ + { + "attributes":{ + "POSITION":15275, + "NORMAL":15276 + }, + "indices":7704, + "material":0 + } + ] + }, + { + "name":"Mesh.7141", + "primitives":[ + { + "attributes":{ + "POSITION":15277, + "NORMAL":15278, + "TEXCOORD_0":15279 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.4913", + "primitives":[ + { + "attributes":{ + "POSITION":15280, + "NORMAL":15281, + "TEXCOORD_0":15282 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5240", + "primitives":[ + { + "attributes":{ + "POSITION":15283, + "NORMAL":15284, + "TEXCOORD_0":15285 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5675", + "primitives":[ + { + "attributes":{ + "POSITION":15286, + "NORMAL":15287, + "TEXCOORD_0":15288 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1150", + "primitives":[ + { + "attributes":{ + "POSITION":15289, + "NORMAL":15290, + "TEXCOORD_0":15291 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.5589", + "primitives":[ + { + "attributes":{ + "POSITION":15292, + "NORMAL":15293, + "TEXCOORD_0":15294 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7843", + "primitives":[ + { + "attributes":{ + "POSITION":15295, + "NORMAL":15296 + }, + "indices":15297, + "material":3 + } + ] + }, + { + "name":"Mesh.2844", + "primitives":[ + { + "attributes":{ + "POSITION":15298, + "NORMAL":15299 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.993", + "primitives":[ + { + "attributes":{ + "POSITION":15300, + "NORMAL":15301, + "TEXCOORD_0":15302 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.1680", + "primitives":[ + { + "attributes":{ + "POSITION":15303, + "NORMAL":15304, + "TEXCOORD_0":15305 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.5465", + "primitives":[ + { + "attributes":{ + "POSITION":15306, + "NORMAL":15307, + "TEXCOORD_0":15308 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6874", + "primitives":[ + { + "attributes":{ + "POSITION":15309, + "NORMAL":15310 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.5650", + "primitives":[ + { + "attributes":{ + "POSITION":15311, + "NORMAL":15312, + "TEXCOORD_0":15313 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7619", + "primitives":[ + { + "attributes":{ + "POSITION":15314, + "NORMAL":15315 + }, + "indices":15316, + "material":3 + } + ] + }, + { + "name":"Mesh.2193", + "primitives":[ + { + "attributes":{ + "POSITION":15317, + "NORMAL":15318, + "TEXCOORD_0":15319 + }, + "indices":6159, + "material":3 + } + ] + }, + { + "name":"Mesh.198", + "primitives":[ + { + "attributes":{ + "POSITION":15320, + "NORMAL":15321, + "TEXCOORD_0":15322 + }, + "indices":4231, + "material":0 + } + ] + }, + { + "name":"Mesh.6526", + "primitives":[ + { + "attributes":{ + "POSITION":15323, + "NORMAL":15324, + "TEXCOORD_0":15325 + }, + "indices":6449, + "material":0 + } + ] + }, + { + "name":"Mesh.1609", + "primitives":[ + { + "attributes":{ + "POSITION":15326, + "NORMAL":15327, + "TEXCOORD_0":15328 + }, + "indices":1890, + "material":6 + } + ] + }, + { + "name":"Mesh.635", + "primitives":[ + { + "attributes":{ + "POSITION":15329, + "NORMAL":15330, + "TEXCOORD_0":15331 + }, + "indices":5844, + "material":3 + } + ] + }, + { + "name":"Mesh.5394", + "primitives":[ + { + "attributes":{ + "POSITION":15332, + "NORMAL":15333, + "TEXCOORD_0":15334 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1794", + "primitives":[ + { + "attributes":{ + "POSITION":15335, + "NORMAL":15336 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.4811", + "primitives":[ + { + "attributes":{ + "POSITION":15337, + "NORMAL":15338, + "TEXCOORD_0":15339 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7096", + "primitives":[ + { + "attributes":{ + "POSITION":15340, + "NORMAL":15341, + "TEXCOORD_0":15342 + }, + "indices":15343, + "material":7 + } + ] + }, + { + "name":"Mesh.6451", + "primitives":[ + { + "attributes":{ + "POSITION":15344, + "NORMAL":15345, + "TEXCOORD_0":15346 + }, + "indices":15347, + "material":0 + } + ] + }, + { + "name":"Mesh.9123", + "primitives":[ + { + "attributes":{ + "POSITION":15348, + "NORMAL":15349, + "TEXCOORD_0":15350 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.900", + "primitives":[ + { + "attributes":{ + "POSITION":15351, + "NORMAL":15352, + "TEXCOORD_0":15353 + }, + "indices":14545, + "material":0 + } + ] + }, + { + "name":"Mesh.6164", + "primitives":[ + { + "attributes":{ + "POSITION":15354, + "NORMAL":15355, + "TEXCOORD_0":15356 + }, + "indices":927, + "material":12 + } + ] + }, + { + "name":"Mesh.2792", + "primitives":[ + { + "attributes":{ + "POSITION":15357, + "NORMAL":15358, + "TEXCOORD_0":15359 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.5576", + "primitives":[ + { + "attributes":{ + "POSITION":15360, + "NORMAL":15361, + "TEXCOORD_0":15362 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.4949", + "primitives":[ + { + "attributes":{ + "POSITION":15363, + "NORMAL":15364, + "TEXCOORD_0":15365 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6195", + "primitives":[ + { + "attributes":{ + "POSITION":15366, + "NORMAL":15367, + "TEXCOORD_0":15368 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.8438", + "primitives":[ + { + "attributes":{ + "POSITION":15369, + "NORMAL":15370 + }, + "indices":7310, + "material":3 + } + ] + }, + { + "name":"Mesh.328", + "primitives":[ + { + "attributes":{ + "POSITION":15371, + "NORMAL":15372, + "TEXCOORD_0":15373 + }, + "indices":15034, + "material":0 + } + ] + }, + { + "name":"Mesh.2862", + "primitives":[ + { + "attributes":{ + "POSITION":15374, + "NORMAL":15375, + "TEXCOORD_0":15376 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.1652", + "primitives":[ + { + "attributes":{ + "POSITION":15377, + "NORMAL":15378, + "TEXCOORD_0":15379 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.350", + "primitives":[ + { + "attributes":{ + "POSITION":15380, + "NORMAL":15381, + "TEXCOORD_0":15382 + }, + "indices":15383, + "material":0 + } + ] + }, + { + "name":"Mesh.5437", + "primitives":[ + { + "attributes":{ + "POSITION":15384, + "NORMAL":15385, + "TEXCOORD_0":15386 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2140", + "primitives":[ + { + "attributes":{ + "POSITION":15387, + "NORMAL":15388, + "TEXCOORD_0":15389 + }, + "indices":15390, + "material":3 + } + ] + }, + { + "name":"Mesh.2155", + "primitives":[ + { + "attributes":{ + "POSITION":15391, + "NORMAL":15392, + "TEXCOORD_0":15393 + }, + "indices":4531, + "material":0 + } + ] + }, + { + "name":"Mesh.7417", + "primitives":[ + { + "attributes":{ + "POSITION":15394, + "NORMAL":15395, + "TEXCOORD_0":15396 + }, + "indices":2653, + "material":7 + } + ] + }, + { + "name":"Mesh.1045", + "primitives":[ + { + "attributes":{ + "POSITION":15397, + "NORMAL":15398, + "TEXCOORD_0":15399 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.4854", + "primitives":[ + { + "attributes":{ + "POSITION":15400, + "NORMAL":15401, + "TEXCOORD_0":15402 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8570", + "primitives":[ + { + "attributes":{ + "POSITION":15403, + "NORMAL":15404 + }, + "indices":4065, + "material":3 + } + ] + }, + { + "name":"Mesh.8906", + "primitives":[ + { + "attributes":{ + "POSITION":15405, + "NORMAL":15406, + "TEXCOORD_0":15407 + }, + "indices":2891, + "material":7 + } + ] + }, + { + "name":"Mesh.2985", + "primitives":[ + { + "attributes":{ + "POSITION":15408, + "NORMAL":15409, + "TEXCOORD_0":15410 + }, + "indices":13327, + "material":7 + } + ] + }, + { + "name":"Mesh.8387", + "primitives":[ + { + "attributes":{ + "POSITION":15411, + "NORMAL":15412 + }, + "indices":8703, + "material":3 + } + ] + }, + { + "name":"Mesh.6238", + "primitives":[ + { + "attributes":{ + "POSITION":15413, + "NORMAL":15414, + "TEXCOORD_0":15415 + }, + "indices":7004, + "material":12 + } + ] + }, + { + "name":"Mesh.8933", + "primitives":[ + { + "attributes":{ + "POSITION":15416, + "NORMAL":15417, + "TEXCOORD_0":15418 + }, + "indices":59, + "material":7 + } + ] + }, + { + "name":"Mesh.7386", + "primitives":[ + { + "attributes":{ + "POSITION":15419, + "NORMAL":15420, + "TEXCOORD_0":15421 + }, + "indices":15422, + "material":7 + } + ] + }, + { + "name":"Mesh.2649", + "primitives":[ + { + "attributes":{ + "POSITION":15423, + "NORMAL":15424, + "TEXCOORD_0":15425 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.8185", + "primitives":[ + { + "attributes":{ + "POSITION":15426, + "NORMAL":15427 + }, + "indices":1081, + "material":3 + } + ] + }, + { + "name":"Mesh.6160", + "primitives":[ + { + "attributes":{ + "POSITION":15428, + "NORMAL":15429, + "TEXCOORD_0":15430 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.1149", + "primitives":[ + { + "attributes":{ + "POSITION":15431, + "NORMAL":15432, + "TEXCOORD_0":15433 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.6856", + "primitives":[ + { + "attributes":{ + "POSITION":15434, + "NORMAL":15435, + "TEXCOORD_0":15436 + }, + "indices":6353, + "material":0 + } + ] + }, + { + "name":"Mesh.1695", + "primitives":[ + { + "attributes":{ + "POSITION":15437, + "NORMAL":15438, + "TEXCOORD_0":15439 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.5480", + "primitives":[ + { + "attributes":{ + "POSITION":15440, + "NORMAL":15441, + "TEXCOORD_0":15442 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9047", + "primitives":[ + { + "attributes":{ + "POSITION":15443, + "NORMAL":15444, + "TEXCOORD_0":15445 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.2662", + "primitives":[ + { + "attributes":{ + "POSITION":15446, + "NORMAL":15447, + "TEXCOORD_0":15448 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.8114", + "primitives":[ + { + "attributes":{ + "POSITION":15449, + "NORMAL":15450 + }, + "indices":7550, + "material":3 + } + ] + }, + { + "name":"Mesh.1104", + "primitives":[ + { + "attributes":{ + "POSITION":15451, + "NORMAL":15452, + "TEXCOORD_0":15453 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.650", + "primitives":[ + { + "attributes":{ + "POSITION":15454, + "NORMAL":15455, + "TEXCOORD_0":15456 + }, + "indices":15457, + "material":3 + } + ] + }, + { + "name":"Mesh.4937", + "primitives":[ + { + "attributes":{ + "POSITION":15458, + "NORMAL":15459, + "TEXCOORD_0":15460 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8662", + "primitives":[ + { + "attributes":{ + "POSITION":15461, + "NORMAL":15462 + }, + "indices":4518, + "material":3 + } + ] + }, + { + "name":"Mesh.2431", + "primitives":[ + { + "attributes":{ + "POSITION":15463, + "NORMAL":15464, + "TEXCOORD_0":15465 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.1890", + "primitives":[ + { + "attributes":{ + "POSITION":15466, + "NORMAL":15467 + }, + "indices":5107, + "material":0 + } + ] + }, + { + "name":"Mesh.8121", + "primitives":[ + { + "attributes":{ + "POSITION":15468, + "NORMAL":15469 + }, + "indices":1482, + "material":3 + } + ] + }, + { + "name":"Mesh.4917", + "primitives":[ + { + "attributes":{ + "POSITION":15470, + "NORMAL":15471, + "TEXCOORD_0":15472 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2136", + "primitives":[ + { + "attributes":{ + "POSITION":15473, + "NORMAL":15474, + "TEXCOORD_0":15475 + }, + "indices":1108, + "material":3 + } + ] + }, + { + "name":"Mesh.7716", + "primitives":[ + { + "attributes":{ + "POSITION":15476, + "NORMAL":15477 + }, + "indices":15478, + "material":3 + } + ] + }, + { + "name":"Mesh.1849", + "primitives":[ + { + "attributes":{ + "POSITION":15479, + "NORMAL":15480 + }, + "indices":2946, + "material":0 + } + ] + }, + { + "name":"Mesh.5634", + "primitives":[ + { + "attributes":{ + "POSITION":15481, + "NORMAL":15482, + "TEXCOORD_0":15483 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1217", + "primitives":[ + { + "attributes":{ + "POSITION":15484, + "NORMAL":15485 + }, + "indices":114, + "material":1 + } + ] + }, + { + "name":"Mesh.6321", + "primitives":[ + { + "attributes":{ + "POSITION":15486, + "NORMAL":15487 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.8582", + "primitives":[ + { + "attributes":{ + "POSITION":15488, + "NORMAL":15489 + }, + "indices":194, + "material":3 + } + ] + }, + { + "name":"Mesh.1257", + "primitives":[ + { + "attributes":{ + "POSITION":15490, + "NORMAL":15491, + "TEXCOORD_0":15492 + }, + "indices":15493, + "material":15 + } + ] + }, + { + "name":"Mesh.7941", + "primitives":[ + { + "attributes":{ + "POSITION":15494, + "NORMAL":15495 + }, + "indices":15496, + "material":3 + } + ] + }, + { + "name":"Mesh.6824", + "primitives":[ + { + "attributes":{ + "POSITION":15497, + "NORMAL":15498, + "TEXCOORD_0":15499 + }, + "indices":5999, + "material":3 + } + ] + }, + { + "name":"Mesh.2997", + "primitives":[ + { + "attributes":{ + "POSITION":15500, + "NORMAL":15501, + "TEXCOORD_0":15502 + }, + "indices":15503, + "material":7 + } + ] + }, + { + "name":"Mesh.9143", + "primitives":[ + { + "attributes":{ + "POSITION":15504, + "NORMAL":15505, + "TEXCOORD_0":15506 + }, + "indices":2210, + "material":7 + } + ] + }, + { + "name":"Mesh.1255", + "primitives":[ + { + "attributes":{ + "POSITION":15507, + "NORMAL":15508, + "TEXCOORD_0":15509 + }, + "indices":359, + "material":74 + } + ] + }, + { + "name":"Mesh.8551", + "primitives":[ + { + "attributes":{ + "POSITION":15510, + "NORMAL":15511 + }, + "indices":15512, + "material":3 + } + ] + }, + { + "name":"Mesh.8200", + "primitives":[ + { + "attributes":{ + "POSITION":15513, + "NORMAL":15514 + }, + "indices":11958, + "material":3 + } + ] + }, + { + "name":"Mesh.4940", + "primitives":[ + { + "attributes":{ + "POSITION":15515, + "NORMAL":15516, + "TEXCOORD_0":15517 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5637", + "primitives":[ + { + "attributes":{ + "POSITION":15518, + "NORMAL":15519, + "TEXCOORD_0":15520 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.4878", + "primitives":[ + { + "attributes":{ + "POSITION":15521, + "NORMAL":15522, + "TEXCOORD_0":15523 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2306", + "primitives":[ + { + "attributes":{ + "POSITION":15524, + "NORMAL":15525, + "TEXCOORD_0":15526 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7398", + "primitives":[ + { + "attributes":{ + "POSITION":15527, + "NORMAL":15528, + "TEXCOORD_0":15529 + }, + "indices":7745, + "material":7 + } + ] + }, + { + "name":"Mesh.7256", + "primitives":[ + { + "attributes":{ + "POSITION":15530, + "NORMAL":15531, + "TEXCOORD_0":15532 + }, + "indices":15533, + "material":7 + } + ] + }, + { + "name":"Mesh.733", + "primitives":[ + { + "attributes":{ + "POSITION":15534, + "NORMAL":15535, + "TEXCOORD_0":15536 + }, + "indices":12325, + "material":0 + } + ] + }, + { + "name":"Mesh.341", + "primitives":[ + { + "attributes":{ + "POSITION":15537, + "NORMAL":15538, + "TEXCOORD_0":15539 + }, + "indices":5261, + "material":0 + } + ] + }, + { + "name":"Mesh.2782", + "primitives":[ + { + "attributes":{ + "POSITION":15540, + "NORMAL":15541, + "TEXCOORD_0":15542 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.1892", + "primitives":[ + { + "attributes":{ + "POSITION":15543, + "NORMAL":15544 + }, + "indices":2624, + "material":0 + } + ] + }, + { + "name":"Mesh.1202", + "primitives":[ + { + "attributes":{ + "POSITION":15545, + "NORMAL":15546 + }, + "indices":114, + "material":1 + } + ] + }, + { + "name":"Mesh.8413", + "primitives":[ + { + "attributes":{ + "POSITION":15547, + "NORMAL":15548 + }, + "indices":15549, + "material":3 + } + ] + }, + { + "name":"Mesh.1700", + "primitives":[ + { + "attributes":{ + "POSITION":15550, + "NORMAL":15551, + "TEXCOORD_0":15552 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.2454", + "primitives":[ + { + "attributes":{ + "POSITION":15553, + "NORMAL":15554, + "TEXCOORD_0":15555 + }, + "indices":4958, + "material":0 + } + ] + }, + { + "name":"Mesh.6274", + "primitives":[ + { + "attributes":{ + "POSITION":15556, + "NORMAL":15557, + "TEXCOORD_0":15558 + }, + "indices":2118, + "material":12 + } + ] + }, + { + "name":"Mesh.127", + "primitives":[ + { + "attributes":{ + "POSITION":15559, + "NORMAL":15560, + "TEXCOORD_0":15561 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8861", + "primitives":[ + { + "attributes":{ + "POSITION":15562, + "NORMAL":15563 + }, + "indices":13098, + "material":3 + } + ] + }, + { + "name":"Mesh.5143", + "primitives":[ + { + "attributes":{ + "POSITION":15564, + "NORMAL":15565, + "TEXCOORD_0":15566 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6867", + "primitives":[ + { + "attributes":{ + "POSITION":15567, + "NORMAL":15568 + }, + "indices":14911, + "material":0 + } + ] + }, + { + "name":"Mesh.2980", + "primitives":[ + { + "attributes":{ + "POSITION":15569, + "NORMAL":15570, + "TEXCOORD_0":15571 + }, + "indices":15572, + "material":7 + } + ] + }, + { + "name":"Mesh.200", + "primitives":[ + { + "attributes":{ + "POSITION":15573, + "NORMAL":15574, + "TEXCOORD_0":15575 + }, + "indices":4231, + "material":0 + } + ] + }, + { + "name":"Mesh.702", + "primitives":[ + { + "attributes":{ + "POSITION":15576, + "NORMAL":15577, + "TEXCOORD_0":15578 + }, + "indices":1818, + "material":0 + } + ] + }, + { + "name":"Mesh.2133", + "primitives":[ + { + "attributes":{ + "POSITION":15579, + "NORMAL":15580, + "TEXCOORD_0":15581 + }, + "indices":2160, + "material":3 + } + ] + }, + { + "name":"Mesh.6006", + "primitives":[ + { + "attributes":{ + "POSITION":15582, + "NORMAL":15583, + "TEXCOORD_0":15584 + }, + "indices":9639, + "material":11 + } + ] + }, + { + "name":"Mesh.8994", + "primitives":[ + { + "attributes":{ + "POSITION":15585, + "NORMAL":15586, + "TEXCOORD_0":15587 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.8064", + "primitives":[ + { + "attributes":{ + "POSITION":15588, + "NORMAL":15589, + "TEXCOORD_0":15590 + }, + "indices":2512, + "material":0 + } + ] + }, + { + "name":"Mesh.8532", + "primitives":[ + { + "attributes":{ + "POSITION":15591, + "NORMAL":15592 + }, + "indices":15593, + "material":3 + } + ] + }, + { + "name":"Mesh.2710", + "primitives":[ + { + "attributes":{ + "POSITION":15594, + "NORMAL":15595, + "TEXCOORD_0":15596 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.7617", + "primitives":[ + { + "attributes":{ + "POSITION":15597, + "NORMAL":15598 + }, + "indices":15599, + "material":3 + } + ] + }, + { + "name":"Mesh.5774", + "primitives":[ + { + "attributes":{ + "POSITION":15600, + "NORMAL":15601, + "TEXCOORD_0":15602 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.5999", + "primitives":[ + { + "attributes":{ + "POSITION":15603, + "NORMAL":15604, + "TEXCOORD_0":15605 + }, + "indices":615, + "material":20 + } + ] + }, + { + "name":"Mesh.7953", + "primitives":[ + { + "attributes":{ + "POSITION":15606, + "NORMAL":15607 + }, + "indices":15608, + "material":3 + } + ] + }, + { + "name":"Mesh.6794", + "primitives":[ + { + "attributes":{ + "POSITION":15609, + "NORMAL":15610, + "TEXCOORD_0":15611 + }, + "indices":15612, + "material":3 + } + ] + }, + { + "name":"Mesh.4912", + "primitives":[ + { + "attributes":{ + "POSITION":15613, + "NORMAL":15614, + "TEXCOORD_0":15615 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8545", + "primitives":[ + { + "attributes":{ + "POSITION":15616, + "NORMAL":15617 + }, + "indices":15618, + "material":3 + } + ] + }, + { + "name":"Mesh.5239", + "primitives":[ + { + "attributes":{ + "POSITION":15619, + "NORMAL":15620, + "TEXCOORD_0":15621 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5575", + "primitives":[ + { + "attributes":{ + "POSITION":15622, + "NORMAL":15623, + "TEXCOORD_0":15624 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7842", + "primitives":[ + { + "attributes":{ + "POSITION":15625, + "NORMAL":15626 + }, + "indices":10825, + "material":3 + } + ] + }, + { + "name":"Mesh.992", + "primitives":[ + { + "attributes":{ + "POSITION":15627, + "NORMAL":15628, + "TEXCOORD_0":15629 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.7092", + "primitives":[ + { + "attributes":{ + "POSITION":15630, + "NORMAL":15631 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.9199", + "primitives":[ + { + "attributes":{ + "POSITION":15632, + "NORMAL":15633, + "TEXCOORD_0":15634 + }, + "indices":9150, + "material":7 + } + ] + }, + { + "name":"Mesh.1679", + "primitives":[ + { + "attributes":{ + "POSITION":15635, + "NORMAL":15636, + "TEXCOORD_0":15637 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.7268", + "primitives":[ + { + "attributes":{ + "POSITION":15638, + "NORMAL":15639, + "TEXCOORD_0":15640 + }, + "indices":15641, + "material":7 + } + ] + }, + { + "name":"Mesh.1996", + "primitives":[ + { + "attributes":{ + "POSITION":15642, + "NORMAL":15643, + "TEXCOORD_0":15644 + }, + "indices":11987, + "material":0 + } + ] + }, + { + "name":"Mesh.2750", + "primitives":[ + { + "attributes":{ + "POSITION":15645, + "NORMAL":15646, + "TEXCOORD_0":15647 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.5649", + "primitives":[ + { + "attributes":{ + "POSITION":15648, + "NORMAL":15649, + "TEXCOORD_0":15650 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6300", + "primitives":[ + { + "attributes":{ + "POSITION":15651, + "NORMAL":15652, + "TEXCOORD_0":15653 + }, + "indices":1132, + "material":23 + } + ] + }, + { + "name":"Mesh.1608", + "primitives":[ + { + "attributes":{ + "POSITION":15654, + "NORMAL":15655 + }, + "indices":1182, + "material":17 + } + ] + }, + { + "name":"Mesh.2080", + "primitives":[ + { + "attributes":{ + "POSITION":15656, + "NORMAL":15657, + "TEXCOORD_0":15658 + }, + "indices":15274, + "material":3 + } + ] + }, + { + "name":"Mesh.5393", + "primitives":[ + { + "attributes":{ + "POSITION":15659, + "NORMAL":15660, + "TEXCOORD_0":15661 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1793", + "primitives":[ + { + "attributes":{ + "POSITION":15662, + "NORMAL":15663 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.4810", + "primitives":[ + { + "attributes":{ + "POSITION":15664, + "NORMAL":15665, + "TEXCOORD_0":15666 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7095", + "primitives":[ + { + "attributes":{ + "POSITION":15667, + "NORMAL":15668, + "TEXCOORD_0":15669 + }, + "indices":15670, + "material":7 + } + ] + }, + { + "name":"Mesh.6450", + "primitives":[ + { + "attributes":{ + "POSITION":15671, + "NORMAL":15672, + "TEXCOORD_0":15673 + }, + "indices":15674, + "material":0 + } + ] + }, + { + "name":"Mesh.2615", + "primitives":[ + { + "attributes":{ + "POSITION":15675, + "NORMAL":15676, + "TEXCOORD_0":15677 + }, + "indices":3431, + "material":30 + } + ] + }, + { + "name":"Mesh.899", + "primitives":[ + { + "attributes":{ + "POSITION":15678, + "NORMAL":15679, + "TEXCOORD_0":15680 + }, + "indices":15681, + "material":0 + } + ] + }, + { + "name":"Mesh.2473", + "primitives":[ + { + "attributes":{ + "POSITION":15682, + "NORMAL":15683, + "TEXCOORD_0":15684 + }, + "indices":1746, + "material":0 + } + ] + }, + { + "name":"Mesh.2791", + "primitives":[ + { + "attributes":{ + "POSITION":15685, + "NORMAL":15686, + "TEXCOORD_0":15687 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.6194", + "primitives":[ + { + "attributes":{ + "POSITION":15688, + "NORMAL":15689, + "TEXCOORD_0":15690 + }, + "indices":14946, + "material":33 + } + ] + }, + { + "name":"Mesh.8437", + "primitives":[ + { + "attributes":{ + "POSITION":15691, + "NORMAL":15692 + }, + "indices":15693, + "material":3 + } + ] + }, + { + "name":"Mesh.2861", + "primitives":[ + { + "attributes":{ + "POSITION":15694, + "NORMAL":15695 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8838", + "primitives":[ + { + "attributes":{ + "POSITION":15696, + "NORMAL":15697 + }, + "indices":6169, + "material":3 + } + ] + }, + { + "name":"Mesh.1651", + "primitives":[ + { + "attributes":{ + "POSITION":15698, + "NORMAL":15699, + "TEXCOORD_0":15700 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.6913", + "primitives":[ + { + "attributes":{ + "POSITION":15701, + "NORMAL":15702, + "TEXCOORD_0":15703 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.8046", + "primitives":[ + { + "attributes":{ + "POSITION":15704, + "NORMAL":15705, + "TEXCOORD_0":15706 + }, + "indices":5611, + "material":3 + } + ] + }, + { + "name":"Mesh.7512", + "primitives":[ + { + "attributes":{ + "POSITION":15707, + "NORMAL":15708 + }, + "indices":1204, + "material":3 + } + ] + }, + { + "name":"Mesh.7644", + "primitives":[ + { + "attributes":{ + "POSITION":15709, + "NORMAL":15710 + }, + "indices":11494, + "material":3 + } + ] + }, + { + "name":"Mesh.5436", + "primitives":[ + { + "attributes":{ + "POSITION":15711, + "NORMAL":15712, + "TEXCOORD_0":15713 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.579", + "primitives":[ + { + "attributes":{ + "POSITION":15714, + "NORMAL":15715, + "TEXCOORD_0":15716 + }, + "indices":8550, + "material":0 + } + ] + }, + { + "name":"Mesh.2154", + "primitives":[ + { + "attributes":{ + "POSITION":15717, + "NORMAL":15718, + "TEXCOORD_0":15719 + }, + "indices":15720, + "material":3 + } + ] + }, + { + "name":"Mesh.1044", + "primitives":[ + { + "attributes":{ + "POSITION":15721, + "NORMAL":15722, + "TEXCOORD_0":15723 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.4853", + "primitives":[ + { + "attributes":{ + "POSITION":15724, + "NORMAL":15725, + "TEXCOORD_0":15726 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8569", + "primitives":[ + { + "attributes":{ + "POSITION":15727, + "NORMAL":15728 + }, + "indices":5835, + "material":3 + } + ] + }, + { + "name":"Mesh.757", + "primitives":[ + { + "attributes":{ + "POSITION":15729, + "NORMAL":15730, + "TEXCOORD_0":15731 + }, + "indices":6459, + "material":0 + } + ] + }, + { + "name":"Mesh.8905", + "primitives":[ + { + "attributes":{ + "POSITION":15732, + "NORMAL":15733, + "TEXCOORD_0":15734 + }, + "indices":3608, + "material":7 + } + ] + }, + { + "name":"Mesh.5765", + "primitives":[ + { + "attributes":{ + "POSITION":15735, + "NORMAL":15736 + }, + "indices":9045, + "material":0 + } + ] + }, + { + "name":"Mesh.6237", + "primitives":[ + { + "attributes":{ + "POSITION":15737, + "NORMAL":15738, + "TEXCOORD_0":15739 + }, + "indices":321, + "material":12 + } + ] + }, + { + "name":"Mesh.1885", + "primitives":[ + { + "attributes":{ + "POSITION":15740, + "NORMAL":15741 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.6066", + "primitives":[ + { + "attributes":{ + "POSITION":15742, + "NORMAL":15743, + "TEXCOORD_0":15744 + }, + "indices":615, + "material":20 + } + ] + }, + { + "name":"Mesh.7385", + "primitives":[ + { + "attributes":{ + "POSITION":15745, + "NORMAL":15746, + "TEXCOORD_0":15747 + }, + "indices":6957, + "material":7 + } + ] + }, + { + "name":"Mesh.5742", + "primitives":[ + { + "attributes":{ + "POSITION":15748, + "NORMAL":15749 + }, + "indices":7227, + "material":0 + } + ] + }, + { + "name":"Mesh.8184", + "primitives":[ + { + "attributes":{ + "POSITION":15750, + "NORMAL":15751 + }, + "indices":10198, + "material":3 + } + ] + }, + { + "name":"Mesh.8583", + "primitives":[ + { + "attributes":{ + "POSITION":15752, + "NORMAL":15753 + }, + "indices":738, + "material":3 + } + ] + }, + { + "name":"Mesh.1864", + "primitives":[ + { + "attributes":{ + "POSITION":15754, + "NORMAL":15755 + }, + "indices":11580, + "material":0 + } + ] + }, + { + "name":"Mesh.7897", + "primitives":[ + { + "attributes":{ + "POSITION":15756, + "NORMAL":15757 + }, + "indices":15758, + "material":3 + } + ] + }, + { + "name":"Mesh.5479", + "primitives":[ + { + "attributes":{ + "POSITION":15759, + "NORMAL":15760, + "TEXCOORD_0":15761 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2661", + "primitives":[ + { + "attributes":{ + "POSITION":15762, + "NORMAL":15763, + "TEXCOORD_0":15764 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.1157", + "primitives":[ + { + "attributes":{ + "POSITION":15765, + "NORMAL":15766, + "TEXCOORD_0":15767 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.8113", + "primitives":[ + { + "attributes":{ + "POSITION":15768, + "NORMAL":15769 + }, + "indices":7926, + "material":3 + } + ] + }, + { + "name":"Mesh.1105", + "primitives":[ + { + "attributes":{ + "POSITION":15770, + "NORMAL":15771, + "TEXCOORD_0":15772 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.7631", + "primitives":[ + { + "attributes":{ + "POSITION":15773, + "NORMAL":15774 + }, + "indices":7665, + "material":3 + } + ] + }, + { + "name":"Mesh.8072", + "primitives":[ + { + "attributes":{ + "POSITION":15775, + "NORMAL":15776, + "TEXCOORD_0":15777 + }, + "indices":3924, + "material":3 + } + ] + }, + { + "name":"Mesh.6763", + "primitives":[ + { + "attributes":{ + "POSITION":15778, + "NORMAL":15779 + }, + "indices":373, + "material":0 + } + ] + }, + { + "name":"Mesh.8459", + "primitives":[ + { + "attributes":{ + "POSITION":15780, + "NORMAL":15781 + }, + "indices":15782, + "material":3 + } + ] + }, + { + "name":"Mesh.4936", + "primitives":[ + { + "attributes":{ + "POSITION":15783, + "NORMAL":15784, + "TEXCOORD_0":15785 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8661", + "primitives":[ + { + "attributes":{ + "POSITION":15786, + "NORMAL":15787 + }, + "indices":4876, + "material":3 + } + ] + }, + { + "name":"Mesh.5307", + "primitives":[ + { + "attributes":{ + "POSITION":15788, + "NORMAL":15789, + "TEXCOORD_0":15790 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2135", + "primitives":[ + { + "attributes":{ + "POSITION":15791, + "NORMAL":15792, + "TEXCOORD_0":15793 + }, + "indices":15794, + "material":3 + } + ] + }, + { + "name":"Mesh.7715", + "primitives":[ + { + "attributes":{ + "POSITION":15795, + "NORMAL":15796 + }, + "indices":15797, + "material":3 + } + ] + }, + { + "name":"Mesh.1848", + "primitives":[ + { + "attributes":{ + "POSITION":15798, + "NORMAL":15799 + }, + "indices":386, + "material":0 + } + ] + }, + { + "name":"Mesh.1216", + "primitives":[ + { + "attributes":{ + "POSITION":15800, + "NORMAL":15801 + }, + "indices":114, + "material":1 + } + ] + }, + { + "name":"Mesh.6320", + "primitives":[ + { + "attributes":{ + "POSITION":15802, + "NORMAL":15803, + "TEXCOORD_0":15804 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.4865", + "primitives":[ + { + "attributes":{ + "POSITION":15805, + "NORMAL":15806, + "TEXCOORD_0":15807 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8581", + "primitives":[ + { + "attributes":{ + "POSITION":15808, + "NORMAL":15809 + }, + "indices":15810, + "material":3 + } + ] + }, + { + "name":"Mesh.9135", + "primitives":[ + { + "attributes":{ + "POSITION":15811, + "NORMAL":15812, + "TEXCOORD_0":15813 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.7940", + "primitives":[ + { + "attributes":{ + "POSITION":15814, + "NORMAL":15815 + }, + "indices":15816, + "material":3 + } + ] + }, + { + "name":"Mesh.8634", + "primitives":[ + { + "attributes":{ + "POSITION":15817, + "NORMAL":15818 + }, + "indices":1382, + "material":3 + } + ] + }, + { + "name":"Mesh.6823", + "primitives":[ + { + "attributes":{ + "POSITION":15819, + "NORMAL":15820, + "TEXCOORD_0":15821 + }, + "indices":2975, + "material":0 + } + ] + }, + { + "name":"Mesh.2674", + "primitives":[ + { + "attributes":{ + "POSITION":15822, + "NORMAL":15823, + "TEXCOORD_0":15824 + }, + "indices":3, + "material":4 + } + ] + }, + { + "name":"Mesh.6957", + "primitives":[ + { + "attributes":{ + "POSITION":15825, + "NORMAL":15826 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.2996", + "primitives":[ + { + "attributes":{ + "POSITION":15827, + "NORMAL":15828, + "TEXCOORD_0":15829 + }, + "indices":15830, + "material":7 + } + ] + }, + { + "name":"Mesh.5090", + "primitives":[ + { + "attributes":{ + "POSITION":15831, + "NORMAL":15832, + "TEXCOORD_0":15833 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2658", + "primitives":[ + { + "attributes":{ + "POSITION":15834, + "NORMAL":15835, + "TEXCOORD_0":15836 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.7684", + "primitives":[ + { + "attributes":{ + "POSITION":15837, + "NORMAL":15838 + }, + "indices":4853, + "material":3 + } + ] + }, + { + "name":"Mesh.4939", + "primitives":[ + { + "attributes":{ + "POSITION":15839, + "NORMAL":15840, + "TEXCOORD_0":15841 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5535", + "primitives":[ + { + "attributes":{ + "POSITION":15842, + "NORMAL":15843, + "TEXCOORD_0":15844 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2305", + "primitives":[ + { + "attributes":{ + "POSITION":15845, + "NORMAL":15846, + "TEXCOORD_0":15847 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7397", + "primitives":[ + { + "attributes":{ + "POSITION":15848, + "NORMAL":15849, + "TEXCOORD_0":15850 + }, + "indices":525, + "material":7 + } + ] + }, + { + "name":"Mesh.1019", + "primitives":[ + { + "attributes":{ + "POSITION":15851, + "NORMAL":15852, + "TEXCOORD_0":15853 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.5306", + "primitives":[ + { + "attributes":{ + "POSITION":15854, + "NORMAL":15855, + "TEXCOORD_0":15856 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2194", + "primitives":[ + { + "attributes":{ + "POSITION":15857, + "NORMAL":15858, + "TEXCOORD_0":15859 + }, + "indices":708, + "material":0 + } + ] + }, + { + "name":"Mesh.5491", + "primitives":[ + { + "attributes":{ + "POSITION":15860, + "NORMAL":15861, + "TEXCOORD_0":15862 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1891", + "primitives":[ + { + "attributes":{ + "POSITION":15863, + "NORMAL":15864 + }, + "indices":2624, + "material":0 + } + ] + }, + { + "name":"Mesh.7930", + "primitives":[ + { + "attributes":{ + "POSITION":15865, + "NORMAL":15866 + }, + "indices":15867, + "material":3 + } + ] + }, + { + "name":"Mesh.8371", + "primitives":[ + { + "attributes":{ + "POSITION":15868, + "NORMAL":15869 + }, + "indices":1388, + "material":3 + } + ] + }, + { + "name":"Mesh.7174", + "primitives":[ + { + "attributes":{ + "POSITION":15870, + "NORMAL":15871, + "TEXCOORD_0":15872 + }, + "indices":15873, + "material":7 + } + ] + }, + { + "name":"Mesh.8412", + "primitives":[ + { + "attributes":{ + "POSITION":15874, + "NORMAL":15875 + }, + "indices":15876, + "material":3 + } + ] + }, + { + "name":"Mesh.6612", + "primitives":[ + { + "attributes":{ + "POSITION":15877, + "NORMAL":15878 + }, + "indices":7468, + "material":0 + } + ] + }, + { + "name":"Mesh.748", + "primitives":[ + { + "attributes":{ + "POSITION":15879, + "NORMAL":15880, + "TEXCOORD_0":15881 + }, + "indices":5261, + "material":0 + } + ] + }, + { + "name":"Mesh.1102", + "primitives":[ + { + "attributes":{ + "POSITION":15882, + "NORMAL":15883, + "TEXCOORD_0":15884 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.126", + "primitives":[ + { + "attributes":{ + "POSITION":15885, + "NORMAL":15886, + "TEXCOORD_0":15887 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.6076", + "primitives":[ + { + "attributes":{ + "POSITION":15888, + "NORMAL":15889, + "TEXCOORD_0":15890 + }, + "indices":9545, + "material":11 + } + ] + }, + { + "name":"Mesh.6866", + "primitives":[ + { + "attributes":{ + "POSITION":15891, + "NORMAL":15892 + }, + "indices":14911, + "material":0 + } + ] + }, + { + "name":"Mesh.5420", + "primitives":[ + { + "attributes":{ + "POSITION":15893, + "NORMAL":15894, + "TEXCOORD_0":15895 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.701", + "primitives":[ + { + "attributes":{ + "POSITION":15896, + "NORMAL":15897, + "TEXCOORD_0":15898 + }, + "indices":1128, + "material":0 + } + ] + }, + { + "name":"Mesh.7727", + "primitives":[ + { + "attributes":{ + "POSITION":15899, + "NORMAL":15900 + }, + "indices":15901, + "material":3 + } + ] + }, + { + "name":"Mesh.8846", + "primitives":[ + { + "attributes":{ + "POSITION":15902, + "NORMAL":15903 + }, + "indices":4065, + "material":3 + } + ] + }, + { + "name":"Mesh.8186", + "primitives":[ + { + "attributes":{ + "POSITION":15904, + "NORMAL":15905 + }, + "indices":4954, + "material":3 + } + ] + }, + { + "name":"Mesh.6005", + "primitives":[ + { + "attributes":{ + "POSITION":15906, + "NORMAL":15907, + "TEXCOORD_0":15908 + }, + "indices":9639, + "material":11 + } + ] + }, + { + "name":"Mesh.7661", + "primitives":[ + { + "attributes":{ + "POSITION":15909, + "NORMAL":15910 + }, + "indices":11696, + "material":3 + } + ] + }, + { + "name":"Mesh.8318", + "primitives":[ + { + "attributes":{ + "POSITION":15911, + "NORMAL":15912 + }, + "indices":4006, + "material":3 + } + ] + }, + { + "name":"Mesh.7767", + "primitives":[ + { + "attributes":{ + "POSITION":15913, + "NORMAL":15914 + }, + "indices":15915, + "material":3 + } + ] + }, + { + "name":"Mesh.157", + "primitives":[ + { + "attributes":{ + "POSITION":15916, + "NORMAL":15917, + "TEXCOORD_0":15918 + }, + "indices":2061, + "material":0 + } + ] + }, + { + "name":"Mesh.7616", + "primitives":[ + { + "attributes":{ + "POSITION":15919, + "NORMAL":15920 + }, + "indices":15921, + "material":3 + } + ] + }, + { + "name":"Mesh.6835", + "primitives":[ + { + "attributes":{ + "POSITION":15922, + "NORMAL":15923, + "TEXCOORD_0":15924 + }, + "indices":2708, + "material":3 + } + ] + }, + { + "name":"Mesh.4911", + "primitives":[ + { + "attributes":{ + "POSITION":15925, + "NORMAL":15926, + "TEXCOORD_0":15927 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1809", + "primitives":[ + { + "attributes":{ + "POSITION":15928, + "NORMAL":15929, + "TEXCOORD_0":15930 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.5238", + "primitives":[ + { + "attributes":{ + "POSITION":15931, + "NORMAL":15932, + "TEXCOORD_0":15933 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1148", + "primitives":[ + { + "attributes":{ + "POSITION":15934, + "NORMAL":15935, + "TEXCOORD_0":15936 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.7841", + "primitives":[ + { + "attributes":{ + "POSITION":15937, + "NORMAL":15938 + }, + "indices":15939, + "material":3 + } + ] + }, + { + "name":"Mesh.8171", + "primitives":[ + { + "attributes":{ + "POSITION":15940, + "NORMAL":15941 + }, + "indices":6766, + "material":3 + } + ] + }, + { + "name":"Mesh.221", + "primitives":[ + { + "attributes":{ + "POSITION":15942, + "NORMAL":15943, + "TEXCOORD_0":15944 + }, + "indices":15945, + "material":3 + } + ] + }, + { + "name":"Mesh.8568", + "primitives":[ + { + "attributes":{ + "POSITION":15946, + "NORMAL":15947 + }, + "indices":15948, + "material":3 + } + ] + }, + { + "name":"Mesh.1678", + "primitives":[ + { + "attributes":{ + "POSITION":15949, + "NORMAL":15950, + "TEXCOORD_0":15951 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.6035", + "primitives":[ + { + "attributes":{ + "POSITION":15952, + "NORMAL":15953, + "TEXCOORD_0":15954 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.2740", + "primitives":[ + { + "attributes":{ + "POSITION":15955, + "NORMAL":15956, + "TEXCOORD_0":15957 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.6939", + "primitives":[ + { + "attributes":{ + "POSITION":15958, + "NORMAL":15959 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.5463", + "primitives":[ + { + "attributes":{ + "POSITION":15960, + "NORMAL":15961, + "TEXCOORD_0":15962 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6383", + "primitives":[ + { + "attributes":{ + "POSITION":15963, + "NORMAL":15964 + }, + "indices":15965, + "material":0 + } + ] + }, + { + "name":"Mesh.7071", + "primitives":[ + { + "attributes":{ + "POSITION":15966, + "NORMAL":15967, + "TEXCOORD_0":15968 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.8747", + "primitives":[ + { + "attributes":{ + "POSITION":15969, + "NORMAL":15970 + }, + "indices":14487, + "material":3 + } + ] + }, + { + "name":"Mesh.2246", + "primitives":[ + { + "attributes":{ + "POSITION":15971, + "NORMAL":15972, + "TEXCOORD_0":15973 + }, + "indices":639, + "material":0 + } + ] + }, + { + "name":"Mesh.1607", + "primitives":[ + { + "attributes":{ + "POSITION":15974, + "NORMAL":15975 + }, + "indices":557, + "material":17 + } + ] + }, + { + "name":"Mesh.2079", + "primitives":[ + { + "attributes":{ + "POSITION":15976, + "NORMAL":15977, + "TEXCOORD_0":15978 + }, + "indices":15979, + "material":3 + } + ] + }, + { + "name":"Mesh.5392", + "primitives":[ + { + "attributes":{ + "POSITION":15980, + "NORMAL":15981, + "TEXCOORD_0":15982 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6088", + "primitives":[ + { + "attributes":{ + "POSITION":15983, + "NORMAL":15984, + "TEXCOORD_0":15985 + }, + "indices":2118, + "material":12 + } + ] + }, + { + "name":"Mesh.1792", + "primitives":[ + { + "attributes":{ + "POSITION":15986, + "NORMAL":15987 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8971", + "primitives":[ + { + "attributes":{ + "POSITION":15988, + "NORMAL":15989, + "TEXCOORD_0":15990 + }, + "indices":9491, + "material":7 + } + ] + }, + { + "name":"Mesh.2169", + "primitives":[ + { + "attributes":{ + "POSITION":15991, + "NORMAL":15992, + "TEXCOORD_0":15993 + }, + "indices":15994, + "material":0 + } + ] + }, + { + "name":"Mesh.9019", + "primitives":[ + { + "attributes":{ + "POSITION":15995, + "NORMAL":15996, + "TEXCOORD_0":15997 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.4809", + "primitives":[ + { + "attributes":{ + "POSITION":15998, + "NORMAL":15999, + "TEXCOORD_0":16000 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7094", + "primitives":[ + { + "attributes":{ + "POSITION":16001, + "NORMAL":16002 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.271", + "primitives":[ + { + "attributes":{ + "POSITION":16003, + "NORMAL":16004, + "TEXCOORD_0":16005 + }, + "indices":16006, + "material":3 + } + ] + }, + { + "name":"Mesh.2614", + "primitives":[ + { + "attributes":{ + "POSITION":16007, + "NORMAL":16008, + "TEXCOORD_0":16009 + }, + "indices":2307, + "material":0 + } + ] + }, + { + "name":"Mesh.898", + "primitives":[ + { + "attributes":{ + "POSITION":16010, + "NORMAL":16011, + "TEXCOORD_0":16012 + }, + "indices":2842, + "material":0 + } + ] + }, + { + "name":"Mesh.6162", + "primitives":[ + { + "attributes":{ + "POSITION":16013, + "NORMAL":16014, + "TEXCOORD_0":16015 + }, + "indices":2118, + "material":12 + } + ] + }, + { + "name":"Mesh.2790", + "primitives":[ + { + "attributes":{ + "POSITION":16016, + "NORMAL":16017, + "TEXCOORD_0":16018 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.7628", + "primitives":[ + { + "attributes":{ + "POSITION":16019, + "NORMAL":16020 + }, + "indices":5800, + "material":3 + } + ] + }, + { + "name":"Mesh.8436", + "primitives":[ + { + "attributes":{ + "POSITION":16021, + "NORMAL":16022 + }, + "indices":4505, + "material":3 + } + ] + }, + { + "name":"Mesh.329", + "primitives":[ + { + "attributes":{ + "POSITION":16023, + "NORMAL":16024, + "TEXCOORD_0":16025 + }, + "indices":14545, + "material":0 + } + ] + }, + { + "name":"Mesh.512", + "primitives":[ + { + "attributes":{ + "POSITION":16026, + "NORMAL":16027, + "TEXCOORD_0":16028 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2775", + "primitives":[ + { + "attributes":{ + "POSITION":16029, + "NORMAL":16030, + "TEXCOORD_0":16031 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.2860", + "primitives":[ + { + "attributes":{ + "POSITION":16032, + "NORMAL":16033 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.2682", + "primitives":[ + { + "attributes":{ + "POSITION":16034, + "NORMAL":16035, + "TEXCOORD_0":16036 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.1650", + "primitives":[ + { + "attributes":{ + "POSITION":16037, + "NORMAL":16038, + "TEXCOORD_0":16039 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.7259", + "primitives":[ + { + "attributes":{ + "POSITION":16040, + "NORMAL":16041, + "TEXCOORD_0":16042 + }, + "indices":16043, + "material":7 + } + ] + }, + { + "name":"Mesh.5435", + "primitives":[ + { + "attributes":{ + "POSITION":16044, + "NORMAL":16045, + "TEXCOORD_0":16046 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5644", + "primitives":[ + { + "attributes":{ + "POSITION":16047, + "NORMAL":16048, + "TEXCOORD_0":16049 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2153", + "primitives":[ + { + "attributes":{ + "POSITION":16050, + "NORMAL":16051, + "TEXCOORD_0":16052 + }, + "indices":4531, + "material":0 + } + ] + }, + { + "name":"Mesh.1043", + "primitives":[ + { + "attributes":{ + "POSITION":16053, + "NORMAL":16054, + "TEXCOORD_0":16055 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.8069", + "primitives":[ + { + "attributes":{ + "POSITION":16056, + "NORMAL":16057, + "TEXCOORD_0":16058 + }, + "indices":5807, + "material":3 + } + ] + }, + { + "name":"Mesh.756", + "primitives":[ + { + "attributes":{ + "POSITION":16059, + "NORMAL":16060, + "TEXCOORD_0":16061 + }, + "indices":6459, + "material":0 + } + ] + }, + { + "name":"Mesh.8904", + "primitives":[ + { + "attributes":{ + "POSITION":16062, + "NORMAL":16063 + }, + "indices":4853, + "material":3 + } + ] + }, + { + "name":"Mesh.1048", + "primitives":[ + { + "attributes":{ + "POSITION":16064, + "NORMAL":16065, + "TEXCOORD_0":16066 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.8550", + "primitives":[ + { + "attributes":{ + "POSITION":16067, + "NORMAL":16068 + }, + "indices":16069, + "material":3 + } + ] + }, + { + "name":"Mesh.8775", + "primitives":[ + { + "attributes":{ + "POSITION":16070, + "NORMAL":16071 + }, + "indices":9347, + "material":3 + } + ] + }, + { + "name":"Mesh.8823", + "primitives":[ + { + "attributes":{ + "POSITION":16072, + "NORMAL":16073 + }, + "indices":4721, + "material":3 + } + ] + }, + { + "name":"Mesh.6258", + "primitives":[ + { + "attributes":{ + "POSITION":16074, + "NORMAL":16075, + "TEXCOORD_0":16076 + }, + "indices":615, + "material":20 + } + ] + }, + { + "name":"Mesh.7899", + "primitives":[ + { + "attributes":{ + "POSITION":16077, + "NORMAL":16078 + }, + "indices":16079, + "material":3 + } + ] + }, + { + "name":"Mesh.8124", + "primitives":[ + { + "attributes":{ + "POSITION":16080, + "NORMAL":16081 + }, + "indices":9361, + "material":3 + } + ] + }, + { + "name":"Mesh.5693", + "primitives":[ + { + "attributes":{ + "POSITION":16082, + "NORMAL":16083, + "TEXCOORD_0":16084 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5764", + "primitives":[ + { + "attributes":{ + "POSITION":16085, + "NORMAL":16086 + }, + "indices":9433, + "material":0 + } + ] + }, + { + "name":"Mesh.6960", + "primitives":[ + { + "attributes":{ + "POSITION":16087, + "NORMAL":16088 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.6912", + "primitives":[ + { + "attributes":{ + "POSITION":16089, + "NORMAL":16090 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.7384", + "primitives":[ + { + "attributes":{ + "POSITION":16091, + "NORMAL":16092, + "TEXCOORD_0":16093 + }, + "indices":7683, + "material":7 + } + ] + }, + { + "name":"Mesh.6297", + "primitives":[ + { + "attributes":{ + "POSITION":16094, + "NORMAL":16095, + "TEXCOORD_0":16096 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.8183", + "primitives":[ + { + "attributes":{ + "POSITION":16097, + "NORMAL":16098 + }, + "indices":11740, + "material":3 + } + ] + }, + { + "name":"Mesh.1693", + "primitives":[ + { + "attributes":{ + "POSITION":16099, + "NORMAL":16100, + "TEXCOORD_0":16101 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.5478", + "primitives":[ + { + "attributes":{ + "POSITION":16102, + "NORMAL":16103, + "TEXCOORD_0":16104 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5333", + "primitives":[ + { + "attributes":{ + "POSITION":16105, + "NORMAL":16106, + "TEXCOORD_0":16107 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.700", + "primitives":[ + { + "attributes":{ + "POSITION":16108, + "NORMAL":16109, + "TEXCOORD_0":16110 + }, + "indices":1818, + "material":0 + } + ] + }, + { + "name":"Mesh.2372", + "primitives":[ + { + "attributes":{ + "POSITION":16111, + "NORMAL":16112, + "TEXCOORD_0":16113 + }, + "indices":1528, + "material":0 + } + ] + }, + { + "name":"Mesh.1606", + "primitives":[ + { + "attributes":{ + "POSITION":16114, + "NORMAL":16115 + }, + "indices":557, + "material":17 + } + ] + }, + { + "name":"Mesh.8194", + "primitives":[ + { + "attributes":{ + "POSITION":16116, + "NORMAL":16117 + }, + "indices":16118, + "material":3 + } + ] + }, + { + "name":"Mesh.8112", + "primitives":[ + { + "attributes":{ + "POSITION":16119, + "NORMAL":16120 + }, + "indices":5443, + "material":3 + } + ] + }, + { + "name":"Mesh.354", + "primitives":[ + { + "attributes":{ + "POSITION":16121, + "NORMAL":16122, + "TEXCOORD_0":16123 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.1106", + "primitives":[ + { + "attributes":{ + "POSITION":16124, + "NORMAL":16125, + "TEXCOORD_0":16126 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.6063", + "primitives":[ + { + "attributes":{ + "POSITION":16127, + "NORMAL":16128, + "TEXCOORD_0":16129 + }, + "indices":30, + "material":5 + } + ] + }, + { + "name":"Mesh.086", + "primitives":[ + { + "attributes":{ + "POSITION":16130, + "NORMAL":16131, + "TEXCOORD_0":16132 + }, + "indices":1303, + "material":7 + } + ] + }, + { + "name":"Mesh.4935", + "primitives":[ + { + "attributes":{ + "POSITION":16133, + "NORMAL":16134, + "TEXCOORD_0":16135 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8660", + "primitives":[ + { + "attributes":{ + "POSITION":16136, + "NORMAL":16137 + }, + "indices":5224, + "material":3 + } + ] + }, + { + "name":"Mesh.7529", + "primitives":[ + { + "attributes":{ + "POSITION":16138, + "NORMAL":16139 + }, + "indices":16140, + "material":3 + } + ] + }, + { + "name":"Mesh.2134", + "primitives":[ + { + "attributes":{ + "POSITION":16141, + "NORMAL":16142, + "TEXCOORD_0":16143 + }, + "indices":16144, + "material":3 + } + ] + }, + { + "name":"Mesh.7714", + "primitives":[ + { + "attributes":{ + "POSITION":16145, + "NORMAL":16146 + }, + "indices":16147, + "material":3 + } + ] + }, + { + "name":"Mesh.4906", + "primitives":[ + { + "attributes":{ + "POSITION":16148, + "NORMAL":16149, + "TEXCOORD_0":16150 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1847", + "primitives":[ + { + "attributes":{ + "POSITION":16151, + "NORMAL":16152 + }, + "indices":65, + "material":8 + } + ] + }, + { + "name":"Mesh.1215", + "primitives":[ + { + "attributes":{ + "POSITION":16153, + "NORMAL":16154 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.6319", + "primitives":[ + { + "attributes":{ + "POSITION":16155, + "NORMAL":16156, + "TEXCOORD_0":16157 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.7709", + "primitives":[ + { + "attributes":{ + "POSITION":16158, + "NORMAL":16159 + }, + "indices":16160, + "material":3 + } + ] + }, + { + "name":"Mesh.4864", + "primitives":[ + { + "attributes":{ + "POSITION":16161, + "NORMAL":16162, + "TEXCOORD_0":16163 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8580", + "primitives":[ + { + "attributes":{ + "POSITION":16164, + "NORMAL":16165 + }, + "indices":16166, + "material":3 + } + ] + }, + { + "name":"Mesh.115", + "primitives":[ + { + "attributes":{ + "POSITION":16167, + "NORMAL":16168, + "TEXCOORD_0":16169 + }, + "indices":16170, + "material":0 + } + ] + }, + { + "name":"Mesh.2580", + "primitives":[ + { + "attributes":{ + "POSITION":16171, + "NORMAL":16172, + "TEXCOORD_0":16173 + }, + "indices":1315, + "material":0 + } + ] + }, + { + "name":"Mesh.6032", + "primitives":[ + { + "attributes":{ + "POSITION":16174, + "NORMAL":16175, + "TEXCOORD_0":16176 + }, + "indices":187, + "material":5 + } + ] + }, + { + "name":"Mesh.7939", + "primitives":[ + { + "attributes":{ + "POSITION":16177, + "NORMAL":16178 + }, + "indices":16179, + "material":3 + } + ] + }, + { + "name":"Mesh.5728", + "primitives":[ + { + "attributes":{ + "POSITION":16180, + "NORMAL":16181 + }, + "indices":7259, + "material":0 + } + ] + }, + { + "name":"Mesh.1626", + "primitives":[ + { + "attributes":{ + "POSITION":16182, + "NORMAL":16183, + "TEXCOORD_0":16184 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.6822", + "primitives":[ + { + "attributes":{ + "POSITION":16185, + "NORMAL":16186, + "TEXCOORD_0":16187 + }, + "indices":2708, + "material":3 + } + ] + }, + { + "name":"Mesh.2995", + "primitives":[ + { + "attributes":{ + "POSITION":16188, + "NORMAL":16189, + "TEXCOORD_0":16190 + }, + "indices":12558, + "material":7 + } + ] + }, + { + "name":"Mesh.5089", + "primitives":[ + { + "attributes":{ + "POSITION":16191, + "NORMAL":16192, + "TEXCOORD_0":16193 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7683", + "primitives":[ + { + "attributes":{ + "POSITION":16194, + "NORMAL":16195 + }, + "indices":9297, + "material":3 + } + ] + }, + { + "name":"Mesh.4938", + "primitives":[ + { + "attributes":{ + "POSITION":16196, + "NORMAL":16197, + "TEXCOORD_0":16198 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2304", + "primitives":[ + { + "attributes":{ + "POSITION":16199, + "NORMAL":16200, + "TEXCOORD_0":16201 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7396", + "primitives":[ + { + "attributes":{ + "POSITION":16202, + "NORMAL":16203, + "TEXCOORD_0":16204 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.6760", + "primitives":[ + { + "attributes":{ + "POSITION":16205, + "NORMAL":16206 + }, + "indices":6926, + "material":0 + } + ] + }, + { + "name":"Mesh.5305", + "primitives":[ + { + "attributes":{ + "POSITION":16207, + "NORMAL":16208, + "TEXCOORD_0":16209 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8571", + "primitives":[ + { + "attributes":{ + "POSITION":16210, + "NORMAL":16211 + }, + "indices":16212, + "material":3 + } + ] + }, + { + "name":"Mesh.467", + "primitives":[ + { + "attributes":{ + "POSITION":16213, + "NORMAL":16214 + }, + "indices":11228, + "material":3 + } + ] + }, + { + "name":"Mesh.731", + "primitives":[ + { + "attributes":{ + "POSITION":16215, + "NORMAL":16216, + "TEXCOORD_0":16217 + }, + "indices":1040, + "material":0 + } + ] + }, + { + "name":"Mesh.7257", + "primitives":[ + { + "attributes":{ + "POSITION":16218, + "NORMAL":16219, + "TEXCOORD_0":16220 + }, + "indices":16221, + "material":7 + } + ] + }, + { + "name":"Mesh.8084", + "primitives":[ + { + "attributes":{ + "POSITION":16222, + "NORMAL":16223 + }, + "indices":1784, + "material":3 + } + ] + }, + { + "name":"Mesh.8411", + "primitives":[ + { + "attributes":{ + "POSITION":16224, + "NORMAL":16225 + }, + "indices":16226, + "material":3 + } + ] + }, + { + "name":"Mesh.8167", + "primitives":[ + { + "attributes":{ + "POSITION":16227, + "NORMAL":16228 + }, + "indices":6932, + "material":3 + } + ] + }, + { + "name":"Mesh.1101", + "primitives":[ + { + "attributes":{ + "POSITION":16229, + "NORMAL":16230, + "TEXCOORD_0":16231 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.125", + "primitives":[ + { + "attributes":{ + "POSITION":16232, + "NORMAL":16233, + "TEXCOORD_0":16234 + }, + "indices":16235, + "material":0 + } + ] + }, + { + "name":"Mesh.6075", + "primitives":[ + { + "attributes":{ + "POSITION":16236, + "NORMAL":16237, + "TEXCOORD_0":16238 + }, + "indices":9545, + "material":11 + } + ] + }, + { + "name":"Mesh.6865", + "primitives":[ + { + "attributes":{ + "POSITION":16239, + "NORMAL":16240 + }, + "indices":14911, + "material":0 + } + ] + }, + { + "name":"Mesh.8435", + "primitives":[ + { + "attributes":{ + "POSITION":16241, + "NORMAL":16242 + }, + "indices":16243, + "material":3 + } + ] + }, + { + "name":"Mesh.5419", + "primitives":[ + { + "attributes":{ + "POSITION":16244, + "NORMAL":16245, + "TEXCOORD_0":16246 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9153", + "primitives":[ + { + "attributes":{ + "POSITION":16247, + "NORMAL":16248, + "TEXCOORD_0":16249 + }, + "indices":1660, + "material":7 + } + ] + }, + { + "name":"Mesh.027", + "primitives":[ + { + "attributes":{ + "POSITION":16250, + "NORMAL":16251, + "TEXCOORD_0":16252 + }, + "indices":5286, + "material":41 + } + ] + }, + { + "name":"Mesh.6936", + "primitives":[ + { + "attributes":{ + "POSITION":16253, + "NORMAL":16254 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6294", + "primitives":[ + { + "attributes":{ + "POSITION":16255, + "NORMAL":16256, + "TEXCOORD_0":16257 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.6291", + "primitives":[ + { + "attributes":{ + "POSITION":16258, + "NORMAL":16259, + "TEXCOORD_0":16260 + }, + "indices":187, + "material":5 + } + ] + }, + { + "name":"Mesh.6004", + "primitives":[ + { + "attributes":{ + "POSITION":16261, + "NORMAL":16262, + "TEXCOORD_0":16263 + }, + "indices":5887, + "material":23 + } + ] + }, + { + "name":"Mesh.7152", + "primitives":[ + { + "attributes":{ + "POSITION":16264, + "NORMAL":16265, + "TEXCOORD_0":16266 + }, + "indices":2577, + "material":7 + } + ] + }, + { + "name":"Mesh.6180", + "primitives":[ + { + "attributes":{ + "POSITION":16267, + "NORMAL":16268, + "TEXCOORD_0":16269 + }, + "indices":187, + "material":5 + } + ] + }, + { + "name":"Mesh.6044", + "primitives":[ + { + "attributes":{ + "POSITION":16270, + "NORMAL":16271, + "TEXCOORD_0":16272 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.7951", + "primitives":[ + { + "attributes":{ + "POSITION":16273, + "NORMAL":16274 + }, + "indices":16275, + "material":3 + } + ] + }, + { + "name":"Mesh.6834", + "primitives":[ + { + "attributes":{ + "POSITION":16276, + "NORMAL":16277, + "TEXCOORD_0":16278 + }, + "indices":2362, + "material":3 + } + ] + }, + { + "name":"Mesh.5237", + "primitives":[ + { + "attributes":{ + "POSITION":16279, + "NORMAL":16280, + "TEXCOORD_0":16281 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9014", + "primitives":[ + { + "attributes":{ + "POSITION":16282, + "NORMAL":16283, + "TEXCOORD_0":16284 + }, + "indices":1660, + "material":7 + } + ] + }, + { + "name":"Mesh.5573", + "primitives":[ + { + "attributes":{ + "POSITION":16285, + "NORMAL":16286, + "TEXCOORD_0":16287 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7840", + "primitives":[ + { + "attributes":{ + "POSITION":16288, + "NORMAL":16289 + }, + "indices":16290, + "material":3 + } + ] + }, + { + "name":"Mesh.8166", + "primitives":[ + { + "attributes":{ + "POSITION":16291, + "NORMAL":16292 + }, + "indices":8989, + "material":3 + } + ] + }, + { + "name":"Mesh.2570", + "primitives":[ + { + "attributes":{ + "POSITION":16293, + "NORMAL":16294, + "TEXCOORD_0":16295 + }, + "indices":16296, + "material":0 + } + ] + }, + { + "name":"Mesh.8606", + "primitives":[ + { + "attributes":{ + "POSITION":16297, + "NORMAL":16298 + }, + "indices":16299, + "material":3 + } + ] + }, + { + "name":"Mesh.7090", + "primitives":[ + { + "attributes":{ + "POSITION":16300, + "NORMAL":16301 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.6929", + "primitives":[ + { + "attributes":{ + "POSITION":16302, + "NORMAL":16303 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.1677", + "primitives":[ + { + "attributes":{ + "POSITION":16304, + "NORMAL":16305, + "TEXCOORD_0":16306 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.7266", + "primitives":[ + { + "attributes":{ + "POSITION":16307, + "NORMAL":16308, + "TEXCOORD_0":16309 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.7584", + "primitives":[ + { + "attributes":{ + "POSITION":16310, + "NORMAL":16311 + }, + "indices":2089, + "material":3 + } + ] + }, + { + "name":"Mesh.8746", + "primitives":[ + { + "attributes":{ + "POSITION":16312, + "NORMAL":16313 + }, + "indices":16118, + "material":3 + } + ] + }, + { + "name":"Mesh.2245", + "primitives":[ + { + "attributes":{ + "POSITION":16314, + "NORMAL":16315, + "TEXCOORD_0":16316 + }, + "indices":2887, + "material":0 + } + ] + }, + { + "name":"Mesh.6374", + "primitives":[ + { + "attributes":{ + "POSITION":16317, + "NORMAL":16318 + }, + "indices":16319, + "material":0 + } + ] + }, + { + "name":"Mesh.2078", + "primitives":[ + { + "attributes":{ + "POSITION":16320, + "NORMAL":16321, + "TEXCOORD_0":16322 + }, + "indices":16323, + "material":3 + } + ] + }, + { + "name":"Mesh.708", + "primitives":[ + { + "attributes":{ + "POSITION":16324, + "NORMAL":16325, + "TEXCOORD_0":16326 + }, + "indices":11485, + "material":0 + } + ] + }, + { + "name":"Mesh.1164", + "primitives":[ + { + "attributes":{ + "POSITION":16327, + "NORMAL":16328, + "TEXCOORD_0":16329 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.9093", + "primitives":[ + { + "attributes":{ + "POSITION":16330, + "NORMAL":16331, + "TEXCOORD_0":16332 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.5391", + "primitives":[ + { + "attributes":{ + "POSITION":16333, + "NORMAL":16334, + "TEXCOORD_0":16335 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1839", + "primitives":[ + { + "attributes":{ + "POSITION":16336, + "NORMAL":16337 + }, + "indices":6016, + "material":75 + } + ] + }, + { + "name":"Mesh.171", + "primitives":[ + { + "attributes":{ + "POSITION":16338, + "NORMAL":16339, + "TEXCOORD_0":16340 + }, + "indices":157, + "material":64 + } + ] + }, + { + "name":"Mesh.6087", + "primitives":[ + { + "attributes":{ + "POSITION":16341, + "NORMAL":16342, + "TEXCOORD_0":16343 + }, + "indices":266, + "material":12 + } + ] + }, + { + "name":"Mesh.1791", + "primitives":[ + { + "attributes":{ + "POSITION":16344, + "NORMAL":16345 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.7107", + "primitives":[ + { + "attributes":{ + "POSITION":16346, + "NORMAL":16347, + "TEXCOORD_0":16348 + }, + "indices":16349, + "material":7 + } + ] + }, + { + "name":"Mesh.7235", + "primitives":[ + { + "attributes":{ + "POSITION":16350, + "NORMAL":16351, + "TEXCOORD_0":16352 + }, + "indices":14277, + "material":7 + } + ] + }, + { + "name":"Mesh.6590", + "primitives":[ + { + "attributes":{ + "POSITION":16353, + "NORMAL":16354, + "TEXCOORD_0":16355 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.7093", + "primitives":[ + { + "attributes":{ + "POSITION":16356, + "NORMAL":16357, + "TEXCOORD_0":16358 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.2149", + "primitives":[ + { + "attributes":{ + "POSITION":16359, + "NORMAL":16360, + "TEXCOORD_0":16361 + }, + "indices":16362, + "material":0 + } + ] + }, + { + "name":"Mesh.5250", + "primitives":[ + { + "attributes":{ + "POSITION":16363, + "NORMAL":16364, + "TEXCOORD_0":16365 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2613", + "primitives":[ + { + "attributes":{ + "POSITION":16366, + "NORMAL":16367, + "TEXCOORD_0":16368 + }, + "indices":1536, + "material":0 + } + ] + }, + { + "name":"Mesh.897", + "primitives":[ + { + "attributes":{ + "POSITION":16369, + "NORMAL":16370, + "TEXCOORD_0":16371 + }, + "indices":328, + "material":0 + } + ] + }, + { + "name":"Mesh.6775", + "primitives":[ + { + "attributes":{ + "POSITION":16372, + "NORMAL":16373 + }, + "indices":12341, + "material":0 + } + ] + }, + { + "name":"Mesh.2789", + "primitives":[ + { + "attributes":{ + "POSITION":16374, + "NORMAL":16375, + "TEXCOORD_0":16376 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.305", + "primitives":[ + { + "attributes":{ + "POSITION":16377, + "NORMAL":16378, + "TEXCOORD_0":16379 + }, + "indices":5926, + "material":0 + } + ] + }, + { + "name":"Mesh.7164", + "primitives":[ + { + "attributes":{ + "POSITION":16380, + "NORMAL":16381, + "TEXCOORD_0":16382 + }, + "indices":16383, + "material":7 + } + ] + }, + { + "name":"Mesh.7627", + "primitives":[ + { + "attributes":{ + "POSITION":16384, + "NORMAL":16385 + }, + "indices":7652, + "material":3 + } + ] + }, + { + "name":"Mesh.8593", + "primitives":[ + { + "attributes":{ + "POSITION":16386, + "NORMAL":16387 + }, + "indices":16388, + "material":3 + } + ] + }, + { + "name":"Mesh.1786", + "primitives":[ + { + "attributes":{ + "POSITION":16389, + "NORMAL":16390 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.330", + "primitives":[ + { + "attributes":{ + "POSITION":16391, + "NORMAL":16392, + "TEXCOORD_0":16393 + }, + "indices":554, + "material":0 + } + ] + }, + { + "name":"Mesh.8290", + "primitives":[ + { + "attributes":{ + "POSITION":16394, + "NORMAL":16395 + }, + "indices":2413, + "material":3 + } + ] + }, + { + "name":"Mesh.2859", + "primitives":[ + { + "attributes":{ + "POSITION":16396, + "NORMAL":16397 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8706", + "primitives":[ + { + "attributes":{ + "POSITION":16398, + "NORMAL":16399 + }, + "indices":2261, + "material":3 + } + ] + }, + { + "name":"Mesh.6417", + "primitives":[ + { + "attributes":{ + "POSITION":16400, + "NORMAL":16401 + }, + "indices":16402, + "material":0 + } + ] + }, + { + "name":"Mesh.5434", + "primitives":[ + { + "attributes":{ + "POSITION":16403, + "NORMAL":16404, + "TEXCOORD_0":16405 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2152", + "primitives":[ + { + "attributes":{ + "POSITION":16406, + "NORMAL":16407, + "TEXCOORD_0":16408 + }, + "indices":11873, + "material":3 + } + ] + }, + { + "name":"Mesh.1042", + "primitives":[ + { + "attributes":{ + "POSITION":16409, + "NORMAL":16410, + "TEXCOORD_0":16411 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.7596", + "primitives":[ + { + "attributes":{ + "POSITION":16412, + "NORMAL":16413 + }, + "indices":7017, + "material":3 + } + ] + }, + { + "name":"Mesh.4851", + "primitives":[ + { + "attributes":{ + "POSITION":16414, + "NORMAL":16415, + "TEXCOORD_0":16416 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.755", + "primitives":[ + { + "attributes":{ + "POSITION":16417, + "NORMAL":16418, + "TEXCOORD_0":16419 + }, + "indices":2763, + "material":0 + } + ] + }, + { + "name":"Mesh.8903", + "primitives":[ + { + "attributes":{ + "POSITION":16420, + "NORMAL":16421 + }, + "indices":9297, + "material":3 + } + ] + }, + { + "name":"Mesh.8681", + "primitives":[ + { + "attributes":{ + "POSITION":16422, + "NORMAL":16423 + }, + "indices":1500, + "material":3 + } + ] + }, + { + "name":"Mesh.1649", + "primitives":[ + { + "attributes":{ + "POSITION":16424, + "NORMAL":16425, + "TEXCOORD_0":16426 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.8813", + "primitives":[ + { + "attributes":{ + "POSITION":16427, + "NORMAL":16428 + }, + "indices":13151, + "material":3 + } + ] + }, + { + "name":"Mesh.4891", + "primitives":[ + { + "attributes":{ + "POSITION":16429, + "NORMAL":16430, + "TEXCOORD_0":16431 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8237", + "primitives":[ + { + "attributes":{ + "POSITION":16432, + "NORMAL":16433 + }, + "indices":1063, + "material":3 + } + ] + }, + { + "name":"Mesh.8462", + "primitives":[ + { + "attributes":{ + "POSITION":16434, + "NORMAL":16435 + }, + "indices":16436, + "material":3 + } + ] + }, + { + "name":"Mesh.6522", + "primitives":[ + { + "attributes":{ + "POSITION":16437, + "NORMAL":16438, + "TEXCOORD_0":16439 + }, + "indices":6809, + "material":0 + } + ] + }, + { + "name":"Mesh.8119", + "primitives":[ + { + "attributes":{ + "POSITION":16440, + "NORMAL":16441 + }, + "indices":5701, + "material":3 + } + ] + }, + { + "name":"Mesh.5763", + "primitives":[ + { + "attributes":{ + "POSITION":16442, + "NORMAL":16443 + }, + "indices":9827, + "material":0 + } + ] + }, + { + "name":"Mesh.6235", + "primitives":[ + { + "attributes":{ + "POSITION":16444, + "NORMAL":16445, + "TEXCOORD_0":16446 + }, + "indices":3979, + "material":12 + } + ] + }, + { + "name":"Mesh.6911", + "primitives":[ + { + "attributes":{ + "POSITION":16447, + "NORMAL":16448, + "TEXCOORD_0":16449 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.7383", + "primitives":[ + { + "attributes":{ + "POSITION":16450, + "NORMAL":16451, + "TEXCOORD_0":16452 + }, + "indices":16453, + "material":7 + } + ] + }, + { + "name":"Mesh.8182", + "primitives":[ + { + "attributes":{ + "POSITION":16454, + "NORMAL":16455 + }, + "indices":13485, + "material":3 + } + ] + }, + { + "name":"Mesh.4820", + "primitives":[ + { + "attributes":{ + "POSITION":16456, + "NORMAL":16457, + "TEXCOORD_0":16458 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7895", + "primitives":[ + { + "attributes":{ + "POSITION":16459, + "NORMAL":16460 + }, + "indices":16461, + "material":3 + } + ] + }, + { + "name":"Mesh.690", + "primitives":[ + { + "attributes":{ + "POSITION":16462, + "NORMAL":16463, + "TEXCOORD_0":16464 + }, + "indices":2455, + "material":0 + } + ] + }, + { + "name":"Mesh.915", + "primitives":[ + { + "attributes":{ + "POSITION":16465, + "NORMAL":16466, + "TEXCOORD_0":16467 + }, + "indices":887, + "material":0 + } + ] + }, + { + "name":"Mesh.1821", + "primitives":[ + { + "attributes":{ + "POSITION":16468, + "NORMAL":16469, + "TEXCOORD_0":16470 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.8145", + "primitives":[ + { + "attributes":{ + "POSITION":16471, + "NORMAL":16472 + }, + "indices":2915, + "material":3 + } + ] + }, + { + "name":"Mesh.5332", + "primitives":[ + { + "attributes":{ + "POSITION":16473, + "NORMAL":16474, + "TEXCOORD_0":16475 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2575", + "primitives":[ + { + "attributes":{ + "POSITION":16476, + "NORMAL":16477, + "TEXCOORD_0":16478 + }, + "indices":914, + "material":0 + } + ] + }, + { + "name":"Mesh.1616", + "primitives":[ + { + "attributes":{ + "POSITION":16479, + "NORMAL":16480, + "TEXCOORD_0":16481 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.8511", + "primitives":[ + { + "attributes":{ + "POSITION":16482, + "NORMAL":16483 + }, + "indices":16484, + "material":3 + } + ] + }, + { + "name":"Mesh.6434", + "primitives":[ + { + "attributes":{ + "POSITION":16485, + "NORMAL":16486, + "TEXCOORD_0":16487 + }, + "indices":3350, + "material":0 + } + ] + }, + { + "name":"Mesh.5678", + "primitives":[ + { + "attributes":{ + "POSITION":16488, + "NORMAL":16489, + "TEXCOORD_0":16490 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8111", + "primitives":[ + { + "attributes":{ + "POSITION":16491, + "NORMAL":16492 + }, + "indices":8703, + "material":3 + } + ] + }, + { + "name":"Mesh.1107", + "primitives":[ + { + "attributes":{ + "POSITION":16493, + "NORMAL":16494, + "TEXCOORD_0":16495 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.7352", + "primitives":[ + { + "attributes":{ + "POSITION":16496, + "NORMAL":16497, + "TEXCOORD_0":16498 + }, + "indices":1934, + "material":7 + } + ] + }, + { + "name":"Mesh.4934", + "primitives":[ + { + "attributes":{ + "POSITION":16499, + "NORMAL":16500, + "TEXCOORD_0":16501 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8659", + "primitives":[ + { + "attributes":{ + "POSITION":16502, + "NORMAL":16503 + }, + "indices":2692, + "material":3 + } + ] + }, + { + "name":"Mesh.2300", + "primitives":[ + { + "attributes":{ + "POSITION":16504, + "NORMAL":16505, + "TEXCOORD_0":16506 + }, + "indices":16507, + "material":0 + } + ] + }, + { + "name":"Mesh.7528", + "primitives":[ + { + "attributes":{ + "POSITION":16508, + "NORMAL":16509 + }, + "indices":16510, + "material":3 + } + ] + }, + { + "name":"Mesh.4823", + "primitives":[ + { + "attributes":{ + "POSITION":16511, + "NORMAL":16512, + "TEXCOORD_0":16513 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8224", + "primitives":[ + { + "attributes":{ + "POSITION":16514, + "NORMAL":16515 + }, + "indices":8980, + "material":3 + } + ] + }, + { + "name":"Mesh.8614", + "primitives":[ + { + "attributes":{ + "POSITION":16516, + "NORMAL":16517 + }, + "indices":16518, + "material":3 + } + ] + }, + { + "name":"Mesh.1214", + "primitives":[ + { + "attributes":{ + "POSITION":16519, + "NORMAL":16520 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.5000", + "primitives":[ + { + "attributes":{ + "POSITION":16521, + "NORMAL":16522, + "TEXCOORD_0":16523 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8497", + "primitives":[ + { + "attributes":{ + "POSITION":16524, + "NORMAL":16525 + }, + "indices":1274, + "material":3 + } + ] + }, + { + "name":"Mesh.7300", + "primitives":[ + { + "attributes":{ + "POSITION":16526, + "NORMAL":16527, + "TEXCOORD_0":16528 + }, + "indices":15252, + "material":7 + } + ] + }, + { + "name":"Mesh.6318", + "primitives":[ + { + "attributes":{ + "POSITION":16529, + "NORMAL":16530, + "TEXCOORD_0":16531 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.6985", + "primitives":[ + { + "attributes":{ + "POSITION":16532, + "NORMAL":16533, + "TEXCOORD_0":16534 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.4863", + "primitives":[ + { + "attributes":{ + "POSITION":16535, + "NORMAL":16536, + "TEXCOORD_0":16537 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8579", + "primitives":[ + { + "attributes":{ + "POSITION":16538, + "NORMAL":16539 + }, + "indices":16540, + "material":3 + } + ] + }, + { + "name":"Mesh.8835", + "primitives":[ + { + "attributes":{ + "POSITION":16541, + "NORMAL":16542 + }, + "indices":5959, + "material":3 + } + ] + }, + { + "name":"Mesh.7509", + "primitives":[ + { + "attributes":{ + "POSITION":16543, + "NORMAL":16544 + }, + "indices":16545, + "material":3 + } + ] + }, + { + "name":"Mesh.6821", + "primitives":[ + { + "attributes":{ + "POSITION":16546, + "NORMAL":16547, + "TEXCOORD_0":16548 + }, + "indices":2362, + "material":3 + } + ] + }, + { + "name":"Mesh.2994", + "primitives":[ + { + "attributes":{ + "POSITION":16549, + "NORMAL":16550, + "TEXCOORD_0":16551 + }, + "indices":16552, + "material":7 + } + ] + }, + { + "name":"Mesh.2840", + "primitives":[ + { + "attributes":{ + "POSITION":16553, + "NORMAL":16554 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.5088", + "primitives":[ + { + "attributes":{ + "POSITION":16555, + "NORMAL":16556, + "TEXCOORD_0":16557 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.632", + "primitives":[ + { + "attributes":{ + "POSITION":16558, + "NORMAL":16559, + "TEXCOORD_0":16560 + }, + "indices":10148, + "material":3 + } + ] + }, + { + "name":"Mesh.7395", + "primitives":[ + { + "attributes":{ + "POSITION":16561, + "NORMAL":16562, + "TEXCOORD_0":16563 + }, + "indices":9378, + "material":7 + } + ] + }, + { + "name":"Mesh.9110", + "primitives":[ + { + "attributes":{ + "POSITION":16564, + "NORMAL":16565, + "TEXCOORD_0":16566 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.8087", + "primitives":[ + { + "attributes":{ + "POSITION":16567, + "NORMAL":16568 + }, + "indices":4726, + "material":3 + } + ] + }, + { + "name":"Mesh.6287", + "primitives":[ + { + "attributes":{ + "POSITION":16569, + "NORMAL":16570, + "TEXCOORD_0":16571 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.6759", + "primitives":[ + { + "attributes":{ + "POSITION":16572, + "NORMAL":16573 + }, + "indices":6621, + "material":0 + } + ] + }, + { + "name":"Mesh.7778", + "primitives":[ + { + "attributes":{ + "POSITION":16574, + "NORMAL":16575 + }, + "indices":16576, + "material":3 + } + ] + }, + { + "name":"Mesh.5304", + "primitives":[ + { + "attributes":{ + "POSITION":16577, + "NORMAL":16578, + "TEXCOORD_0":16579 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5938", + "primitives":[ + { + "attributes":{ + "POSITION":16580, + "NORMAL":16581, + "TEXCOORD_0":16582 + }, + "indices":16583, + "material":33 + } + ] + }, + { + "name":"Mesh.8083", + "primitives":[ + { + "attributes":{ + "POSITION":16584, + "NORMAL":16585 + }, + "indices":1046, + "material":3 + } + ] + }, + { + "name":"Mesh.6503", + "primitives":[ + { + "attributes":{ + "POSITION":16586, + "NORMAL":16587, + "TEXCOORD_0":16588 + }, + "indices":1490, + "material":0 + } + ] + }, + { + "name":"Mesh.8410", + "primitives":[ + { + "attributes":{ + "POSITION":16589, + "NORMAL":16590 + }, + "indices":16591, + "material":3 + } + ] + }, + { + "name":"Mesh.1100", + "primitives":[ + { + "attributes":{ + "POSITION":16592, + "NORMAL":16593, + "TEXCOORD_0":16594 + }, + "indices":140, + "material":0 + } + ] + }, + { + "name":"Mesh.6074", + "primitives":[ + { + "attributes":{ + "POSITION":16595, + "NORMAL":16596, + "TEXCOORD_0":16597 + }, + "indices":202, + "material":11 + } + ] + }, + { + "name":"Mesh.6864", + "primitives":[ + { + "attributes":{ + "POSITION":16598, + "NORMAL":16599 + }, + "indices":14911, + "material":0 + } + ] + }, + { + "name":"Mesh.7686", + "primitives":[ + { + "attributes":{ + "POSITION":16600, + "NORMAL":16601 + }, + "indices":16602, + "material":3 + } + ] + }, + { + "name":"Mesh.5418", + "primitives":[ + { + "attributes":{ + "POSITION":16603, + "NORMAL":16604, + "TEXCOORD_0":16605 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.621", + "primitives":[ + { + "attributes":{ + "POSITION":16606, + "NORMAL":16607, + "TEXCOORD_0":16608 + }, + "indices":16609, + "material":3 + } + ] + }, + { + "name":"Mesh.6377", + "primitives":[ + { + "attributes":{ + "POSITION":16610, + "NORMAL":16611, + "TEXCOORD_0":16612 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.6593", + "primitives":[ + { + "attributes":{ + "POSITION":16613, + "NORMAL":16614 + }, + "indices":6550, + "material":0 + } + ] + }, + { + "name":"Mesh.276", + "primitives":[ + { + "attributes":{ + "POSITION":16615, + "NORMAL":16616, + "TEXCOORD_0":16617 + }, + "indices":16618, + "material":3 + } + ] + }, + { + "name":"Mesh.6935", + "primitives":[ + { + "attributes":{ + "POSITION":16619, + "NORMAL":16620 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.7725", + "primitives":[ + { + "attributes":{ + "POSITION":16621, + "NORMAL":16622 + }, + "indices":16623, + "material":3 + } + ] + }, + { + "name":"Mesh.2192", + "primitives":[ + { + "attributes":{ + "POSITION":16624, + "NORMAL":16625, + "TEXCOORD_0":16626 + }, + "indices":8014, + "material":3 + } + ] + }, + { + "name":"Mesh.6003", + "primitives":[ + { + "attributes":{ + "POSITION":16627, + "NORMAL":16628, + "TEXCOORD_0":16629 + }, + "indices":7759, + "material":25 + } + ] + }, + { + "name":"Mesh.7765", + "primitives":[ + { + "attributes":{ + "POSITION":16630, + "NORMAL":16631 + }, + "indices":16632, + "material":3 + } + ] + }, + { + "name":"Mesh.5707", + "primitives":[ + { + "attributes":{ + "POSITION":16633, + "NORMAL":16634 + }, + "indices":102, + "material":0 + } + ] + }, + { + "name":"Mesh.6043", + "primitives":[ + { + "attributes":{ + "POSITION":16635, + "NORMAL":16636, + "TEXCOORD_0":16637 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.7950", + "primitives":[ + { + "attributes":{ + "POSITION":16638, + "NORMAL":16639 + }, + "indices":16640, + "material":3 + } + ] + }, + { + "name":"Mesh.6833", + "primitives":[ + { + "attributes":{ + "POSITION":16641, + "NORMAL":16642, + "TEXCOORD_0":16643 + }, + "indices":16644, + "material":3 + } + ] + }, + { + "name":"Mesh.7191", + "primitives":[ + { + "attributes":{ + "POSITION":16645, + "NORMAL":16646, + "TEXCOORD_0":16647 + }, + "indices":16648, + "material":7 + } + ] + }, + { + "name":"Mesh.1975", + "primitives":[ + { + "attributes":{ + "POSITION":16649, + "NORMAL":16650, + "TEXCOORD_0":16651 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.5236", + "primitives":[ + { + "attributes":{ + "POSITION":16652, + "NORMAL":16653, + "TEXCOORD_0":16654 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2636", + "primitives":[ + { + "attributes":{ + "POSITION":16655, + "NORMAL":16656, + "TEXCOORD_0":16657 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.5572", + "primitives":[ + { + "attributes":{ + "POSITION":16658, + "NORMAL":16659, + "TEXCOORD_0":16660 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6147", + "primitives":[ + { + "attributes":{ + "POSITION":16661, + "NORMAL":16662, + "TEXCOORD_0":16663 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.6495", + "primitives":[ + { + "attributes":{ + "POSITION":16664, + "NORMAL":16665, + "TEXCOORD_0":16666 + }, + "indices":10222, + "material":0 + } + ] + }, + { + "name":"Mesh.2569", + "primitives":[ + { + "attributes":{ + "POSITION":16667, + "NORMAL":16668, + "TEXCOORD_0":16669 + }, + "indices":1060, + "material":0 + } + ] + }, + { + "name":"Mesh.7089", + "primitives":[ + { + "attributes":{ + "POSITION":16670, + "NORMAL":16671, + "TEXCOORD_0":16672 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.5448", + "primitives":[ + { + "attributes":{ + "POSITION":16673, + "NORMAL":16674, + "TEXCOORD_0":16675 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1676", + "primitives":[ + { + "attributes":{ + "POSITION":16676, + "NORMAL":16677, + "TEXCOORD_0":16678 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.2853", + "primitives":[ + { + "attributes":{ + "POSITION":16679, + "NORMAL":16680 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.5461", + "primitives":[ + { + "attributes":{ + "POSITION":16681, + "NORMAL":16682, + "TEXCOORD_0":16683 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7583", + "primitives":[ + { + "attributes":{ + "POSITION":16684, + "NORMAL":16685 + }, + "indices":13482, + "material":3 + } + ] + }, + { + "name":"Mesh.9134", + "primitives":[ + { + "attributes":{ + "POSITION":16686, + "NORMAL":16687, + "TEXCOORD_0":16688 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.140", + "primitives":[ + { + "attributes":{ + "POSITION":16689, + "NORMAL":16690, + "TEXCOORD_0":16691 + }, + "indices":3749, + "material":0 + } + ] + }, + { + "name":"Mesh.8745", + "primitives":[ + { + "attributes":{ + "POSITION":16692, + "NORMAL":16693 + }, + "indices":16694, + "material":3 + } + ] + }, + { + "name":"Mesh.412", + "primitives":[ + { + "attributes":{ + "POSITION":16695, + "NORMAL":16696 + }, + "indices":4042, + "material":0 + } + ] + }, + { + "name":"Mesh.1247", + "primitives":[ + { + "attributes":{ + "POSITION":16697, + "NORMAL":16698, + "TEXCOORD_0":16699 + }, + "indices":16700, + "material":29 + }, + { + "attributes":{ + "POSITION":16701, + "NORMAL":16702, + "TEXCOORD_0":16703 + }, + "indices":16704, + "material":1 + }, + { + "attributes":{ + "POSITION":16705, + "NORMAL":16706, + "TEXCOORD_0":16707 + }, + "indices":16708, + "material":76 + }, + { + "attributes":{ + "POSITION":16709, + "NORMAL":16710, + "TEXCOORD_0":16711 + }, + "indices":16712, + "material":77 + }, + { + "attributes":{ + "POSITION":16713, + "NORMAL":16714, + "TEXCOORD_0":16715 + }, + "indices":16716, + "material":32 + } + ] + }, + { + "name":"Mesh.2244", + "primitives":[ + { + "attributes":{ + "POSITION":16717, + "NORMAL":16718, + "TEXCOORD_0":16719 + }, + "indices":3241, + "material":0 + } + ] + }, + { + "name":"Mesh.8729", + "primitives":[ + { + "attributes":{ + "POSITION":16720, + "NORMAL":16721 + }, + "indices":16545, + "material":3 + } + ] + }, + { + "name":"Mesh.6373", + "primitives":[ + { + "attributes":{ + "POSITION":16722, + "NORMAL":16723 + }, + "indices":7259, + "material":0 + } + ] + }, + { + "name":"Mesh.2592", + "primitives":[ + { + "attributes":{ + "POSITION":16724, + "NORMAL":16725, + "TEXCOORD_0":16726 + }, + "indices":1400, + "material":0 + } + ] + }, + { + "name":"Mesh.6403", + "primitives":[ + { + "attributes":{ + "POSITION":16727, + "NORMAL":16728 + }, + "indices":16729, + "material":0 + } + ] + }, + { + "name":"Mesh.5390", + "primitives":[ + { + "attributes":{ + "POSITION":16730, + "NORMAL":16731, + "TEXCOORD_0":16732 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6914", + "primitives":[ + { + "attributes":{ + "POSITION":16733, + "NORMAL":16734, + "TEXCOORD_0":16735 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.6086", + "primitives":[ + { + "attributes":{ + "POSITION":16736, + "NORMAL":16737, + "TEXCOORD_0":16738 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.1790", + "primitives":[ + { + "attributes":{ + "POSITION":16739, + "NORMAL":16740 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.5545", + "primitives":[ + { + "attributes":{ + "POSITION":16741, + "NORMAL":16742, + "TEXCOORD_0":16743 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7234", + "primitives":[ + { + "attributes":{ + "POSITION":16744, + "NORMAL":16745, + "TEXCOORD_0":16746 + }, + "indices":14617, + "material":7 + } + ] + }, + { + "name":"Mesh.6589", + "primitives":[ + { + "attributes":{ + "POSITION":16747, + "NORMAL":16748 + }, + "indices":16749, + "material":0 + } + ] + }, + { + "name":"Mesh.5371", + "primitives":[ + { + "attributes":{ + "POSITION":16750, + "NORMAL":16751, + "TEXCOORD_0":16752 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2148", + "primitives":[ + { + "attributes":{ + "POSITION":16753, + "NORMAL":16754, + "TEXCOORD_0":16755 + }, + "indices":16756, + "material":3 + } + ] + }, + { + "name":"Mesh.2612", + "primitives":[ + { + "attributes":{ + "POSITION":16757, + "NORMAL":16758 + }, + "indices":920, + "material":1 + } + ] + }, + { + "name":"Mesh.4847", + "primitives":[ + { + "attributes":{ + "POSITION":16759, + "NORMAL":16760, + "TEXCOORD_0":16761 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.896", + "primitives":[ + { + "attributes":{ + "POSITION":16762, + "NORMAL":16763, + "TEXCOORD_0":16764 + }, + "indices":51, + "material":0 + } + ] + }, + { + "name":"Mesh.963", + "primitives":[ + { + "attributes":{ + "POSITION":16765, + "NORMAL":16766, + "TEXCOORD_0":16767 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.8676", + "primitives":[ + { + "attributes":{ + "POSITION":16768, + "NORMAL":16769 + }, + "indices":9361, + "material":3 + } + ] + }, + { + "name":"Mesh.2101", + "primitives":[ + { + "attributes":{ + "POSITION":16770, + "NORMAL":16771, + "TEXCOORD_0":16772 + }, + "indices":1984, + "material":0 + } + ] + }, + { + "name":"Mesh.7137", + "primitives":[ + { + "attributes":{ + "POSITION":16773, + "NORMAL":16774, + "TEXCOORD_0":16775 + }, + "indices":16776, + "material":7 + } + ] + }, + { + "name":"Mesh.8431", + "primitives":[ + { + "attributes":{ + "POSITION":16777, + "NORMAL":16778 + }, + "indices":676, + "material":3 + } + ] + }, + { + "name":"Mesh.1692", + "primitives":[ + { + "attributes":{ + "POSITION":16779, + "NORMAL":16780, + "TEXCOORD_0":16781 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.7163", + "primitives":[ + { + "attributes":{ + "POSITION":16782, + "NORMAL":16783, + "TEXCOORD_0":16784 + }, + "indices":412, + "material":7 + } + ] + }, + { + "name":"Mesh.6191", + "primitives":[ + { + "attributes":{ + "POSITION":16785, + "NORMAL":16786, + "TEXCOORD_0":16787 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.7269", + "primitives":[ + { + "attributes":{ + "POSITION":16788, + "NORMAL":16789, + "TEXCOORD_0":16790 + }, + "indices":16791, + "material":7 + } + ] + }, + { + "name":"Mesh.7972", + "primitives":[ + { + "attributes":{ + "POSITION":16792, + "NORMAL":16793, + "TEXCOORD_0":16794 + }, + "indices":8224, + "material":0 + } + ] + }, + { + "name":"Mesh.8434", + "primitives":[ + { + "attributes":{ + "POSITION":16795, + "NORMAL":16796 + }, + "indices":16797, + "material":3 + } + ] + }, + { + "name":"Mesh.4826", + "primitives":[ + { + "attributes":{ + "POSITION":16798, + "NORMAL":16799, + "TEXCOORD_0":16800 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5492", + "primitives":[ + { + "attributes":{ + "POSITION":16801, + "NORMAL":16802, + "TEXCOORD_0":16803 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6416", + "primitives":[ + { + "attributes":{ + "POSITION":16804, + "NORMAL":16805 + }, + "indices":16806, + "material":0 + } + ] + }, + { + "name":"Mesh.5433", + "primitives":[ + { + "attributes":{ + "POSITION":16807, + "NORMAL":16808, + "TEXCOORD_0":16809 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1816", + "primitives":[ + { + "attributes":{ + "POSITION":16810, + "NORMAL":16811 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.152", + "primitives":[ + { + "attributes":{ + "POSITION":16812, + "NORMAL":16813, + "TEXCOORD_0":16814 + }, + "indices":16815, + "material":0 + } + ] + }, + { + "name":"Mesh.1189", + "primitives":[ + { + "attributes":{ + "POSITION":16816, + "NORMAL":16817 + }, + "indices":114, + "material":1 + } + ] + }, + { + "name":"Mesh.7595", + "primitives":[ + { + "attributes":{ + "POSITION":16818, + "NORMAL":16819 + }, + "indices":7631, + "material":3 + } + ] + }, + { + "name":"Mesh.4850", + "primitives":[ + { + "attributes":{ + "POSITION":16820, + "NORMAL":16821, + "TEXCOORD_0":16822 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.754", + "primitives":[ + { + "attributes":{ + "POSITION":16823, + "NORMAL":16824, + "TEXCOORD_0":16825 + }, + "indices":584, + "material":0 + } + ] + }, + { + "name":"Mesh.8452", + "primitives":[ + { + "attributes":{ + "POSITION":16826, + "NORMAL":16827 + }, + "indices":4021, + "material":3 + } + ] + }, + { + "name":"Mesh.4890", + "primitives":[ + { + "attributes":{ + "POSITION":16828, + "NORMAL":16829, + "TEXCOORD_0":16830 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.122", + "primitives":[ + { + "attributes":{ + "POSITION":16831, + "NORMAL":16832, + "TEXCOORD_0":16833 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5711", + "primitives":[ + { + "attributes":{ + "POSITION":16834, + "NORMAL":16835 + }, + "indices":775, + "material":0 + } + ] + }, + { + "name":"Mesh.2181", + "primitives":[ + { + "attributes":{ + "POSITION":16836, + "NORMAL":16837, + "TEXCOORD_0":16838 + }, + "indices":11485, + "material":0 + } + ] + }, + { + "name":"Mesh.5762", + "primitives":[ + { + "attributes":{ + "POSITION":16839, + "NORMAL":16840 + }, + "indices":12341, + "material":0 + } + ] + }, + { + "name":"Mesh.6234", + "primitives":[ + { + "attributes":{ + "POSITION":16841, + "NORMAL":16842, + "TEXCOORD_0":16843 + }, + "indices":5772, + "material":33 + } + ] + }, + { + "name":"Mesh.7952", + "primitives":[ + { + "attributes":{ + "POSITION":16844, + "NORMAL":16845 + }, + "indices":16846, + "material":3 + } + ] + }, + { + "name":"Mesh.6910", + "primitives":[ + { + "attributes":{ + "POSITION":16847, + "NORMAL":16848 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.7382", + "primitives":[ + { + "attributes":{ + "POSITION":16849, + "NORMAL":16850, + "TEXCOORD_0":16851 + }, + "indices":16852, + "material":7 + } + ] + }, + { + "name":"Mesh.4819", + "primitives":[ + { + "attributes":{ + "POSITION":16853, + "NORMAL":16854, + "TEXCOORD_0":16855 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7610", + "primitives":[ + { + "attributes":{ + "POSITION":16856, + "NORMAL":16857 + }, + "indices":5935, + "material":3 + } + ] + }, + { + "name":"Mesh.7894", + "primitives":[ + { + "attributes":{ + "POSITION":16858, + "NORMAL":16859 + }, + "indices":16860, + "material":3 + } + ] + }, + { + "name":"Mesh.8492", + "primitives":[ + { + "attributes":{ + "POSITION":16861, + "NORMAL":16862 + }, + "indices":4557, + "material":3 + } + ] + }, + { + "name":"Mesh.7749", + "primitives":[ + { + "attributes":{ + "POSITION":16863, + "NORMAL":16864 + }, + "indices":16865, + "material":3 + } + ] + }, + { + "name":"Mesh.9008", + "primitives":[ + { + "attributes":{ + "POSITION":16866, + "NORMAL":16867, + "TEXCOORD_0":16868 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.8033", + "primitives":[ + { + "attributes":{ + "POSITION":16869, + "NORMAL":16870, + "TEXCOORD_0":16871 + }, + "indices":4686, + "material":0 + } + ] + }, + { + "name":"Mesh.5331", + "primitives":[ + { + "attributes":{ + "POSITION":16872, + "NORMAL":16873, + "TEXCOORD_0":16874 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5611", + "primitives":[ + { + "attributes":{ + "POSITION":16875, + "NORMAL":16876, + "TEXCOORD_0":16877 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8110", + "primitives":[ + { + "attributes":{ + "POSITION":16878, + "NORMAL":16879 + }, + "indices":4518, + "material":3 + } + ] + }, + { + "name":"Mesh.8732", + "primitives":[ + { + "attributes":{ + "POSITION":16880, + "NORMAL":16881 + }, + "indices":16882, + "material":3 + } + ] + }, + { + "name":"Mesh.1108", + "primitives":[ + { + "attributes":{ + "POSITION":16883, + "NORMAL":16884, + "TEXCOORD_0":16885 + }, + "indices":140, + "material":0 + } + ] + }, + { + "name":"Mesh.4933", + "primitives":[ + { + "attributes":{ + "POSITION":16886, + "NORMAL":16887, + "TEXCOORD_0":16888 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5260", + "primitives":[ + { + "attributes":{ + "POSITION":16889, + "NORMAL":16890, + "TEXCOORD_0":16891 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7527", + "primitives":[ + { + "attributes":{ + "POSITION":16892, + "NORMAL":16893 + }, + "indices":16894, + "material":3 + } + ] + }, + { + "name":"Mesh.8658", + "primitives":[ + { + "attributes":{ + "POSITION":16895, + "NORMAL":16896 + }, + "indices":5956, + "material":3 + } + ] + }, + { + "name":"Mesh.2440", + "primitives":[ + { + "attributes":{ + "POSITION":16897, + "NORMAL":16898, + "TEXCOORD_0":16899 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.6116", + "primitives":[ + { + "attributes":{ + "POSITION":16900, + "NORMAL":16901, + "TEXCOORD_0":16902 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.2653", + "primitives":[ + { + "attributes":{ + "POSITION":16903, + "NORMAL":16904, + "TEXCOORD_0":16905 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.4822", + "primitives":[ + { + "attributes":{ + "POSITION":16906, + "NORMAL":16907, + "TEXCOORD_0":16908 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6732", + "primitives":[ + { + "attributes":{ + "POSITION":16909, + "NORMAL":16910 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.6317", + "primitives":[ + { + "attributes":{ + "POSITION":16911, + "NORMAL":16912, + "TEXCOORD_0":16913 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.4862", + "primitives":[ + { + "attributes":{ + "POSITION":16914, + "NORMAL":16915, + "TEXCOORD_0":16916 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8578", + "primitives":[ + { + "attributes":{ + "POSITION":16917, + "NORMAL":16918 + }, + "indices":977, + "material":3 + } + ] + }, + { + "name":"Mesh.6030", + "primitives":[ + { + "attributes":{ + "POSITION":16919, + "NORMAL":16920, + "TEXCOORD_0":16921 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.6820", + "primitives":[ + { + "attributes":{ + "POSITION":16922, + "NORMAL":16923, + "TEXCOORD_0":16924 + }, + "indices":2649, + "material":3 + } + ] + }, + { + "name":"Mesh.2839", + "primitives":[ + { + "attributes":{ + "POSITION":16925, + "NORMAL":16926 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.676", + "primitives":[ + { + "attributes":{ + "POSITION":16927, + "NORMAL":16928, + "TEXCOORD_0":16929 + }, + "indices":16362, + "material":0 + } + ] + }, + { + "name":"Mesh.5087", + "primitives":[ + { + "attributes":{ + "POSITION":16930, + "NORMAL":16931, + "TEXCOORD_0":16932 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5414", + "primitives":[ + { + "attributes":{ + "POSITION":16933, + "NORMAL":16934, + "TEXCOORD_0":16935 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7729", + "primitives":[ + { + "attributes":{ + "POSITION":16936, + "NORMAL":16937 + }, + "indices":16938, + "material":3 + } + ] + }, + { + "name":"Mesh.1846", + "primitives":[ + { + "attributes":{ + "POSITION":16939, + "NORMAL":16940 + }, + "indices":6016, + "material":75 + } + ] + }, + { + "name":"Mesh.2303", + "primitives":[ + { + "attributes":{ + "POSITION":16941, + "NORMAL":16942, + "TEXCOORD_0":16943 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8878", + "primitives":[ + { + "attributes":{ + "POSITION":16944, + "NORMAL":16945 + }, + "indices":957, + "material":3 + } + ] + }, + { + "name":"Mesh.6420", + "primitives":[ + { + "attributes":{ + "POSITION":16946, + "NORMAL":16947 + }, + "indices":6926, + "material":0 + } + ] + }, + { + "name":"Mesh.6636", + "primitives":[ + { + "attributes":{ + "POSITION":16948, + "NORMAL":16949 + }, + "indices":3889, + "material":0 + } + ] + }, + { + "name":"Mesh.7394", + "primitives":[ + { + "attributes":{ + "POSITION":16950, + "NORMAL":16951, + "TEXCOORD_0":16952 + }, + "indices":5647, + "material":7 + } + ] + }, + { + "name":"Mesh.7015", + "primitives":[ + { + "attributes":{ + "POSITION":16953, + "NORMAL":16954, + "TEXCOORD_0":16955 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.5421", + "primitives":[ + { + "attributes":{ + "POSITION":16956, + "NORMAL":16957, + "TEXCOORD_0":16958 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6286", + "primitives":[ + { + "attributes":{ + "POSITION":16959, + "NORMAL":16960, + "TEXCOORD_0":16961 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.6758", + "primitives":[ + { + "attributes":{ + "POSITION":16962, + "NORMAL":16963, + "TEXCOORD_0":16964 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.8385", + "primitives":[ + { + "attributes":{ + "POSITION":16965, + "NORMAL":16966 + }, + "indices":4876, + "material":3 + } + ] + }, + { + "name":"Mesh.8292", + "primitives":[ + { + "attributes":{ + "POSITION":16967, + "NORMAL":16968 + }, + "indices":16969, + "material":3 + } + ] + }, + { + "name":"Mesh.5303", + "primitives":[ + { + "attributes":{ + "POSITION":16970, + "NORMAL":16971, + "TEXCOORD_0":16972 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7730", + "primitives":[ + { + "attributes":{ + "POSITION":16973, + "NORMAL":16974 + }, + "indices":16975, + "material":3 + } + ] + }, + { + "name":"Mesh.6502", + "primitives":[ + { + "attributes":{ + "POSITION":16976, + "NORMAL":16977, + "TEXCOORD_0":16978 + }, + "indices":15347, + "material":0 + } + ] + }, + { + "name":"Mesh.8409", + "primitives":[ + { + "attributes":{ + "POSITION":16979, + "NORMAL":16980 + }, + "indices":16981, + "material":3 + } + ] + }, + { + "name":"Mesh.1099", + "primitives":[ + { + "attributes":{ + "POSITION":16982, + "NORMAL":16983, + "TEXCOORD_0":16984 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.5039", + "primitives":[ + { + "attributes":{ + "POSITION":16985, + "NORMAL":16986, + "TEXCOORD_0":16987 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6215", + "primitives":[ + { + "attributes":{ + "POSITION":16988, + "NORMAL":16989, + "TEXCOORD_0":16990 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.8693", + "primitives":[ + { + "attributes":{ + "POSITION":16991, + "NORMAL":16992 + }, + "indices":2042, + "material":3 + } + ] + }, + { + "name":"Mesh.6073", + "primitives":[ + { + "attributes":{ + "POSITION":16993, + "NORMAL":16994, + "TEXCOORD_0":16995 + }, + "indices":615, + "material":20 + } + ] + }, + { + "name":"Mesh.8249", + "primitives":[ + { + "attributes":{ + "POSITION":16996, + "NORMAL":16997 + }, + "indices":7350, + "material":3 + } + ] + }, + { + "name":"Mesh.6367", + "primitives":[ + { + "attributes":{ + "POSITION":16998, + "NORMAL":16999 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.5417", + "primitives":[ + { + "attributes":{ + "POSITION":17000, + "NORMAL":17001, + "TEXCOORD_0":17002 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6847", + "primitives":[ + { + "attributes":{ + "POSITION":17003, + "NORMAL":17004, + "TEXCOORD_0":17005 + }, + "indices":2362, + "material":3 + } + ] + }, + { + "name":"Mesh.6666", + "primitives":[ + { + "attributes":{ + "POSITION":17006, + "NORMAL":17007 + }, + "indices":4847, + "material":0 + } + ] + }, + { + "name":"Mesh.5191", + "primitives":[ + { + "attributes":{ + "POSITION":17008, + "NORMAL":17009, + "TEXCOORD_0":17010 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1672", + "primitives":[ + { + "attributes":{ + "POSITION":17011, + "NORMAL":17012, + "TEXCOORD_0":17013 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.6289", + "primitives":[ + { + "attributes":{ + "POSITION":17014, + "NORMAL":17015, + "TEXCOORD_0":17016 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.2374", + "primitives":[ + { + "attributes":{ + "POSITION":17017, + "NORMAL":17018, + "TEXCOORD_0":17019 + }, + "indices":380, + "material":0 + } + ] + }, + { + "name":"Mesh.2191", + "primitives":[ + { + "attributes":{ + "POSITION":17020, + "NORMAL":17021, + "TEXCOORD_0":17022 + }, + "indices":17023, + "material":0 + } + ] + }, + { + "name":"Mesh.6002", + "primitives":[ + { + "attributes":{ + "POSITION":17024, + "NORMAL":17025, + "TEXCOORD_0":17026 + }, + "indices":9545, + "material":11 + } + ] + }, + { + "name":"Mesh.7764", + "primitives":[ + { + "attributes":{ + "POSITION":17027, + "NORMAL":17028 + }, + "indices":17029, + "material":3 + } + ] + }, + { + "name":"Mesh.108", + "primitives":[ + { + "attributes":{ + "POSITION":17030, + "NORMAL":17031, + "TEXCOORD_0":17032 + }, + "indices":17033, + "material":0 + } + ] + }, + { + "name":"Mesh.5706", + "primitives":[ + { + "attributes":{ + "POSITION":17034, + "NORMAL":17035 + }, + "indices":1775, + "material":0 + } + ] + }, + { + "name":"Mesh.6042", + "primitives":[ + { + "attributes":{ + "POSITION":17036, + "NORMAL":17037, + "TEXCOORD_0":17038 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.7949", + "primitives":[ + { + "attributes":{ + "POSITION":17039, + "NORMAL":17040 + }, + "indices":17041, + "material":3 + } + ] + }, + { + "name":"Mesh.2290", + "primitives":[ + { + "attributes":{ + "POSITION":17042, + "NORMAL":17043, + "TEXCOORD_0":17044 + }, + "indices":4391, + "material":0 + } + ] + }, + { + "name":"Mesh.558", + "primitives":[ + { + "attributes":{ + "POSITION":17045, + "NORMAL":17046, + "TEXCOORD_0":17047 + }, + "indices":10494, + "material":0 + } + ] + }, + { + "name":"Mesh.6832", + "primitives":[ + { + "attributes":{ + "POSITION":17048, + "NORMAL":17049, + "TEXCOORD_0":17050 + }, + "indices":5899, + "material":3 + } + ] + }, + { + "name":"Mesh.2719", + "primitives":[ + { + "attributes":{ + "POSITION":17051, + "NORMAL":17052, + "TEXCOORD_0":17053 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.7140", + "primitives":[ + { + "attributes":{ + "POSITION":17054, + "NORMAL":17055, + "TEXCOORD_0":17056 + }, + "indices":106, + "material":7 + } + ] + }, + { + "name":"Mesh.606", + "primitives":[ + { + "attributes":{ + "POSITION":17057, + "NORMAL":17058, + "TEXCOORD_0":17059 + }, + "indices":15979, + "material":3 + } + ] + }, + { + "name":"Mesh.7190", + "primitives":[ + { + "attributes":{ + "POSITION":17060, + "NORMAL":17061, + "TEXCOORD_0":17062 + }, + "indices":8452, + "material":7 + } + ] + }, + { + "name":"Mesh.6671", + "primitives":[ + { + "attributes":{ + "POSITION":17063, + "NORMAL":17064 + }, + "indices":7227, + "material":0 + } + ] + }, + { + "name":"Mesh.5235", + "primitives":[ + { + "attributes":{ + "POSITION":17065, + "NORMAL":17066, + "TEXCOORD_0":17067 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5588", + "primitives":[ + { + "attributes":{ + "POSITION":17068, + "NORMAL":17069, + "TEXCOORD_0":17070 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2804", + "primitives":[ + { + "attributes":{ + "POSITION":17071, + "NORMAL":17072, + "TEXCOORD_0":17073 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.5571", + "primitives":[ + { + "attributes":{ + "POSITION":17074, + "NORMAL":17075, + "TEXCOORD_0":17076 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2568", + "primitives":[ + { + "attributes":{ + "POSITION":17077, + "NORMAL":17078, + "TEXCOORD_0":17079 + }, + "indices":1400, + "material":0 + } + ] + }, + { + "name":"Mesh.7088", + "primitives":[ + { + "attributes":{ + "POSITION":17080, + "NORMAL":17081, + "TEXCOORD_0":17082 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.383", + "primitives":[ + { + "attributes":{ + "POSITION":17083, + "NORMAL":17084, + "TEXCOORD_0":17085 + }, + "indices":1179, + "material":0 + } + ] + }, + { + "name":"Mesh.1675", + "primitives":[ + { + "attributes":{ + "POSITION":17086, + "NORMAL":17087, + "TEXCOORD_0":17088 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.7264", + "primitives":[ + { + "attributes":{ + "POSITION":17089, + "NORMAL":17090, + "TEXCOORD_0":17091 + }, + "indices":17092, + "material":7 + } + ] + }, + { + "name":"Mesh.110", + "primitives":[ + { + "attributes":{ + "POSITION":17093, + "NORMAL":17094, + "TEXCOORD_0":17095 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.6873", + "primitives":[ + { + "attributes":{ + "POSITION":17096, + "NORMAL":17097 + }, + "indices":1946, + "material":0 + } + ] + }, + { + "name":"Mesh.7582", + "primitives":[ + { + "attributes":{ + "POSITION":17098, + "NORMAL":17099 + }, + "indices":1235, + "material":3 + } + ] + }, + { + "name":"Mesh.6098", + "primitives":[ + { + "attributes":{ + "POSITION":17100, + "NORMAL":17101, + "TEXCOORD_0":17102 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.8744", + "primitives":[ + { + "attributes":{ + "POSITION":17103, + "NORMAL":17104 + }, + "indices":17105, + "material":3 + } + ] + }, + { + "name":"Mesh.2543", + "primitives":[ + { + "attributes":{ + "POSITION":17106, + "NORMAL":17107, + "TEXCOORD_0":17108 + }, + "indices":26, + "material":4 + } + ] + }, + { + "name":"Mesh.7618", + "primitives":[ + { + "attributes":{ + "POSITION":17109, + "NORMAL":17110 + }, + "indices":17111, + "material":3 + } + ] + }, + { + "name":"Mesh.2243", + "primitives":[ + { + "attributes":{ + "POSITION":17112, + "NORMAL":17113, + "TEXCOORD_0":17114 + }, + "indices":4675, + "material":0 + } + ] + }, + { + "name":"Mesh.6525", + "primitives":[ + { + "attributes":{ + "POSITION":17115, + "NORMAL":17116, + "TEXCOORD_0":17117 + }, + "indices":5871, + "material":0 + } + ] + }, + { + "name":"Mesh.5540", + "primitives":[ + { + "attributes":{ + "POSITION":17118, + "NORMAL":17119, + "TEXCOORD_0":17120 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6372", + "primitives":[ + { + "attributes":{ + "POSITION":17121, + "NORMAL":17122 + }, + "indices":17123, + "material":0 + } + ] + }, + { + "name":"Mesh.9087", + "primitives":[ + { + "attributes":{ + "POSITION":17124, + "NORMAL":17125, + "TEXCOORD_0":17126 + }, + "indices":2311, + "material":7 + } + ] + }, + { + "name":"Mesh.5389", + "primitives":[ + { + "attributes":{ + "POSITION":17127, + "NORMAL":17128, + "TEXCOORD_0":17129 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6085", + "primitives":[ + { + "attributes":{ + "POSITION":17130, + "NORMAL":17131, + "TEXCOORD_0":17132 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.7233", + "primitives":[ + { + "attributes":{ + "POSITION":17133, + "NORMAL":17134, + "TEXCOORD_0":17135 + }, + "indices":17136, + "material":7 + } + ] + }, + { + "name":"Mesh.9026", + "primitives":[ + { + "attributes":{ + "POSITION":17137, + "NORMAL":17138, + "TEXCOORD_0":17139 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.7551", + "primitives":[ + { + "attributes":{ + "POSITION":17140, + "NORMAL":17141 + }, + "indices":2590, + "material":3 + } + ] + }, + { + "name":"Mesh.6588", + "primitives":[ + { + "attributes":{ + "POSITION":17142, + "NORMAL":17143 + }, + "indices":7704, + "material":0 + } + ] + }, + { + "name":"Mesh.2147", + "primitives":[ + { + "attributes":{ + "POSITION":17144, + "NORMAL":17145, + "TEXCOORD_0":17146 + }, + "indices":4772, + "material":3 + } + ] + }, + { + "name":"Mesh.2611", + "primitives":[ + { + "attributes":{ + "POSITION":17147, + "NORMAL":17148 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.9122", + "primitives":[ + { + "attributes":{ + "POSITION":17149, + "NORMAL":17150, + "TEXCOORD_0":17151 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.4846", + "primitives":[ + { + "attributes":{ + "POSITION":17152, + "NORMAL":17153, + "TEXCOORD_0":17154 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.895", + "primitives":[ + { + "attributes":{ + "POSITION":17155, + "NORMAL":17156, + "TEXCOORD_0":17157 + }, + "indices":366, + "material":0 + } + ] + }, + { + "name":"Mesh.1682", + "primitives":[ + { + "attributes":{ + "POSITION":17158, + "NORMAL":17159, + "TEXCOORD_0":17160 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.2787", + "primitives":[ + { + "attributes":{ + "POSITION":17161, + "NORMAL":17162, + "TEXCOORD_0":17163 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.5217", + "primitives":[ + { + "attributes":{ + "POSITION":17164, + "NORMAL":17165, + "TEXCOORD_0":17166 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7776", + "primitives":[ + { + "attributes":{ + "POSITION":17167, + "NORMAL":17168 + }, + "indices":17169, + "material":3 + } + ] + }, + { + "name":"Mesh.7162", + "primitives":[ + { + "attributes":{ + "POSITION":17170, + "NORMAL":17171, + "TEXCOORD_0":17172 + }, + "indices":4166, + "material":7 + } + ] + }, + { + "name":"Mesh.6190", + "primitives":[ + { + "attributes":{ + "POSITION":17173, + "NORMAL":17174, + "TEXCOORD_0":17175 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.5614", + "primitives":[ + { + "attributes":{ + "POSITION":17176, + "NORMAL":17177, + "TEXCOORD_0":17178 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.331", + "primitives":[ + { + "attributes":{ + "POSITION":17179, + "NORMAL":17180, + "TEXCOORD_0":17181 + }, + "indices":6013, + "material":0 + } + ] + }, + { + "name":"Mesh.8588", + "primitives":[ + { + "attributes":{ + "POSITION":17182, + "NORMAL":17183 + }, + "indices":11494, + "material":3 + } + ] + }, + { + "name":"Mesh.6415", + "primitives":[ + { + "attributes":{ + "POSITION":17184, + "NORMAL":17185 + }, + "indices":17186, + "material":0 + } + ] + }, + { + "name":"Mesh.9192", + "primitives":[ + { + "attributes":{ + "POSITION":17187, + "NORMAL":17188, + "TEXCOORD_0":17189 + }, + "indices":247, + "material":7 + } + ] + }, + { + "name":"Mesh.692", + "primitives":[ + { + "attributes":{ + "POSITION":17190, + "NORMAL":17191, + "TEXCOORD_0":17192 + }, + "indices":9993, + "material":0 + } + ] + }, + { + "name":"Mesh.6737", + "primitives":[ + { + "attributes":{ + "POSITION":17193, + "NORMAL":17194 + }, + "indices":8629, + "material":0 + } + ] + }, + { + "name":"Mesh.6984", + "primitives":[ + { + "attributes":{ + "POSITION":17195, + "NORMAL":17196, + "TEXCOORD_0":17197 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.1040", + "primitives":[ + { + "attributes":{ + "POSITION":17198, + "NORMAL":17199, + "TEXCOORD_0":17200 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.7594", + "primitives":[ + { + "attributes":{ + "POSITION":17201, + "NORMAL":17202 + }, + "indices":1663, + "material":3 + } + ] + }, + { + "name":"Mesh.8066", + "primitives":[ + { + "attributes":{ + "POSITION":17203, + "NORMAL":17204, + "TEXCOORD_0":17205 + }, + "indices":1829, + "material":0 + } + ] + }, + { + "name":"Mesh.753", + "primitives":[ + { + "attributes":{ + "POSITION":17206, + "NORMAL":17207, + "TEXCOORD_0":17208 + }, + "indices":3464, + "material":0 + } + ] + }, + { + "name":"Mesh.8239", + "primitives":[ + { + "attributes":{ + "POSITION":17209, + "NORMAL":17210 + }, + "indices":5724, + "material":3 + } + ] + }, + { + "name":"Mesh.4889", + "primitives":[ + { + "attributes":{ + "POSITION":17211, + "NORMAL":17212, + "TEXCOORD_0":17213 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.265", + "primitives":[ + { + "attributes":{ + "POSITION":17214, + "NORMAL":17215, + "TEXCOORD_0":17216 + }, + "indices":17217, + "material":3 + } + ] + }, + { + "name":"Mesh.5761", + "primitives":[ + { + "attributes":{ + "POSITION":17218, + "NORMAL":17219 + }, + "indices":10555, + "material":0 + } + ] + }, + { + "name":"Mesh.1075", + "primitives":[ + { + "attributes":{ + "POSITION":17220, + "NORMAL":17221, + "TEXCOORD_0":17222 + }, + "indices":296, + "material":4 + } + ] + }, + { + "name":"Mesh.6909", + "primitives":[ + { + "attributes":{ + "POSITION":17223, + "NORMAL":17224, + "TEXCOORD_0":17225 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.7381", + "primitives":[ + { + "attributes":{ + "POSITION":17226, + "NORMAL":17227, + "TEXCOORD_0":17228 + }, + "indices":3535, + "material":7 + } + ] + }, + { + "name":"Mesh.5531", + "primitives":[ + { + "attributes":{ + "POSITION":17229, + "NORMAL":17230, + "TEXCOORD_0":17231 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8749", + "primitives":[ + { + "attributes":{ + "POSITION":17232, + "NORMAL":17233 + }, + "indices":10994, + "material":3 + } + ] + }, + { + "name":"Mesh.6159", + "primitives":[ + { + "attributes":{ + "POSITION":17234, + "NORMAL":17235, + "TEXCOORD_0":17236 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.4818", + "primitives":[ + { + "attributes":{ + "POSITION":17237, + "NORMAL":17238, + "TEXCOORD_0":17239 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6855", + "primitives":[ + { + "attributes":{ + "POSITION":17240, + "NORMAL":17241, + "TEXCOORD_0":17242 + }, + "indices":5926, + "material":0 + } + ] + }, + { + "name":"Mesh.9132", + "primitives":[ + { + "attributes":{ + "POSITION":17243, + "NORMAL":17244, + "TEXCOORD_0":17245 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.5424", + "primitives":[ + { + "attributes":{ + "POSITION":17246, + "NORMAL":17247, + "TEXCOORD_0":17248 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5330", + "primitives":[ + { + "attributes":{ + "POSITION":17249, + "NORMAL":17250, + "TEXCOORD_0":17251 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6026", + "primitives":[ + { + "attributes":{ + "POSITION":17252, + "NORMAL":17253, + "TEXCOORD_0":17254 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.1109", + "primitives":[ + { + "attributes":{ + "POSITION":17255, + "NORMAL":17256, + "TEXCOORD_0":17257 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.7350", + "primitives":[ + { + "attributes":{ + "POSITION":17258, + "NORMAL":17259, + "TEXCOORD_0":17260 + }, + "indices":525, + "material":7 + } + ] + }, + { + "name":"Mesh.4932", + "primitives":[ + { + "attributes":{ + "POSITION":17261, + "NORMAL":17262, + "TEXCOORD_0":17263 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1889", + "primitives":[ + { + "attributes":{ + "POSITION":17264, + "NORMAL":17265 + }, + "indices":386, + "material":0 + } + ] + }, + { + "name":"Mesh.5259", + "primitives":[ + { + "attributes":{ + "POSITION":17266, + "NORMAL":17267, + "TEXCOORD_0":17268 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7526", + "primitives":[ + { + "attributes":{ + "POSITION":17269, + "NORMAL":17270 + }, + "indices":17271, + "material":3 + } + ] + }, + { + "name":"Mesh.8120", + "primitives":[ + { + "attributes":{ + "POSITION":17272, + "NORMAL":17273 + }, + "indices":243, + "material":3 + } + ] + }, + { + "name":"Mesh.6016", + "primitives":[ + { + "attributes":{ + "POSITION":17274, + "NORMAL":17275, + "TEXCOORD_0":17276 + }, + "indices":927, + "material":12 + } + ] + }, + { + "name":"Mesh.416", + "primitives":[ + { + "attributes":{ + "POSITION":17277, + "NORMAL":17278 + }, + "indices":2624, + "material":0 + } + ] + }, + { + "name":"Mesh.9010", + "primitives":[ + { + "attributes":{ + "POSITION":17279, + "NORMAL":17280, + "TEXCOORD_0":17281 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.7058", + "primitives":[ + { + "attributes":{ + "POSITION":17282, + "NORMAL":17283 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.5464", + "primitives":[ + { + "attributes":{ + "POSITION":17284, + "NORMAL":17285, + "TEXCOORD_0":17286 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.4821", + "primitives":[ + { + "attributes":{ + "POSITION":17287, + "NORMAL":17288, + "TEXCOORD_0":17289 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6316", + "primitives":[ + { + "attributes":{ + "POSITION":17290, + "NORMAL":17291, + "TEXCOORD_0":17292 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.2797", + "primitives":[ + { + "attributes":{ + "POSITION":17293, + "NORMAL":17294, + "TEXCOORD_0":17295 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.4861", + "primitives":[ + { + "attributes":{ + "POSITION":17296, + "NORMAL":17297, + "TEXCOORD_0":17298 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6819", + "primitives":[ + { + "attributes":{ + "POSITION":17299, + "NORMAL":17300, + "TEXCOORD_0":17301 + }, + "indices":5899, + "material":3 + } + ] + }, + { + "name":"Mesh.4901", + "primitives":[ + { + "attributes":{ + "POSITION":17302, + "NORMAL":17303, + "TEXCOORD_0":17304 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1254", + "primitives":[ + { + "attributes":{ + "POSITION":17305, + "NORMAL":17306, + "TEXCOORD_0":17307 + }, + "indices":17308, + "material":15 + } + ] + }, + { + "name":"Mesh.7587", + "primitives":[ + { + "attributes":{ + "POSITION":17309, + "NORMAL":17310 + }, + "indices":3094, + "material":3 + } + ] + }, + { + "name":"Mesh.2838", + "primitives":[ + { + "attributes":{ + "POSITION":17311, + "NORMAL":17312 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.5086", + "primitives":[ + { + "attributes":{ + "POSITION":17313, + "NORMAL":17314, + "TEXCOORD_0":17315 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5413", + "primitives":[ + { + "attributes":{ + "POSITION":17316, + "NORMAL":17317, + "TEXCOORD_0":17318 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2301", + "primitives":[ + { + "attributes":{ + "POSITION":17319, + "NORMAL":17320, + "TEXCOORD_0":17321 + }, + "indices":17322, + "material":0 + } + ] + }, + { + "name":"Mesh.2131", + "primitives":[ + { + "attributes":{ + "POSITION":17323, + "NORMAL":17324, + "TEXCOORD_0":17325 + }, + "indices":17326, + "material":3 + } + ] + }, + { + "name":"Mesh.7393", + "primitives":[ + { + "attributes":{ + "POSITION":17327, + "NORMAL":17328, + "TEXCOORD_0":17329 + }, + "indices":17330, + "material":7 + } + ] + }, + { + "name":"Mesh.6285", + "primitives":[ + { + "attributes":{ + "POSITION":17331, + "NORMAL":17332, + "TEXCOORD_0":17333 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.6757", + "primitives":[ + { + "attributes":{ + "POSITION":17334, + "NORMAL":17335 + }, + "indices":16749, + "material":0 + } + ] + }, + { + "name":"Mesh.5302", + "primitives":[ + { + "attributes":{ + "POSITION":17336, + "NORMAL":17337, + "TEXCOORD_0":17338 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7146", + "primitives":[ + { + "attributes":{ + "POSITION":17339, + "NORMAL":17340, + "TEXCOORD_0":17341 + }, + "indices":4372, + "material":7 + } + ] + }, + { + "name":"Mesh.6501", + "primitives":[ + { + "attributes":{ + "POSITION":17342, + "NORMAL":17343, + "TEXCOORD_0":17344 + }, + "indices":15674, + "material":0 + } + ] + }, + { + "name":"Mesh.1201", + "primitives":[ + { + "attributes":{ + "POSITION":17345, + "NORMAL":17346 + }, + "indices":114, + "material":1 + } + ] + }, + { + "name":"Mesh.384", + "primitives":[ + { + "attributes":{ + "POSITION":17347, + "NORMAL":17348, + "TEXCOORD_0":17349 + }, + "indices":1528, + "material":0 + } + ] + }, + { + "name":"Mesh.1098", + "primitives":[ + { + "attributes":{ + "POSITION":17350, + "NORMAL":17351, + "TEXCOORD_0":17352 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.6214", + "primitives":[ + { + "attributes":{ + "POSITION":17353, + "NORMAL":17354, + "TEXCOORD_0":17355 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.6273", + "primitives":[ + { + "attributes":{ + "POSITION":17356, + "NORMAL":17357, + "TEXCOORD_0":17358 + }, + "indices":2118, + "material":12 + } + ] + }, + { + "name":"Mesh.6072", + "primitives":[ + { + "attributes":{ + "POSITION":17359, + "NORMAL":17360, + "TEXCOORD_0":17361 + }, + "indices":202, + "material":11 + } + ] + }, + { + "name":"Mesh.6982", + "primitives":[ + { + "attributes":{ + "POSITION":17362, + "NORMAL":17363, + "TEXCOORD_0":17364 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.201", + "primitives":[ + { + "attributes":{ + "POSITION":17365, + "NORMAL":17366, + "TEXCOORD_0":17367 + }, + "indices":3846, + "material":34 + } + ] + }, + { + "name":"Mesh.2979", + "primitives":[ + { + "attributes":{ + "POSITION":17368, + "NORMAL":17369, + "TEXCOORD_0":17370 + }, + "indices":16552, + "material":7 + } + ] + }, + { + "name":"Mesh.1671", + "primitives":[ + { + "attributes":{ + "POSITION":17371, + "NORMAL":17372, + "TEXCOORD_0":17373 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.6933", + "primitives":[ + { + "attributes":{ + "POSITION":17374, + "NORMAL":17375 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.9205", + "primitives":[ + { + "attributes":{ + "POSITION":17376, + "NORMAL":17377, + "TEXCOORD_0":17378 + }, + "indices":247, + "material":7 + } + ] + }, + { + "name":"Mesh.2190", + "primitives":[ + { + "attributes":{ + "POSITION":17379, + "NORMAL":17380, + "TEXCOORD_0":17381 + }, + "indices":17382, + "material":3 + } + ] + }, + { + "name":"Mesh.6001", + "primitives":[ + { + "attributes":{ + "POSITION":17383, + "NORMAL":17384, + "TEXCOORD_0":17385 + }, + "indices":9545, + "material":11 + } + ] + }, + { + "name":"Mesh.7763", + "primitives":[ + { + "attributes":{ + "POSITION":17386, + "NORMAL":17387 + }, + "indices":17388, + "material":3 + } + ] + }, + { + "name":"Mesh.8063", + "primitives":[ + { + "attributes":{ + "POSITION":17389, + "NORMAL":17390, + "TEXCOORD_0":17391 + }, + "indices":2838, + "material":0 + } + ] + }, + { + "name":"Mesh.5705", + "primitives":[ + { + "attributes":{ + "POSITION":17392, + "NORMAL":17393 + }, + "indices":262, + "material":0 + } + ] + }, + { + "name":"Mesh.2709", + "primitives":[ + { + "attributes":{ + "POSITION":17394, + "NORMAL":17395, + "TEXCOORD_0":17396 + }, + "indices":140, + "material":0 + } + ] + }, + { + "name":"Mesh.6041", + "primitives":[ + { + "attributes":{ + "POSITION":17397, + "NORMAL":17398, + "TEXCOORD_0":17399 + }, + "indices":1132, + "material":23 + } + ] + }, + { + "name":"Mesh.7948", + "primitives":[ + { + "attributes":{ + "POSITION":17400, + "NORMAL":17401 + }, + "indices":17402, + "material":3 + } + ] + }, + { + "name":"Mesh.6793", + "primitives":[ + { + "attributes":{ + "POSITION":17403, + "NORMAL":17404, + "TEXCOORD_0":17405 + }, + "indices":17406, + "material":3 + } + ] + }, + { + "name":"Mesh.6831", + "primitives":[ + { + "attributes":{ + "POSITION":17407, + "NORMAL":17408, + "TEXCOORD_0":17409 + }, + "indices":5625, + "material":3 + } + ] + }, + { + "name":"Mesh.7189", + "primitives":[ + { + "attributes":{ + "POSITION":17410, + "NORMAL":17411, + "TEXCOORD_0":17412 + }, + "indices":16221, + "material":7 + } + ] + }, + { + "name":"Mesh.5570", + "primitives":[ + { + "attributes":{ + "POSITION":17413, + "NORMAL":17414, + "TEXCOORD_0":17415 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7346", + "primitives":[ + { + "attributes":{ + "POSITION":17416, + "NORMAL":17417, + "TEXCOORD_0":17418 + }, + "indices":9378, + "material":7 + } + ] + }, + { + "name":"Mesh.2567", + "primitives":[ + { + "attributes":{ + "POSITION":17419, + "NORMAL":17420, + "TEXCOORD_0":17421 + }, + "indices":914, + "material":0 + } + ] + }, + { + "name":"Mesh.6584", + "primitives":[ + { + "attributes":{ + "POSITION":17422, + "NORMAL":17423 + }, + "indices":2295, + "material":0 + } + ] + }, + { + "name":"Mesh.7087", + "primitives":[ + { + "attributes":{ + "POSITION":17424, + "NORMAL":17425 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.9197", + "primitives":[ + { + "attributes":{ + "POSITION":17426, + "NORMAL":17427, + "TEXCOORD_0":17428 + }, + "indices":8495, + "material":7 + } + ] + }, + { + "name":"Mesh.1674", + "primitives":[ + { + "attributes":{ + "POSITION":17429, + "NORMAL":17430, + "TEXCOORD_0":17431 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.6203", + "primitives":[ + { + "attributes":{ + "POSITION":17432, + "NORMAL":17433, + "TEXCOORD_0":17434 + }, + "indices":927, + "material":12 + } + ] + }, + { + "name":"Mesh.1995", + "primitives":[ + { + "attributes":{ + "POSITION":17435, + "NORMAL":17436, + "TEXCOORD_0":17437 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.8451", + "primitives":[ + { + "attributes":{ + "POSITION":17438, + "NORMAL":17439 + }, + "indices":17440, + "material":3 + } + ] + }, + { + "name":"Mesh.2749", + "primitives":[ + { + "attributes":{ + "POSITION":17441, + "NORMAL":17442, + "TEXCOORD_0":17443 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.773", + "primitives":[ + { + "attributes":{ + "POSITION":17444, + "NORMAL":17445, + "TEXCOORD_0":17446 + }, + "indices":639, + "material":0 + } + ] + }, + { + "name":"Mesh.2788", + "primitives":[ + { + "attributes":{ + "POSITION":17447, + "NORMAL":17448, + "TEXCOORD_0":17449 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.035", + "primitives":[ + { + "attributes":{ + "POSITION":17450, + "NORMAL":17451 + }, + "indices":10644, + "material":22 + } + ] + }, + { + "name":"Mesh.6740", + "primitives":[ + { + "attributes":{ + "POSITION":17452, + "NORMAL":17453 + }, + "indices":7471, + "material":0 + } + ] + }, + { + "name":"Mesh.8743", + "primitives":[ + { + "attributes":{ + "POSITION":17454, + "NORMAL":17455 + }, + "indices":8043, + "material":3 + } + ] + }, + { + "name":"Mesh.2242", + "primitives":[ + { + "attributes":{ + "POSITION":17456, + "NORMAL":17457, + "TEXCOORD_0":17458 + }, + "indices":3972, + "material":0 + } + ] + }, + { + "name":"Mesh.5539", + "primitives":[ + { + "attributes":{ + "POSITION":17459, + "NORMAL":17460, + "TEXCOORD_0":17461 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6371", + "primitives":[ + { + "attributes":{ + "POSITION":17462, + "NORMAL":17463 + }, + "indices":17464, + "material":0 + } + ] + }, + { + "name":"Mesh.5388", + "primitives":[ + { + "attributes":{ + "POSITION":17465, + "NORMAL":17466, + "TEXCOORD_0":17467 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7056", + "primitives":[ + { + "attributes":{ + "POSITION":17468, + "NORMAL":17469, + "TEXCOORD_0":17470 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.6084", + "primitives":[ + { + "attributes":{ + "POSITION":17471, + "NORMAL":17472, + "TEXCOORD_0":17473 + }, + "indices":5922, + "material":33 + } + ] + }, + { + "name":"Mesh.7232", + "primitives":[ + { + "attributes":{ + "POSITION":17474, + "NORMAL":17475, + "TEXCOORD_0":17476 + }, + "indices":15252, + "material":7 + } + ] + }, + { + "name":"Mesh.811", + "primitives":[ + { + "attributes":{ + "POSITION":17477, + "NORMAL":17478, + "TEXCOORD_0":17479 + }, + "indices":17480, + "material":3 + } + ] + }, + { + "name":"Mesh.7550", + "primitives":[ + { + "attributes":{ + "POSITION":17481, + "NORMAL":17482 + }, + "indices":6574, + "material":3 + } + ] + }, + { + "name":"Mesh.6587", + "primitives":[ + { + "attributes":{ + "POSITION":17483, + "NORMAL":17484 + }, + "indices":7227, + "material":0 + } + ] + }, + { + "name":"Mesh.2146", + "primitives":[ + { + "attributes":{ + "POSITION":17485, + "NORMAL":17486, + "TEXCOORD_0":17487 + }, + "indices":17488, + "material":3 + } + ] + }, + { + "name":"Mesh.472", + "primitives":[ + { + "attributes":{ + "POSITION":17489, + "NORMAL":17490 + }, + "indices":2261, + "material":3 + } + ] + }, + { + "name":"Mesh.2610", + "primitives":[ + { + "attributes":{ + "POSITION":17491, + "NORMAL":17492, + "TEXCOORD_0":17493 + }, + "indices":5286, + "material":41 + } + ] + }, + { + "name":"Mesh.4845", + "primitives":[ + { + "attributes":{ + "POSITION":17494, + "NORMAL":17495, + "TEXCOORD_0":17496 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.894", + "primitives":[ + { + "attributes":{ + "POSITION":17497, + "NORMAL":17498, + "TEXCOORD_0":17499 + }, + "indices":639, + "material":0 + } + ] + }, + { + "name":"Mesh.7775", + "primitives":[ + { + "attributes":{ + "POSITION":17500, + "NORMAL":17501 + }, + "indices":17502, + "material":3 + } + ] + }, + { + "name":"Mesh.7624", + "primitives":[ + { + "attributes":{ + "POSITION":17503, + "NORMAL":17504 + }, + "indices":16969, + "material":3 + } + ] + }, + { + "name":"Mesh.2822", + "primitives":[ + { + "attributes":{ + "POSITION":17505, + "NORMAL":17506 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.332", + "primitives":[ + { + "attributes":{ + "POSITION":17507, + "NORMAL":17508, + "TEXCOORD_0":17509 + }, + "indices":2842, + "material":0 + } + ] + }, + { + "name":"Mesh.8927", + "primitives":[ + { + "attributes":{ + "POSITION":17510, + "NORMAL":17511, + "TEXCOORD_0":17512 + }, + "indices":4968, + "material":7 + } + ] + }, + { + "name":"Mesh.6414", + "primitives":[ + { + "attributes":{ + "POSITION":17513, + "NORMAL":17514 + }, + "indices":735, + "material":0 + } + ] + }, + { + "name":"Mesh.7511", + "primitives":[ + { + "attributes":{ + "POSITION":17515, + "NORMAL":17516 + }, + "indices":17517, + "material":3 + } + ] + }, + { + "name":"Mesh.7704", + "primitives":[ + { + "attributes":{ + "POSITION":17518, + "NORMAL":17519 + }, + "indices":17520, + "material":3 + } + ] + }, + { + "name":"Mesh.8045", + "primitives":[ + { + "attributes":{ + "POSITION":17521, + "NORMAL":17522, + "TEXCOORD_0":17523 + }, + "indices":5807, + "material":3 + } + ] + }, + { + "name":"Mesh.578", + "primitives":[ + { + "attributes":{ + "POSITION":17524, + "NORMAL":17525, + "TEXCOORD_0":17526 + }, + "indices":5213, + "material":0 + } + ] + }, + { + "name":"Mesh.2691", + "primitives":[ + { + "attributes":{ + "POSITION":17527, + "NORMAL":17528, + "TEXCOORD_0":17529 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.7328", + "primitives":[ + { + "attributes":{ + "POSITION":17530, + "NORMAL":17531, + "TEXCOORD_0":17532 + }, + "indices":17533, + "material":7 + } + ] + }, + { + "name":"Mesh.5980", + "primitives":[ + { + "attributes":{ + "POSITION":17534, + "NORMAL":17535, + "TEXCOORD_0":17536 + }, + "indices":8392, + "material":12 + } + ] + }, + { + "name":"Mesh.1039", + "primitives":[ + { + "attributes":{ + "POSITION":17537, + "NORMAL":17538, + "TEXCOORD_0":17539 + }, + "indices":140, + "material":0 + } + ] + }, + { + "name":"Mesh.5335", + "primitives":[ + { + "attributes":{ + "POSITION":17540, + "NORMAL":17541, + "TEXCOORD_0":17542 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7593", + "primitives":[ + { + "attributes":{ + "POSITION":17543, + "NORMAL":17544 + }, + "indices":13151, + "material":3 + } + ] + }, + { + "name":"Mesh.8065", + "primitives":[ + { + "attributes":{ + "POSITION":17545, + "NORMAL":17546, + "TEXCOORD_0":17547 + }, + "indices":1864, + "material":0 + } + ] + }, + { + "name":"Mesh.8697", + "primitives":[ + { + "attributes":{ + "POSITION":17548, + "NORMAL":17549 + }, + "indices":2915, + "material":3 + } + ] + }, + { + "name":"Mesh.752", + "primitives":[ + { + "attributes":{ + "POSITION":17550, + "NORMAL":17551, + "TEXCOORD_0":17552 + }, + "indices":3831, + "material":0 + } + ] + }, + { + "name":"Mesh.4888", + "primitives":[ + { + "attributes":{ + "POSITION":17553, + "NORMAL":17554, + "TEXCOORD_0":17555 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8784", + "primitives":[ + { + "attributes":{ + "POSITION":17556, + "NORMAL":17557 + }, + "indices":10578, + "material":3 + } + ] + }, + { + "name":"Mesh.5760", + "primitives":[ + { + "attributes":{ + "POSITION":17558, + "NORMAL":17559 + }, + "indices":17560, + "material":0 + } + ] + }, + { + "name":"Mesh.8433", + "primitives":[ + { + "attributes":{ + "POSITION":17561, + "NORMAL":17562 + }, + "indices":17563, + "material":3 + } + ] + }, + { + "name":"Mesh.6065", + "primitives":[ + { + "attributes":{ + "POSITION":17564, + "NORMAL":17565, + "TEXCOORD_0":17566 + }, + "indices":947, + "material":5 + } + ] + }, + { + "name":"Mesh.7756", + "primitives":[ + { + "attributes":{ + "POSITION":17567, + "NORMAL":17568 + }, + "indices":17569, + "material":3 + } + ] + }, + { + "name":"Mesh.6908", + "primitives":[ + { + "attributes":{ + "POSITION":17570, + "NORMAL":17571 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.5741", + "primitives":[ + { + "attributes":{ + "POSITION":17572, + "NORMAL":17573 + }, + "indices":735, + "material":0 + } + ] + }, + { + "name":"Mesh.4817", + "primitives":[ + { + "attributes":{ + "POSITION":17574, + "NORMAL":17575, + "TEXCOORD_0":17576 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.721", + "primitives":[ + { + "attributes":{ + "POSITION":17577, + "NORMAL":17578, + "TEXCOORD_0":17579 + }, + "indices":708, + "material":0 + } + ] + }, + { + "name":"Mesh.8848", + "primitives":[ + { + "attributes":{ + "POSITION":17580, + "NORMAL":17581 + }, + "indices":5800, + "material":3 + } + ] + }, + { + "name":"Mesh.7747", + "primitives":[ + { + "attributes":{ + "POSITION":17582, + "NORMAL":17583 + }, + "indices":17584, + "material":3 + } + ] + }, + { + "name":"Mesh.5329", + "primitives":[ + { + "attributes":{ + "POSITION":17585, + "NORMAL":17586, + "TEXCOORD_0":17587 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6025", + "primitives":[ + { + "attributes":{ + "POSITION":17588, + "NORMAL":17589, + "TEXCOORD_0":17590 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.7173", + "primitives":[ + { + "attributes":{ + "POSITION":17591, + "NORMAL":17592, + "TEXCOORD_0":17593 + }, + "indices":17594, + "material":7 + } + ] + }, + { + "name":"Mesh.7630", + "primitives":[ + { + "attributes":{ + "POSITION":17595, + "NORMAL":17596 + }, + "indices":2251, + "material":3 + } + ] + }, + { + "name":"Mesh.8071", + "primitives":[ + { + "attributes":{ + "POSITION":17597, + "NORMAL":17598, + "TEXCOORD_0":17599 + }, + "indices":4080, + "material":3 + } + ] + }, + { + "name":"Mesh.6762", + "primitives":[ + { + "attributes":{ + "POSITION":17600, + "NORMAL":17601 + }, + "indices":1987, + "material":0 + } + ] + }, + { + "name":"Mesh.4931", + "primitives":[ + { + "attributes":{ + "POSITION":17602, + "NORMAL":17603, + "TEXCOORD_0":17604 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5258", + "primitives":[ + { + "attributes":{ + "POSITION":17605, + "NORMAL":17606, + "TEXCOORD_0":17607 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7525", + "primitives":[ + { + "attributes":{ + "POSITION":17608, + "NORMAL":17609 + }, + "indices":4062, + "material":3 + } + ] + }, + { + "name":"Mesh.9129", + "primitives":[ + { + "attributes":{ + "POSITION":17610, + "NORMAL":17611, + "TEXCOORD_0":17612 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.6315", + "primitives":[ + { + "attributes":{ + "POSITION":17613, + "NORMAL":17614, + "TEXCOORD_0":17615 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.5525", + "primitives":[ + { + "attributes":{ + "POSITION":17616, + "NORMAL":17617, + "TEXCOORD_0":17618 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.4860", + "primitives":[ + { + "attributes":{ + "POSITION":17619, + "NORMAL":17620, + "TEXCOORD_0":17621 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8633", + "primitives":[ + { + "attributes":{ + "POSITION":17622, + "NORMAL":17623 + }, + "indices":1707, + "material":3 + } + ] + }, + { + "name":"Mesh.4900", + "primitives":[ + { + "attributes":{ + "POSITION":17624, + "NORMAL":17625, + "TEXCOORD_0":17626 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6956", + "primitives":[ + { + "attributes":{ + "POSITION":17627, + "NORMAL":17628, + "TEXCOORD_0":17629 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.2837", + "primitives":[ + { + "attributes":{ + "POSITION":17630, + "NORMAL":17631 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.5085", + "primitives":[ + { + "attributes":{ + "POSITION":17632, + "NORMAL":17633, + "TEXCOORD_0":17634 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5412", + "primitives":[ + { + "attributes":{ + "POSITION":17635, + "NORMAL":17636, + "TEXCOORD_0":17637 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7679", + "primitives":[ + { + "attributes":{ + "POSITION":17638, + "NORMAL":17639 + }, + "indices":5867, + "material":3 + } + ] + }, + { + "name":"Mesh.2130", + "primitives":[ + { + "attributes":{ + "POSITION":17640, + "NORMAL":17641, + "TEXCOORD_0":17642 + }, + "indices":17643, + "material":3 + } + ] + }, + { + "name":"Mesh.7392", + "primitives":[ + { + "attributes":{ + "POSITION":17644, + "NORMAL":17645, + "TEXCOORD_0":17646 + }, + "indices":3535, + "material":7 + } + ] + }, + { + "name":"Mesh.6284", + "primitives":[ + { + "attributes":{ + "POSITION":17647, + "NORMAL":17648, + "TEXCOORD_0":17649 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.5301", + "primitives":[ + { + "attributes":{ + "POSITION":17650, + "NORMAL":17651, + "TEXCOORD_0":17652 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9081", + "primitives":[ + { + "attributes":{ + "POSITION":17653, + "NORMAL":17654, + "TEXCOORD_0":17655 + }, + "indices":525, + "material":7 + } + ] + }, + { + "name":"Mesh.828", + "primitives":[ + { + "attributes":{ + "POSITION":17656, + "NORMAL":17657, + "TEXCOORD_0":17658 + }, + "indices":17659, + "material":3 + } + ] + }, + { + "name":"Mesh.5341", + "primitives":[ + { + "attributes":{ + "POSITION":17660, + "NORMAL":17661, + "TEXCOORD_0":17662 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8106", + "primitives":[ + { + "attributes":{ + "POSITION":17663, + "NORMAL":17664 + }, + "indices":5956, + "material":3 + } + ] + }, + { + "name":"Mesh.6500", + "primitives":[ + { + "attributes":{ + "POSITION":17665, + "NORMAL":17666, + "TEXCOORD_0":17667 + }, + "indices":3914, + "material":0 + } + ] + }, + { + "name":"Mesh.8407", + "primitives":[ + { + "attributes":{ + "POSITION":17668, + "NORMAL":17669 + }, + "indices":17670, + "material":3 + } + ] + }, + { + "name":"Mesh.8728", + "primitives":[ + { + "attributes":{ + "POSITION":17671, + "NORMAL":17672 + }, + "indices":4021, + "material":3 + } + ] + }, + { + "name":"Mesh.1097", + "primitives":[ + { + "attributes":{ + "POSITION":17673, + "NORMAL":17674, + "TEXCOORD_0":17675 + }, + "indices":682, + "material":0 + } + ] + }, + { + "name":"Mesh.6213", + "primitives":[ + { + "attributes":{ + "POSITION":17676, + "NORMAL":17677, + "TEXCOORD_0":17678 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.4858", + "primitives":[ + { + "attributes":{ + "POSITION":17679, + "NORMAL":17680, + "TEXCOORD_0":17681 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8810", + "primitives":[ + { + "attributes":{ + "POSITION":17682, + "NORMAL":17683 + }, + "indices":17684, + "material":3 + } + ] + }, + { + "name":"Mesh.5415", + "primitives":[ + { + "attributes":{ + "POSITION":17685, + "NORMAL":17686, + "TEXCOORD_0":17687 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.277", + "primitives":[ + { + "attributes":{ + "POSITION":17688, + "NORMAL":17689, + "TEXCOORD_0":17690 + }, + "indices":4531, + "material":0 + } + ] + }, + { + "name":"Mesh.1670", + "primitives":[ + { + "attributes":{ + "POSITION":17691, + "NORMAL":17692, + "TEXCOORD_0":17693 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.696", + "primitives":[ + { + "attributes":{ + "POSITION":17694, + "NORMAL":17695, + "TEXCOORD_0":17696 + }, + "indices":17697, + "material":0 + } + ] + }, + { + "name":"Mesh.8845", + "primitives":[ + { + "attributes":{ + "POSITION":17698, + "NORMAL":17699 + }, + "indices":5835, + "material":3 + } + ] + }, + { + "name":"Mesh.2189", + "primitives":[ + { + "attributes":{ + "POSITION":17700, + "NORMAL":17701, + "TEXCOORD_0":17702 + }, + "indices":10126, + "material":3 + } + ] + }, + { + "name":"Mesh.6000", + "primitives":[ + { + "attributes":{ + "POSITION":17703, + "NORMAL":17704, + "TEXCOORD_0":17705 + }, + "indices":202, + "material":11 + } + ] + }, + { + "name":"Mesh.8317", + "primitives":[ + { + "attributes":{ + "POSITION":17706, + "NORMAL":17707 + }, + "indices":16388, + "material":3 + } + ] + }, + { + "name":"Mesh.7762", + "primitives":[ + { + "attributes":{ + "POSITION":17708, + "NORMAL":17709 + }, + "indices":17710, + "material":3 + } + ] + }, + { + "name":"Mesh.7148", + "primitives":[ + { + "attributes":{ + "POSITION":17711, + "NORMAL":17712, + "TEXCOORD_0":17713 + }, + "indices":17714, + "material":7 + } + ] + }, + { + "name":"Mesh.2648", + "primitives":[ + { + "attributes":{ + "POSITION":17715, + "NORMAL":17716, + "TEXCOORD_0":17717 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.6040", + "primitives":[ + { + "attributes":{ + "POSITION":17718, + "NORMAL":17719, + "TEXCOORD_0":17720 + }, + "indices":1465, + "material":25 + } + ] + }, + { + "name":"Mesh.6830", + "primitives":[ + { + "attributes":{ + "POSITION":17721, + "NORMAL":17722, + "TEXCOORD_0":17723 + }, + "indices":6353, + "material":0 + } + ] + }, + { + "name":"Mesh.7188", + "primitives":[ + { + "attributes":{ + "POSITION":17724, + "NORMAL":17725, + "TEXCOORD_0":17726 + }, + "indices":9205, + "material":7 + } + ] + }, + { + "name":"Mesh.2849", + "primitives":[ + { + "attributes":{ + "POSITION":17727, + "NORMAL":17728 + }, + "indices":2224, + "material":1 + } + ] + }, + { + "name":"Mesh.5665", + "primitives":[ + { + "attributes":{ + "POSITION":17729, + "NORMAL":17730, + "TEXCOORD_0":17731 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1143", + "primitives":[ + { + "attributes":{ + "POSITION":17732, + "NORMAL":17733, + "TEXCOORD_0":17734 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.2566", + "primitives":[ + { + "attributes":{ + "POSITION":17735, + "NORMAL":17736, + "TEXCOORD_0":17737 + }, + "indices":1247, + "material":0 + } + ] + }, + { + "name":"Mesh.429", + "primitives":[ + { + "attributes":{ + "POSITION":17738, + "NORMAL":17739, + "TEXCOORD_0":17740 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.6583", + "primitives":[ + { + "attributes":{ + "POSITION":17741, + "NORMAL":17742 + }, + "indices":4074, + "material":0 + } + ] + }, + { + "name":"Mesh.8567", + "primitives":[ + { + "attributes":{ + "POSITION":17743, + "NORMAL":17744 + }, + "indices":711, + "material":3 + } + ] + }, + { + "name":"Mesh.381", + "primitives":[ + { + "attributes":{ + "POSITION":17745, + "NORMAL":17746, + "TEXCOORD_0":17747 + }, + "indices":3513, + "material":0 + } + ] + }, + { + "name":"Mesh.1673", + "primitives":[ + { + "attributes":{ + "POSITION":17748, + "NORMAL":17749, + "TEXCOORD_0":17750 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.2739", + "primitives":[ + { + "attributes":{ + "POSITION":17751, + "NORMAL":17752, + "TEXCOORD_0":17753 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.6034", + "primitives":[ + { + "attributes":{ + "POSITION":17754, + "NORMAL":17755, + "TEXCOORD_0":17756 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.6382", + "primitives":[ + { + "attributes":{ + "POSITION":17757, + "NORMAL":17758 + }, + "indices":17759, + "material":0 + } + ] + }, + { + "name":"Mesh.6938", + "primitives":[ + { + "attributes":{ + "POSITION":17760, + "NORMAL":17761, + "TEXCOORD_0":17762 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.5710", + "primitives":[ + { + "attributes":{ + "POSITION":17763, + "NORMAL":17764 + }, + "indices":1104, + "material":0 + } + ] + }, + { + "name":"Mesh.7580", + "primitives":[ + { + "attributes":{ + "POSITION":17765, + "NORMAL":17766 + }, + "indices":4744, + "material":3 + } + ] + }, + { + "name":"Mesh.034", + "primitives":[ + { + "attributes":{ + "POSITION":17767, + "NORMAL":17768 + }, + "indices":5895, + "material":22 + } + ] + }, + { + "name":"Mesh.2241", + "primitives":[ + { + "attributes":{ + "POSITION":17769, + "NORMAL":17770, + "TEXCOORD_0":17771 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5538", + "primitives":[ + { + "attributes":{ + "POSITION":17772, + "NORMAL":17773, + "TEXCOORD_0":17774 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1602", + "primitives":[ + { + "attributes":{ + "POSITION":17775, + "NORMAL":17776 + }, + "indices":557, + "material":17 + } + ] + }, + { + "name":"Mesh.7055", + "primitives":[ + { + "attributes":{ + "POSITION":17777, + "NORMAL":17778 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.6083", + "primitives":[ + { + "attributes":{ + "POSITION":17779, + "NORMAL":17780, + "TEXCOORD_0":17781 + }, + "indices":3729, + "material":33 + } + ] + }, + { + "name":"Mesh.8089", + "primitives":[ + { + "attributes":{ + "POSITION":17782, + "NORMAL":17783 + }, + "indices":6400, + "material":3 + } + ] + }, + { + "name":"Mesh.7549", + "primitives":[ + { + "attributes":{ + "POSITION":17784, + "NORMAL":17785 + }, + "indices":4210, + "material":3 + } + ] + }, + { + "name":"Mesh.4804", + "primitives":[ + { + "attributes":{ + "POSITION":17786, + "NORMAL":17787, + "TEXCOORD_0":17788 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2145", + "primitives":[ + { + "attributes":{ + "POSITION":17789, + "NORMAL":17790, + "TEXCOORD_0":17791 + }, + "indices":17792, + "material":3 + } + ] + }, + { + "name":"Mesh.2609", + "primitives":[ + { + "attributes":{ + "POSITION":17793, + "NORMAL":17794, + "TEXCOORD_0":17795 + }, + "indices":17796, + "material":0 + } + ] + }, + { + "name":"Mesh.4844", + "primitives":[ + { + "attributes":{ + "POSITION":17797, + "NORMAL":17798, + "TEXCOORD_0":17799 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.893", + "primitives":[ + { + "attributes":{ + "POSITION":17800, + "NORMAL":17801, + "TEXCOORD_0":17802 + }, + "indices":132, + "material":0 + } + ] + }, + { + "name":"Mesh.7774", + "primitives":[ + { + "attributes":{ + "POSITION":17803, + "NORMAL":17804 + }, + "indices":17805, + "material":3 + } + ] + }, + { + "name":"Mesh.2821", + "primitives":[ + { + "attributes":{ + "POSITION":17806, + "NORMAL":17807, + "TEXCOORD_0":17808 + }, + "indices":5286, + "material":41 + } + ] + }, + { + "name":"Mesh.8561", + "primitives":[ + { + "attributes":{ + "POSITION":17809, + "NORMAL":17810 + }, + "indices":17811, + "material":3 + } + ] + }, + { + "name":"Mesh.6773", + "primitives":[ + { + "attributes":{ + "POSITION":17812, + "NORMAL":17813 + }, + "indices":17560, + "material":0 + } + ] + }, + { + "name":"Mesh.1009", + "primitives":[ + { + "attributes":{ + "POSITION":17814, + "NORMAL":17815, + "TEXCOORD_0":17816 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.7200", + "primitives":[ + { + "attributes":{ + "POSITION":17817, + "NORMAL":17818, + "TEXCOORD_0":17819 + }, + "indices":15641, + "material":7 + } + ] + }, + { + "name":"Mesh.511", + "primitives":[ + { + "attributes":{ + "POSITION":17820, + "NORMAL":17821, + "TEXCOORD_0":17822 + }, + "indices":17823, + "material":0 + } + ] + }, + { + "name":"Mesh.2774", + "primitives":[ + { + "attributes":{ + "POSITION":17824, + "NORMAL":17825, + "TEXCOORD_0":17826 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.7703", + "primitives":[ + { + "attributes":{ + "POSITION":17827, + "NORMAL":17828 + }, + "indices":17829, + "material":3 + } + ] + }, + { + "name":"Mesh.8565", + "primitives":[ + { + "attributes":{ + "POSITION":17830, + "NORMAL":17831 + }, + "indices":17832, + "material":3 + } + ] + }, + { + "name":"Mesh.7068", + "primitives":[ + { + "attributes":{ + "POSITION":17833, + "NORMAL":17834, + "TEXCOORD_0":17835 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.234", + "primitives":[ + { + "attributes":{ + "POSITION":17836, + "NORMAL":17837, + "TEXCOORD_0":17838 + }, + "indices":17839, + "material":3 + } + ] + }, + { + "name":"Mesh.3132", + "primitives":[ + { + "attributes":{ + "POSITION":17840, + "NORMAL":17841, + "TEXCOORD_0":17842 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1038", + "primitives":[ + { + "attributes":{ + "POSITION":17843, + "NORMAL":17844, + "TEXCOORD_0":17845 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.7592", + "primitives":[ + { + "attributes":{ + "POSITION":17846, + "NORMAL":17847 + }, + "indices":6289, + "material":3 + } + ] + }, + { + "name":"Mesh.1725", + "primitives":[ + { + "attributes":{ + "POSITION":17848, + "NORMAL":17849, + "TEXCOORD_0":17850 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.751", + "primitives":[ + { + "attributes":{ + "POSITION":17851, + "NORMAL":17852, + "TEXCOORD_0":17853 + }, + "indices":4214, + "material":0 + } + ] + }, + { + "name":"Mesh.836", + "primitives":[ + { + "attributes":{ + "POSITION":17854, + "NORMAL":17855, + "TEXCOORD_0":17856 + }, + "indices":7622, + "material":0 + } + ] + }, + { + "name":"Mesh.4887", + "primitives":[ + { + "attributes":{ + "POSITION":17857, + "NORMAL":17858, + "TEXCOORD_0":17859 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.264", + "primitives":[ + { + "attributes":{ + "POSITION":17860, + "NORMAL":17861, + "TEXCOORD_0":17862 + }, + "indices":17863, + "material":3 + } + ] + }, + { + "name":"Mesh.8774", + "primitives":[ + { + "attributes":{ + "POSITION":17864, + "NORMAL":17865 + }, + "indices":9752, + "material":3 + } + ] + }, + { + "name":"Mesh.7898", + "primitives":[ + { + "attributes":{ + "POSITION":17866, + "NORMAL":17867 + }, + "indices":17868, + "material":3 + } + ] + }, + { + "name":"Mesh.8599", + "primitives":[ + { + "attributes":{ + "POSITION":17869, + "NORMAL":17870 + }, + "indices":547, + "material":3 + } + ] + }, + { + "name":"Mesh.5692", + "primitives":[ + { + "attributes":{ + "POSITION":17871, + "NORMAL":17872, + "TEXCOORD_0":17873 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5759", + "primitives":[ + { + "attributes":{ + "POSITION":17874, + "NORMAL":17875, + "TEXCOORD_0":17876 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.6959", + "primitives":[ + { + "attributes":{ + "POSITION":17877, + "NORMAL":17878 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.6907", + "primitives":[ + { + "attributes":{ + "POSITION":17879, + "NORMAL":17880, + "TEXCOORD_0":17881 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.4816", + "primitives":[ + { + "attributes":{ + "POSITION":17882, + "NORMAL":17883, + "TEXCOORD_0":17884 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.096", + "primitives":[ + { + "attributes":{ + "POSITION":17885, + "NORMAL":17886, + "TEXCOORD_0":17887 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.720", + "primitives":[ + { + "attributes":{ + "POSITION":17888, + "NORMAL":17889, + "TEXCOORD_0":17890 + }, + "indices":6159, + "material":3 + } + ] + }, + { + "name":"Mesh.7746", + "primitives":[ + { + "attributes":{ + "POSITION":17891, + "NORMAL":17892 + }, + "indices":17893, + "material":3 + } + ] + }, + { + "name":"Mesh.5328", + "primitives":[ + { + "attributes":{ + "POSITION":17894, + "NORMAL":17895, + "TEXCOORD_0":17896 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9045", + "primitives":[ + { + "attributes":{ + "POSITION":17897, + "NORMAL":17898, + "TEXCOORD_0":17899 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.699", + "primitives":[ + { + "attributes":{ + "POSITION":17900, + "NORMAL":17901, + "TEXCOORD_0":17902 + }, + "indices":1128, + "material":0 + } + ] + }, + { + "name":"Mesh.1146", + "primitives":[ + { + "attributes":{ + "POSITION":17903, + "NORMAL":17904, + "TEXCOORD_0":17905 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.1605", + "primitives":[ + { + "attributes":{ + "POSITION":17906, + "NORMAL":17907 + }, + "indices":557, + "material":17 + } + ] + }, + { + "name":"Mesh.2371", + "primitives":[ + { + "attributes":{ + "POSITION":17908, + "NORMAL":17909, + "TEXCOORD_0":17910 + }, + "indices":1903, + "material":0 + } + ] + }, + { + "name":"Mesh.935", + "primitives":[ + { + "attributes":{ + "POSITION":17911, + "NORMAL":17912, + "TEXCOORD_0":17913 + }, + "indices":1536, + "material":0 + } + ] + }, + { + "name":"Mesh.8193", + "primitives":[ + { + "attributes":{ + "POSITION":17914, + "NORMAL":17915 + }, + "indices":16694, + "material":3 + } + ] + }, + { + "name":"Mesh.6836", + "primitives":[ + { + "attributes":{ + "POSITION":17916, + "NORMAL":17917, + "TEXCOORD_0":17918 + }, + "indices":2975, + "material":0 + } + ] + }, + { + "name":"Mesh.386", + "primitives":[ + { + "attributes":{ + "POSITION":17919, + "NORMAL":17920, + "TEXCOORD_0":17921 + }, + "indices":2237, + "material":0 + } + ] + }, + { + "name":"Mesh.351", + "primitives":[ + { + "attributes":{ + "POSITION":17922, + "NORMAL":17923, + "TEXCOORD_0":17924 + }, + "indices":3007, + "material":0 + } + ] + }, + { + "name":"Mesh.037", + "primitives":[ + { + "attributes":{ + "POSITION":17925, + "NORMAL":17926 + }, + "indices":10644, + "material":22 + } + ] + }, + { + "name":"Mesh.5912", + "primitives":[ + { + "attributes":{ + "POSITION":17927, + "NORMAL":17928 + }, + "indices":6365, + "material":43 + } + ] + }, + { + "name":"Mesh.4930", + "primitives":[ + { + "attributes":{ + "POSITION":17929, + "NORMAL":17930, + "TEXCOORD_0":17931 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8932", + "primitives":[ + { + "attributes":{ + "POSITION":17932, + "NORMAL":17933, + "TEXCOORD_0":17934 + }, + "indices":59, + "material":7 + } + ] + }, + { + "name":"Mesh.2296", + "primitives":[ + { + "attributes":{ + "POSITION":17935, + "NORMAL":17936, + "TEXCOORD_0":17937 + }, + "indices":3464, + "material":0 + } + ] + }, + { + "name":"Mesh.5593", + "primitives":[ + { + "attributes":{ + "POSITION":17938, + "NORMAL":17939, + "TEXCOORD_0":17940 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2336", + "primitives":[ + { + "attributes":{ + "POSITION":17941, + "NORMAL":17942, + "TEXCOORD_0":17943 + }, + "indices":1392, + "material":0 + } + ] + }, + { + "name":"Mesh.1777", + "primitives":[ + { + "attributes":{ + "POSITION":17944, + "NORMAL":17945, + "TEXCOORD_0":17946 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.4859", + "primitives":[ + { + "attributes":{ + "POSITION":17947, + "NORMAL":17948, + "TEXCOORD_0":17949 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.114", + "primitives":[ + { + "attributes":{ + "POSITION":17950, + "NORMAL":17951, + "TEXCOORD_0":17952 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7708", + "primitives":[ + { + "attributes":{ + "POSITION":17953, + "NORMAL":17954 + }, + "indices":17955, + "material":3 + } + ] + }, + { + "name":"Mesh.6027", + "primitives":[ + { + "attributes":{ + "POSITION":17956, + "NORMAL":17957, + "TEXCOORD_0":17958 + }, + "indices":209, + "material":11 + } + ] + }, + { + "name":"Mesh.6600", + "primitives":[ + { + "attributes":{ + "POSITION":17959, + "NORMAL":17960 + }, + "indices":735, + "material":0 + } + ] + }, + { + "name":"Mesh.8766", + "primitives":[ + { + "attributes":{ + "POSITION":17961, + "NORMAL":17962 + }, + "indices":5253, + "material":3 + } + ] + }, + { + "name":"Mesh.9162", + "primitives":[ + { + "attributes":{ + "POSITION":17963, + "NORMAL":17964, + "TEXCOORD_0":17965 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.4899", + "primitives":[ + { + "attributes":{ + "POSITION":17966, + "NORMAL":17967, + "TEXCOORD_0":17968 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5532", + "primitives":[ + { + "attributes":{ + "POSITION":17969, + "NORMAL":17970, + "TEXCOORD_0":17971 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2836", + "primitives":[ + { + "attributes":{ + "POSITION":17972, + "NORMAL":17973 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.5084", + "primitives":[ + { + "attributes":{ + "POSITION":17974, + "NORMAL":17975, + "TEXCOORD_0":17976 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7678", + "primitives":[ + { + "attributes":{ + "POSITION":17977, + "NORMAL":17978 + }, + "indices":2365, + "material":3 + } + ] + }, + { + "name":"Mesh.2129", + "primitives":[ + { + "attributes":{ + "POSITION":17979, + "NORMAL":17980, + "TEXCOORD_0":17981 + }, + "indices":17982, + "material":3 + } + ] + }, + { + "name":"Mesh.7391", + "primitives":[ + { + "attributes":{ + "POSITION":17983, + "NORMAL":17984, + "TEXCOORD_0":17985 + }, + "indices":4834, + "material":7 + } + ] + }, + { + "name":"Mesh.6283", + "primitives":[ + { + "attributes":{ + "POSITION":17986, + "NORMAL":17987, + "TEXCOORD_0":17988 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.5300", + "primitives":[ + { + "attributes":{ + "POSITION":17989, + "NORMAL":17990, + "TEXCOORD_0":17991 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1856", + "primitives":[ + { + "attributes":{ + "POSITION":17992, + "NORMAL":17993 + }, + "indices":2624, + "material":0 + } + ] + }, + { + "name":"Mesh.479", + "primitives":[ + { + "attributes":{ + "POSITION":17994, + "NORMAL":17995 + }, + "indices":7720, + "material":3 + } + ] + }, + { + "name":"Mesh.6646", + "primitives":[ + { + "attributes":{ + "POSITION":17996, + "NORMAL":17997 + }, + "indices":17998, + "material":0 + } + ] + }, + { + "name":"Mesh.1659", + "primitives":[ + { + "attributes":{ + "POSITION":17999, + "NORMAL":18000, + "TEXCOORD_0":18001 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.5340", + "primitives":[ + { + "attributes":{ + "POSITION":18002, + "NORMAL":18003, + "TEXCOORD_0":18004 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6499", + "primitives":[ + { + "attributes":{ + "POSITION":18005, + "NORMAL":18006, + "TEXCOORD_0":18007 + }, + "indices":3788, + "material":0 + } + ] + }, + { + "name":"Mesh.1096", + "primitives":[ + { + "attributes":{ + "POSITION":18008, + "NORMAL":18009, + "TEXCOORD_0":18010 + }, + "indices":370, + "material":0 + } + ] + }, + { + "name":"Mesh.7647", + "primitives":[ + { + "attributes":{ + "POSITION":18011, + "NORMAL":18012 + }, + "indices":11042, + "material":3 + } + ] + }, + { + "name":"Mesh.7859", + "primitives":[ + { + "attributes":{ + "POSITION":18013, + "NORMAL":18014 + }, + "indices":18015, + "material":3 + } + ] + }, + { + "name":"Mesh.8809", + "primitives":[ + { + "attributes":{ + "POSITION":18016, + "NORMAL":18017 + }, + "indices":12281, + "material":3 + } + ] + }, + { + "name":"Mesh.6599", + "primitives":[ + { + "attributes":{ + "POSITION":18018, + "NORMAL":18019 + }, + "indices":1949, + "material":0 + } + ] + }, + { + "name":"Mesh.278", + "primitives":[ + { + "attributes":{ + "POSITION":18020, + "NORMAL":18021, + "TEXCOORD_0":18022 + }, + "indices":18023, + "material":3 + } + ] + }, + { + "name":"Mesh.7470", + "primitives":[ + { + "attributes":{ + "POSITION":18024, + "NORMAL":18025 + }, + "indices":510, + "material":3 + } + ] + }, + { + "name":"Mesh.7911", + "primitives":[ + { + "attributes":{ + "POSITION":18026, + "NORMAL":18027 + }, + "indices":18028, + "material":3 + } + ] + }, + { + "name":"Mesh.1669", + "primitives":[ + { + "attributes":{ + "POSITION":18029, + "NORMAL":18030, + "TEXCOORD_0":18031 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.695", + "primitives":[ + { + "attributes":{ + "POSITION":18032, + "NORMAL":18033, + "TEXCOORD_0":18034 + }, + "indices":18035, + "material":0 + } + ] + }, + { + "name":"Mesh.026", + "primitives":[ + { + "attributes":{ + "POSITION":18036, + "NORMAL":18037, + "TEXCOORD_0":18038 + }, + "indices":18039, + "material":78 + } + ] + }, + { + "name":"Mesh.528", + "primitives":[ + { + "attributes":{ + "POSITION":18040, + "NORMAL":18041, + "TEXCOORD_0":18042 + }, + "indices":3248, + "material":0 + } + ] + }, + { + "name":"Mesh.2151", + "primitives":[ + { + "attributes":{ + "POSITION":18043, + "NORMAL":18044, + "TEXCOORD_0":18045 + }, + "indices":4531, + "material":0 + } + ] + }, + { + "name":"Mesh.6077", + "primitives":[ + { + "attributes":{ + "POSITION":18046, + "NORMAL":18047, + "TEXCOORD_0":18048 + }, + "indices":7759, + "material":25 + } + ] + }, + { + "name":"Mesh.6293", + "primitives":[ + { + "attributes":{ + "POSITION":18049, + "NORMAL":18050, + "TEXCOORD_0":18051 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.2188", + "primitives":[ + { + "attributes":{ + "POSITION":18052, + "NORMAL":18053, + "TEXCOORD_0":18054 + }, + "indices":18055, + "material":0 + } + ] + }, + { + "name":"Mesh.7761", + "primitives":[ + { + "attributes":{ + "POSITION":18056, + "NORMAL":18057 + }, + "indices":18058, + "material":3 + } + ] + }, + { + "name":"Mesh.7147", + "primitives":[ + { + "attributes":{ + "POSITION":18059, + "NORMAL":18060, + "TEXCOORD_0":18061 + }, + "indices":4003, + "material":7 + } + ] + }, + { + "name":"Mesh.6039", + "primitives":[ + { + "attributes":{ + "POSITION":18062, + "NORMAL":18063, + "TEXCOORD_0":18064 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.6829", + "primitives":[ + { + "attributes":{ + "POSITION":18065, + "NORMAL":18066, + "TEXCOORD_0":18067 + }, + "indices":5926, + "material":0 + } + ] + }, + { + "name":"Mesh.7187", + "primitives":[ + { + "attributes":{ + "POSITION":18068, + "NORMAL":18069, + "TEXCOORD_0":18070 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.7505", + "primitives":[ + { + "attributes":{ + "POSITION":18071, + "NORMAL":18072 + }, + "indices":18073, + "material":3 + } + ] + }, + { + "name":"Mesh.1142", + "primitives":[ + { + "attributes":{ + "POSITION":18074, + "NORMAL":18075, + "TEXCOORD_0":18076 + }, + "indices":17796, + "material":0 + } + ] + }, + { + "name":"Mesh.9013", + "primitives":[ + { + "attributes":{ + "POSITION":18077, + "NORMAL":18078, + "TEXCOORD_0":18079 + }, + "indices":465, + "material":7 + } + ] + }, + { + "name":"Mesh.2565", + "primitives":[ + { + "attributes":{ + "POSITION":18080, + "NORMAL":18081, + "TEXCOORD_0":18082 + }, + "indices":2427, + "material":0 + } + ] + }, + { + "name":"Mesh.8605", + "primitives":[ + { + "attributes":{ + "POSITION":18083, + "NORMAL":18084 + }, + "indices":6465, + "material":3 + } + ] + }, + { + "name":"Mesh.6582", + "primitives":[ + { + "attributes":{ + "POSITION":18085, + "NORMAL":18086 + }, + "indices":4847, + "material":0 + } + ] + }, + { + "name":"Mesh.7085", + "primitives":[ + { + "attributes":{ + "POSITION":18087, + "NORMAL":18088, + "TEXCOORD_0":18089 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.380", + "primitives":[ + { + "attributes":{ + "POSITION":18090, + "NORMAL":18091, + "TEXCOORD_0":18092 + }, + "indices":4117, + "material":0 + } + ] + }, + { + "name":"Mesh.9102", + "primitives":[ + { + "attributes":{ + "POSITION":18093, + "NORMAL":18094, + "TEXCOORD_0":18095 + }, + "indices":465, + "material":7 + } + ] + }, + { + "name":"Mesh.7579", + "primitives":[ + { + "attributes":{ + "POSITION":18096, + "NORMAL":18097 + }, + "indices":95, + "material":3 + } + ] + }, + { + "name":"Mesh.5648", + "primitives":[ + { + "attributes":{ + "POSITION":18098, + "NORMAL":18099, + "TEXCOORD_0":18100 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.033", + "primitives":[ + { + "attributes":{ + "POSITION":18101, + "NORMAL":18102 + }, + "indices":5895, + "material":22 + } + ] + }, + { + "name":"Mesh.8741", + "primitives":[ + { + "attributes":{ + "POSITION":18103, + "NORMAL":18104 + }, + "indices":9096, + "material":3 + } + ] + }, + { + "name":"Mesh.2240", + "primitives":[ + { + "attributes":{ + "POSITION":18105, + "NORMAL":18106, + "TEXCOORD_0":18107 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7332", + "primitives":[ + { + "attributes":{ + "POSITION":18108, + "NORMAL":18109, + "TEXCOORD_0":18110 + }, + "indices":3535, + "material":7 + } + ] + }, + { + "name":"Mesh.6224", + "primitives":[ + { + "attributes":{ + "POSITION":18111, + "NORMAL":18112, + "TEXCOORD_0":18113 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.707", + "primitives":[ + { + "attributes":{ + "POSITION":18114, + "NORMAL":18115, + "TEXCOORD_0":18116 + }, + "indices":3719, + "material":0 + } + ] + }, + { + "name":"Mesh.1163", + "primitives":[ + { + "attributes":{ + "POSITION":18117, + "NORMAL":18118, + "TEXCOORD_0":18119 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.170", + "primitives":[ + { + "attributes":{ + "POSITION":18120, + "NORMAL":18121, + "TEXCOORD_0":18122 + }, + "indices":12653, + "material":0 + } + ] + }, + { + "name":"Mesh.1613", + "primitives":[ + { + "attributes":{ + "POSITION":18123, + "NORMAL":18124 + }, + "indices":557, + "material":17 + } + ] + }, + { + "name":"Mesh.1838", + "primitives":[ + { + "attributes":{ + "POSITION":18125, + "NORMAL":18126 + }, + "indices":65, + "material":8 + } + ] + }, + { + "name":"Mesh.452", + "primitives":[ + { + "attributes":{ + "POSITION":18127, + "NORMAL":18128 + }, + "indices":8953, + "material":3 + } + ] + }, + { + "name":"Mesh.6328", + "primitives":[ + { + "attributes":{ + "POSITION":18129, + "NORMAL":18130, + "TEXCOORD_0":18131 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.6628", + "primitives":[ + { + "attributes":{ + "POSITION":18132, + "NORMAL":18133 + }, + "indices":1385, + "material":0 + } + ] + }, + { + "name":"Mesh.7230", + "primitives":[ + { + "attributes":{ + "POSITION":18134, + "NORMAL":18135, + "TEXCOORD_0":18136 + }, + "indices":1907, + "material":7 + } + ] + }, + { + "name":"Mesh.7548", + "primitives":[ + { + "attributes":{ + "POSITION":18137, + "NORMAL":18138 + }, + "indices":4557, + "material":3 + } + ] + }, + { + "name":"Mesh.4803", + "primitives":[ + { + "attributes":{ + "POSITION":18139, + "NORMAL":18140, + "TEXCOORD_0":18141 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2144", + "primitives":[ + { + "attributes":{ + "POSITION":18142, + "NORMAL":18143, + "TEXCOORD_0":18144 + }, + "indices":5177, + "material":3 + } + ] + }, + { + "name":"Mesh.2608", + "primitives":[ + { + "attributes":{ + "POSITION":18145, + "NORMAL":18146, + "TEXCOORD_0":18147 + }, + "indices":18148, + "material":0 + } + ] + }, + { + "name":"Mesh.4843", + "primitives":[ + { + "attributes":{ + "POSITION":18149, + "NORMAL":18150, + "TEXCOORD_0":18151 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7773", + "primitives":[ + { + "attributes":{ + "POSITION":18152, + "NORMAL":18153 + }, + "indices":18154, + "material":3 + } + ] + }, + { + "name":"Mesh.8100", + "primitives":[ + { + "attributes":{ + "POSITION":18155, + "NORMAL":18156 + }, + "indices":490, + "material":3 + } + ] + }, + { + "name":"Mesh.7159", + "primitives":[ + { + "attributes":{ + "POSITION":18157, + "NORMAL":18158, + "TEXCOORD_0":18159 + }, + "indices":18160, + "material":7 + } + ] + }, + { + "name":"Mesh.2820", + "primitives":[ + { + "attributes":{ + "POSITION":18161, + "NORMAL":18162, + "TEXCOORD_0":18163 + }, + "indices":17796, + "material":0 + } + ] + }, + { + "name":"Mesh.8334", + "primitives":[ + { + "attributes":{ + "POSITION":18164, + "NORMAL":18165 + }, + "indices":9470, + "material":3 + } + ] + }, + { + "name":"Mesh.1703", + "primitives":[ + { + "attributes":{ + "POSITION":18166, + "NORMAL":18167, + "TEXCOORD_0":18168 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.8382", + "primitives":[ + { + "attributes":{ + "POSITION":18169, + "NORMAL":18170 + }, + "indices":5956, + "material":3 + } + ] + }, + { + "name":"Mesh.6182", + "primitives":[ + { + "attributes":{ + "POSITION":18171, + "NORMAL":18172, + "TEXCOORD_0":18173 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.7199", + "primitives":[ + { + "attributes":{ + "POSITION":18174, + "NORMAL":18175, + "TEXCOORD_0":18176 + }, + "indices":18177, + "material":7 + } + ] + }, + { + "name":"Mesh.7702", + "primitives":[ + { + "attributes":{ + "POSITION":18178, + "NORMAL":18179 + }, + "indices":18180, + "material":3 + } + ] + }, + { + "name":"Mesh.8254", + "primitives":[ + { + "attributes":{ + "POSITION":18181, + "NORMAL":18182 + }, + "indices":14852, + "material":3 + } + ] + }, + { + "name":"Mesh.235", + "primitives":[ + { + "attributes":{ + "POSITION":18183, + "NORMAL":18184, + "TEXCOORD_0":18185 + }, + "indices":18186, + "material":3 + } + ] + }, + { + "name":"Mesh.1037", + "primitives":[ + { + "attributes":{ + "POSITION":18187, + "NORMAL":18188, + "TEXCOORD_0":18189 + }, + "indices":3943, + "material":0 + } + ] + }, + { + "name":"Mesh.7591", + "primitives":[ + { + "attributes":{ + "POSITION":18190, + "NORMAL":18191 + }, + "indices":7053, + "material":3 + } + ] + }, + { + "name":"Mesh.750", + "primitives":[ + { + "attributes":{ + "POSITION":18192, + "NORMAL":18193, + "TEXCOORD_0":18194 + }, + "indices":1379, + "material":0 + } + ] + }, + { + "name":"Mesh.7531", + "primitives":[ + { + "attributes":{ + "POSITION":18195, + "NORMAL":18196 + }, + "indices":18197, + "material":3 + } + ] + }, + { + "name":"Mesh.1648", + "primitives":[ + { + "attributes":{ + "POSITION":18198, + "NORMAL":18199, + "TEXCOORD_0":18200 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.8680", + "primitives":[ + { + "attributes":{ + "POSITION":18201, + "NORMAL":18202 + }, + "indices":1860, + "material":3 + } + ] + }, + { + "name":"Mesh.8812", + "primitives":[ + { + "attributes":{ + "POSITION":18203, + "NORMAL":18204 + }, + "indices":6289, + "material":3 + } + ] + }, + { + "name":"Mesh.7888", + "primitives":[ + { + "attributes":{ + "POSITION":18205, + "NORMAL":18206 + }, + "indices":18207, + "material":3 + } + ] + }, + { + "name":"Mesh.4886", + "primitives":[ + { + "attributes":{ + "POSITION":18208, + "NORMAL":18209, + "TEXCOORD_0":18210 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8236", + "primitives":[ + { + "attributes":{ + "POSITION":18211, + "NORMAL":18212 + }, + "indices":7964, + "material":3 + } + ] + }, + { + "name":"Mesh.8461", + "primitives":[ + { + "attributes":{ + "POSITION":18213, + "NORMAL":18214 + }, + "indices":18215, + "material":3 + } + ] + }, + { + "name":"Mesh.266", + "primitives":[ + { + "attributes":{ + "POSITION":18216, + "NORMAL":18217, + "TEXCOORD_0":18218 + }, + "indices":18219, + "material":3 + } + ] + }, + { + "name":"Mesh.1123", + "primitives":[ + { + "attributes":{ + "POSITION":18220, + "NORMAL":18221, + "TEXCOORD_0":18222 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.6149", + "primitives":[ + { + "attributes":{ + "POSITION":18223, + "NORMAL":18224, + "TEXCOORD_0":18225 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.5758", + "primitives":[ + { + "attributes":{ + "POSITION":18226, + "NORMAL":18227 + }, + "indices":4251, + "material":0 + } + ] + }, + { + "name":"Mesh.6906", + "primitives":[ + { + "attributes":{ + "POSITION":18228, + "NORMAL":18229, + "TEXCOORD_0":18230 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.190", + "primitives":[ + { + "attributes":{ + "POSITION":18231, + "NORMAL":18232, + "TEXCOORD_0":18233 + }, + "indices":18234, + "material":0 + } + ] + }, + { + "name":"Mesh.240", + "primitives":[ + { + "attributes":{ + "POSITION":18235, + "NORMAL":18236, + "TEXCOORD_0":18237 + }, + "indices":18238, + "material":3 + } + ] + }, + { + "name":"Mesh.4815", + "primitives":[ + { + "attributes":{ + "POSITION":18239, + "NORMAL":18240, + "TEXCOORD_0":18241 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.719", + "primitives":[ + { + "attributes":{ + "POSITION":18242, + "NORMAL":18243, + "TEXCOORD_0":18244 + }, + "indices":8014, + "material":3 + } + ] + }, + { + "name":"Mesh.7745", + "primitives":[ + { + "attributes":{ + "POSITION":18245, + "NORMAL":18246 + }, + "indices":18247, + "material":3 + } + ] + }, + { + "name":"Mesh.689", + "primitives":[ + { + "attributes":{ + "POSITION":18248, + "NORMAL":18249, + "TEXCOORD_0":18250 + }, + "indices":2689, + "material":0 + } + ] + }, + { + "name":"Mesh.914", + "primitives":[ + { + "attributes":{ + "POSITION":18251, + "NORMAL":18252, + "TEXCOORD_0":18253 + }, + "indices":2880, + "material":0 + } + ] + }, + { + "name":"Mesh.084", + "primitives":[ + { + "attributes":{ + "POSITION":18254, + "NORMAL":18255, + "TEXCOORD_0":18256 + }, + "indices":18257, + "material":7 + } + ] + }, + { + "name":"Mesh.5327", + "primitives":[ + { + "attributes":{ + "POSITION":18258, + "NORMAL":18259, + "TEXCOORD_0":18260 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8144", + "primitives":[ + { + "attributes":{ + "POSITION":18261, + "NORMAL":18262 + }, + "indices":1066, + "material":3 + } + ] + }, + { + "name":"Mesh.8510", + "primitives":[ + { + "attributes":{ + "POSITION":18263, + "NORMAL":18264 + }, + "indices":18265, + "material":3 + } + ] + }, + { + "name":"Mesh.7751", + "primitives":[ + { + "attributes":{ + "POSITION":18266, + "NORMAL":18267 + }, + "indices":18268, + "material":3 + } + ] + }, + { + "name":"Mesh.6023", + "primitives":[ + { + "attributes":{ + "POSITION":18269, + "NORMAL":18270, + "TEXCOORD_0":18271 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.2660", + "primitives":[ + { + "attributes":{ + "POSITION":18272, + "NORMAL":18273, + "TEXCOORD_0":18274 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.6433", + "primitives":[ + { + "attributes":{ + "POSITION":18275, + "NORMAL":18276, + "TEXCOORD_0":18277 + }, + "indices":3736, + "material":0 + } + ] + }, + { + "name":"Mesh.5677", + "primitives":[ + { + "attributes":{ + "POSITION":18278, + "NORMAL":18279, + "TEXCOORD_0":18280 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7171", + "primitives":[ + { + "attributes":{ + "POSITION":18281, + "NORMAL":18282, + "TEXCOORD_0":18283 + }, + "indices":11406, + "material":7 + } + ] + }, + { + "name":"Mesh.7347", + "primitives":[ + { + "attributes":{ + "POSITION":18284, + "NORMAL":18285, + "TEXCOORD_0":18286 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.4929", + "primitives":[ + { + "attributes":{ + "POSITION":18287, + "NORMAL":18288, + "TEXCOORD_0":18289 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5256", + "primitives":[ + { + "attributes":{ + "POSITION":18290, + "NORMAL":18291, + "TEXCOORD_0":18292 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8982", + "primitives":[ + { + "attributes":{ + "POSITION":18293, + "NORMAL":18294, + "TEXCOORD_0":18295 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.2335", + "primitives":[ + { + "attributes":{ + "POSITION":18296, + "NORMAL":18297, + "TEXCOORD_0":18298 + }, + "indices":1497, + "material":0 + } + ] + }, + { + "name":"Mesh.7128", + "primitives":[ + { + "attributes":{ + "POSITION":18299, + "NORMAL":18300, + "TEXCOORD_0":18301 + }, + "indices":18302, + "material":7 + } + ] + }, + { + "name":"Mesh.8223", + "primitives":[ + { + "attributes":{ + "POSITION":18303, + "NORMAL":18304 + }, + "indices":9347, + "material":3 + } + ] + }, + { + "name":"Mesh.2023", + "primitives":[ + { + "attributes":{ + "POSITION":18305, + "NORMAL":18306, + "TEXCOORD_0":18307 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2949", + "primitives":[ + { + "attributes":{ + "POSITION":18308, + "NORMAL":18309, + "TEXCOORD_0":18310 + }, + "indices":18311, + "material":79 + } + ] + }, + { + "name":"Mesh.2954", + "primitives":[ + { + "attributes":{ + "POSITION":18312, + "NORMAL":18313, + "TEXCOORD_0":18314 + }, + "indices":18315, + "material":79 + } + ] + }, + { + "name":"Mesh.2962", + "primitives":[ + { + "attributes":{ + "POSITION":18316, + "NORMAL":18317, + "TEXCOORD_0":18318 + }, + "indices":18311, + "material":79 + } + ] + }, + { + "name":"Mesh.2967", + "primitives":[ + { + "attributes":{ + "POSITION":18319, + "NORMAL":18320, + "TEXCOORD_0":18321 + }, + "indices":18315, + "material":79 + } + ] + }, + { + "name":"Mesh.2948", + "primitives":[ + { + "attributes":{ + "POSITION":18322, + "NORMAL":18323, + "TEXCOORD_0":18324 + }, + "indices":18325, + "material":80 + } + ] + }, + { + "name":"Mesh.2956", + "primitives":[ + { + "attributes":{ + "POSITION":18326, + "NORMAL":18327, + "TEXCOORD_0":18328 + }, + "indices":18325, + "material":80 + } + ] + }, + { + "name":"Mesh.2961", + "primitives":[ + { + "attributes":{ + "POSITION":18329, + "NORMAL":18330, + "TEXCOORD_0":18331 + }, + "indices":18325, + "material":80 + } + ] + }, + { + "name":"Mesh.2968", + "primitives":[ + { + "attributes":{ + "POSITION":18332, + "NORMAL":18333, + "TEXCOORD_0":18334 + }, + "indices":18325, + "material":80 + } + ] + }, + { + "name":"Mesh.2950", + "primitives":[ + { + "attributes":{ + "POSITION":18335, + "NORMAL":18336, + "TEXCOORD_0":18337 + }, + "indices":18338, + "material":81 + } + ] + }, + { + "name":"Mesh.2957", + "primitives":[ + { + "attributes":{ + "POSITION":18339, + "NORMAL":18340, + "TEXCOORD_0":18341 + }, + "indices":18342, + "material":81 + } + ] + }, + { + "name":"Mesh.2963", + "primitives":[ + { + "attributes":{ + "POSITION":18343, + "NORMAL":18344, + "TEXCOORD_0":18345 + }, + "indices":18346, + "material":81 + } + ] + }, + { + "name":"Mesh.2969", + "primitives":[ + { + "attributes":{ + "POSITION":18347, + "NORMAL":18348, + "TEXCOORD_0":18349 + }, + "indices":18350, + "material":81 + } + ] + }, + { + "name":"Mesh.2951", + "primitives":[ + { + "attributes":{ + "POSITION":18351, + "NORMAL":18352, + "TEXCOORD_0":18353 + }, + "indices":18354, + "material":82 + } + ] + }, + { + "name":"Mesh.2955", + "primitives":[ + { + "attributes":{ + "POSITION":18355, + "NORMAL":18356, + "TEXCOORD_0":18357 + }, + "indices":18354, + "material":82 + } + ] + }, + { + "name":"Mesh.2964", + "primitives":[ + { + "attributes":{ + "POSITION":18358, + "NORMAL":18359, + "TEXCOORD_0":18360 + }, + "indices":18354, + "material":82 + } + ] + }, + { + "name":"Mesh.2966", + "primitives":[ + { + "attributes":{ + "POSITION":18361, + "NORMAL":18362, + "TEXCOORD_0":18363 + }, + "indices":18354, + "material":82 + } + ] + }, + { + "name":"Mesh.2952", + "primitives":[ + { + "attributes":{ + "POSITION":18364, + "NORMAL":18365, + "TEXCOORD_0":18366 + }, + "indices":18367, + "material":79 + } + ] + }, + { + "name":"Mesh.2958", + "primitives":[ + { + "attributes":{ + "POSITION":18368, + "NORMAL":18369, + "TEXCOORD_0":18370 + }, + "indices":18367, + "material":79 + } + ] + }, + { + "name":"Mesh.2960", + "primitives":[ + { + "attributes":{ + "POSITION":18371, + "NORMAL":18372, + "TEXCOORD_0":18373 + }, + "indices":18367, + "material":79 + } + ] + }, + { + "name":"Mesh.2970", + "primitives":[ + { + "attributes":{ + "POSITION":18374, + "NORMAL":18375, + "TEXCOORD_0":18376 + }, + "indices":18367, + "material":79 + } + ] + }, + { + "name":"Mesh.2947", + "primitives":[ + { + "attributes":{ + "POSITION":18377, + "NORMAL":18378, + "TEXCOORD_0":18379 + }, + "indices":18380, + "material":83 + } + ] + }, + { + "name":"Mesh.2953", + "primitives":[ + { + "attributes":{ + "POSITION":18381, + "NORMAL":18382, + "TEXCOORD_0":18383 + }, + "indices":18384, + "material":83 + } + ] + }, + { + "name":"Mesh.2959", + "primitives":[ + { + "attributes":{ + "POSITION":18385, + "NORMAL":18386, + "TEXCOORD_0":18387 + }, + "indices":18388, + "material":83 + } + ] + }, + { + "name":"Mesh.2965", + "primitives":[ + { + "attributes":{ + "POSITION":18389, + "NORMAL":18390, + "TEXCOORD_0":18391 + }, + "indices":18380, + "material":83 + } + ] + }, + { + "name":"Mesh.2946", + "primitives":[ + { + "attributes":{ + "POSITION":18392, + "NORMAL":18393 + }, + "indices":18394, + "material":79 + } + ] + }, + { + "name":"Mesh.8765", + "primitives":[ + { + "attributes":{ + "POSITION":18395, + "NORMAL":18396 + }, + "indices":7876, + "material":3 + } + ] + }, + { + "name":"Mesh.9049", + "primitives":[ + { + "attributes":{ + "POSITION":18397, + "NORMAL":18398, + "TEXCOORD_0":18399 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.4898", + "primitives":[ + { + "attributes":{ + "POSITION":18400, + "NORMAL":18401, + "TEXCOORD_0":18402 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2264", + "primitives":[ + { + "attributes":{ + "POSITION":18403, + "NORMAL":18404, + "TEXCOORD_0":18405 + }, + "indices":4568, + "material":0 + } + ] + }, + { + "name":"Mesh.2835", + "primitives":[ + { + "attributes":{ + "POSITION":18406, + "NORMAL":18407 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.5083", + "primitives":[ + { + "attributes":{ + "POSITION":18408, + "NORMAL":18409, + "TEXCOORD_0":18410 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5410", + "primitives":[ + { + "attributes":{ + "POSITION":18411, + "NORMAL":18412, + "TEXCOORD_0":18413 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.229", + "primitives":[ + { + "attributes":{ + "POSITION":18414, + "NORMAL":18415, + "TEXCOORD_0":18416 + }, + "indices":18417, + "material":3 + } + ] + }, + { + "name":"Mesh.2128", + "primitives":[ + { + "attributes":{ + "POSITION":18418, + "NORMAL":18419, + "TEXCOORD_0":18420 + }, + "indices":3151, + "material":3 + } + ] + }, + { + "name":"Mesh.7390", + "primitives":[ + { + "attributes":{ + "POSITION":18421, + "NORMAL":18422, + "TEXCOORD_0":18423 + }, + "indices":18424, + "material":7 + } + ] + }, + { + "name":"Mesh.7561", + "primitives":[ + { + "attributes":{ + "POSITION":18425, + "NORMAL":18426 + }, + "indices":2254, + "material":3 + } + ] + }, + { + "name":"Mesh.6282", + "primitives":[ + { + "attributes":{ + "POSITION":18427, + "NORMAL":18428, + "TEXCOORD_0":18429 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.8086", + "primitives":[ + { + "attributes":{ + "POSITION":18430, + "NORMAL":18431 + }, + "indices":8208, + "material":3 + } + ] + }, + { + "name":"Mesh.6243", + "primitives":[ + { + "attributes":{ + "POSITION":18432, + "NORMAL":18433, + "TEXCOORD_0":18434 + }, + "indices":615, + "material":20 + } + ] + }, + { + "name":"Mesh.5299", + "primitives":[ + { + "attributes":{ + "POSITION":18435, + "NORMAL":18436, + "TEXCOORD_0":18437 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5937", + "primitives":[ + { + "attributes":{ + "POSITION":18438, + "NORMAL":18439, + "TEXCOORD_0":18440 + }, + "indices":3712, + "material":33 + } + ] + }, + { + "name":"Mesh.5636", + "primitives":[ + { + "attributes":{ + "POSITION":18441, + "NORMAL":18442, + "TEXCOORD_0":18443 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7143", + "primitives":[ + { + "attributes":{ + "POSITION":18444, + "NORMAL":18445, + "TEXCOORD_0":18446 + }, + "indices":18447, + "material":7 + } + ] + }, + { + "name":"Mesh.6498", + "primitives":[ + { + "attributes":{ + "POSITION":18448, + "NORMAL":18449, + "TEXCOORD_0":18450 + }, + "indices":3914, + "material":0 + } + ] + }, + { + "name":"Mesh.1095", + "primitives":[ + { + "attributes":{ + "POSITION":18451, + "NORMAL":18452, + "TEXCOORD_0":18453 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.6211", + "primitives":[ + { + "attributes":{ + "POSITION":18454, + "NORMAL":18455, + "TEXCOORD_0":18456 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.8808", + "primitives":[ + { + "attributes":{ + "POSITION":18457, + "NORMAL":18458 + }, + "indices":12211, + "material":3 + } + ] + }, + { + "name":"Mesh.2796", + "primitives":[ + { + "attributes":{ + "POSITION":18459, + "NORMAL":18460, + "TEXCOORD_0":18461 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.7685", + "primitives":[ + { + "attributes":{ + "POSITION":18462, + "NORMAL":18463 + }, + "indices":18464, + "material":3 + } + ] + }, + { + "name":"Mesh.1709", + "primitives":[ + { + "attributes":{ + "POSITION":18465, + "NORMAL":18466, + "TEXCOORD_0":18467 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.8258", + "primitives":[ + { + "attributes":{ + "POSITION":18468, + "NORMAL":18469 + }, + "indices":17684, + "material":3 + } + ] + }, + { + "name":"Mesh.7154", + "primitives":[ + { + "attributes":{ + "POSITION":18470, + "NORMAL":18471, + "TEXCOORD_0":18472 + }, + "indices":1540, + "material":7 + } + ] + }, + { + "name":"Mesh.7286", + "primitives":[ + { + "attributes":{ + "POSITION":18473, + "NORMAL":18474, + "TEXCOORD_0":18475 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.6376", + "primitives":[ + { + "attributes":{ + "POSITION":18476, + "NORMAL":18477 + }, + "indices":18478, + "material":0 + } + ] + }, + { + "name":"Mesh.6592", + "primitives":[ + { + "attributes":{ + "POSITION":18479, + "NORMAL":18480 + }, + "indices":6926, + "material":0 + } + ] + }, + { + "name":"Mesh.8645", + "primitives":[ + { + "attributes":{ + "POSITION":18481, + "NORMAL":18482 + }, + "indices":4971, + "material":3 + } + ] + }, + { + "name":"Mesh.1668", + "primitives":[ + { + "attributes":{ + "POSITION":18483, + "NORMAL":18484, + "TEXCOORD_0":18485 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.5659", + "primitives":[ + { + "attributes":{ + "POSITION":18486, + "NORMAL":18487, + "TEXCOORD_0":18488 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2187", + "primitives":[ + { + "attributes":{ + "POSITION":18489, + "NORMAL":18490, + "TEXCOORD_0":18491 + }, + "indices":2362, + "material":3 + } + ] + }, + { + "name":"Mesh.7760", + "primitives":[ + { + "attributes":{ + "POSITION":18492, + "NORMAL":18493 + }, + "indices":18494, + "material":3 + } + ] + }, + { + "name":"Mesh.6038", + "primitives":[ + { + "attributes":{ + "POSITION":18495, + "NORMAL":18496, + "TEXCOORD_0":18497 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.6828", + "primitives":[ + { + "attributes":{ + "POSITION":18498, + "NORMAL":18499, + "TEXCOORD_0":18500 + }, + "indices":18501, + "material":0 + } + ] + }, + { + "name":"Mesh.8649", + "primitives":[ + { + "attributes":{ + "POSITION":18502, + "NORMAL":18503 + }, + "indices":4761, + "material":3 + } + ] + }, + { + "name":"Mesh.7186", + "primitives":[ + { + "attributes":{ + "POSITION":18504, + "NORMAL":18505, + "TEXCOORD_0":18506 + }, + "indices":2111, + "material":7 + } + ] + }, + { + "name":"Mesh.2299", + "primitives":[ + { + "attributes":{ + "POSITION":18507, + "NORMAL":18508, + "TEXCOORD_0":18509 + }, + "indices":6459, + "material":0 + } + ] + }, + { + "name":"Mesh.7504", + "primitives":[ + { + "attributes":{ + "POSITION":18510, + "NORMAL":18511 + }, + "indices":18512, + "material":3 + } + ] + }, + { + "name":"Mesh.6146", + "primitives":[ + { + "attributes":{ + "POSITION":18513, + "NORMAL":18514, + "TEXCOORD_0":18515 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.5782", + "primitives":[ + { + "attributes":{ + "POSITION":18516, + "NORMAL":18517, + "TEXCOORD_0":18518 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.2564", + "primitives":[ + { + "attributes":{ + "POSITION":18519, + "NORMAL":18520, + "TEXCOORD_0":18521 + }, + "indices":1315, + "material":0 + } + ] + }, + { + "name":"Mesh.6581", + "primitives":[ + { + "attributes":{ + "POSITION":18522, + "NORMAL":18523 + }, + "indices":5333, + "material":0 + } + ] + }, + { + "name":"Mesh.7084", + "primitives":[ + { + "attributes":{ + "POSITION":18524, + "NORMAL":18525 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.2852", + "primitives":[ + { + "attributes":{ + "POSITION":18526, + "NORMAL":18527 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.8508", + "primitives":[ + { + "attributes":{ + "POSITION":18528, + "NORMAL":18529 + }, + "indices":18530, + "material":3 + } + ] + }, + { + "name":"Mesh.5647", + "primitives":[ + { + "attributes":{ + "POSITION":18531, + "NORMAL":18532, + "TEXCOORD_0":18533 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.139", + "primitives":[ + { + "attributes":{ + "POSITION":18534, + "NORMAL":18535, + "TEXCOORD_0":18536 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.8740", + "primitives":[ + { + "attributes":{ + "POSITION":18537, + "NORMAL":18538 + }, + "indices":12421, + "material":3 + } + ] + }, + { + "name":"Mesh.5261", + "primitives":[ + { + "attributes":{ + "POSITION":18539, + "NORMAL":18540, + "TEXCOORD_0":18541 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5351", + "primitives":[ + { + "attributes":{ + "POSITION":18542, + "NORMAL":18543, + "TEXCOORD_0":18544 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.411", + "primitives":[ + { + "attributes":{ + "POSITION":18545, + "NORMAL":18546 + }, + "indices":2624, + "material":0 + } + ] + }, + { + "name":"Mesh.2239", + "primitives":[ + { + "attributes":{ + "POSITION":18547, + "NORMAL":18548, + "TEXCOORD_0":18549 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2053", + "primitives":[ + { + "attributes":{ + "POSITION":18550, + "NORMAL":18551, + "TEXCOORD_0":18552 + }, + "indices":18553, + "material":0 + } + ] + }, + { + "name":"Mesh.5536", + "primitives":[ + { + "attributes":{ + "POSITION":18554, + "NORMAL":18555, + "TEXCOORD_0":18556 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2591", + "primitives":[ + { + "attributes":{ + "POSITION":18557, + "NORMAL":18558, + "TEXCOORD_0":18559 + }, + "indices":914, + "material":0 + } + ] + }, + { + "name":"Mesh.6402", + "primitives":[ + { + "attributes":{ + "POSITION":18560, + "NORMAL":18561 + }, + "indices":18562, + "material":0 + } + ] + }, + { + "name":"Mesh.6223", + "primitives":[ + { + "attributes":{ + "POSITION":18563, + "NORMAL":18564, + "TEXCOORD_0":18565 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.7053", + "primitives":[ + { + "attributes":{ + "POSITION":18566, + "NORMAL":18567, + "TEXCOORD_0":18568 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.6081", + "primitives":[ + { + "attributes":{ + "POSITION":18569, + "NORMAL":18570, + "TEXCOORD_0":18571 + }, + "indices":9639, + "material":11 + } + ] + }, + { + "name":"Mesh.5936", + "primitives":[ + { + "attributes":{ + "POSITION":18572, + "NORMAL":18573, + "TEXCOORD_0":18574 + }, + "indices":1822, + "material":11 + } + ] + }, + { + "name":"Mesh.5544", + "primitives":[ + { + "attributes":{ + "POSITION":18575, + "NORMAL":18576, + "TEXCOORD_0":18577 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7229", + "primitives":[ + { + "attributes":{ + "POSITION":18578, + "NORMAL":18579, + "TEXCOORD_0":18580 + }, + "indices":2577, + "material":7 + } + ] + }, + { + "name":"Mesh.7547", + "primitives":[ + { + "attributes":{ + "POSITION":18581, + "NORMAL":18582 + }, + "indices":4921, + "material":3 + } + ] + }, + { + "name":"Mesh.2143", + "primitives":[ + { + "attributes":{ + "POSITION":18583, + "NORMAL":18584, + "TEXCOORD_0":18585 + }, + "indices":18586, + "material":3 + } + ] + }, + { + "name":"Mesh.2607", + "primitives":[ + { + "attributes":{ + "POSITION":18587, + "NORMAL":18588, + "TEXCOORD_0":18589 + }, + "indices":18590, + "material":0 + } + ] + }, + { + "name":"Mesh.4842", + "primitives":[ + { + "attributes":{ + "POSITION":18591, + "NORMAL":18592, + "TEXCOORD_0":18593 + }, + "indices":7108, + "material":49 + } + ] + }, + { + "name":"Mesh.962", + "primitives":[ + { + "attributes":{ + "POSITION":18594, + "NORMAL":18595, + "TEXCOORD_0":18596 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.7772", + "primitives":[ + { + "attributes":{ + "POSITION":18597, + "NORMAL":18598 + }, + "indices":6067, + "material":3 + } + ] + }, + { + "name":"Mesh.1691", + "primitives":[ + { + "attributes":{ + "POSITION":18599, + "NORMAL":18600, + "TEXCOORD_0":18601 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.2132", + "primitives":[ + { + "attributes":{ + "POSITION":18602, + "NORMAL":18603, + "TEXCOORD_0":18604 + }, + "indices":2499, + "material":3 + } + ] + }, + { + "name":"Mesh.8099", + "primitives":[ + { + "attributes":{ + "POSITION":18605, + "NORMAL":18606 + }, + "indices":2433, + "material":3 + } + ] + }, + { + "name":"Mesh.7158", + "primitives":[ + { + "attributes":{ + "POSITION":18607, + "NORMAL":18608, + "TEXCOORD_0":18609 + }, + "indices":18610, + "material":7 + } + ] + }, + { + "name":"Mesh.8198", + "primitives":[ + { + "attributes":{ + "POSITION":18611, + "NORMAL":18612 + }, + "indices":9291, + "material":3 + } + ] + }, + { + "name":"Mesh.2819", + "primitives":[ + { + "attributes":{ + "POSITION":18613, + "NORMAL":18614, + "TEXCOORD_0":18615 + }, + "indices":11001, + "material":0 + } + ] + }, + { + "name":"Mesh.4825", + "primitives":[ + { + "attributes":{ + "POSITION":18616, + "NORMAL":18617, + "TEXCOORD_0":18618 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7198", + "primitives":[ + { + "attributes":{ + "POSITION":18619, + "NORMAL":18620, + "TEXCOORD_0":18621 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.005", + "primitives":[ + { + "attributes":{ + "POSITION":18622, + "NORMAL":18623, + "TEXCOORD_0":18624 + }, + "indices":18625, + "material":18 + } + ] + }, + { + "name":"Mesh.7701", + "primitives":[ + { + "attributes":{ + "POSITION":18626, + "NORMAL":18627 + }, + "indices":18628, + "material":3 + } + ] + }, + { + "name":"Mesh.8863", + "primitives":[ + { + "attributes":{ + "POSITION":18629, + "NORMAL":18630 + }, + "indices":18631, + "material":3 + } + ] + }, + { + "name":"Mesh.151", + "primitives":[ + { + "attributes":{ + "POSITION":18632, + "NORMAL":18633, + "TEXCOORD_0":18634 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.1041", + "primitives":[ + { + "attributes":{ + "POSITION":18635, + "NORMAL":18636, + "TEXCOORD_0":18637 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.7590", + "primitives":[ + { + "attributes":{ + "POSITION":18638, + "NORMAL":18639 + }, + "indices":17684, + "material":3 + } + ] + }, + { + "name":"Mesh.6089", + "primitives":[ + { + "attributes":{ + "POSITION":18640, + "NORMAL":18641, + "TEXCOORD_0":18642 + }, + "indices":2118, + "material":12 + } + ] + }, + { + "name":"Mesh.7971", + "primitives":[ + { + "attributes":{ + "POSITION":18643, + "NORMAL":18644, + "TEXCOORD_0":18645 + }, + "indices":8604, + "material":0 + } + ] + }, + { + "name":"Mesh.749", + "primitives":[ + { + "attributes":{ + "POSITION":18646, + "NORMAL":18647, + "TEXCOORD_0":18648 + }, + "indices":3267, + "material":0 + } + ] + }, + { + "name":"Mesh.4885", + "primitives":[ + { + "attributes":{ + "POSITION":18649, + "NORMAL":18650, + "TEXCOORD_0":18651 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1056", + "primitives":[ + { + "attributes":{ + "POSITION":18652, + "NORMAL":18653, + "TEXCOORD_0":18654 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.5757", + "primitives":[ + { + "attributes":{ + "POSITION":18655, + "NORMAL":18656 + }, + "indices":6051, + "material":0 + } + ] + }, + { + "name":"Mesh.2183", + "primitives":[ + { + "attributes":{ + "POSITION":18657, + "NORMAL":18658, + "TEXCOORD_0":18659 + }, + "indices":7438, + "material":0 + } + ] + }, + { + "name":"Mesh.6905", + "primitives":[ + { + "attributes":{ + "POSITION":18660, + "NORMAL":18661 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.241", + "primitives":[ + { + "attributes":{ + "POSITION":18662, + "NORMAL":18663, + "TEXCOORD_0":18664 + }, + "indices":18665, + "material":3 + } + ] + }, + { + "name":"Mesh.4814", + "primitives":[ + { + "attributes":{ + "POSITION":18666, + "NORMAL":18667, + "TEXCOORD_0":18668 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.718", + "primitives":[ + { + "attributes":{ + "POSITION":18669, + "NORMAL":18670, + "TEXCOORD_0":18671 + }, + "indices":730, + "material":0 + } + ] + }, + { + "name":"Mesh.7609", + "primitives":[ + { + "attributes":{ + "POSITION":18672, + "NORMAL":18673 + }, + "indices":5454, + "material":3 + } + ] + }, + { + "name":"Mesh.7990", + "primitives":[ + { + "attributes":{ + "POSITION":18674, + "NORMAL":18675, + "TEXCOORD_0":18676 + }, + "indices":18677, + "material":3 + } + ] + }, + { + "name":"Mesh.8491", + "primitives":[ + { + "attributes":{ + "POSITION":18678, + "NORMAL":18679 + }, + "indices":4921, + "material":3 + } + ] + }, + { + "name":"Mesh.5326", + "primitives":[ + { + "attributes":{ + "POSITION":18680, + "NORMAL":18681, + "TEXCOORD_0":18682 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5610", + "primitives":[ + { + "attributes":{ + "POSITION":18683, + "NORMAL":18684, + "TEXCOORD_0":18685 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6022", + "primitives":[ + { + "attributes":{ + "POSITION":18686, + "NORMAL":18687, + "TEXCOORD_0":18688 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.8724", + "primitives":[ + { + "attributes":{ + "POSITION":18689, + "NORMAL":18690 + }, + "indices":8205, + "material":3 + } + ] + }, + { + "name":"Mesh.2659", + "primitives":[ + { + "attributes":{ + "POSITION":18691, + "NORMAL":18692, + "TEXCOORD_0":18693 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.7170", + "primitives":[ + { + "attributes":{ + "POSITION":18694, + "NORMAL":18695, + "TEXCOORD_0":18696 + }, + "indices":16383, + "material":7 + } + ] + }, + { + "name":"Mesh.2831", + "primitives":[ + { + "attributes":{ + "POSITION":18697, + "NORMAL":18698 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.2076", + "primitives":[ + { + "attributes":{ + "POSITION":18699, + "NORMAL":18700, + "TEXCOORD_0":18701 + }, + "indices":4231, + "material":0 + } + ] + }, + { + "name":"Mesh.7304", + "primitives":[ + { + "attributes":{ + "POSITION":18702, + "NORMAL":18703, + "TEXCOORD_0":18704 + }, + "indices":2389, + "material":7 + } + ] + }, + { + "name":"Mesh.5255", + "primitives":[ + { + "attributes":{ + "POSITION":18705, + "NORMAL":18706, + "TEXCOORD_0":18707 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1625", + "primitives":[ + { + "attributes":{ + "POSITION":18708, + "NORMAL":18709, + "TEXCOORD_0":18710 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.8657", + "primitives":[ + { + "attributes":{ + "POSITION":18711, + "NORMAL":18712 + }, + "indices":6304, + "material":3 + } + ] + }, + { + "name":"Mesh.2439", + "primitives":[ + { + "attributes":{ + "POSITION":18713, + "NORMAL":18714, + "TEXCOORD_0":18715 + }, + "indices":313, + "material":0 + } + ] + }, + { + "name":"Mesh.6115", + "primitives":[ + { + "attributes":{ + "POSITION":18716, + "NORMAL":18717, + "TEXCOORD_0":18718 + }, + "indices":1132, + "material":23 + } + ] + }, + { + "name":"Mesh.2652", + "primitives":[ + { + "attributes":{ + "POSITION":18719, + "NORMAL":18720, + "TEXCOORD_0":18721 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.2334", + "primitives":[ + { + "attributes":{ + "POSITION":18722, + "NORMAL":18723, + "TEXCOORD_0":18724 + }, + "indices":4568, + "material":0 + } + ] + }, + { + "name":"Mesh.6163", + "primitives":[ + { + "attributes":{ + "POSITION":18725, + "NORMAL":18726, + "TEXCOORD_0":18727 + }, + "indices":2118, + "material":12 + } + ] + }, + { + "name":"Mesh.2022", + "primitives":[ + { + "attributes":{ + "POSITION":18728, + "NORMAL":18729, + "TEXCOORD_0":18730 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.4857", + "primitives":[ + { + "attributes":{ + "POSITION":18731, + "NORMAL":18732, + "TEXCOORD_0":18733 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8764", + "primitives":[ + { + "attributes":{ + "POSITION":18734, + "NORMAL":18735 + }, + "indices":5992, + "material":3 + } + ] + }, + { + "name":"Mesh.4897", + "primitives":[ + { + "attributes":{ + "POSITION":18736, + "NORMAL":18737, + "TEXCOORD_0":18738 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7413", + "primitives":[ + { + "attributes":{ + "POSITION":18739, + "NORMAL":18740, + "TEXCOORD_0":18741 + }, + "indices":4387, + "material":7 + } + ] + }, + { + "name":"Mesh.2263", + "primitives":[ + { + "attributes":{ + "POSITION":18742, + "NORMAL":18743, + "TEXCOORD_0":18744 + }, + "indices":15034, + "material":0 + } + ] + }, + { + "name":"Mesh.2834", + "primitives":[ + { + "attributes":{ + "POSITION":18745, + "NORMAL":18746 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.9152", + "primitives":[ + { + "attributes":{ + "POSITION":18747, + "NORMAL":18748, + "TEXCOORD_0":18749 + }, + "indices":59, + "material":7 + } + ] + }, + { + "name":"Mesh.5082", + "primitives":[ + { + "attributes":{ + "POSITION":18750, + "NORMAL":18751, + "TEXCOORD_0":18752 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8604", + "primitives":[ + { + "attributes":{ + "POSITION":18753, + "NORMAL":18754 + }, + "indices":8372, + "material":3 + } + ] + }, + { + "name":"Mesh.355", + "primitives":[ + { + "attributes":{ + "POSITION":18755, + "NORMAL":18756, + "TEXCOORD_0":18757 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5409", + "primitives":[ + { + "attributes":{ + "POSITION":18758, + "NORMAL":18759, + "TEXCOORD_0":18760 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8877", + "primitives":[ + { + "attributes":{ + "POSITION":18761, + "NORMAL":18762 + }, + "indices":2669, + "material":3 + } + ] + }, + { + "name":"Mesh.7728", + "primitives":[ + { + "attributes":{ + "POSITION":18763, + "NORMAL":18764 + }, + "indices":18765, + "material":3 + } + ] + }, + { + "name":"Mesh.1845", + "primitives":[ + { + "attributes":{ + "POSITION":18766, + "NORMAL":18767 + }, + "indices":65, + "material":8 + } + ] + }, + { + "name":"Mesh.2302", + "primitives":[ + { + "attributes":{ + "POSITION":18768, + "NORMAL":18769, + "TEXCOORD_0":18770 + }, + "indices":18771, + "material":0 + } + ] + }, + { + "name":"Mesh.6419", + "primitives":[ + { + "attributes":{ + "POSITION":18772, + "NORMAL":18773 + }, + "indices":6621, + "material":0 + } + ] + }, + { + "name":"Mesh.6635", + "primitives":[ + { + "attributes":{ + "POSITION":18774, + "NORMAL":18775 + }, + "indices":1355, + "material":0 + } + ] + }, + { + "name":"Mesh.2127", + "primitives":[ + { + "attributes":{ + "POSITION":18776, + "NORMAL":18777, + "TEXCOORD_0":18778 + }, + "indices":4988, + "material":3 + } + ] + }, + { + "name":"Mesh.7014", + "primitives":[ + { + "attributes":{ + "POSITION":18779, + "NORMAL":18780 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.6281", + "primitives":[ + { + "attributes":{ + "POSITION":18781, + "NORMAL":18782, + "TEXCOORD_0":18783 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.5298", + "primitives":[ + { + "attributes":{ + "POSITION":18784, + "NORMAL":18785, + "TEXCOORD_0":18786 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1775", + "primitives":[ + { + "attributes":{ + "POSITION":18787, + "NORMAL":18788, + "TEXCOORD_0":18789 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.5338", + "primitives":[ + { + "attributes":{ + "POSITION":18790, + "NORMAL":18791, + "TEXCOORD_0":18792 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6497", + "primitives":[ + { + "attributes":{ + "POSITION":18793, + "NORMAL":18794, + "TEXCOORD_0":18795 + }, + "indices":3788, + "material":0 + } + ] + }, + { + "name":"Mesh.1094", + "primitives":[ + { + "attributes":{ + "POSITION":18796, + "NORMAL":18797, + "TEXCOORD_0":18798 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.9007", + "primitives":[ + { + "attributes":{ + "POSITION":18799, + "NORMAL":18800, + "TEXCOORD_0":18801 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.6210", + "primitives":[ + { + "attributes":{ + "POSITION":18802, + "NORMAL":18803, + "TEXCOORD_0":18804 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.8692", + "primitives":[ + { + "attributes":{ + "POSITION":18805, + "NORMAL":18806 + }, + "indices":4749, + "material":3 + } + ] + }, + { + "name":"Mesh.2507", + "primitives":[ + { + "attributes":{ + "POSITION":18807, + "NORMAL":18808, + "TEXCOORD_0":18809 + }, + "indices":1400, + "material":0 + } + ] + }, + { + "name":"Mesh.8731", + "primitives":[ + { + "attributes":{ + "POSITION":18810, + "NORMAL":18811 + }, + "indices":18812, + "material":3 + } + ] + }, + { + "name":"Mesh.6366", + "primitives":[ + { + "attributes":{ + "POSITION":18813, + "NORMAL":18814 + }, + "indices":18815, + "material":0 + } + ] + }, + { + "name":"Mesh.8248", + "primitives":[ + { + "attributes":{ + "POSITION":18816, + "NORMAL":18817 + }, + "indices":4744, + "material":3 + } + ] + }, + { + "name":"Mesh.6846", + "primitives":[ + { + "attributes":{ + "POSITION":18818, + "NORMAL":18819, + "TEXCOORD_0":18820 + }, + "indices":2649, + "material":3 + } + ] + }, + { + "name":"Mesh.279", + "primitives":[ + { + "attributes":{ + "POSITION":18821, + "NORMAL":18822, + "TEXCOORD_0":18823 + }, + "indices":4531, + "material":0 + } + ] + }, + { + "name":"Mesh.1667", + "primitives":[ + { + "attributes":{ + "POSITION":18824, + "NORMAL":18825, + "TEXCOORD_0":18826 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.2858", + "primitives":[ + { + "attributes":{ + "POSITION":18827, + "NORMAL":18828 + }, + "indices":2224, + "material":1 + } + ] + }, + { + "name":"Mesh.2597", + "primitives":[ + { + "attributes":{ + "POSITION":18829, + "NORMAL":18830, + "TEXCOORD_0":18831 + }, + "indices":2427, + "material":0 + } + ] + }, + { + "name":"Mesh.2186", + "primitives":[ + { + "attributes":{ + "POSITION":18832, + "NORMAL":18833, + "TEXCOORD_0":18834 + }, + "indices":2708, + "material":3 + } + ] + }, + { + "name":"Mesh.8675", + "primitives":[ + { + "attributes":{ + "POSITION":18835, + "NORMAL":18836 + }, + "indices":10467, + "material":3 + } + ] + }, + { + "name":"Mesh.7759", + "primitives":[ + { + "attributes":{ + "POSITION":18837, + "NORMAL":18838 + }, + "indices":18839, + "material":3 + } + ] + }, + { + "name":"Mesh.4869", + "primitives":[ + { + "attributes":{ + "POSITION":18840, + "NORMAL":18841, + "TEXCOORD_0":18842 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9086", + "primitives":[ + { + "attributes":{ + "POSITION":18843, + "NORMAL":18844, + "TEXCOORD_0":18845 + }, + "indices":3382, + "material":7 + } + ] + }, + { + "name":"Mesh.6037", + "primitives":[ + { + "attributes":{ + "POSITION":18846, + "NORMAL":18847, + "TEXCOORD_0":18848 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.2289", + "primitives":[ + { + "attributes":{ + "POSITION":18849, + "NORMAL":18850, + "TEXCOORD_0":18851 + }, + "indices":1621, + "material":0 + } + ] + }, + { + "name":"Mesh.7538", + "primitives":[ + { + "attributes":{ + "POSITION":18852, + "NORMAL":18853 + }, + "indices":18854, + "material":3 + } + ] + }, + { + "name":"Mesh.400", + "primitives":[ + { + "attributes":{ + "POSITION":18855, + "NORMAL":18856 + }, + "indices":9966, + "material":22 + } + ] + }, + { + "name":"Mesh.605", + "primitives":[ + { + "attributes":{ + "POSITION":18857, + "NORMAL":18858, + "TEXCOORD_0":18859 + }, + "indices":16323, + "material":3 + } + ] + }, + { + "name":"Mesh.2718", + "primitives":[ + { + "attributes":{ + "POSITION":18860, + "NORMAL":18861, + "TEXCOORD_0":18862 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.7185", + "primitives":[ + { + "attributes":{ + "POSITION":18863, + "NORMAL":18864, + "TEXCOORD_0":18865 + }, + "indices":18866, + "material":7 + } + ] + }, + { + "name":"Mesh.5773", + "primitives":[ + { + "attributes":{ + "POSITION":18867, + "NORMAL":18868, + "TEXCOORD_0":18869 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.409", + "primitives":[ + { + "attributes":{ + "POSITION":18870, + "NORMAL":18871 + }, + "indices":5107, + "material":0 + } + ] + }, + { + "name":"Mesh.308", + "primitives":[ + { + "attributes":{ + "POSITION":18872, + "NORMAL":18873, + "TEXCOORD_0":18874 + }, + "indices":668, + "material":0 + } + ] + }, + { + "name":"Mesh.5587", + "primitives":[ + { + "attributes":{ + "POSITION":18875, + "NORMAL":18876, + "TEXCOORD_0":18877 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2803", + "primitives":[ + { + "attributes":{ + "POSITION":18878, + "NORMAL":18879, + "TEXCOORD_0":18880 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.5781", + "primitives":[ + { + "attributes":{ + "POSITION":18881, + "NORMAL":18882, + "TEXCOORD_0":18883 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.2563", + "primitives":[ + { + "attributes":{ + "POSITION":18884, + "NORMAL":18885, + "TEXCOORD_0":18886 + }, + "indices":3122, + "material":0 + } + ] + }, + { + "name":"Mesh.2842", + "primitives":[ + { + "attributes":{ + "POSITION":18887, + "NORMAL":18888 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6580", + "primitives":[ + { + "attributes":{ + "POSITION":18889, + "NORMAL":18890 + }, + "indices":5694, + "material":0 + } + ] + }, + { + "name":"Mesh.5646", + "primitives":[ + { + "attributes":{ + "POSITION":18891, + "NORMAL":18892, + "TEXCOORD_0":18893 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.780", + "primitives":[ + { + "attributes":{ + "POSITION":18894, + "NORMAL":18895, + "TEXCOORD_0":18896 + }, + "indices":3972, + "material":0 + } + ] + }, + { + "name":"Mesh.8949", + "primitives":[ + { + "attributes":{ + "POSITION":18897, + "NORMAL":18898, + "TEXCOORD_0":18899 + }, + "indices":525, + "material":7 + } + ] + }, + { + "name":"Mesh.2090", + "primitives":[ + { + "attributes":{ + "POSITION":18900, + "NORMAL":18901, + "TEXCOORD_0":18902 + }, + "indices":18903, + "material":3 + } + ] + }, + { + "name":"Mesh.2542", + "primitives":[ + { + "attributes":{ + "POSITION":18904, + "NORMAL":18905, + "TEXCOORD_0":18906 + }, + "indices":1595, + "material":4 + } + ] + }, + { + "name":"Mesh.5350", + "primitives":[ + { + "attributes":{ + "POSITION":18907, + "NORMAL":18908, + "TEXCOORD_0":18909 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2238", + "primitives":[ + { + "attributes":{ + "POSITION":18910, + "NORMAL":18911, + "TEXCOORD_0":18912 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5270", + "primitives":[ + { + "attributes":{ + "POSITION":18913, + "NORMAL":18914, + "TEXCOORD_0":18915 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7330", + "primitives":[ + { + "attributes":{ + "POSITION":18916, + "NORMAL":18917, + "TEXCOORD_0":18918 + }, + "indices":2653, + "material":7 + } + ] + }, + { + "name":"Mesh.5402", + "primitives":[ + { + "attributes":{ + "POSITION":18919, + "NORMAL":18920, + "TEXCOORD_0":18921 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6222", + "primitives":[ + { + "attributes":{ + "POSITION":18922, + "NORMAL":18923, + "TEXCOORD_0":18924 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.7052", + "primitives":[ + { + "attributes":{ + "POSITION":18925, + "NORMAL":18926 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.5935", + "primitives":[ + { + "attributes":{ + "POSITION":18927, + "NORMAL":18928, + "TEXCOORD_0":18929 + }, + "indices":1822, + "material":11 + } + ] + }, + { + "name":"Mesh.7228", + "primitives":[ + { + "attributes":{ + "POSITION":18930, + "NORMAL":18931, + "TEXCOORD_0":18932 + }, + "indices":2577, + "material":7 + } + ] + }, + { + "name":"Mesh.135", + "primitives":[ + { + "attributes":{ + "POSITION":18933, + "NORMAL":18934, + "TEXCOORD_0":18935 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7546", + "primitives":[ + { + "attributes":{ + "POSITION":18936, + "NORMAL":18937 + }, + "indices":18938, + "material":3 + } + ] + }, + { + "name":"Mesh.2142", + "primitives":[ + { + "attributes":{ + "POSITION":18939, + "NORMAL":18940, + "TEXCOORD_0":18941 + }, + "indices":6563, + "material":3 + } + ] + }, + { + "name":"Mesh.9121", + "primitives":[ + { + "attributes":{ + "POSITION":18942, + "NORMAL":18943, + "TEXCOORD_0":18944 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.4841", + "primitives":[ + { + "attributes":{ + "POSITION":18945, + "NORMAL":18946, + "TEXCOORD_0":18947 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8362", + "primitives":[ + { + "attributes":{ + "POSITION":18948, + "NORMAL":18949 + }, + "indices":8208, + "material":3 + } + ] + }, + { + "name":"Mesh.7771", + "primitives":[ + { + "attributes":{ + "POSITION":18950, + "NORMAL":18951 + }, + "indices":18952, + "material":3 + } + ] + }, + { + "name":"Mesh.5574", + "primitives":[ + { + "attributes":{ + "POSITION":18953, + "NORMAL":18954, + "TEXCOORD_0":18955 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8098", + "primitives":[ + { + "attributes":{ + "POSITION":18956, + "NORMAL":18957 + }, + "indices":4434, + "material":3 + } + ] + }, + { + "name":"Mesh.7157", + "primitives":[ + { + "attributes":{ + "POSITION":18958, + "NORMAL":18959, + "TEXCOORD_0":18960 + }, + "indices":14617, + "material":7 + } + ] + }, + { + "name":"Mesh.5613", + "primitives":[ + { + "attributes":{ + "POSITION":18961, + "NORMAL":18962, + "TEXCOORD_0":18963 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2818", + "primitives":[ + { + "attributes":{ + "POSITION":18964, + "NORMAL":18965, + "TEXCOORD_0":18966 + }, + "indices":11318, + "material":0 + } + ] + }, + { + "name":"Mesh.7197", + "primitives":[ + { + "attributes":{ + "POSITION":18967, + "NORMAL":18968, + "TEXCOORD_0":18969 + }, + "indices":10330, + "material":7 + } + ] + }, + { + "name":"Mesh.4985", + "primitives":[ + { + "attributes":{ + "POSITION":18970, + "NORMAL":18971, + "TEXCOORD_0":18972 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7700", + "primitives":[ + { + "attributes":{ + "POSITION":18973, + "NORMAL":18974 + }, + "indices":18975, + "material":3 + } + ] + }, + { + "name":"Mesh.9191", + "primitives":[ + { + "attributes":{ + "POSITION":18976, + "NORMAL":18977, + "TEXCOORD_0":18978 + }, + "indices":247, + "material":7 + } + ] + }, + { + "name":"Mesh.236", + "primitives":[ + { + "attributes":{ + "POSITION":18979, + "NORMAL":18980, + "TEXCOORD_0":18981 + }, + "indices":18982, + "material":3 + } + ] + }, + { + "name":"Mesh.6736", + "primitives":[ + { + "attributes":{ + "POSITION":18983, + "NORMAL":18984 + }, + "indices":1084, + "material":0 + } + ] + }, + { + "name":"Mesh.6983", + "primitives":[ + { + "attributes":{ + "POSITION":18985, + "NORMAL":18986, + "TEXCOORD_0":18987 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.7589", + "primitives":[ + { + "attributes":{ + "POSITION":18988, + "NORMAL":18989 + }, + "indices":12281, + "material":3 + } + ] + }, + { + "name":"Mesh.4884", + "primitives":[ + { + "attributes":{ + "POSITION":18990, + "NORMAL":18991, + "TEXCOORD_0":18992 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.267", + "primitives":[ + { + "attributes":{ + "POSITION":18993, + "NORMAL":18994, + "TEXCOORD_0":18995 + }, + "indices":18996, + "material":3 + } + ] + }, + { + "name":"Mesh.5547", + "primitives":[ + { + "attributes":{ + "POSITION":18997, + "NORMAL":18998, + "TEXCOORD_0":18999 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9108", + "primitives":[ + { + "attributes":{ + "POSITION":19000, + "NORMAL":19001, + "TEXCOORD_0":19002 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.1074", + "primitives":[ + { + "attributes":{ + "POSITION":19003, + "NORMAL":19004, + "TEXCOORD_0":19005 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.9177", + "primitives":[ + { + "attributes":{ + "POSITION":19006, + "NORMAL":19007, + "TEXCOORD_0":19008 + }, + "indices":2311, + "material":7 + } + ] + }, + { + "name":"Mesh.6904", + "primitives":[ + { + "attributes":{ + "POSITION":19009, + "NORMAL":19010 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.8001", + "primitives":[ + { + "attributes":{ + "POSITION":19011, + "NORMAL":19012, + "TEXCOORD_0":19013 + }, + "indices":4080, + "material":3 + } + ] + }, + { + "name":"Mesh.8181", + "primitives":[ + { + "attributes":{ + "POSITION":19014, + "NORMAL":19015 + }, + "indices":8131, + "material":3 + } + ] + }, + { + "name":"Mesh.7261", + "primitives":[ + { + "attributes":{ + "POSITION":19016, + "NORMAL":19017, + "TEXCOORD_0":19018 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.2647", + "primitives":[ + { + "attributes":{ + "POSITION":19019, + "NORMAL":19020, + "TEXCOORD_0":19021 + }, + "indices":1611, + "material":0 + } + ] + }, + { + "name":"Mesh.6158", + "primitives":[ + { + "attributes":{ + "POSITION":19022, + "NORMAL":19023, + "TEXCOORD_0":19024 + }, + "indices":5922, + "material":33 + } + ] + }, + { + "name":"Mesh.2973", + "primitives":[ + { + "attributes":{ + "POSITION":19025, + "NORMAL":19026, + "TEXCOORD_0":19027 + }, + "indices":8091, + "material":7 + } + ] + }, + { + "name":"Mesh.717", + "primitives":[ + { + "attributes":{ + "POSITION":19028, + "NORMAL":19029, + "TEXCOORD_0":19030 + }, + "indices":17659, + "material":3 + } + ] + }, + { + "name":"Mesh.2088", + "primitives":[ + { + "attributes":{ + "POSITION":19031, + "NORMAL":19032, + "TEXCOORD_0":19033 + }, + "indices":6675, + "material":3 + } + ] + }, + { + "name":"Mesh.7743", + "primitives":[ + { + "attributes":{ + "POSITION":19034, + "NORMAL":19035 + }, + "indices":19036, + "material":3 + } + ] + }, + { + "name":"Mesh.217", + "primitives":[ + { + "attributes":{ + "POSITION":19037, + "NORMAL":19038, + "TEXCOORD_0":19039 + }, + "indices":19040, + "material":3 + } + ] + }, + { + "name":"Mesh.5325", + "primitives":[ + { + "attributes":{ + "POSITION":19041, + "NORMAL":19042, + "TEXCOORD_0":19043 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5180", + "primitives":[ + { + "attributes":{ + "POSITION":19044, + "NORMAL":19045, + "TEXCOORD_0":19046 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6021", + "primitives":[ + { + "attributes":{ + "POSITION":19047, + "NORMAL":19048, + "TEXCOORD_0":19049 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.7169", + "primitives":[ + { + "attributes":{ + "POSITION":19050, + "NORMAL":19051, + "TEXCOORD_0":19052 + }, + "indices":412, + "material":7 + } + ] + }, + { + "name":"Mesh.9002", + "primitives":[ + { + "attributes":{ + "POSITION":19053, + "NORMAL":19054, + "TEXCOORD_0":19055 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.2830", + "primitives":[ + { + "attributes":{ + "POSITION":19056, + "NORMAL":19057 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.934", + "primitives":[ + { + "attributes":{ + "POSITION":19058, + "NORMAL":19059, + "TEXCOORD_0":19060 + }, + "indices":4270, + "material":0 + } + ] + }, + { + "name":"Mesh.5405", + "primitives":[ + { + "attributes":{ + "POSITION":19061, + "NORMAL":19062, + "TEXCOORD_0":19063 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.196", + "primitives":[ + { + "attributes":{ + "POSITION":19064, + "NORMAL":19065, + "TEXCOORD_0":19066 + }, + "indices":19067, + "material":0 + } + ] + }, + { + "name":"Mesh.5254", + "primitives":[ + { + "attributes":{ + "POSITION":19068, + "NORMAL":19069, + "TEXCOORD_0":19070 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9156", + "primitives":[ + { + "attributes":{ + "POSITION":19071, + "NORMAL":19072, + "TEXCOORD_0":19073 + }, + "indices":971, + "material":7 + } + ] + }, + { + "name":"Mesh.6299", + "primitives":[ + { + "attributes":{ + "POSITION":19074, + "NORMAL":19075, + "TEXCOORD_0":19076 + }, + "indices":1465, + "material":25 + } + ] + }, + { + "name":"Mesh.2333", + "primitives":[ + { + "attributes":{ + "POSITION":19077, + "NORMAL":19078, + "TEXCOORD_0":19079 + }, + "indices":647, + "material":0 + } + ] + }, + { + "name":"Mesh.5990", + "primitives":[ + { + "attributes":{ + "POSITION":19080, + "NORMAL":19081, + "TEXCOORD_0":19082 + }, + "indices":9639, + "material":11 + } + ] + }, + { + "name":"Mesh.2021", + "primitives":[ + { + "attributes":{ + "POSITION":19083, + "NORMAL":19084, + "TEXCOORD_0":19085 + }, + "indices":2006, + "material":0 + } + ] + }, + { + "name":"Mesh.8763", + "primitives":[ + { + "attributes":{ + "POSITION":19086, + "NORMAL":19087 + }, + "indices":6343, + "material":3 + } + ] + }, + { + "name":"Mesh.2087", + "primitives":[ + { + "attributes":{ + "POSITION":19088, + "NORMAL":19089, + "TEXCOORD_0":19090 + }, + "indices":19091, + "material":3 + } + ] + }, + { + "name":"Mesh.7641", + "primitives":[ + { + "attributes":{ + "POSITION":19092, + "NORMAL":19093 + }, + "indices":13098, + "material":3 + } + ] + }, + { + "name":"Mesh.4896", + "primitives":[ + { + "attributes":{ + "POSITION":19094, + "NORMAL":19095, + "TEXCOORD_0":19096 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1253", + "primitives":[ + { + "attributes":{ + "POSITION":19097, + "NORMAL":19098, + "TEXCOORD_0":19099 + }, + "indices":19100, + "material":15 + } + ] + }, + { + "name":"Mesh.7586", + "primitives":[ + { + "attributes":{ + "POSITION":19101, + "NORMAL":19102 + }, + "indices":14852, + "material":3 + } + ] + }, + { + "name":"Mesh.2833", + "primitives":[ + { + "attributes":{ + "POSITION":19103, + "NORMAL":19104 + }, + "indices":2098, + "material":1 + } + ] + }, + { + "name":"Mesh.9040", + "primitives":[ + { + "attributes":{ + "POSITION":19105, + "NORMAL":19106, + "TEXCOORD_0":19107 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.304", + "primitives":[ + { + "attributes":{ + "POSITION":19108, + "NORMAL":19109, + "TEXCOORD_0":19110 + }, + "indices":1868, + "material":0 + } + ] + }, + { + "name":"Mesh.356", + "primitives":[ + { + "attributes":{ + "POSITION":19111, + "NORMAL":19112, + "TEXCOORD_0":19113 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5408", + "primitives":[ + { + "attributes":{ + "POSITION":19114, + "NORMAL":19115, + "TEXCOORD_0":19116 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.4876", + "primitives":[ + { + "attributes":{ + "POSITION":19117, + "NORMAL":19118, + "TEXCOORD_0":19119 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2126", + "primitives":[ + { + "attributes":{ + "POSITION":19120, + "NORMAL":19121, + "TEXCOORD_0":19122 + }, + "indices":19123, + "material":3 + } + ] + }, + { + "name":"Mesh.6280", + "primitives":[ + { + "attributes":{ + "POSITION":19124, + "NORMAL":19125, + "TEXCOORD_0":19126 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.5337", + "primitives":[ + { + "attributes":{ + "POSITION":19127, + "NORMAL":19128, + "TEXCOORD_0":19129 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1200", + "primitives":[ + { + "attributes":{ + "POSITION":19130, + "NORMAL":19131 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.6496", + "primitives":[ + { + "attributes":{ + "POSITION":19132, + "NORMAL":19133, + "TEXCOORD_0":19134 + }, + "indices":5542, + "material":0 + } + ] + }, + { + "name":"Mesh.6449", + "primitives":[ + { + "attributes":{ + "POSITION":19135, + "NORMAL":19136, + "TEXCOORD_0":19137 + }, + "indices":3914, + "material":0 + } + ] + }, + { + "name":"Mesh.6209", + "primitives":[ + { + "attributes":{ + "POSITION":19138, + "NORMAL":19139, + "TEXCOORD_0":19140 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.6272", + "primitives":[ + { + "attributes":{ + "POSITION":19141, + "NORMAL":19142, + "TEXCOORD_0":19143 + }, + "indices":266, + "material":12 + } + ] + }, + { + "name":"Mesh.2095", + "primitives":[ + { + "attributes":{ + "POSITION":19144, + "NORMAL":19145, + "TEXCOORD_0":19146 + }, + "indices":19147, + "material":3 + } + ] + }, + { + "name":"Mesh.5582", + "primitives":[ + { + "attributes":{ + "POSITION":19148, + "NORMAL":19149, + "TEXCOORD_0":19150 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.4988", + "primitives":[ + { + "attributes":{ + "POSITION":19151, + "NORMAL":19152, + "TEXCOORD_0":19153 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2978", + "primitives":[ + { + "attributes":{ + "POSITION":19154, + "NORMAL":19155, + "TEXCOORD_0":19156 + }, + "indices":15572, + "material":7 + } + ] + }, + { + "name":"Mesh.8983", + "primitives":[ + { + "attributes":{ + "POSITION":19157, + "NORMAL":19158, + "TEXCOORD_0":19159 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.1185", + "primitives":[ + { + "attributes":{ + "POSITION":19160, + "NORMAL":19161 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.1666", + "primitives":[ + { + "attributes":{ + "POSITION":19162, + "NORMAL":19163, + "TEXCOORD_0":19164 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.312", + "primitives":[ + { + "attributes":{ + "POSITION":19165, + "NORMAL":19166, + "TEXCOORD_0":19167 + }, + "indices":8014, + "material":3 + } + ] + }, + { + "name":"Mesh.9206", + "primitives":[ + { + "attributes":{ + "POSITION":19168, + "NORMAL":19169, + "TEXCOORD_0":19170 + }, + "indices":247, + "material":7 + } + ] + }, + { + "name":"Mesh.2185", + "primitives":[ + { + "attributes":{ + "POSITION":19171, + "NORMAL":19172, + "TEXCOORD_0":19173 + }, + "indices":5926, + "material":0 + } + ] + }, + { + "name":"Mesh.8992", + "primitives":[ + { + "attributes":{ + "POSITION":19174, + "NORMAL":19175, + "TEXCOORD_0":19176 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.8062", + "primitives":[ + { + "attributes":{ + "POSITION":19177, + "NORMAL":19178, + "TEXCOORD_0":19179 + }, + "indices":3195, + "material":0 + } + ] + }, + { + "name":"Mesh.8530", + "primitives":[ + { + "attributes":{ + "POSITION":19180, + "NORMAL":19181 + }, + "indices":19182, + "material":3 + } + ] + }, + { + "name":"Mesh.4868", + "primitives":[ + { + "attributes":{ + "POSITION":19183, + "NORMAL":19184, + "TEXCOORD_0":19185 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2708", + "primitives":[ + { + "attributes":{ + "POSITION":19186, + "NORMAL":19187, + "TEXCOORD_0":19188 + }, + "indices":568, + "material":0 + } + ] + }, + { + "name":"Mesh.5772", + "primitives":[ + { + "attributes":{ + "POSITION":19189, + "NORMAL":19190, + "TEXCOORD_0":19191 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.6036", + "primitives":[ + { + "attributes":{ + "POSITION":19192, + "NORMAL":19193, + "TEXCOORD_0":19194 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.6792", + "primitives":[ + { + "attributes":{ + "POSITION":19195, + "NORMAL":19196, + "TEXCOORD_0":19197 + }, + "indices":13466, + "material":3 + } + ] + }, + { + "name":"Mesh.7184", + "primitives":[ + { + "attributes":{ + "POSITION":19198, + "NORMAL":19199, + "TEXCOORD_0":19200 + }, + "indices":19201, + "material":7 + } + ] + }, + { + "name":"Mesh.7502", + "primitives":[ + { + "attributes":{ + "POSITION":19202, + "NORMAL":19203 + }, + "indices":19204, + "material":3 + } + ] + }, + { + "name":"Mesh.5780", + "primitives":[ + { + "attributes":{ + "POSITION":19205, + "NORMAL":19206, + "TEXCOORD_0":19207 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.2562", + "primitives":[ + { + "attributes":{ + "POSITION":19208, + "NORMAL":19209, + "TEXCOORD_0":19210 + }, + "indices":19211, + "material":0 + } + ] + }, + { + "name":"Mesh.2885", + "primitives":[ + { + "attributes":{ + "POSITION":19212, + "NORMAL":19213 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6579", + "primitives":[ + { + "attributes":{ + "POSITION":19214, + "NORMAL":19215 + }, + "indices":6064, + "material":0 + } + ] + }, + { + "name":"Mesh.9198", + "primitives":[ + { + "attributes":{ + "POSITION":19216, + "NORMAL":19217, + "TEXCOORD_0":19218 + }, + "indices":2564, + "material":7 + } + ] + }, + { + "name":"Mesh.1994", + "primitives":[ + { + "attributes":{ + "POSITION":19219, + "NORMAL":19220, + "TEXCOORD_0":19221 + }, + "indices":12603, + "material":0 + } + ] + }, + { + "name":"Mesh.2748", + "primitives":[ + { + "attributes":{ + "POSITION":19222, + "NORMAL":19223, + "TEXCOORD_0":19224 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.8450", + "primitives":[ + { + "attributes":{ + "POSITION":19225, + "NORMAL":19226 + }, + "indices":19227, + "material":3 + } + ] + }, + { + "name":"Mesh.344", + "primitives":[ + { + "attributes":{ + "POSITION":19228, + "NORMAL":19229, + "TEXCOORD_0":19230 + }, + "indices":4214, + "material":0 + } + ] + }, + { + "name":"Mesh.6298", + "primitives":[ + { + "attributes":{ + "POSITION":19231, + "NORMAL":19232, + "TEXCOORD_0":19233 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.6739", + "primitives":[ + { + "attributes":{ + "POSITION":19234, + "NORMAL":19235 + }, + "indices":7864, + "material":0 + } + ] + }, + { + "name":"Mesh.5349", + "primitives":[ + { + "attributes":{ + "POSITION":19236, + "NORMAL":19237, + "TEXCOORD_0":19238 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5534", + "primitives":[ + { + "attributes":{ + "POSITION":19239, + "NORMAL":19240, + "TEXCOORD_0":19241 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6221", + "primitives":[ + { + "attributes":{ + "POSITION":19242, + "NORMAL":19243, + "TEXCOORD_0":19244 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.6548", + "primitives":[ + { + "attributes":{ + "POSITION":19245, + "NORMAL":19246 + }, + "indices":2400, + "material":0 + } + ] + }, + { + "name":"Mesh.7051", + "primitives":[ + { + "attributes":{ + "POSITION":19247, + "NORMAL":19248, + "TEXCOORD_0":19249 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.5934", + "primitives":[ + { + "attributes":{ + "POSITION":19250, + "NORMAL":19251, + "TEXCOORD_0":19252 + }, + "indices":19253, + "material":33 + } + ] + }, + { + "name":"Mesh.810", + "primitives":[ + { + "attributes":{ + "POSITION":19254, + "NORMAL":19255, + "TEXCOORD_0":19256 + }, + "indices":19257, + "material":3 + } + ] + }, + { + "name":"Mesh.7545", + "primitives":[ + { + "attributes":{ + "POSITION":19258, + "NORMAL":19259 + }, + "indices":19260, + "material":3 + } + ] + }, + { + "name":"Mesh.8748", + "primitives":[ + { + "attributes":{ + "POSITION":19261, + "NORMAL":19262 + }, + "indices":12606, + "material":3 + } + ] + }, + { + "name":"Mesh.2141", + "primitives":[ + { + "attributes":{ + "POSITION":19263, + "NORMAL":19264, + "TEXCOORD_0":19265 + }, + "indices":19266, + "material":3 + } + ] + }, + { + "name":"Mesh.6554", + "primitives":[ + { + "attributes":{ + "POSITION":19267, + "NORMAL":19268 + }, + "indices":4951, + "material":0 + } + ] + }, + { + "name":"Mesh.4840", + "primitives":[ + { + "attributes":{ + "POSITION":19269, + "NORMAL":19270, + "TEXCOORD_0":19271 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7770", + "primitives":[ + { + "attributes":{ + "POSITION":19272, + "NORMAL":19273 + }, + "indices":19274, + "material":3 + } + ] + }, + { + "name":"Mesh.8097", + "primitives":[ + { + "attributes":{ + "POSITION":19275, + "NORMAL":19276 + }, + "indices":4761, + "material":3 + } + ] + }, + { + "name":"Mesh.7156", + "primitives":[ + { + "attributes":{ + "POSITION":19277, + "NORMAL":19278, + "TEXCOORD_0":19279 + }, + "indices":19280, + "material":7 + } + ] + }, + { + "name":"Mesh.222", + "primitives":[ + { + "attributes":{ + "POSITION":19281, + "NORMAL":19282, + "TEXCOORD_0":19283 + }, + "indices":19284, + "material":3 + } + ] + }, + { + "name":"Mesh.2817", + "primitives":[ + { + "attributes":{ + "POSITION":19285, + "NORMAL":19286, + "TEXCOORD_0":19287 + }, + "indices":3616, + "material":0 + } + ] + }, + { + "name":"Mesh.148", + "primitives":[ + { + "attributes":{ + "POSITION":19288, + "NORMAL":19289, + "TEXCOORD_0":19290 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7196", + "primitives":[ + { + "attributes":{ + "POSITION":19291, + "NORMAL":19292, + "TEXCOORD_0":19293 + }, + "indices":19294, + "material":7 + } + ] + }, + { + "name":"Mesh.7335", + "primitives":[ + { + "attributes":{ + "POSITION":19295, + "NORMAL":19296, + "TEXCOORD_0":19297 + }, + "indices":7683, + "material":7 + } + ] + }, + { + "name":"Mesh.5342", + "primitives":[ + { + "attributes":{ + "POSITION":19298, + "NORMAL":19299, + "TEXCOORD_0":19300 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7603", + "primitives":[ + { + "attributes":{ + "POSITION":19301, + "NORMAL":19302 + }, + "indices":4721, + "material":3 + } + ] + }, + { + "name":"Mesh.6069", + "primitives":[ + { + "attributes":{ + "POSITION":19303, + "NORMAL":19304, + "TEXCOORD_0":19305 + }, + "indices":4263, + "material":5 + } + ] + }, + { + "name":"Mesh.7699", + "primitives":[ + { + "attributes":{ + "POSITION":19306, + "NORMAL":19307 + }, + "indices":19308, + "material":3 + } + ] + }, + { + "name":"Mesh.7510", + "primitives":[ + { + "attributes":{ + "POSITION":19309, + "NORMAL":19310 + }, + "indices":19311, + "material":3 + } + ] + }, + { + "name":"Mesh.7642", + "primitives":[ + { + "attributes":{ + "POSITION":19312, + "NORMAL":19313 + }, + "indices":12656, + "material":3 + } + ] + }, + { + "name":"Mesh.2690", + "primitives":[ + { + "attributes":{ + "POSITION":19314, + "NORMAL":19315, + "TEXCOORD_0":19316 + }, + "indices":3368, + "material":0 + } + ] + }, + { + "name":"Mesh.6201", + "primitives":[ + { + "attributes":{ + "POSITION":19317, + "NORMAL":19318, + "TEXCOORD_0":19319 + }, + "indices":927, + "material":12 + } + ] + }, + { + "name":"Mesh.237", + "primitives":[ + { + "attributes":{ + "POSITION":19320, + "NORMAL":19321, + "TEXCOORD_0":19322 + }, + "indices":19323, + "material":3 + } + ] + }, + { + "name":"Mesh.5606", + "primitives":[ + { + "attributes":{ + "POSITION":19324, + "NORMAL":19325, + "TEXCOORD_0":19326 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7588", + "primitives":[ + { + "attributes":{ + "POSITION":19327, + "NORMAL":19328 + }, + "indices":12211, + "material":3 + } + ] + }, + { + "name":"Mesh.6017", + "primitives":[ + { + "attributes":{ + "POSITION":19329, + "NORMAL":19330, + "TEXCOORD_0":19331 + }, + "indices":19332, + "material":12 + } + ] + }, + { + "name":"Mesh.8303", + "primitives":[ + { + "attributes":{ + "POSITION":19333, + "NORMAL":19334 + }, + "indices":633, + "material":3 + } + ] + }, + { + "name":"Mesh.268", + "primitives":[ + { + "attributes":{ + "POSITION":19335, + "NORMAL":19336, + "TEXCOORD_0":19337 + }, + "indices":19338, + "material":3 + } + ] + }, + { + "name":"Mesh.5546", + "primitives":[ + { + "attributes":{ + "POSITION":19339, + "NORMAL":19340, + "TEXCOORD_0":19341 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6233", + "primitives":[ + { + "attributes":{ + "POSITION":19342, + "NORMAL":19343, + "TEXCOORD_0":19344 + }, + "indices":9545, + "material":11 + } + ] + }, + { + "name":"Mesh.8783", + "primitives":[ + { + "attributes":{ + "POSITION":19345, + "NORMAL":19346 + }, + "indices":2954, + "material":3 + } + ] + }, + { + "name":"Mesh.1883", + "primitives":[ + { + "attributes":{ + "POSITION":19347, + "NORMAL":19348 + }, + "indices":495, + "material":0 + } + ] + }, + { + "name":"Mesh.8432", + "primitives":[ + { + "attributes":{ + "POSITION":19349, + "NORMAL":19350 + }, + "indices":19351, + "material":3 + } + ] + }, + { + "name":"Mesh.6064", + "primitives":[ + { + "attributes":{ + "POSITION":19352, + "NORMAL":19353, + "TEXCOORD_0":19354 + }, + "indices":9639, + "material":11 + } + ] + }, + { + "name":"Mesh.8180", + "primitives":[ + { + "attributes":{ + "POSITION":19355, + "NORMAL":19356 + }, + "indices":16882, + "material":3 + } + ] + }, + { + "name":"Mesh.5740", + "primitives":[ + { + "attributes":{ + "POSITION":19357, + "NORMAL":19358 + }, + "indices":1043, + "material":0 + } + ] + }, + { + "name":"Mesh.242", + "primitives":[ + { + "attributes":{ + "POSITION":19359, + "NORMAL":19360, + "TEXCOORD_0":19361 + }, + "indices":19362, + "material":3 + } + ] + }, + { + "name":"Mesh.4812", + "primitives":[ + { + "attributes":{ + "POSITION":19363, + "NORMAL":19364, + "TEXCOORD_0":19365 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.716", + "primitives":[ + { + "attributes":{ + "POSITION":19366, + "NORMAL":19367, + "TEXCOORD_0":19368 + }, + "indices":19369, + "material":3 + } + ] + }, + { + "name":"Mesh.7742", + "primitives":[ + { + "attributes":{ + "POSITION":19370, + "NORMAL":19371 + }, + "indices":19372, + "material":3 + } + ] + }, + { + "name":"Mesh.5179", + "primitives":[ + { + "attributes":{ + "POSITION":19373, + "NORMAL":19374, + "TEXCOORD_0":19375 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6020", + "primitives":[ + { + "attributes":{ + "POSITION":19376, + "NORMAL":19377, + "TEXCOORD_0":19378 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.7168", + "primitives":[ + { + "attributes":{ + "POSITION":19379, + "NORMAL":19380, + "TEXCOORD_0":19381 + }, + "indices":11406, + "material":7 + } + ] + }, + { + "name":"Mesh.2829", + "primitives":[ + { + "attributes":{ + "POSITION":19382, + "NORMAL":19383, + "TEXCOORD_0":19384 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.7629", + "primitives":[ + { + "attributes":{ + "POSITION":19385, + "NORMAL":19386 + }, + "indices":8448, + "material":3 + } + ] + }, + { + "name":"Mesh.8070", + "primitives":[ + { + "attributes":{ + "POSITION":19387, + "NORMAL":19388, + "TEXCOORD_0":19389 + }, + "indices":5611, + "material":3 + } + ] + }, + { + "name":"Mesh.5404", + "primitives":[ + { + "attributes":{ + "POSITION":19390, + "NORMAL":19391, + "TEXCOORD_0":19392 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5253", + "primitives":[ + { + "attributes":{ + "POSITION":19393, + "NORMAL":19394, + "TEXCOORD_0":19395 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9064", + "primitives":[ + { + "attributes":{ + "POSITION":19396, + "NORMAL":19397, + "TEXCOORD_0":19398 + }, + "indices":59, + "material":7 + } + ] + }, + { + "name":"Mesh.9154", + "primitives":[ + { + "attributes":{ + "POSITION":19399, + "NORMAL":19400, + "TEXCOORD_0":19401 + }, + "indices":1660, + "material":7 + } + ] + }, + { + "name":"Mesh.2332", + "primitives":[ + { + "attributes":{ + "POSITION":19402, + "NORMAL":19403, + "TEXCOORD_0":19404 + }, + "indices":15034, + "material":0 + } + ] + }, + { + "name":"Mesh.5989", + "primitives":[ + { + "attributes":{ + "POSITION":19405, + "NORMAL":19406, + "TEXCOORD_0":19407 + }, + "indices":30, + "material":5 + } + ] + }, + { + "name":"Mesh.2020", + "primitives":[ + { + "attributes":{ + "POSITION":19408, + "NORMAL":19409, + "TEXCOORD_0":19410 + }, + "indices":7847, + "material":0 + } + ] + }, + { + "name":"Mesh.1618", + "primitives":[ + { + "attributes":{ + "POSITION":19411, + "NORMAL":19412, + "TEXCOORD_0":19413 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.8762", + "primitives":[ + { + "attributes":{ + "POSITION":19414, + "NORMAL":19415 + }, + "indices":1811, + "material":3 + } + ] + }, + { + "name":"Mesh.2375", + "primitives":[ + { + "attributes":{ + "POSITION":19416, + "NORMAL":19417, + "TEXCOORD_0":19418 + }, + "indices":554, + "material":0 + } + ] + }, + { + "name":"Mesh.6267", + "primitives":[ + { + "attributes":{ + "POSITION":19419, + "NORMAL":19420, + "TEXCOORD_0":19421 + }, + "indices":5922, + "material":33 + } + ] + }, + { + "name":"Mesh.7640", + "primitives":[ + { + "attributes":{ + "POSITION":19422, + "NORMAL":19423 + }, + "indices":3812, + "material":3 + } + ] + }, + { + "name":"Mesh.4895", + "primitives":[ + { + "attributes":{ + "POSITION":19424, + "NORMAL":19425, + "TEXCOORD_0":19426 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6955", + "primitives":[ + { + "attributes":{ + "POSITION":19427, + "NORMAL":19428 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.2261", + "primitives":[ + { + "attributes":{ + "POSITION":19429, + "NORMAL":19430, + "TEXCOORD_0":19431 + }, + "indices":6013, + "material":0 + } + ] + }, + { + "name":"Mesh.2832", + "primitives":[ + { + "attributes":{ + "POSITION":19432, + "NORMAL":19433 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.095", + "primitives":[ + { + "attributes":{ + "POSITION":19434, + "NORMAL":19435, + "TEXCOORD_0":19436 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8742", + "primitives":[ + { + "attributes":{ + "POSITION":19437, + "NORMAL":19438 + }, + "indices":9048, + "material":3 + } + ] + }, + { + "name":"Mesh.5407", + "primitives":[ + { + "attributes":{ + "POSITION":19439, + "NORMAL":19440, + "TEXCOORD_0":19441 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5639", + "primitives":[ + { + "attributes":{ + "POSITION":19442, + "NORMAL":19443, + "TEXCOORD_0":19444 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2125", + "primitives":[ + { + "attributes":{ + "POSITION":19445, + "NORMAL":19446, + "TEXCOORD_0":19447 + }, + "indices":19448, + "material":0 + } + ] + }, + { + "name":"Mesh.6279", + "primitives":[ + { + "attributes":{ + "POSITION":19449, + "NORMAL":19450, + "TEXCOORD_0":19451 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.8060", + "primitives":[ + { + "attributes":{ + "POSITION":19452, + "NORMAL":19453, + "TEXCOORD_0":19454 + }, + "indices":3924, + "material":3 + } + ] + }, + { + "name":"Mesh.827", + "primitives":[ + { + "attributes":{ + "POSITION":19455, + "NORMAL":19456, + "TEXCOORD_0":19457 + }, + "indices":19369, + "material":3 + } + ] + }, + { + "name":"Mesh.9080", + "primitives":[ + { + "attributes":{ + "POSITION":19458, + "NORMAL":19459, + "TEXCOORD_0":19460 + }, + "indices":166, + "material":7 + } + ] + }, + { + "name":"Mesh.5336", + "primitives":[ + { + "attributes":{ + "POSITION":19461, + "NORMAL":19462, + "TEXCOORD_0":19463 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8668", + "primitives":[ + { + "attributes":{ + "POSITION":19464, + "NORMAL":19465 + }, + "indices":6779, + "material":3 + } + ] + }, + { + "name":"Mesh.7820", + "primitives":[ + { + "attributes":{ + "POSITION":19466, + "NORMAL":19467 + }, + "indices":19468, + "material":3 + } + ] + }, + { + "name":"Mesh.6202", + "primitives":[ + { + "attributes":{ + "POSITION":19469, + "NORMAL":19470, + "TEXCOORD_0":19471 + }, + "indices":19332, + "material":12 + } + ] + }, + { + "name":"Mesh.7794", + "primitives":[ + { + "attributes":{ + "POSITION":19472, + "NORMAL":19473 + }, + "indices":19474, + "material":3 + } + ] + }, + { + "name":"Mesh.6208", + "primitives":[ + { + "attributes":{ + "POSITION":19475, + "NORMAL":19476, + "TEXCOORD_0":19477 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.2094", + "primitives":[ + { + "attributes":{ + "POSITION":19478, + "NORMAL":19479, + "TEXCOORD_0":19480 + }, + "indices":19481, + "material":3 + } + ] + }, + { + "name":"Mesh.8805", + "primitives":[ + { + "attributes":{ + "POSITION":19482, + "NORMAL":19483 + }, + "indices":362, + "material":3 + } + ] + }, + { + "name":"Mesh.7643", + "primitives":[ + { + "attributes":{ + "POSITION":19484, + "NORMAL":19485 + }, + "indices":18631, + "material":3 + } + ] + }, + { + "name":"Mesh.1807", + "primitives":[ + { + "attributes":{ + "POSITION":19486, + "NORMAL":19487 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.1184", + "primitives":[ + { + "attributes":{ + "POSITION":19488, + "NORMAL":19489 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.1665", + "primitives":[ + { + "attributes":{ + "POSITION":19490, + "NORMAL":19491, + "TEXCOORD_0":19492 + }, + "indices":198, + "material":10 + } + ] + }, + { + "name":"Mesh.131", + "primitives":[ + { + "attributes":{ + "POSITION":19493, + "NORMAL":19494, + "TEXCOORD_0":19495 + }, + "indices":2587, + "material":0 + } + ] + }, + { + "name":"Mesh.2340", + "primitives":[ + { + "attributes":{ + "POSITION":19496, + "NORMAL":19497, + "TEXCOORD_0":19498 + }, + "indices":144, + "material":0 + } + ] + }, + { + "name":"Mesh.774", + "primitives":[ + { + "attributes":{ + "POSITION":19499, + "NORMAL":19500, + "TEXCOORD_0":19501 + }, + "indices":2221, + "material":0 + } + ] + }, + { + "name":"Mesh.1905", + "primitives":[ + { + "attributes":{ + "POSITION":19502, + "NORMAL":19503 + }, + "indices":2600, + "material":0 + } + ] + }, + { + "name":"Mesh.8844", + "primitives":[ + { + "attributes":{ + "POSITION":19504, + "NORMAL":19505 + }, + "indices":16969, + "material":3 + } + ] + }, + { + "name":"Mesh.2184", + "primitives":[ + { + "attributes":{ + "POSITION":19506, + "NORMAL":19507, + "TEXCOORD_0":19508 + }, + "indices":12688, + "material":0 + } + ] + }, + { + "name":"Mesh.2032", + "primitives":[ + { + "attributes":{ + "POSITION":19509, + "NORMAL":19510, + "TEXCOORD_0":19511 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.4867", + "primitives":[ + { + "attributes":{ + "POSITION":19512, + "NORMAL":19513, + "TEXCOORD_0":19514 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7183", + "primitives":[ + { + "attributes":{ + "POSITION":19515, + "NORMAL":19516, + "TEXCOORD_0":19517 + }, + "indices":9987, + "material":7 + } + ] + }, + { + "name":"Mesh.2273", + "primitives":[ + { + "attributes":{ + "POSITION":19518, + "NORMAL":19519, + "TEXCOORD_0":19520 + }, + "indices":995, + "material":0 + } + ] + }, + { + "name":"Mesh.7501", + "primitives":[ + { + "attributes":{ + "POSITION":19521, + "NORMAL":19522 + }, + "indices":19523, + "material":3 + } + ] + }, + { + "name":"Mesh.309", + "primitives":[ + { + "attributes":{ + "POSITION":19524, + "NORMAL":19525, + "TEXCOORD_0":19526 + }, + "indices":10126, + "material":3 + } + ] + }, + { + "name":"Mesh.5779", + "primitives":[ + { + "attributes":{ + "POSITION":19527, + "NORMAL":19528, + "TEXCOORD_0":19529 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.428", + "primitives":[ + { + "attributes":{ + "POSITION":19530, + "NORMAL":19531 + }, + "indices":2400, + "material":0 + } + ] + }, + { + "name":"Mesh.2884", + "primitives":[ + { + "attributes":{ + "POSITION":19532, + "NORMAL":19533 + }, + "indices":920, + "material":1 + } + ] + }, + { + "name":"Mesh.6578", + "primitives":[ + { + "attributes":{ + "POSITION":19534, + "NORMAL":19535 + }, + "indices":6411, + "material":0 + } + ] + }, + { + "name":"Mesh.8566", + "primitives":[ + { + "attributes":{ + "POSITION":19536, + "NORMAL":19537 + }, + "indices":2413, + "material":3 + } + ] + }, + { + "name":"Mesh.376", + "primitives":[ + { + "attributes":{ + "POSITION":19538, + "NORMAL":19539, + "TEXCOORD_0":19540 + }, + "indices":639, + "material":0 + } + ] + }, + { + "name":"Mesh.6033", + "primitives":[ + { + "attributes":{ + "POSITION":19541, + "NORMAL":19542, + "TEXCOORD_0":19543 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.7915", + "primitives":[ + { + "attributes":{ + "POSITION":19544, + "NORMAL":19545 + }, + "indices":19546, + "material":3 + } + ] + }, + { + "name":"Mesh.6937", + "primitives":[ + { + "attributes":{ + "POSITION":19547, + "NORMAL":19548 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.5709", + "primitives":[ + { + "attributes":{ + "POSITION":19549, + "NORMAL":19550 + }, + "indices":6211, + "material":0 + } + ] + }, + { + "name":"Mesh.6381", + "primitives":[ + { + "attributes":{ + "POSITION":19551, + "NORMAL":19552 + }, + "indices":785, + "material":0 + } + ] + }, + { + "name":"Mesh.109", + "primitives":[ + { + "attributes":{ + "POSITION":19553, + "NORMAL":19554, + "TEXCOORD_0":19555 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.7069", + "primitives":[ + { + "attributes":{ + "POSITION":19556, + "NORMAL":19557, + "TEXCOORD_0":19558 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.8880", + "primitives":[ + { + "attributes":{ + "POSITION":19559, + "NORMAL":19560 + }, + "indices":117, + "material":3 + } + ] + }, + { + "name":"Mesh.030", + "primitives":[ + { + "attributes":{ + "POSITION":19561, + "NORMAL":19562, + "TEXCOORD_0":19563 + }, + "indices":5286, + "material":41 + } + ] + }, + { + "name":"Mesh.5348", + "primitives":[ + { + "attributes":{ + "POSITION":19564, + "NORMAL":19565, + "TEXCOORD_0":19566 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8031", + "primitives":[ + { + "attributes":{ + "POSITION":19567, + "NORMAL":19568, + "TEXCOORD_0":19569 + }, + "indices":15085, + "material":0 + } + ] + }, + { + "name":"Mesh.532", + "primitives":[ + { + "attributes":{ + "POSITION":19570, + "NORMAL":19571, + "TEXCOORD_0":19572 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.2075", + "primitives":[ + { + "attributes":{ + "POSITION":19573, + "NORMAL":19574, + "TEXCOORD_0":19575 + }, + "indices":4231, + "material":0 + } + ] + }, + { + "name":"Mesh.5533", + "primitives":[ + { + "attributes":{ + "POSITION":19576, + "NORMAL":19577, + "TEXCOORD_0":19578 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6220", + "primitives":[ + { + "attributes":{ + "POSITION":19579, + "NORMAL":19580, + "TEXCOORD_0":19581 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.6547", + "primitives":[ + { + "attributes":{ + "POSITION":19582, + "NORMAL":19583 + }, + "indices":2746, + "material":0 + } + ] + }, + { + "name":"Mesh.7050", + "primitives":[ + { + "attributes":{ + "POSITION":19584, + "NORMAL":19585 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.8969", + "primitives":[ + { + "attributes":{ + "POSITION":19586, + "NORMAL":19587, + "TEXCOORD_0":19588 + }, + "indices":1660, + "material":7 + } + ] + }, + { + "name":"Mesh.5933", + "primitives":[ + { + "attributes":{ + "POSITION":19589, + "NORMAL":19590 + }, + "indices":213, + "material":46 + } + ] + }, + { + "name":"Mesh.7695", + "primitives":[ + { + "attributes":{ + "POSITION":19591, + "NORMAL":19592 + }, + "indices":19593, + "material":3 + } + ] + }, + { + "name":"Mesh.7415", + "primitives":[ + { + "attributes":{ + "POSITION":19594, + "NORMAL":19595, + "TEXCOORD_0":19596 + }, + "indices":868, + "material":7 + } + ] + }, + { + "name":"Mesh.7544", + "primitives":[ + { + "attributes":{ + "POSITION":19597, + "NORMAL":19598 + }, + "indices":5992, + "material":3 + } + ] + }, + { + "name":"Mesh.4839", + "primitives":[ + { + "attributes":{ + "POSITION":19599, + "NORMAL":19600, + "TEXCOORD_0":19601 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6476", + "primitives":[ + { + "attributes":{ + "POSITION":19602, + "NORMAL":19603, + "TEXCOORD_0":19604 + }, + "indices":1372, + "material":0 + } + ] + }, + { + "name":"Mesh.9011", + "primitives":[ + { + "attributes":{ + "POSITION":19605, + "NORMAL":19606, + "TEXCOORD_0":19607 + }, + "indices":1307, + "material":7 + } + ] + }, + { + "name":"Mesh.7769", + "primitives":[ + { + "attributes":{ + "POSITION":19608, + "NORMAL":19609 + }, + "indices":19610, + "material":3 + } + ] + }, + { + "name":"Mesh.8096", + "primitives":[ + { + "attributes":{ + "POSITION":19611, + "NORMAL":19612 + }, + "indices":5116, + "material":3 + } + ] + }, + { + "name":"Mesh.223", + "primitives":[ + { + "attributes":{ + "POSITION":19613, + "NORMAL":19614, + "TEXCOORD_0":19615 + }, + "indices":19616, + "material":3 + } + ] + }, + { + "name":"Mesh.2816", + "primitives":[ + { + "attributes":{ + "POSITION":19617, + "NORMAL":19618, + "TEXCOORD_0":19619 + }, + "indices":3983, + "material":0 + } + ] + }, + { + "name":"Mesh.888", + "primitives":[ + { + "attributes":{ + "POSITION":19620, + "NORMAL":19621, + "TEXCOORD_0":19622 + }, + "indices":1878, + "material":0 + } + ] + }, + { + "name":"Mesh.8136", + "primitives":[ + { + "attributes":{ + "POSITION":19623, + "NORMAL":19624 + }, + "indices":3769, + "material":3 + } + ] + }, + { + "name":"Mesh.7195", + "primitives":[ + { + "attributes":{ + "POSITION":19625, + "NORMAL":19626, + "TEXCOORD_0":19627 + }, + "indices":19628, + "material":7 + } + ] + }, + { + "name":"Mesh.510", + "primitives":[ + { + "attributes":{ + "POSITION":19629, + "NORMAL":19630, + "TEXCOORD_0":19631 + }, + "indices":19632, + "material":0 + } + ] + }, + { + "name":"Mesh.2773", + "primitives":[ + { + "attributes":{ + "POSITION":19633, + "NORMAL":19634, + "TEXCOORD_0":19635 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.7698", + "primitives":[ + { + "attributes":{ + "POSITION":19636, + "NORMAL":19637 + }, + "indices":19638, + "material":3 + } + ] + }, + { + "name":"Mesh.5285", + "primitives":[ + { + "attributes":{ + "POSITION":19639, + "NORMAL":19640, + "TEXCOORD_0":19641 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5642", + "primitives":[ + { + "attributes":{ + "POSITION":19642, + "NORMAL":19643, + "TEXCOORD_0":19644 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5135", + "primitives":[ + { + "attributes":{ + "POSITION":19645, + "NORMAL":19646, + "TEXCOORD_0":19647 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5978", + "primitives":[ + { + "attributes":{ + "POSITION":19648, + "NORMAL":19649, + "TEXCOORD_0":19650 + }, + "indices":321, + "material":12 + } + ] + }, + { + "name":"Mesh.5157", + "primitives":[ + { + "attributes":{ + "POSITION":19651, + "NORMAL":19652, + "TEXCOORD_0":19653 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8920", + "primitives":[ + { + "attributes":{ + "POSITION":19654, + "NORMAL":19655, + "TEXCOORD_0":19656 + }, + "indices":2311, + "material":7 + } + ] + }, + { + "name":"Mesh.495", + "primitives":[ + { + "attributes":{ + "POSITION":19657, + "NORMAL":19658, + "TEXCOORD_0":19659 + }, + "indices":55, + "material":0 + } + ] + }, + { + "name":"Mesh.5360", + "primitives":[ + { + "attributes":{ + "POSITION":19660, + "NORMAL":19661, + "TEXCOORD_0":19662 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7992", + "primitives":[ + { + "attributes":{ + "POSITION":19663, + "NORMAL":19664, + "TEXCOORD_0":19665 + }, + "indices":19666, + "material":0 + } + ] + }, + { + "name":"Mesh.8548", + "primitives":[ + { + "attributes":{ + "POSITION":19667, + "NORMAL":19668 + }, + "indices":19669, + "material":3 + } + ] + }, + { + "name":"Mesh.8773", + "primitives":[ + { + "attributes":{ + "POSITION":19670, + "NORMAL":19671 + }, + "indices":1274, + "material":3 + } + ] + }, + { + "name":"Mesh.2339", + "primitives":[ + { + "attributes":{ + "POSITION":19672, + "NORMAL":19673, + "TEXCOORD_0":19674 + }, + "indices":431, + "material":0 + } + ] + }, + { + "name":"Mesh.8821", + "primitives":[ + { + "attributes":{ + "POSITION":19675, + "NORMAL":19676 + }, + "indices":5413, + "material":3 + } + ] + }, + { + "name":"Mesh.1119", + "primitives":[ + { + "attributes":{ + "POSITION":19677, + "NORMAL":19678, + "TEXCOORD_0":19679 + }, + "indices":2192, + "material":0 + } + ] + }, + { + "name":"Mesh.5691", + "primitives":[ + { + "attributes":{ + "POSITION":19680, + "NORMAL":19681, + "TEXCOORD_0":19682 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6232", + "primitives":[ + { + "attributes":{ + "POSITION":19683, + "NORMAL":19684, + "TEXCOORD_0":19685 + }, + "indices":9545, + "material":11 + } + ] + }, + { + "name":"Mesh.246", + "primitives":[ + { + "attributes":{ + "POSITION":19686, + "NORMAL":19687, + "TEXCOORD_0":19688 + }, + "indices":643, + "material":3 + } + ] + }, + { + "name":"Mesh.6958", + "primitives":[ + { + "attributes":{ + "POSITION":19689, + "NORMAL":19690 + }, + "indices":412, + "material":1 + } + ] + }, + { + "name":"Mesh.8179", + "primitives":[ + { + "attributes":{ + "POSITION":19691, + "NORMAL":19692 + }, + "indices":18812, + "material":3 + } + ] + }, + { + "name":"Mesh.2758", + "primitives":[ + { + "attributes":{ + "POSITION":19693, + "NORMAL":19694, + "TEXCOORD_0":19695 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.715", + "primitives":[ + { + "attributes":{ + "POSITION":19696, + "NORMAL":19697, + "TEXCOORD_0":19698 + }, + "indices":668, + "material":0 + } + ] + }, + { + "name":"Mesh.7741", + "primitives":[ + { + "attributes":{ + "POSITION":19699, + "NORMAL":19700 + }, + "indices":19701, + "material":3 + } + ] + }, + { + "name":"Mesh.5178", + "primitives":[ + { + "attributes":{ + "POSITION":19702, + "NORMAL":19703, + "TEXCOORD_0":19704 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9044", + "primitives":[ + { + "attributes":{ + "POSITION":19705, + "NORMAL":19706, + "TEXCOORD_0":19707 + }, + "indices":86, + "material":7 + } + ] + }, + { + "name":"Mesh.6019", + "primitives":[ + { + "attributes":{ + "POSITION":19708, + "NORMAL":19709, + "TEXCOORD_0":19710 + }, + "indices":1311, + "material":5 + } + ] + }, + { + "name":"Mesh.698", + "primitives":[ + { + "attributes":{ + "POSITION":19711, + "NORMAL":19712, + "TEXCOORD_0":19713 + }, + "indices":19714, + "material":0 + } + ] + }, + { + "name":"Mesh.1145", + "primitives":[ + { + "attributes":{ + "POSITION":19715, + "NORMAL":19716, + "TEXCOORD_0":19717 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.2656", + "primitives":[ + { + "attributes":{ + "POSITION":19718, + "NORMAL":19719, + "TEXCOORD_0":19720 + }, + "indices":954, + "material":0 + } + ] + }, + { + "name":"Mesh.1604", + "primitives":[ + { + "attributes":{ + "POSITION":19721, + "NORMAL":19722, + "TEXCOORD_0":19723 + }, + "indices":1532, + "material":17 + } + ] + }, + { + "name":"Mesh.385", + "primitives":[ + { + "attributes":{ + "POSITION":19724, + "NORMAL":19725, + "TEXCOORD_0":19726 + }, + "indices":1903, + "material":0 + } + ] + }, + { + "name":"Mesh.7167", + "primitives":[ + { + "attributes":{ + "POSITION":19727, + "NORMAL":19728, + "TEXCOORD_0":19729 + }, + "indices":16383, + "material":7 + } + ] + }, + { + "name":"Mesh.8192", + "primitives":[ + { + "attributes":{ + "POSITION":19730, + "NORMAL":19731 + }, + "indices":17105, + "material":3 + } + ] + }, + { + "name":"Mesh.7091", + "primitives":[ + { + "attributes":{ + "POSITION":19732, + "NORMAL":19733, + "TEXCOORD_0":19734 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.2828", + "primitives":[ + { + "attributes":{ + "POSITION":19735, + "NORMAL":19736, + "TEXCOORD_0":19737 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.5403", + "primitives":[ + { + "attributes":{ + "POSITION":19738, + "NORMAL":19739, + "TEXCOORD_0":19740 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9155", + "primitives":[ + { + "attributes":{ + "POSITION":19741, + "NORMAL":19742, + "TEXCOORD_0":19743 + }, + "indices":1208, + "material":7 + } + ] + }, + { + "name":"Mesh.6602", + "primitives":[ + { + "attributes":{ + "POSITION":19744, + "NORMAL":19745 + }, + "indices":6051, + "material":0 + } + ] + }, + { + "name":"Mesh.2331", + "primitives":[ + { + "attributes":{ + "POSITION":19746, + "NORMAL":19747, + "TEXCOORD_0":19748 + }, + "indices":14545, + "material":0 + } + ] + }, + { + "name":"Mesh.5988", + "primitives":[ + { + "attributes":{ + "POSITION":19749, + "NORMAL":19750, + "TEXCOORD_0":19751 + }, + "indices":947, + "material":5 + } + ] + }, + { + "name":"Mesh.2019", + "primitives":[ + { + "attributes":{ + "POSITION":19752, + "NORMAL":19753, + "TEXCOORD_0":19754 + }, + "indices":2701, + "material":0 + } + ] + }, + { + "name":"Mesh.7659", + "primitives":[ + { + "attributes":{ + "POSITION":19755, + "NORMAL":19756 + }, + "indices":15181, + "material":3 + } + ] + }, + { + "name":"Mesh.7707", + "primitives":[ + { + "attributes":{ + "POSITION":19757, + "NORMAL":19758 + }, + "indices":19759, + "material":3 + } + ] + }, + { + "name":"Mesh.113", + "primitives":[ + { + "attributes":{ + "POSITION":19760, + "NORMAL":19761, + "TEXCOORD_0":19762 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.6945", + "primitives":[ + { + "attributes":{ + "POSITION":19763, + "NORMAL":19764, + "TEXCOORD_0":19765 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.8761", + "primitives":[ + { + "attributes":{ + "POSITION":19766, + "NORMAL":19767 + }, + "indices":7039, + "material":3 + } + ] + }, + { + "name":"Mesh.4894", + "primitives":[ + { + "attributes":{ + "POSITION":19768, + "NORMAL":19769, + "TEXCOORD_0":19770 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2260", + "primitives":[ + { + "attributes":{ + "POSITION":19771, + "NORMAL":19772, + "TEXCOORD_0":19773 + }, + "indices":2842, + "material":0 + } + ] + }, + { + "name":"Mesh.094", + "primitives":[ + { + "attributes":{ + "POSITION":19774, + "NORMAL":19775, + "TEXCOORD_0":19776 + }, + "indices":19777, + "material":0 + } + ] + }, + { + "name":"Mesh.357", + "primitives":[ + { + "attributes":{ + "POSITION":19778, + "NORMAL":19779, + "TEXCOORD_0":19780 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.5406", + "primitives":[ + { + "attributes":{ + "POSITION":19781, + "NORMAL":19782, + "TEXCOORD_0":19783 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6242", + "primitives":[ + { + "attributes":{ + "POSITION":19784, + "NORMAL":19785, + "TEXCOORD_0":19786 + }, + "indices":947, + "material":5 + } + ] + }, + { + "name":"Mesh.2124", + "primitives":[ + { + "attributes":{ + "POSITION":19787, + "NORMAL":19788, + "TEXCOORD_0":19789 + }, + "indices":985, + "material":3 + } + ] + }, + { + "name":"Mesh.2201", + "primitives":[ + { + "attributes":{ + "POSITION":19790, + "NORMAL":19791, + "TEXCOORD_0":19792 + }, + "indices":2086, + "material":0 + } + ] + }, + { + "name":"Mesh.6645", + "primitives":[ + { + "attributes":{ + "POSITION":19793, + "NORMAL":19794 + }, + "indices":19795, + "material":0 + } + ] + }, + { + "name":"Mesh.7255", + "primitives":[ + { + "attributes":{ + "POSITION":19796, + "NORMAL":19797, + "TEXCOORD_0":19798 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.7139", + "primitives":[ + { + "attributes":{ + "POSITION":19799, + "NORMAL":19800, + "TEXCOORD_0":19801 + }, + "indices":404, + "material":7 + } + ] + }, + { + "name":"Mesh.7793", + "primitives":[ + { + "attributes":{ + "POSITION":19802, + "NORMAL":19803 + }, + "indices":19804, + "material":3 + } + ] + }, + { + "name":"Mesh.6207", + "primitives":[ + { + "attributes":{ + "POSITION":19805, + "NORMAL":19806, + "TEXCOORD_0":19807 + }, + "indices":745, + "material":5 + } + ] + }, + { + "name":"Mesh.568", + "primitives":[ + { + "attributes":{ + "POSITION":19808, + "NORMAL":19809, + "TEXCOORD_0":19810 + }, + "indices":226, + "material":0 + } + ] + }, + { + "name":"Mesh.2093", + "primitives":[ + { + "attributes":{ + "POSITION":19811, + "NORMAL":19812, + "TEXCOORD_0":19813 + }, + "indices":19814, + "material":3 + } + ] + }, + { + "name":"Mesh.8804", + "primitives":[ + { + "attributes":{ + "POSITION":19815, + "NORMAL":19816 + }, + "indices":2089, + "material":3 + } + ] + }, + { + "name":"Mesh.1806", + "primitives":[ + { + "attributes":{ + "POSITION":19817, + "NORMAL":19818 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.2111", + "primitives":[ + { + "attributes":{ + "POSITION":19819, + "NORMAL":19820, + "TEXCOORD_0":19821 + }, + "indices":5968, + "material":3 + } + ] + }, + { + "name":"Mesh.1183", + "primitives":[ + { + "attributes":{ + "POSITION":19822, + "NORMAL":19823 + }, + "indices":34, + "material":1 + } + ] + }, + { + "name":"Mesh.025", + "primitives":[ + { + "attributes":{ + "POSITION":19824, + "NORMAL":19825, + "TEXCOORD_0":19826 + }, + "indices":34, + "material":40 + } + ] + }, + { + "name":"Mesh.7694", + "primitives":[ + { + "attributes":{ + "POSITION":19827, + "NORMAL":19828 + }, + "indices":19829, + "material":3 + } + ] + }, + { + "name":"Mesh.7910", + "primitives":[ + { + "attributes":{ + "POSITION":19830, + "NORMAL":19831 + }, + "indices":19832, + "material":3 + } + ] + }, + { + "name":"Mesh.7733", + "primitives":[ + { + "attributes":{ + "POSITION":19833, + "NORMAL":19834 + }, + "indices":2420, + "material":3 + } + ] + }, + { + "name":"Mesh.6292", + "primitives":[ + { + "attributes":{ + "POSITION":19835, + "NORMAL":19836, + "TEXCOORD_0":19837 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.8399", + "primitives":[ + { + "attributes":{ + "POSITION":19838, + "NORMAL":19839 + }, + "indices":19840, + "material":3 + } + ] + }, + { + "name":"Mesh.2343", + "primitives":[ + { + "attributes":{ + "POSITION":19841, + "NORMAL":19842, + "TEXCOORD_0":19843 + }, + "indices":995, + "material":0 + } + ] + }, + { + "name":"Mesh.6103", + "primitives":[ + { + "attributes":{ + "POSITION":19844, + "NORMAL":19845, + "TEXCOORD_0":19846 + }, + "indices":967, + "material":20 + } + ] + }, + { + "name":"Mesh.4852", + "primitives":[ + { + "attributes":{ + "POSITION":19847, + "NORMAL":19848, + "TEXCOORD_0":19849 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6682", + "primitives":[ + { + "attributes":{ + "POSITION":19850, + "NORMAL":19851 + }, + "indices":19852, + "material":0 + } + ] + }, + { + "name":"Mesh.4866", + "primitives":[ + { + "attributes":{ + "POSITION":19853, + "NORMAL":19854, + "TEXCOORD_0":19855 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2272", + "primitives":[ + { + "attributes":{ + "POSITION":19856, + "NORMAL":19857, + "TEXCOORD_0":19858 + }, + "indices":1332, + "material":0 + } + ] + }, + { + "name":"Mesh.7500", + "primitives":[ + { + "attributes":{ + "POSITION":19859, + "NORMAL":19860 + }, + "indices":12155, + "material":3 + } + ] + }, + { + "name":"Mesh.9012", + "primitives":[ + { + "attributes":{ + "POSITION":19861, + "NORMAL":19862, + "TEXCOORD_0":19863 + }, + "indices":465, + "material":7 + } + ] + }, + { + "name":"Mesh.5778", + "primitives":[ + { + "attributes":{ + "POSITION":19864, + "NORMAL":19865, + "TEXCOORD_0":19866 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.2883", + "primitives":[ + { + "attributes":{ + "POSITION":19867, + "NORMAL":19868 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6577", + "primitives":[ + { + "attributes":{ + "POSITION":19869, + "NORMAL":19870 + }, + "indices":6769, + "material":0 + } + ] + }, + { + "name":"Mesh.4892", + "primitives":[ + { + "attributes":{ + "POSITION":19871, + "NORMAL":19872, + "TEXCOORD_0":19873 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6975", + "primitives":[ + { + "attributes":{ + "POSITION":19874, + "NORMAL":19875, + "TEXCOORD_0":19876 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.5643", + "primitives":[ + { + "attributes":{ + "POSITION":19877, + "NORMAL":19878, + "TEXCOORD_0":19879 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.029", + "primitives":[ + { + "attributes":{ + "POSITION":19880, + "NORMAL":19881, + "TEXCOORD_0":19882 + }, + "indices":5286, + "material":41 + } + ] + }, + { + "name":"Mesh.5347", + "primitives":[ + { + "attributes":{ + "POSITION":19883, + "NORMAL":19884, + "TEXCOORD_0":19885 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.531", + "primitives":[ + { + "attributes":{ + "POSITION":19886, + "NORMAL":19887, + "TEXCOORD_0":19888 + }, + "indices":7057, + "material":0 + } + ] + }, + { + "name":"Mesh.2074", + "primitives":[ + { + "attributes":{ + "POSITION":19889, + "NORMAL":19890, + "TEXCOORD_0":19891 + }, + "indices":4231, + "material":0 + } + ] + }, + { + "name":"Mesh.7327", + "primitives":[ + { + "attributes":{ + "POSITION":19892, + "NORMAL":19893, + "TEXCOORD_0":19894 + }, + "indices":3708, + "material":7 + } + ] + }, + { + "name":"Mesh.955", + "primitives":[ + { + "attributes":{ + "POSITION":19895, + "NORMAL":19896, + "TEXCOORD_0":19897 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.706", + "primitives":[ + { + "attributes":{ + "POSITION":19898, + "NORMAL":19899, + "TEXCOORD_0":19900 + }, + "indices":2519, + "material":0 + } + ] + }, + { + "name":"Mesh.6219", + "primitives":[ + { + "attributes":{ + "POSITION":19901, + "NORMAL":19902, + "TEXCOORD_0":19903 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.1162", + "primitives":[ + { + "attributes":{ + "POSITION":19904, + "NORMAL":19905, + "TEXCOORD_0":19906 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.9091", + "primitives":[ + { + "attributes":{ + "POSITION":19907, + "NORMAL":19908, + "TEXCOORD_0":19909 + }, + "indices":5989, + "material":7 + } + ] + }, + { + "name":"Mesh.1612", + "primitives":[ + { + "attributes":{ + "POSITION":19910, + "NORMAL":19911 + }, + "indices":557, + "material":17 + } + ] + }, + { + "name":"Mesh.1837", + "primitives":[ + { + "attributes":{ + "POSITION":19912, + "NORMAL":19913 + }, + "indices":65, + "material":8 + } + ] + }, + { + "name":"Mesh.6546", + "primitives":[ + { + "attributes":{ + "POSITION":19914, + "NORMAL":19915 + }, + "indices":3076, + "material":0 + } + ] + }, + { + "name":"Mesh.7049", + "primitives":[ + { + "attributes":{ + "POSITION":19916, + "NORMAL":19917, + "TEXCOORD_0":19918 + }, + "indices":34, + "material":6 + } + ] + }, + { + "name":"Mesh.6627", + "primitives":[ + { + "attributes":{ + "POSITION":19919, + "NORMAL":19920 + }, + "indices":1458, + "material":0 + } + ] + }, + { + "name":"Mesh.5932", + "primitives":[ + { + "attributes":{ + "POSITION":19921, + "NORMAL":19922 + }, + "indices":213, + "material":46 + } + ] + }, + { + "name":"Mesh.6327", + "primitives":[ + { + "attributes":{ + "POSITION":19923, + "NORMAL":19924 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.6259", + "primitives":[ + { + "attributes":{ + "POSITION":19925, + "NORMAL":19926, + "TEXCOORD_0":19927 + }, + "indices":202, + "material":11 + } + ] + }, + { + "name":"Mesh.7543", + "primitives":[ + { + "attributes":{ + "POSITION":19928, + "NORMAL":19929 + }, + "indices":19930, + "material":3 + } + ] + }, + { + "name":"Mesh.5972", + "primitives":[ + { + "attributes":{ + "POSITION":19931, + "NORMAL":19932, + "TEXCOORD_0":19933 + }, + "indices":13175, + "material":33 + } + ] + }, + { + "name":"Mesh.6475", + "primitives":[ + { + "attributes":{ + "POSITION":19934, + "NORMAL":19935, + "TEXCOORD_0":19936 + }, + "indices":1589, + "material":0 + } + ] + }, + { + "name":"Mesh.7768", + "primitives":[ + { + "attributes":{ + "POSITION":19937, + "NORMAL":19938 + }, + "indices":19939, + "material":3 + } + ] + }, + { + "name":"Mesh.7916", + "primitives":[ + { + "attributes":{ + "POSITION":19940, + "NORMAL":19941 + }, + "indices":19942, + "material":3 + } + ] + }, + { + "name":"Mesh.8095", + "primitives":[ + { + "attributes":{ + "POSITION":19943, + "NORMAL":19944 + }, + "indices":1388, + "material":3 + } + ] + }, + { + "name":"Mesh.2815", + "primitives":[ + { + "attributes":{ + "POSITION":19945, + "NORMAL":19946, + "TEXCOORD_0":19947 + }, + "indices":4359, + "material":0 + } + ] + }, + { + "name":"Mesh.7676", + "primitives":[ + { + "attributes":{ + "POSITION":19948, + "NORMAL":19949 + }, + "indices":6942, + "material":3 + } + ] + }, + { + "name":"Mesh.8333", + "primitives":[ + { + "attributes":{ + "POSITION":19950, + "NORMAL":19951 + }, + "indices":2505, + "material":3 + } + ] + }, + { + "name":"Mesh.8135", + "primitives":[ + { + "attributes":{ + "POSITION":19952, + "NORMAL":19953 + }, + "indices":4154, + "material":3 + } + ] + }, + { + "name":"Mesh.7194", + "primitives":[ + { + "attributes":{ + "POSITION":19954, + "NORMAL":19955, + "TEXCOORD_0":19956 + }, + "indices":7452, + "material":7 + } + ] + }, + { + "name":"Mesh.6181", + "primitives":[ + { + "attributes":{ + "POSITION":19957, + "NORMAL":19958, + "TEXCOORD_0":19959 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.7697", + "primitives":[ + { + "attributes":{ + "POSITION":19960, + "NORMAL":19961 + }, + "indices":19962, + "material":3 + } + ] + }, + { + "name":"Mesh.363", + "primitives":[ + { + "attributes":{ + "POSITION":19963, + "NORMAL":19964, + "TEXCOORD_0":19965 + }, + "indices":4675, + "material":0 + } + ] + }, + { + "name":"Mesh.8912", + "primitives":[ + { + "attributes":{ + "POSITION":19966, + "NORMAL":19967, + "TEXCOORD_0":19968 + }, + "indices":5391, + "material":7 + } + ] + }, + { + "name":"Mesh.5134", + "primitives":[ + { + "attributes":{ + "POSITION":19969, + "NORMAL":19970, + "TEXCOORD_0":19971 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.238", + "primitives":[ + { + "attributes":{ + "POSITION":19972, + "NORMAL":19973, + "TEXCOORD_0":19974 + }, + "indices":19975, + "material":3 + } + ] + }, + { + "name":"Mesh.6015", + "primitives":[ + { + "attributes":{ + "POSITION":19976, + "NORMAL":19977, + "TEXCOORD_0":19978 + }, + "indices":2118, + "material":12 + } + ] + }, + { + "name":"Mesh.8679", + "primitives":[ + { + "attributes":{ + "POSITION":19979, + "NORMAL":19980 + }, + "indices":8910, + "material":3 + } + ] + }, + { + "name":"Mesh.7530", + "primitives":[ + { + "attributes":{ + "POSITION":19981, + "NORMAL":19982 + }, + "indices":19983, + "material":3 + } + ] + }, + { + "name":"Mesh.1647", + "primitives":[ + { + "attributes":{ + "POSITION":19984, + "NORMAL":19985, + "TEXCOORD_0":19986 + }, + "indices":1078, + "material":10 + } + ] + }, + { + "name":"Mesh.6314", + "primitives":[ + { + "attributes":{ + "POSITION":19987, + "NORMAL":19988 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.5359", + "primitives":[ + { + "attributes":{ + "POSITION":19989, + "NORMAL":19990, + "TEXCOORD_0":19991 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7954", + "primitives":[ + { + "attributes":{ + "POSITION":19992, + "NORMAL":19993 + }, + "indices":19994, + "material":3 + } + ] + }, + { + "name":"Mesh.269", + "primitives":[ + { + "attributes":{ + "POSITION":19995, + "NORMAL":19996, + "TEXCOORD_0":19997 + }, + "indices":19998, + "material":3 + } + ] + }, + { + "name":"Mesh.1118", + "primitives":[ + { + "attributes":{ + "POSITION":19999, + "NORMAL":20000, + "TEXCOORD_0":20001 + }, + "indices":821, + "material":0 + } + ] + }, + { + "name":"Mesh.6231", + "primitives":[ + { + "attributes":{ + "POSITION":20002, + "NORMAL":20003, + "TEXCOORD_0":20004 + }, + "indices":13524, + "material":33 + } + ] + }, + { + "name":"Mesh.6617", + "primitives":[ + { + "attributes":{ + "POSITION":20005, + "NORMAL":20006 + }, + "indices":9933, + "material":0 + } + ] + }, + { + "name":"Mesh.8590", + "primitives":[ + { + "attributes":{ + "POSITION":20007, + "NORMAL":20008 + }, + "indices":11361, + "material":3 + } + ] + }, + { + "name":"Mesh.8178", + "primitives":[ + { + "attributes":{ + "POSITION":20009, + "NORMAL":20010 + }, + "indices":13318, + "material":3 + } + ] + }, + { + "name":"Mesh.2757", + "primitives":[ + { + "attributes":{ + "POSITION":20011, + "NORMAL":20012, + "TEXCOORD_0":20013 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.714", + "primitives":[ + { + "attributes":{ + "POSITION":20014, + "NORMAL":20015, + "TEXCOORD_0":20016 + }, + "indices":20017, + "material":3 + } + ] + }, + { + "name":"Mesh.2579", + "primitives":[ + { + "attributes":{ + "POSITION":20018, + "NORMAL":20019, + "TEXCOORD_0":20020 + }, + "indices":3122, + "material":0 + } + ] + }, + { + "name":"Mesh.8143", + "primitives":[ + { + "attributes":{ + "POSITION":20021, + "NORMAL":20022 + }, + "indices":2778, + "material":3 + } + ] + }, + { + "name":"Mesh.083", + "primitives":[ + { + "attributes":{ + "POSITION":20023, + "NORMAL":20024 + }, + "indices":20025, + "material":84 + } + ] + }, + { + "name":"Mesh.5177", + "primitives":[ + { + "attributes":{ + "POSITION":20026, + "NORMAL":20027, + "TEXCOORD_0":20028 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6018", + "primitives":[ + { + "attributes":{ + "POSITION":20029, + "NORMAL":20030, + "TEXCOORD_0":20031 + }, + "indices":927, + "material":12 + } + ] + }, + { + "name":"Mesh.6193", + "primitives":[ + { + "attributes":{ + "POSITION":20032, + "NORMAL":20033, + "TEXCOORD_0":20034 + }, + "indices":9248, + "material":33 + } + ] + }, + { + "name":"Mesh.6432", + "primitives":[ + { + "attributes":{ + "POSITION":20035, + "NORMAL":20036, + "TEXCOORD_0":20037 + }, + "indices":4113, + "material":0 + } + ] + }, + { + "name":"Mesh.2655", + "primitives":[ + { + "attributes":{ + "POSITION":20038, + "NORMAL":20039, + "TEXCOORD_0":20040 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.5676", + "primitives":[ + { + "attributes":{ + "POSITION":20041, + "NORMAL":20042, + "TEXCOORD_0":20043 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7166", + "primitives":[ + { + "attributes":{ + "POSITION":20044, + "NORMAL":20045, + "TEXCOORD_0":20046 + }, + "indices":412, + "material":7 + } + ] + }, + { + "name":"Mesh.2827", + "primitives":[ + { + "attributes":{ + "POSITION":20047, + "NORMAL":20048, + "TEXCOORD_0":20049 + }, + "indices":34, + "material":13 + } + ] + }, + { + "name":"Mesh.2432", + "primitives":[ + { + "attributes":{ + "POSITION":20050, + "NORMAL":20051, + "TEXCOORD_0":20052 + }, + "indices":1522, + "material":4 + } + ] + }, + { + "name":"Mesh.010", + "primitives":[ + { + "attributes":{ + "POSITION":20053, + "NORMAL":20054, + "TEXCOORD_0":20055 + }, + "indices":20056, + "material":21 + } + ] + }, + { + "name":"Mesh.8981", + "primitives":[ + { + "attributes":{ + "POSITION":20057, + "NORMAL":20058, + "TEXCOORD_0":20059 + }, + "indices":213, + "material":7 + } + ] + }, + { + "name":"Mesh.6601", + "primitives":[ + { + "attributes":{ + "POSITION":20060, + "NORMAL":20061 + }, + "indices":7900, + "material":0 + } + ] + }, + { + "name":"Mesh.2330", + "primitives":[ + { + "attributes":{ + "POSITION":20062, + "NORMAL":20063, + "TEXCOORD_0":20064 + }, + "indices":15681, + "material":0 + } + ] + }, + { + "name":"Mesh.1223", + "primitives":[ + { + "attributes":{ + "POSITION":20065, + "NORMAL":20066 + }, + "indices":20067, + "material":85 + } + ] + }, + { + "name":"Mesh.5987", + "primitives":[ + { + "attributes":{ + "POSITION":20068, + "NORMAL":20069, + "TEXCOORD_0":20070 + }, + "indices":615, + "material":20 + } + ] + }, + { + "name":"Mesh.7127", + "primitives":[ + { + "attributes":{ + "POSITION":20071, + "NORMAL":20072, + "TEXCOORD_0":20073 + }, + "indices":20074, + "material":7 + } + ] + }, + { + "name":"Mesh.6340", + "primitives":[ + { + "attributes":{ + "POSITION":20075, + "NORMAL":20076 + }, + "indices":917, + "material":1 + } + ] + }, + { + "name":"Mesh.2018", + "primitives":[ + { + "attributes":{ + "POSITION":20077, + "NORMAL":20078, + "TEXCOORD_0":20079 + }, + "indices":20080, + "material":0 + } + ] + }, + { + "name":"Mesh.6268", + "primitives":[ + { + "attributes":{ + "POSITION":20081, + "NORMAL":20082, + "TEXCOORD_0":20083 + }, + "indices":20084, + "material":33 + } + ] + }, + { + "name":"Mesh.8760", + "primitives":[ + { + "attributes":{ + "POSITION":20085, + "NORMAL":20086 + }, + "indices":571, + "material":3 + } + ] + }, + { + "name":"Mesh.7638", + "primitives":[ + { + "attributes":{ + "POSITION":20087, + "NORMAL":20088 + }, + "indices":20089, + "material":3 + } + ] + }, + { + "name":"Mesh.4893", + "primitives":[ + { + "attributes":{ + "POSITION":20090, + "NORMAL":20091, + "TEXCOORD_0":20092 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.2259", + "primitives":[ + { + "attributes":{ + "POSITION":20093, + "NORMAL":20094, + "TEXCOORD_0":20095 + }, + "indices":328, + "material":0 + } + ] + }, + { + "name":"Mesh.093", + "primitives":[ + { + "attributes":{ + "POSITION":20096, + "NORMAL":20097, + "TEXCOORD_0":20098 + }, + "indices":529, + "material":0 + } + ] + }, + { + "name":"Mesh.358", + "primitives":[ + { + "attributes":{ + "POSITION":20099, + "NORMAL":20100, + "TEXCOORD_0":20101 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.1829", + "primitives":[ + { + "attributes":{ + "POSITION":20102, + "NORMAL":20103 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.9165", + "primitives":[ + { + "attributes":{ + "POSITION":20104, + "NORMAL":20105, + "TEXCOORD_0":20106 + }, + "indices":2369, + "material":7 + } + ] + }, + { + "name":"Mesh.2123", + "primitives":[ + { + "attributes":{ + "POSITION":20107, + "NORMAL":20108, + "TEXCOORD_0":20109 + }, + "indices":15457, + "material":3 + } + ] + }, + { + "name":"Mesh.8487", + "primitives":[ + { + "attributes":{ + "POSITION":20110, + "NORMAL":20111 + }, + "indices":20112, + "material":3 + } + ] + }, + { + "name":"Mesh.7936", + "primitives":[ + { + "attributes":{ + "POSITION":20113, + "NORMAL":20114 + }, + "indices":20115, + "material":3 + } + ] + }, + { + "name":"Mesh.5756", + "primitives":[ + { + "attributes":{ + "POSITION":20116, + "NORMAL":20117 + }, + "indices":7900, + "material":0 + } + ] + }, + { + "name":"Mesh.5513", + "primitives":[ + { + "attributes":{ + "POSITION":20118, + "NORMAL":20119, + "TEXCOORD_0":20120 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6750", + "primitives":[ + { + "attributes":{ + "POSITION":20121, + "NORMAL":20122 + }, + "indices":4847, + "material":0 + } + ] + }, + { + "name":"Mesh.5334", + "primitives":[ + { + "attributes":{ + "POSITION":20123, + "NORMAL":20124, + "TEXCOORD_0":20125 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7534", + "primitives":[ + { + "attributes":{ + "POSITION":20126, + "NORMAL":20127 + }, + "indices":20128, + "material":3 + } + ] + }, + { + "name":"Mesh.5189", + "primitives":[ + { + "attributes":{ + "POSITION":20129, + "NORMAL":20130, + "TEXCOORD_0":20131 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.7792", + "primitives":[ + { + "attributes":{ + "POSITION":20132, + "NORMAL":20133 + }, + "indices":20134, + "material":3 + } + ] + }, + { + "name":"Mesh.567", + "primitives":[ + { + "attributes":{ + "POSITION":20135, + "NORMAL":20136, + "TEXCOORD_0":20137 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2092", + "primitives":[ + { + "attributes":{ + "POSITION":20138, + "NORMAL":20139, + "TEXCOORD_0":20140 + }, + "indices":20141, + "material":3 + } + ] + }, + { + "name":"Mesh.8803", + "primitives":[ + { + "attributes":{ + "POSITION":20142, + "NORMAL":20143 + }, + "indices":13482, + "material":3 + } + ] + }, + { + "name":"Mesh.2624", + "primitives":[ + { + "attributes":{ + "POSITION":20144, + "NORMAL":20145, + "TEXCOORD_0":20146 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.7218", + "primitives":[ + { + "attributes":{ + "POSITION":20147, + "NORMAL":20148, + "TEXCOORD_0":20149 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.2732", + "primitives":[ + { + "attributes":{ + "POSITION":20150, + "NORMAL":20151, + "TEXCOORD_0":20152 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.7153", + "primitives":[ + { + "attributes":{ + "POSITION":20153, + "NORMAL":20154, + "TEXCOORD_0":20155 + }, + "indices":1907, + "material":7 + } + ] + }, + { + "name":"Mesh.1805", + "primitives":[ + { + "attributes":{ + "POSITION":20156, + "NORMAL":20157 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6375", + "primitives":[ + { + "attributes":{ + "POSITION":20158, + "NORMAL":20159 + }, + "indices":20160, + "material":0 + } + ] + }, + { + "name":"Mesh.6591", + "primitives":[ + { + "attributes":{ + "POSITION":20161, + "NORMAL":20162 + }, + "indices":6621, + "material":0 + } + ] + }, + { + "name":"Mesh.1182", + "primitives":[ + { + "attributes":{ + "POSITION":20163, + "NORMAL":20164 + }, + "indices":114, + "material":1 + } + ] + }, + { + "name":"Mesh.5658", + "primitives":[ + { + "attributes":{ + "POSITION":20165, + "NORMAL":20166, + "TEXCOORD_0":20167 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.4974", + "primitives":[ + { + "attributes":{ + "POSITION":20168, + "NORMAL":20169, + "TEXCOORD_0":20170 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.313", + "primitives":[ + { + "attributes":{ + "POSITION":20171, + "NORMAL":20172, + "TEXCOORD_0":20173 + }, + "indices":20174, + "material":3 + } + ] + }, + { + "name":"Mesh.5930", + "primitives":[ + { + "attributes":{ + "POSITION":20175, + "NORMAL":20176 + }, + "indices":213, + "material":46 + } + ] + }, + { + "name":"Mesh.2030", + "primitives":[ + { + "attributes":{ + "POSITION":20177, + "NORMAL":20178, + "TEXCOORD_0":20179 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.2623", + "primitives":[ + { + "attributes":{ + "POSITION":20180, + "NORMAL":20181, + "TEXCOORD_0":20182 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.8963", + "primitives":[ + { + "attributes":{ + "POSITION":20183, + "NORMAL":20184, + "TEXCOORD_0":20185 + }, + "indices":79, + "material":7 + } + ] + }, + { + "name":"Mesh.2298", + "primitives":[ + { + "attributes":{ + "POSITION":20186, + "NORMAL":20187, + "TEXCOORD_0":20188 + }, + "indices":2763, + "material":0 + } + ] + }, + { + "name":"Mesh.2271", + "primitives":[ + { + "attributes":{ + "POSITION":20189, + "NORMAL":20190, + "TEXCOORD_0":20191 + }, + "indices":121, + "material":0 + } + ] + }, + { + "name":"Mesh.7499", + "primitives":[ + { + "attributes":{ + "POSITION":20192, + "NORMAL":20193 + }, + "indices":1482, + "material":3 + } + ] + }, + { + "name":"Mesh.437", + "primitives":[ + { + "attributes":{ + "POSITION":20194, + "NORMAL":20195 + }, + "indices":6295, + "material":0 + } + ] + }, + { + "name":"Mesh.2634", + "primitives":[ + { + "attributes":{ + "POSITION":20196, + "NORMAL":20197, + "TEXCOORD_0":20198 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.6145", + "primitives":[ + { + "attributes":{ + "POSITION":20199, + "NORMAL":20200, + "TEXCOORD_0":20201 + }, + "indices":3993, + "material":11 + } + ] + }, + { + "name":"Mesh.2882", + "primitives":[ + { + "attributes":{ + "POSITION":20202, + "NORMAL":20203 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.6576", + "primitives":[ + { + "attributes":{ + "POSITION":20204, + "NORMAL":20205, + "TEXCOORD_0":20206 + }, + "indices":259, + "material":0 + } + ] + }, + { + "name":"Mesh.7866", + "primitives":[ + { + "attributes":{ + "POSITION":20207, + "NORMAL":20208 + }, + "indices":20209, + "material":3 + } + ] + }, + { + "name":"Mesh.2851", + "primitives":[ + { + "attributes":{ + "POSITION":20210, + "NORMAL":20211 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Mesh.138", + "primitives":[ + { + "attributes":{ + "POSITION":20212, + "NORMAL":20213, + "TEXCOORD_0":20214 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.028", + "primitives":[ + { + "attributes":{ + "POSITION":20215, + "NORMAL":20216, + "TEXCOORD_0":20217 + }, + "indices":5286, + "material":41 + } + ] + }, + { + "name":"Mesh.6656", + "primitives":[ + { + "attributes":{ + "POSITION":20218, + "NORMAL":20219 + }, + "indices":7471, + "material":0 + } + ] + }, + { + "name":"Mesh.410", + "primitives":[ + { + "attributes":{ + "POSITION":20220, + "NORMAL":20221 + }, + "indices":2624, + "material":0 + } + ] + }, + { + "name":"Mesh.5346", + "primitives":[ + { + "attributes":{ + "POSITION":20222, + "NORMAL":20223, + "TEXCOORD_0":20224 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.657", + "primitives":[ + { + "attributes":{ + "POSITION":20225, + "NORMAL":20226, + "TEXCOORD_0":20227 + }, + "indices":17643, + "material":3 + } + ] + }, + { + "name":"Mesh.530", + "primitives":[ + { + "attributes":{ + "POSITION":20228, + "NORMAL":20229, + "TEXCOORD_0":20230 + }, + "indices":38, + "material":0 + } + ] + }, + { + "name":"Mesh.8727", + "primitives":[ + { + "attributes":{ + "POSITION":20231, + "NORMAL":20232 + }, + "indices":580, + "material":3 + } + ] + }, + { + "name":"Mesh.2073", + "primitives":[ + { + "attributes":{ + "POSITION":20233, + "NORMAL":20234, + "TEXCOORD_0":20235 + }, + "indices":20236, + "material":0 + } + ] + }, + { + "name":"Mesh.2052", + "primitives":[ + { + "attributes":{ + "POSITION":20237, + "NORMAL":20238, + "TEXCOORD_0":20239 + }, + "indices":8550, + "material":0 + } + ] + }, + { + "name":"Mesh.2590", + "primitives":[ + { + "attributes":{ + "POSITION":20240, + "NORMAL":20241, + "TEXCOORD_0":20242 + }, + "indices":1247, + "material":0 + } + ] + }, + { + "name":"Mesh.6218", + "primitives":[ + { + "attributes":{ + "POSITION":20243, + "NORMAL":20244, + "TEXCOORD_0":20245 + }, + "indices":1605, + "material":11 + } + ] + }, + { + "name":"Mesh.5777", + "primitives":[ + { + "attributes":{ + "POSITION":20246, + "NORMAL":20247, + "TEXCOORD_0":20248 + }, + "indices":157, + "material":9 + } + ] + }, + { + "name":"Mesh.6545", + "primitives":[ + { + "attributes":{ + "POSITION":20249, + "NORMAL":20250 + }, + "indices":3451, + "material":0 + } + ] + }, + { + "name":"Mesh.7048", + "primitives":[ + { + "attributes":{ + "POSITION":20251, + "NORMAL":20252 + }, + "indices":292, + "material":1 + } + ] + }, + { + "name":"Mesh.667", + "primitives":[ + { + "attributes":{ + "POSITION":20253, + "NORMAL":20254, + "TEXCOORD_0":20255 + }, + "indices":20256, + "material":3 + } + ] + }, + { + "name":"Mesh.5931", + "primitives":[ + { + "attributes":{ + "POSITION":20257, + "NORMAL":20258 + }, + "indices":213, + "material":46 + } + ] + }, + { + "name":"Mesh.7693", + "primitives":[ + { + "attributes":{ + "POSITION":20259, + "NORMAL":20260 + }, + "indices":20261, + "material":3 + } + ] + }, + { + "name":"Mesh.6261", + "primitives":[ + { + "attributes":{ + "POSITION":20262, + "NORMAL":20263, + "TEXCOORD_0":20264 + }, + "indices":9545, + "material":11 + } + ] + }, + { + "name":"Mesh.5971", + "primitives":[ + { + "attributes":{ + "POSITION":20265, + "NORMAL":20266, + "TEXCOORD_0":20267 + }, + "indices":13524, + "material":33 + } + ] + }, + { + "name":"Mesh.5315", + "primitives":[ + { + "attributes":{ + "POSITION":20268, + "NORMAL":20269, + "TEXCOORD_0":20270 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.6474", + "primitives":[ + { + "attributes":{ + "POSITION":20271, + "NORMAL":20272, + "TEXCOORD_0":20273 + }, + "indices":514, + "material":0 + } + ] + }, + { + "name":"Mesh.2167", + "primitives":[ + { + "attributes":{ + "POSITION":20274, + "NORMAL":20275, + "TEXCOORD_0":20276 + }, + "indices":4596, + "material":0 + } + ] + }, + { + "name":"Mesh.8674", + "primitives":[ + { + "attributes":{ + "POSITION":20277, + "NORMAL":20278 + }, + "indices":12155, + "material":3 + } + ] + }, + { + "name":"Mesh.7135", + "primitives":[ + { + "attributes":{ + "POSITION":20279, + "NORMAL":20280, + "TEXCOORD_0":20281 + }, + "indices":20282, + "material":7 + } + ] + }, + { + "name":"Mesh.8094", + "primitives":[ + { + "attributes":{ + "POSITION":20283, + "NORMAL":20284 + }, + "indices":3115, + "material":3 + } + ] + }, + { + "name":"Mesh.7267", + "primitives":[ + { + "attributes":{ + "POSITION":20285, + "NORMAL":20286, + "TEXCOORD_0":20287 + }, + "indices":20288, + "material":7 + } + ] + }, + { + "name":"Mesh.224", + "primitives":[ + { + "attributes":{ + "POSITION":20289, + "NORMAL":20290, + "TEXCOORD_0":20291 + }, + "indices":20292, + "material":3 + } + ] + }, + { + "name":"Mesh.2814", + "primitives":[ + { + "attributes":{ + "POSITION":20293, + "NORMAL":20294, + "TEXCOORD_0":20295 + }, + "indices":1536, + "material":0 + } + ] + }, + { + "name":"Mesh.325", + "primitives":[ + { + "attributes":{ + "POSITION":20296, + "NORMAL":20297, + "TEXCOORD_0":20298 + }, + "indices":1392, + "material":0 + } + ] + }, + { + "name":"Mesh.4824", + "primitives":[ + { + "attributes":{ + "POSITION":20299, + "NORMAL":20300, + "TEXCOORD_0":20301 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5490", + "primitives":[ + { + "attributes":{ + "POSITION":20302, + "NORMAL":20303, + "TEXCOORD_0":20304 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.8134", + "primitives":[ + { + "attributes":{ + "POSITION":20305, + "NORMAL":20306 + }, + "indices":8953, + "material":3 + } + ] + }, + { + "name":"Mesh.7193", + "primitives":[ + { + "attributes":{ + "POSITION":20307, + "NORMAL":20308, + "TEXCOORD_0":20309 + }, + "indices":1359, + "material":7 + } + ] + }, + { + "name":"Mesh.9175", + "primitives":[ + { + "attributes":{ + "POSITION":20310, + "NORMAL":20311, + "TEXCOORD_0":20312 + }, + "indices":1966, + "material":7 + } + ] + }, + { + "name":"Mesh.6675", + "primitives":[ + { + "attributes":{ + "POSITION":20313, + "NORMAL":20314 + }, + "indices":6621, + "material":0 + } + ] + }, + { + "name":"Mesh.622", + "primitives":[ + { + "attributes":{ + "POSITION":20315, + "NORMAL":20316, + "TEXCOORD_0":20317 + }, + "indices":20318, + "material":3 + } + ] + }, + { + "name":"Mesh.5133", + "primitives":[ + { + "attributes":{ + "POSITION":20319, + "NORMAL":20320, + "TEXCOORD_0":20321 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.239", + "primitives":[ + { + "attributes":{ + "POSITION":20322, + "NORMAL":20323, + "TEXCOORD_0":20324 + }, + "indices":3024, + "material":3 + } + ] + }, + { + "name":"Mesh.1814", + "primitives":[ + { + "attributes":{ + "POSITION":20325, + "NORMAL":20326 + }, + "indices":696, + "material":1 + } + ] + }, + { + "name":"Mesh.2280", + "primitives":[ + { + "attributes":{ + "POSITION":20327, + "NORMAL":20328, + "TEXCOORD_0":20329 + }, + "indices":136, + "material":0 + } + ] + }, + { + "name":"Mesh.7970", + "primitives":[ + { + "attributes":{ + "POSITION":20330, + "NORMAL":20331, + "TEXCOORD_0":20332 + }, + "indices":1225, + "material":0 + } + ] + }, + { + "name":"Mesh.6014", + "primitives":[ + { + "attributes":{ + "POSITION":20333, + "NORMAL":20334, + "TEXCOORD_0":20335 + }, + "indices":2118, + "material":12 + } + ] + }, + { + "name":"Mesh.8015", + "primitives":[ + { + "attributes":{ + "POSITION":20336, + "NORMAL":20337, + "TEXCOORD_0":20338 + }, + "indices":3573, + "material":3 + } + ] + }, + { + "name":"Mesh.5358", + "primitives":[ + { + "attributes":{ + "POSITION":20339, + "NORMAL":20340, + "TEXCOORD_0":20341 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.1117", + "primitives":[ + { + "attributes":{ + "POSITION":20342, + "NORMAL":20343, + "TEXCOORD_0":20344 + }, + "indices":2858, + "material":0 + } + ] + }, + { + "name":"Mesh.6230", + "primitives":[ + { + "attributes":{ + "POSITION":20345, + "NORMAL":20346, + "TEXCOORD_0":20347 + }, + "indices":13175, + "material":33 + } + ] + }, + { + "name":"Mesh.2182", + "primitives":[ + { + "attributes":{ + "POSITION":20348, + "NORMAL":20349, + "TEXCOORD_0":20350 + }, + "indices":20351, + "material":0 + } + ] + }, + { + "name":"Mesh.8177", + "primitives":[ + { + "attributes":{ + "POSITION":20352, + "NORMAL":20353 + }, + "indices":16545, + "material":3 + } + ] + }, + { + "name":"Mesh.244", + "primitives":[ + { + "attributes":{ + "POSITION":20354, + "NORMAL":20355, + "TEXCOORD_0":20356 + }, + "indices":20357, + "material":3 + } + ] + }, + { + "name":"Mesh.2756", + "primitives":[ + { + "attributes":{ + "POSITION":20358, + "NORMAL":20359, + "TEXCOORD_0":20360 + }, + "indices":390, + "material":3 + } + ] + }, + { + "name":"Mesh.713", + "primitives":[ + { + "attributes":{ + "POSITION":20361, + "NORMAL":20362, + "TEXCOORD_0":20363 + }, + "indices":20364, + "material":3 + } + ] + }, + { + "name":"Mesh.4991", + "primitives":[ + { + "attributes":{ + "POSITION":20365, + "NORMAL":20366, + "TEXCOORD_0":20367 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5477", + "primitives":[ + { + "attributes":{ + "POSITION":20368, + "NORMAL":20369, + "TEXCOORD_0":20370 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.5176", + "primitives":[ + { + "attributes":{ + "POSITION":20371, + "NORMAL":20372, + "TEXCOORD_0":20373 + }, + "indices":13, + "material":2 + } + ] + }, + { + "name":"Mesh.9208", + "primitives":[ + { + "attributes":{ + "POSITION":20374, + "NORMAL":20375, + "TEXCOORD_0":20376, + "TEXCOORD_1":20377 + }, + "indices":341, + "material":2 + }, + { + "attributes":{ + "POSITION":20378, + "NORMAL":20379, + "TEXCOORD_0":20380, + "TEXCOORD_1":20381 + }, + "indices":346, + "material":14 + } + ] + }, + { + "name":"Mesh.9209", + "primitives":[ + { + "attributes":{ + "POSITION":20382, + "NORMAL":20383, + "TEXCOORD_0":20384, + "TEXCOORD_1":20385 + }, + "indices":341, + "material":2 + }, + { + "attributes":{ + "POSITION":20386, + "NORMAL":20387, + "TEXCOORD_0":20388, + "TEXCOORD_1":20389 + }, + "indices":346, + "material":14 + } + ] + }, + { + "name":"Mesh.9210", + "primitives":[ + { + "attributes":{ + "POSITION":20390, + "NORMAL":20391, + "TEXCOORD_0":20392, + "TEXCOORD_1":20393 + }, + "indices":341, + "material":2 + }, + { + "attributes":{ + "POSITION":20394, + "NORMAL":20395, + "TEXCOORD_0":20396, + "TEXCOORD_1":20397 + }, + "indices":346, + "material":14 + } + ] + }, + { + "name":"Mesh.9211", + "primitives":[ + { + "attributes":{ + "POSITION":20398, + "NORMAL":20399, + "TEXCOORD_0":20400, + "TEXCOORD_1":20401 + }, + "indices":341, + "material":2 + }, + { + "attributes":{ + "POSITION":20402, + "NORMAL":20403, + "TEXCOORD_0":20404, + "TEXCOORD_1":20405 + }, + "indices":346, + "material":14 + } + ] + }, + { + "name":"Mesh.9212", + "primitives":[ + { + "attributes":{ + "POSITION":20406, + "NORMAL":20407, + "TEXCOORD_0":20408, + "TEXCOORD_1":20409 + }, + "indices":341, + "material":2 + }, + { + "attributes":{ + "POSITION":20410, + "NORMAL":20411, + "TEXCOORD_0":20412, + "TEXCOORD_1":20413 + }, + "indices":346, + "material":14 + } + ] + }, + { + "name":"Mesh.059", + "primitives":[ + { + "attributes":{ + "POSITION":20414, + "NORMAL":20415, + "TEXCOORD_0":20416 + }, + "indices":20417, + "material":15 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":2 + }, + { + "sampler":0, + "source":3 + }, + { + "sampler":0, + "source":4 + }, + { + "sampler":0, + "source":4 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":5 + }, + { + "sampler":0, + "source":6 + }, + { + "sampler":0, + "source":7 + }, + { + "sampler":0, + "source":7 + }, + { + "sampler":0, + "source":8 + }, + { + "sampler":0, + "source":9 + }, + { + "sampler":0, + "source":10 + }, + { + "sampler":0, + "source":10 + }, + { + "sampler":0, + "source":11 + }, + { + "sampler":0, + "source":10 + }, + { + "sampler":0, + "source":10 + }, + { + "sampler":0, + "source":11 + } + ], + "images":[ + { + "mimeType":"image/jpeg", + "name":"Lime._TT06", + "uri":"Lime._TT06.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"Lime._luya", + "uri":"Lime._luya.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"Lime._Bump_\u94fa\u5730003.jpg", + "uri":"Lime._Bump_%E9%93%BA%E5%9C%B0003.jpg.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"Lime._Diff_\u6c99\u77f301.jpg", + "uri":"Lime._Diff_%E6%B2%99%E7%9F%B301.jpg.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"Lime._Lime._20", + "uri":"Lime._Lime._20.jpg" + }, + { + "mimeType":"image/png", + "name":"Lime._Lime._\u5fae\u4fe1\u56fe\u7247_20181202141532", + "uri":"Lime._Lime._%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20181202141532.png" + }, + { + "mimeType":"image/png", + "name":"Lime._HDM_03_cellular", + "uri":"Lime._HDM_03_cellular.png" + }, + { + "mimeType":"image/jpeg", + "name":"Lime._HDM_03_felgi_ref", + "uri":"Lime._HDM_03_felgi_ref.jpg" + }, + { + "mimeType":"image/png", + "name":"Lime._HDM_03_tyre_sidewall", + "uri":"Lime._HDM_03_tyre_sidewall.png" + }, + { + "mimeType":"image/jpeg", + "name":"Lime._\u6c99\u77f301", + "uri":"Lime._%E6%B2%99%E7%9F%B301.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"Lime._felgi_ref", + "uri":"Lime._felgi_ref.jpg" + }, + { + "mimeType":"image/png", + "name":"Lime._tyre_sidewall", + "uri":"Lime._tyre_sidewall.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51416015625, + 22.7260799407959 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.729618072509766 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":276, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":742, + "max":[ + 136.373779296875, + 46.09920883178711, + 136.37379455566406 + ], + "min":[ + -136.37388610839844, + -4.00543212890625e-05, + -136.37380981445312 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":742, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":7, + "componentType":5126, + "count":24, + "max":[ + 110.00011444091797, + 50, + 584.666015625 + ], + "min":[ + -110.00007629394531, + 0, + -584.662109375 + ], + "type":"VEC3" + }, + { + "bufferView":8, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":10, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":11, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13, + "componentType":5123, + "count":6, + "type":"SCALAR" + }, + { + "bufferView":14, + "componentType":5126, + "count":584, + "max":[ + 169.1017303466797, + 174.76547241210938, + 147.46453857421875 + ], + "min":[ + -169.10015869140625, + -0.00014495849609375, + -147.46450805664062 + ], + "type":"VEC3" + }, + { + "bufferView":15, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":16, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20, + "componentType":5126, + "count":574, + "max":[ + 159.28961181640625, + 32.8253173828125, + 159.2907257080078 + ], + "min":[ + -159.29193115234375, + 1.52587890625e-05, + -159.2908477783203 + ], + "type":"VEC3" + }, + { + "bufferView":21, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":22, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":23, + "componentType":5126, + "count":24, + "max":[ + 29.8388671875, + 320.322265625, + 219.6572265625 + ], + "min":[ + -29.83935546875, + 0, + -219.654296875 + ], + "type":"VEC3" + }, + { + "bufferView":24, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":25, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":26, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":27, + "componentType":5126, + "count":865, + "max":[ + 7.779087543487549, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778796672821045, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":28, + "componentType":5126, + "count":865, + "type":"VEC3" + }, + { + "bufferView":29, + "componentType":5126, + "count":865, + "type":"VEC2" + }, + { + "bufferView":30, + "componentType":5123, + "count":1524, + "type":"SCALAR" + }, + { + "bufferView":31, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":32, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":33, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":34, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":35, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58642578125 + ], + "min":[ + -46.284423828125, + 0, + -78.5849609375 + ], + "type":"VEC3" + }, + { + "bufferView":36, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":37, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":38, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":39, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":40, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":41, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":42, + "componentType":5126, + "count":582, + "max":[ + 156.4861602783203, + 163.41033935546875, + 142.6818084716797 + ], + "min":[ + -156.4895782470703, + 1.0827178955078125, + -130.40065002441406 + ], + "type":"VEC3" + }, + { + "bufferView":43, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":44, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":45, + "componentType":5126, + "count":580, + "max":[ + 201.16368103027344, + 241.4158477783203, + 183.91050720214844 + ], + "min":[ + -201.16162109375, + 7.62939453125e-05, + -183.9099578857422 + ], + "type":"VEC3" + }, + { + "bufferView":46, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":47, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":48, + "componentType":5126, + "count":50, + "max":[ + 142.32080078125, + 608.2197265625, + 391.736328125 + ], + "min":[ + -142.32177734375, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":49, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":50, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":51, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":52, + "componentType":5126, + "count":2703, + "max":[ + 128.19970703125, + 421.52587890625, + 128.19873046875 + ], + "min":[ + -128.19921875, + 0, + -128.19921875 + ], + "type":"VEC3" + }, + { + "bufferView":53, + "componentType":5126, + "count":2703, + "type":"VEC3" + }, + { + "bufferView":54, + "componentType":5126, + "count":2703, + "type":"VEC2" + }, + { + "bufferView":55, + "componentType":5123, + "count":4800, + "type":"SCALAR" + }, + { + "bufferView":56, + "componentType":5126, + "count":227, + "max":[ + 7.85205078125, + 248.992431640625, + 53.28369140625 + ], + "min":[ + -7.853515625, + 0.0001220703125, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":57, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":58, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":59, + "componentType":5123, + "count":552, + "type":"SCALAR" + }, + { + "bufferView":60, + "componentType":5126, + "count":589, + "max":[ + 164.1466827392578, + 237.33001708984375, + 147.47808837890625 + ], + "min":[ + -171.35311889648438, + 34.85478973388672, + -159.40992736816406 + ], + "type":"VEC3" + }, + { + "bufferView":61, + "componentType":5126, + "count":589, + "type":"VEC3" + }, + { + "bufferView":62, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":63, + "componentType":5126, + "count":96, + "max":[ + 34.85283660888672, + 1922.78076171875, + 633.9986572265625 + ], + "min":[ + -34.855621337890625, + 0, + -633.9988403320312 + ], + "type":"VEC3" + }, + { + "bufferView":64, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":65, + "componentType":5123, + "count":132, + "type":"SCALAR" + }, + { + "bufferView":66, + "componentType":5126, + "count":573, + "max":[ + 160.1221160888672, + 231.80075073242188, + 143.80897521972656 + ], + "min":[ + -167.3301239013672, + 34.01490020751953, + -155.74111938476562 + ], + "type":"VEC3" + }, + { + "bufferView":67, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":68, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":69, + "componentType":5126, + "count":339, + "max":[ + 170.9033203125, + 157.003662109375, + 177.25439453125 + ], + "min":[ + -170.90625, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":70, + "componentType":5126, + "count":339, + "type":"VEC3" + }, + { + "bufferView":71, + "componentType":5126, + "count":339, + "type":"VEC2" + }, + { + "bufferView":72, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":73, + "componentType":5126, + "count":112, + "max":[ + 106.49419403076172, + 317.7470703125, + 106.49419403076172 + ], + "min":[ + -106.49427795410156, + 7.62939453125e-05, + -106.49420928955078 + ], + "type":"VEC3" + }, + { + "bufferView":74, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":75, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":76, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.455810546875, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":77, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":78, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":79, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":80, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":81, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":82, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":83, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.2841796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.2841796875 + ], + "type":"VEC3" + }, + { + "bufferView":84, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":85, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":86, + "componentType":5123, + "count":552, + "type":"SCALAR" + }, + { + "bufferView":87, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58544921875 + ], + "min":[ + -46.284423828125, + 0, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":88, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":89, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":90, + "componentType":5126, + "count":570, + "max":[ + 187.32032775878906, + 32.82526779174805, + 187.3197479248047 + ], + "min":[ + -187.31944274902344, + 1.1444091796875e-05, + -187.3200225830078 + ], + "type":"VEC3" + }, + { + "bufferView":91, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":92, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":93, + "componentType":5126, + "count":577, + "max":[ + 183.84652709960938, + 118.57159423828125, + 191.52410888671875 + ], + "min":[ + -183.84349060058594, + 0.00011444091796875, + -191.5244140625 + ], + "type":"VEC3" + }, + { + "bufferView":94, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":95, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":96, + "componentType":5126, + "count":346, + "max":[ + 171.298828125, + 184.8046875, + 176.140869140625 + ], + "min":[ + -171.2978515625, + 44.45751953125, + -176.14111328125 + ], + "type":"VEC3" + }, + { + "bufferView":97, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":98, + "componentType":5126, + "count":346, + "type":"VEC2" + }, + { + "bufferView":99, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":100, + "componentType":5126, + "count":342, + "max":[ + 13.560844421386719, + 272.6591796875, + 115.08641815185547 + ], + "min":[ + -13.560531616210938, + 42.486289978027344, + -115.08648681640625 + ], + "type":"VEC3" + }, + { + "bufferView":101, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":102, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":103, + "componentType":5126, + "count":826, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45752716064453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45630645751953 + ], + "type":"VEC3" + }, + { + "bufferView":104, + "componentType":5126, + "count":826, + "type":"VEC3" + }, + { + "bufferView":105, + "componentType":5126, + "count":826, + "type":"VEC2" + }, + { + "bufferView":106, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":107, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":108, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":109, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":110, + "componentType":5126, + "count":24, + "max":[ + 110.00007629394531, + 50, + 481.6465148925781 + ], + "min":[ + -110.0000991821289, + 0, + -481.6465148925781 + ], + "type":"VEC3" + }, + { + "bufferView":111, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":112, + "componentType":5126, + "count":72, + "max":[ + 22.50006103515625, + 1492.539794921875, + 771.3447875976562 + ], + "min":[ + -22.500253677368164, + 0, + -771.34619140625 + ], + "type":"VEC3" + }, + { + "bufferView":113, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":114, + "componentType":5123, + "count":120, + "type":"SCALAR" + }, + { + "bufferView":115, + "componentType":5126, + "count":590, + "max":[ + 165.48817443847656, + 239.1734619140625, + 148.70077514648438 + ], + "min":[ + -172.69406127929688, + 35.13507080078125, + -160.63314819335938 + ], + "type":"VEC3" + }, + { + "bufferView":116, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":117, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":118, + "componentType":5126, + "count":48, + "max":[ + 161.97705078125, + 658.67578125, + 366.1529541015625 + ], + "min":[ + -161.98291015625, + 0, + -366.1529541015625 + ], + "type":"VEC3" + }, + { + "bufferView":119, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":120, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":121, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":122, + "componentType":5126, + "count":351, + "max":[ + 170.43359375, + 188.55810546875, + 176.2041015625 + ], + "min":[ + -170.4365234375, + 45.29638671875, + -176.203125 + ], + "type":"VEC3" + }, + { + "bufferView":123, + "componentType":5126, + "count":351, + "type":"VEC3" + }, + { + "bufferView":124, + "componentType":5126, + "count":351, + "type":"VEC2" + }, + { + "bufferView":125, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":126, + "componentType":5126, + "count":48, + "max":[ + 161.97705078125, + 658.67578125, + 366.1527099609375 + ], + "min":[ + -161.98291015625, + 0, + -366.1531982421875 + ], + "type":"VEC3" + }, + { + "bufferView":127, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":128, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":129, + "componentType":5126, + "count":51, + "max":[ + 127.44482421875, + 625.6328125, + 391.7376708984375 + ], + "min":[ + -127.4423828125, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":130, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":131, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":132, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":133, + "componentType":5126, + "count":228, + "max":[ + 105.79833984375, + 2059.5048828125, + 105.7998046875 + ], + "min":[ + -105.796875, + 0, + -105.798828125 + ], + "type":"VEC3" + }, + { + "bufferView":134, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":135, + "componentType":5126, + "count":228, + "type":"VEC2" + }, + { + "bufferView":136, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":137, + "componentType":5126, + "count":1420, + "max":[ + 433.12109375, + 367.929443359375, + 90.005859375 + ], + "min":[ + -433.119140625, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":138, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":139, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":140, + "componentType":5123, + "count":2472, + "type":"SCALAR" + }, + { + "bufferView":141, + "componentType":5126, + "count":48, + "max":[ + 142.32275390625, + 608.220703125, + 391.737548828125 + ], + "min":[ + -142.31982421875, + 0, + -391.7374267578125 + ], + "type":"VEC3" + }, + { + "bufferView":142, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":143, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":144, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":145, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 703.126953125 + ], + "min":[ + -110.00003814697266, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":146, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":147, + "componentType":5126, + "count":123, + "max":[ + 19.552249908447266, + 40.31746292114258, + 17.7995662689209 + ], + "min":[ + -19.55224609375, + 1.33514404296875e-05, + -17.7996883392334 + ], + "type":"VEC3" + }, + { + "bufferView":148, + "componentType":5126, + "count":123, + "type":"VEC3" + }, + { + "bufferView":149, + "componentType":5126, + "count":123, + "type":"VEC2" + }, + { + "bufferView":150, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":151, + "componentType":5126, + "count":1420, + "max":[ + 433.12109375, + 367.929443359375, + 90.004150390625 + ], + "min":[ + -433.119140625, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":152, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":153, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":154, + "componentType":5126, + "count":4, + "max":[ + 698.8837890625, + 2586.479248046875, + 0.0021792426705360413 + ], + "min":[ + -698.8837890625, + 0, + 0.0017270073294639587 + ], + "type":"VEC3" + }, + { + "bufferView":155, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":156, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":157, + "componentType":5123, + "count":6, + "type":"SCALAR" + }, + { + "bufferView":158, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 703.126953125 + ], + "min":[ + -110.00003814697266, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":159, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":160, + "componentType":5126, + "count":688, + "max":[ + 150.833984375, + 268.33465576171875, + 147.66819763183594 + ], + "min":[ + -150.8313446044922, + 28.939044952392578, + -147.66844177246094 + ], + "type":"VEC3" + }, + { + "bufferView":161, + "componentType":5126, + "count":688, + "type":"VEC3" + }, + { + "bufferView":162, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":163, + "componentType":5126, + "count":12, + "max":[ + 8.345703125, + 341.14361572265625, + 360.897216796875 + ], + "min":[ + -8.34521484375, + -0.00054931640625, + -360.8974609375 + ], + "type":"VEC3" + }, + { + "bufferView":164, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":165, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":166, + "componentType":5123, + "count":18, + "type":"SCALAR" + }, + { + "bufferView":167, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":168, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":169, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":170, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":171, + "componentType":5126, + "count":232, + "max":[ + 115.35120391845703, + 317.20355224609375, + 159.83079528808594 + ], + "min":[ + -115.35127258300781, + 3.0517578125e-05, + -159.830810546875 + ], + "type":"VEC3" + }, + { + "bufferView":172, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":173, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":174, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":175, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":176, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":177, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58544921875 + ], + "min":[ + -46.2841796875, + 0, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":178, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":179, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":180, + "componentType":5126, + "count":266, + "max":[ + 383.94287109375, + 1066.085205078125, + 229.2608642578125 + ], + "min":[ + -383.9423828125, + 0, + -229.2607421875 + ], + "type":"VEC3" + }, + { + "bufferView":181, + "componentType":5126, + "count":266, + "type":"VEC3" + }, + { + "bufferView":182, + "componentType":5126, + "count":266, + "type":"VEC2" + }, + { + "bufferView":183, + "componentType":5123, + "count":564, + "type":"SCALAR" + }, + { + "bufferView":184, + "componentType":5126, + "count":559, + "max":[ + 2.095486640930176, + 14.731964111328125, + 7.36604642868042 + ], + "min":[ + -2.0954651832580566, + -8.249282836914062e-05, + -7.3659987449646 + ], + "type":"VEC3" + }, + { + "bufferView":185, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":186, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":187, + "componentType":5123, + "count":2880, + "type":"SCALAR" + }, + { + "bufferView":188, + "componentType":5126, + "count":344, + "max":[ + 170.43359375, + 188.555908203125, + 176.20361328125 + ], + "min":[ + -170.435546875, + 45.296142578125, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":189, + "componentType":5126, + "count":344, + "type":"VEC3" + }, + { + "bufferView":190, + "componentType":5126, + "count":344, + "type":"VEC2" + }, + { + "bufferView":191, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":192, + "componentType":5126, + "count":570, + "max":[ + 202.81088256835938, + 243.335205078125, + 185.41172790527344 + ], + "min":[ + -202.80821228027344, + 6.103515625e-05, + -185.41201782226562 + ], + "type":"VEC3" + }, + { + "bufferView":193, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":194, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":195, + "componentType":5126, + "count":76, + "max":[ + 279.1075134277344, + 3543.081787109375, + 278.8739013671875 + ], + "min":[ + -279.10455322265625, + 0, + -278.872314453125 + ], + "type":"VEC3" + }, + { + "bufferView":196, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":197, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":198, + "componentType":5123, + "count":156, + "type":"SCALAR" + }, + { + "bufferView":199, + "componentType":5126, + "count":71, + "max":[ + 3.787405490875244, + 13.693549156188965, + 6.47286319732666 + ], + "min":[ + -3.787666082382202, + -2.956390380859375e-05, + -6.472907543182373 + ], + "type":"VEC3" + }, + { + "bufferView":200, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":201, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":202, + "componentType":5123, + "count":108, + "type":"SCALAR" + }, + { + "bufferView":203, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":204, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":205, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":206, + "componentType":5126, + "count":40, + "max":[ + 5.258738040924072, + 10.517534255981445, + 1.4143263101577759 + ], + "min":[ + -5.258735656738281, + 6.008148193359375e-05, + -1.4143047332763672 + ], + "type":"VEC3" + }, + { + "bufferView":207, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":208, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":209, + "componentType":5123, + "count":174, + "type":"SCALAR" + }, + { + "bufferView":210, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":211, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":212, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":213, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":214, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":215, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":216, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":217, + "componentType":5126, + "count":592, + "max":[ + 196.83981323242188, + 124.85286712646484, + 201.33425903320312 + ], + "min":[ + -189.62779235839844, + 0.814849853515625, + -201.33462524414062 + ], + "type":"VEC3" + }, + { + "bufferView":218, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":219, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":220, + "componentType":5126, + "count":596, + "max":[ + 161.04449462890625, + 107.70491027832031, + 167.69944763183594 + ], + "min":[ + -161.0426483154297, + 0.00022125244140625, + -167.69956970214844 + ], + "type":"VEC3" + }, + { + "bufferView":221, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":222, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":223, + "componentType":5126, + "count":168, + "max":[ + 769.70751953125, + 113.194580078125, + 56.596923828125 + ], + "min":[ + -769.709228515625, + 0, + -56.59765625 + ], + "type":"VEC3" + }, + { + "bufferView":224, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":225, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":226, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":227, + "componentType":5126, + "count":1528, + "max":[ + 811.24609375, + 3669.324951171875, + 385.1142578125 + ], + "min":[ + -612.7646484375, + 88.9296875, + -605.778076171875 + ], + "type":"VEC3" + }, + { + "bufferView":228, + "componentType":5126, + "count":1528, + "type":"VEC3" + }, + { + "bufferView":229, + "componentType":5126, + "count":1528, + "type":"VEC2" + }, + { + "bufferView":230, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":231, + "componentType":5126, + "count":574, + "max":[ + 206.177734375, + 32.82525634765625, + 206.1773223876953 + ], + "min":[ + -206.17726135253906, + 0.0001068115234375, + -206.17767333984375 + ], + "type":"VEC3" + }, + { + "bufferView":232, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":233, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":234, + "componentType":5126, + "count":24, + "max":[ + 182.037109375, + 29.517658233642578, + 3245.603759765625 + ], + "min":[ + -182.037109375, + -7.915496826171875e-05, + -3245.60009765625 + ], + "type":"VEC3" + }, + { + "bufferView":235, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":236, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":237, + "componentType":5126, + "count":185, + "max":[ + 1060.185546875, + 12554.818359375, + 156.1607666015625 + ], + "min":[ + -1060.18798828125, + 0.000278472900390625, + -156.1597900390625 + ], + "type":"VEC3" + }, + { + "bufferView":238, + "componentType":5126, + "count":185, + "type":"VEC3" + }, + { + "bufferView":239, + "componentType":5126, + "count":185, + "type":"VEC2" + }, + { + "bufferView":240, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":241, + "componentType":5126, + "count":570, + "max":[ + 163.4947967529297, + 169.23770141601562, + 142.60977172851562 + ], + "min":[ + -163.4954833984375, + 0.00016021728515625, + -142.6097412109375 + ], + "type":"VEC3" + }, + { + "bufferView":242, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":243, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":244, + "componentType":5126, + "count":12, + "max":[ + 411.4619140625, + 388.941162109375, + 9.51611328125 + ], + "min":[ + -411.4638671875, + 0, + -9.5142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":245, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":246, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":247, + "componentType":5123, + "count":18, + "type":"SCALAR" + }, + { + "bufferView":248, + "componentType":5126, + "count":24, + "max":[ + 349.0685729980469, + 50.00018310546875, + 584.6641845703125 + ], + "min":[ + -349.0680847167969, + 7.65542354201898e-05, + -584.6641235351562 + ], + "type":"VEC3" + }, + { + "bufferView":249, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":250, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":251, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":252, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":253, + "componentType":5126, + "count":584, + "max":[ + 201.16368103027344, + 241.4158477783203, + 183.91001892089844 + ], + "min":[ + -201.16162109375, + 7.62939453125e-05, + -183.9104461669922 + ], + "type":"VEC3" + }, + { + "bufferView":254, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":255, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":256, + "componentType":5126, + "count":559, + "max":[ + 223.19969177246094, + 577.9194946289062, + 223.60577392578125 + ], + "min":[ + -223.19973754882812, + 131.6395721435547, + -223.6057891845703 + ], + "type":"VEC3" + }, + { + "bufferView":257, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":258, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":259, + "componentType":5123, + "count":2880, + "type":"SCALAR" + }, + { + "bufferView":260, + "componentType":5126, + "count":224, + "max":[ + 118.72103118896484, + 230.17282104492188, + 115.0865478515625 + ], + "min":[ + -118.72062683105469, + -2.288818359375e-05, + -115.08647155761719 + ], + "type":"VEC3" + }, + { + "bufferView":261, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":262, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":263, + "componentType":5126, + "count":82, + "max":[ + 5.782175540924072, + 27.783960342407227, + 5.782160758972168 + ], + "min":[ + -5.782073497772217, + 0.0001882332726381719, + -5.782059669494629 + ], + "type":"VEC3" + }, + { + "bufferView":264, + "componentType":5126, + "count":82, + "type":"VEC3" + }, + { + "bufferView":265, + "componentType":5126, + "count":82, + "type":"VEC2" + }, + { + "bufferView":266, + "componentType":5123, + "count":228, + "type":"SCALAR" + }, + { + "bufferView":267, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":268, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":269, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":270, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.9293212890625, + 90.004150390625 + ], + "min":[ + -433.1201171875, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":271, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":272, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":273, + "componentType":5123, + "count":2472, + "type":"SCALAR" + }, + { + "bufferView":274, + "componentType":5126, + "count":40, + "max":[ + 1.4143263101577759, + 10.517534255981445, + 5.258735656738281 + ], + "min":[ + -1.4143048524856567, + 6.008148193359375e-05, + -5.258738040924072 + ], + "type":"VEC3" + }, + { + "bufferView":275, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":276, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":277, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":278, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":279, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":280, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":281, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":282, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":283, + "componentType":5126, + "count":1020, + "max":[ + 4024.5849609375, + 2502.009765625, + 25.650876998901367 + ], + "min":[ + -1277.8948974609375, + -26.289306640625, + -14298.7685546875 + ], + "type":"VEC3" + }, + { + "bufferView":284, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":285, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":286, + "componentType":5123, + "count":1530, + "type":"SCALAR" + }, + { + "bufferView":287, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.58984375, + 5.7220458984375e-05, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":288, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":289, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":290, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":291, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":292, + "componentType":5123, + "count":132, + "type":"SCALAR" + }, + { + "bufferView":293, + "componentType":5126, + "count":122, + "max":[ + 228.90673828125, + 55.46875, + 27.736328125 + ], + "min":[ + -228.909423828125, + 0, + -27.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":294, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":295, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":296, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":297, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":298, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":299, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":300, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":301, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":302, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":303, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 703.126953125 + ], + "min":[ + -110.00003814697266, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":304, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":305, + "componentType":5126, + "count":24, + "max":[ + 110.00012969970703, + 50, + 584.666015625 + ], + "min":[ + -110.00007629394531, + 0, + -584.662109375 + ], + "type":"VEC3" + }, + { + "bufferView":306, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":307, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.143798828125, + 360.897705078125 + ], + "min":[ + -8.345703125, + -0.00048828125, + -360.89697265625 + ], + "type":"VEC3" + }, + { + "bufferView":308, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":309, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":310, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":311, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":312, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":313, + "componentType":5123, + "count":276, + "type":"SCALAR" + }, + { + "bufferView":314, + "componentType":5126, + "count":110, + "max":[ + 58.34326171875, + 131.9423828125, + 58.34326171875 + ], + "min":[ + -58.34326171875, + 0, + -58.34228515625 + ], + "type":"VEC3" + }, + { + "bufferView":315, + "componentType":5126, + "count":110, + "type":"VEC3" + }, + { + "bufferView":316, + "componentType":5126, + "count":110, + "type":"VEC2" + }, + { + "bufferView":317, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":318, + "componentType":5126, + "count":4802, + "max":[ + 91.37360382080078, + 182.74732971191406, + 6.498558044433594 + ], + "min":[ + -91.37369537353516, + 1.52587890625e-05, + -6.498471260070801 + ], + "type":"VEC3" + }, + { + "bufferView":319, + "componentType":5126, + "count":4802, + "type":"VEC3" + }, + { + "bufferView":320, + "componentType":5126, + "count":4802, + "type":"VEC2" + }, + { + "bufferView":321, + "componentType":5123, + "count":9708, + "type":"SCALAR" + }, + { + "bufferView":322, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":323, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":324, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":325, + "componentType":5126, + "count":52, + "max":[ + 161.98095703125, + 658.67578125, + 366.15234375 + ], + "min":[ + -161.97900390625, + 0, + -366.1533203125 + ], + "type":"VEC3" + }, + { + "bufferView":326, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":327, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":328, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":329, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":330, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":331, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":332, + "componentType":5126, + "count":865, + "max":[ + 7.779087543487549, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778796672821045, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":333, + "componentType":5126, + "count":865, + "type":"VEC3" + }, + { + "bufferView":334, + "componentType":5126, + "count":865, + "type":"VEC2" + }, + { + "bufferView":335, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":336, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":337, + "componentType":5126, + "count":327, + "max":[ + 111.53087615966797, + 1147.8228759765625, + 166.08595275878906 + ], + "min":[ + -111.53184509277344, + -6.1035148974042386e-05, + -166.0859832763672 + ], + "type":"VEC3" + }, + { + "bufferView":338, + "componentType":5126, + "count":327, + "type":"VEC3" + }, + { + "bufferView":339, + "componentType":5126, + "count":327, + "type":"VEC2" + }, + { + "bufferView":340, + "componentType":5126, + "count":327, + "type":"VEC2" + }, + { + "bufferView":341, + "componentType":5123, + "count":540, + "type":"SCALAR" + }, + { + "bufferView":342, + "componentType":5126, + "count":96, + "max":[ + 118.15005493164062, + 957.5928955078125, + 149.91680908203125 + ], + "min":[ + 106.53060913085938, + 53.104644775390625, + -151.07305908203125 + ], + "type":"VEC3" + }, + { + "bufferView":343, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":344, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":345, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":346, + "componentType":5123, + "count":144, + "type":"SCALAR" + }, + { + "bufferView":347, + "componentType":5126, + "count":578, + "max":[ + 155.0883331298828, + 162.0181884765625, + 141.46768188476562 + ], + "min":[ + -155.08447265625, + 1.072662353515625, + -129.1874542236328 + ], + "type":"VEC3" + }, + { + "bufferView":348, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":349, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":350, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":351, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":352, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":353, + "componentType":5126, + "count":578, + "max":[ + 199.51646423339844, + 239.4965362548828, + 182.4088134765625 + ], + "min":[ + -199.51507568359375, + 9.1552734375e-05, + -182.4083251953125 + ], + "type":"VEC3" + }, + { + "bufferView":354, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":355, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":356, + "componentType":5126, + "count":4, + "max":[ + 1.328125, + 270.2005615234375, + 165.365234375 + ], + "min":[ + -1.32421875, + -0.001220703125, + -165.3642578125 + ], + "type":"VEC3" + }, + { + "bufferView":357, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":358, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":359, + "componentType":5123, + "count":6, + "type":"SCALAR" + }, + { + "bufferView":360, + "componentType":5126, + "count":568, + "max":[ + 191.89175415039062, + 123.23667907714844, + 199.9328155517578 + ], + "min":[ + -191.89332580566406, + 9.1552734375e-05, + -199.93313598632812 + ], + "type":"VEC3" + }, + { + "bufferView":361, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":362, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":363, + "componentType":5126, + "count":44, + "max":[ + 127.44287109375, + 625.6328125, + 391.7376403808594 + ], + "min":[ + -127.4443359375, + 0, + -391.7374572753906 + ], + "type":"VEC3" + }, + { + "bufferView":364, + "componentType":5126, + "count":44, + "type":"VEC3" + }, + { + "bufferView":365, + "componentType":5126, + "count":44, + "type":"VEC2" + }, + { + "bufferView":366, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":367, + "componentType":5126, + "count":1020, + "max":[ + 831.5458984375, + 116.23333740234375, + 746.101806640625 + ], + "min":[ + -831.5458984375, + 5.7220458984375e-05, + -746.103271484375 + ], + "type":"VEC3" + }, + { + "bufferView":368, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":369, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":370, + "componentType":5123, + "count":1872, + "type":"SCALAR" + }, + { + "bufferView":371, + "componentType":5126, + "count":352, + "max":[ + 139.8673095703125, + 232.628662109375, + 138.35205078125 + ], + "min":[ + -139.8668212890625, + 0, + -138.3524169921875 + ], + "type":"VEC3" + }, + { + "bufferView":372, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":373, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":374, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":375, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":376, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":377, + "componentType":5126, + "count":54, + "max":[ + 217.04345703125, + 520.125, + 29.798828125 + ], + "min":[ + -217.03955078125, + 0, + -29.798828125 + ], + "type":"VEC3" + }, + { + "bufferView":378, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":379, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":380, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":381, + "componentType":5126, + "count":570, + "max":[ + 211.33865356445312, + 32.82498550415039, + 211.3397216796875 + ], + "min":[ + -211.34117126464844, + -9.918212890625e-05, + -211.3401336669922 + ], + "type":"VEC3" + }, + { + "bufferView":382, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":383, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":384, + "componentType":5126, + "count":112, + "max":[ + 1022.581298828125, + 429.54217529296875, + 214.7709503173828 + ], + "min":[ + -1022.5777587890625, + -3.0517578125e-05, + -214.77102661132812 + ], + "type":"VEC3" + }, + { + "bufferView":385, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":386, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":387, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":388, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":389, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":390, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":391, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":392, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":393, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":394, + "componentType":5126, + "count":24, + "max":[ + 1464.080078125, + 84.5, + 6748.66796875 + ], + "min":[ + -1464.080078125, + 0, + -6748.66796875 + ], + "type":"VEC3" + }, + { + "bufferView":395, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":396, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":397, + "componentType":5126, + "count":172, + "max":[ + 769.70751953125, + 113.19482421875, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.597412109375 + ], + "type":"VEC3" + }, + { + "bufferView":398, + "componentType":5126, + "count":172, + "type":"VEC3" + }, + { + "bufferView":399, + "componentType":5126, + "count":172, + "type":"VEC2" + }, + { + "bufferView":400, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":401, + "componentType":5126, + "count":815, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45752716064453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45630645751953 + ], + "type":"VEC3" + }, + { + "bufferView":402, + "componentType":5126, + "count":815, + "type":"VEC3" + }, + { + "bufferView":403, + "componentType":5126, + "count":815, + "type":"VEC2" + }, + { + "bufferView":404, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":405, + "componentType":5126, + "count":24, + "max":[ + 2811.599609375, + 186.5, + 1398.7598876953125 + ], + "min":[ + -2811.599365234375, + 0, + -1398.7598876953125 + ], + "type":"VEC3" + }, + { + "bufferView":406, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":407, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":408, + "componentType":5126, + "count":24, + "max":[ + 110.00007629394531, + 50, + 481.6465148925781 + ], + "min":[ + -110.00010681152344, + 0, + -481.6465148925781 + ], + "type":"VEC3" + }, + { + "bufferView":409, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":410, + "componentType":5126, + "count":24, + "max":[ + 703.126953125, + 50, + 253.74371337890625 + ], + "min":[ + -703.126953125, + 0, + -253.7421875 + ], + "type":"VEC3" + }, + { + "bufferView":411, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":412, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":413, + "componentType":5126, + "count":12, + "max":[ + 411.4619140625, + 388.941162109375, + 9.51611328125 + ], + "min":[ + -411.4638671875, + 0, + -9.5142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":414, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":415, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":416, + "componentType":5126, + "count":166, + "max":[ + 769.70751953125, + 113.19482421875, + 56.59765625 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.596923828125 + ], + "type":"VEC3" + }, + { + "bufferView":417, + "componentType":5126, + "count":166, + "type":"VEC3" + }, + { + "bufferView":418, + "componentType":5126, + "count":166, + "type":"VEC2" + }, + { + "bufferView":419, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":420, + "componentType":5126, + "count":48, + "max":[ + 142.31884765625, + 608.220703125, + 391.7376708984375 + ], + "min":[ + -142.32373046875, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":421, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":422, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":423, + "componentType":5126, + "count":564, + "max":[ + 191.89175415039062, + 123.23667907714844, + 199.9329376220703 + ], + "min":[ + -191.89332580566406, + 9.1552734375e-05, + -199.93301391601562 + ], + "type":"VEC3" + }, + { + "bufferView":424, + "componentType":5126, + "count":564, + "type":"VEC3" + }, + { + "bufferView":425, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":426, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 703.126953125 + ], + "min":[ + -110.00003814697266, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":427, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":428, + "componentType":5126, + "count":46, + "max":[ + 161.98095703125, + 658.67578125, + 366.15289306640625 + ], + "min":[ + -161.97900390625, + 0, + -366.1525573730469 + ], + "type":"VEC3" + }, + { + "bufferView":429, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":430, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":431, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":432, + "componentType":5126, + "count":122, + "max":[ + 25.642379760742188, + 106.52559661865234, + 14.454517364501953 + ], + "min":[ + -25.64236831665039, + 9.5367431640625e-05, + -14.454416275024414 + ], + "type":"VEC3" + }, + { + "bufferView":433, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":434, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":435, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":436, + "componentType":5126, + "count":8290, + "max":[ + 496.33447265625, + 427.025390625, + 103.78662109375 + ], + "min":[ + -496.334716796875, + 0, + -103.78662109375 + ], + "type":"VEC3" + }, + { + "bufferView":437, + "componentType":5126, + "count":8290, + "type":"VEC3" + }, + { + "bufferView":438, + "componentType":5126, + "count":8290, + "type":"VEC2" + }, + { + "bufferView":439, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":440, + "componentType":5126, + "count":4, + "max":[ + 698.884765625, + 2586.479248046875, + 0.0021792426705360413 + ], + "min":[ + -698.884765625, + 0, + 0.0017270073294639587 + ], + "type":"VEC3" + }, + { + "bufferView":441, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":442, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":443, + "componentType":5126, + "count":750, + "max":[ + 136.8177490234375, + 217.14332580566406, + 129.56024169921875 + ], + "min":[ + -136.75341796875, + 27.22211456298828, + -129.45626831054688 + ], + "type":"VEC3" + }, + { + "bufferView":444, + "componentType":5126, + "count":750, + "type":"VEC3" + }, + { + "bufferView":445, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":446, + "componentType":5126, + "count":1333, + "max":[ + 8.997684478759766, + 48.001407623291016, + 23.8692626953125 + ], + "min":[ + -8.997526168823242, + -0.00012969970703125, + -23.869312286376953 + ], + "type":"VEC3" + }, + { + "bufferView":447, + "componentType":5126, + "count":1333, + "type":"VEC3" + }, + { + "bufferView":448, + "componentType":5126, + "count":1333, + "type":"VEC2" + }, + { + "bufferView":449, + "componentType":5123, + "count":4860, + "type":"SCALAR" + }, + { + "bufferView":450, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.5859375 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":451, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":452, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":453, + "componentType":5126, + "count":574, + "max":[ + 197.12852478027344, + 203.781005859375, + 177.8787384033203 + ], + "min":[ + -197.13157653808594, + 1.37554931640625, + -165.5980682373047 + ], + "type":"VEC3" + }, + { + "bufferView":454, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":455, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":456, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":457, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":458, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":459, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":460, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":461, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":462, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4549560546875, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.00048828125, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":463, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":464, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":465, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":466, + "componentType":5126, + "count":51, + "max":[ + 161.98095703125, + 658.67578125, + 366.152587890625 + ], + "min":[ + -161.97900390625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":467, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":468, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":469, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":470, + "componentType":5126, + "count":566, + "max":[ + 153.68331909179688, + 32.8251953125, + 153.6849365234375 + ], + "min":[ + -153.6865997314453, + 3.814697265625e-05, + -153.68499755859375 + ], + "type":"VEC3" + }, + { + "bufferView":471, + "componentType":5126, + "count":566, + "type":"VEC3" + }, + { + "bufferView":472, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":473, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + 0.000118255615234375, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":474, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":475, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":476, + "componentType":5126, + "count":1333, + "max":[ + 8.997692108154297, + 48.001651763916016, + 23.86931610107422 + ], + "min":[ + -8.997540473937988, + 0.0001125335693359375, + -23.869264602661133 + ], + "type":"VEC3" + }, + { + "bufferView":477, + "componentType":5126, + "count":1333, + "type":"VEC3" + }, + { + "bufferView":478, + "componentType":5126, + "count":1333, + "type":"VEC2" + }, + { + "bufferView":479, + "componentType":5123, + "count":4860, + "type":"SCALAR" + }, + { + "bufferView":480, + "componentType":5126, + "count":234, + "max":[ + 115.35131072998047, + 317.20355224609375, + 160.49082946777344 + ], + "min":[ + -115.35123443603516, + -6.103515625e-05, + -159.17071533203125 + ], + "type":"VEC3" + }, + { + "bufferView":481, + "componentType":5126, + "count":234, + "type":"VEC3" + }, + { + "bufferView":482, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":483, + "componentType":5126, + "count":584, + "max":[ + 201.16368103027344, + 241.4158477783203, + 183.91001892089844 + ], + "min":[ + -201.16162109375, + 7.62939453125e-05, + -183.9104461669922 + ], + "type":"VEC3" + }, + { + "bufferView":484, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":485, + "componentType":5126, + "count":616, + "max":[ + 144.94680786132812, + 175.90158081054688, + 132.6536102294922 + ], + "min":[ + -144.95010375976562, + 0.0001068115234375, + -132.65301513671875 + ], + "type":"VEC3" + }, + { + "bufferView":486, + "componentType":5126, + "count":616, + "type":"VEC3" + }, + { + "bufferView":487, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":488, + "componentType":5126, + "count":586, + "max":[ + 207.89891052246094, + 213.0241241455078, + 181.06394958496094 + ], + "min":[ + -207.89772033691406, + -0.0001068115234375, + -181.06411743164062 + ], + "type":"VEC3" + }, + { + "bufferView":489, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":490, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":491, + "componentType":5126, + "count":24, + "max":[ + 110.00007629394531, + 50, + 481.6465148925781 + ], + "min":[ + -110.00010681152344, + 0, + -481.6465148925781 + ], + "type":"VEC3" + }, + { + "bufferView":492, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":493, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":494, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":495, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":496, + "componentType":5126, + "count":606, + "max":[ + 140.00314331054688, + 204.1534423828125, + 125.46487426757812 + ], + "min":[ + -147.21128845214844, + 29.814956665039062, + -137.3958740234375 + ], + "type":"VEC3" + }, + { + "bufferView":497, + "componentType":5126, + "count":606, + "type":"VEC3" + }, + { + "bufferView":498, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":499, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":500, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":501, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":502, + "componentType":5126, + "count":568, + "max":[ + 195.49488830566406, + 124.04578399658203, + 199.9328155517578 + ], + "min":[ + -188.29019165039062, + 0.8091659545898438, + -199.93313598632812 + ], + "type":"VEC3" + }, + { + "bufferView":503, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":504, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":505, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.585205078125 + ], + "min":[ + -46.284423828125, + 0, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":506, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":507, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":508, + "componentType":5126, + "count":594, + "max":[ + 181.71339416503906, + 187.2035675048828, + 158.3877716064453 + ], + "min":[ + -181.71473693847656, + -2.288818359375e-05, + -158.3878173828125 + ], + "type":"VEC3" + }, + { + "bufferView":509, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":510, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":511, + "componentType":5126, + "count":56, + "max":[ + 29.798583984375, + 520.125, + 217.041015625 + ], + "min":[ + -29.7984619140625, + 0, + -217.04150390625 + ], + "type":"VEC3" + }, + { + "bufferView":512, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":513, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":514, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":515, + "componentType":5126, + "count":564, + "max":[ + 204.45657348632812, + 32.82526779174805, + 204.45651245117188 + ], + "min":[ + -204.45677185058594, + 0.0001068115234375, + -204.45687866210938 + ], + "type":"VEC3" + }, + { + "bufferView":516, + "componentType":5126, + "count":564, + "type":"VEC3" + }, + { + "bufferView":517, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":518, + "componentType":5126, + "count":129, + "max":[ + 40.60595703125, + 81.2099609375, + 7759.267578125 + ], + "min":[ + -40.60791015625, + -0.0009765625, + -7759.267578125 + ], + "type":"VEC3" + }, + { + "bufferView":519, + "componentType":5126, + "count":129, + "type":"VEC3" + }, + { + "bufferView":520, + "componentType":5126, + "count":129, + "type":"VEC2" + }, + { + "bufferView":521, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":522, + "componentType":5126, + "count":92, + "max":[ + 22.05126953125, + 77.63671875, + 30.45068359375 + ], + "min":[ + -22.05078125, + -0.00048828125, + -30.449951171875 + ], + "type":"VEC3" + }, + { + "bufferView":523, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":524, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":525, + "componentType":5123, + "count":204, + "type":"SCALAR" + }, + { + "bufferView":526, + "componentType":5126, + "count":648, + "max":[ + 615.0107421875, + 2510.925048828125, + 347.265869140625 + ], + "min":[ + -615.01025390625, + 0, + -347.26611328125 + ], + "type":"VEC3" + }, + { + "bufferView":527, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":528, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":529, + "componentType":5123, + "count":972, + "type":"SCALAR" + }, + { + "bufferView":530, + "componentType":5126, + "count":114, + "max":[ + 24.3984375, + 122.798828125, + 61.587890625 + ], + "min":[ + -24.41015625, + -0.001251220703125, + -61.591796875 + ], + "type":"VEC3" + }, + { + "bufferView":531, + "componentType":5126, + "count":114, + "type":"VEC3" + }, + { + "bufferView":532, + "componentType":5126, + "count":114, + "type":"VEC2" + }, + { + "bufferView":533, + "componentType":5123, + "count":144, + "type":"SCALAR" + }, + { + "bufferView":534, + "componentType":5126, + "count":211, + "max":[ + 13.25390625, + 75.79581451416016, + 25.506591796875 + ], + "min":[ + -13.2509765625, + 0.00018272490706294775, + -25.49755859375 + ], + "type":"VEC3" + }, + { + "bufferView":535, + "componentType":5126, + "count":211, + "type":"VEC3" + }, + { + "bufferView":536, + "componentType":5126, + "count":211, + "type":"VEC2" + }, + { + "bufferView":537, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":538, + "componentType":5126, + "count":4, + "max":[ + 171.0078125, + 901.5741577148438, + 1.3779296875 + ], + "min":[ + -171.015625, + -0.00122833251953125, + -1.376953125 + ], + "type":"VEC3" + }, + { + "bufferView":539, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":540, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":541, + "componentType":5126, + "count":348, + "max":[ + 171.2998046875, + 184.80908203125, + 176.140380859375 + ], + "min":[ + -171.296875, + 44.4580078125, + -176.1416015625 + ], + "type":"VEC3" + }, + { + "bufferView":542, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":543, + "componentType":5126, + "count":348, + "type":"VEC2" + }, + { + "bufferView":544, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":545, + "componentType":5126, + "count":598, + "max":[ + 158.7805938720703, + 229.95777893066406, + 142.5860595703125 + ], + "min":[ + -165.98907470703125, + 33.735084533691406, + -154.51805114746094 + ], + "type":"VEC3" + }, + { + "bufferView":546, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":547, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":548, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":549, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":550, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":551, + "componentType":5126, + "count":52, + "max":[ + 238.478515625, + 483.89794921875, + 30.0009765625 + ], + "min":[ + -238.47998046875, + 0, + -30 + ], + "type":"VEC3" + }, + { + "bufferView":552, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":553, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":554, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":555, + "componentType":5126, + "count":112, + "max":[ + 317.90423583984375, + 230.814453125, + 317.9056396484375 + ], + "min":[ + -317.90423583984375, + 0, + -317.90277099609375 + ], + "type":"VEC3" + }, + { + "bufferView":556, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":557, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":558, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":559, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":560, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":561, + "componentType":5126, + "count":160, + "max":[ + 769.70751953125, + 113.19482421875, + 56.59619140625 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.59814453125 + ], + "type":"VEC3" + }, + { + "bufferView":562, + "componentType":5126, + "count":160, + "type":"VEC3" + }, + { + "bufferView":563, + "componentType":5126, + "count":160, + "type":"VEC2" + }, + { + "bufferView":564, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":565, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92938232421875, + 384.140625 + ], + "min":[ + -245.2333984375, + 0, + -384.1410827636719 + ], + "type":"VEC3" + }, + { + "bufferView":566, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":567, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":568, + "componentType":5123, + "count":2472, + "type":"SCALAR" + }, + { + "bufferView":569, + "componentType":5126, + "count":582, + "max":[ + 157.88787841796875, + 164.80230712890625, + 143.89556884765625 + ], + "min":[ + -157.89076232910156, + 1.0926666259765625, + -131.61434936523438 + ], + "type":"VEC3" + }, + { + "bufferView":570, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":571, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":572, + "componentType":5126, + "count":40, + "max":[ + 1.4143263101577759, + 10.51738452911377, + 5.258735656738281 + ], + "min":[ + -1.4143048524856567, + -9.012222290039062e-05, + -5.258738040924072 + ], + "type":"VEC3" + }, + { + "bufferView":573, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":574, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":575, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":576, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":577, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":578, + "componentType":5126, + "count":590, + "max":[ + 194.32896423339844, + 200.99668884277344, + 175.45120239257812 + ], + "min":[ + -194.32528686523438, + 1.355194091796875, + -163.1708526611328 + ], + "type":"VEC3" + }, + { + "bufferView":579, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":580, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":581, + "componentType":5126, + "count":232, + "max":[ + 174.40771484375, + 193.254638671875, + 169.062744140625 + ], + "min":[ + -174.408203125, + 0, + -169.06298828125 + ], + "type":"VEC3" + }, + { + "bufferView":582, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":583, + "componentType":5126, + "count":232, + "type":"VEC2" + }, + { + "bufferView":584, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":585, + "componentType":5126, + "count":24, + "max":[ + 29.8388671875, + 320.322265625, + 219.6552734375 + ], + "min":[ + -29.83935546875, + 0, + -219.65625 + ], + "type":"VEC3" + }, + { + "bufferView":586, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":587, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":588, + "componentType":5126, + "count":560, + "max":[ + 2596.00341796875, + 2045.5301513671875, + 2596.00341796875 + ], + "min":[ + -2596.00341796875, + 0, + -2596.00341796875 + ], + "type":"VEC3" + }, + { + "bufferView":589, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":590, + "componentType":5126, + "count":560, + "type":"VEC2" + }, + { + "bufferView":591, + "componentType":5123, + "count":1632, + "type":"SCALAR" + }, + { + "bufferView":592, + "componentType":5126, + "count":278, + "max":[ + 481.306884765625, + 1694.982421875, + 229.26123046875 + ], + "min":[ + -481.3037109375, + 0, + -229.2607421875 + ], + "type":"VEC3" + }, + { + "bufferView":593, + "componentType":5126, + "count":278, + "type":"VEC3" + }, + { + "bufferView":594, + "componentType":5126, + "count":278, + "type":"VEC2" + }, + { + "bufferView":595, + "componentType":5123, + "count":564, + "type":"SCALAR" + }, + { + "bufferView":596, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":597, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":598, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":599, + "componentType":5126, + "count":676, + "max":[ + 17.46044921875, + 2528.300048828125, + 1916.37353515625 + ], + "min":[ + -17.45947265625, + 0.0006103515625, + -1916.375732421875 + ], + "type":"VEC3" + }, + { + "bufferView":600, + "componentType":5126, + "count":676, + "type":"VEC3" + }, + { + "bufferView":601, + "componentType":5126, + "count":676, + "type":"VEC2" + }, + { + "bufferView":602, + "componentType":5123, + "count":1236, + "type":"SCALAR" + }, + { + "bufferView":603, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":604, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":605, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":606, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + 0.000118255615234375, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":607, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":608, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":609, + "componentType":5126, + "count":226, + "max":[ + 115.14118957519531, + 342.30987548828125, + 159.38644409179688 + ], + "min":[ + -115.14127349853516, + 24.731460571289062, + -160.72314453125 + ], + "type":"VEC3" + }, + { + "bufferView":610, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":611, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":612, + "componentType":5126, + "count":260, + "max":[ + 3.4517245292663574, + 18.945335388183594, + 9.472704887390137 + ], + "min":[ + -3.4518513679504395, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":613, + "componentType":5126, + "count":260, + "type":"VEC3" + }, + { + "bufferView":614, + "componentType":5126, + "count":260, + "type":"VEC2" + }, + { + "bufferView":615, + "componentType":5123, + "count":414, + "type":"SCALAR" + }, + { + "bufferView":616, + "componentType":5126, + "count":146, + "max":[ + 43.591796875, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":617, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":618, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":619, + "componentType":5126, + "count":648, + "max":[ + 615.01123046875, + 2510.92529296875, + 347.265625 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.26611328125 + ], + "type":"VEC3" + }, + { + "bufferView":620, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":621, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":622, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":623, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":624, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":625, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.14453125, + 360.8994140625 + ], + "min":[ + -8.345703125, + 0.000244140625, + -360.895263671875 + ], + "type":"VEC3" + }, + { + "bufferView":626, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":627, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":628, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":629, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":630, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":631, + "componentType":5126, + "count":582, + "max":[ + 197.86923217773438, + 237.57696533203125, + 180.9071044921875 + ], + "min":[ + -197.86849975585938, + -9.1552734375e-05, + -180.9066925048828 + ], + "type":"VEC3" + }, + { + "bufferView":632, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":633, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":634, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":635, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":636, + "componentType":5126, + "count":51, + "max":[ + 123.61328125, + 696.755859375, + 366.15264892578125 + ], + "min":[ + -123.615234375, + 0, + -366.15325927734375 + ], + "type":"VEC3" + }, + { + "bufferView":637, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":638, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":639, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":640, + "componentType":5126, + "count":347, + "max":[ + 170.9052734375, + 157.00341796875, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":641, + "componentType":5126, + "count":347, + "type":"VEC3" + }, + { + "bufferView":642, + "componentType":5126, + "count":347, + "type":"VEC2" + }, + { + "bufferView":643, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":644, + "componentType":5126, + "count":46, + "max":[ + 161.97900390625, + 658.67578125, + 366.15234375 + ], + "min":[ + -161.98095703125, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":645, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":646, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":647, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":648, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.07373046875 + ], + "type":"VEC3" + }, + { + "bufferView":649, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":650, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":651, + "componentType":5126, + "count":591, + "max":[ + 144.02774047851562, + 209.68280029296875, + 129.13369750976562 + ], + "min":[ + -151.23428344726562, + 30.65483856201172, + -141.06497192382812 + ], + "type":"VEC3" + }, + { + "bufferView":652, + "componentType":5126, + "count":591, + "type":"VEC3" + }, + { + "bufferView":653, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":654, + "componentType":5126, + "count":40, + "max":[ + 5.25871467590332, + 10.517534255981445, + 1.4143146276474 + ], + "min":[ + -5.258759021759033, + 6.008148193359375e-05, + -1.4143164157867432 + ], + "type":"VEC3" + }, + { + "bufferView":655, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":656, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":657, + "componentType":5126, + "count":24, + "max":[ + 584.662109375, + 50.00001525878906, + 110.00007629394531 + ], + "min":[ + -584.666015625, + -1.660953785176389e-05, + -110.0001220703125 + ], + "type":"VEC3" + }, + { + "bufferView":658, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":659, + "componentType":5126, + "count":582, + "max":[ + 154.33689880371094, + 186.84385681152344, + 141.21420288085938 + ], + "min":[ + -154.33767700195312, + 0.0001983642578125, + -141.2142333984375 + ], + "type":"VEC3" + }, + { + "bufferView":660, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":661, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":662, + "componentType":5126, + "count":12, + "max":[ + 8.345703125, + 341.1436767578125, + 360.897216796875 + ], + "min":[ + -8.345703125, + -0.0006103515625, + -360.8974609375 + ], + "type":"VEC3" + }, + { + "bufferView":663, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":664, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":665, + "componentType":5126, + "count":1022, + "max":[ + 125.22607421875, + 76.19921875, + 90.10888671875 + ], + "min":[ + -125.22607421875, + 0, + -90.10888671875 + ], + "type":"VEC3" + }, + { + "bufferView":666, + "componentType":5126, + "count":1022, + "type":"VEC3" + }, + { + "bufferView":667, + "componentType":5126, + "count":1022, + "type":"VEC2" + }, + { + "bufferView":668, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":669, + "componentType":5126, + "count":584, + "max":[ + 169.1017303466797, + 174.76547241210938, + 147.46453857421875 + ], + "min":[ + -169.10015869140625, + -0.00014495849609375, + -147.46450805664062 + ], + "type":"VEC3" + }, + { + "bufferView":670, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":671, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":672, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":673, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":674, + "componentType":5126, + "count":560, + "max":[ + 163.4947967529297, + 32.825321197509766, + 163.49508666992188 + ], + "min":[ + -163.4954833984375, + 1.52587890625e-05, + -163.49517822265625 + ], + "type":"VEC3" + }, + { + "bufferView":675, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":676, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":677, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.48486328125 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48492431640625 + ], + "type":"VEC3" + }, + { + "bufferView":678, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":679, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.9293212890625, + 90.004150390625 + ], + "min":[ + -433.1201171875, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":680, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":681, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":682, + "componentType":5123, + "count":2472, + "type":"SCALAR" + }, + { + "bufferView":683, + "componentType":5126, + "count":648, + "max":[ + 615.010986328125, + 2510.92529296875, + 347.26513671875 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.267333984375 + ], + "type":"VEC3" + }, + { + "bufferView":684, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":685, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":686, + "componentType":5126, + "count":333, + "max":[ + 171.2998046875, + 184.80712890625, + 176.140625 + ], + "min":[ + -171.296875, + 44.4580078125, + -176.1416015625 + ], + "type":"VEC3" + }, + { + "bufferView":687, + "componentType":5126, + "count":333, + "type":"VEC3" + }, + { + "bufferView":688, + "componentType":5126, + "count":333, + "type":"VEC2" + }, + { + "bufferView":689, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":690, + "componentType":5126, + "count":824, + "max":[ + 4.1328125, + 90.58740997314453, + 34.45752716064453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45630645751953 + ], + "type":"VEC3" + }, + { + "bufferView":691, + "componentType":5126, + "count":824, + "type":"VEC3" + }, + { + "bufferView":692, + "componentType":5126, + "count":824, + "type":"VEC2" + }, + { + "bufferView":693, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":694, + "componentType":5126, + "count":72, + "max":[ + 771.345458984375, + 1492.539794921875, + 22.500337600708008 + ], + "min":[ + -771.3455200195312, + 0, + -22.50017738342285 + ], + "type":"VEC3" + }, + { + "bufferView":695, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":696, + "componentType":5123, + "count":120, + "type":"SCALAR" + }, + { + "bufferView":697, + "componentType":5126, + "count":24, + "max":[ + 703.126953125, + 50, + 110 + ], + "min":[ + -703.126953125, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":698, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":699, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":700, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":701, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":702, + "componentType":5126, + "count":648, + "max":[ + 615.01123046875, + 2510.92529296875, + 347.265625 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.2666015625 + ], + "type":"VEC3" + }, + { + "bufferView":703, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":704, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":705, + "componentType":5126, + "count":136, + "max":[ + 80.153076171875, + 126.6884765625, + 49.03466796875 + ], + "min":[ + -80.153076171875, + 0, + -49.03564453125 + ], + "type":"VEC3" + }, + { + "bufferView":706, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":707, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":708, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":709, + "componentType":5126, + "count":571, + "max":[ + 181.1634521484375, + 218.10679626464844, + 165.6735382080078 + ], + "min":[ + -181.16151428222656, + 0, + -165.67401123046875 + ], + "type":"VEC3" + }, + { + "bufferView":710, + "componentType":5126, + "count":571, + "type":"VEC3" + }, + { + "bufferView":711, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":712, + "componentType":5126, + "count":24, + "max":[ + 13.6923828125, + 34.440673828125, + 2314.280517578125 + ], + "min":[ + -13.6923828125, + -6.103515625e-05, + -2314.28125 + ], + "type":"VEC3" + }, + { + "bufferView":713, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":714, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":715, + "componentType":5126, + "count":46, + "max":[ + 161.97705078125, + 658.67578125, + 366.15240478515625 + ], + "min":[ + -161.98291015625, + 0, + -366.1530456542969 + ], + "type":"VEC3" + }, + { + "bufferView":716, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":717, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":718, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":719, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":720, + "componentType":5126, + "count":48, + "max":[ + 142.32275390625, + 608.220703125, + 391.737548828125 + ], + "min":[ + -142.31982421875, + 0, + -391.737548828125 + ], + "type":"VEC3" + }, + { + "bufferView":721, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":722, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":723, + "componentType":5126, + "count":148, + "max":[ + 25.642379760742188, + 106.52584075927734, + 14.454212188720703 + ], + "min":[ + -25.64236068725586, + 2.288818359375e-05, + -14.453927993774414 + ], + "type":"VEC3" + }, + { + "bufferView":724, + "componentType":5126, + "count":148, + "type":"VEC3" + }, + { + "bufferView":725, + "componentType":5126, + "count":148, + "type":"VEC2" + }, + { + "bufferView":726, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":727, + "componentType":5126, + "count":1051, + "max":[ + 125.22607421875, + 76.19921875, + 90.1090087890625 + ], + "min":[ + -125.22607421875, + 0, + -90.109130859375 + ], + "type":"VEC3" + }, + { + "bufferView":728, + "componentType":5126, + "count":1051, + "type":"VEC3" + }, + { + "bufferView":729, + "componentType":5126, + "count":1051, + "type":"VEC2" + }, + { + "bufferView":730, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":731, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 703.126953125 + ], + "min":[ + -110.00003814697266, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":732, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":733, + "componentType":5126, + "count":112, + "max":[ + 147.98330688476562, + 402.91986083984375, + 170.07571411132812 + ], + "min":[ + -147.9810333251953, + 20.40802001953125, + -170.07498168945312 + ], + "type":"VEC3" + }, + { + "bufferView":734, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":735, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":736, + "componentType":5126, + "count":594, + "max":[ + 148.05227661132812, + 215.2120819091797, + 132.80218505859375 + ], + "min":[ + -155.25723266601562, + 31.4947509765625, + -144.73426818847656 + ], + "type":"VEC3" + }, + { + "bufferView":737, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":738, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":739, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":740, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":741, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":742, + "componentType":5126, + "count":548, + "max":[ + 7.779107093811035, + 21.312030792236328, + 10.655908584594727 + ], + "min":[ + -7.778767108917236, + 0.00021648406982421875, + -10.65590763092041 + ], + "type":"VEC3" + }, + { + "bufferView":743, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":744, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":745, + "componentType":5123, + "count":1524, + "type":"SCALAR" + }, + { + "bufferView":746, + "componentType":5126, + "count":224, + "max":[ + 118.72100067138672, + 272.6591796875, + 115.08638763427734 + ], + "min":[ + -118.72062683105469, + 42.48628234863281, + -115.08647155761719 + ], + "type":"VEC3" + }, + { + "bufferView":747, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":748, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":749, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":750, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":751, + "componentType":5126, + "count":230, + "max":[ + 115.35124206542969, + 317.20355224609375, + 159.17071533203125 + ], + "min":[ + -115.35128021240234, + -6.103515625e-05, + -160.49078369140625 + ], + "type":"VEC3" + }, + { + "bufferView":752, + "componentType":5126, + "count":230, + "type":"VEC3" + }, + { + "bufferView":753, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":754, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":755, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":756, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":757, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.07275390625 + ], + "min":[ + -27.193359375, + 0, + -126.07421875 + ], + "type":"VEC3" + }, + { + "bufferView":758, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":759, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":760, + "componentType":5126, + "count":648, + "max":[ + 615.01171875, + 2510.925048828125, + 347.26513671875 + ], + "min":[ + -615.01025390625, + 0, + -347.2666015625 + ], + "type":"VEC3" + }, + { + "bufferView":761, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":762, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":763, + "componentType":5126, + "count":600, + "max":[ + 152.2821502685547, + 32.8253059387207, + 152.28347778320312 + ], + "min":[ + -152.2848663330078, + 0.000152587890625, + -152.28353881835938 + ], + "type":"VEC3" + }, + { + "bufferView":764, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":765, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":766, + "componentType":5126, + "count":535, + "max":[ + 241.77294921875, + 751.646484375, + 774.029296875 + ], + "min":[ + -241.77197265625, + -0.000732421875, + -774.02783203125 + ], + "type":"VEC3" + }, + { + "bufferView":767, + "componentType":5126, + "count":535, + "type":"VEC3" + }, + { + "bufferView":768, + "componentType":5126, + "count":535, + "type":"VEC2" + }, + { + "bufferView":769, + "componentType":5123, + "count":1176, + "type":"SCALAR" + }, + { + "bufferView":770, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":771, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":772, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":773, + "componentType":5126, + "count":346, + "max":[ + 115.35118865966797, + 212.38772583007812, + 68.44580078125 + ], + "min":[ + -115.35128021240234, + 0.9673385620117188, + -68.44600677490234 + ], + "type":"VEC3" + }, + { + "bufferView":774, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":775, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":776, + "componentType":5126, + "count":342, + "max":[ + 170.4345703125, + 188.55615234375, + 176.20361328125 + ], + "min":[ + -170.4345703125, + 45.29638671875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":777, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":778, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":779, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":780, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.455322265625, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.000732421875, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":781, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":782, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":783, + "componentType":5126, + "count":224, + "max":[ + 118.72061157226562, + 230.70252990722656, + 115.3511962890625 + ], + "min":[ + -118.72098541259766, + 1.52587890625e-05, + -115.35124969482422 + ], + "type":"VEC3" + }, + { + "bufferView":784, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":785, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":786, + "componentType":5126, + "count":71, + "max":[ + 3.7875030040740967, + 13.413309097290039, + 4.245893955230713 + ], + "min":[ + -3.7875640392303467, + 0.000110626220703125, + -4.245933532714844 + ], + "type":"VEC3" + }, + { + "bufferView":787, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":788, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":789, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":790, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":791, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":792, + "componentType":5126, + "count":40, + "max":[ + 5.25871467590332, + 10.51738452911377, + 1.4143146276474 + ], + "min":[ + -5.258759021759033, + -9.012222290039062e-05, + -1.4143164157867432 + ], + "type":"VEC3" + }, + { + "bufferView":793, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":794, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":795, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":796, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":797, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":798, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.585205078125 + ], + "min":[ + -46.284423828125, + 0, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":799, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":800, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":801, + "componentType":5126, + "count":92, + "max":[ + 69.570068359375, + 141.0703125, + 824.2412109375 + ], + "min":[ + -69.5697021484375, + 0, + -824.24072265625 + ], + "type":"VEC3" + }, + { + "bufferView":802, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":803, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":804, + "componentType":5123, + "count":204, + "type":"SCALAR" + }, + { + "bufferView":805, + "componentType":5126, + "count":325, + "max":[ + 170.9033203125, + 157.003173828125, + 177.25439453125 + ], + "min":[ + -170.90625, + 21.2880859375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":806, + "componentType":5126, + "count":325, + "type":"VEC3" + }, + { + "bufferView":807, + "componentType":5126, + "count":325, + "type":"VEC2" + }, + { + "bufferView":808, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":809, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":810, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":811, + "componentType":5126, + "count":588, + "max":[ + 202.73544311523438, + 32.82524108886719, + 202.7357177734375 + ], + "min":[ + -202.73629760742188, + 9.918212890625e-05, + -202.73605346679688 + ], + "type":"VEC3" + }, + { + "bufferView":812, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":813, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":814, + "componentType":5126, + "count":1045, + "max":[ + 125.224609375, + 76.1982421875, + 90.109375 + ], + "min":[ + -125.2275390625, + -0.0009765625, + -90.10888671875 + ], + "type":"VEC3" + }, + { + "bufferView":815, + "componentType":5126, + "count":1045, + "type":"VEC3" + }, + { + "bufferView":816, + "componentType":5126, + "count":1045, + "type":"VEC2" + }, + { + "bufferView":817, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":818, + "componentType":5126, + "count":1420, + "max":[ + 245.232421875, + 367.92938232421875, + 384.1391906738281 + ], + "min":[ + -245.234375, + 0.0001068115234375, + -384.1406555175781 + ], + "type":"VEC3" + }, + { + "bufferView":819, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":820, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":821, + "componentType":5123, + "count":2472, + "type":"SCALAR" + }, + { + "bufferView":822, + "componentType":5126, + "count":588, + "max":[ + 142.26708984375, + 172.77529907226562, + 130.2074432373047 + ], + "min":[ + -142.26475524902344, + 3.0517578125e-05, + -130.20741271972656 + ], + "type":"VEC3" + }, + { + "bufferView":823, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":824, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":825, + "componentType":5126, + "count":2703, + "max":[ + 128.19970703125, + 421.52587890625, + 128.19921875 + ], + "min":[ + -128.19921875, + 0, + -128.19873046875 + ], + "type":"VEC3" + }, + { + "bufferView":826, + "componentType":5126, + "count":2703, + "type":"VEC3" + }, + { + "bufferView":827, + "componentType":5126, + "count":2703, + "type":"VEC2" + }, + { + "bufferView":828, + "componentType":5126, + "count":339, + "max":[ + 171.298828125, + 184.806640625, + 176.141845703125 + ], + "min":[ + -171.296875, + 44.45703125, + -176.14013671875 + ], + "type":"VEC3" + }, + { + "bufferView":829, + "componentType":5126, + "count":339, + "type":"VEC3" + }, + { + "bufferView":830, + "componentType":5126, + "count":339, + "type":"VEC2" + }, + { + "bufferView":831, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":832, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":833, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":834, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":835, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":836, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":837, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":838, + "componentType":5126, + "count":597, + "max":[ + 150.3123321533203, + 182.15432739257812, + 137.5451202392578 + ], + "min":[ + -150.3146514892578, + 0.0001373291015625, + -137.54542541503906 + ], + "type":"VEC3" + }, + { + "bufferView":839, + "componentType":5126, + "count":597, + "type":"VEC3" + }, + { + "bufferView":840, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":841, + "componentType":5126, + "count":570, + "max":[ + 153.6865997314453, + 160.6261444091797, + 140.25448608398438 + ], + "min":[ + -153.68331909179688, + 1.062591552734375, + -127.97328186035156 + ], + "type":"VEC3" + }, + { + "bufferView":842, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":843, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":844, + "componentType":5126, + "count":54, + "max":[ + 217.04150390625, + 520.125, + 29.798828125 + ], + "min":[ + -217.04150390625, + 0, + -29.798828125 + ], + "type":"VEC3" + }, + { + "bufferView":845, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":846, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":847, + "componentType":5126, + "count":112, + "max":[ + 407.1002502441406, + 295.57421875, + 407.10205078125 + ], + "min":[ + -407.1002502441406, + 0, + -407.0983581542969 + ], + "type":"VEC3" + }, + { + "bufferView":848, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":849, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":850, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":851, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":852, + "componentType":5126, + "count":139, + "max":[ + 80.153076171875, + 126.6884765625, + 49.03515625 + ], + "min":[ + -80.153076171875, + 0, + -49.03515625 + ], + "type":"VEC3" + }, + { + "bufferView":853, + "componentType":5126, + "count":139, + "type":"VEC3" + }, + { + "bufferView":854, + "componentType":5126, + "count":139, + "type":"VEC2" + }, + { + "bufferView":855, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":856, + "componentType":5126, + "count":648, + "max":[ + 615.011474609375, + 2510.92529296875, + 347.265625 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.26611328125 + ], + "type":"VEC3" + }, + { + "bufferView":857, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":858, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":859, + "componentType":5126, + "count":583, + "max":[ + 178.48040771484375, + 214.98049926757812, + 163.22799682617188 + ], + "min":[ + -178.4795379638672, + 0, + -163.22769165039062 + ], + "type":"VEC3" + }, + { + "bufferView":860, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":861, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":862, + "componentType":5126, + "count":560, + "max":[ + 147.62930297851562, + 101.31221008300781, + 153.6849365234375 + ], + "min":[ + -147.63272094726562, + -4.57763671875e-05, + -153.68499755859375 + ], + "type":"VEC3" + }, + { + "bufferView":863, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":864, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":865, + "componentType":5126, + "count":118, + "max":[ + 31.293121337890625, + 15.510947227478027, + 6.503257751464844 + ], + "min":[ + -31.29315185546875, + -2.09808349609375e-05, + -6.5023345947265625 + ], + "type":"VEC3" + }, + { + "bufferView":866, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":867, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":868, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":869, + "componentType":5126, + "count":582, + "max":[ + 180.7439727783203, + 116.12036895751953, + 184.51686096191406 + ], + "min":[ + -173.53343200683594, + 0.7449569702148438, + -184.51707458496094 + ], + "type":"VEC3" + }, + { + "bufferView":870, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":871, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":872, + "componentType":5126, + "count":40, + "max":[ + 1.4143146276474, + 10.51738452911377, + 5.258759021759033 + ], + "min":[ + -1.4143165349960327, + -9.012222290039062e-05, + -5.25871467590332 + ], + "type":"VEC3" + }, + { + "bufferView":873, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":874, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":875, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":876, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":877, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":878, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":879, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":880, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":881, + "componentType":5126, + "count":578, + "max":[ + 195.72679138183594, + 202.38870239257812, + 176.66485595703125 + ], + "min":[ + -195.7303924560547, + 1.3652420043945312, + -164.384521484375 + ], + "type":"VEC3" + }, + { + "bufferView":882, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":883, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":884, + "componentType":5126, + "count":24, + "max":[ + 83.760986328125, + 276.109375, + 88.3433837890625 + ], + "min":[ + -83.76171875, + 0, + -88.34423828125 + ], + "type":"VEC3" + }, + { + "bufferView":885, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":886, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":887, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":888, + "componentType":5126, + "count":122, + "max":[ + 20.428955078125, + 104.244140625, + 52.123046875 + ], + "min":[ + -20.4296875, + 0, + -52.1240234375 + ], + "type":"VEC3" + }, + { + "bufferView":889, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":890, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":891, + "componentType":5126, + "count":240, + "max":[ + 34788, + 60, + 31076 + ], + "min":[ + -34788, + 0, + -31076 + ], + "type":"VEC3" + }, + { + "bufferView":892, + "componentType":5126, + "count":240, + "type":"VEC3" + }, + { + "bufferView":893, + "componentType":5126, + "count":240, + "type":"VEC2" + }, + { + "bufferView":894, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":895, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":896, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":897, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":898, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":899, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":900, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":901, + "componentType":5126, + "count":24, + "max":[ + 41.68190002441406, + 254.887939453125, + 700.27099609375 + ], + "min":[ + -41.6810188293457, + 0.0001220703125, + -700.27099609375 + ], + "type":"VEC3" + }, + { + "bufferView":902, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":903, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":904, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":905, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":906, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":907, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":908, + "componentType":5126, + "count":112, + "max":[ + 89.99891662597656, + 13549.5224609375, + 89.99931335449219 + ], + "min":[ + -89.99891662597656, + -0.0009765625, + -89.99845886230469 + ], + "type":"VEC3" + }, + { + "bufferView":909, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":910, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":911, + "componentType":5126, + "count":1660, + "max":[ + 433.119140625, + 367.929443359375, + 90.005859375 + ], + "min":[ + -433.12109375, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":912, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":913, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":914, + "componentType":5123, + "count":2472, + "type":"SCALAR" + }, + { + "bufferView":915, + "componentType":5126, + "count":72, + "max":[ + 771.3447875976562, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.34619140625, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":916, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":917, + "componentType":5123, + "count":120, + "type":"SCALAR" + }, + { + "bufferView":918, + "componentType":5126, + "count":96, + "max":[ + 599.998046875, + 143.7607421875, + 3331.830078125 + ], + "min":[ + -600.0001220703125, + -1.52587890625e-05, + -3331.830810546875 + ], + "type":"VEC3" + }, + { + "bufferView":919, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":920, + "componentType":5123, + "count":192, + "type":"SCALAR" + }, + { + "bufferView":921, + "componentType":5126, + "count":204, + "max":[ + 331.7550048828125, + 5428.318359375, + 901.4443969726562 + ], + "min":[ + -331.75506591796875, + 0.000244140625, + -901.44482421875 + ], + "type":"VEC3" + }, + { + "bufferView":922, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":923, + "componentType":5123, + "count":1068, + "type":"SCALAR" + }, + { + "bufferView":924, + "componentType":5126, + "count":618, + "max":[ + 56.7008056640625, + 172.07470703125, + 23.860042572021484 + ], + "min":[ + -56.70075988769531, + 5.340576171875e-05, + -23.860008239746094 + ], + "type":"VEC3" + }, + { + "bufferView":925, + "componentType":5126, + "count":618, + "type":"VEC3" + }, + { + "bufferView":926, + "componentType":5126, + "count":618, + "type":"VEC2" + }, + { + "bufferView":927, + "componentType":5123, + "count":1806, + "type":"SCALAR" + }, + { + "bufferView":928, + "componentType":5126, + "count":1420, + "max":[ + 245.232421875, + 367.92938232421875, + 384.1406555175781 + ], + "min":[ + -245.234375, + 0.0001068115234375, + -384.1396789550781 + ], + "type":"VEC3" + }, + { + "bufferView":929, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":930, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":931, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.143798828125, + 360.897216796875 + ], + "min":[ + -8.345703125, + -0.00048828125, + -360.8974609375 + ], + "type":"VEC3" + }, + { + "bufferView":932, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":933, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":934, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":935, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":936, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":937, + "componentType":5126, + "count":332, + "max":[ + 170.9052734375, + 157.000244140625, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":938, + "componentType":5126, + "count":332, + "type":"VEC3" + }, + { + "bufferView":939, + "componentType":5126, + "count":332, + "type":"VEC2" + }, + { + "bufferView":940, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":941, + "componentType":5126, + "count":342, + "max":[ + 115.14122009277344, + 235.95401000976562, + 69.1163330078125 + ], + "min":[ + -115.14122009277344, + 25.712661743164062, + -69.11627197265625 + ], + "type":"VEC3" + }, + { + "bufferView":942, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":943, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":944, + "componentType":5126, + "count":323, + "max":[ + 3.8607020378112793, + 15.442765235900879, + 7.72133207321167 + ], + "min":[ + -3.8606443405151367, + 8.296966552734375e-05, + -7.721349239349365 + ], + "type":"VEC3" + }, + { + "bufferView":945, + "componentType":5126, + "count":323, + "type":"VEC3" + }, + { + "bufferView":946, + "componentType":5126, + "count":323, + "type":"VEC2" + }, + { + "bufferView":947, + "componentType":5123, + "count":540, + "type":"SCALAR" + }, + { + "bufferView":948, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28369140625 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":949, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":950, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":951, + "componentType":5126, + "count":528, + "max":[ + 722.724609375, + 2637.3974609375, + 19.80198860168457 + ], + "min":[ + -722.720703125, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":952, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":953, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":954, + "componentType":5123, + "count":864, + "type":"SCALAR" + }, + { + "bufferView":955, + "componentType":5126, + "count":578, + "max":[ + 162.80516052246094, + 235.48712158203125, + 146.25491333007812 + ], + "min":[ + -170.01210021972656, + 34.57499694824219, + -158.18710327148438 + ], + "type":"VEC3" + }, + { + "bufferView":956, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":957, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":958, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.5859375 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":959, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":960, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":961, + "componentType":5126, + "count":24, + "max":[ + 350, + 1016.5, + 350 + ], + "min":[ + -350, + 0, + -350 + ], + "type":"VEC3" + }, + { + "bufferView":962, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":963, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":964, + "componentType":5126, + "count":142, + "max":[ + 3.4518332481384277, + 18.94533348083496, + 9.472701072692871 + ], + "min":[ + -3.451733350753784, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":965, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":966, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":967, + "componentType":5123, + "count":414, + "type":"SCALAR" + }, + { + "bufferView":968, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.455810546875, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":969, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":970, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":971, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":972, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":973, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":974, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":975, + "componentType":5126, + "count":588, + "max":[ + 196.2220001220703, + 235.65760803222656, + 179.40536499023438 + ], + "min":[ + -196.22190856933594, + -6.103515625e-05, + -179.40505981445312 + ], + "type":"VEC3" + }, + { + "bufferView":976, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":977, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":978, + "componentType":5126, + "count":334, + "max":[ + 170.90625, + 157.00146484375, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.2880859375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":979, + "componentType":5126, + "count":334, + "type":"VEC3" + }, + { + "bufferView":980, + "componentType":5126, + "count":334, + "type":"VEC2" + }, + { + "bufferView":981, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":982, + "componentType":5126, + "count":326, + "max":[ + 170.90625, + 157.0029296875, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.2890625, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":983, + "componentType":5126, + "count":326, + "type":"VEC3" + }, + { + "bufferView":984, + "componentType":5126, + "count":326, + "type":"VEC2" + }, + { + "bufferView":985, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":986, + "componentType":5126, + "count":548, + "max":[ + 10.65591049194336, + 21.311786651611328, + 7.779110908508301 + ], + "min":[ + -10.65591049194336, + -2.956390380859375e-05, + -7.778773307800293 + ], + "type":"VEC3" + }, + { + "bufferView":987, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":988, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":989, + "componentType":5123, + "count":1524, + "type":"SCALAR" + }, + { + "bufferView":990, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":991, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":992, + "componentType":5126, + "count":228, + "max":[ + 105.79638671875, + 2059.5048828125, + 105.8004150390625 + ], + "min":[ + -105.798828125, + 0, + -105.7989501953125 + ], + "type":"VEC3" + }, + { + "bufferView":993, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":994, + "componentType":5126, + "count":228, + "type":"VEC2" + }, + { + "bufferView":995, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":996, + "componentType":5126, + "count":217, + "max":[ + 33.4022216796875, + 133.60888671875, + 66.80419921875 + ], + "min":[ + -33.4022216796875, + 0, + -66.80419921875 + ], + "type":"VEC3" + }, + { + "bufferView":997, + "componentType":5126, + "count":217, + "type":"VEC3" + }, + { + "bufferView":998, + "componentType":5126, + "count":217, + "type":"VEC2" + }, + { + "bufferView":999, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":1000, + "componentType":5126, + "count":573, + "max":[ + 171.7727813720703, + 207.16458129882812, + 157.11294555664062 + ], + "min":[ + -171.77452087402344, + -9.1552734375e-05, + -157.1129608154297 + ], + "type":"VEC3" + }, + { + "bufferView":1001, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":1002, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1003, + "componentType":5126, + "count":615, + "max":[ + 144.9501190185547, + 175.90155029296875, + 132.6533966064453 + ], + "min":[ + -144.9468231201172, + 0.0001678466796875, + -132.65335083007812 + ], + "type":"VEC3" + }, + { + "bufferView":1004, + "componentType":5126, + "count":615, + "type":"VEC3" + }, + { + "bufferView":1005, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1006, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.48492431640625 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48486328125 + ], + "type":"VEC3" + }, + { + "bufferView":1007, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":1008, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":1009, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":1010, + "componentType":5126, + "count":159, + "max":[ + 769.70751953125, + 113.194580078125, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0, + -56.597412109375 + ], + "type":"VEC3" + }, + { + "bufferView":1011, + "componentType":5126, + "count":159, + "type":"VEC3" + }, + { + "bufferView":1012, + "componentType":5126, + "count":159, + "type":"VEC2" + }, + { + "bufferView":1013, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":1014, + "componentType":5126, + "count":801, + "max":[ + 4.1328125, + 90.58740997314453, + 34.45752716064453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45630645751953 + ], + "type":"VEC3" + }, + { + "bufferView":1015, + "componentType":5126, + "count":801, + "type":"VEC3" + }, + { + "bufferView":1016, + "componentType":5126, + "count":801, + "type":"VEC2" + }, + { + "bufferView":1017, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":1018, + "componentType":5126, + "count":72, + "max":[ + 771.345458984375, + 1492.539794921875, + 22.500337600708008 + ], + "min":[ + -771.3455200195312, + 0, + -22.50017738342285 + ], + "type":"VEC3" + }, + { + "bufferView":1019, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":1020, + "componentType":5126, + "count":576, + "max":[ + 184.51686096191406, + 189.9676055908203, + 160.81515502929688 + ], + "min":[ + -184.51705932617188, + 6.103515625e-05, + -160.81521606445312 + ], + "type":"VEC3" + }, + { + "bufferView":1021, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":1022, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1023, + "componentType":5126, + "count":24, + "max":[ + 703.126953125, + 50, + 110 + ], + "min":[ + -703.126953125, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":1024, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1025, + "componentType":5126, + "count":584, + "max":[ + 198.18081665039062, + 125.66043090820312, + 202.7357177734375 + ], + "min":[ + -190.9693145751953, + 0.8210678100585938, + -202.73605346679688 + ], + "type":"VEC3" + }, + { + "bufferView":1026, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":1027, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1028, + "componentType":5126, + "count":48, + "max":[ + 142.31884765625, + 608.220703125, + 391.7373046875 + ], + "min":[ + -142.32373046875, + 0, + -391.73779296875 + ], + "type":"VEC3" + }, + { + "bufferView":1029, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":1030, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":1031, + "componentType":5126, + "count":584, + "max":[ + 170.50135803222656, + 177.3312530517578, + 142.53761291503906 + ], + "min":[ + -170.50344848632812, + 1.1837387084960938, + -154.8188934326172 + ], + "type":"VEC3" + }, + { + "bufferView":1032, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":1033, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1034, + "componentType":5126, + "count":24, + "max":[ + 13.692138671875, + 40.78076171875, + 2279.095458984375 + ], + "min":[ + -13.692626953125, + 0, + -2279.095703125 + ], + "type":"VEC3" + }, + { + "bufferView":1035, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1036, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1037, + "componentType":5126, + "count":136, + "max":[ + 824.2421875, + 156.626220703125, + 69.5703125 + ], + "min":[ + -824.24169921875, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":1038, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":1039, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":1040, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":1041, + "componentType":5126, + "count":336, + "max":[ + 115.14120483398438, + 230.28253173828125, + 13.560859680175781 + ], + "min":[ + -115.14124298095703, + 8.392333984375e-05, + -13.560562133789062 + ], + "type":"VEC3" + }, + { + "bufferView":1042, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":1043, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":1044, + "componentType":5126, + "count":580, + "max":[ + 195.72679138183594, + 201.02346801757812, + 170.52468872070312 + ], + "min":[ + -195.7303924560547, + -1.52587890625e-05, + -170.52474975585938 + ], + "type":"VEC3" + }, + { + "bufferView":1045, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":1046, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1047, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28369140625 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":1048, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":1049, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":1050, + "componentType":5126, + "count":51, + "max":[ + 161.98095703125, + 658.67578125, + 366.153076171875 + ], + "min":[ + -161.97900390625, + 0, + -366.15234375 + ], + "type":"VEC3" + }, + { + "bufferView":1051, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":1052, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":1053, + "componentType":5126, + "count":24, + "max":[ + 22.129398345947266, + 728.916259765625, + 187.00445556640625 + ], + "min":[ + -22.129379272460938, + 0.0001220703125, + -187.00550842285156 + ], + "type":"VEC3" + }, + { + "bufferView":1054, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1055, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1056, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":1057, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92938232421875, + 384.1391906738281 + ], + "min":[ + -245.232421875, + 0.0001068115234375, + -384.1406555175781 + ], + "type":"VEC3" + }, + { + "bufferView":1058, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":1059, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":1060, + "componentType":5123, + "count":2472, + "type":"SCALAR" + }, + { + "bufferView":1061, + "componentType":5126, + "count":577, + "max":[ + 170.4312744140625, + 112.17939758300781, + 177.5095977783203 + ], + "min":[ + -170.43348693847656, + 0.0001983642578125, + -177.5098114013672 + ], + "type":"VEC3" + }, + { + "bufferView":1062, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":1063, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1064, + "componentType":5126, + "count":568, + "max":[ + 148.07968139648438, + 32.825321197509766, + 148.07913208007812 + ], + "min":[ + -148.07859802246094, + 0.00012969970703125, + -148.0791473388672 + ], + "type":"VEC3" + }, + { + "bufferView":1065, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":1066, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1067, + "componentType":5126, + "count":72, + "max":[ + 771.3452758789062, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.345703125, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":1068, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":1069, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":1070, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":1071, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":1072, + "componentType":5126, + "count":142, + "max":[ + 3.4518332481384277, + 18.94533348083496, + 9.472701072692871 + ], + "min":[ + -3.451733350753784, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":1073, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":1074, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":1075, + "componentType":5126, + "count":76, + "max":[ + 278.8669738769531, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8664245605469, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":1076, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":1077, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":1078, + "componentType":5123, + "count":156, + "type":"SCALAR" + }, + { + "bufferView":1079, + "componentType":5126, + "count":586, + "max":[ + 170.50344848632812, + 177.3312530517578, + 154.81838989257812 + ], + "min":[ + -170.50135803222656, + 1.1837539672851562, + -142.53807067871094 + ], + "type":"VEC3" + }, + { + "bufferView":1080, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":1081, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1082, + "componentType":5126, + "count":352, + "max":[ + 131.3284912109375, + 224.240234375, + 138.18701171875 + ], + "min":[ + -131.32923889160156, + 3.361572265625, + -138.1864013671875 + ], + "type":"VEC3" + }, + { + "bufferView":1083, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":1084, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":1085, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.07373046875 + ], + "type":"VEC3" + }, + { + "bufferView":1086, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1087, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1088, + "componentType":5126, + "count":186, + "max":[ + 769.70947265625, + 113.194580078125, + 56.5966796875 + ], + "min":[ + -769.7080078125, + 6.103515625e-05, + -56.59765625 + ], + "type":"VEC3" + }, + { + "bufferView":1089, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":1090, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":1091, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":1092, + "componentType":5126, + "count":573, + "max":[ + 150.88096618652344, + 32.8253059387207, + 150.8820343017578 + ], + "min":[ + -150.8831329345703, + 3.814697265625e-05, + -150.882080078125 + ], + "type":"VEC3" + }, + { + "bufferView":1093, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":1094, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1095, + "componentType":5126, + "count":528, + "max":[ + 722.72265625, + 2637.397705078125, + 19.80198860168457 + ], + "min":[ + -722.72265625, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":1096, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":1097, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":1098, + "componentType":5126, + "count":143, + "max":[ + 28.8017578125, + 913.683349609375, + 27.66552734375 + ], + "min":[ + -28.80126953125, + 0, + -27.6650390625 + ], + "type":"VEC3" + }, + { + "bufferView":1099, + "componentType":5126, + "count":143, + "type":"VEC3" + }, + { + "bufferView":1100, + "componentType":5126, + "count":143, + "type":"VEC2" + }, + { + "bufferView":1101, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":1102, + "componentType":5126, + "count":234, + "max":[ + 115.35121154785156, + 317.20355224609375, + 159.83065795898438 + ], + "min":[ + -115.35128021240234, + -7.62939453125e-05, + -159.8308563232422 + ], + "type":"VEC3" + }, + { + "bufferView":1103, + "componentType":5126, + "count":234, + "type":"VEC3" + }, + { + "bufferView":1104, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":1105, + "componentType":5126, + "count":342, + "max":[ + 170.435546875, + 188.55615234375, + 176.20361328125 + ], + "min":[ + -170.43359375, + 45.29638671875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":1106, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":1107, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":1108, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":1109, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":1110, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1111, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1112, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":1113, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1114, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1115, + "componentType":5126, + "count":593, + "max":[ + 155.6787109375, + 188.40707397460938, + 142.4371337890625 + ], + "min":[ + -155.6784210205078, + 0.0001373291015625, + -142.4370880126953 + ], + "type":"VEC3" + }, + { + "bufferView":1116, + "componentType":5126, + "count":593, + "type":"VEC3" + }, + { + "bufferView":1117, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1118, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":1119, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1120, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1121, + "componentType":5126, + "count":132, + "max":[ + 80.153076171875, + 126.6884765625, + 49.03515625 + ], + "min":[ + -80.153076171875, + 0, + -49.03515625 + ], + "type":"VEC3" + }, + { + "bufferView":1122, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":1123, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":1124, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":1125, + "componentType":5126, + "count":88, + "max":[ + 50.1396484375, + 105.89306640625, + 891.34228515625 + ], + "min":[ + -50.139892578125, + 0, + -891.34228515625 + ], + "type":"VEC3" + }, + { + "bufferView":1126, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":1127, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":1128, + "componentType":5123, + "count":180, + "type":"SCALAR" + }, + { + "bufferView":1129, + "componentType":5126, + "count":296, + "max":[ + 18.198514938354492, + 36.3969841003418, + 1.9772131443023682 + ], + "min":[ + -18.19847297668457, + -7.62939453125e-06, + -1.9772028923034668 + ], + "type":"VEC3" + }, + { + "bufferView":1130, + "componentType":5126, + "count":296, + "type":"VEC3" + }, + { + "bufferView":1131, + "componentType":5126, + "count":296, + "type":"VEC2" + }, + { + "bufferView":1132, + "componentType":5123, + "count":1440, + "type":"SCALAR" + }, + { + "bufferView":1133, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1134, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1135, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1136, + "componentType":5126, + "count":171, + "max":[ + 769.70751953125, + 113.19482421875, + 56.596923828125 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.59765625 + ], + "type":"VEC3" + }, + { + "bufferView":1137, + "componentType":5126, + "count":171, + "type":"VEC3" + }, + { + "bufferView":1138, + "componentType":5126, + "count":171, + "type":"VEC2" + }, + { + "bufferView":1139, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":1140, + "componentType":5126, + "count":50, + "max":[ + 391.7373046875, + 608.220703125, + 142.32275390625 + ], + "min":[ + -391.73779296875, + 0, + -142.31982421875 + ], + "type":"VEC3" + }, + { + "bufferView":1141, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":1142, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":1143, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":1144, + "componentType":5126, + "count":331, + "max":[ + 170.9052734375, + 157, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.288818359375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":1145, + "componentType":5126, + "count":331, + "type":"VEC3" + }, + { + "bufferView":1146, + "componentType":5126, + "count":331, + "type":"VEC2" + }, + { + "bufferView":1147, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":1148, + "componentType":5126, + "count":591, + "max":[ + 170.85037231445312, + 246.5458984375, + 153.593017578125 + ], + "min":[ + -178.06201171875, + 36.254791259765625, + -165.5247344970703 + ], + "type":"VEC3" + }, + { + "bufferView":1149, + "componentType":5126, + "count":591, + "type":"VEC3" + }, + { + "bufferView":1150, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1151, + "componentType":5126, + "count":584, + "max":[ + 169.1017303466797, + 174.76547241210938, + 147.46453857421875 + ], + "min":[ + -169.10015869140625, + -0.00014495849609375, + -147.46450805664062 + ], + "type":"VEC3" + }, + { + "bufferView":1152, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":1153, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":1154, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":1155, + "componentType":5126, + "count":582, + "max":[ + 201.33372497558594, + 32.82526779174805, + 201.33425903320312 + ], + "min":[ + -201.3351287841797, + 9.1552734375e-05, + -201.33462524414062 + ], + "type":"VEC3" + }, + { + "bufferView":1156, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":1157, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1158, + "componentType":5126, + "count":24, + "max":[ + 83.761474609375, + 276.109375, + 88.3427734375 + ], + "min":[ + -83.761474609375, + 0, + -88.34375 + ], + "type":"VEC3" + }, + { + "bufferView":1159, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1160, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1161, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1162, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1163, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1164, + "componentType":5126, + "count":72, + "max":[ + 2400.223876953125, + 793.4286499023438, + 1981.32177734375 + ], + "min":[ + -2400.22607421875, + 0, + -1981.32275390625 + ], + "type":"VEC3" + }, + { + "bufferView":1165, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":1166, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":1167, + "componentType":5123, + "count":108, + "type":"SCALAR" + }, + { + "bufferView":1168, + "componentType":5126, + "count":24, + "max":[ + 110.00022888183594, + 50.00010681152344, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 7.482406363124028e-05, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":1169, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1170, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":1171, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1172, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1173, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.514404296875, + 22.7293758392334 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":1174, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":1175, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":1176, + "componentType":5126, + "count":265, + "max":[ + 174.40869140625, + 193.25439453125, + 169.0625 + ], + "min":[ + -174.408203125, + 0, + -169.0634765625 + ], + "type":"VEC3" + }, + { + "bufferView":1177, + "componentType":5126, + "count":265, + "type":"VEC3" + }, + { + "bufferView":1178, + "componentType":5126, + "count":265, + "type":"VEC2" + }, + { + "bufferView":1179, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":1180, + "componentType":5126, + "count":112, + "max":[ + 315.52044677734375, + 28059.064453125, + 315.5213317871094 + ], + "min":[ + -315.52044677734375, + 0, + -315.51953125 + ], + "type":"VEC3" + }, + { + "bufferView":1181, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":1182, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":1183, + "componentType":5126, + "count":138, + "max":[ + 80.151123046875, + 126.6884765625, + 49.03515625 + ], + "min":[ + -80.155029296875, + 0, + -49.03515625 + ], + "type":"VEC3" + }, + { + "bufferView":1184, + "componentType":5126, + "count":138, + "type":"VEC3" + }, + { + "bufferView":1185, + "componentType":5126, + "count":138, + "type":"VEC2" + }, + { + "bufferView":1186, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":1187, + "componentType":5126, + "count":76, + "max":[ + 278.86651611328125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8672180175781, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":1188, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":1189, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":1190, + "componentType":5126, + "count":578, + "max":[ + 195.72679138183594, + 32.82524108886719, + 195.7284698486328 + ], + "min":[ + -195.7303924560547, + 6.866455078125e-05, + -195.7287139892578 + ], + "type":"VEC3" + }, + { + "bufferView":1191, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":1192, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1193, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1194, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1195, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1196, + "componentType":5126, + "count":592, + "max":[ + 167.3301239013672, + 109.66957092285156, + 170.50233459472656 + ], + "min":[ + -160.1221160888672, + 0.6865310668945312, + -170.50250244140625 + ], + "type":"VEC3" + }, + { + "bufferView":1197, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":1198, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1199, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76708984375, + 78.58544921875 + ], + "min":[ + -46.2822265625, + 0, + -78.58642578125 + ], + "type":"VEC3" + }, + { + "bufferView":1200, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1201, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1202, + "componentType":5126, + "count":562, + "max":[ + 187.32032775878906, + 194.036376953125, + 169.38287353515625 + ], + "min":[ + -187.31944274902344, + 1.30487060546875, + -157.1022186279297 + ], + "type":"VEC3" + }, + { + "bufferView":1203, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":1204, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1205, + "componentType":5126, + "count":24, + "max":[ + 13.57373046875, + 1879.529541015625, + 334.78076171875 + ], + "min":[ + -13.5732421875, + 0, + -334.78076171875 + ], + "type":"VEC3" + }, + { + "bufferView":1206, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1207, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1208, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":1209, + "componentType":5126, + "count":296, + "max":[ + 1.9772133827209473, + 36.3969841003418, + 18.19847297668457 + ], + "min":[ + -1.9772028923034668, + -7.62939453125e-06, + -18.198514938354492 + ], + "type":"VEC3" + }, + { + "bufferView":1210, + "componentType":5126, + "count":296, + "type":"VEC3" + }, + { + "bufferView":1211, + "componentType":5126, + "count":296, + "type":"VEC2" + }, + { + "bufferView":1212, + "componentType":5126, + "count":320, + "max":[ + 166.0859375, + 1147.822998046875, + 111.53135681152344 + ], + "min":[ + -166.08595275878906, + -6.103515625e-05, + -111.5313491821289 + ], + "type":"VEC3" + }, + { + "bufferView":1213, + "componentType":5126, + "count":320, + "type":"VEC3" + }, + { + "bufferView":1214, + "componentType":5126, + "count":320, + "type":"VEC2" + }, + { + "bufferView":1215, + "componentType":5123, + "count":540, + "type":"SCALAR" + }, + { + "bufferView":1216, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":1217, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1218, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1219, + "componentType":5126, + "count":574, + "max":[ + 197.12852478027344, + 203.781005859375, + 177.87860107421875 + ], + "min":[ + -197.13157653808594, + 1.3755416870117188, + -165.59820556640625 + ], + "type":"VEC3" + }, + { + "bufferView":1220, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":1221, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1222, + "componentType":5126, + "count":274, + "max":[ + 169.107421875, + 196.21435546875, + 175.05322265625 + ], + "min":[ + -169.1064453125, + 0, + -175.0537109375 + ], + "type":"VEC3" + }, + { + "bufferView":1223, + "componentType":5126, + "count":274, + "type":"VEC3" + }, + { + "bufferView":1224, + "componentType":5126, + "count":274, + "type":"VEC2" + }, + { + "bufferView":1225, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":1226, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":1227, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":1228, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":1229, + "componentType":5126, + "count":48, + "max":[ + 29344, + 200, + 44774.04296875 + ], + "min":[ + -29344, + 0, + -44774.04296875 + ], + "type":"VEC3" + }, + { + "bufferView":1230, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":1231, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":1232, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":1233, + "componentType":5126, + "count":584, + "max":[ + 187.8671875, + 120.83259582519531, + 195.7284698486328 + ], + "min":[ + -187.870361328125, + 9.918212890625e-05, + -195.7287139892578 + ], + "type":"VEC3" + }, + { + "bufferView":1234, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":1235, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1236, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1237, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1238, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1239, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":1240, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":1241, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1242, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1243, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1244, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92938232421875, + 384.1416015625 + ], + "min":[ + -245.232421875, + -6.103515625e-05, + -384.1391296386719 + ], + "type":"VEC3" + }, + { + "bufferView":1245, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":1246, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":1247, + "componentType":5123, + "count":2472, + "type":"SCALAR" + }, + { + "bufferView":1248, + "componentType":5126, + "count":224, + "max":[ + 118.72100067138672, + 272.6591796875, + 115.08638763427734 + ], + "min":[ + -118.72062683105469, + 42.48628234863281, + -115.08647155761719 + ], + "type":"VEC3" + }, + { + "bufferView":1249, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":1250, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + 0.000118255615234375, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":1251, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":1252, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":1253, + "componentType":5126, + "count":138, + "max":[ + 80.151611328125, + 126.6884765625, + 49.03515625 + ], + "min":[ + -80.154541015625, + 0, + -49.03515625 + ], + "type":"VEC3" + }, + { + "bufferView":1254, + "componentType":5126, + "count":138, + "type":"VEC3" + }, + { + "bufferView":1255, + "componentType":5126, + "count":138, + "type":"VEC2" + }, + { + "bufferView":1256, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":1257, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":1258, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1259, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1260, + "componentType":5126, + "count":76, + "max":[ + 278.8664855957031, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8669128417969, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":1261, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":1262, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":1263, + "componentType":5126, + "count":331, + "max":[ + 170.9052734375, + 157, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.288818359375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":1264, + "componentType":5126, + "count":331, + "type":"VEC3" + }, + { + "bufferView":1265, + "componentType":5126, + "count":331, + "type":"VEC2" + }, + { + "bufferView":1266, + "componentType":5126, + "count":228, + "max":[ + 115.14118957519531, + 317.5784912109375, + 160.0547637939453 + ], + "min":[ + -115.14126586914062, + 0.0001373291015625, + -160.0548858642578 + ], + "type":"VEC3" + }, + { + "bufferView":1267, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":1268, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":1269, + "componentType":5126, + "count":323, + "max":[ + 3.8607020378112793, + 15.442765235900879, + 7.72133207321167 + ], + "min":[ + -3.8606443405151367, + 8.296966552734375e-05, + -7.721349239349365 + ], + "type":"VEC3" + }, + { + "bufferView":1270, + "componentType":5126, + "count":323, + "type":"VEC3" + }, + { + "bufferView":1271, + "componentType":5126, + "count":323, + "type":"VEC2" + }, + { + "bufferView":1272, + "componentType":5126, + "count":587, + "max":[ + 148.9708251953125, + 101.9517822265625, + 155.0863800048828 + ], + "min":[ + -148.97369384765625, + 7.62939453125e-05, + -155.08645629882812 + ], + "type":"VEC3" + }, + { + "bufferView":1273, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":1274, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1275, + "componentType":5126, + "count":528, + "max":[ + 722.724609375, + 2637.3974609375, + 19.80198860168457 + ], + "min":[ + -722.720703125, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":1276, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":1277, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":1278, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":1279, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":1280, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":1281, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":1282, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1283, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1284, + "componentType":5126, + "count":232, + "max":[ + 174.40771484375, + 193.254638671875, + 169.062744140625 + ], + "min":[ + -174.408203125, + 0, + -169.06298828125 + ], + "type":"VEC3" + }, + { + "bufferView":1285, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":1286, + "componentType":5126, + "count":232, + "type":"VEC2" + }, + { + "bufferView":1287, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1288, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1289, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1290, + "componentType":5126, + "count":578, + "max":[ + 194.57476806640625, + 233.73831176757812, + 177.90367126464844 + ], + "min":[ + -194.57534790039062, + -6.103515625e-05, + -177.9034881591797 + ], + "type":"VEC3" + }, + { + "bufferView":1291, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":1292, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1293, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76666259765625, + 78.58544921875 + ], + "min":[ + -46.2822265625, + 0, + -78.58642578125 + ], + "type":"VEC3" + }, + { + "bufferView":1294, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1295, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1296, + "componentType":5126, + "count":331, + "max":[ + 170.90625, + 157.00244140625, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.2890625, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":1297, + "componentType":5126, + "count":331, + "type":"VEC3" + }, + { + "bufferView":1298, + "componentType":5126, + "count":331, + "type":"VEC2" + }, + { + "bufferView":1299, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":1300, + "componentType":5126, + "count":44, + "max":[ + 1716.6361083984375, + 167.624267578125, + 2415.3642578125 + ], + "min":[ + -1716.635986328125, + -0.00054168701171875, + -2415.36328125 + ], + "type":"VEC3" + }, + { + "bufferView":1301, + "componentType":5126, + "count":44, + "type":"VEC3" + }, + { + "bufferView":1302, + "componentType":5126, + "count":44, + "type":"VEC2" + }, + { + "bufferView":1303, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":1304, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4556884765625, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":1305, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":1306, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":1307, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":1308, + "componentType":5126, + "count":125, + "max":[ + 7.721337795257568, + 15.442765235900879, + 3.8607194423675537 + ], + "min":[ + -7.721343517303467, + 8.296966552734375e-05, + -3.8606269359588623 + ], + "type":"VEC3" + }, + { + "bufferView":1309, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":1310, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":1311, + "componentType":5123, + "count":540, + "type":"SCALAR" + }, + { + "bufferView":1312, + "componentType":5126, + "count":1660, + "max":[ + 433.12109375, + 367.929443359375, + 90.004150390625 + ], + "min":[ + -433.119140625, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":1313, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":1314, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":1315, + "componentType":5123, + "count":2472, + "type":"SCALAR" + }, + { + "bufferView":1316, + "componentType":5126, + "count":548, + "max":[ + 1958.87890625, + 2326.893310546875, + 738.77001953125 + ], + "min":[ + -1958.879638671875, + -0.000732421875, + -738.76806640625 + ], + "type":"VEC3" + }, + { + "bufferView":1317, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":1318, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":1319, + "componentType":5123, + "count":1128, + "type":"SCALAR" + }, + { + "bufferView":1320, + "componentType":5126, + "count":582, + "max":[ + 160.69134521484375, + 167.5865020751953, + 146.3227081298828 + ], + "min":[ + -160.69309997558594, + 1.1128768920898438, + -134.04196166992188 + ], + "type":"VEC3" + }, + { + "bufferView":1321, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":1322, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1323, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":1324, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1325, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1326, + "componentType":5126, + "count":592, + "max":[ + 157.0199432373047, + 189.9700927734375, + 143.66017150878906 + ], + "min":[ + -157.01971435546875, + 0.0001373291015625, + -143.6602020263672 + ], + "type":"VEC3" + }, + { + "bufferView":1327, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":1328, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1329, + "componentType":5126, + "count":50, + "max":[ + 142.32080078125, + 608.220703125, + 391.7376403808594 + ], + "min":[ + -142.32177734375, + 0, + -391.7374572753906 + ], + "type":"VEC3" + }, + { + "bufferView":1330, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":1331, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":1332, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":1333, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":1334, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1335, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1336, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1337, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1338, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1339, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1340, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1341, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1342, + "componentType":5126, + "count":112, + "max":[ + 1022.581298828125, + 429.54217529296875, + 214.77101135253906 + ], + "min":[ + -1022.5777587890625, + -3.0517578125e-05, + -214.77096557617188 + ], + "type":"VEC3" + }, + { + "bufferView":1343, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":1344, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":1345, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1346, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1347, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.585693359375 + ], + "min":[ + -46.28466796875, + 0, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":1348, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1349, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1350, + "componentType":5126, + "count":591, + "max":[ + 170.43125915527344, + 205.60140991210938, + 155.88995361328125 + ], + "min":[ + -170.43350219726562, + -9.1552734375e-05, + -155.8899383544922 + ], + "type":"VEC3" + }, + { + "bufferView":1351, + "componentType":5126, + "count":591, + "type":"VEC3" + }, + { + "bufferView":1352, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1353, + "componentType":5126, + "count":336, + "max":[ + 13.560531616210938, + 230.7025146484375, + 115.35121154785156 + ], + "min":[ + -13.560829162597656, + 2.288818359375e-05, + -115.35124969482422 + ], + "type":"VEC3" + }, + { + "bufferView":1354, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":1355, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":1356, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68743896484375 + ], + "min":[ + -15.4755859375, + 0, + -381.68572998046875 + ], + "type":"VEC3" + }, + { + "bufferView":1357, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1358, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1359, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":1360, + "componentType":5126, + "count":349, + "max":[ + 171.298828125, + 184.8046875, + 176.140380859375 + ], + "min":[ + -171.2978515625, + 44.45751953125, + -176.1416015625 + ], + "type":"VEC3" + }, + { + "bufferView":1361, + "componentType":5126, + "count":349, + "type":"VEC3" + }, + { + "bufferView":1362, + "componentType":5126, + "count":349, + "type":"VEC2" + }, + { + "bufferView":1363, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":1364, + "componentType":5126, + "count":12, + "max":[ + 411.4619140625, + 388.9410400390625, + 9.51611328125 + ], + "min":[ + -411.4638671875, + 0, + -9.5142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":1365, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":1366, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":1367, + "componentType":5126, + "count":24, + "max":[ + 110.00007629394531, + 50, + 481.646484375 + ], + "min":[ + -110.00011444091797, + 0, + -481.6465148925781 + ], + "type":"VEC3" + }, + { + "bufferView":1368, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1369, + "componentType":5126, + "count":136, + "max":[ + 69.5673828125, + 156.626220703125, + 824.2421875 + ], + "min":[ + -69.5732421875, + -0.000244140625, + -824.24169921875 + ], + "type":"VEC3" + }, + { + "bufferView":1370, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":1371, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":1372, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":1373, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76666259765625, + 78.58642578125 + ], + "min":[ + -46.2822265625, + 0, + -78.5849609375 + ], + "type":"VEC3" + }, + { + "bufferView":1374, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1375, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1376, + "componentType":5126, + "count":92, + "max":[ + 824.2412109375, + 141.0703125, + 69.5703125 + ], + "min":[ + -824.24072265625, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":1377, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":1378, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":1379, + "componentType":5123, + "count":204, + "type":"SCALAR" + }, + { + "bufferView":1380, + "componentType":5126, + "count":582, + "max":[ + 198.53025817871094, + 203.7875518798828, + 172.95205688476562 + ], + "min":[ + -198.53277587890625, + 6.866455078125e-05, + -172.95220947265625 + ], + "type":"VEC3" + }, + { + "bufferView":1381, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":1382, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1383, + "componentType":5126, + "count":348, + "max":[ + 115.35123443603516, + 211.42062377929688, + 68.4458999633789 + ], + "min":[ + -115.3512191772461, + 9.1552734375e-05, + -68.44573974609375 + ], + "type":"VEC3" + }, + { + "bufferView":1384, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":1385, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":1386, + "componentType":5126, + "count":574, + "max":[ + 177.50819396972656, + 183.0576934814453, + 154.74668884277344 + ], + "min":[ + -177.5111541748047, + 0.0001220703125, + -154.74673461914062 + ], + "type":"VEC3" + }, + { + "bufferView":1387, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":1388, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1389, + "componentType":5126, + "count":50, + "max":[ + 142.32080078125, + 608.220703125, + 391.73681640625 + ], + "min":[ + -142.32177734375, + 0, + -391.738525390625 + ], + "type":"VEC3" + }, + { + "bufferView":1390, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":1391, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":1392, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":1393, + "componentType":5126, + "count":73, + "max":[ + 1657.5760498046875, + 1983.967529296875, + 2338.061279296875 + ], + "min":[ + -1657.575927734375, + -0.0002288818359375, + -2338.062255859375 + ], + "type":"VEC3" + }, + { + "bufferView":1394, + "componentType":5126, + "count":73, + "type":"VEC3" + }, + { + "bufferView":1395, + "componentType":5126, + "count":73, + "type":"VEC2" + }, + { + "bufferView":1396, + "componentType":5123, + "count":156, + "type":"SCALAR" + }, + { + "bufferView":1397, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92938232421875, + 384.5786437988281 + ], + "min":[ + -244.466796875, + 0.0001068115234375, + -384.5815734863281 + ], + "type":"VEC3" + }, + { + "bufferView":1398, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":1399, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":1400, + "componentType":5123, + "count":2472, + "type":"SCALAR" + }, + { + "bufferView":1401, + "componentType":5126, + "count":72, + "max":[ + 771.3452758789062, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.345703125, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":1402, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":1403, + "componentType":5126, + "count":528, + "max":[ + 722.720703125, + 2637.397705078125, + 19.80272102355957 + ], + "min":[ + -722.72265625, + 0, + -19.80333137512207 + ], + "type":"VEC3" + }, + { + "bufferView":1404, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":1405, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":1406, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":1407, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":1408, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":1409, + "componentType":5126, + "count":125, + "max":[ + 3.8607170581817627, + 15.442764282226562, + 7.721338748931885 + ], + "min":[ + -3.860625743865967, + 8.249282836914062e-05, + -7.721341609954834 + ], + "type":"VEC3" + }, + { + "bufferView":1410, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":1411, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":1412, + "componentType":5126, + "count":76, + "max":[ + 278.8669738769531, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8664245605469, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":1413, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":1414, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":1415, + "componentType":5126, + "count":24, + "max":[ + 110.00012969970703, + 50, + 584.666015625 + ], + "min":[ + -110.00007629394531, + 0, + -584.662109375 + ], + "type":"VEC3" + }, + { + "bufferView":1416, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1417, + "componentType":5126, + "count":1333, + "max":[ + 8.997562408447266, + 48.001407623291016, + 23.8692626953125 + ], + "min":[ + -8.997648239135742, + -0.00012969970703125, + -23.869312286376953 + ], + "type":"VEC3" + }, + { + "bufferView":1418, + "componentType":5126, + "count":1333, + "type":"VEC3" + }, + { + "bufferView":1419, + "componentType":5126, + "count":1333, + "type":"VEC2" + }, + { + "bufferView":1420, + "componentType":5126, + "count":224, + "max":[ + 118.72103118896484, + 230.17282104492188, + 115.08651733398438 + ], + "min":[ + -118.72062683105469, + -2.288818359375e-05, + -115.08650207519531 + ], + "type":"VEC3" + }, + { + "bufferView":1421, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":1422, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.073486328125 + ], + "type":"VEC3" + }, + { + "bufferView":1423, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1424, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1425, + "componentType":5126, + "count":24, + "max":[ + 46.2841796875, + 147.76666259765625, + 78.58544921875 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":1426, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1427, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1428, + "componentType":5126, + "count":570, + "max":[ + 149.47979736328125, + 32.8253059387207, + 149.48057556152344 + ], + "min":[ + -149.48141479492188, + -7.2479248046875e-05, + -149.48060607910156 + ], + "type":"VEC3" + }, + { + "bufferView":1429, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":1430, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1431, + "componentType":5126, + "count":570, + "max":[ + 202.81088256835938, + 243.335205078125, + 185.41172790527344 + ], + "min":[ + -202.80821228027344, + 6.103515625e-05, + -185.41201782226562 + ], + "type":"VEC3" + }, + { + "bufferView":1432, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":1433, + "componentType":5126, + "count":528, + "max":[ + 722.7216796875, + 2637.3974609375, + 19.80198860168457 + ], + "min":[ + -722.7216796875, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":1434, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":1435, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":1436, + "componentType":5126, + "count":362, + "max":[ + 131.3284912109375, + 220.878662109375, + 138.186767578125 + ], + "min":[ + -131.32923889160156, + 0, + -138.186767578125 + ], + "type":"VEC3" + }, + { + "bufferView":1437, + "componentType":5126, + "count":362, + "type":"VEC3" + }, + { + "bufferView":1438, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":1439, + "componentType":5126, + "count":1020, + "max":[ + 831.546875, + 116.23333740234375, + 746.10400390625 + ], + "min":[ + -831.544921875, + 5.7220458984375e-05, + -746.1015625 + ], + "type":"VEC3" + }, + { + "bufferView":1440, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":1441, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":1442, + "componentType":5126, + "count":342, + "max":[ + 170.4345703125, + 188.55517578125, + 176.2041015625 + ], + "min":[ + -170.4345703125, + 45.29736328125, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":1443, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":1444, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":1445, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":1446, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1447, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1448, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1449, + "componentType":5126, + "count":2917, + "max":[ + 8.997692108154297, + 48.001651763916016, + 23.86931610107422 + ], + "min":[ + -8.997540473937988, + 0.0001125335693359375, + -23.869264602661133 + ], + "type":"VEC3" + }, + { + "bufferView":1450, + "componentType":5126, + "count":2917, + "type":"VEC3" + }, + { + "bufferView":1451, + "componentType":5126, + "count":2917, + "type":"VEC2" + }, + { + "bufferView":1452, + "componentType":5123, + "count":4860, + "type":"SCALAR" + }, + { + "bufferView":1453, + "componentType":5126, + "count":320, + "max":[ + 166.0859375, + 1147.822998046875, + 111.53135681152344 + ], + "min":[ + -166.08595275878906, + -6.103515625e-05, + -111.5313491821289 + ], + "type":"VEC3" + }, + { + "bufferView":1454, + "componentType":5126, + "count":320, + "type":"VEC3" + }, + { + "bufferView":1455, + "componentType":5126, + "count":320, + "type":"VEC2" + }, + { + "bufferView":1456, + "componentType":5126, + "count":232, + "max":[ + 115.35124206542969, + 318.5151062011719, + 159.1707000732422 + ], + "min":[ + -115.35128021240234, + 1.3115692138671875, + -160.49093627929688 + ], + "type":"VEC3" + }, + { + "bufferView":1457, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":1458, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":1459, + "componentType":5126, + "count":588, + "max":[ + 158.3614959716797, + 106.42626953125, + 164.89654541015625 + ], + "min":[ + -158.360595703125, + 4.57763671875e-05, + -164.89666748046875 + ], + "type":"VEC3" + }, + { + "bufferView":1460, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":1461, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1462, + "componentType":5126, + "count":450, + "max":[ + 104.17137908935547, + 104.17131042480469, + 104.1713638305664 + ], + "min":[ + -104.17139434814453, + -8.392333984375e-05, + -104.1714096069336 + ], + "type":"VEC3" + }, + { + "bufferView":1463, + "componentType":5126, + "count":450, + "type":"VEC3" + }, + { + "bufferView":1464, + "componentType":5126, + "count":450, + "type":"VEC2" + }, + { + "bufferView":1465, + "componentType":5123, + "count":2280, + "type":"SCALAR" + }, + { + "bufferView":1466, + "componentType":5126, + "count":138, + "max":[ + 49.03515625, + 126.6884765625, + 80.15283203125 + ], + "min":[ + -49.03515625, + 0, + -80.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":1467, + "componentType":5126, + "count":138, + "type":"VEC3" + }, + { + "bufferView":1468, + "componentType":5126, + "count":138, + "type":"VEC2" + }, + { + "bufferView":1469, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":1470, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1471, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1472, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1473, + "componentType":5126, + "count":648, + "max":[ + 615.010986328125, + 2510.92529296875, + 347.265869140625 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.2666015625 + ], + "type":"VEC3" + }, + { + "bufferView":1474, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":1475, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":1476, + "componentType":5126, + "count":463, + "max":[ + 186.856201171875, + 259.27752685546875, + 182.40966796875 + ], + "min":[ + -186.8560791015625, + 7.62939453125e-06, + -182.40966796875 + ], + "type":"VEC3" + }, + { + "bufferView":1477, + "componentType":5126, + "count":463, + "type":"VEC3" + }, + { + "bufferView":1478, + "componentType":5126, + "count":463, + "type":"VEC2" + }, + { + "bufferView":1479, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1480, + "componentType":5126, + "count":596, + "max":[ + 164.8965301513672, + 170.61959838867188, + 143.82345581054688 + ], + "min":[ + -164.89663696289062, + -0.00014495849609375, + -143.8234100341797 + ], + "type":"VEC3" + }, + { + "bufferView":1481, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":1482, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1483, + "componentType":5126, + "count":795, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45508575439453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":1484, + "componentType":5126, + "count":795, + "type":"VEC3" + }, + { + "bufferView":1485, + "componentType":5126, + "count":795, + "type":"VEC2" + }, + { + "bufferView":1486, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":1487, + "componentType":5126, + "count":46, + "max":[ + 366.153076171875, + 658.67578125, + 161.98095703125 + ], + "min":[ + -366.15234375, + 0, + -161.97900390625 + ], + "type":"VEC3" + }, + { + "bufferView":1488, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":1489, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":1490, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":1491, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1492, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1493, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1494, + "componentType":5126, + "count":46, + "max":[ + 161.98095703125, + 658.67578125, + 366.15234375 + ], + "min":[ + -161.978515625, + 0, + -366.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":1495, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":1496, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":1497, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":1498, + "componentType":5126, + "count":562, + "max":[ + 199.93199157714844, + 32.82524108886719, + 199.9328155517578 + ], + "min":[ + -199.93392944335938, + 8.7738037109375e-05, + -199.93313598632812 + ], + "type":"VEC3" + }, + { + "bufferView":1499, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":1500, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1501, + "componentType":5126, + "count":24, + "max":[ + 83.761474609375, + 276.109375, + 88.3427734375 + ], + "min":[ + -83.761474609375, + 0, + -88.34375 + ], + "type":"VEC3" + }, + { + "bufferView":1502, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1503, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1504, + "componentType":5126, + "count":46, + "max":[ + 161.98095703125, + 658.67578125, + 366.15234375 + ], + "min":[ + -161.97900390625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":1505, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":1506, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":1507, + "componentType":5126, + "count":49, + "max":[ + 127.44677734375, + 625.6328125, + 391.73779296875 + ], + "min":[ + -127.4404296875, + 0, + -391.73779296875 + ], + "type":"VEC3" + }, + { + "bufferView":1508, + "componentType":5126, + "count":49, + "type":"VEC3" + }, + { + "bufferView":1509, + "componentType":5126, + "count":49, + "type":"VEC2" + }, + { + "bufferView":1510, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":1511, + "componentType":5126, + "count":24, + "max":[ + 110.00022888183594, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534164175624028, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":1512, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1513, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":1514, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1515, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1516, + "componentType":5126, + "count":48, + "max":[ + 142.31884765625, + 608.220703125, + 391.737548828125 + ], + "min":[ + -142.32373046875, + 0, + -391.737548828125 + ], + "type":"VEC3" + }, + { + "bufferView":1517, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":1518, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":1519, + "componentType":5126, + "count":882, + "max":[ + 134.31640625, + 2974.83349609375, + 130.72314453125 + ], + "min":[ + -134.31640625, + 0, + -130.72108459472656 + ], + "type":"VEC3" + }, + { + "bufferView":1520, + "componentType":5126, + "count":882, + "type":"VEC3" + }, + { + "bufferView":1521, + "componentType":5126, + "count":882, + "type":"VEC2" + }, + { + "bufferView":1522, + "componentType":5123, + "count":1308, + "type":"SCALAR" + }, + { + "bufferView":1523, + "componentType":5126, + "count":72, + "max":[ + 771.345458984375, + 1492.539794921875, + 22.500337600708008 + ], + "min":[ + -771.3455200195312, + 0, + -22.50017738342285 + ], + "type":"VEC3" + }, + { + "bufferView":1524, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":1525, + "componentType":5126, + "count":245, + "max":[ + 172.5966796875, + 185.23486328125, + 169.0703125 + ], + "min":[ + -172.59716796875, + -0.00048828125, + -169.0703125 + ], + "type":"VEC3" + }, + { + "bufferView":1526, + "componentType":5126, + "count":245, + "type":"VEC3" + }, + { + "bufferView":1527, + "componentType":5126, + "count":245, + "type":"VEC2" + }, + { + "bufferView":1528, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":1529, + "componentType":5126, + "count":168, + "max":[ + 21.171875, + 1873.388671875, + 21.171875 + ], + "min":[ + -21.171875, + 0, + -21.172607421875 + ], + "type":"VEC3" + }, + { + "bufferView":1530, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":1531, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":1532, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":1533, + "componentType":5126, + "count":122, + "max":[ + 983.470703125, + 355.5092468261719, + 983.4702758789062 + ], + "min":[ + -983.470703125, + 9.1552734375e-05, + -983.4717407226562 + ], + "type":"VEC3" + }, + { + "bufferView":1534, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":1535, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":1536, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":1537, + "componentType":5126, + "count":162, + "max":[ + 22.73046875, + 64.23062133789062, + 543.3623046875 + ], + "min":[ + -22.728515625, + 9.5367431640625e-05, + -543.3623046875 + ], + "type":"VEC3" + }, + { + "bufferView":1538, + "componentType":5126, + "count":162, + "type":"VEC3" + }, + { + "bufferView":1539, + "componentType":5126, + "count":162, + "type":"VEC2" + }, + { + "bufferView":1540, + "componentType":5123, + "count":336, + "type":"SCALAR" + }, + { + "bufferView":1541, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1542, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1543, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1544, + "componentType":5126, + "count":157, + "max":[ + 769.70751953125, + 113.19482421875, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.5966796875 + ], + "type":"VEC3" + }, + { + "bufferView":1545, + "componentType":5126, + "count":157, + "type":"VEC3" + }, + { + "bufferView":1546, + "componentType":5126, + "count":157, + "type":"VEC2" + }, + { + "bufferView":1547, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":1548, + "componentType":5126, + "count":450, + "max":[ + 104.1713638305664, + 104.17131042480469, + 104.17139434814453 + ], + "min":[ + -104.1714096069336, + -8.392333984375e-05, + -104.17137908935547 + ], + "type":"VEC3" + }, + { + "bufferView":1549, + "componentType":5126, + "count":450, + "type":"VEC3" + }, + { + "bufferView":1550, + "componentType":5126, + "count":450, + "type":"VEC2" + }, + { + "bufferView":1551, + "componentType":5126, + "count":24, + "max":[ + 161.6258544921875, + 62.203857421875, + 70.02761840820312 + ], + "min":[ + -161.62652587890625, + 0, + -70.02761840820312 + ], + "type":"VEC3" + }, + { + "bufferView":1552, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1553, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1554, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":1555, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.58544921875 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":1556, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1557, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1558, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1559, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1560, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1561, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":1562, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1563, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1564, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":1565, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":1566, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":1567, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":1568, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1569, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1570, + "componentType":5126, + "count":886, + "max":[ + 31904.26171875, + 200, + 45056 + ], + "min":[ + -31904.26171875, + 0, + -45056 + ], + "type":"VEC3" + }, + { + "bufferView":1571, + "componentType":5126, + "count":886, + "type":"VEC3" + }, + { + "bufferView":1572, + "componentType":5126, + "count":886, + "type":"VEC2" + }, + { + "bufferView":1573, + "componentType":5123, + "count":2328, + "type":"SCALAR" + }, + { + "bufferView":1574, + "componentType":5126, + "count":596, + "max":[ + 164.8965301513672, + 171.76266479492188, + 149.96376037597656 + ], + "min":[ + -164.89663696289062, + 1.1429595947265625, + -137.6830596923828 + ], + "type":"VEC3" + }, + { + "bufferView":1575, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":1576, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1577, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1578, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1579, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1580, + "componentType":5126, + "count":76, + "max":[ + 279.1010437011719, + 3543.081787109375, + 278.8670349121094 + ], + "min":[ + -279.0986328125, + 0, + -278.8664245605469 + ], + "type":"VEC3" + }, + { + "bufferView":1581, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":1582, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":1583, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1584, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1585, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1586, + "componentType":5126, + "count":55, + "max":[ + 29.9993896484375, + 483.89794921875, + 238.478515625 + ], + "min":[ + -30.0010986328125, + 0, + -238.4794921875 + ], + "type":"VEC3" + }, + { + "bufferView":1587, + "componentType":5126, + "count":55, + "type":"VEC3" + }, + { + "bufferView":1588, + "componentType":5126, + "count":55, + "type":"VEC2" + }, + { + "bufferView":1589, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":1590, + "componentType":5126, + "count":72, + "max":[ + 771.3447875976562, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.34619140625, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":1591, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":1592, + "componentType":5126, + "count":162, + "max":[ + 20.428955078125, + 104.244140625, + 52.125 + ], + "min":[ + -20.4296875, + 0, + -52.1220703125 + ], + "type":"VEC3" + }, + { + "bufferView":1593, + "componentType":5126, + "count":162, + "type":"VEC3" + }, + { + "bufferView":1594, + "componentType":5126, + "count":162, + "type":"VEC2" + }, + { + "bufferView":1595, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":1596, + "componentType":5126, + "count":134, + "max":[ + 80.151611328125, + 126.6884765625, + 49.03515625 + ], + "min":[ + -80.154541015625, + 0, + -49.03515625 + ], + "type":"VEC3" + }, + { + "bufferView":1597, + "componentType":5126, + "count":134, + "type":"VEC3" + }, + { + "bufferView":1598, + "componentType":5126, + "count":134, + "type":"VEC2" + }, + { + "bufferView":1599, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":1600, + "componentType":5126, + "count":584, + "max":[ + 170.50344848632812, + 176.1476593017578, + 148.67823791503906 + ], + "min":[ + -170.50135803222656, + 0.00014495849609375, + -148.6782684326172 + ], + "type":"VEC3" + }, + { + "bufferView":1601, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":1602, + "componentType":5126, + "count":60, + "max":[ + 3.787522077560425, + 14.031469345092773, + 5.548454284667969 + ], + "min":[ + -3.7875452041625977, + -3.24249267578125e-05, + -5.548465728759766 + ], + "type":"VEC3" + }, + { + "bufferView":1603, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":1604, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":1605, + "componentType":5123, + "count":108, + "type":"SCALAR" + }, + { + "bufferView":1606, + "componentType":5126, + "count":352, + "max":[ + 139.8673095703125, + 232.628662109375, + 138.3525390625 + ], + "min":[ + -139.8668212890625, + 0, + -138.3519287109375 + ], + "type":"VEC3" + }, + { + "bufferView":1607, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":1608, + "componentType":5126, + "count":682, + "max":[ + 134.31640625, + 2974.83349609375, + 130.721435546875 + ], + "min":[ + -134.314453125, + 0, + -130.72096252441406 + ], + "type":"VEC3" + }, + { + "bufferView":1609, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":1610, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":1611, + "componentType":5123, + "count":1308, + "type":"SCALAR" + }, + { + "bufferView":1612, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":1613, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":1614, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":1615, + "componentType":5126, + "count":573, + "max":[ + 150.8831329345703, + 32.8253173828125, + 150.8820343017578 + ], + "min":[ + -150.88096618652344, + 1.52587890625e-05, + -150.882080078125 + ], + "type":"VEC3" + }, + { + "bufferView":1616, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":1617, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1618, + "componentType":5126, + "count":262, + "max":[ + 174.408203125, + 193.25439453125, + 169.06298828125 + ], + "min":[ + -174.408203125, + 0, + -169.0628662109375 + ], + "type":"VEC3" + }, + { + "bufferView":1619, + "componentType":5126, + "count":262, + "type":"VEC3" + }, + { + "bufferView":1620, + "componentType":5126, + "count":262, + "type":"VEC2" + }, + { + "bufferView":1621, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":1622, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 703.126953125 + ], + "min":[ + -110.00003814697266, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":1623, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1624, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1625, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1626, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1627, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76666259765625, + 78.5859375 + ], + "min":[ + -46.2822265625, + 0, + -78.58447265625 + ], + "type":"VEC3" + }, + { + "bufferView":1628, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1629, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1630, + "componentType":5126, + "count":330, + "max":[ + 170.9052734375, + 157.001953125, + 177.25439453125 + ], + "min":[ + -170.9052734375, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":1631, + "componentType":5126, + "count":330, + "type":"VEC3" + }, + { + "bufferView":1632, + "componentType":5126, + "count":330, + "type":"VEC2" + }, + { + "bufferView":1633, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":1634, + "componentType":5126, + "count":44, + "max":[ + 1716.6361083984375, + 167.624267578125, + 2415.36376953125 + ], + "min":[ + -1716.635986328125, + -0.00054168701171875, + -2415.36376953125 + ], + "type":"VEC3" + }, + { + "bufferView":1635, + "componentType":5126, + "count":44, + "type":"VEC3" + }, + { + "bufferView":1636, + "componentType":5126, + "count":44, + "type":"VEC2" + }, + { + "bufferView":1637, + "componentType":5126, + "count":348, + "max":[ + 170.435546875, + 188.558349609375, + 176.203125 + ], + "min":[ + -170.43359375, + 45.296630859375, + -176.2041015625 + ], + "type":"VEC3" + }, + { + "bufferView":1638, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":1639, + "componentType":5126, + "count":348, + "type":"VEC2" + }, + { + "bufferView":1640, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":1641, + "componentType":5126, + "count":594, + "max":[ + 196.22190856933594, + 235.6579132080078, + 179.4049835205078 + ], + "min":[ + -196.22198486328125, + 0.0001068115234375, + -179.40525817871094 + ], + "type":"VEC3" + }, + { + "bufferView":1642, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":1643, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1644, + "componentType":5126, + "count":4, + "max":[ + 698.884765625, + 2586.479248046875, + 0.00022611767053604126 + ], + "min":[ + -698.88671875, + 0, + -0.00022611767053604126 + ], + "type":"VEC3" + }, + { + "bufferView":1645, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1646, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1647, + "componentType":5126, + "count":142, + "max":[ + 9.472702980041504, + 18.945335388183594, + 3.451836109161377 + ], + "min":[ + -9.47275161743164, + -0.00011920928955078125, + -3.451739549636841 + ], + "type":"VEC3" + }, + { + "bufferView":1648, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":1649, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":1650, + "componentType":5123, + "count":414, + "type":"SCALAR" + }, + { + "bufferView":1651, + "componentType":5126, + "count":559, + "max":[ + 224.27151489257812, + 448.5429992675781, + 224.27151489257812 + ], + "min":[ + -224.27151489257812, + -3.0517578125e-05, + -224.27151489257812 + ], + "type":"VEC3" + }, + { + "bufferView":1652, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":1653, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":1654, + "componentType":5126, + "count":580, + "max":[ + 175.79751586914062, + 211.85415649414062, + 160.7821502685547 + ], + "min":[ + -175.79733276367188, + -4.57763671875e-05, + -160.78140258789062 + ], + "type":"VEC3" + }, + { + "bufferView":1655, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":1656, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1657, + "componentType":5126, + "count":24, + "max":[ + 189.2314453125, + 33.60009765625, + 486.490234375 + ], + "min":[ + -189.2314453125, + -0.00048828125, + -486.489501953125 + ], + "type":"VEC3" + }, + { + "bufferView":1658, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1659, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1660, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":1661, + "componentType":5126, + "count":603, + "max":[ + 158.36148071289062, + 191.53338623046875, + 144.88314819335938 + ], + "min":[ + -158.360595703125, + 0.0002288818359375, + -144.88314819335938 + ], + "type":"VEC3" + }, + { + "bufferView":1662, + "componentType":5126, + "count":603, + "type":"VEC3" + }, + { + "bufferView":1663, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1664, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16455078125, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":1665, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":1666, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":1667, + "componentType":5126, + "count":586, + "max":[ + 183.11512756347656, + 32.82525634765625, + 183.1154022216797 + ], + "min":[ + -183.11587524414062, + 3.0517578125e-05, + -183.11566162109375 + ], + "type":"VEC3" + }, + { + "bufferView":1668, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":1669, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1670, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1671, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1672, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1673, + "componentType":5126, + "count":142, + "max":[ + 3.4517245292663574, + 18.945335388183594, + 9.472704887390137 + ], + "min":[ + -3.4518513679504395, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":1674, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":1675, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":1676, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.48486328125 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48492431640625 + ], + "type":"VEC3" + }, + { + "bufferView":1677, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":1678, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":1679, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1680, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1681, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.585693359375 + ], + "min":[ + -46.284423828125, + 0, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":1682, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1683, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1684, + "componentType":5126, + "count":568, + "max":[ + 182.50498962402344, + 117.93252563476562, + 190.12266540527344 + ], + "min":[ + -182.5025177001953, + 0.000244140625, + -190.1229248046875 + ], + "type":"VEC3" + }, + { + "bufferView":1685, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":1686, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1687, + "componentType":5126, + "count":584, + "max":[ + 176.21644592285156, + 253.91867065429688, + 158.48477172851562 + ], + "min":[ + -183.4259796142578, + 37.374969482421875, + -170.4167938232422 + ], + "type":"VEC3" + }, + { + "bufferView":1688, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":1689, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1690, + "componentType":5126, + "count":224, + "max":[ + 118.72061157226562, + 230.70252990722656, + 115.3511962890625 + ], + "min":[ + -118.72098541259766, + 1.52587890625e-05, + -115.35124969482422 + ], + "type":"VEC3" + }, + { + "bufferView":1691, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":1692, + "componentType":5126, + "count":800, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45508575439453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":1693, + "componentType":5126, + "count":800, + "type":"VEC3" + }, + { + "bufferView":1694, + "componentType":5126, + "count":800, + "type":"VEC2" + }, + { + "bufferView":1695, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":1696, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":1697, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1698, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1699, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76666259765625, + 78.5859375 + ], + "min":[ + -46.2822265625, + 0, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":1700, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1701, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1702, + "componentType":5126, + "count":50, + "max":[ + 142.32275390625, + 608.220703125, + 391.73583984375 + ], + "min":[ + -142.31982421875, + 0, + -391.739501953125 + ], + "type":"VEC3" + }, + { + "bufferView":1703, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":1704, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":1705, + "componentType":5126, + "count":562, + "max":[ + 199.93199157714844, + 205.16958618164062, + 174.16575622558594 + ], + "min":[ + -199.93392944335938, + 0.00011444091796875, + -174.16587829589844 + ], + "type":"VEC3" + }, + { + "bufferView":1706, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":1707, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1708, + "componentType":5126, + "count":60, + "max":[ + 25.64990234375, + 2502.00830078125, + 682.6611328125 + ], + "min":[ + -25.6494140625, + -0.0001220703125, + -682.6611328125 + ], + "type":"VEC3" + }, + { + "bufferView":1709, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":1710, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":1711, + "componentType":5123, + "count":90, + "type":"SCALAR" + }, + { + "bufferView":1712, + "componentType":5126, + "count":584, + "max":[ + 170.50344848632812, + 176.1476593017578, + 148.67823791503906 + ], + "min":[ + -170.50135803222656, + 0.00014495849609375, + -148.6782684326172 + ], + "type":"VEC3" + }, + { + "bufferView":1713, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":1714, + "componentType":5126, + "count":24, + "max":[ + 15.474609375, + 2142.8671875, + 381.68865966796875 + ], + "min":[ + -15.4755859375, + 0, + -381.68475341796875 + ], + "type":"VEC3" + }, + { + "bufferView":1715, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1716, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1717, + "componentType":5126, + "count":125, + "max":[ + 3.8607020378112793, + 15.442765235900879, + 7.72133207321167 + ], + "min":[ + -3.8606443405151367, + 8.296966552734375e-05, + -7.721349239349365 + ], + "type":"VEC3" + }, + { + "bufferView":1718, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":1719, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":1720, + "componentType":5126, + "count":24, + "max":[ + 83.759521484375, + 276.109375, + 88.3427734375 + ], + "min":[ + -83.763427734375, + 0, + -88.34375 + ], + "type":"VEC3" + }, + { + "bufferView":1721, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1722, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1723, + "componentType":5126, + "count":1420, + "max":[ + 245.234375, + 367.92938232421875, + 384.1416015625 + ], + "min":[ + -245.232421875, + -6.103515625e-05, + -384.1391296386719 + ], + "type":"VEC3" + }, + { + "bufferView":1724, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":1725, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":1726, + "componentType":5126, + "count":46, + "max":[ + 161.98095703125, + 658.67578125, + 366.15234375 + ], + "min":[ + -161.978515625, + 0, + -366.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":1727, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":1728, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":1729, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.48486328125 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48492431640625 + ], + "type":"VEC3" + }, + { + "bufferView":1730, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":1731, + "componentType":5126, + "count":24, + "max":[ + 1591.97802734375, + 151.70169067382812, + 2273.55908203125 + ], + "min":[ + -1591.9786376953125, + 0.000125885009765625, + -2273.55810546875 + ], + "type":"VEC3" + }, + { + "bufferView":1732, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1733, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1734, + "componentType":5126, + "count":1660, + "max":[ + 433.12109375, + 367.9293212890625, + 90.00634765625 + ], + "min":[ + -433.119140625, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":1735, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":1736, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":1737, + "componentType":5126, + "count":1420, + "max":[ + 245.234375, + 367.92938232421875, + 384.1396484375 + ], + "min":[ + -245.232421875, + -6.103515625e-05, + -384.1410827636719 + ], + "type":"VEC3" + }, + { + "bufferView":1738, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":1739, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":1740, + "componentType":5126, + "count":587, + "max":[ + 142.68621826171875, + 207.83984375, + 127.91075134277344 + ], + "min":[ + -149.8932647705078, + 30.375045776367188, + -139.84190368652344 + ], + "type":"VEC3" + }, + { + "bufferView":1741, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":1742, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1743, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51416778564453, + 43.588871002197266 + ], + "min":[ + -22.7265625, + -7.62939453125e-06, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":1744, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":1745, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":1746, + "componentType":5123, + "count":276, + "type":"SCALAR" + }, + { + "bufferView":1747, + "componentType":5126, + "count":340, + "max":[ + 115.14124298095703, + 210.24139404296875, + 69.11581420898438 + ], + "min":[ + -115.1412124633789, + -1.52587890625e-05, + -69.11676025390625 + ], + "type":"VEC3" + }, + { + "bufferView":1748, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":1749, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":1750, + "componentType":5126, + "count":24, + "max":[ + 15.47509765625, + 2142.8671875, + 381.68865966796875 + ], + "min":[ + -15.47509765625, + 0, + -381.68524169921875 + ], + "type":"VEC3" + }, + { + "bufferView":1751, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1752, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1753, + "componentType":5126, + "count":40, + "max":[ + 1.4143147468566895, + 10.517535209655762, + 5.258714199066162 + ], + "min":[ + -1.4143130779266357, + 6.0558319091796875e-05, + -5.258758544921875 + ], + "type":"VEC3" + }, + { + "bufferView":1754, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":1755, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":1756, + "componentType":5126, + "count":76, + "max":[ + 278.8729553222656, + 3543.081787109375, + 279.1054382324219 + ], + "min":[ + -278.8734436035156, + 0, + -279.1072998046875 + ], + "type":"VEC3" + }, + { + "bufferView":1757, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":1758, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":1759, + "componentType":5126, + "count":24, + "max":[ + 110.00011444091797, + 50, + 584.666015625 + ], + "min":[ + -110.00007629394531, + 0, + -584.662109375 + ], + "type":"VEC3" + }, + { + "bufferView":1760, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1761, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":1762, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1763, + "componentType":5126, + "count":350, + "max":[ + 171.298828125, + 184.80859375, + 176.140625 + ], + "min":[ + -171.2978515625, + 44.45703125, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":1764, + "componentType":5126, + "count":350, + "type":"VEC3" + }, + { + "bufferView":1765, + "componentType":5126, + "count":350, + "type":"VEC2" + }, + { + "bufferView":1766, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":1767, + "componentType":5126, + "count":12, + "max":[ + 8.345703125, + 341.1436767578125, + 360.897216796875 + ], + "min":[ + -8.345703125, + -0.0006103515625, + -360.8974609375 + ], + "type":"VEC3" + }, + { + "bufferView":1768, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":1769, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":1770, + "componentType":5126, + "count":548, + "max":[ + 7.778985023498535, + 21.312030792236328, + 10.655908584594727 + ], + "min":[ + -7.778889179229736, + 0.00021648406982421875, + -10.65590763092041 + ], + "type":"VEC3" + }, + { + "bufferView":1771, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":1772, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":1773, + "componentType":5126, + "count":336, + "max":[ + 13.560874938964844, + 230.17283630371094, + 115.08645629882812 + ], + "min":[ + -13.560577392578125, + -1.52587890625e-05, + -115.08645629882812 + ], + "type":"VEC3" + }, + { + "bufferView":1774, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":1775, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":1776, + "componentType":5126, + "count":589, + "max":[ + 170.43125915527344, + 205.60140991210938, + 155.89035034179688 + ], + "min":[ + -170.43350219726562, + -9.1552734375e-05, + -155.88954162597656 + ], + "type":"VEC3" + }, + { + "bufferView":1777, + "componentType":5126, + "count":589, + "type":"VEC3" + }, + { + "bufferView":1778, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1779, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.07330322265625 + ], + "min":[ + -27.193359375, + 0, + -126.07342529296875 + ], + "type":"VEC3" + }, + { + "bufferView":1780, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1781, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1782, + "componentType":5126, + "count":590, + "max":[ + 194.32896423339844, + 199.64170837402344, + 169.31101989746094 + ], + "min":[ + -194.32528686523438, + 0.00019073486328125, + -169.3110809326172 + ], + "type":"VEC3" + }, + { + "bufferView":1783, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":1784, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1785, + "componentType":5126, + "count":124, + "max":[ + 31.293128967285156, + 15.511030197143555, + 6.5021209716796875 + ], + "min":[ + -31.29315185546875, + 7.152557373046875e-06, + -6.5030975341796875 + ], + "type":"VEC3" + }, + { + "bufferView":1786, + "componentType":5126, + "count":124, + "type":"VEC3" + }, + { + "bufferView":1787, + "componentType":5126, + "count":124, + "type":"VEC2" + }, + { + "bufferView":1788, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":1789, + "componentType":5126, + "count":568, + "max":[ + 148.07859802246094, + 32.8253059387207, + 148.07913208007812 + ], + "min":[ + -148.07968139648438, + 0.000152587890625, + -148.0791473388672 + ], + "type":"VEC3" + }, + { + "bufferView":1790, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":1791, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1792, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":1793, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1794, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1795, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51409912109375, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":1796, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":1797, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":1798, + "componentType":5126, + "count":14014, + "max":[ + 1678.4140625, + 5149.5478515625, + 1341.006591796875 + ], + "min":[ + -1678.412109375, + 0.000244140625, + -1341.003662109375 + ], + "type":"VEC3" + }, + { + "bufferView":1799, + "componentType":5126, + "count":14014, + "type":"VEC3" + }, + { + "bufferView":1800, + "componentType":5126, + "count":14014, + "type":"VEC2" + }, + { + "bufferView":1801, + "componentType":5123, + "count":25872, + "type":"SCALAR" + }, + { + "bufferView":1802, + "componentType":5126, + "count":344, + "max":[ + 170.435546875, + 188.558349609375, + 176.20556640625 + ], + "min":[ + -170.4345703125, + 45.296630859375, + -176.2021484375 + ], + "type":"VEC3" + }, + { + "bufferView":1803, + "componentType":5126, + "count":344, + "type":"VEC3" + }, + { + "bufferView":1804, + "componentType":5126, + "count":344, + "type":"VEC2" + }, + { + "bufferView":1805, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":1806, + "componentType":5126, + "count":865, + "max":[ + 7.779110908508301, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778773307800293, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":1807, + "componentType":5126, + "count":865, + "type":"VEC3" + }, + { + "bufferView":1808, + "componentType":5126, + "count":865, + "type":"VEC2" + }, + { + "bufferView":1809, + "componentType":5126, + "count":582, + "max":[ + 160.69134521484375, + 167.5865020751953, + 146.3229217529297 + ], + "min":[ + -160.69309997558594, + 1.112884521484375, + -134.041748046875 + ], + "type":"VEC3" + }, + { + "bufferView":1810, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":1811, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1812, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":1813, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1814, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1815, + "componentType":5126, + "count":88, + "max":[ + 50.1396484375, + 860.975830078125, + 52.9462890625 + ], + "min":[ + -50.139892578125, + 0, + -52.9462890625 + ], + "type":"VEC3" + }, + { + "bufferView":1816, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":1817, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":1818, + "componentType":5123, + "count":180, + "type":"SCALAR" + }, + { + "bufferView":1819, + "componentType":5126, + "count":60, + "max":[ + 5.548455238342285, + 14.03147029876709, + 3.787524700164795 + ], + "min":[ + -5.548467636108398, + -3.217379344278015e-05, + -3.7875471115112305 + ], + "type":"VEC3" + }, + { + "bufferView":1820, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":1821, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":1822, + "componentType":5123, + "count":108, + "type":"SCALAR" + }, + { + "bufferView":1823, + "componentType":5126, + "count":136, + "max":[ + 69.5673828125, + 156.626220703125, + 824.2421875 + ], + "min":[ + -69.5732421875, + -0.000244140625, + -824.24169921875 + ], + "type":"VEC3" + }, + { + "bufferView":1824, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":1825, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":1826, + "componentType":5126, + "count":119, + "max":[ + 49.03564453125, + 162.82470703125, + 58.8193359375 + ], + "min":[ + -49.03466796875, + 6.845458984375, + -58.822265625 + ], + "type":"VEC3" + }, + { + "bufferView":1827, + "componentType":5126, + "count":119, + "type":"VEC3" + }, + { + "bufferView":1828, + "componentType":5126, + "count":119, + "type":"VEC2" + }, + { + "bufferView":1829, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":1830, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1831, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1832, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1833, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":1834, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1835, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1836, + "componentType":5126, + "count":96, + "max":[ + 69.5701904296875, + 141.0712890625, + 513.90771484375 + ], + "min":[ + -69.5699462890625, + 0, + -513.9072265625 + ], + "type":"VEC3" + }, + { + "bufferView":1837, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":1838, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":1839, + "componentType":5123, + "count":204, + "type":"SCALAR" + }, + { + "bufferView":1840, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":1841, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":1842, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1843, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1844, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1845, + "componentType":5126, + "count":159, + "max":[ + 769.70751953125, + 113.194580078125, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0, + -56.597412109375 + ], + "type":"VEC3" + }, + { + "bufferView":1846, + "componentType":5126, + "count":159, + "type":"VEC3" + }, + { + "bufferView":1847, + "componentType":5126, + "count":159, + "type":"VEC2" + }, + { + "bufferView":1848, + "componentType":5126, + "count":76, + "max":[ + 279.1072998046875, + 3543.081787109375, + 278.8729248046875 + ], + "min":[ + -279.10540771484375, + 0, + -278.8734130859375 + ], + "type":"VEC3" + }, + { + "bufferView":1849, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":1850, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":1851, + "componentType":5126, + "count":50, + "max":[ + 391.7373046875, + 608.220703125, + 142.32275390625 + ], + "min":[ + -391.73828125, + 0, + -142.31982421875 + ], + "type":"VEC3" + }, + { + "bufferView":1852, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":1853, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":1854, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":1855, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1856, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1857, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1858, + "componentType":5126, + "count":598, + "max":[ + 198.53025817871094, + 32.825233459472656, + 198.53135681152344 + ], + "min":[ + -198.53277587890625, + 6.4849853515625e-05, + -198.53167724609375 + ], + "type":"VEC3" + }, + { + "bufferView":1859, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":1860, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1861, + "componentType":5126, + "count":136, + "max":[ + 49.03564453125, + 126.6884765625, + 80.153076171875 + ], + "min":[ + -49.03466796875, + 0, + -80.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":1862, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":1863, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":1864, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":1865, + "componentType":5126, + "count":164, + "max":[ + 524.54638671875, + 14332.2607421875, + 63.8193359375 + ], + "min":[ + -524.545166015625, + 0.00096893310546875, + -63.8193359375 + ], + "type":"VEC3" + }, + { + "bufferView":1866, + "componentType":5126, + "count":164, + "type":"VEC3" + }, + { + "bufferView":1867, + "componentType":5126, + "count":164, + "type":"VEC2" + }, + { + "bufferView":1868, + "componentType":5123, + "count":576, + "type":"SCALAR" + }, + { + "bufferView":1869, + "componentType":5126, + "count":204, + "max":[ + 491.284912109375, + 2458.32470703125, + 168.4844512939453 + ], + "min":[ + -491.28839111328125, + 0, + -168.48477172851562 + ], + "type":"VEC3" + }, + { + "bufferView":1870, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":1871, + "componentType":5123, + "count":1068, + "type":"SCALAR" + }, + { + "bufferView":1872, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":1873, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1874, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1875, + "componentType":5126, + "count":48, + "max":[ + 123.61669921875, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.61181640625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":1876, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":1877, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":1878, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":1879, + "componentType":5126, + "count":330, + "max":[ + 171.298828125, + 184.80712890625, + 176.1416015625 + ], + "min":[ + -171.2978515625, + 44.4580078125, + -176.140625 + ], + "type":"VEC3" + }, + { + "bufferView":1880, + "componentType":5126, + "count":330, + "type":"VEC3" + }, + { + "bufferView":1881, + "componentType":5126, + "count":330, + "type":"VEC2" + }, + { + "bufferView":1882, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":1883, + "componentType":5126, + "count":162, + "max":[ + 29.783203125, + 2198.236328125, + 21.07904052734375 + ], + "min":[ + -29.7822265625, + -0.00018310546875, + -21.0780029296875 + ], + "type":"VEC3" + }, + { + "bufferView":1884, + "componentType":5126, + "count":162, + "type":"VEC3" + }, + { + "bufferView":1885, + "componentType":5126, + "count":162, + "type":"VEC2" + }, + { + "bufferView":1886, + "componentType":5123, + "count":336, + "type":"SCALAR" + }, + { + "bufferView":1887, + "componentType":5126, + "count":24, + "max":[ + 126.0732421875, + 130.123046875, + 27.1943359375 + ], + "min":[ + -126.07373046875, + 0, + -27.193359375 + ], + "type":"VEC3" + }, + { + "bufferView":1888, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1889, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1890, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":1891, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":1892, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1893, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1894, + "componentType":5126, + "count":648, + "max":[ + 615.01171875, + 2510.925048828125, + 347.26611328125 + ], + "min":[ + -615.01025390625, + 0, + -347.265625 + ], + "type":"VEC3" + }, + { + "bufferView":1895, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":1896, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":1897, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51409912109375, + 22.7294979095459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":1898, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":1899, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":1900, + "componentType":5126, + "count":247, + "max":[ + 173.28125, + 188.23828125, + 169.1015625 + ], + "min":[ + -173.28125, + 0, + -169.1015625 + ], + "type":"VEC3" + }, + { + "bufferView":1901, + "componentType":5126, + "count":247, + "type":"VEC3" + }, + { + "bufferView":1902, + "componentType":5126, + "count":247, + "type":"VEC2" + }, + { + "bufferView":1903, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":1904, + "componentType":5126, + "count":95, + "max":[ + 27.1103515625, + 95.4468994140625, + 37.43750762939453 + ], + "min":[ + -27.1103515625, + -3.814697265625e-06, + -37.43360137939453 + ], + "type":"VEC3" + }, + { + "bufferView":1905, + "componentType":5126, + "count":95, + "type":"VEC3" + }, + { + "bufferView":1906, + "componentType":5126, + "count":95, + "type":"VEC2" + }, + { + "bufferView":1907, + "componentType":5123, + "count":204, + "type":"SCALAR" + }, + { + "bufferView":1908, + "componentType":5126, + "count":573, + "max":[ + 150.8831329345703, + 32.8253173828125, + 150.8820343017578 + ], + "min":[ + -150.88096618652344, + 1.52587890625e-05, + -150.882080078125 + ], + "type":"VEC3" + }, + { + "bufferView":1909, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":1910, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1911, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1912, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1913, + "componentType":5126, + "count":566, + "max":[ + 153.6865997314453, + 32.82521057128906, + 153.6849365234375 + ], + "min":[ + -153.68331909179688, + 1.52587890625e-05, + -153.68499755859375 + ], + "type":"VEC3" + }, + { + "bufferView":1914, + "componentType":5126, + "count":566, + "type":"VEC3" + }, + { + "bufferView":1915, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1916, + "componentType":5126, + "count":648, + "max":[ + 615.01123046875, + 2510.92529296875, + 347.26611328125 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.265625 + ], + "type":"VEC3" + }, + { + "bufferView":1917, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":1918, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":1919, + "componentType":5126, + "count":580, + "max":[ + 174.70864868164062, + 181.50741577148438, + 158.4599609375 + ], + "min":[ + -174.70492553710938, + 1.21392822265625, + -146.17864990234375 + ], + "type":"VEC3" + }, + { + "bufferView":1920, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":1921, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1922, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":1923, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1924, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1925, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1926, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1927, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1928, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":1929, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1930, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1931, + "componentType":5126, + "count":106, + "max":[ + 27.31396484375, + 1876.474365234375, + 413.561279296875 + ], + "min":[ + -27.314453125, + -0.00054931640625, + -413.56103515625 + ], + "type":"VEC3" + }, + { + "bufferView":1932, + "componentType":5126, + "count":106, + "type":"VEC3" + }, + { + "bufferView":1933, + "componentType":5126, + "count":106, + "type":"VEC2" + }, + { + "bufferView":1934, + "componentType":5123, + "count":204, + "type":"SCALAR" + }, + { + "bufferView":1935, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.58984375, + 0.000118255615234375, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":1936, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":1937, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":1938, + "componentType":5126, + "count":92, + "max":[ + 69.56640625, + 141.0703125, + 824.2412109375 + ], + "min":[ + -69.57421875, + 0, + -824.24072265625 + ], + "type":"VEC3" + }, + { + "bufferView":1939, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":1940, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":1941, + "componentType":5126, + "count":332, + "max":[ + 170.9052734375, + 157.000244140625, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":1942, + "componentType":5126, + "count":332, + "type":"VEC3" + }, + { + "bufferView":1943, + "componentType":5126, + "count":332, + "type":"VEC2" + }, + { + "bufferView":1944, + "componentType":5126, + "count":112, + "max":[ + 180.7362518310547, + 230.68893432617188, + 180.7362518310547 + ], + "min":[ + -180.7362518310547, + 0, + -180.7363739013672 + ], + "type":"VEC3" + }, + { + "bufferView":1945, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":1946, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":1947, + "componentType":5126, + "count":342, + "max":[ + 115.14114379882812, + 210.2413787841797, + 69.11632537841797 + ], + "min":[ + -115.1412582397461, + 7.62939453125e-05, + -69.11637115478516 + ], + "type":"VEC3" + }, + { + "bufferView":1948, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":1949, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":1950, + "componentType":5126, + "count":347, + "max":[ + 171.298828125, + 184.80615234375, + 176.14013671875 + ], + "min":[ + -171.2978515625, + 44.45458984375, + -176.1416015625 + ], + "type":"VEC3" + }, + { + "bufferView":1951, + "componentType":5126, + "count":347, + "type":"VEC3" + }, + { + "bufferView":1952, + "componentType":5126, + "count":347, + "type":"VEC2" + }, + { + "bufferView":1953, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":1954, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":1955, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":1956, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":1957, + "componentType":5126, + "count":1660, + "max":[ + 433.12109375, + 367.929443359375, + 90.005859375 + ], + "min":[ + -433.119140625, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":1958, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":1959, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":1960, + "componentType":5126, + "count":72, + "max":[ + 22.499942779541016, + 1492.539794921875, + 771.346435546875 + ], + "min":[ + -22.5002384185791, + 0.00030517578125, + -771.3448486328125 + ], + "type":"VEC3" + }, + { + "bufferView":1961, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":1962, + "componentType":5123, + "count":120, + "type":"SCALAR" + }, + { + "bufferView":1963, + "componentType":5126, + "count":120, + "max":[ + 25.64990234375, + 2528.2978515625, + 1386.0146484375 + ], + "min":[ + -25.6494140625, + -0.0001220703125, + -1386.015625 + ], + "type":"VEC3" + }, + { + "bufferView":1964, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":1965, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":1966, + "componentType":5123, + "count":180, + "type":"SCALAR" + }, + { + "bufferView":1967, + "componentType":5126, + "count":535, + "max":[ + 241.7705078125, + 751.646484375, + 774.029296875 + ], + "min":[ + -241.7744140625, + -0.000732421875, + -774.02783203125 + ], + "type":"VEC3" + }, + { + "bufferView":1968, + "componentType":5126, + "count":535, + "type":"VEC3" + }, + { + "bufferView":1969, + "componentType":5126, + "count":535, + "type":"VEC2" + }, + { + "bufferView":1970, + "componentType":5123, + "count":1176, + "type":"SCALAR" + }, + { + "bufferView":1971, + "componentType":5126, + "count":135, + "max":[ + 80.151611328125, + 126.6884765625, + 49.03564453125 + ], + "min":[ + -80.154541015625, + 0, + -49.03466796875 + ], + "type":"VEC3" + }, + { + "bufferView":1972, + "componentType":5126, + "count":135, + "type":"VEC3" + }, + { + "bufferView":1973, + "componentType":5126, + "count":135, + "type":"VEC2" + }, + { + "bufferView":1974, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":1975, + "componentType":5126, + "count":578, + "max":[ + 189.20867919921875, + 121.63380432128906, + 197.13003540039062 + ], + "min":[ + -189.2113494873047, + -9.1552734375e-05, + -197.13011169433594 + ], + "type":"VEC3" + }, + { + "bufferView":1976, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":1977, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":1978, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":1979, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":1980, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":1981, + "componentType":5126, + "count":1524, + "max":[ + 811.2451171875, + 3669.329345703125, + 385.11572265625 + ], + "min":[ + -612.765625, + 88.931640625, + -605.776611328125 + ], + "type":"VEC3" + }, + { + "bufferView":1982, + "componentType":5126, + "count":1524, + "type":"VEC3" + }, + { + "bufferView":1983, + "componentType":5126, + "count":1524, + "type":"VEC2" + }, + { + "bufferView":1984, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":1985, + "componentType":5126, + "count":226, + "max":[ + 147.06719970703125, + 323.5045166015625, + 131.37322998046875 + ], + "min":[ + -146.29783630371094, + 42.476348876953125, + -130.9877471923828 + ], + "type":"VEC3" + }, + { + "bufferView":1986, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":1987, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":1988, + "componentType":5126, + "count":72, + "max":[ + 771.3452758789062, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.345703125, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":1989, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":1990, + "componentType":5126, + "count":122, + "max":[ + 228.908203125, + 55.46875, + 27.736328125 + ], + "min":[ + -228.907958984375, + 0, + -27.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":1991, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":1992, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":1993, + "componentType":5126, + "count":245, + "max":[ + 173.28125, + 188.23828125, + 169.100830078125 + ], + "min":[ + -173.28173828125, + 0, + -169.100830078125 + ], + "type":"VEC3" + }, + { + "bufferView":1994, + "componentType":5126, + "count":245, + "type":"VEC3" + }, + { + "bufferView":1995, + "componentType":5126, + "count":245, + "type":"VEC2" + }, + { + "bufferView":1996, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":1997, + "componentType":5126, + "count":559, + "max":[ + 223.19967651367188, + 446.2801208496094, + 223.6057891845703 + ], + "min":[ + -223.19964599609375, + 0.0001373291015625, + -223.60580444335938 + ], + "type":"VEC3" + }, + { + "bufferView":1998, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":1999, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":2000, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2001, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2002, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2003, + "componentType":5126, + "count":169, + "max":[ + 769.70751953125, + 113.194580078125, + 56.5966796875 + ], + "min":[ + -769.709228515625, + 0, + -56.59814453125 + ], + "type":"VEC3" + }, + { + "bufferView":2004, + "componentType":5126, + "count":169, + "type":"VEC3" + }, + { + "bufferView":2005, + "componentType":5126, + "count":169, + "type":"VEC2" + }, + { + "bufferView":2006, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":2007, + "componentType":5126, + "count":4, + "max":[ + 1.3203125, + 270.7154541015625, + 165.3642578125 + ], + "min":[ + -1.33203125, + -0.0013427734375, + -165.3623046875 + ], + "type":"VEC3" + }, + { + "bufferView":2008, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2009, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2010, + "componentType":5126, + "count":580, + "max":[ + 162.80516052246094, + 235.4871368408203, + 146.25515747070312 + ], + "min":[ + -170.01210021972656, + 34.57501220703125, + -158.18685913085938 + ], + "type":"VEC3" + }, + { + "bufferView":2011, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":2012, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2013, + "componentType":5126, + "count":7731, + "max":[ + 496.304931640625, + 427.4638671875, + 103.785888671875 + ], + "min":[ + -496.30810546875, + -0.0009765625, + -103.7879638671875 + ], + "type":"VEC3" + }, + { + "bufferView":2014, + "componentType":5126, + "count":7731, + "type":"VEC3" + }, + { + "bufferView":2015, + "componentType":5126, + "count":7731, + "type":"VEC2" + }, + { + "bufferView":2016, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":2017, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":2018, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2019, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2020, + "componentType":5126, + "count":548, + "max":[ + 10.65591049194336, + 21.311786651611328, + 7.779087543487549 + ], + "min":[ + -10.65591049194336, + -2.956390380859375e-05, + -7.778796672821045 + ], + "type":"VEC3" + }, + { + "bufferView":2021, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":2022, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":2023, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":2024, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2025, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2026, + "componentType":5126, + "count":40, + "max":[ + 1.4143264293670654, + 10.517535209655762, + 5.258737564086914 + ], + "min":[ + -1.4143013954162598, + 6.0558319091796875e-05, + -5.258735179901123 + ], + "type":"VEC3" + }, + { + "bufferView":2027, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":2028, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":2029, + "componentType":5126, + "count":914, + "max":[ + 879.66015625, + 587.0332641601562, + 879.6592407226562 + ], + "min":[ + -879.658203125, + 3.0517578125e-05, + -879.6607055664062 + ], + "type":"VEC3" + }, + { + "bufferView":2030, + "componentType":5126, + "count":914, + "type":"VEC3" + }, + { + "bufferView":2031, + "componentType":5126, + "count":914, + "type":"VEC2" + }, + { + "bufferView":2032, + "componentType":5123, + "count":1440, + "type":"SCALAR" + }, + { + "bufferView":2033, + "componentType":5126, + "count":598, + "max":[ + 158.7805938720703, + 229.95777893066406, + 142.5860595703125 + ], + "min":[ + -165.98907470703125, + 33.735084533691406, + -154.51805114746094 + ], + "type":"VEC3" + }, + { + "bufferView":2034, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":2035, + "componentType":5126, + "count":560, + "max":[ + 147.62930297851562, + 101.31221008300781, + 153.6849365234375 + ], + "min":[ + -147.63272094726562, + -4.57763671875e-05, + -153.68499755859375 + ], + "type":"VEC3" + }, + { + "bufferView":2036, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":2037, + "componentType":5126, + "count":592, + "max":[ + 151.65382385253906, + 183.7174072265625, + 138.7682647705078 + ], + "min":[ + -151.6556854248047, + 0.000152587890625, + -138.76824951171875 + ], + "type":"VEC3" + }, + { + "bufferView":2038, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":2039, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2040, + "componentType":5126, + "count":580, + "max":[ + 184.51686096191406, + 32.82521057128906, + 184.51686096191406 + ], + "min":[ + -184.51705932617188, + 6.866455078125e-05, + -184.51707458496094 + ], + "type":"VEC3" + }, + { + "bufferView":2041, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":2042, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2043, + "componentType":5126, + "count":48, + "max":[ + 161.98095703125, + 658.67578125, + 366.1527099609375 + ], + "min":[ + -161.97900390625, + 0, + -366.1531982421875 + ], + "type":"VEC3" + }, + { + "bufferView":2044, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":2045, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":2046, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2047, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2048, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2049, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":2050, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2051, + "componentType":5126, + "count":125, + "max":[ + 3.8607020378112793, + 15.442765235900879, + 7.72133207321167 + ], + "min":[ + -3.8606443405151367, + 8.296966552734375e-05, + -7.721349239349365 + ], + "type":"VEC3" + }, + { + "bufferView":2052, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":2053, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":2054, + "componentType":5126, + "count":204, + "max":[ + 491.284912109375, + 2458.32470703125, + 168.4844512939453 + ], + "min":[ + -491.28839111328125, + 0, + -168.48477172851562 + ], + "type":"VEC3" + }, + { + "bufferView":2055, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":2056, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":2057, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":2058, + "componentType":5126, + "count":168, + "max":[ + 769.70751953125, + 113.19482421875, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.597412109375 + ], + "type":"VEC3" + }, + { + "bufferView":2059, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":2060, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":2061, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":2062, + "componentType":5126, + "count":559, + "max":[ + 224.27151489257812, + 448.5429992675781, + 224.27151489257812 + ], + "min":[ + -224.27151489257812, + -3.0517578125e-05, + -224.27151489257812 + ], + "type":"VEC3" + }, + { + "bufferView":2063, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":2064, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":2065, + "componentType":5126, + "count":794, + "max":[ + 4.1328125, + 90.58753204345703, + 34.45508575439453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":2066, + "componentType":5126, + "count":794, + "type":"VEC3" + }, + { + "bufferView":2067, + "componentType":5126, + "count":794, + "type":"VEC2" + }, + { + "bufferView":2068, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":2069, + "componentType":5126, + "count":11692, + "max":[ + 5504.0078125, + 2819.53125, + 2209.17724609375 + ], + "min":[ + -5504.005859375, + 0, + -2209.1767578125 + ], + "type":"VEC3" + }, + { + "bufferView":2070, + "componentType":5126, + "count":11692, + "type":"VEC3" + }, + { + "bufferView":2071, + "componentType":5126, + "count":11692, + "type":"VEC2" + }, + { + "bufferView":2072, + "componentType":5123, + "count":20058, + "type":"SCALAR" + }, + { + "bufferView":2073, + "componentType":5126, + "count":96, + "max":[ + 471.5029296875, + 2139.384521484375, + 31.14141845703125 + ], + "min":[ + -471.5068359375, + 0, + -31.14031982421875 + ], + "type":"VEC3" + }, + { + "bufferView":2074, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":2075, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":2076, + "componentType":5123, + "count":204, + "type":"SCALAR" + }, + { + "bufferView":2077, + "componentType":5126, + "count":590, + "max":[ + 169.0897216796875, + 204.03817749023438, + 154.66688537597656 + ], + "min":[ + -169.09251403808594, + -0.0001373291015625, + -154.66709899902344 + ], + "type":"VEC3" + }, + { + "bufferView":2078, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":2079, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2080, + "componentType":5126, + "count":586, + "max":[ + 207.89772033691406, + 214.4772491455078, + 174.92332458496094 + ], + "min":[ + -207.89891052246094, + 1.4530181884765625, + -187.20474243164062 + ], + "type":"VEC3" + }, + { + "bufferView":2081, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":2082, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2083, + "componentType":5126, + "count":54, + "max":[ + 217.04052734375, + 520.125244140625, + 29.798828125 + ], + "min":[ + -217.04150390625, + 0.000244140625, + -29.798828125 + ], + "type":"VEC3" + }, + { + "bufferView":2084, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":2085, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":2086, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":2087, + "componentType":5126, + "count":583, + "max":[ + 190.5502166748047, + 122.43497467041016, + 198.53147888183594 + ], + "min":[ + -190.5523681640625, + -0.000244140625, + -198.53155517578125 + ], + "type":"VEC3" + }, + { + "bufferView":2088, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":2089, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2090, + "componentType":5126, + "count":594, + "max":[ + 176.10647583007812, + 182.8994598388672, + 159.67335510253906 + ], + "min":[ + -176.10997009277344, + 1.223876953125, + -147.39260864257812 + ], + "type":"VEC3" + }, + { + "bufferView":2091, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":2092, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2093, + "componentType":5126, + "count":582, + "max":[ + 201.33372497558594, + 206.5514373779297, + 175.37945556640625 + ], + "min":[ + -201.3351287841797, + -6.103515625e-05, + -175.37960815429688 + ], + "type":"VEC3" + }, + { + "bufferView":2094, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":2095, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2096, + "componentType":5126, + "count":24, + "max":[ + 253.74276733398438, + 50, + 463.990234375 + ], + "min":[ + -253.74319458007812, + -8.255030479631387e-06, + -463.9902648925781 + ], + "type":"VEC3" + }, + { + "bufferView":2097, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2098, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":2099, + "componentType":5126, + "count":24, + "max":[ + 189.23095703125, + 33.600830078125, + 486.491943359375 + ], + "min":[ + -189.23193359375, + 0, + -486.48779296875 + ], + "type":"VEC3" + }, + { + "bufferView":2100, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2101, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2102, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92938232421875, + 384.1416015625 + ], + "min":[ + -245.232421875, + 0, + -384.1381530761719 + ], + "type":"VEC3" + }, + { + "bufferView":2103, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":2104, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":2105, + "componentType":5126, + "count":226, + "max":[ + 115.14127349853516, + 343.64044189453125, + 160.72271728515625 + ], + "min":[ + -115.14120483398438, + 26.062179565429688, + -159.38693237304688 + ], + "type":"VEC3" + }, + { + "bufferView":2106, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":2107, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":2108, + "componentType":5126, + "count":819, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45703887939453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":2109, + "componentType":5126, + "count":819, + "type":"VEC3" + }, + { + "bufferView":2110, + "componentType":5126, + "count":819, + "type":"VEC2" + }, + { + "bufferView":2111, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":2112, + "componentType":5126, + "count":548, + "max":[ + 7.779107093811035, + 21.312030792236328, + 10.655908584594727 + ], + "min":[ + -7.778767108917236, + 0.00021648406982421875, + -10.65590763092041 + ], + "type":"VEC3" + }, + { + "bufferView":2113, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":2114, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":2115, + "componentType":5126, + "count":1810, + "max":[ + 91.37361907958984, + 182.74708557128906, + 6.498456954956055 + ], + "min":[ + -91.3736801147461, + -0.0002288818359375, + -6.498532295227051 + ], + "type":"VEC3" + }, + { + "bufferView":2116, + "componentType":5126, + "count":1810, + "type":"VEC3" + }, + { + "bufferView":2117, + "componentType":5126, + "count":1810, + "type":"VEC2" + }, + { + "bufferView":2118, + "componentType":5123, + "count":9708, + "type":"SCALAR" + }, + { + "bufferView":2119, + "componentType":5126, + "count":582, + "max":[ + 198.53025817871094, + 205.1730499267578, + 179.0924530029297 + ], + "min":[ + -198.53277587890625, + 1.3856048583984375, + -166.81175231933594 + ], + "type":"VEC3" + }, + { + "bufferView":2120, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":2121, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2122, + "componentType":5126, + "count":92, + "max":[ + 824.2412109375, + 141.0703125, + 69.56982421875 + ], + "min":[ + -824.24072265625, + 0, + -69.570068359375 + ], + "type":"VEC3" + }, + { + "bufferView":2123, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":2124, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":2125, + "componentType":5126, + "count":8000, + "max":[ + 496.14697265625, + 429.962890625, + 103.78759765625 + ], + "min":[ + -496.14990234375, + -0.0009765625, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":2126, + "componentType":5126, + "count":8000, + "type":"VEC3" + }, + { + "bufferView":2127, + "componentType":5126, + "count":8000, + "type":"VEC2" + }, + { + "bufferView":2128, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":2129, + "componentType":5126, + "count":142, + "max":[ + 3.4518332481384277, + 18.94533348083496, + 9.472701072692871 + ], + "min":[ + -3.451733350753784, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":2130, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":2131, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":2132, + "componentType":5126, + "count":342, + "max":[ + 13.560523986816406, + 272.6591491699219, + 115.08645629882812 + ], + "min":[ + -13.560836791992188, + 42.486297607421875, + -115.08644104003906 + ], + "type":"VEC3" + }, + { + "bufferView":2133, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":2134, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2135, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2136, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2137, + "componentType":5126, + "count":113, + "max":[ + 31.29314422607422, + 15.511116027832031, + 6.5022430419921875 + ], + "min":[ + -31.29315757751465, + 9.202957153320312e-05, + -6.5029449462890625 + ], + "type":"VEC3" + }, + { + "bufferView":2138, + "componentType":5126, + "count":113, + "type":"VEC3" + }, + { + "bufferView":2139, + "componentType":5126, + "count":113, + "type":"VEC2" + }, + { + "bufferView":2140, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":2141, + "componentType":5126, + "count":598, + "max":[ + 146.6774139404297, + 32.8251953125, + 146.67767333984375 + ], + "min":[ + -146.67794799804688, + -7.2479248046875e-05, + -146.6776885986328 + ], + "type":"VEC3" + }, + { + "bufferView":2142, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":2143, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2144, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":2145, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":2146, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":2147, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2148, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2149, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2150, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76708984375, + 78.58447265625 + ], + "min":[ + -46.2822265625, + 0, + -78.586669921875 + ], + "type":"VEC3" + }, + { + "bufferView":2151, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2152, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2153, + "componentType":5126, + "count":480, + "max":[ + 762.228515625, + 1119.944091796875, + 104.78085327148438 + ], + "min":[ + -762.228515625, + 0, + -104.77841186523438 + ], + "type":"VEC3" + }, + { + "bufferView":2154, + "componentType":5126, + "count":480, + "type":"VEC3" + }, + { + "bufferView":2155, + "componentType":5126, + "count":480, + "type":"VEC2" + }, + { + "bufferView":2156, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":2157, + "componentType":5126, + "count":347, + "max":[ + 170.435546875, + 188.557861328125, + 176.20458984375 + ], + "min":[ + -170.43359375, + 45.296142578125, + -176.203125 + ], + "type":"VEC3" + }, + { + "bufferView":2158, + "componentType":5126, + "count":347, + "type":"VEC3" + }, + { + "bufferView":2159, + "componentType":5126, + "count":347, + "type":"VEC2" + }, + { + "bufferView":2160, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":2161, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.92919921875, + 90.004150390625 + ], + "min":[ + -433.1201171875, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":2162, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":2163, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":2164, + "componentType":5126, + "count":586, + "max":[ + 159.28961181640625, + 166.1944580078125, + 145.10928344726562 + ], + "min":[ + -159.29193115234375, + 1.1027297973632812, + -132.8280487060547 + ], + "type":"VEC3" + }, + { + "bufferView":2165, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":2166, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2167, + "componentType":5126, + "count":228, + "max":[ + 105.79638671875, + 2059.5048828125, + 105.798828125 + ], + "min":[ + -105.798828125, + 0, + -105.7998046875 + ], + "type":"VEC3" + }, + { + "bufferView":2168, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":2169, + "componentType":5126, + "count":228, + "type":"VEC2" + }, + { + "bufferView":2170, + "componentType":5126, + "count":88, + "max":[ + 50.1396484375, + 105.89306640625, + 891.34228515625 + ], + "min":[ + -50.139892578125, + 0, + -891.34228515625 + ], + "type":"VEC3" + }, + { + "bufferView":2171, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":2172, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":2173, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":2174, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":2175, + "componentType":5126, + "count":72, + "max":[ + 771.3452758789062, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.345703125, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":2176, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":2177, + "componentType":5126, + "count":136, + "max":[ + 49.03564453125, + 126.6884765625, + 80.153076171875 + ], + "min":[ + -49.03466796875, + 0, + -80.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":2178, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":2179, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":2180, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2181, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2182, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2183, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":2184, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2185, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2186, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.585693359375 + ], + "min":[ + -46.28466796875, + 0, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":2187, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2188, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2189, + "componentType":5126, + "count":488, + "max":[ + 879.658203125, + 587.0330810546875, + 879.6592407226562 + ], + "min":[ + -879.66015625, + 9.1552734375e-05, + -879.6607055664062 + ], + "type":"VEC3" + }, + { + "bufferView":2190, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":2191, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":2192, + "componentType":5123, + "count":1440, + "type":"SCALAR" + }, + { + "bufferView":2193, + "componentType":5126, + "count":46, + "max":[ + 366.15283203125, + 658.67578125, + 161.98095703125 + ], + "min":[ + -366.15234375, + 0, + -161.97900390625 + ], + "type":"VEC3" + }, + { + "bufferView":2194, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":2195, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":2196, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":2197, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2198, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2199, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2200, + "componentType":5126, + "count":229, + "max":[ + 105.80078125, + 2059.5048828125, + 105.79736328125 + ], + "min":[ + -105.7978515625, + 0, + -105.7978515625 + ], + "type":"VEC3" + }, + { + "bufferView":2201, + "componentType":5126, + "count":229, + "type":"VEC3" + }, + { + "bufferView":2202, + "componentType":5126, + "count":229, + "type":"VEC2" + }, + { + "bufferView":2203, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":2204, + "componentType":5126, + "count":24, + "max":[ + 83.760986328125, + 276.109375, + 88.3438720703125 + ], + "min":[ + -83.76171875, + 0, + -88.34375 + ], + "type":"VEC3" + }, + { + "bufferView":2205, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2206, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2207, + "componentType":5126, + "count":128, + "max":[ + 14.75390625, + 1869.349365234375, + 14.754638671875 + ], + "min":[ + -14.75390625, + -0.00054931640625, + -14.753173828125 + ], + "type":"VEC3" + }, + { + "bufferView":2208, + "componentType":5126, + "count":128, + "type":"VEC3" + }, + { + "bufferView":2209, + "componentType":5126, + "count":128, + "type":"VEC2" + }, + { + "bufferView":2210, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":2211, + "componentType":5126, + "count":112, + "max":[ + 24.40234375, + 122.79886627197266, + 61.587890625 + ], + "min":[ + -24.40625, + -0.0012054443359375, + -61.591796875 + ], + "type":"VEC3" + }, + { + "bufferView":2212, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":2213, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":2214, + "componentType":5123, + "count":144, + "type":"SCALAR" + }, + { + "bufferView":2215, + "componentType":5126, + "count":204, + "max":[ + 1587.1123046875, + 2084.53515625, + 185.61849975585938 + ], + "min":[ + -1587.1123046875, + -0.000244140625, + -185.61935424804688 + ], + "type":"VEC3" + }, + { + "bufferView":2216, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":2217, + "componentType":5123, + "count":1068, + "type":"SCALAR" + }, + { + "bufferView":2218, + "componentType":5126, + "count":48, + "max":[ + 127.44677734375, + 625.6328125, + 391.73681640625 + ], + "min":[ + -127.4404296875, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":2219, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":2220, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":2221, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":2222, + "componentType":5126, + "count":72, + "max":[ + 866.67041015625, + 1492.539794921875, + 22.500154495239258 + ], + "min":[ + -866.6709594726562, + 0, + -22.500308990478516 + ], + "type":"VEC3" + }, + { + "bufferView":2223, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":2224, + "componentType":5123, + "count":120, + "type":"SCALAR" + }, + { + "bufferView":2225, + "componentType":5126, + "count":574, + "max":[ + 152.2821502685547, + 159.23370361328125, + 126.75959777832031 + ], + "min":[ + -152.2848663330078, + 1.0520401000976562, + -139.04074096679688 + ], + "type":"VEC3" + }, + { + "bufferView":2226, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":2227, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2228, + "componentType":5126, + "count":4802, + "max":[ + 91.37360382080078, + 182.74732971191406, + 6.498558044433594 + ], + "min":[ + -91.37369537353516, + 1.52587890625e-05, + -6.498471260070801 + ], + "type":"VEC3" + }, + { + "bufferView":2229, + "componentType":5126, + "count":4802, + "type":"VEC3" + }, + { + "bufferView":2230, + "componentType":5126, + "count":4802, + "type":"VEC2" + }, + { + "bufferView":2231, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7294979095459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":2232, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":2233, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":2234, + "componentType":5126, + "count":276, + "max":[ + 175.05322265625, + 196.21435546875, + 169.1064453125 + ], + "min":[ + -175.0537109375, + 0, + -169.107421875 + ], + "type":"VEC3" + }, + { + "bufferView":2235, + "componentType":5126, + "count":276, + "type":"VEC3" + }, + { + "bufferView":2236, + "componentType":5126, + "count":276, + "type":"VEC2" + }, + { + "bufferView":2237, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":2238, + "componentType":5126, + "count":72, + "max":[ + 771.3452758789062, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.345703125, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":2239, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":2240, + "componentType":5126, + "count":600, + "max":[ + 152.2848663330078, + 32.825313568115234, + 152.28347778320312 + ], + "min":[ + -152.2821502685547, + 0.00012969970703125, + -152.28353881835938 + ], + "type":"VEC3" + }, + { + "bufferView":2241, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":2242, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2243, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76708984375, + 78.5859375 + ], + "min":[ + -46.2822265625, + 0, + -78.58447265625 + ], + "type":"VEC3" + }, + { + "bufferView":2244, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2245, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2246, + "componentType":5126, + "count":144, + "max":[ + 428.9188232421875, + 1017.9165649414062, + 642.9835205078125 + ], + "min":[ + -428.9180603027344, + 9.1552734375e-05, + -642.9835815429688 + ], + "type":"VEC3" + }, + { + "bufferView":2247, + "componentType":5126, + "count":144, + "type":"VEC3" + }, + { + "bufferView":2248, + "componentType":5123, + "count":276, + "type":"SCALAR" + }, + { + "bufferView":2249, + "componentType":5126, + "count":574, + "max":[ + 190.55020141601562, + 229.0487518310547, + 174.23463439941406 + ], + "min":[ + -190.55238342285156, + -0.0001068115234375, + -174.23463439941406 + ], + "type":"VEC3" + }, + { + "bufferView":2250, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":2251, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2252, + "componentType":5126, + "count":586, + "max":[ + 159.70298767089844, + 107.06523132324219, + 166.29798889160156 + ], + "min":[ + -159.70166015625, + 0, + -166.29811096191406 + ], + "type":"VEC3" + }, + { + "bufferView":2253, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":2254, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2255, + "componentType":5126, + "count":121, + "max":[ + 7.34515380859375, + 706.9150390625, + 7.3455810546875 + ], + "min":[ + -7.34600830078125, + 0, + -7.3455810546875 + ], + "type":"VEC3" + }, + { + "bufferView":2256, + "componentType":5126, + "count":121, + "type":"VEC3" + }, + { + "bufferView":2257, + "componentType":5126, + "count":121, + "type":"VEC2" + }, + { + "bufferView":2258, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":2259, + "componentType":5126, + "count":574, + "max":[ + 162.09307861328125, + 32.825321197509766, + 162.09364318847656 + ], + "min":[ + -162.0943145751953, + -7.2479248046875e-05, + -162.09371948242188 + ], + "type":"VEC3" + }, + { + "bufferView":2260, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":2261, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2262, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2263, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2264, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2265, + "componentType":5126, + "count":56, + "max":[ + 30.0029296875, + 483.89794921875, + 238.478515625 + ], + "min":[ + -29.998046875, + 0, + -238.4794921875 + ], + "type":"VEC3" + }, + { + "bufferView":2266, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":2267, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":2268, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":2269, + "componentType":5126, + "count":112, + "max":[ + 126.77018737792969, + 84.0594711303711, + 126.77018737792969 + ], + "min":[ + -126.77018737792969, + 0, + -126.7702865600586 + ], + "type":"VEC3" + }, + { + "bufferView":2270, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":2271, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2272, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2273, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2274, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2275, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2276, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2277, + "componentType":5126, + "count":24, + "max":[ + 110.00021362304688, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534164175624028, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":2278, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2279, + "componentType":5126, + "count":239, + "max":[ + 169.070556640625, + 185.2353515625, + 172.5966796875 + ], + "min":[ + -169.070556640625, + -0.00048828125, + -172.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":2280, + "componentType":5126, + "count":239, + "type":"VEC3" + }, + { + "bufferView":2281, + "componentType":5126, + "count":239, + "type":"VEC2" + }, + { + "bufferView":2282, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":2283, + "componentType":5126, + "count":8046, + "max":[ + 103.78759765625, + 1010.39453125, + 180.1181640625 + ], + "min":[ + -103.78662109375, + 12.32421875, + -180.12109375 + ], + "type":"VEC3" + }, + { + "bufferView":2284, + "componentType":5126, + "count":8046, + "type":"VEC3" + }, + { + "bufferView":2285, + "componentType":5126, + "count":8046, + "type":"VEC2" + }, + { + "bufferView":2286, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":2287, + "componentType":5126, + "count":7731, + "max":[ + 496.304931640625, + 427.4638671875, + 103.785888671875 + ], + "min":[ + -496.30810546875, + -0.0009765625, + -103.7879638671875 + ], + "type":"VEC3" + }, + { + "bufferView":2288, + "componentType":5126, + "count":7731, + "type":"VEC3" + }, + { + "bufferView":2289, + "componentType":5126, + "count":7731, + "type":"VEC2" + }, + { + "bufferView":2290, + "componentType":5126, + "count":597, + "max":[ + 146.71078491210938, + 213.36920166015625, + 131.57933044433594 + ], + "min":[ + -153.9162139892578, + 31.214935302734375, + -143.5111541748047 + ], + "type":"VEC3" + }, + { + "bufferView":2291, + "componentType":5126, + "count":597, + "type":"VEC3" + }, + { + "bufferView":2292, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2293, + "componentType":5126, + "count":224, + "max":[ + 115.1412124633789, + 258.98175048828125, + 118.72059631347656 + ], + "min":[ + -115.14129638671875, + 28.69927978515625, + -118.72099304199219 + ], + "type":"VEC3" + }, + { + "bufferView":2294, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":2295, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":2296, + "componentType":5126, + "count":92, + "max":[ + 31.27215576171875, + 267.8876953125, + 51.744384765625 + ], + "min":[ + -31.22821044921875, + 0, + -51.582763671875 + ], + "type":"VEC3" + }, + { + "bufferView":2297, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":2298, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":2299, + "componentType":5123, + "count":150, + "type":"SCALAR" + }, + { + "bufferView":2300, + "componentType":5126, + "count":347, + "max":[ + 171.298828125, + 184.80615234375, + 176.140625 + ], + "min":[ + -171.296875, + 44.45703125, + -176.14111328125 + ], + "type":"VEC3" + }, + { + "bufferView":2301, + "componentType":5126, + "count":347, + "type":"VEC3" + }, + { + "bufferView":2302, + "componentType":5126, + "count":347, + "type":"VEC2" + }, + { + "bufferView":2303, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":2304, + "componentType":5126, + "count":528, + "max":[ + 19.8046875, + 2637.3974609375, + 722.719482421875 + ], + "min":[ + -19.80078125, + 0, + -722.72314453125 + ], + "type":"VEC3" + }, + { + "bufferView":2305, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":2306, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":2307, + "componentType":5123, + "count":864, + "type":"SCALAR" + }, + { + "bufferView":2308, + "componentType":5126, + "count":60, + "max":[ + 2752.0009765625, + 2819.531005859375, + 1436.7666015625 + ], + "min":[ + -2752.0029296875, + 0, + -1436.763671875 + ], + "type":"VEC3" + }, + { + "bufferView":2309, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":2310, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":2311, + "componentType":5123, + "count":90, + "type":"SCALAR" + }, + { + "bufferView":2312, + "componentType":5126, + "count":82, + "max":[ + 5.782173156738281, + 27.783470153808594, + 5.7820587158203125 + ], + "min":[ + -5.782069683074951, + -0.0002994537353515625, + -5.782153129577637 + ], + "type":"VEC3" + }, + { + "bufferView":2313, + "componentType":5126, + "count":82, + "type":"VEC3" + }, + { + "bufferView":2314, + "componentType":5126, + "count":82, + "type":"VEC2" + }, + { + "bufferView":2315, + "componentType":5126, + "count":24, + "max":[ + 29.8388671875, + 320.322265625, + 219.6572265625 + ], + "min":[ + -29.83935546875, + 0, + -219.654296875 + ], + "type":"VEC3" + }, + { + "bufferView":2316, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2317, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2318, + "componentType":5126, + "count":264, + "max":[ + 175.05322265625, + 196.21435546875, + 169.1068115234375 + ], + "min":[ + -175.0537109375, + 0, + -169.10693359375 + ], + "type":"VEC3" + }, + { + "bufferView":2319, + "componentType":5126, + "count":264, + "type":"VEC3" + }, + { + "bufferView":2320, + "componentType":5126, + "count":264, + "type":"VEC2" + }, + { + "bufferView":2321, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":2322, + "componentType":5126, + "count":265, + "max":[ + 174.40869140625, + 193.25439453125, + 169.0625 + ], + "min":[ + -174.408203125, + 0, + -169.0634765625 + ], + "type":"VEC3" + }, + { + "bufferView":2323, + "componentType":5126, + "count":265, + "type":"VEC3" + }, + { + "bufferView":2324, + "componentType":5126, + "count":265, + "type":"VEC2" + }, + { + "bufferView":2325, + "componentType":5126, + "count":238, + "max":[ + 400.0077209472656, + 1934.1334228515625, + 603.1019287109375 + ], + "min":[ + -400.009521484375, + 0.0001678466796875, + -603.101806640625 + ], + "type":"VEC3" + }, + { + "bufferView":2326, + "componentType":5126, + "count":238, + "type":"VEC3" + }, + { + "bufferView":2327, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":2328, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2329, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2330, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2331, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":2332, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2333, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2334, + "componentType":5126, + "count":160, + "max":[ + 769.70751953125, + 113.194580078125, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0, + -56.5966796875 + ], + "type":"VEC3" + }, + { + "bufferView":2335, + "componentType":5126, + "count":160, + "type":"VEC3" + }, + { + "bufferView":2336, + "componentType":5126, + "count":160, + "type":"VEC2" + }, + { + "bufferView":2337, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":2338, + "componentType":5126, + "count":224, + "max":[ + 118.72061157226562, + 230.70252990722656, + 115.3511962890625 + ], + "min":[ + -118.72098541259766, + 1.52587890625e-05, + -115.35124969482422 + ], + "type":"VEC3" + }, + { + "bufferView":2339, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":2340, + "componentType":5126, + "count":352, + "max":[ + 170.90625, + 157.00439453125, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":2341, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":2342, + "componentType":5126, + "count":352, + "type":"VEC2" + }, + { + "bufferView":2343, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":2344, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":2345, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2346, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2347, + "componentType":5126, + "count":548, + "max":[ + 10.65591049194336, + 21.311786651611328, + 7.779087543487549 + ], + "min":[ + -10.65591049194336, + -2.956390380859375e-05, + -7.778796672821045 + ], + "type":"VEC3" + }, + { + "bufferView":2348, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":2349, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":2350, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92938232421875, + 384.1394348144531 + ], + "min":[ + -245.232421875, + 0.0001068115234375, + -384.1411437988281 + ], + "type":"VEC3" + }, + { + "bufferView":2351, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":2352, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":2353, + "componentType":5126, + "count":572, + "max":[ + 202.81089782714844, + 129.75909423828125, + 211.3399658203125 + ], + "min":[ + -202.80819702148438, + -7.62939453125e-05, + -211.3398895263672 + ], + "type":"VEC3" + }, + { + "bufferView":2354, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":2355, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2356, + "componentType":5126, + "count":48, + "max":[ + 142.32080078125, + 608.220703125, + 391.7376708984375 + ], + "min":[ + -142.32177734375, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":2357, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":2358, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":2359, + "componentType":5126, + "count":7991, + "max":[ + 496.1484375, + 429.9638671875, + 103.787109375 + ], + "min":[ + -496.148681640625, + 0, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":2360, + "componentType":5126, + "count":7991, + "type":"VEC3" + }, + { + "bufferView":2361, + "componentType":5126, + "count":7991, + "type":"VEC2" + }, + { + "bufferView":2362, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":2363, + "componentType":5126, + "count":588, + "max":[ + 189.62779235839844, + 272.3504638671875, + 170.71463012695312 + ], + "min":[ + -196.83981323242188, + 40.17518615722656, + -182.64645385742188 + ], + "type":"VEC3" + }, + { + "bufferView":2364, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":2365, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2366, + "componentType":5126, + "count":88, + "max":[ + 30.2646484375, + 32.2474365234375, + 126.459716796875 + ], + "min":[ + -30.26513671875, + -0.0003662109375, + -126.45947265625 + ], + "type":"VEC3" + }, + { + "bufferView":2367, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":2368, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":2369, + "componentType":5123, + "count":132, + "type":"SCALAR" + }, + { + "bufferView":2370, + "componentType":5126, + "count":582, + "max":[ + 166.40670776367188, + 200.91189575195312, + 152.2208251953125 + ], + "min":[ + -166.41055297851562, + -0.0001678466796875, + -152.2212371826172 + ], + "type":"VEC3" + }, + { + "bufferView":2371, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":2372, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2373, + "componentType":5126, + "count":586, + "max":[ + 159.70298767089844, + 107.06523132324219, + 166.29811096191406 + ], + "min":[ + -159.70166015625, + 0, + -166.29798889160156 + ], + "type":"VEC3" + }, + { + "bufferView":2374, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":2375, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2376, + "componentType":5126, + "count":24, + "max":[ + 1591.97802734375, + 151.70169067382812, + 2273.5595703125 + ], + "min":[ + -1591.9786376953125, + 0.000125885009765625, + -2273.557861328125 + ], + "type":"VEC3" + }, + { + "bufferView":2377, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2378, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2379, + "componentType":5126, + "count":584, + "max":[ + 170.50344848632812, + 176.1476593017578, + 148.67823791503906 + ], + "min":[ + -170.50135803222656, + 0.00014495849609375, + -148.6782684326172 + ], + "type":"VEC3" + }, + { + "bufferView":2380, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":2381, + "componentType":5126, + "count":24, + "max":[ + 110.00012969970703, + 50, + 584.662109375 + ], + "min":[ + -110.00007629394531, + 0, + -584.666015625 + ], + "type":"VEC3" + }, + { + "bufferView":2382, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2383, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2384, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2385, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2386, + "componentType":5126, + "count":192, + "max":[ + 1200.74609375, + 3214.572998046875, + 5340.66455078125 + ], + "min":[ + -1200.7451171875, + 0, + -5340.6669921875 + ], + "type":"VEC3" + }, + { + "bufferView":2387, + "componentType":5126, + "count":192, + "type":"VEC3" + }, + { + "bufferView":2388, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":2389, + "componentType":5123, + "count":390, + "type":"SCALAR" + }, + { + "bufferView":2390, + "componentType":5126, + "count":120, + "max":[ + 2516.54052734375, + 2819.531005859375, + 1401.30126953125 + ], + "min":[ + -2516.540283203125, + 0, + -1401.30126953125 + ], + "type":"VEC3" + }, + { + "bufferView":2391, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":2392, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":2393, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":2394, + "componentType":5126, + "count":204, + "max":[ + 1587.1123046875, + 2084.53515625, + 185.61898803710938 + ], + "min":[ + -1587.1123046875, + -0.000244140625, + -185.61886596679688 + ], + "type":"VEC3" + }, + { + "bufferView":2395, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":2396, + "componentType":5126, + "count":580, + "max":[ + 195.72679138183594, + 201.02346801757812, + 170.52468872070312 + ], + "min":[ + -195.7303924560547, + -1.52587890625e-05, + -170.52474975585938 + ], + "type":"VEC3" + }, + { + "bufferView":2397, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":2398, + "componentType":5126, + "count":570, + "max":[ + 325.56951904296875, + 210.5472412109375, + 325.56951904296875 + ], + "min":[ + -325.56951904296875, + -4.842902490054257e-05, + -325.5695495605469 + ], + "type":"VEC3" + }, + { + "bufferView":2399, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":2400, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2401, + "componentType":5126, + "count":802, + "max":[ + 4.1328125, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":2402, + "componentType":5126, + "count":802, + "type":"VEC3" + }, + { + "bufferView":2403, + "componentType":5126, + "count":802, + "type":"VEC2" + }, + { + "bufferView":2404, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":2405, + "componentType":5126, + "count":574, + "max":[ + 149.48141479492188, + 156.44998168945312, + 136.61312866210938 + ], + "min":[ + -149.47979736328125, + 1.0324554443359375, + -124.33244323730469 + ], + "type":"VEC3" + }, + { + "bufferView":2406, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":2407, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2408, + "componentType":5126, + "count":618, + "max":[ + 56.70086669921875, + 172.07470703125, + 23.860042572021484 + ], + "min":[ + -56.70069885253906, + 5.340576171875e-05, + -23.860008239746094 + ], + "type":"VEC3" + }, + { + "bufferView":2409, + "componentType":5126, + "count":618, + "type":"VEC3" + }, + { + "bufferView":2410, + "componentType":5126, + "count":618, + "type":"VEC2" + }, + { + "bufferView":2411, + "componentType":5126, + "count":592, + "max":[ + 179.8218994140625, + 216.54360961914062, + 164.4510040283203 + ], + "min":[ + -179.82052612304688, + 1.52587890625e-05, + -164.4506378173828 + ], + "type":"VEC3" + }, + { + "bufferView":2412, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":2413, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2414, + "componentType":5126, + "count":254, + "max":[ + 175.0537109375, + 196.214111328125, + 169.107421875 + ], + "min":[ + -175.05322265625, + 0, + -169.107421875 + ], + "type":"VEC3" + }, + { + "bufferView":2415, + "componentType":5126, + "count":254, + "type":"VEC3" + }, + { + "bufferView":2416, + "componentType":5126, + "count":254, + "type":"VEC2" + }, + { + "bufferView":2417, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":2418, + "componentType":5126, + "count":582, + "max":[ + 202.73544311523438, + 207.93344116210938, + 176.59315490722656 + ], + "min":[ + -202.73629760742188, + -4.57763671875e-05, + -176.59327697753906 + ], + "type":"VEC3" + }, + { + "bufferView":2419, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":2420, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2421, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.14447021484375, + 360.8974609375 + ], + "min":[ + -8.34619140625, + 0.00030517578125, + -360.897216796875 + ], + "type":"VEC3" + }, + { + "bufferView":2422, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2423, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2424, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92926025390625, + 384.57861328125 + ], + "min":[ + -244.466796875, + 0, + -384.5820007324219 + ], + "type":"VEC3" + }, + { + "bufferView":2425, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":2426, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":2427, + "componentType":5123, + "count":2472, + "type":"SCALAR" + }, + { + "bufferView":2428, + "componentType":5126, + "count":4, + "max":[ + 698.884765625, + 2586.479248046875, + 0.00022611767053604126 + ], + "min":[ + -698.88671875, + 0, + -0.00022611767053604126 + ], + "type":"VEC3" + }, + { + "bufferView":2429, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2430, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2431, + "componentType":5126, + "count":578, + "max":[ + 206.177734375, + 211.3273468017578, + 179.5736846923828 + ], + "min":[ + -206.17726135253906, + 1.52587890625e-05, + -179.57379150390625 + ], + "type":"VEC3" + }, + { + "bufferView":2432, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":2433, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2434, + "componentType":5126, + "count":573, + "max":[ + 177.13888549804688, + 213.41726684570312, + 162.00485229492188 + ], + "min":[ + -177.13851928710938, + -7.62939453125e-05, + -162.00485229492188 + ], + "type":"VEC3" + }, + { + "bufferView":2435, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":2436, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2437, + "componentType":5126, + "count":354, + "max":[ + 139.8675537109375, + 261.595947265625, + 138.3521728515625 + ], + "min":[ + -139.86651611328125, + 28.96728515625, + -138.352294921875 + ], + "type":"VEC3" + }, + { + "bufferView":2438, + "componentType":5126, + "count":354, + "type":"VEC3" + }, + { + "bufferView":2439, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":2440, + "componentType":5126, + "count":578, + "max":[ + 162.0943145751953, + 167.85540771484375, + 141.39601135253906 + ], + "min":[ + -162.09307861328125, + -0.00014495849609375, + -141.39602661132812 + ], + "type":"VEC3" + }, + { + "bufferView":2441, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":2442, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2443, + "componentType":5126, + "count":1333, + "max":[ + 8.997692108154297, + 48.001651763916016, + 23.86931610107422 + ], + "min":[ + -8.997540473937988, + 0.0001125335693359375, + -23.869264602661133 + ], + "type":"VEC3" + }, + { + "bufferView":2444, + "componentType":5126, + "count":1333, + "type":"VEC3" + }, + { + "bufferView":2445, + "componentType":5126, + "count":1333, + "type":"VEC2" + }, + { + "bufferView":2446, + "componentType":5126, + "count":586, + "max":[ + 204.76707458496094, + 129.62484741210938, + 209.6189422607422 + ], + "min":[ + -197.5582275390625, + 0.8496246337890625, + -209.6193084716797 + ], + "type":"VEC3" + }, + { + "bufferView":2447, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":2448, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2449, + "componentType":5126, + "count":559, + "max":[ + 223.19976806640625, + 577.9196166992188, + 223.60577392578125 + ], + "min":[ + -223.19972229003906, + 131.63946533203125, + -223.6057586669922 + ], + "type":"VEC3" + }, + { + "bufferView":2450, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":2451, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":2452, + "componentType":5126, + "count":90, + "max":[ + 63.2647705078125, + 120.08056640625, + 818.853759765625 + ], + "min":[ + -63.265380859375, + -0.000244140625, + -818.85205078125 + ], + "type":"VEC3" + }, + { + "bufferView":2453, + "componentType":5126, + "count":90, + "type":"VEC3" + }, + { + "bufferView":2454, + "componentType":5126, + "count":90, + "type":"VEC2" + }, + { + "bufferView":2455, + "componentType":5123, + "count":180, + "type":"SCALAR" + }, + { + "bufferView":2456, + "componentType":5126, + "count":125, + "max":[ + 3.8607170581817627, + 15.442764282226562, + 7.721338748931885 + ], + "min":[ + -3.860625743865967, + 8.249282836914062e-05, + -7.721341609954834 + ], + "type":"VEC3" + }, + { + "bufferView":2457, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":2458, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":2459, + "componentType":5126, + "count":340, + "max":[ + 13.560844421386719, + 230.70252990722656, + 115.35120391845703 + ], + "min":[ + -13.560531616210938, + 3.814697265625e-05, + -115.35125732421875 + ], + "type":"VEC3" + }, + { + "bufferView":2460, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":2461, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":2462, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":2463, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2464, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2465, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":2466, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":2467, + "componentType":5126, + "count":76, + "max":[ + 278.8729553222656, + 3543.081787109375, + 279.1054382324219 + ], + "min":[ + -278.8734436035156, + 0, + -279.1072998046875 + ], + "type":"VEC3" + }, + { + "bufferView":2468, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":2469, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":2470, + "componentType":5126, + "count":1048, + "max":[ + 29.78515625, + 254.306640625, + 90.1090087890625 + ], + "min":[ + -29.787109375, + 1.31201171875, + -90.109130859375 + ], + "type":"VEC3" + }, + { + "bufferView":2471, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":2472, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":2473, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":2474, + "componentType":5126, + "count":125, + "max":[ + 3.8607170581817627, + 15.442764282226562, + 7.721338748931885 + ], + "min":[ + -3.860625743865967, + 8.249282836914062e-05, + -7.721341609954834 + ], + "type":"VEC3" + }, + { + "bufferView":2475, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":2476, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":2477, + "componentType":5126, + "count":224, + "max":[ + 118.72059631347656, + 272.6591491699219, + 115.08648681640625 + ], + "min":[ + -118.72098541259766, + 42.48627471923828, + -115.08644104003906 + ], + "type":"VEC3" + }, + { + "bufferView":2478, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":2479, + "componentType":5126, + "count":24, + "max":[ + 27.19384765625, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":2480, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2481, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2482, + "componentType":5126, + "count":196, + "max":[ + 13.25390625, + 75.7955093383789, + 25.506591796875 + ], + "min":[ + -13.24951171875, + 1.4826422557234764e-05, + -25.497802734375 + ], + "type":"VEC3" + }, + { + "bufferView":2483, + "componentType":5126, + "count":196, + "type":"VEC3" + }, + { + "bufferView":2484, + "componentType":5126, + "count":196, + "type":"VEC2" + }, + { + "bufferView":2485, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":2486, + "componentType":5126, + "count":586, + "max":[ + 183.11587524414062, + 32.825252532958984, + 183.1154022216797 + ], + "min":[ + -183.11512756347656, + 3.814697265625e-05, + -183.11566162109375 + ], + "type":"VEC3" + }, + { + "bufferView":2487, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":2488, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2489, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2490, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2491, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2492, + "componentType":5126, + "count":582, + "max":[ + 773.818359375, + 1124.222900390625, + 31.93008041381836 + ], + "min":[ + -773.8203125, + 0, + -31.93349838256836 + ], + "type":"VEC3" + }, + { + "bufferView":2493, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":2494, + "componentType":5126, + "count":582, + "type":"VEC2" + }, + { + "bufferView":2495, + "componentType":5123, + "count":582, + "type":"SCALAR" + }, + { + "bufferView":2496, + "componentType":5126, + "count":353, + "max":[ + 170.4345703125, + 188.55419921875, + 176.20361328125 + ], + "min":[ + -170.4345703125, + 45.29638671875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":2497, + "componentType":5126, + "count":353, + "type":"VEC3" + }, + { + "bufferView":2498, + "componentType":5126, + "count":353, + "type":"VEC2" + }, + { + "bufferView":2499, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":2500, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.45654296875, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.000732421875, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":2501, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":2502, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":2503, + "componentType":5126, + "count":580, + "max":[ + 172.19187927246094, + 248.38929748535156, + 154.8158721923828 + ], + "min":[ + -179.40296936035156, + 36.535125732421875, + -166.7477569580078 + ], + "type":"VEC3" + }, + { + "bufferView":2504, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":2505, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2506, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4549560546875, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.00048828125, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":2507, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":2508, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":2509, + "componentType":5126, + "count":1050, + "max":[ + 90.1090087890625, + 76.19921875, + 125.22607421875 + ], + "min":[ + -90.109130859375, + 0, + -125.22607421875 + ], + "type":"VEC3" + }, + { + "bufferView":2510, + "componentType":5126, + "count":1050, + "type":"VEC3" + }, + { + "bufferView":2511, + "componentType":5126, + "count":1050, + "type":"VEC2" + }, + { + "bufferView":2512, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":2513, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2514, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2515, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2516, + "componentType":5126, + "count":208, + "max":[ + 33.402587890625, + 133.6083984375, + 66.80419921875 + ], + "min":[ + -33.4019775390625, + 0, + -66.804443359375 + ], + "type":"VEC3" + }, + { + "bufferView":2517, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":2518, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":2519, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":2520, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92926025390625, + 384.1416015625 + ], + "min":[ + -245.232421875, + -6.103515625e-05, + -384.1381530761719 + ], + "type":"VEC3" + }, + { + "bufferView":2521, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":2522, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":2523, + "componentType":5126, + "count":168, + "max":[ + 54934.49609375, + 24.990116119384766, + 44918.49609375 + ], + "min":[ + -54934.49609375, + 0.00011730194091796875, + -44918.49609375 + ], + "type":"VEC3" + }, + { + "bufferView":2524, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":2525, + "componentType":5123, + "count":552, + "type":"SCALAR" + }, + { + "bufferView":2526, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":2527, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":2528, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.585693359375 + ], + "min":[ + -46.284423828125, + 0, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":2529, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2530, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2531, + "componentType":5126, + "count":1420, + "max":[ + 245.232421875, + 367.92926025390625, + 384.1394348144531 + ], + "min":[ + -245.234375, + 4.57763671875e-05, + -384.1411437988281 + ], + "type":"VEC3" + }, + { + "bufferView":2532, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":2533, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":2534, + "componentType":5126, + "count":50, + "max":[ + 391.736328125, + 608.220703125, + 142.32275390625 + ], + "min":[ + -391.73779296875, + 0, + -142.31982421875 + ], + "type":"VEC3" + }, + { + "bufferView":2535, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":2536, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":2537, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":2538, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2539, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2540, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2541, + "componentType":5126, + "count":142, + "max":[ + 19.6142578125, + 12069.2861328125, + 437.37841796875 + ], + "min":[ + -19.6142578125, + 0.00054931640625, + -437.379150390625 + ], + "type":"VEC3" + }, + { + "bufferView":2542, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":2543, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":2544, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":2545, + "componentType":5126, + "count":161, + "max":[ + 437.3779296875, + 12069.2890625, + 19.61474609375 + ], + "min":[ + -437.3779296875, + 0.000640869140625, + -19.61376953125 + ], + "type":"VEC3" + }, + { + "bufferView":2546, + "componentType":5126, + "count":161, + "type":"VEC3" + }, + { + "bufferView":2547, + "componentType":5126, + "count":161, + "type":"VEC2" + }, + { + "bufferView":2548, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":2549, + "componentType":5126, + "count":570, + "max":[ + 163.4947967529297, + 169.23770141601562, + 142.60977172851562 + ], + "min":[ + -163.4954833984375, + 0.00016021728515625, + -142.6097412109375 + ], + "type":"VEC3" + }, + { + "bufferView":2550, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":2551, + "componentType":5126, + "count":204, + "max":[ + 2702.69140625, + 2451.67333984375, + 175.64503479003906 + ], + "min":[ + -2702.69287109375, + 0, + -175.64422607421875 + ], + "type":"VEC3" + }, + { + "bufferView":2552, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":2553, + "componentType":5123, + "count":1068, + "type":"SCALAR" + }, + { + "bufferView":2554, + "componentType":5126, + "count":51, + "max":[ + 123.61669921875, + 696.755859375, + 366.15283203125 + ], + "min":[ + -123.61181640625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":2555, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":2556, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":2557, + "componentType":5126, + "count":350, + "max":[ + 171.2998046875, + 184.8046875, + 176.140625 + ], + "min":[ + -171.296875, + 44.45751953125, + -176.1416015625 + ], + "type":"VEC3" + }, + { + "bufferView":2558, + "componentType":5126, + "count":350, + "type":"VEC3" + }, + { + "bufferView":2559, + "componentType":5126, + "count":350, + "type":"VEC2" + }, + { + "bufferView":2560, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":2561, + "componentType":5126, + "count":92, + "max":[ + 34.716796875, + 88.515625, + 25.14129638671875 + ], + "min":[ + -34.716796875, + 0.000244140625, + -25.14013671875 + ], + "type":"VEC3" + }, + { + "bufferView":2562, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":2563, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":2564, + "componentType":5123, + "count":204, + "type":"SCALAR" + }, + { + "bufferView":2565, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.58544921875 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":2566, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2567, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2568, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7294979095459 + ], + "min":[ + -43.587890625, + 0.000118255615234375, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":2569, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":2570, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":2571, + "componentType":5126, + "count":136, + "max":[ + 824.2421875, + 156.626220703125, + 69.5703125 + ], + "min":[ + -824.24169921875, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":2572, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":2573, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":2574, + "componentType":5126, + "count":12, + "max":[ + 10.2607421875, + 419.39984130859375, + 443.6836242675781 + ], + "min":[ + -10.259765625, + 0.0001678466796875, + -443.6855773925781 + ], + "type":"VEC3" + }, + { + "bufferView":2575, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2576, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2577, + "componentType":5123, + "count":18, + "type":"SCALAR" + }, + { + "bufferView":2578, + "componentType":5126, + "count":573, + "max":[ + 150.8831329345703, + 32.8253173828125, + 150.8820343017578 + ], + "min":[ + -150.88096618652344, + 1.52587890625e-05, + -150.882080078125 + ], + "type":"VEC3" + }, + { + "bufferView":2579, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":2580, + "componentType":5126, + "count":133, + "max":[ + 80.153076171875, + 126.6884765625, + 49.0341796875 + ], + "min":[ + -80.153076171875, + 0, + -49.0361328125 + ], + "type":"VEC3" + }, + { + "bufferView":2581, + "componentType":5126, + "count":133, + "type":"VEC3" + }, + { + "bufferView":2582, + "componentType":5126, + "count":133, + "type":"VEC2" + }, + { + "bufferView":2583, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":2584, + "componentType":5126, + "count":166, + "max":[ + 769.70751953125, + 113.19482421875, + 56.5966796875 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.59814453125 + ], + "type":"VEC3" + }, + { + "bufferView":2585, + "componentType":5126, + "count":166, + "type":"VEC3" + }, + { + "bufferView":2586, + "componentType":5126, + "count":166, + "type":"VEC2" + }, + { + "bufferView":2587, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":2588, + "componentType":5126, + "count":586, + "max":[ + 146.29168701171875, + 100.67314147949219, + 152.28347778320312 + ], + "min":[ + -146.2877960205078, + 0.00011444091796875, + -152.28353881835938 + ], + "type":"VEC3" + }, + { + "bufferView":2589, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":2590, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2591, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2592, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2593, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2594, + "componentType":5126, + "count":289, + "max":[ + 23.693767547607422, + 267.57562255859375, + 235.9654541015625 + ], + "min":[ + -23.283103942871094, + -3.0517578125e-05, + -235.92587280273438 + ], + "type":"VEC3" + }, + { + "bufferView":2595, + "componentType":5126, + "count":289, + "type":"VEC3" + }, + { + "bufferView":2596, + "componentType":5126, + "count":289, + "type":"VEC2" + }, + { + "bufferView":2597, + "componentType":5123, + "count":645, + "type":"SCALAR" + }, + { + "bufferView":2598, + "componentType":5126, + "count":48, + "max":[ + 756.610107421875, + 2198.73388671875, + 58.382938385009766 + ], + "min":[ + -756.6087036132812, + 0, + -58.38294219970703 + ], + "type":"VEC3" + }, + { + "bufferView":2599, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":2600, + "componentType":5123, + "count":72, + "type":"SCALAR" + }, + { + "bufferView":2601, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2602, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2603, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2604, + "componentType":5126, + "count":24, + "max":[ + 151.57354736328125, + 224.481201171875, + 158.55458068847656 + ], + "min":[ + -151.57440185546875, + -0.000244140625, + -158.5546875 + ], + "type":"VEC3" + }, + { + "bufferView":2605, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2606, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2607, + "componentType":5126, + "count":559, + "max":[ + 223.19969177246094, + 502.861328125, + 224.27151489257812 + ], + "min":[ + -223.19972229003906, + 56.4619140625, + -224.27151489257812 + ], + "type":"VEC3" + }, + { + "bufferView":2608, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":2609, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":2610, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2611, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2612, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2613, + "componentType":5126, + "count":54, + "max":[ + 29.798828125, + 520.124755859375, + 217.04052734375 + ], + "min":[ + -29.798828125, + -0.000244140625, + -217.04150390625 + ], + "type":"VEC3" + }, + { + "bufferView":2614, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":2615, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":2616, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":2617, + "componentType":5126, + "count":112, + "max":[ + 224.8903045654297, + 828.583984375, + 224.8903045654297 + ], + "min":[ + -224.8903045654297, + 0, + -224.89044189453125 + ], + "type":"VEC3" + }, + { + "bufferView":2618, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":2619, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2620, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2621, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2622, + "componentType":5126, + "count":96, + "max":[ + 747.468994140625, + 205.1725616455078, + 73.47876739501953 + ], + "min":[ + -747.4671630859375, + -5.7220458984375e-05, + -73.47869110107422 + ], + "type":"VEC3" + }, + { + "bufferView":2623, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":2624, + "componentType":5123, + "count":132, + "type":"SCALAR" + }, + { + "bufferView":2625, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2626, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2627, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2628, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":2629, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":2630, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":2631, + "componentType":5126, + "count":584, + "max":[ + 169.1017303466797, + 175.93930053710938, + 153.6048126220703 + ], + "min":[ + -169.10015869140625, + 1.1736984252929688, + -141.32418823242188 + ], + "type":"VEC3" + }, + { + "bufferView":2632, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":2633, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2634, + "componentType":5126, + "count":72, + "max":[ + 866.67041015625, + 1492.539794921875, + 22.500154495239258 + ], + "min":[ + -866.6709594726562, + 0, + -22.500308990478516 + ], + "type":"VEC3" + }, + { + "bufferView":2635, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":2636, + "componentType":5126, + "count":257, + "max":[ + 169.0628662109375, + 193.25537109375, + 174.408203125 + ], + "min":[ + -169.06298828125, + 0.00048828125, + -174.408203125 + ], + "type":"VEC3" + }, + { + "bufferView":2637, + "componentType":5126, + "count":257, + "type":"VEC3" + }, + { + "bufferView":2638, + "componentType":5126, + "count":257, + "type":"VEC2" + }, + { + "bufferView":2639, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":2640, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2641, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2642, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2643, + "componentType":5126, + "count":204, + "max":[ + 331.5892028808594, + 5418.138671875, + 147.40516662597656 + ], + "min":[ + -331.5884094238281, + 0, + -147.405517578125 + ], + "type":"VEC3" + }, + { + "bufferView":2644, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":2645, + "componentType":5123, + "count":1068, + "type":"SCALAR" + }, + { + "bufferView":2646, + "componentType":5126, + "count":7804, + "max":[ + 496.304931640625, + 427.4638671875, + 103.786865234375 + ], + "min":[ + -496.308349609375, + 0, + -103.786865234375 + ], + "type":"VEC3" + }, + { + "bufferView":2647, + "componentType":5126, + "count":7804, + "type":"VEC3" + }, + { + "bufferView":2648, + "componentType":5126, + "count":7804, + "type":"VEC2" + }, + { + "bufferView":2649, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":2650, + "componentType":5126, + "count":112, + "max":[ + 34.857215881347656, + 1878.33447265625, + 483.718017578125 + ], + "min":[ + -34.857261657714844, + 0.0001220703125, + -483.7181701660156 + ], + "type":"VEC3" + }, + { + "bufferView":2651, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":2652, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":2653, + "componentType":5123, + "count":168, + "type":"SCALAR" + }, + { + "bufferView":2654, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2655, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2656, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2657, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2658, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2659, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2660, + "componentType":5126, + "count":346, + "max":[ + 171.298828125, + 184.80859375, + 176.140625 + ], + "min":[ + -171.296875, + 44.45703125, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":2661, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":2662, + "componentType":5126, + "count":346, + "type":"VEC2" + }, + { + "bufferView":2663, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":2664, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28369140625 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":2665, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":2666, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":2667, + "componentType":5126, + "count":588, + "max":[ + 161.46363830566406, + 233.64410400390625, + 145.03192138671875 + ], + "min":[ + -168.67111206054688, + 34.295196533203125, + -156.9640655517578 + ], + "type":"VEC3" + }, + { + "bufferView":2668, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":2669, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2670, + "componentType":5126, + "count":122, + "max":[ + 20.429443359375, + 104.244140625, + 52.125 + ], + "min":[ + -20.42919921875, + 0, + -52.1220703125 + ], + "type":"VEC3" + }, + { + "bufferView":2671, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":2672, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":2673, + "componentType":5126, + "count":582, + "max":[ + 166.41053771972656, + 200.91192626953125, + 152.22068786621094 + ], + "min":[ + -166.4066925048828, + -0.0002288818359375, + -152.2212371826172 + ], + "type":"VEC3" + }, + { + "bufferView":2674, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":2675, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2676, + "componentType":5126, + "count":152, + "max":[ + 586.3193359375, + 156.6259765625, + 69.56982421875 + ], + "min":[ + -586.31689453125, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":2677, + "componentType":5126, + "count":152, + "type":"VEC3" + }, + { + "bufferView":2678, + "componentType":5126, + "count":152, + "type":"VEC2" + }, + { + "bufferView":2679, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":2680, + "componentType":5126, + "count":548, + "max":[ + 7.778961181640625, + 21.312030792236328, + 10.655908584594727 + ], + "min":[ + -7.7789130210876465, + 0.00021648406982421875, + -10.65590763092041 + ], + "type":"VEC3" + }, + { + "bufferView":2681, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":2682, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":2683, + "componentType":5126, + "count":24, + "max":[ + 350, + 1016.5, + 350 + ], + "min":[ + -350, + 0, + -350 + ], + "type":"VEC3" + }, + { + "bufferView":2684, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2685, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2686, + "componentType":5126, + "count":212, + "max":[ + 33.4022216796875, + 133.60888671875, + 66.80419921875 + ], + "min":[ + -33.4022216796875, + 0, + -66.804443359375 + ], + "type":"VEC3" + }, + { + "bufferView":2687, + "componentType":5126, + "count":212, + "type":"VEC3" + }, + { + "bufferView":2688, + "componentType":5126, + "count":212, + "type":"VEC2" + }, + { + "bufferView":2689, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":2690, + "componentType":5126, + "count":584, + "max":[ + 185.91859436035156, + 191.34945678710938, + 162.02882385253906 + ], + "min":[ + -185.9182586669922, + -0.0001373291015625, + -162.0288848876953 + ], + "type":"VEC3" + }, + { + "bufferView":2691, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":2692, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2693, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2694, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2695, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2696, + "componentType":5126, + "count":24, + "max":[ + 110.00011444091797, + 50, + 584.662109375 + ], + "min":[ + -110.00007629394531, + 0, + -584.666015625 + ], + "type":"VEC3" + }, + { + "bufferView":2697, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2698, + "componentType":5126, + "count":160, + "max":[ + 769.70751953125, + 113.194580078125, + 56.59619140625 + ], + "min":[ + -769.709228515625, + 0, + -56.59814453125 + ], + "type":"VEC3" + }, + { + "bufferView":2699, + "componentType":5126, + "count":160, + "type":"VEC3" + }, + { + "bufferView":2700, + "componentType":5126, + "count":160, + "type":"VEC2" + }, + { + "bufferView":2701, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":2702, + "componentType":5126, + "count":528, + "max":[ + 19.8046875, + 2637.3974609375, + 722.721923828125 + ], + "min":[ + -19.80078125, + 0, + -722.721435546875 + ], + "type":"VEC3" + }, + { + "bufferView":2703, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":2704, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":2705, + "componentType":5126, + "count":8098, + "max":[ + 496.1484375, + 429.962890625, + 103.787109375 + ], + "min":[ + -496.148681640625, + 0, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":2706, + "componentType":5126, + "count":8098, + "type":"VEC3" + }, + { + "bufferView":2707, + "componentType":5126, + "count":8098, + "type":"VEC2" + }, + { + "bufferView":2708, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":2709, + "componentType":5126, + "count":4904, + "max":[ + 84.52996826171875, + 1004.792724609375, + 84.72250366210938 + ], + "min":[ + -84.528076171875, + 0.000244140625, + -84.71958923339844 + ], + "type":"VEC3" + }, + { + "bufferView":2710, + "componentType":5126, + "count":4904, + "type":"VEC3" + }, + { + "bufferView":2711, + "componentType":5126, + "count":4904, + "type":"VEC2" + }, + { + "bufferView":2712, + "componentType":5123, + "count":11976, + "type":"SCALAR" + }, + { + "bufferView":2713, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":2714, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2715, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2716, + "componentType":5126, + "count":142, + "max":[ + 9.472749710083008, + 18.945335388183594, + 3.451724052429199 + ], + "min":[ + -9.472704887390137, + -0.00011920928955078125, + -3.4518513679504395 + ], + "type":"VEC3" + }, + { + "bufferView":2717, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":2718, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":2719, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92938232421875, + 384.5793762207031 + ], + "min":[ + -244.466796875, + 0.0001068115234375, + -384.5820617675781 + ], + "type":"VEC3" + }, + { + "bufferView":2720, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":2721, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":2722, + "componentType":5126, + "count":586, + "max":[ + 201.1636962890625, + 128.77523803710938, + 209.6191864013672 + ], + "min":[ + -201.16160583496094, + 3.0517578125e-05, + -209.6190643310547 + ], + "type":"VEC3" + }, + { + "bufferView":2723, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":2724, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2725, + "componentType":5126, + "count":570, + "max":[ + 187.32032775878906, + 32.82526779174805, + 187.3197479248047 + ], + "min":[ + -187.31944274902344, + 1.1444091796875e-05, + -187.3200225830078 + ], + "type":"VEC3" + }, + { + "bufferView":2726, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":2727, + "componentType":5126, + "count":112, + "max":[ + 106.49419403076172, + 317.7470703125, + 106.49419403076172 + ], + "min":[ + -106.49427795410156, + 7.62939453125e-05, + -106.49420928955078 + ], + "type":"VEC3" + }, + { + "bufferView":2728, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":2729, + "componentType":5126, + "count":204, + "max":[ + 2406.3701171875, + 2528.2978515625, + 25.64892578125 + ], + "min":[ + -2406.369873046875, + -0.0001220703125, + -25.64990234375 + ], + "type":"VEC3" + }, + { + "bufferView":2730, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":2731, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":2732, + "componentType":5123, + "count":306, + "type":"SCALAR" + }, + { + "bufferView":2733, + "componentType":5126, + "count":204, + "max":[ + 2702.69140625, + 2451.67333984375, + 175.64454650878906 + ], + "min":[ + -2702.69287109375, + 0, + -175.64471435546875 + ], + "type":"VEC3" + }, + { + "bufferView":2734, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":2735, + "componentType":5126, + "count":254, + "max":[ + 169.107421875, + 196.2138671875, + 175.0537109375 + ], + "min":[ + -169.107421875, + -0.000244140625, + -175.05322265625 + ], + "type":"VEC3" + }, + { + "bufferView":2736, + "componentType":5126, + "count":254, + "type":"VEC3" + }, + { + "bufferView":2737, + "componentType":5126, + "count":254, + "type":"VEC2" + }, + { + "bufferView":2738, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":2739, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":2740, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":2741, + "componentType":5126, + "count":48, + "max":[ + 289.0126037597656, + 233.9413299560547, + 11.697283744812012 + ], + "min":[ + -289.01556396484375, + -1.52587890625e-05, + -11.696887016296387 + ], + "type":"VEC3" + }, + { + "bufferView":2742, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":2743, + "componentType":5123, + "count":72, + "type":"SCALAR" + }, + { + "bufferView":2744, + "componentType":5126, + "count":234, + "max":[ + 91.49453735351562, + 2267.8251953125, + 91.49449920654297 + ], + "min":[ + -91.49444580078125, + 9.918212890625e-05, + -91.49444580078125 + ], + "type":"VEC3" + }, + { + "bufferView":2745, + "componentType":5126, + "count":234, + "type":"VEC3" + }, + { + "bufferView":2746, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":2747, + "componentType":5126, + "count":578, + "max":[ + 148.07968139648438, + 155.0575408935547, + 135.39942932128906 + ], + "min":[ + -148.07859802246094, + 1.0218887329101562, + -123.11869812011719 + ], + "type":"VEC3" + }, + { + "bufferView":2748, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":2749, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2750, + "componentType":5126, + "count":3592, + "max":[ + -2403.7734375, + 208.03662109375, + 44069.5 + ], + "min":[ + -110835.71875, + 0, + -44069.5 + ], + "type":"VEC3" + }, + { + "bufferView":2751, + "componentType":5126, + "count":3592, + "type":"VEC3" + }, + { + "bufferView":2752, + "componentType":5126, + "count":3592, + "type":"VEC2" + }, + { + "bufferView":2753, + "componentType":5123, + "count":10296, + "type":"SCALAR" + }, + { + "bufferView":2754, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2755, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2756, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2757, + "componentType":5126, + "count":46, + "max":[ + 161.98095703125, + 658.67578125, + 366.15234375 + ], + "min":[ + -161.97900390625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":2758, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":2759, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":2760, + "componentType":5126, + "count":233, + "max":[ + 172.59716796875, + 185.23583984375, + 169.0704345703125 + ], + "min":[ + -172.596923828125, + 0, + -169.070556640625 + ], + "type":"VEC3" + }, + { + "bufferView":2761, + "componentType":5126, + "count":233, + "type":"VEC3" + }, + { + "bufferView":2762, + "componentType":5126, + "count":233, + "type":"VEC2" + }, + { + "bufferView":2763, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":2764, + "componentType":5126, + "count":562, + "max":[ + 204.45657348632812, + 209.63050842285156, + 178.08338928222656 + ], + "min":[ + -204.45677185058594, + 0.0001220703125, + -178.08355712890625 + ], + "type":"VEC3" + }, + { + "bufferView":2765, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":2766, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2767, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.144287109375, + 360.8974609375 + ], + "min":[ + -8.345703125, + 0, + -360.897216796875 + ], + "type":"VEC3" + }, + { + "bufferView":2768, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2769, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2770, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51409912109375, + 22.7260799407959 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.729618072509766 + ], + "type":"VEC3" + }, + { + "bufferView":2771, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":2772, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":2773, + "componentType":5126, + "count":1660, + "max":[ + 433.12109375, + 367.9293212890625, + 90.00634765625 + ], + "min":[ + -433.119140625, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":2774, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":2775, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":2776, + "componentType":5126, + "count":596, + "max":[ + 146.67794799804688, + 32.8252067565918, + 146.67767333984375 + ], + "min":[ + -146.6774139404297, + -4.9591064453125e-05, + -146.6776885986328 + ], + "type":"VEC3" + }, + { + "bufferView":2777, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":2778, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2779, + "componentType":5126, + "count":4, + "max":[ + 698.8828125, + 2586.479248046875, + 0.0014468207955360413 + ], + "min":[ + -698.884765625, + 0, + 0.0009945854544639587 + ], + "type":"VEC3" + }, + { + "bufferView":2780, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2781, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2782, + "componentType":5126, + "count":113, + "max":[ + 86.3843994140625, + 4362.8408203125, + 86.38330078125 + ], + "min":[ + -86.3843994140625, + -0.0001220703125, + -86.38525390625 + ], + "type":"VEC3" + }, + { + "bufferView":2783, + "componentType":5126, + "count":113, + "type":"VEC3" + }, + { + "bufferView":2784, + "componentType":5126, + "count":113, + "type":"VEC2" + }, + { + "bufferView":2785, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":2786, + "componentType":5126, + "count":142, + "max":[ + 3.4518332481384277, + 18.94533348083496, + 9.472701072692871 + ], + "min":[ + -3.451733350753784, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":2787, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":2788, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":2789, + "componentType":5126, + "count":112, + "max":[ + 1022.581298828125, + 429.54217529296875, + 214.7710723876953 + ], + "min":[ + -1022.5777587890625, + -3.0517578125e-05, + -214.77090454101562 + ], + "type":"VEC3" + }, + { + "bufferView":2790, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":2791, + "componentType":5126, + "count":1051, + "max":[ + 125.22607421875, + 76.19921875, + 90.1090087890625 + ], + "min":[ + -125.22607421875, + 0, + -90.109130859375 + ], + "type":"VEC3" + }, + { + "bufferView":2792, + "componentType":5126, + "count":1051, + "type":"VEC3" + }, + { + "bufferView":2793, + "componentType":5126, + "count":1051, + "type":"VEC2" + }, + { + "bufferView":2794, + "componentType":5126, + "count":40, + "max":[ + 1.4143147468566895, + 10.517535209655762, + 5.258714199066162 + ], + "min":[ + -1.4143130779266357, + 6.0558319091796875e-05, + -5.258758544921875 + ], + "type":"VEC3" + }, + { + "bufferView":2795, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":2796, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":2797, + "componentType":5126, + "count":528, + "max":[ + 19.802734375, + 2637.3974609375, + 722.7232666015625 + ], + "min":[ + -19.802734375, + 0, + -722.719970703125 + ], + "type":"VEC3" + }, + { + "bufferView":2798, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":2799, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":2800, + "componentType":5126, + "count":127, + "max":[ + 40.60498046875, + 81.2109375, + 5725.87646484375 + ], + "min":[ + -40.60546875, + 0, + -5725.875 + ], + "type":"VEC3" + }, + { + "bufferView":2801, + "componentType":5126, + "count":127, + "type":"VEC3" + }, + { + "bufferView":2802, + "componentType":5126, + "count":127, + "type":"VEC2" + }, + { + "bufferView":2803, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":2804, + "componentType":5126, + "count":214, + "max":[ + 13.2529296875, + 75.79655456542969, + 25.506591796875 + ], + "min":[ + -13.25048828125, + 0.00018621631897985935, + -25.497802734375 + ], + "type":"VEC3" + }, + { + "bufferView":2805, + "componentType":5126, + "count":214, + "type":"VEC3" + }, + { + "bufferView":2806, + "componentType":5126, + "count":214, + "type":"VEC2" + }, + { + "bufferView":2807, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":2808, + "componentType":5126, + "count":582, + "max":[ + 184.51705932617188, + 32.8251953125, + 184.51686096191406 + ], + "min":[ + -184.51686096191406, + 9.5367431640625e-05, + -184.51707458496094 + ], + "type":"VEC3" + }, + { + "bufferView":2809, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":2810, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2811, + "componentType":5126, + "count":216, + "max":[ + 33.4022216796875, + 133.60888671875, + 66.80419921875 + ], + "min":[ + -33.4022216796875, + 0, + -66.80322265625 + ], + "type":"VEC3" + }, + { + "bufferView":2812, + "componentType":5126, + "count":216, + "type":"VEC3" + }, + { + "bufferView":2813, + "componentType":5126, + "count":216, + "type":"VEC2" + }, + { + "bufferView":2814, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":2815, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2816, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2817, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2818, + "componentType":5126, + "count":168, + "max":[ + 21.169921875, + 1873.388671875, + 21.171875 + ], + "min":[ + -21.173828125, + 0, + -21.172607421875 + ], + "type":"VEC3" + }, + { + "bufferView":2819, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":2820, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":2821, + "componentType":5126, + "count":260, + "max":[ + 3.451836347579956, + 18.945335388183594, + 9.47275161743164 + ], + "min":[ + -3.451739549636841, + -0.00011920928955078125, + -9.472702980041504 + ], + "type":"VEC3" + }, + { + "bufferView":2822, + "componentType":5126, + "count":260, + "type":"VEC3" + }, + { + "bufferView":2823, + "componentType":5126, + "count":260, + "type":"VEC2" + }, + { + "bufferView":2824, + "componentType":5126, + "count":678, + "max":[ + 799.041015625, + 1068.857421875, + 103.86904907226562 + ], + "min":[ + -799.037109375, + 0, + -103.86807250976562 + ], + "type":"VEC3" + }, + { + "bufferView":2825, + "componentType":5126, + "count":678, + "type":"VEC3" + }, + { + "bufferView":2826, + "componentType":5126, + "count":678, + "type":"VEC2" + }, + { + "bufferView":2827, + "componentType":5123, + "count":678, + "type":"SCALAR" + }, + { + "bufferView":2828, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":2829, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":2830, + "componentType":5126, + "count":582, + "max":[ + 156.4861602783203, + 163.41033935546875, + 142.6818084716797 + ], + "min":[ + -156.4895782470703, + 1.0827178955078125, + -130.40065002441406 + ], + "type":"VEC3" + }, + { + "bufferView":2831, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":2832, + "componentType":5126, + "count":88, + "max":[ + 50.1396484375, + 851.928955078125, + 52.947265625 + ], + "min":[ + -50.139892578125, + 0, + -52.94677734375 + ], + "type":"VEC3" + }, + { + "bufferView":2833, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":2834, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":2835, + "componentType":5126, + "count":1053, + "max":[ + 90.109375, + 76.19921875, + 125.22607421875 + ], + "min":[ + -90.10888671875, + 0, + -125.22607421875 + ], + "type":"VEC3" + }, + { + "bufferView":2836, + "componentType":5126, + "count":1053, + "type":"VEC3" + }, + { + "bufferView":2837, + "componentType":5126, + "count":1053, + "type":"VEC2" + }, + { + "bufferView":2838, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":2839, + "componentType":5126, + "count":49, + "max":[ + 161.98095703125, + 658.67578125, + 366.15283203125 + ], + "min":[ + -161.97900390625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":2840, + "componentType":5126, + "count":49, + "type":"VEC3" + }, + { + "bufferView":2841, + "componentType":5126, + "count":49, + "type":"VEC2" + }, + { + "bufferView":2842, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":2843, + "componentType":5126, + "count":203, + "max":[ + 33.4022216796875, + 133.6083984375, + 66.80419921875 + ], + "min":[ + -33.40234375, + 0, + -66.80419921875 + ], + "type":"VEC3" + }, + { + "bufferView":2844, + "componentType":5126, + "count":203, + "type":"VEC3" + }, + { + "bufferView":2845, + "componentType":5126, + "count":203, + "type":"VEC2" + }, + { + "bufferView":2846, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":2847, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":2848, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":2849, + "componentType":5126, + "count":168, + "max":[ + 769.70751953125, + 113.19482421875, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.597412109375 + ], + "type":"VEC3" + }, + { + "bufferView":2850, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":2851, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":2852, + "componentType":5126, + "count":559, + "max":[ + 224.27151489257812, + 530.1519775390625, + 223.79135131835938 + ], + "min":[ + -224.27151489257812, + 82.56924438476562, + -223.79135131835938 + ], + "type":"VEC3" + }, + { + "bufferView":2853, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":2854, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":2855, + "componentType":5126, + "count":1420, + "max":[ + 244.46875, + 367.92926025390625, + 384.5793762207031 + ], + "min":[ + -244.466796875, + 4.57763671875e-05, + -384.5820617675781 + ], + "type":"VEC3" + }, + { + "bufferView":2856, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":2857, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":2858, + "componentType":5123, + "count":2472, + "type":"SCALAR" + }, + { + "bufferView":2859, + "componentType":5126, + "count":50, + "max":[ + 366.15283203125, + 658.67578125, + 161.98095703125 + ], + "min":[ + -366.15283203125, + 0, + -161.97900390625 + ], + "type":"VEC3" + }, + { + "bufferView":2860, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":2861, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":2862, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":2863, + "componentType":5126, + "count":587, + "max":[ + 142.68621826171875, + 207.83984375, + 127.91027069091797 + ], + "min":[ + -149.8932647705078, + 30.375045776367188, + -139.84237670898438 + ], + "type":"VEC3" + }, + { + "bufferView":2864, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":2865, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2866, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2867, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2868, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2869, + "componentType":5126, + "count":580, + "max":[ + 169.50885009765625, + 244.70289611816406, + 152.37002563476562 + ], + "min":[ + -176.7209930419922, + 35.97492980957031, + -164.30172729492188 + ], + "type":"VEC3" + }, + { + "bufferView":2870, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":2871, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2872, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":2873, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":2874, + "componentType":5126, + "count":164, + "max":[ + 63.8212890625, + 14332.2607421875, + 524.54736328125 + ], + "min":[ + -63.8173828125, + 0.0010223388671875, + -524.546142578125 + ], + "type":"VEC3" + }, + { + "bufferView":2875, + "componentType":5126, + "count":164, + "type":"VEC3" + }, + { + "bufferView":2876, + "componentType":5126, + "count":164, + "type":"VEC2" + }, + { + "bufferView":2877, + "componentType":5126, + "count":158, + "max":[ + 437.3779296875, + 12069.2890625, + 19.6142578125 + ], + "min":[ + -437.3779296875, + 0.000640869140625, + -19.6142578125 + ], + "type":"VEC3" + }, + { + "bufferView":2878, + "componentType":5126, + "count":158, + "type":"VEC3" + }, + { + "bufferView":2879, + "componentType":5126, + "count":158, + "type":"VEC2" + }, + { + "bufferView":2880, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":2881, + "componentType":5126, + "count":204, + "max":[ + 656.154052734375, + 5599.17431640625, + 149.93594360351562 + ], + "min":[ + -656.15234375, + 0, + -149.93576049804688 + ], + "type":"VEC3" + }, + { + "bufferView":2882, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":2883, + "componentType":5123, + "count":1068, + "type":"SCALAR" + }, + { + "bufferView":2884, + "componentType":5126, + "count":50, + "max":[ + 127.44677734375, + 625.6328125, + 391.7373046875 + ], + "min":[ + -127.4404296875, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":2885, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":2886, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":2887, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":2888, + "componentType":5126, + "count":78, + "max":[ + 144.177734375, + 36.7650146484375, + 34.50543212890625 + ], + "min":[ + -144.1767578125, + 0, + -34.504638671875 + ], + "type":"VEC3" + }, + { + "bufferView":2889, + "componentType":5126, + "count":78, + "type":"VEC3" + }, + { + "bufferView":2890, + "componentType":5126, + "count":78, + "type":"VEC2" + }, + { + "bufferView":2891, + "componentType":5123, + "count":132, + "type":"SCALAR" + }, + { + "bufferView":2892, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58544921875 + ], + "min":[ + -46.2841796875, + 0, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":2893, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2894, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2895, + "componentType":5126, + "count":50, + "max":[ + 127.44677734375, + 625.6328125, + 391.7373046875 + ], + "min":[ + -127.4404296875, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":2896, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":2897, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":2898, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7293758392334 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":2899, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":2900, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":2901, + "componentType":5126, + "count":92, + "max":[ + 824.2412109375, + 141.0703125, + 69.5703125 + ], + "min":[ + -824.24072265625, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":2902, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":2903, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":2904, + "componentType":5126, + "count":12, + "max":[ + 10.2607421875, + 419.39984130859375, + 443.6835632324219 + ], + "min":[ + -10.259765625, + 7.62939453125e-05, + -443.6864929199219 + ], + "type":"VEC3" + }, + { + "bufferView":2905, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":2906, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":2907, + "componentType":5126, + "count":882, + "max":[ + 134.314453125, + 2974.83349609375, + 130.7232666015625 + ], + "min":[ + -134.314453125, + 0, + -130.72096252441406 + ], + "type":"VEC3" + }, + { + "bufferView":2908, + "componentType":5126, + "count":882, + "type":"VEC3" + }, + { + "bufferView":2909, + "componentType":5126, + "count":882, + "type":"VEC2" + }, + { + "bufferView":2910, + "componentType":5126, + "count":560, + "max":[ + 194.32896423339844, + 32.82526779174805, + 194.32701110839844 + ], + "min":[ + -194.32528686523438, + 6.866455078125e-05, + -194.3273162841797 + ], + "type":"VEC3" + }, + { + "bufferView":2911, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":2912, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2913, + "componentType":5126, + "count":568, + "max":[ + 149.48141479492188, + 32.8253173828125, + 149.48057556152344 + ], + "min":[ + -149.47979736328125, + -4.9591064453125e-05, + -149.48060607910156 + ], + "type":"VEC3" + }, + { + "bufferView":2914, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":2915, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2916, + "componentType":5126, + "count":648, + "max":[ + 615.01123046875, + 2510.92529296875, + 347.265625 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.2666015625 + ], + "type":"VEC3" + }, + { + "bufferView":2917, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":2918, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":2919, + "componentType":5126, + "count":824, + "max":[ + 4.1318359375, + 90.58740997314453, + 34.45752716064453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45630645751953 + ], + "type":"VEC3" + }, + { + "bufferView":2920, + "componentType":5126, + "count":824, + "type":"VEC3" + }, + { + "bufferView":2921, + "componentType":5126, + "count":824, + "type":"VEC2" + }, + { + "bufferView":2922, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":2923, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":2924, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2925, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2926, + "componentType":5126, + "count":112, + "max":[ + 116.97066497802734, + 2149.27001953125, + 116.97061920166016 + ], + "min":[ + -116.97066497802734, + 0, + -116.97103118896484 + ], + "type":"VEC3" + }, + { + "bufferView":2927, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":2928, + "componentType":5126, + "count":24, + "max":[ + 182.4747314453125, + 47.838134765625, + 502.0746154785156 + ], + "min":[ + -182.47537231445312, + -0.000244140625, + -502.07452392578125 + ], + "type":"VEC3" + }, + { + "bufferView":2929, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2930, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":2931, + "componentType":5126, + "count":1020, + "max":[ + 831.546875, + 116.2333984375, + 746.10400390625 + ], + "min":[ + -831.544921875, + 0.000118255615234375, + -746.1015625 + ], + "type":"VEC3" + }, + { + "bufferView":2932, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":2933, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":2934, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2935, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2936, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2937, + "componentType":5126, + "count":1322, + "max":[ + 4857.8447265625, + 790.029052734375, + 49.98095703125 + ], + "min":[ + -4857.8466796875, + 0.000244140625, + -49.9833984375 + ], + "type":"VEC3" + }, + { + "bufferView":2938, + "componentType":5126, + "count":1322, + "type":"VEC3" + }, + { + "bufferView":2939, + "componentType":5126, + "count":1322, + "type":"VEC2" + }, + { + "bufferView":2940, + "componentType":5123, + "count":2520, + "type":"SCALAR" + }, + { + "bufferView":2941, + "componentType":5126, + "count":254, + "max":[ + 169.107421875, + 196.2138671875, + 175.0537109375 + ], + "min":[ + -169.107421875, + -0.000244140625, + -175.05322265625 + ], + "type":"VEC3" + }, + { + "bufferView":2942, + "componentType":5126, + "count":254, + "type":"VEC3" + }, + { + "bufferView":2943, + "componentType":5126, + "count":254, + "type":"VEC2" + }, + { + "bufferView":2944, + "componentType":5126, + "count":720, + "max":[ + 36.197998046875, + 520.969482421875, + 260.4848937988281 + ], + "min":[ + -36.197998046875, + -0.0003662109375, + -260.4848937988281 + ], + "type":"VEC3" + }, + { + "bufferView":2945, + "componentType":5126, + "count":720, + "type":"VEC3" + }, + { + "bufferView":2946, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":2947, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2948, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2949, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2950, + "componentType":5126, + "count":580, + "max":[ + 184.51686096191406, + 32.82521057128906, + 184.51686096191406 + ], + "min":[ + -184.51705932617188, + 6.866455078125e-05, + -184.51707458496094 + ], + "type":"VEC3" + }, + { + "bufferView":2951, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":2952, + "componentType":5126, + "count":586, + "max":[ + 162.3860626220703, + 108.34397888183594, + 169.10101318359375 + ], + "min":[ + -162.38360595703125, + 6.103515625e-05, + -169.10093688964844 + ], + "type":"VEC3" + }, + { + "bufferView":2953, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":2954, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":2955, + "componentType":5126, + "count":72, + "max":[ + 866.67041015625, + 1492.539794921875, + 22.500154495239258 + ], + "min":[ + -866.6709594726562, + 0, + -22.500349044799805 + ], + "type":"VEC3" + }, + { + "bufferView":2956, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":2957, + "componentType":5126, + "count":243, + "max":[ + 169.100830078125, + 188.23828125, + 173.28125 + ], + "min":[ + -169.100830078125, + 0, + -173.28173828125 + ], + "type":"VEC3" + }, + { + "bufferView":2958, + "componentType":5126, + "count":243, + "type":"VEC3" + }, + { + "bufferView":2959, + "componentType":5126, + "count":243, + "type":"VEC2" + }, + { + "bufferView":2960, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":2961, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2962, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2963, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2964, + "componentType":5126, + "count":242, + "max":[ + 91.49446105957031, + 2020.3758544921875, + 618.0631103515625 + ], + "min":[ + -91.49473571777344, + 1.52587890625e-05, + -618.0623168945312 + ], + "type":"VEC3" + }, + { + "bufferView":2965, + "componentType":5126, + "count":242, + "type":"VEC3" + }, + { + "bufferView":2966, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":2967, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":2968, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":2969, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":2970, + "componentType":5126, + "count":72, + "max":[ + 771.3452758789062, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.345703125, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":2971, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":2972, + "componentType":5126, + "count":1048, + "max":[ + 125.224609375, + 76.1982421875, + 90.109130859375 + ], + "min":[ + -125.2275390625, + -0.0009765625, + -90.1090087890625 + ], + "type":"VEC3" + }, + { + "bufferView":2973, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":2974, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":2975, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":2976, + "componentType":5126, + "count":115, + "max":[ + 31.29314422607422, + 15.511116027832031, + 6.50274658203125 + ], + "min":[ + -31.29315757751465, + 9.202957153320312e-05, + -6.5024871826171875 + ], + "type":"VEC3" + }, + { + "bufferView":2977, + "componentType":5126, + "count":115, + "type":"VEC3" + }, + { + "bufferView":2978, + "componentType":5126, + "count":115, + "type":"VEC2" + }, + { + "bufferView":2979, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":2980, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":2981, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2982, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2983, + "componentType":5126, + "count":337, + "max":[ + 171.298828125, + 184.80810546875, + 176.14013671875 + ], + "min":[ + -171.296875, + 44.45703125, + -176.1416015625 + ], + "type":"VEC3" + }, + { + "bufferView":2984, + "componentType":5126, + "count":337, + "type":"VEC3" + }, + { + "bufferView":2985, + "componentType":5126, + "count":337, + "type":"VEC2" + }, + { + "bufferView":2986, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":2987, + "componentType":5126, + "count":76, + "max":[ + 278.86651611328125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8672180175781, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":2988, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":2989, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":2990, + "componentType":5126, + "count":809, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45508575439453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":2991, + "componentType":5126, + "count":809, + "type":"VEC3" + }, + { + "bufferView":2992, + "componentType":5126, + "count":809, + "type":"VEC2" + }, + { + "bufferView":2993, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":2994, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":2995, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2996, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":2997, + "componentType":5126, + "count":488, + "max":[ + 879.66015625, + 587.0330810546875, + 879.6582641601562 + ], + "min":[ + -879.66015625, + 9.1552734375e-05, + -879.6621704101562 + ], + "type":"VEC3" + }, + { + "bufferView":2998, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":2999, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":3000, + "componentType":5126, + "count":98, + "max":[ + 513.90771484375, + 141.07080078125, + 69.5699462890625 + ], + "min":[ + -513.9072265625, + 0, + -69.5701904296875 + ], + "type":"VEC3" + }, + { + "bufferView":3001, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":3002, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":3003, + "componentType":5123, + "count":204, + "type":"SCALAR" + }, + { + "bufferView":3004, + "componentType":5126, + "count":119, + "max":[ + 40.60498046875, + 81.208984375, + 5725.87548828125 + ], + "min":[ + -40.60546875, + 0, + -5725.87548828125 + ], + "type":"VEC3" + }, + { + "bufferView":3005, + "componentType":5126, + "count":119, + "type":"VEC3" + }, + { + "bufferView":3006, + "componentType":5126, + "count":119, + "type":"VEC2" + }, + { + "bufferView":3007, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":3008, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3009, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3010, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3011, + "componentType":5126, + "count":44, + "max":[ + 127.44287109375, + 625.6328125, + 391.7376403808594 + ], + "min":[ + -127.4443359375, + 0, + -391.7374572753906 + ], + "type":"VEC3" + }, + { + "bufferView":3012, + "componentType":5126, + "count":44, + "type":"VEC3" + }, + { + "bufferView":3013, + "componentType":5126, + "count":44, + "type":"VEC2" + }, + { + "bufferView":3014, + "componentType":5126, + "count":170, + "max":[ + 769.70751953125, + 113.194580078125, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0, + -56.5966796875 + ], + "type":"VEC3" + }, + { + "bufferView":3015, + "componentType":5126, + "count":170, + "type":"VEC3" + }, + { + "bufferView":3016, + "componentType":5126, + "count":170, + "type":"VEC2" + }, + { + "bufferView":3017, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":3018, + "componentType":5126, + "count":528, + "max":[ + 19.8046875, + 2637.3974609375, + 722.721435546875 + ], + "min":[ + -19.80078125, + 0, + -722.720947265625 + ], + "type":"VEC3" + }, + { + "bufferView":3019, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":3020, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":3021, + "componentType":5126, + "count":338, + "max":[ + 170.9052734375, + 156.9990234375, + 177.25439453125 + ], + "min":[ + -170.9052734375, + 21.2880859375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":3022, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":3023, + "componentType":5126, + "count":338, + "type":"VEC2" + }, + { + "bufferView":3024, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":3025, + "componentType":5126, + "count":114, + "max":[ + 102.130859375, + 3063.665283203125, + 102.13092041015625 + ], + "min":[ + -102.1312255859375, + 7.62939453125e-05, + -102.13088989257812 + ], + "type":"VEC3" + }, + { + "bufferView":3026, + "componentType":5126, + "count":114, + "type":"VEC3" + }, + { + "bufferView":3027, + "componentType":5126, + "count":114, + "type":"VEC2" + }, + { + "bufferView":3028, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":3029, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4544677734375, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":3030, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":3031, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":3032, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":3033, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3034, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3035, + "componentType":5126, + "count":125, + "max":[ + 7.721349716186523, + 15.442765235900879, + 3.8607020378112793 + ], + "min":[ + -7.721331596374512, + 8.296966552734375e-05, + -3.8606443405151367 + ], + "type":"VEC3" + }, + { + "bufferView":3036, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":3037, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":3038, + "componentType":5126, + "count":588, + "max":[ + 159.28961181640625, + 166.1944580078125, + 145.10903930664062 + ], + "min":[ + -159.29193115234375, + 1.1027374267578125, + -132.8282928466797 + ], + "type":"VEC3" + }, + { + "bufferView":3039, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":3040, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3041, + "componentType":5126, + "count":1660, + "max":[ + 433.12109375, + 367.9293212890625, + 90.004150390625 + ], + "min":[ + -433.119140625, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":3042, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":3043, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":3044, + "componentType":5123, + "count":2472, + "type":"SCALAR" + }, + { + "bufferView":3045, + "componentType":5126, + "count":586, + "max":[ + 199.5164794921875, + 127.7911605834961, + 207.8983917236328 + ], + "min":[ + -199.51507568359375, + -9.1552734375e-05, + -207.89828491210938 + ], + "type":"VEC3" + }, + { + "bufferView":3046, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":3047, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3048, + "componentType":5126, + "count":580, + "max":[ + 188.72206115722656, + 32.82521057128906, + 188.72120666503906 + ], + "min":[ + -188.72061157226562, + 6.866455078125e-05, + -188.72146606445312 + ], + "type":"VEC3" + }, + { + "bufferView":3049, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":3050, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3051, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3052, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3053, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3054, + "componentType":5126, + "count":4, + "max":[ + -0.001953125, + 2586.479248046875, + 698.8837890625 + ], + "min":[ + -0.001953125, + 0, + -698.885009765625 + ], + "type":"VEC3" + }, + { + "bufferView":3055, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3056, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3057, + "componentType":5126, + "count":648, + "max":[ + 615.01123046875, + 2510.925048828125, + 347.26611328125 + ], + "min":[ + -615.01025390625, + 0, + -347.2666015625 + ], + "type":"VEC3" + }, + { + "bufferView":3058, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":3059, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":3060, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3061, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3062, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3063, + "componentType":5126, + "count":237, + "max":[ + 169.1015625, + 188.23828125, + 173.28125 + ], + "min":[ + -169.1005859375, + 0, + -173.28173828125 + ], + "type":"VEC3" + }, + { + "bufferView":3064, + "componentType":5126, + "count":237, + "type":"VEC3" + }, + { + "bufferView":3065, + "componentType":5126, + "count":237, + "type":"VEC2" + }, + { + "bufferView":3066, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":3067, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":3068, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":3069, + "componentType":5126, + "count":582, + "max":[ + 188.29019165039062, + 270.5072021484375, + 169.49169921875 + ], + "min":[ + -195.49488830566406, + 39.895111083984375, + -181.42343139648438 + ], + "type":"VEC3" + }, + { + "bufferView":3070, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":3071, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3072, + "componentType":5126, + "count":590, + "max":[ + 169.0897216796875, + 204.03817749023438, + 154.66700744628906 + ], + "min":[ + -169.09251403808594, + -0.0001373291015625, + -154.66697692871094 + ], + "type":"VEC3" + }, + { + "bufferView":3073, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":3074, + "componentType":5126, + "count":756, + "max":[ + 136.373779296875, + 173.8272705078125, + 128.91510009765625 + ], + "min":[ + -136.37388610839844, + -3.0517578125e-05, + -128.91500854492188 + ], + "type":"VEC3" + }, + { + "bufferView":3075, + "componentType":5126, + "count":756, + "type":"VEC3" + }, + { + "bufferView":3076, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":3077, + "componentType":5126, + "count":582, + "max":[ + 195.9110107421875, + 280.98291015625, + 176.44248962402344 + ], + "min":[ + -203.12054443359375, + 41.48637390136719, + -188.3745880126953 + ], + "type":"VEC3" + }, + { + "bufferView":3078, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":3079, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3080, + "componentType":5126, + "count":582, + "max":[ + 156.4861602783203, + 163.41033935546875, + 142.6818084716797 + ], + "min":[ + -156.4895782470703, + 1.0827178955078125, + -130.40065002441406 + ], + "type":"VEC3" + }, + { + "bufferView":3081, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":3082, + "componentType":5126, + "count":588, + "max":[ + 146.67794799804688, + 153.6654052734375, + 134.18572998046875 + ], + "min":[ + -146.6774139404297, + 1.0118560791015625, + -121.90505981445312 + ], + "type":"VEC3" + }, + { + "bufferView":3083, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":3084, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3085, + "componentType":5126, + "count":12, + "max":[ + 10.26025390625, + 419.39984130859375, + 443.6836242675781 + ], + "min":[ + -10.26025390625, + 0.0001678466796875, + -443.6855773925781 + ], + "type":"VEC3" + }, + { + "bufferView":3086, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":3087, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":3088, + "componentType":5126, + "count":349, + "max":[ + 171.298828125, + 184.80859375, + 176.1416015625 + ], + "min":[ + -171.296875, + 44.45703125, + -176.140625 + ], + "type":"VEC3" + }, + { + "bufferView":3089, + "componentType":5126, + "count":349, + "type":"VEC3" + }, + { + "bufferView":3090, + "componentType":5126, + "count":349, + "type":"VEC2" + }, + { + "bufferView":3091, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":3092, + "componentType":5126, + "count":584, + "max":[ + 194.5747833251953, + 124.83911895751953, + 202.7357177734375 + ], + "min":[ + -194.57533264160156, + -0.000213623046875, + -202.73605346679688 + ], + "type":"VEC3" + }, + { + "bufferView":3093, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":3094, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3095, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":3096, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3097, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3098, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3099, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3100, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3101, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":3102, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3103, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3104, + "componentType":5126, + "count":232, + "max":[ + 174.40771484375, + 193.254638671875, + 169.062744140625 + ], + "min":[ + -174.408203125, + 0, + -169.06298828125 + ], + "type":"VEC3" + }, + { + "bufferView":3105, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":3106, + "componentType":5126, + "count":232, + "type":"VEC2" + }, + { + "bufferView":3107, + "componentType":5126, + "count":574, + "max":[ + 197.12852478027344, + 202.405517578125, + 171.73837280273438 + ], + "min":[ + -197.13157653808594, + 3.0517578125e-05, + -171.73849487304688 + ], + "type":"VEC3" + }, + { + "bufferView":3108, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":3109, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3110, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28369140625 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":3111, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":3112, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":3113, + "componentType":5126, + "count":582, + "max":[ + 178.90992736816406, + 184.43942260742188, + 155.9603729248047 + ], + "min":[ + -178.91232299804688, + -0.00011444091796875, + -155.9604034423828 + ], + "type":"VEC3" + }, + { + "bufferView":3114, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":3115, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3116, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7260799407959 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.729618072509766 + ], + "type":"VEC3" + }, + { + "bufferView":3117, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":3118, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":3119, + "componentType":5126, + "count":1488, + "max":[ + 831.546875, + 116.23333740234375, + 746.10498046875 + ], + "min":[ + -831.544921875, + 5.7220458984375e-05, + -746.10205078125 + ], + "type":"VEC3" + }, + { + "bufferView":3120, + "componentType":5126, + "count":1488, + "type":"VEC3" + }, + { + "bufferView":3121, + "componentType":5126, + "count":1488, + "type":"VEC2" + }, + { + "bufferView":3122, + "componentType":5123, + "count":1872, + "type":"SCALAR" + }, + { + "bufferView":3123, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + 5.7220458984375e-05, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":3124, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":3125, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":3126, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":3127, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3128, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3129, + "componentType":5126, + "count":1488, + "max":[ + 831.544921875, + 116.2335205078125, + 746.103759765625 + ], + "min":[ + -831.546875, + 0.000118255615234375, + -746.101318359375 + ], + "type":"VEC3" + }, + { + "bufferView":3130, + "componentType":5126, + "count":1488, + "type":"VEC3" + }, + { + "bufferView":3131, + "componentType":5126, + "count":1488, + "type":"VEC2" + }, + { + "bufferView":3132, + "componentType":5126, + "count":816, + "max":[ + 4.1318359375, + 90.58740997314453, + 34.45703887939453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":3133, + "componentType":5126, + "count":816, + "type":"VEC3" + }, + { + "bufferView":3134, + "componentType":5126, + "count":816, + "type":"VEC2" + }, + { + "bufferView":3135, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":3136, + "componentType":5126, + "count":71, + "max":[ + 3.787405490875244, + 13.693549156188965, + 6.47286319732666 + ], + "min":[ + -3.787666082382202, + -2.956390380859375e-05, + -6.472907543182373 + ], + "type":"VEC3" + }, + { + "bufferView":3137, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":3138, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":3139, + "componentType":5126, + "count":76, + "max":[ + 278.873046875, + 3543.081787109375, + 279.1046142578125 + ], + "min":[ + -278.87335205078125, + 0, + -279.10760498046875 + ], + "type":"VEC3" + }, + { + "bufferView":3140, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":3141, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":3142, + "componentType":5126, + "count":135, + "max":[ + 80.151611328125, + 126.6884765625, + 49.03564453125 + ], + "min":[ + -80.154541015625, + 0, + -49.03466796875 + ], + "type":"VEC3" + }, + { + "bufferView":3143, + "componentType":5126, + "count":135, + "type":"VEC3" + }, + { + "bufferView":3144, + "componentType":5126, + "count":135, + "type":"VEC2" + }, + { + "bufferView":3145, + "componentType":5126, + "count":548, + "max":[ + 7.778985023498535, + 21.312030792236328, + 10.655908584594727 + ], + "min":[ + -7.778889179229736, + 0.00021648406982421875, + -10.65590763092041 + ], + "type":"VEC3" + }, + { + "bufferView":3146, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":3147, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":3148, + "componentType":5126, + "count":348, + "max":[ + 170.435546875, + 188.5546875, + 176.2041015625 + ], + "min":[ + -170.4345703125, + 45.296875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":3149, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":3150, + "componentType":5126, + "count":348, + "type":"VEC2" + }, + { + "bufferView":3151, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":3152, + "componentType":5126, + "count":137, + "max":[ + 40.6044921875, + 81.2109375, + 5085.66357421875 + ], + "min":[ + -40.60546875, + 0, + -5085.66357421875 + ], + "type":"VEC3" + }, + { + "bufferView":3153, + "componentType":5126, + "count":137, + "type":"VEC3" + }, + { + "bufferView":3154, + "componentType":5126, + "count":137, + "type":"VEC2" + }, + { + "bufferView":3155, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":3156, + "componentType":5126, + "count":209, + "max":[ + 13.25390625, + 75.79581451416016, + 25.50634765625 + ], + "min":[ + -13.2509765625, + 0.0001827246742323041, + -25.497802734375 + ], + "type":"VEC3" + }, + { + "bufferView":3157, + "componentType":5126, + "count":209, + "type":"VEC3" + }, + { + "bufferView":3158, + "componentType":5126, + "count":209, + "type":"VEC2" + }, + { + "bufferView":3159, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":3160, + "componentType":5126, + "count":574, + "max":[ + 197.12852478027344, + 203.781005859375, + 177.87860107421875 + ], + "min":[ + -197.13157653808594, + 1.3755416870117188, + -165.59820556640625 + ], + "type":"VEC3" + }, + { + "bufferView":3161, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":3162, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":3163, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":3164, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":3165, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3166, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3167, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3168, + "componentType":5126, + "count":648, + "max":[ + 615.011474609375, + 2510.92529296875, + 347.267578125 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.26416015625 + ], + "type":"VEC3" + }, + { + "bufferView":3169, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":3170, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":3171, + "componentType":5126, + "count":184, + "max":[ + 769.70703125, + 113.194580078125, + 56.597900390625 + ], + "min":[ + -769.71044921875, + 6.103515625e-05, + -56.596435546875 + ], + "type":"VEC3" + }, + { + "bufferView":3172, + "componentType":5126, + "count":184, + "type":"VEC3" + }, + { + "bufferView":3173, + "componentType":5126, + "count":184, + "type":"VEC2" + }, + { + "bufferView":3174, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":3175, + "componentType":5126, + "count":682, + "max":[ + 130.72265625, + 2974.83349609375, + 134.31640625 + ], + "min":[ + -130.72265625, + 0, + -134.31349182128906 + ], + "type":"VEC3" + }, + { + "bufferView":3176, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":3177, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":3178, + "componentType":5123, + "count":1308, + "type":"SCALAR" + }, + { + "bufferView":3179, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3180, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3181, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3182, + "componentType":5126, + "count":351, + "max":[ + 171.2998046875, + 184.80810546875, + 176.140625 + ], + "min":[ + -171.296875, + 44.45654296875, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":3183, + "componentType":5126, + "count":351, + "type":"VEC3" + }, + { + "bufferView":3184, + "componentType":5126, + "count":351, + "type":"VEC2" + }, + { + "bufferView":3185, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":3186, + "componentType":5126, + "count":88, + "max":[ + 58.8111572265625, + 124.20556640625, + 674.18310546875 + ], + "min":[ + -58.8118896484375, + 0, + -674.185546875 + ], + "type":"VEC3" + }, + { + "bufferView":3187, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":3188, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":3189, + "componentType":5123, + "count":180, + "type":"SCALAR" + }, + { + "bufferView":3190, + "componentType":5126, + "count":568, + "max":[ + 182.50498962402344, + 117.93252563476562, + 190.12266540527344 + ], + "min":[ + -182.5025177001953, + 0.000244140625, + -190.1229248046875 + ], + "type":"VEC3" + }, + { + "bufferView":3191, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":3192, + "componentType":5126, + "count":1021, + "max":[ + 90.109375, + 254.306640625, + 29.7861328125 + ], + "min":[ + -90.10888671875, + 1.31201171875, + -29.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":3193, + "componentType":5126, + "count":1021, + "type":"VEC3" + }, + { + "bufferView":3194, + "componentType":5126, + "count":1021, + "type":"VEC2" + }, + { + "bufferView":3195, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":3196, + "componentType":5126, + "count":216, + "max":[ + 33.4022216796875, + 133.60888671875, + 66.80322265625 + ], + "min":[ + -33.4022216796875, + 0, + -66.80419921875 + ], + "type":"VEC3" + }, + { + "bufferView":3197, + "componentType":5126, + "count":216, + "type":"VEC3" + }, + { + "bufferView":3198, + "componentType":5126, + "count":216, + "type":"VEC2" + }, + { + "bufferView":3199, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":3200, + "componentType":5126, + "count":578, + "max":[ + 195.72679138183594, + 202.38870239257812, + 176.66485595703125 + ], + "min":[ + -195.7303924560547, + 1.3652420043945312, + -164.384521484375 + ], + "type":"VEC3" + }, + { + "bufferView":3201, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":3202, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":3203, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":3204, + "componentType":5126, + "count":76, + "max":[ + 278.87213134765625, + 3543.081787109375, + 279.1019287109375 + ], + "min":[ + -278.86871337890625, + 0, + -279.1047058105469 + ], + "type":"VEC3" + }, + { + "bufferView":3205, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":3206, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":3207, + "componentType":5126, + "count":112, + "max":[ + 1022.581298828125, + 429.54217529296875, + 214.7710723876953 + ], + "min":[ + -1022.5777587890625, + -3.0517578125e-05, + -214.77090454101562 + ], + "type":"VEC3" + }, + { + "bufferView":3208, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":3209, + "componentType":5126, + "count":801, + "max":[ + 4.1318359375, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":3210, + "componentType":5126, + "count":801, + "type":"VEC3" + }, + { + "bufferView":3211, + "componentType":5126, + "count":801, + "type":"VEC2" + }, + { + "bufferView":3212, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":3213, + "componentType":5126, + "count":1420, + "max":[ + 433.12109375, + 367.92919921875, + 90.004150390625 + ], + "min":[ + -433.119140625, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":3214, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":3215, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":3216, + "componentType":5126, + "count":52, + "max":[ + 391.73828125, + 608.220703125, + 142.32275390625 + ], + "min":[ + -391.7373046875, + 0, + -142.31982421875 + ], + "type":"VEC3" + }, + { + "bufferView":3217, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":3218, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":3219, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":3220, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.585693359375 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":3221, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3222, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3223, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3224, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3225, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3226, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3227, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3228, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3229, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3230, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3231, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3232, + "componentType":5126, + "count":24, + "max":[ + 88.34375, + 276.109375, + 83.761474609375 + ], + "min":[ + -88.3427734375, + 0, + -83.761474609375 + ], + "type":"VEC3" + }, + { + "bufferView":3233, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3234, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3235, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":3236, + "componentType":5126, + "count":144, + "max":[ + 428.9188232421875, + 1017.9165649414062, + 642.9835205078125 + ], + "min":[ + -428.9180603027344, + 9.1552734375e-05, + -642.9835815429688 + ], + "type":"VEC3" + }, + { + "bufferView":3237, + "componentType":5126, + "count":144, + "type":"VEC3" + }, + { + "bufferView":3238, + "componentType":5126, + "count":53, + "max":[ + 123.61669921875, + 696.755859375, + 366.15283203125 + ], + "min":[ + -123.61181640625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":3239, + "componentType":5126, + "count":53, + "type":"VEC3" + }, + { + "bufferView":3240, + "componentType":5126, + "count":53, + "type":"VEC2" + }, + { + "bufferView":3241, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":3242, + "componentType":5126, + "count":12, + "max":[ + 411.4619140625, + 388.9410400390625, + 9.51611328125 + ], + "min":[ + -411.4638671875, + 0, + -9.5142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":3243, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":3244, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":3245, + "componentType":5126, + "count":180, + "max":[ + 769.70947265625, + 113.194580078125, + 56.59619140625 + ], + "min":[ + -769.7080078125, + 0, + -56.5966796875 + ], + "type":"VEC3" + }, + { + "bufferView":3246, + "componentType":5126, + "count":180, + "type":"VEC3" + }, + { + "bufferView":3247, + "componentType":5126, + "count":180, + "type":"VEC2" + }, + { + "bufferView":3248, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":3249, + "componentType":5126, + "count":51, + "max":[ + 161.97705078125, + 658.67578125, + 366.152587890625 + ], + "min":[ + -161.98291015625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":3250, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":3251, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":3252, + "componentType":5126, + "count":53, + "max":[ + 123.61669921875, + 696.755859375, + 366.15283203125 + ], + "min":[ + -123.61181640625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":3253, + "componentType":5126, + "count":53, + "type":"VEC3" + }, + { + "bufferView":3254, + "componentType":5126, + "count":53, + "type":"VEC2" + }, + { + "bufferView":3255, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7293758392334 + ], + "min":[ + -43.587890625, + 0.000118255615234375, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":3256, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":3257, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":3258, + "componentType":5126, + "count":164, + "max":[ + 524.54638671875, + 14332.2607421875, + 63.8193359375 + ], + "min":[ + -524.545166015625, + 0.00096893310546875, + -63.8193359375 + ], + "type":"VEC3" + }, + { + "bufferView":3259, + "componentType":5126, + "count":164, + "type":"VEC3" + }, + { + "bufferView":3260, + "componentType":5126, + "count":164, + "type":"VEC2" + }, + { + "bufferView":3261, + "componentType":5126, + "count":92, + "max":[ + 69.56640625, + 141.0703125, + 824.2412109375 + ], + "min":[ + -69.57421875, + 0, + -824.24072265625 + ], + "type":"VEC3" + }, + { + "bufferView":3262, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":3263, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":3264, + "componentType":5126, + "count":56, + "max":[ + 238.478515625, + 483.897705078125, + 30.0009765625 + ], + "min":[ + -238.4794921875, + 0, + -30 + ], + "type":"VEC3" + }, + { + "bufferView":3265, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":3266, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":3267, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":3268, + "componentType":5126, + "count":12, + "max":[ + 10.2607421875, + 419.39959716796875, + 443.6836242675781 + ], + "min":[ + -10.259765625, + 7.62939453125e-05, + -443.6855773925781 + ], + "type":"VEC3" + }, + { + "bufferView":3269, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":3270, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":3271, + "componentType":5126, + "count":568, + "max":[ + 148.07968139648438, + 32.825321197509766, + 148.07913208007812 + ], + "min":[ + -148.07859802246094, + 0.00012969970703125, + -148.0791473388672 + ], + "type":"VEC3" + }, + { + "bufferView":3272, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":3273, + "componentType":5126, + "count":24, + "max":[ + 292.4480895996094, + 205.86782836914062, + 292.42669677734375 + ], + "min":[ + -292.4480895996094, + 7.62939453125e-05, + -292.4266357421875 + ], + "type":"VEC3" + }, + { + "bufferView":3274, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3275, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3276, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":3277, + "componentType":5126, + "count":1336, + "max":[ + 413.28759765625, + 1858.30810546875, + 224.743896484375 + ], + "min":[ + -460.22119140625, + 25.10791015625, + -224.744140625 + ], + "type":"VEC3" + }, + { + "bufferView":3278, + "componentType":5126, + "count":1336, + "type":"VEC3" + }, + { + "bufferView":3279, + "componentType":5126, + "count":1336, + "type":"VEC2" + }, + { + "bufferView":3280, + "componentType":5123, + "count":2316, + "type":"SCALAR" + }, + { + "bufferView":3281, + "componentType":5126, + "count":488, + "max":[ + 879.658203125, + 587.0332641601562, + 879.6582641601562 + ], + "min":[ + -879.66015625, + 3.0517578125e-05, + -879.6621704101562 + ], + "type":"VEC3" + }, + { + "bufferView":3282, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":3283, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":3284, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3285, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3286, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3287, + "componentType":5126, + "count":237, + "max":[ + 169.1015625, + 188.23828125, + 173.28125 + ], + "min":[ + -169.1005859375, + 0, + -173.28173828125 + ], + "type":"VEC3" + }, + { + "bufferView":3288, + "componentType":5126, + "count":237, + "type":"VEC3" + }, + { + "bufferView":3289, + "componentType":5126, + "count":237, + "type":"VEC2" + }, + { + "bufferView":3290, + "componentType":5126, + "count":568, + "max":[ + 163.4947967529297, + 170.37051391601562, + 148.75009155273438 + ], + "min":[ + -163.4954833984375, + 1.13299560546875, + -136.4693603515625 + ], + "type":"VEC3" + }, + { + "bufferView":3291, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":3292, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3293, + "componentType":5126, + "count":720, + "max":[ + 36.197998046875, + 520.969482421875, + 260.4848937988281 + ], + "min":[ + -36.197998046875, + -0.0003662109375, + -260.4848937988281 + ], + "type":"VEC3" + }, + { + "bufferView":3294, + "componentType":5126, + "count":720, + "type":"VEC3" + }, + { + "bufferView":3295, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3296, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3297, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3298, + "componentType":5126, + "count":1932, + "max":[ + 2488.8037109375, + 2474.1171875, + 3841.49658203125 + ], + "min":[ + -2488.799072265625, + 0, + -3842.97900390625 + ], + "type":"VEC3" + }, + { + "bufferView":3299, + "componentType":5126, + "count":1932, + "type":"VEC3" + }, + { + "bufferView":3300, + "componentType":5126, + "count":1932, + "type":"VEC2" + }, + { + "bufferView":3301, + "componentType":5123, + "count":6318, + "type":"SCALAR" + }, + { + "bufferView":3302, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3303, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3304, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3305, + "componentType":5126, + "count":24, + "max":[ + 516.6122436523438, + 50, + 7084.615234375 + ], + "min":[ + -516.6124877929688, + -7.62939453125e-06, + -7084.6162109375 + ], + "type":"VEC3" + }, + { + "bufferView":3306, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3307, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92938232421875, + 384.5810852050781 + ], + "min":[ + -244.466796875, + 0.0001068115234375, + -384.5781555175781 + ], + "type":"VEC3" + }, + { + "bufferView":3308, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":3309, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":3310, + "componentType":5126, + "count":578, + "max":[ + 209.62005615234375, + 214.72119140625, + 182.55419921875 + ], + "min":[ + -209.6181640625, + 6.103515625e-05, + -182.55435180664062 + ], + "type":"VEC3" + }, + { + "bufferView":3311, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":3312, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3313, + "componentType":5126, + "count":263, + "max":[ + 169.10693359375, + 196.21435546875, + 175.05322265625 + ], + "min":[ + -169.1068115234375, + 0, + -175.0537109375 + ], + "type":"VEC3" + }, + { + "bufferView":3314, + "componentType":5126, + "count":263, + "type":"VEC3" + }, + { + "bufferView":3315, + "componentType":5126, + "count":263, + "type":"VEC2" + }, + { + "bufferView":3316, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":3317, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3318, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3319, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3320, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 703.126953125 + ], + "min":[ + -110.00003814697266, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":3321, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3322, + "componentType":5126, + "count":8291, + "max":[ + 496.3330078125, + 427.0244140625, + 103.78662109375 + ], + "min":[ + -496.3359375, + -0.0009765625, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":3323, + "componentType":5126, + "count":8291, + "type":"VEC3" + }, + { + "bufferView":3324, + "componentType":5126, + "count":8291, + "type":"VEC2" + }, + { + "bufferView":3325, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":3326, + "componentType":5126, + "count":113, + "max":[ + 31.293136596679688, + 15.51094913482666, + 6.50262451171875 + ], + "min":[ + -31.293132781982422, + 8.869171142578125e-05, + -6.502471923828125 + ], + "type":"VEC3" + }, + { + "bufferView":3327, + "componentType":5126, + "count":113, + "type":"VEC3" + }, + { + "bufferView":3328, + "componentType":5126, + "count":113, + "type":"VEC2" + }, + { + "bufferView":3329, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":3330, + "componentType":5126, + "count":570, + "max":[ + 211.34117126464844, + 216.4180145263672, + 184.04443359375 + ], + "min":[ + -211.33865356445312, + -4.57763671875e-05, + -184.0446319580078 + ], + "type":"VEC3" + }, + { + "bufferView":3331, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":3332, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3333, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3334, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3335, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3336, + "componentType":5126, + "count":344, + "max":[ + 171.298828125, + 184.806640625, + 176.141357421875 + ], + "min":[ + -171.296875, + 44.4580078125, + -176.140380859375 + ], + "type":"VEC3" + }, + { + "bufferView":3337, + "componentType":5126, + "count":344, + "type":"VEC3" + }, + { + "bufferView":3338, + "componentType":5126, + "count":344, + "type":"VEC2" + }, + { + "bufferView":3339, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":3340, + "componentType":5126, + "count":161, + "max":[ + 769.70751953125, + 113.19482421875, + 56.59765625 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.5966796875 + ], + "type":"VEC3" + }, + { + "bufferView":3341, + "componentType":5126, + "count":161, + "type":"VEC3" + }, + { + "bufferView":3342, + "componentType":5126, + "count":161, + "type":"VEC2" + }, + { + "bufferView":3343, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":3344, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92926025390625, + 384.1406555175781 + ], + "min":[ + -245.2333984375, + 4.57763671875e-05, + -384.1396789550781 + ], + "type":"VEC3" + }, + { + "bufferView":3345, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":3346, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":3347, + "componentType":5126, + "count":127, + "max":[ + 3859.009521484375, + 81.2109375, + 40.60498046875 + ], + "min":[ + -3859.01416015625, + 0, + -40.60498046875 + ], + "type":"VEC3" + }, + { + "bufferView":3348, + "componentType":5126, + "count":127, + "type":"VEC3" + }, + { + "bufferView":3349, + "componentType":5126, + "count":127, + "type":"VEC2" + }, + { + "bufferView":3350, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":3351, + "componentType":5126, + "count":52, + "max":[ + 238.47998046875, + 483.89794921875, + 30.0001220703125 + ], + "min":[ + -238.478515625, + 0, + -30.0003662109375 + ], + "type":"VEC3" + }, + { + "bufferView":3352, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":3353, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":3354, + "componentType":5126, + "count":112, + "max":[ + 147.98106384277344, + 365.8507995605469, + 106.49419403076172 + ], + "min":[ + -147.98333740234375, + -3.0517578125e-05, + -106.49420166015625 + ], + "type":"VEC3" + }, + { + "bufferView":3355, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":3356, + "componentType":5126, + "count":51, + "max":[ + 123.61328125, + 696.755859375, + 366.15264892578125 + ], + "min":[ + -123.615234375, + 0, + -366.15325927734375 + ], + "type":"VEC3" + }, + { + "bufferView":3357, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":3358, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":3359, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58642578125 + ], + "min":[ + -46.284423828125, + 0, + -78.5849609375 + ], + "type":"VEC3" + }, + { + "bufferView":3360, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3361, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3362, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58544921875 + ], + "min":[ + -46.2841796875, + 0, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":3363, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3364, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3365, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51410675048828, + 43.588871002197266 + ], + "min":[ + -22.728515625, + -7.62939453125e-06, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":3366, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":3367, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":3368, + "componentType":5123, + "count":276, + "type":"SCALAR" + }, + { + "bufferView":3369, + "componentType":5126, + "count":337, + "max":[ + 170.90625, + 157.00390625, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":3370, + "componentType":5126, + "count":337, + "type":"VEC3" + }, + { + "bufferView":3371, + "componentType":5126, + "count":337, + "type":"VEC2" + }, + { + "bufferView":3372, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":3373, + "componentType":5126, + "count":342, + "max":[ + 170.435546875, + 188.5556640625, + 176.20263671875 + ], + "min":[ + -170.43359375, + 45.2958984375, + -176.205078125 + ], + "type":"VEC3" + }, + { + "bufferView":3374, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":3375, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":3376, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":3377, + "componentType":5126, + "count":72, + "max":[ + 22.50006103515625, + 1492.539794921875, + 771.3447875976562 + ], + "min":[ + -22.500253677368164, + 0, + -771.34619140625 + ], + "type":"VEC3" + }, + { + "bufferView":3378, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":3379, + "componentType":5126, + "count":108, + "max":[ + 1272.04541015625, + 2502.010009765625, + 25.650390625 + ], + "min":[ + -1272.044921875, + 0, + -25.650146484375 + ], + "type":"VEC3" + }, + { + "bufferView":3380, + "componentType":5126, + "count":108, + "type":"VEC3" + }, + { + "bufferView":3381, + "componentType":5126, + "count":108, + "type":"VEC2" + }, + { + "bufferView":3382, + "componentType":5123, + "count":162, + "type":"SCALAR" + }, + { + "bufferView":3383, + "componentType":5126, + "count":586, + "max":[ + 161.46363830566406, + 233.64410400390625, + 145.03216552734375 + ], + "min":[ + -168.67111206054688, + 34.295196533203125, + -156.9638214111328 + ], + "type":"VEC3" + }, + { + "bufferView":3384, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":3385, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3386, + "componentType":5126, + "count":123, + "max":[ + 17.02679443359375, + 3492.66357421875, + 17.0267333984375 + ], + "min":[ + -17.027099609375, + 0, + -17.026611328125 + ], + "type":"VEC3" + }, + { + "bufferView":3387, + "componentType":5126, + "count":123, + "type":"VEC3" + }, + { + "bufferView":3388, + "componentType":5126, + "count":123, + "type":"VEC2" + }, + { + "bufferView":3389, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":3390, + "componentType":5126, + "count":244, + "max":[ + 173.283203125, + 188.23828125, + 169.100830078125 + ], + "min":[ + -173.27978515625, + 0, + -169.100830078125 + ], + "type":"VEC3" + }, + { + "bufferView":3391, + "componentType":5126, + "count":244, + "type":"VEC3" + }, + { + "bufferView":3392, + "componentType":5126, + "count":244, + "type":"VEC2" + }, + { + "bufferView":3393, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":3394, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":3395, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3396, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3397, + "componentType":5126, + "count":570, + "max":[ + 325.56951904296875, + 210.5472412109375, + 325.56951904296875 + ], + "min":[ + -325.56951904296875, + -4.842902490054257e-05, + -325.5695495605469 + ], + "type":"VEC3" + }, + { + "bufferView":3398, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":3399, + "componentType":5126, + "count":4, + "max":[ + 698.8828125, + 2586.4794921875, + 0.00022611767053604126 + ], + "min":[ + -698.88671875, + 0, + -0.00022611767053604126 + ], + "type":"VEC3" + }, + { + "bufferView":3400, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3401, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3402, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92938232421875, + 384.140625 + ], + "min":[ + -245.232421875, + 0, + -384.1410827636719 + ], + "type":"VEC3" + }, + { + "bufferView":3403, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":3404, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":3405, + "componentType":5126, + "count":576, + "max":[ + 197.86923217773438, + 126.80730438232422, + 206.1774444580078 + ], + "min":[ + -197.8684844970703, + 3.0517578125e-05, + -206.17755126953125 + ], + "type":"VEC3" + }, + { + "bufferView":3406, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":3407, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3408, + "componentType":5126, + "count":573, + "max":[ + 171.7727813720703, + 207.16458129882812, + 157.11294555664062 + ], + "min":[ + -171.77452087402344, + -9.1552734375e-05, + -157.1129608154297 + ], + "type":"VEC3" + }, + { + "bufferView":3409, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":3410, + "componentType":5126, + "count":592, + "max":[ + 190.123779296875, + 32.82526779174805, + 190.12266540527344 + ], + "min":[ + -190.12181091308594, + 6.866455078125e-05, + -190.1229248046875 + ], + "type":"VEC3" + }, + { + "bufferView":3411, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":3412, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3413, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.456298828125, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.00048828125, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":3414, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":3415, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":3416, + "componentType":5126, + "count":580, + "max":[ + 166.2982635498047, + 173.15460205078125, + 151.177490234375 + ], + "min":[ + -166.29783630371094, + 1.1530075073242188, + -138.8967742919922 + ], + "type":"VEC3" + }, + { + "bufferView":3417, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":3418, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3419, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58544921875 + ], + "min":[ + -46.2841796875, + 0, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":3420, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3421, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3422, + "componentType":5126, + "count":24, + "max":[ + 151.57354736328125, + 224.481201171875, + 158.55409240722656 + ], + "min":[ + -151.57440185546875, + -0.000244140625, + -158.55517578125 + ], + "type":"VEC3" + }, + { + "bufferView":3423, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3424, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3425, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3426, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3427, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3428, + "componentType":5126, + "count":44, + "max":[ + 4122.3662109375, + 340.60888671875, + 4804.2783203125 + ], + "min":[ + -4122.3662109375, + 7.62939453125e-05, + -4804.2744140625 + ], + "type":"VEC3" + }, + { + "bufferView":3429, + "componentType":5126, + "count":44, + "type":"VEC3" + }, + { + "bufferView":3430, + "componentType":5126, + "count":44, + "type":"VEC2" + }, + { + "bufferView":3431, + "componentType":5123, + "count":78, + "type":"SCALAR" + }, + { + "bufferView":3432, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28369140625 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":3433, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":3434, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":3435, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":3436, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3437, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3438, + "componentType":5126, + "count":592, + "max":[ + 190.123779296875, + 32.82526779174805, + 190.12266540527344 + ], + "min":[ + -190.12181091308594, + 6.866455078125e-05, + -190.1229248046875 + ], + "type":"VEC3" + }, + { + "bufferView":3439, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":3440, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92938232421875, + 384.58251953125 + ], + "min":[ + -244.466796875, + 6.103515625e-05, + -384.5790710449219 + ], + "type":"VEC3" + }, + { + "bufferView":3441, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":3442, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":3443, + "componentType":5126, + "count":570, + "max":[ + 181.16346740722656, + 117.29295349121094, + 188.72120666503906 + ], + "min":[ + -181.1614990234375, + -0.0001373291015625, + -188.72146606445312 + ], + "type":"VEC3" + }, + { + "bufferView":3444, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":3445, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3446, + "componentType":5126, + "count":559, + "max":[ + 224.27151489257812, + 530.1519775390625, + 223.79136657714844 + ], + "min":[ + -224.27151489257812, + 82.5692138671875, + -223.7913818359375 + ], + "type":"VEC3" + }, + { + "bufferView":3447, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":3448, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":3449, + "componentType":5126, + "count":112, + "max":[ + 106.49421691894531, + 381.6711730957031, + 171.66294860839844 + ], + "min":[ + -106.49431610107422, + 1.52587890625e-05, + -171.66390991210938 + ], + "type":"VEC3" + }, + { + "bufferView":3450, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":3451, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":3452, + "componentType":5126, + "count":570, + "max":[ + 211.34117126464844, + 217.8957977294922, + 190.18484497070312 + ], + "min":[ + -211.33865356445312, + 1.4777679443359375, + -177.90415954589844 + ], + "type":"VEC3" + }, + { + "bufferView":3453, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":3454, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3455, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3456, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3457, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3458, + "componentType":5126, + "count":588, + "max":[ + 176.10997009277344, + 182.89944458007812, + 147.39236450195312 + ], + "min":[ + -176.10647583007812, + 1.2238540649414062, + -159.67364501953125 + ], + "type":"VEC3" + }, + { + "bufferView":3459, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":3460, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3461, + "componentType":5126, + "count":232, + "max":[ + 173.28125, + 188.23828125, + 169.100830078125 + ], + "min":[ + -173.28173828125, + 0, + -169.100830078125 + ], + "type":"VEC3" + }, + { + "bufferView":3462, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":3463, + "componentType":5126, + "count":232, + "type":"VEC2" + }, + { + "bufferView":3464, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":3465, + "componentType":5126, + "count":24, + "max":[ + 189.23095703125, + 33.600830078125, + 486.49072265625 + ], + "min":[ + -189.23193359375, + 0, + -486.489013671875 + ], + "type":"VEC3" + }, + { + "bufferView":3466, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3467, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3468, + "componentType":5126, + "count":108, + "max":[ + 1274.9716796875, + 2502.0087890625, + 25.650390625 + ], + "min":[ + -1274.9716796875, + -6.103515625e-05, + -25.650390625 + ], + "type":"VEC3" + }, + { + "bufferView":3469, + "componentType":5126, + "count":108, + "type":"VEC3" + }, + { + "bufferView":3470, + "componentType":5126, + "count":108, + "type":"VEC2" + }, + { + "bufferView":3471, + "componentType":5126, + "count":589, + "max":[ + 174.03504943847656, + 241.01638793945312, + 161.85617065429688 + ], + "min":[ + -166.82969665527344, + 35.41496276855469, + -149.9237060546875 + ], + "type":"VEC3" + }, + { + "bufferView":3472, + "componentType":5126, + "count":589, + "type":"VEC3" + }, + { + "bufferView":3473, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3474, + "componentType":5126, + "count":570, + "max":[ + 211.34117126464844, + 216.4180145263672, + 184.04443359375 + ], + "min":[ + -211.33865356445312, + -4.57763671875e-05, + -184.0446319580078 + ], + "type":"VEC3" + }, + { + "bufferView":3475, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":3476, + "componentType":5126, + "count":328, + "max":[ + 10.6796875, + 283.877197265625, + 60.75075912475586 + ], + "min":[ + -10.677734375, + -1.52587890625e-05, + -60.74929428100586 + ], + "type":"VEC3" + }, + { + "bufferView":3477, + "componentType":5126, + "count":328, + "type":"VEC3" + }, + { + "bufferView":3478, + "componentType":5126, + "count":328, + "type":"VEC2" + }, + { + "bufferView":3479, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":3480, + "componentType":5126, + "count":583, + "max":[ + 150.8831329345703, + 157.842041015625, + 137.82708740234375 + ], + "min":[ + -150.88096618652344, + 1.0424041748046875, + -125.54588317871094 + ], + "type":"VEC3" + }, + { + "bufferView":3481, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":3482, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3483, + "componentType":5126, + "count":559, + "max":[ + 224.27151489257812, + 447.5828857421875, + 223.7913818359375 + ], + "min":[ + -224.27151489257812, + 0.0001068115234375, + -223.79139709472656 + ], + "type":"VEC3" + }, + { + "bufferView":3484, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":3485, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":3486, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.5140380859375, + 22.7260799407959 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.729618072509766 + ], + "type":"VEC3" + }, + { + "bufferView":3487, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":3488, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":3489, + "componentType":5126, + "count":162, + "max":[ + 983.470703125, + 355.5092468261719, + 983.4702758789062 + ], + "min":[ + -983.470703125, + 9.1552734375e-05, + -983.4717407226562 + ], + "type":"VEC3" + }, + { + "bufferView":3490, + "componentType":5126, + "count":162, + "type":"VEC3" + }, + { + "bufferView":3491, + "componentType":5126, + "count":162, + "type":"VEC2" + }, + { + "bufferView":3492, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":3493, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":3494, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3495, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3496, + "componentType":5126, + "count":914, + "max":[ + 879.66015625, + 587.032958984375, + 879.6592407226562 + ], + "min":[ + -879.658203125, + -3.0517578125e-05, + -879.6607055664062 + ], + "type":"VEC3" + }, + { + "bufferView":3497, + "componentType":5126, + "count":914, + "type":"VEC3" + }, + { + "bufferView":3498, + "componentType":5126, + "count":914, + "type":"VEC2" + }, + { + "bufferView":3499, + "componentType":5126, + "count":12, + "max":[ + 411.462890625, + 388.941162109375, + 9.51611328125 + ], + "min":[ + -411.462890625, + 0, + -9.5142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":3500, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":3501, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":3502, + "componentType":5126, + "count":24, + "max":[ + 15.47509765625, + 2142.8671875, + 381.68865966796875 + ], + "min":[ + -15.47509765625, + 0, + -381.68475341796875 + ], + "type":"VEC3" + }, + { + "bufferView":3503, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3504, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3505, + "componentType":5126, + "count":112, + "max":[ + 1022.581298828125, + 429.54217529296875, + 214.7710723876953 + ], + "min":[ + -1022.5777587890625, + -3.0517578125e-05, + -214.77090454101562 + ], + "type":"VEC3" + }, + { + "bufferView":3506, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":3507, + "componentType":5126, + "count":76, + "max":[ + 278.8667297363281, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8666687011719, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":3508, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":3509, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":3510, + "componentType":5126, + "count":96, + "max":[ + 513.90966796875, + 141.07080078125, + 69.5703125 + ], + "min":[ + -513.9052734375, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":3511, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":3512, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":3513, + "componentType":5123, + "count":204, + "type":"SCALAR" + }, + { + "bufferView":3514, + "componentType":5126, + "count":139, + "max":[ + 80.153076171875, + 126.6884765625, + 49.03515625 + ], + "min":[ + -80.153076171875, + 0, + -49.03515625 + ], + "type":"VEC3" + }, + { + "bufferView":3515, + "componentType":5126, + "count":139, + "type":"VEC3" + }, + { + "bufferView":3516, + "componentType":5126, + "count":139, + "type":"VEC2" + }, + { + "bufferView":3517, + "componentType":5126, + "count":586, + "max":[ + 161.46363830566406, + 233.64410400390625, + 145.03216552734375 + ], + "min":[ + -168.67111206054688, + 34.295196533203125, + -156.9638214111328 + ], + "type":"VEC3" + }, + { + "bufferView":3518, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":3519, + "componentType":5126, + "count":594, + "max":[ + 161.0444793701172, + 194.65914916992188, + 147.3292694091797 + ], + "min":[ + -161.04266357421875, + -0.000213623046875, + -147.3289031982422 + ], + "type":"VEC3" + }, + { + "bufferView":3520, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":3521, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3522, + "componentType":5126, + "count":1020, + "max":[ + 90.109375, + 254.30615234375, + 29.787109375 + ], + "min":[ + -90.10888671875, + 1.3115234375, + -29.7861328125 + ], + "type":"VEC3" + }, + { + "bufferView":3523, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":3524, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":3525, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":3526, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3527, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3528, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3529, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3530, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3531, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3532, + "componentType":5126, + "count":24, + "max":[ + 10.958126068115234, + 361.9337158203125, + 59.80952453613281 + ], + "min":[ + -10.958074569702148, + -9.1552734375e-05, + -59.811954498291016 + ], + "type":"VEC3" + }, + { + "bufferView":3533, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3534, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3535, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":3536, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3537, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3538, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3539, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":3540, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3541, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3542, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":3543, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":3544, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":3545, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3546, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3547, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3548, + "componentType":5126, + "count":56, + "max":[ + 238.478515625, + 483.897705078125, + 30.0003662109375 + ], + "min":[ + -238.4794921875, + 0, + -30.0001220703125 + ], + "type":"VEC3" + }, + { + "bufferView":3549, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":3550, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":3551, + "componentType":5126, + "count":188, + "max":[ + 769.70703125, + 113.194580078125, + 56.596923828125 + ], + "min":[ + -769.71044921875, + 6.103515625e-05, + -56.596923828125 + ], + "type":"VEC3" + }, + { + "bufferView":3552, + "componentType":5126, + "count":188, + "type":"VEC3" + }, + { + "bufferView":3553, + "componentType":5126, + "count":188, + "type":"VEC2" + }, + { + "bufferView":3554, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":3555, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51410675048828, + 43.587894439697266 + ], + "min":[ + -22.728515625, + -7.62939453125e-06, + -43.590335845947266 + ], + "type":"VEC3" + }, + { + "bufferView":3556, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":3557, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":3558, + "componentType":5126, + "count":254, + "max":[ + 175.0537109375, + 196.214111328125, + 169.1083984375 + ], + "min":[ + -175.05322265625, + 0, + -169.1064453125 + ], + "type":"VEC3" + }, + { + "bufferView":3559, + "componentType":5126, + "count":254, + "type":"VEC3" + }, + { + "bufferView":3560, + "componentType":5126, + "count":254, + "type":"VEC2" + }, + { + "bufferView":3561, + "componentType":5126, + "count":346, + "max":[ + 171.2978515625, + 184.80810546875, + 176.140625 + ], + "min":[ + -171.2978515625, + 44.45703125, + -176.14111328125 + ], + "type":"VEC3" + }, + { + "bufferView":3562, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":3563, + "componentType":5126, + "count":346, + "type":"VEC2" + }, + { + "bufferView":3564, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":3565, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.455078125, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.00048828125, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":3566, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":3567, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":3568, + "componentType":5126, + "count":570, + "max":[ + 181.16346740722656, + 117.29295349121094, + 188.72120666503906 + ], + "min":[ + -181.1614990234375, + -0.0001373291015625, + -188.72146606445312 + ], + "type":"VEC3" + }, + { + "bufferView":3569, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":3570, + "componentType":5126, + "count":7986, + "max":[ + 103.78759765625, + 429.9638671875, + 496.1484375 + ], + "min":[ + -103.78662109375, + 0, + -496.148681640625 + ], + "type":"VEC3" + }, + { + "bufferView":3571, + "componentType":5126, + "count":7986, + "type":"VEC3" + }, + { + "bufferView":3572, + "componentType":5126, + "count":7986, + "type":"VEC2" + }, + { + "bufferView":3573, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":3574, + "componentType":5126, + "count":88, + "max":[ + 58.8111572265625, + 124.20556640625, + 674.1845703125 + ], + "min":[ + -58.8118896484375, + 0, + -674.18408203125 + ], + "type":"VEC3" + }, + { + "bufferView":3575, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":3576, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":3577, + "componentType":5126, + "count":588, + "max":[ + 165.98907470703125, + 109.02416229248047, + 169.10089111328125 + ], + "min":[ + -158.7805938720703, + 0.68023681640625, + -169.10105895996094 + ], + "type":"VEC3" + }, + { + "bufferView":3578, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":3579, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3580, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":3581, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3582, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3583, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3584, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3585, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3586, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":3587, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":3588, + "componentType":5126, + "count":1420, + "max":[ + 245.234375, + 367.92926025390625, + 384.1396484375 + ], + "min":[ + -245.232421875, + -6.103515625e-05, + -384.1410827636719 + ], + "type":"VEC3" + }, + { + "bufferView":3589, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":3590, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":3591, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3592, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3593, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3594, + "componentType":5126, + "count":136, + "max":[ + 239.705078125, + 131.9609375, + 242.8515625 + ], + "min":[ + -239.70703125, + 0, + -242.8525390625 + ], + "type":"VEC3" + }, + { + "bufferView":3595, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":3596, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":3597, + "componentType":5123, + "count":252, + "type":"SCALAR" + }, + { + "bufferView":3598, + "componentType":5126, + "count":55, + "max":[ + 123.61669921875, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.61181640625, + 0, + -366.1533203125 + ], + "type":"VEC3" + }, + { + "bufferView":3599, + "componentType":5126, + "count":55, + "type":"VEC3" + }, + { + "bufferView":3600, + "componentType":5126, + "count":55, + "type":"VEC2" + }, + { + "bufferView":3601, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":3602, + "componentType":5126, + "count":96, + "max":[ + 471.5048828125, + 2139.384521484375, + 31.14141845703125 + ], + "min":[ + -471.5048828125, + 0, + -31.14031982421875 + ], + "type":"VEC3" + }, + { + "bufferView":3603, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":3604, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":3605, + "componentType":5126, + "count":24, + "max":[ + 554.65234375, + 38.30810546875, + 215.74468994140625 + ], + "min":[ + -554.6513671875, + 0, + -215.74362182617188 + ], + "type":"VEC3" + }, + { + "bufferView":3606, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3607, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3608, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":3609, + "componentType":5126, + "count":328, + "max":[ + 170.9052734375, + 157.003173828125, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.2880859375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":3610, + "componentType":5126, + "count":328, + "type":"VEC3" + }, + { + "bufferView":3611, + "componentType":5126, + "count":328, + "type":"VEC2" + }, + { + "bufferView":3612, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":3613, + "componentType":5126, + "count":588, + "max":[ + 940.453125, + 1055.2056884765625, + 881.7671508789062 + ], + "min":[ + -940.453125, + 0.0003662109375, + -881.7666625976562 + ], + "type":"VEC3" + }, + { + "bufferView":3614, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":3615, + "componentType":5126, + "count":588, + "type":"VEC2" + }, + { + "bufferView":3616, + "componentType":5123, + "count":588, + "type":"SCALAR" + }, + { + "bufferView":3617, + "componentType":5126, + "count":648, + "max":[ + 615.01171875, + 2510.925048828125, + 347.265625 + ], + "min":[ + -615.01025390625, + 0, + -347.26611328125 + ], + "type":"VEC3" + }, + { + "bufferView":3618, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":3619, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":3620, + "componentType":5126, + "count":336, + "max":[ + 13.560523986816406, + 272.65911865234375, + 115.08651733398438 + ], + "min":[ + -13.560836791992188, + 42.48628234863281, + -115.08638000488281 + ], + "type":"VEC3" + }, + { + "bufferView":3621, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":3622, + "componentType":5126, + "count":55, + "max":[ + 123.61669921875, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.61181640625, + 0, + -366.1533203125 + ], + "type":"VEC3" + }, + { + "bufferView":3623, + "componentType":5126, + "count":55, + "type":"VEC3" + }, + { + "bufferView":3624, + "componentType":5126, + "count":55, + "type":"VEC2" + }, + { + "bufferView":3625, + "componentType":5126, + "count":355, + "max":[ + 170.435546875, + 188.55517578125, + 176.2041015625 + ], + "min":[ + -170.43359375, + 45.29736328125, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":3626, + "componentType":5126, + "count":355, + "type":"VEC3" + }, + { + "bufferView":3627, + "componentType":5126, + "count":355, + "type":"VEC2" + }, + { + "bufferView":3628, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":3629, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7293758392334 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":3630, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":3631, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":3632, + "componentType":5126, + "count":74, + "max":[ + 37.2060546875, + 39.64406967163086, + 155.4697265625 + ], + "min":[ + -37.2080078125, + 1.9073486328125e-05, + -155.466796875 + ], + "type":"VEC3" + }, + { + "bufferView":3633, + "componentType":5126, + "count":74, + "type":"VEC3" + }, + { + "bufferView":3634, + "componentType":5126, + "count":74, + "type":"VEC2" + }, + { + "bufferView":3635, + "componentType":5123, + "count":132, + "type":"SCALAR" + }, + { + "bufferView":3636, + "componentType":5126, + "count":24, + "max":[ + 35.000003814697266, + 2000, + 35.000003814697266 + ], + "min":[ + -35.000003814697266, + 0, + -35.000003814697266 + ], + "type":"VEC3" + }, + { + "bufferView":3637, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3638, + "componentType":5126, + "count":596, + "max":[ + 146.67794799804688, + 32.8252067565918, + 146.67767333984375 + ], + "min":[ + -146.6774139404297, + -4.9591064453125e-05, + -146.6776885986328 + ], + "type":"VEC3" + }, + { + "bufferView":3639, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":3640, + "componentType":5126, + "count":48, + "max":[ + 11.695329666137695, + 233.9413299560547, + 289.01409912109375 + ], + "min":[ + -11.698831558227539, + -1.52587890625e-05, + -289.0140686035156 + ], + "type":"VEC3" + }, + { + "bufferView":3641, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":3642, + "componentType":5123, + "count":72, + "type":"SCALAR" + }, + { + "bufferView":3643, + "componentType":5126, + "count":2719, + "max":[ + 128.19970703125, + 421.52587890625, + 128.19970703125 + ], + "min":[ + -128.19921875, + 0, + -128.19873046875 + ], + "type":"VEC3" + }, + { + "bufferView":3644, + "componentType":5126, + "count":2719, + "type":"VEC3" + }, + { + "bufferView":3645, + "componentType":5126, + "count":2719, + "type":"VEC2" + }, + { + "bufferView":3646, + "componentType":5123, + "count":4800, + "type":"SCALAR" + }, + { + "bufferView":3647, + "componentType":5126, + "count":112, + "max":[ + 106.49427795410156, + 381.671142578125, + 171.6638946533203 + ], + "min":[ + -106.49419403076172, + 3.0517578125e-05, + -171.6629180908203 + ], + "type":"VEC3" + }, + { + "bufferView":3648, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":3649, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3650, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3651, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3652, + "componentType":5126, + "count":4, + "max":[ + 698.884765625, + 2586.479248046875, + 0.0010806098580360413 + ], + "min":[ + -698.884765625, + 0, + 0.0006283745169639587 + ], + "type":"VEC3" + }, + { + "bufferView":3653, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3654, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3655, + "componentType":5126, + "count":8046, + "max":[ + 103.78759765625, + 1010.39453125, + 180.1181640625 + ], + "min":[ + -103.78662109375, + 12.32421875, + -180.12109375 + ], + "type":"VEC3" + }, + { + "bufferView":3656, + "componentType":5126, + "count":8046, + "type":"VEC3" + }, + { + "bufferView":3657, + "componentType":5126, + "count":8046, + "type":"VEC2" + }, + { + "bufferView":3658, + "componentType":5126, + "count":450, + "max":[ + 104.17137908935547, + 104.17129516601562, + 104.17137908935547 + ], + "min":[ + -104.17139434814453, + -8.392333984375e-05, + -104.17137908935547 + ], + "type":"VEC3" + }, + { + "bufferView":3659, + "componentType":5126, + "count":450, + "type":"VEC3" + }, + { + "bufferView":3660, + "componentType":5126, + "count":450, + "type":"VEC2" + }, + { + "bufferView":3661, + "componentType":5126, + "count":230, + "max":[ + 169.0634765625, + 193.254638671875, + 174.40771484375 + ], + "min":[ + -169.0625, + 0, + -174.408203125 + ], + "type":"VEC3" + }, + { + "bufferView":3662, + "componentType":5126, + "count":230, + "type":"VEC3" + }, + { + "bufferView":3663, + "componentType":5126, + "count":230, + "type":"VEC2" + }, + { + "bufferView":3664, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":3665, + "componentType":5126, + "count":345, + "max":[ + 171.2958984375, + 184.8037109375, + 176.139892578125 + ], + "min":[ + -171.2998046875, + 44.45458984375, + -176.141845703125 + ], + "type":"VEC3" + }, + { + "bufferView":3666, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":3667, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":3668, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":3669, + "componentType":5126, + "count":7986, + "max":[ + 103.78759765625, + 429.9638671875, + 496.1484375 + ], + "min":[ + -103.78662109375, + 0, + -496.148681640625 + ], + "type":"VEC3" + }, + { + "bufferView":3670, + "componentType":5126, + "count":7986, + "type":"VEC3" + }, + { + "bufferView":3671, + "componentType":5126, + "count":7986, + "type":"VEC2" + }, + { + "bufferView":3672, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3673, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3674, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3675, + "componentType":5126, + "count":24, + "max":[ + -122.655517578125, + -349.95550537109375, + 44146.078125 + ], + "min":[ + -3445.96630859375, + -1432.457763671875, + 40206.28125 + ], + "type":"VEC3" + }, + { + "bufferView":3676, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3677, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":3678, + "componentType":5126, + "count":96, + "max":[ + 599.9990234375, + 143.7607421875, + 7168 + ], + "min":[ + -599.9991455078125, + -1.52587890625e-05, + -7168.0009765625 + ], + "type":"VEC3" + }, + { + "bufferView":3679, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":3680, + "componentType":5126, + "count":586, + "max":[ + 207.89891052246094, + 213.0241241455078, + 181.06394958496094 + ], + "min":[ + -207.89772033691406, + -0.0001068115234375, + -181.06411743164062 + ], + "type":"VEC3" + }, + { + "bufferView":3681, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":3682, + "componentType":5126, + "count":152, + "max":[ + 69.57080078125, + 156.62646484375, + 586.3173828125 + ], + "min":[ + -69.5693359375, + 0, + -586.31884765625 + ], + "type":"VEC3" + }, + { + "bufferView":3683, + "componentType":5126, + "count":152, + "type":"VEC3" + }, + { + "bufferView":3684, + "componentType":5126, + "count":152, + "type":"VEC2" + }, + { + "bufferView":3685, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":3686, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3687, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3688, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3689, + "componentType":5126, + "count":60, + "max":[ + 2752.0009765625, + 2819.531005859375, + 1436.7666015625 + ], + "min":[ + -2752.0029296875, + 0, + -1436.763671875 + ], + "type":"VEC3" + }, + { + "bufferView":3690, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":3691, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":3692, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51409912109375, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":3693, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":3694, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":3695, + "componentType":5126, + "count":24, + "max":[ + 253.74276733398438, + 50, + 463.990234375 + ], + "min":[ + -253.74319458007812, + -8.255030479631387e-06, + -463.9902648925781 + ], + "type":"VEC3" + }, + { + "bufferView":3696, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3697, + "componentType":5126, + "count":545, + "max":[ + 1958.880859375, + 2326.893310546875, + 738.77001953125 + ], + "min":[ + -1958.877685546875, + -0.000732421875, + -738.76806640625 + ], + "type":"VEC3" + }, + { + "bufferView":3698, + "componentType":5126, + "count":545, + "type":"VEC3" + }, + { + "bufferView":3699, + "componentType":5126, + "count":545, + "type":"VEC2" + }, + { + "bufferView":3700, + "componentType":5123, + "count":1128, + "type":"SCALAR" + }, + { + "bufferView":3701, + "componentType":5126, + "count":8201, + "max":[ + 496.33251953125, + 427.021484375, + 103.78662109375 + ], + "min":[ + -496.335693359375, + 0, + -103.78662109375 + ], + "type":"VEC3" + }, + { + "bufferView":3702, + "componentType":5126, + "count":8201, + "type":"VEC3" + }, + { + "bufferView":3703, + "componentType":5126, + "count":8201, + "type":"VEC2" + }, + { + "bufferView":3704, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":3705, + "componentType":5126, + "count":279, + "max":[ + 23.693748474121094, + 267.575927734375, + 235.96371459960938 + ], + "min":[ + -23.28312873840332, + 9.918212890625e-05, + -235.9256591796875 + ], + "type":"VEC3" + }, + { + "bufferView":3706, + "componentType":5126, + "count":279, + "type":"VEC3" + }, + { + "bufferView":3707, + "componentType":5126, + "count":279, + "type":"VEC2" + }, + { + "bufferView":3708, + "componentType":5123, + "count":645, + "type":"SCALAR" + }, + { + "bufferView":3709, + "componentType":5126, + "count":6522, + "max":[ + 128.0606231689453, + 193.06546020507812, + 128.06063842773438 + ], + "min":[ + -128.06065368652344, + -0.00017547607421875, + -128.06065368652344 + ], + "type":"VEC3" + }, + { + "bufferView":3710, + "componentType":5126, + "count":6522, + "type":"VEC3" + }, + { + "bufferView":3711, + "componentType":5126, + "count":6522, + "type":"VEC2" + }, + { + "bufferView":3712, + "componentType":5123, + "count":37296, + "type":"SCALAR" + }, + { + "bufferView":3713, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3714, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3715, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3716, + "componentType":5126, + "count":104, + "max":[ + 57.39837646484375, + 3360.316650390625, + 57.398681640625 + ], + "min":[ + -57.39813232421875, + -3.814697265625e-05, + -57.39794921875 + ], + "type":"VEC3" + }, + { + "bufferView":3717, + "componentType":5126, + "count":104, + "type":"VEC3" + }, + { + "bufferView":3718, + "componentType":5126, + "count":104, + "type":"VEC2" + }, + { + "bufferView":3719, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":3720, + "componentType":5126, + "count":73, + "max":[ + 1657.5760498046875, + 1983.967529296875, + 2338.061279296875 + ], + "min":[ + -1657.575927734375, + -0.0002288818359375, + -2338.062255859375 + ], + "type":"VEC3" + }, + { + "bufferView":3721, + "componentType":5126, + "count":73, + "type":"VEC3" + }, + { + "bufferView":3722, + "componentType":5126, + "count":73, + "type":"VEC2" + }, + { + "bufferView":3723, + "componentType":5126, + "count":648, + "max":[ + 615.011474609375, + 2510.92529296875, + 347.2666015625 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.26513671875 + ], + "type":"VEC3" + }, + { + "bufferView":3724, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":3725, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":3726, + "componentType":5126, + "count":1153, + "max":[ + 65.60057830810547, + 185.22500610351562, + 5.788296699523926 + ], + "min":[ + -65.6004867553711, + -3.0517578125e-05, + -5.788368225097656 + ], + "type":"VEC3" + }, + { + "bufferView":3727, + "componentType":5126, + "count":1153, + "type":"VEC3" + }, + { + "bufferView":3728, + "componentType":5126, + "count":1153, + "type":"VEC2" + }, + { + "bufferView":3729, + "componentType":5123, + "count":3930, + "type":"SCALAR" + }, + { + "bufferView":3730, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3731, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3732, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3733, + "componentType":5126, + "count":135, + "max":[ + 2919.06103515625, + 81.212890625, + 40.60498046875 + ], + "min":[ + -2919.05810546875, + 0, + -40.60498046875 + ], + "type":"VEC3" + }, + { + "bufferView":3734, + "componentType":5126, + "count":135, + "type":"VEC3" + }, + { + "bufferView":3735, + "componentType":5126, + "count":135, + "type":"VEC2" + }, + { + "bufferView":3736, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":3737, + "componentType":5126, + "count":56, + "max":[ + 217.041015625, + 520.125, + 29.7984619140625 + ], + "min":[ + -217.04150390625, + 0, + -29.798583984375 + ], + "type":"VEC3" + }, + { + "bufferView":3738, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":3739, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":3740, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":3741, + "componentType":5126, + "count":336, + "max":[ + 115.14120483398438, + 230.28253173828125, + 13.560737609863281 + ], + "min":[ + -115.14124298095703, + 8.392333984375e-05, + -13.560684204101562 + ], + "type":"VEC3" + }, + { + "bufferView":3742, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":3743, + "componentType":5126, + "count":51, + "max":[ + 127.44287109375, + 625.6328125, + 391.7376708984375 + ], + "min":[ + -127.4443359375, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":3744, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":3745, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":3746, + "componentType":5126, + "count":167, + "max":[ + 769.70751953125, + 113.19482421875, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.5966796875 + ], + "type":"VEC3" + }, + { + "bufferView":3747, + "componentType":5126, + "count":167, + "type":"VEC3" + }, + { + "bufferView":3748, + "componentType":5126, + "count":167, + "type":"VEC2" + }, + { + "bufferView":3749, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":3750, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51416778564453, + 43.588871002197266 + ], + "min":[ + -22.728515625, + -7.62939453125e-06, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":3751, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":3752, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":3753, + "componentType":5126, + "count":121, + "max":[ + 17.02679443359375, + 3492.66357421875, + 17.02667236328125 + ], + "min":[ + -17.02703857421875, + 0, + -17.02667236328125 + ], + "type":"VEC3" + }, + { + "bufferView":3754, + "componentType":5126, + "count":121, + "type":"VEC3" + }, + { + "bufferView":3755, + "componentType":5126, + "count":121, + "type":"VEC2" + }, + { + "bufferView":3756, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":3757, + "componentType":5126, + "count":336, + "max":[ + 115.14126586914062, + 258.9817199707031, + 13.560829162597656 + ], + "min":[ + -115.14116668701172, + 28.699295043945312, + -13.560562133789062 + ], + "type":"VEC3" + }, + { + "bufferView":3758, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":3759, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":3760, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3761, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3762, + "componentType":5126, + "count":591, + "max":[ + 167.75155639648438, + 202.4750518798828, + 153.44361877441406 + ], + "min":[ + -167.7482147216797, + -0.00020599365234375, + -153.4442901611328 + ], + "type":"VEC3" + }, + { + "bufferView":3763, + "componentType":5126, + "count":591, + "type":"VEC3" + }, + { + "bufferView":3764, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3765, + "componentType":5126, + "count":576, + "max":[ + 184.51686096191406, + 189.9676055908203, + 160.81515502929688 + ], + "min":[ + -184.51705932617188, + 6.103515625e-05, + -160.81521606445312 + ], + "type":"VEC3" + }, + { + "bufferView":3766, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":3767, + "componentType":5126, + "count":570, + "max":[ + 211.34117126464844, + 32.82524871826172, + 211.3397216796875 + ], + "min":[ + -211.33865356445312, + 0.00011444091796875, + -211.3401336669922 + ], + "type":"VEC3" + }, + { + "bufferView":3768, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":3769, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3770, + "componentType":5126, + "count":184, + "max":[ + 769.70947265625, + 113.194580078125, + 56.596923828125 + ], + "min":[ + -769.7080078125, + 0, + -56.596923828125 + ], + "type":"VEC3" + }, + { + "bufferView":3771, + "componentType":5126, + "count":184, + "type":"VEC3" + }, + { + "bufferView":3772, + "componentType":5126, + "count":184, + "type":"VEC2" + }, + { + "bufferView":3773, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":3774, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.514404296875, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":3775, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":3776, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":3777, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":3778, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3779, + "componentType":5126, + "count":1488, + "max":[ + 831.546875, + 116.2333984375, + 746.101806640625 + ], + "min":[ + -831.544921875, + 0.000118255615234375, + -746.103271484375 + ], + "type":"VEC3" + }, + { + "bufferView":3780, + "componentType":5126, + "count":1488, + "type":"VEC3" + }, + { + "bufferView":3781, + "componentType":5126, + "count":1488, + "type":"VEC2" + }, + { + "bufferView":3782, + "componentType":5126, + "count":1810, + "max":[ + 91.3736801147461, + 182.74732971191406, + 6.498479843139648 + ], + "min":[ + -91.37361907958984, + 1.5562191038043238e-05, + -6.498486042022705 + ], + "type":"VEC3" + }, + { + "bufferView":3783, + "componentType":5126, + "count":1810, + "type":"VEC3" + }, + { + "bufferView":3784, + "componentType":5126, + "count":1810, + "type":"VEC2" + }, + { + "bufferView":3785, + "componentType":5126, + "count":48, + "max":[ + 366.15283203125, + 696.755859375, + 123.6142578125 + ], + "min":[ + -366.15234375, + 0, + -123.6142578125 + ], + "type":"VEC3" + }, + { + "bufferView":3786, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":3787, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":3788, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":3789, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3790, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3791, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3792, + "componentType":5126, + "count":230, + "max":[ + 169.0703125, + 185.23583984375, + 172.59716796875 + ], + "min":[ + -169.0703125, + 0, + -172.596923828125 + ], + "type":"VEC3" + }, + { + "bufferView":3793, + "componentType":5126, + "count":230, + "type":"VEC3" + }, + { + "bufferView":3794, + "componentType":5126, + "count":230, + "type":"VEC2" + }, + { + "bufferView":3795, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":3796, + "componentType":5126, + "count":24, + "max":[ + 253.74386596679688, + 50, + 584.666015625 + ], + "min":[ + -253.7422637939453, + -8.255030479631387e-06, + -584.6621704101562 + ], + "type":"VEC3" + }, + { + "bufferView":3797, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3798, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":3799, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":3800, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3801, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3802, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3803, + "componentType":5126, + "count":48, + "max":[ + 11.695329666137695, + 233.9413299560547, + 289.01458740234375 + ], + "min":[ + -11.698831558227539, + -1.52587890625e-05, + -289.0135803222656 + ], + "type":"VEC3" + }, + { + "bufferView":3804, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":3805, + "componentType":5126, + "count":586, + "max":[ + 185.60711669921875, + 266.8208312988281, + 167.04583740234375 + ], + "min":[ + -192.8129119873047, + 39.33503723144531, + -178.97738647460938 + ], + "type":"VEC3" + }, + { + "bufferView":3806, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":3807, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3808, + "componentType":5126, + "count":348, + "max":[ + 115.35123443603516, + 211.42062377929688, + 68.4458999633789 + ], + "min":[ + -115.3512191772461, + 9.1552734375e-05, + -68.44573974609375 + ], + "type":"VEC3" + }, + { + "bufferView":3809, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":3810, + "componentType":5126, + "count":600, + "max":[ + 154.7560272216797, + 224.42843627929688, + 138.917236328125 + ], + "min":[ + -161.966064453125, + 32.89521026611328, + -150.8489990234375 + ], + "type":"VEC3" + }, + { + "bufferView":3811, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":3812, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3813, + "componentType":5126, + "count":574, + "max":[ + 209.62005615234375, + 216.1865234375, + 188.69459533691406 + ], + "min":[ + -209.6181640625, + 1.465423583984375, + -176.4138946533203 + ], + "type":"VEC3" + }, + { + "bufferView":3814, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":3815, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3816, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3817, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3818, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3819, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3820, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3821, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3822, + "componentType":5126, + "count":162, + "max":[ + 29.783203125, + 2198.236328125, + 21.07904052734375 + ], + "min":[ + -29.7822265625, + -0.00018310546875, + -21.0780029296875 + ], + "type":"VEC3" + }, + { + "bufferView":3823, + "componentType":5126, + "count":162, + "type":"VEC3" + }, + { + "bufferView":3824, + "componentType":5126, + "count":162, + "type":"VEC2" + }, + { + "bufferView":3825, + "componentType":5126, + "count":24, + "max":[ + 746.892333984375, + 296.20343017578125, + 764.0326538085938 + ], + "min":[ + -746.8925170898438, + 4.57763671875e-05, + -764.0325317382812 + ], + "type":"VEC3" + }, + { + "bufferView":3826, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3827, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3828, + "componentType":5126, + "count":238, + "max":[ + 175.0537109375, + 196.214111328125, + 169.1068115234375 + ], + "min":[ + -175.05322265625, + 0, + -169.10693359375 + ], + "type":"VEC3" + }, + { + "bufferView":3829, + "componentType":5126, + "count":238, + "type":"VEC3" + }, + { + "bufferView":3830, + "componentType":5126, + "count":238, + "type":"VEC2" + }, + { + "bufferView":3831, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":3832, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.14447021484375, + 360.898193359375 + ], + "min":[ + -8.34619140625, + 0.00030517578125, + -360.896484375 + ], + "type":"VEC3" + }, + { + "bufferView":3833, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":3834, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":3835, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 463.990234375 + ], + "min":[ + -110.0000228881836, + 0, + -463.990234375 + ], + "type":"VEC3" + }, + { + "bufferView":3836, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3837, + "componentType":5126, + "count":682, + "max":[ + 150.831298828125, + 268.334716796875, + 147.6686248779297 + ], + "min":[ + -150.833984375, + 28.938980102539062, + -147.66799926757812 + ], + "type":"VEC3" + }, + { + "bufferView":3838, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":3839, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":3840, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":3841, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":3842, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":3843, + "componentType":5126, + "count":16, + "max":[ + 4093.119140625, + 0.00035858154296875, + 4951.87744140625 + ], + "min":[ + -4093.119140625, + 0, + -4951.8779296875 + ], + "type":"VEC3" + }, + { + "bufferView":3844, + "componentType":5126, + "count":16, + "type":"VEC3" + }, + { + "bufferView":3845, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":3846, + "componentType":5123, + "count":48, + "type":"SCALAR" + }, + { + "bufferView":3847, + "componentType":5126, + "count":600, + "max":[ + 181.71339416503906, + 32.82525634765625, + 181.7139434814453 + ], + "min":[ + -181.71473693847656, + 6.866455078125e-05, + -181.71420288085938 + ], + "type":"VEC3" + }, + { + "bufferView":3848, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":3849, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3850, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":3851, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3852, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3853, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92938232421875, + 384.1394348144531 + ], + "min":[ + -245.232421875, + 0.0001678466796875, + -384.1411437988281 + ], + "type":"VEC3" + }, + { + "bufferView":3854, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":3855, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":3856, + "componentType":5126, + "count":40, + "max":[ + 5.258738040924072, + 10.51738452911377, + 1.4143263101577759 + ], + "min":[ + -5.258735656738281, + -9.012222290039062e-05, + -1.4143047332763672 + ], + "type":"VEC3" + }, + { + "bufferView":3857, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":3858, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":3859, + "componentType":5126, + "count":328, + "max":[ + 10.6787109375, + 283.877197265625, + 60.75075912475586 + ], + "min":[ + -10.6787109375, + -1.52587890625e-05, + -60.74929428100586 + ], + "type":"VEC3" + }, + { + "bufferView":3860, + "componentType":5126, + "count":328, + "type":"VEC3" + }, + { + "bufferView":3861, + "componentType":5126, + "count":328, + "type":"VEC2" + }, + { + "bufferView":3862, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":3863, + "componentType":5126, + "count":71, + "max":[ + 3.7875030040740967, + 13.413309097290039, + 4.245893955230713 + ], + "min":[ + -3.7875640392303467, + 0.000110626220703125, + -4.245933532714844 + ], + "type":"VEC3" + }, + { + "bufferView":3864, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":3865, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":3866, + "componentType":5126, + "count":82, + "max":[ + 5.782173156738281, + 27.783470153808594, + 5.7820587158203125 + ], + "min":[ + -5.782069683074951, + -0.0002994537353515625, + -5.782153129577637 + ], + "type":"VEC3" + }, + { + "bufferView":3867, + "componentType":5126, + "count":82, + "type":"VEC3" + }, + { + "bufferView":3868, + "componentType":5126, + "count":82, + "type":"VEC2" + }, + { + "bufferView":3869, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":3870, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":3871, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":3872, + "componentType":5126, + "count":256, + "max":[ + 169.0628662109375, + 193.25537109375, + 174.4091796875 + ], + "min":[ + -169.06298828125, + 0.00048828125, + -174.4072265625 + ], + "type":"VEC3" + }, + { + "bufferView":3873, + "componentType":5126, + "count":256, + "type":"VEC3" + }, + { + "bufferView":3874, + "componentType":5126, + "count":256, + "type":"VEC2" + }, + { + "bufferView":3875, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":3876, + "componentType":5126, + "count":124, + "max":[ + 58.8193359375, + 162.824951171875, + 49.03515625 + ], + "min":[ + -58.822265625, + 6.845703125, + -49.03515625 + ], + "type":"VEC3" + }, + { + "bufferView":3877, + "componentType":5126, + "count":124, + "type":"VEC3" + }, + { + "bufferView":3878, + "componentType":5126, + "count":124, + "type":"VEC2" + }, + { + "bufferView":3879, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":3880, + "componentType":5126, + "count":609, + "max":[ + 143.6085968017578, + 174.33847045898438, + 131.43008422851562 + ], + "min":[ + -143.6058349609375, + 4.57763671875e-05, + -131.43072509765625 + ], + "type":"VEC3" + }, + { + "bufferView":3881, + "componentType":5126, + "count":609, + "type":"VEC3" + }, + { + "bufferView":3882, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3883, + "componentType":5126, + "count":97, + "max":[ + 31.27215576171875, + 267.8876953125, + 51.744140625 + ], + "min":[ + -31.228271484375, + 0, + -51.58251953125 + ], + "type":"VEC3" + }, + { + "bufferView":3884, + "componentType":5126, + "count":97, + "type":"VEC3" + }, + { + "bufferView":3885, + "componentType":5126, + "count":97, + "type":"VEC2" + }, + { + "bufferView":3886, + "componentType":5123, + "count":150, + "type":"SCALAR" + }, + { + "bufferView":3887, + "componentType":5126, + "count":338, + "max":[ + 13.560920715332031, + 230.70245361328125, + 115.3511962890625 + ], + "min":[ + -13.56060791015625, + -5.340576171875e-05, + -115.35127258300781 + ], + "type":"VEC3" + }, + { + "bufferView":3888, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":3889, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":3890, + "componentType":5126, + "count":181, + "max":[ + 769.70703125, + 113.194580078125, + 56.59765625 + ], + "min":[ + -769.71044921875, + 6.103515625e-05, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":3891, + "componentType":5126, + "count":181, + "type":"VEC3" + }, + { + "bufferView":3892, + "componentType":5126, + "count":181, + "type":"VEC2" + }, + { + "bufferView":3893, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":3894, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51416778564453, + 43.587894439697266 + ], + "min":[ + -22.728515625, + -7.62939453125e-06, + -43.590335845947266 + ], + "type":"VEC3" + }, + { + "bufferView":3895, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":3896, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":3897, + "componentType":5126, + "count":239, + "max":[ + 173.28125, + 188.23828125, + 169.1015625 + ], + "min":[ + -173.28173828125, + 0, + -169.1005859375 + ], + "type":"VEC3" + }, + { + "bufferView":3898, + "componentType":5126, + "count":239, + "type":"VEC3" + }, + { + "bufferView":3899, + "componentType":5126, + "count":239, + "type":"VEC2" + }, + { + "bufferView":3900, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":3901, + "componentType":5126, + "count":574, + "max":[ + 152.2848663330078, + 159.23370361328125, + 139.0407257080078 + ], + "min":[ + -152.2821502685547, + 1.05206298828125, + -126.75958251953125 + ], + "type":"VEC3" + }, + { + "bufferView":3902, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":3903, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3904, + "componentType":5126, + "count":573, + "max":[ + 177.55799865722656, + 255.76211547851562, + 159.70765686035156 + ], + "min":[ + -184.7669677734375, + 37.65522766113281, + -171.6398162841797 + ], + "type":"VEC3" + }, + { + "bufferView":3905, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":3906, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3907, + "componentType":5126, + "count":217, + "max":[ + 33.4022216796875, + 133.60888671875, + 66.80419921875 + ], + "min":[ + -33.4022216796875, + 0, + -66.80322265625 + ], + "type":"VEC3" + }, + { + "bufferView":3908, + "componentType":5126, + "count":217, + "type":"VEC3" + }, + { + "bufferView":3909, + "componentType":5126, + "count":217, + "type":"VEC2" + }, + { + "bufferView":3910, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":3911, + "componentType":5126, + "count":49, + "max":[ + 391.7373046875, + 625.6328125, + 127.44384765625 + ], + "min":[ + -391.73828125, + 0, + -127.443359375 + ], + "type":"VEC3" + }, + { + "bufferView":3912, + "componentType":5126, + "count":49, + "type":"VEC3" + }, + { + "bufferView":3913, + "componentType":5126, + "count":49, + "type":"VEC2" + }, + { + "bufferView":3914, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":3915, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3916, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3917, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3918, + "componentType":5126, + "count":584, + "max":[ + 179.82191467285156, + 116.65388488769531, + 187.3197479248047 + ], + "min":[ + -179.8205108642578, + -3.0517578125e-05, + -187.3200225830078 + ], + "type":"VEC3" + }, + { + "bufferView":3919, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":3920, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3921, + "componentType":5126, + "count":7788, + "max":[ + 103.786865234375, + 427.46484375, + 496.30615234375 + ], + "min":[ + -103.7867431640625, + 0, + -496.30712890625 + ], + "type":"VEC3" + }, + { + "bufferView":3922, + "componentType":5126, + "count":7788, + "type":"VEC3" + }, + { + "bufferView":3923, + "componentType":5126, + "count":7788, + "type":"VEC2" + }, + { + "bufferView":3924, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":3925, + "componentType":5126, + "count":88, + "max":[ + 50.1396484375, + 851.928955078125, + 52.94677734375 + ], + "min":[ + -50.139892578125, + 0, + -52.947265625 + ], + "type":"VEC3" + }, + { + "bufferView":3926, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":3927, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":3928, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":3929, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":3930, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92926025390625, + 384.1416015625 + ], + "min":[ + -245.2333984375, + -6.103515625e-05, + -384.1391296386719 + ], + "type":"VEC3" + }, + { + "bufferView":3931, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":3932, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":3933, + "componentType":5126, + "count":742, + "max":[ + 136.373779296875, + 46.09920883178711, + 136.37379455566406 + ], + "min":[ + -136.37388610839844, + -4.00543212890625e-05, + -136.37380981445312 + ], + "type":"VEC3" + }, + { + "bufferView":3934, + "componentType":5126, + "count":742, + "type":"VEC3" + }, + { + "bufferView":3935, + "componentType":5126, + "count":112, + "max":[ + 257.9972839355469, + 187.3193359375, + 257.9945373535156 + ], + "min":[ + -257.9972839355469, + 0.0009765625, + -258 + ], + "type":"VEC3" + }, + { + "bufferView":3936, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":3937, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.073486328125 + ], + "min":[ + -27.193359375, + 0, + -126.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":3938, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3939, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3940, + "componentType":5126, + "count":1420, + "max":[ + 244.466796875, + 367.92926025390625, + 384.578857421875 + ], + "min":[ + -244.46875, + -6.103515625e-05, + -384.5805358886719 + ], + "type":"VEC3" + }, + { + "bufferView":3941, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":3942, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":3943, + "componentType":5123, + "count":2472, + "type":"SCALAR" + }, + { + "bufferView":3944, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3945, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3946, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3947, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":3948, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":3949, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":3950, + "componentType":5126, + "count":150, + "max":[ + 69.5673828125, + 156.62646484375, + 586.3173828125 + ], + "min":[ + -69.5732421875, + 0, + -586.31884765625 + ], + "type":"VEC3" + }, + { + "bufferView":3951, + "componentType":5126, + "count":150, + "type":"VEC3" + }, + { + "bufferView":3952, + "componentType":5126, + "count":150, + "type":"VEC2" + }, + { + "bufferView":3953, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":3954, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.143798828125, + 360.897216796875 + ], + "min":[ + -8.345703125, + -0.00048828125, + -360.8974609375 + ], + "type":"VEC3" + }, + { + "bufferView":3955, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":3956, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":3957, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7294979095459 + ], + "min":[ + -43.5888671875, + 0.000118255615234375, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":3958, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":3959, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":3960, + "componentType":5126, + "count":591, + "max":[ + 167.74822998046875, + 202.47500610351562, + 153.44390869140625 + ], + "min":[ + -167.75157165527344, + -0.0001373291015625, + -153.4441680908203 + ], + "type":"VEC3" + }, + { + "bufferView":3961, + "componentType":5126, + "count":591, + "type":"VEC3" + }, + { + "bufferView":3962, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3963, + "componentType":5126, + "count":590, + "max":[ + 194.32896423339844, + 200.99667358398438, + 175.45169067382812 + ], + "min":[ + -194.32528686523438, + 1.3551864624023438, + -163.1703643798828 + ], + "type":"VEC3" + }, + { + "bufferView":3964, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":3965, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":3966, + "componentType":5126, + "count":1053, + "max":[ + 90.109375, + 76.19921875, + 125.22607421875 + ], + "min":[ + -90.10888671875, + 0, + -125.22607421875 + ], + "type":"VEC3" + }, + { + "bufferView":3967, + "componentType":5126, + "count":1053, + "type":"VEC3" + }, + { + "bufferView":3968, + "componentType":5126, + "count":1053, + "type":"VEC2" + }, + { + "bufferView":3969, + "componentType":5126, + "count":48, + "max":[ + 127.44287109375, + 625.6328125, + 391.736328125 + ], + "min":[ + -127.4404296875, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":3970, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":3971, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":3972, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":3973, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":3974, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":3975, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3976, + "componentType":5126, + "count":115, + "max":[ + 5.782175540924072, + 27.783960342407227, + 5.782160758972168 + ], + "min":[ + -5.782073497772217, + 0.0001882332726381719, + -5.782059669494629 + ], + "type":"VEC3" + }, + { + "bufferView":3977, + "componentType":5126, + "count":115, + "type":"VEC3" + }, + { + "bufferView":3978, + "componentType":5126, + "count":115, + "type":"VEC2" + }, + { + "bufferView":3979, + "componentType":5123, + "count":228, + "type":"SCALAR" + }, + { + "bufferView":3980, + "componentType":5126, + "count":678, + "max":[ + 843.603515625, + 1001.3758544921875, + 928.7474975585938 + ], + "min":[ + -843.603515625, + 9.1552734375e-05, + -928.7440795898438 + ], + "type":"VEC3" + }, + { + "bufferView":3981, + "componentType":5126, + "count":678, + "type":"VEC3" + }, + { + "bufferView":3982, + "componentType":5126, + "count":678, + "type":"VEC2" + }, + { + "bufferView":3983, + "componentType":5123, + "count":678, + "type":"SCALAR" + }, + { + "bufferView":3984, + "componentType":5126, + "count":186, + "max":[ + 769.70947265625, + 113.194580078125, + 56.5966796875 + ], + "min":[ + -769.7080078125, + 6.103515625e-05, + -56.59765625 + ], + "type":"VEC3" + }, + { + "bufferView":3985, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":3986, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":3987, + "componentType":5126, + "count":48, + "max":[ + 127.44287109375, + 625.6328125, + 391.736328125 + ], + "min":[ + -127.4404296875, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":3988, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":3989, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":3990, + "componentType":5126, + "count":60, + "max":[ + 3.7875025272369385, + 13.413309097290039, + 4.24593448638916 + ], + "min":[ + -3.7875616550445557, + 0.000110626220703125, + -4.2458930015563965 + ], + "type":"VEC3" + }, + { + "bufferView":3991, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":3992, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":3993, + "componentType":5123, + "count":108, + "type":"SCALAR" + }, + { + "bufferView":3994, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76666259765625, + 78.58447265625 + ], + "min":[ + -46.282470703125, + 0, + -78.5869140625 + ], + "type":"VEC3" + }, + { + "bufferView":3995, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":3996, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3997, + "componentType":5126, + "count":579, + "max":[ + 181.5825653076172, + 261.29150390625, + 163.3769989013672 + ], + "min":[ + -188.78990173339844, + 38.495086669921875, + -175.308349609375 + ], + "type":"VEC3" + }, + { + "bufferView":3998, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":3999, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4000, + "componentType":5126, + "count":110, + "max":[ + 27.1103515625, + 95.447021484375, + 37.43653106689453 + ], + "min":[ + -27.1103515625, + -3.814697265625e-06, + -37.43457794189453 + ], + "type":"VEC3" + }, + { + "bufferView":4001, + "componentType":5126, + "count":110, + "type":"VEC3" + }, + { + "bufferView":4002, + "componentType":5126, + "count":110, + "type":"VEC2" + }, + { + "bufferView":4003, + "componentType":5123, + "count":204, + "type":"SCALAR" + }, + { + "bufferView":4004, + "componentType":5126, + "count":591, + "max":[ + 156.09751892089844, + 226.27139282226562, + 140.14010620117188 + ], + "min":[ + -163.30712890625, + 33.175025939941406, + -152.07205200195312 + ], + "type":"VEC3" + }, + { + "bufferView":4005, + "componentType":5126, + "count":591, + "type":"VEC3" + }, + { + "bufferView":4006, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4007, + "componentType":5126, + "count":24, + "max":[ + 35.000003814697266, + 2000, + 35.000003814697266 + ], + "min":[ + -35.000003814697266, + 0, + -35.000003814697266 + ], + "type":"VEC3" + }, + { + "bufferView":4008, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4009, + "componentType":5126, + "count":586, + "max":[ + 183.11512756347656, + 32.82525634765625, + 183.1155242919922 + ], + "min":[ + -183.11587524414062, + 3.0517578125e-05, + -183.11553955078125 + ], + "type":"VEC3" + }, + { + "bufferView":4010, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":4011, + "componentType":5126, + "count":48, + "max":[ + 289.0126037597656, + 233.9413299560547, + 11.697039604187012 + ], + "min":[ + -289.01556396484375, + -1.52587890625e-05, + -11.697131156921387 + ], + "type":"VEC3" + }, + { + "bufferView":4012, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":4013, + "componentType":5126, + "count":588, + "max":[ + 158.3614959716797, + 106.42626953125, + 164.89654541015625 + ], + "min":[ + -158.360595703125, + 4.57763671875e-05, + -164.89666748046875 + ], + "type":"VEC3" + }, + { + "bufferView":4014, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":4015, + "componentType":5126, + "count":8040, + "max":[ + 103.78759765625, + 1010.39501953125, + 180.1201171875 + ], + "min":[ + -103.78662109375, + 12.32421875, + -180.119140625 + ], + "type":"VEC3" + }, + { + "bufferView":4016, + "componentType":5126, + "count":8040, + "type":"VEC3" + }, + { + "bufferView":4017, + "componentType":5126, + "count":8040, + "type":"VEC2" + }, + { + "bufferView":4018, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":4019, + "componentType":5126, + "count":560, + "max":[ + 192.92724609375, + 199.60464477539062, + 174.2379913330078 + ], + "min":[ + -192.9241180419922, + 1.3451385498046875, + -161.95668029785156 + ], + "type":"VEC3" + }, + { + "bufferView":4020, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":4021, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4022, + "componentType":5126, + "count":578, + "max":[ + 160.69134521484375, + 32.82542037963867, + 160.6921844482422 + ], + "min":[ + -160.69309997558594, + 6.103515625e-05, + -160.69229125976562 + ], + "type":"VEC3" + }, + { + "bufferView":4023, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":4024, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4025, + "componentType":5126, + "count":354, + "max":[ + 115.3512191772461, + 211.42056274414062, + 68.44580078125 + ], + "min":[ + -115.35123443603516, + 0.0001068115234375, + -68.44589233398438 + ], + "type":"VEC3" + }, + { + "bufferView":4026, + "componentType":5126, + "count":354, + "type":"VEC3" + }, + { + "bufferView":4027, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":4028, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":4029, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4030, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4031, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68743896484375 + ], + "min":[ + -15.4755859375, + 0, + -381.68572998046875 + ], + "type":"VEC3" + }, + { + "bufferView":4032, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4033, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4034, + "componentType":5126, + "count":4, + "max":[ + 698.8837890625, + 2586.4794921875, + 0.0012026801705360413 + ], + "min":[ + -698.8837890625, + 0, + 0.0006283745169639587 + ], + "type":"VEC3" + }, + { + "bufferView":4035, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4036, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4037, + "componentType":5126, + "count":230, + "max":[ + 169.0703125, + 185.23583984375, + 172.59716796875 + ], + "min":[ + -169.0703125, + 0, + -172.596923828125 + ], + "type":"VEC3" + }, + { + "bufferView":4038, + "componentType":5126, + "count":230, + "type":"VEC3" + }, + { + "bufferView":4039, + "componentType":5126, + "count":230, + "type":"VEC2" + }, + { + "bufferView":4040, + "componentType":5126, + "count":96, + "max":[ + 73.47898864746094, + 205.1725616455078, + 990.6383056640625 + ], + "min":[ + -73.47943115234375, + -5.7220458984375e-05, + -990.6387939453125 + ], + "type":"VEC3" + }, + { + "bufferView":4041, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":4042, + "componentType":5123, + "count":132, + "type":"SCALAR" + }, + { + "bufferView":4043, + "componentType":5126, + "count":928, + "max":[ + 1923.3282470703125, + 2810.000244140625, + 3275.269287109375 + ], + "min":[ + -1923.3282470703125, + -4.808252924703993e-06, + -3276.35205078125 + ], + "type":"VEC3" + }, + { + "bufferView":4044, + "componentType":5126, + "count":928, + "type":"VEC3" + }, + { + "bufferView":4045, + "componentType":5126, + "count":928, + "type":"VEC2" + }, + { + "bufferView":4046, + "componentType":5123, + "count":1872, + "type":"SCALAR" + }, + { + "bufferView":4047, + "componentType":5126, + "count":204, + "max":[ + 679.9366455078125, + 3232.9091796875, + 45.66337585449219 + ], + "min":[ + -679.9359130859375, + -0.000244140625, + -45.664093017578125 + ], + "type":"VEC3" + }, + { + "bufferView":4048, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":4049, + "componentType":5123, + "count":1068, + "type":"SCALAR" + }, + { + "bufferView":4050, + "componentType":5126, + "count":593, + "max":[ + 147.62928771972656, + 179.02798461914062, + 135.09918212890625 + ], + "min":[ + -147.6327362060547, + 0.0001068115234375, + -135.09954833984375 + ], + "type":"VEC3" + }, + { + "bufferView":4051, + "componentType":5126, + "count":593, + "type":"VEC3" + }, + { + "bufferView":4052, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4053, + "componentType":5126, + "count":578, + "max":[ + 206.177734375, + 211.3273468017578, + 179.5736846923828 + ], + "min":[ + -206.17726135253906, + 1.52587890625e-05, + -179.57379150390625 + ], + "type":"VEC3" + }, + { + "bufferView":4054, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":4055, + "componentType":5126, + "count":96, + "max":[ + 69.5701904296875, + 141.0712890625, + 513.90966796875 + ], + "min":[ + -69.5699462890625, + 0, + -513.9052734375 + ], + "type":"VEC3" + }, + { + "bufferView":4056, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":4057, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":4058, + "componentType":5126, + "count":584, + "max":[ + 179.82191467285156, + 116.65388488769531, + 187.3197479248047 + ], + "min":[ + -179.8205108642578, + -3.0517578125e-05, + -187.3200225830078 + ], + "type":"VEC3" + }, + { + "bufferView":4059, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":4060, + "componentType":5126, + "count":574, + "max":[ + 183.11512756347656, + 189.8602294921875, + 165.7417755126953 + ], + "min":[ + -183.11587524414062, + 1.274749755859375, + -153.4611358642578 + ], + "type":"VEC3" + }, + { + "bufferView":4061, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":4062, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4063, + "componentType":5126, + "count":577, + "max":[ + 185.18801879882812, + 222.7963409423828, + 169.34255981445312 + ], + "min":[ + -185.1844482421875, + 3.0517578125e-05, + -169.34286499023438 + ], + "type":"VEC3" + }, + { + "bufferView":4064, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":4065, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4066, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4067, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4068, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4069, + "componentType":5126, + "count":138, + "max":[ + 49.03515625, + 126.6884765625, + 80.15283203125 + ], + "min":[ + -49.03515625, + 0, + -80.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":4070, + "componentType":5126, + "count":138, + "type":"VEC3" + }, + { + "bufferView":4071, + "componentType":5126, + "count":138, + "type":"VEC2" + }, + { + "bufferView":4072, + "componentType":5126, + "count":336, + "max":[ + 115.14118194580078, + 258.98150634765625, + 13.560531616210938 + ], + "min":[ + -115.14129638671875, + 28.69904327392578, + -13.560844421386719 + ], + "type":"VEC3" + }, + { + "bufferView":4073, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":4074, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":4075, + "componentType":5126, + "count":112, + "max":[ + 147.98110961914062, + 382.51190185546875, + 170.07574462890625 + ], + "min":[ + -147.98336791992188, + 4.57763671875e-05, + -170.07504272460938 + ], + "type":"VEC3" + }, + { + "bufferView":4076, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":4077, + "componentType":5126, + "count":7749, + "max":[ + 103.786865234375, + 427.46484375, + 496.30615234375 + ], + "min":[ + -103.786865234375, + 0, + -496.30712890625 + ], + "type":"VEC3" + }, + { + "bufferView":4078, + "componentType":5126, + "count":7749, + "type":"VEC3" + }, + { + "bufferView":4079, + "componentType":5126, + "count":7749, + "type":"VEC2" + }, + { + "bufferView":4080, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":4081, + "componentType":5126, + "count":1023, + "max":[ + 125.224609375, + 76.1982421875, + 90.10888671875 + ], + "min":[ + -125.2275390625, + -0.0009765625, + -90.10888671875 + ], + "type":"VEC3" + }, + { + "bufferView":4082, + "componentType":5126, + "count":1023, + "type":"VEC3" + }, + { + "bufferView":4083, + "componentType":5126, + "count":1023, + "type":"VEC2" + }, + { + "bufferView":4084, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":4085, + "componentType":5126, + "count":335, + "max":[ + 170.90625, + 157.00244140625, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.2890625, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":4086, + "componentType":5126, + "count":335, + "type":"VEC3" + }, + { + "bufferView":4087, + "componentType":5126, + "count":335, + "type":"VEC2" + }, + { + "bufferView":4088, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":4089, + "componentType":5126, + "count":122, + "max":[ + 31.293136596679688, + 15.511030197143555, + 6.50274658203125 + ], + "min":[ + -31.29314422607422, + 7.152557373046875e-06, + -6.502471923828125 + ], + "type":"VEC3" + }, + { + "bufferView":4090, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":4091, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":4092, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":4093, + "componentType":5126, + "count":24, + "max":[ + 349.0685729980469, + 50.00018310546875, + 584.6641845703125 + ], + "min":[ + -349.0680847167969, + 7.65542354201898e-05, + -584.6641235351562 + ], + "type":"VEC3" + }, + { + "bufferView":4094, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4095, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4096, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4097, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4098, + "componentType":5126, + "count":24, + "max":[ + 1591.97802734375, + 151.70169067382812, + 2273.55859375 + ], + "min":[ + -1591.9786376953125, + 0.000125885009765625, + -2273.55859375 + ], + "type":"VEC3" + }, + { + "bufferView":4099, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4100, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4101, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76708984375, + 78.5859375 + ], + "min":[ + -46.2822265625, + 0, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":4102, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4103, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4104, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":4105, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4106, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4107, + "componentType":5126, + "count":6522, + "max":[ + 128.06063842773438, + 193.06546020507812, + 128.06063842773438 + ], + "min":[ + -128.06063842773438, + -0.0001678466796875, + -128.0606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":4108, + "componentType":5126, + "count":6522, + "type":"VEC3" + }, + { + "bufferView":4109, + "componentType":5126, + "count":6522, + "type":"VEC2" + }, + { + "bufferView":4110, + "componentType":5126, + "count":121, + "max":[ + 3859.009033203125, + 81.2099609375, + 40.60498046875 + ], + "min":[ + -3859.01416015625, + 0, + -40.60498046875 + ], + "type":"VEC3" + }, + { + "bufferView":4111, + "componentType":5126, + "count":121, + "type":"VEC3" + }, + { + "bufferView":4112, + "componentType":5126, + "count":121, + "type":"VEC2" + }, + { + "bufferView":4113, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":4114, + "componentType":5126, + "count":152, + "max":[ + 586.3173828125, + 156.6259765625, + 69.5703125 + ], + "min":[ + -586.31884765625, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":4115, + "componentType":5126, + "count":152, + "type":"VEC3" + }, + { + "bufferView":4116, + "componentType":5126, + "count":152, + "type":"VEC2" + }, + { + "bufferView":4117, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":4118, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28369140625 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":4119, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":4120, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":4121, + "componentType":5126, + "count":88, + "max":[ + 30.26416015625, + 32.248046875, + 126.4599609375 + ], + "min":[ + -30.265625, + 0.000244140625, + -126.459228515625 + ], + "type":"VEC3" + }, + { + "bufferView":4122, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":4123, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":4124, + "componentType":5126, + "count":224, + "max":[ + 115.1412124633789, + 258.98175048828125, + 118.72084045410156 + ], + "min":[ + -115.14129638671875, + 28.69927978515625, + -118.72074890136719 + ], + "type":"VEC3" + }, + { + "bufferView":4125, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":4126, + "componentType":5126, + "count":48, + "max":[ + 123.61328125, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.615234375, + 0, + -366.1531066894531 + ], + "type":"VEC3" + }, + { + "bufferView":4127, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":4128, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":4129, + "componentType":5126, + "count":648, + "max":[ + 615.01123046875, + 2510.92529296875, + 347.26513671875 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.2666015625 + ], + "type":"VEC3" + }, + { + "bufferView":4130, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":4131, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":4132, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":4133, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":4134, + "componentType":5126, + "count":208, + "max":[ + 13.25341796875, + 75.79608917236328, + 23.955078125 + ], + "min":[ + -13.251953125, + -3.265915438532829e-05, + -23.9466552734375 + ], + "type":"VEC3" + }, + { + "bufferView":4135, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":4136, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":4137, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":4138, + "componentType":5126, + "count":336, + "max":[ + 13.560531616210938, + 230.7025146484375, + 115.35121154785156 + ], + "min":[ + -13.560829162597656, + 2.288818359375e-05, + -115.35124969482422 + ], + "type":"VEC3" + }, + { + "bufferView":4139, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":4140, + "componentType":5126, + "count":129, + "max":[ + 11.82037353515625, + 20, + 318.7106628417969 + ], + "min":[ + -11.81964111328125, + 0.00048828125, + -318.7106018066406 + ], + "type":"VEC3" + }, + { + "bufferView":4141, + "componentType":5126, + "count":129, + "type":"VEC3" + }, + { + "bufferView":4142, + "componentType":5126, + "count":129, + "type":"VEC2" + }, + { + "bufferView":4143, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":4144, + "componentType":5126, + "count":224, + "max":[ + 115.14126586914062, + 230.28256225585938, + 118.72064208984375 + ], + "min":[ + -115.14118194580078, + 8.392333984375e-05, + -118.72102355957031 + ], + "type":"VEC3" + }, + { + "bufferView":4145, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":4146, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":4147, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4148, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4149, + "componentType":5126, + "count":60, + "max":[ + 3.7875404357910156, + 13.000020027160645, + 3.742408275604248 + ], + "min":[ + -3.7875263690948486, + -2.3365020751953125e-05, + -3.742424249649048 + ], + "type":"VEC3" + }, + { + "bufferView":4150, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":4151, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":4152, + "componentType":5126, + "count":586, + "max":[ + 209.62005615234375, + 32.82524871826172, + 209.6189422607422 + ], + "min":[ + -209.6181640625, + 0.000110626220703125, + -209.6193084716797 + ], + "type":"VEC3" + }, + { + "bufferView":4153, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":4154, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4155, + "componentType":5126, + "count":8098, + "max":[ + 496.1484375, + 429.962890625, + 103.787109375 + ], + "min":[ + -496.148681640625, + 0, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":4156, + "componentType":5126, + "count":8098, + "type":"VEC3" + }, + { + "bufferView":4157, + "componentType":5126, + "count":8098, + "type":"VEC2" + }, + { + "bufferView":4158, + "componentType":5126, + "count":582, + "max":[ + 188.29019165039062, + 270.5072021484375, + 169.49169921875 + ], + "min":[ + -195.49488830566406, + 39.895111083984375, + -181.42343139648438 + ], + "type":"VEC3" + }, + { + "bufferView":4159, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":4160, + "componentType":5126, + "count":588, + "max":[ + 158.3614959716797, + 106.42626953125, + 164.89666748046875 + ], + "min":[ + -158.360595703125, + 4.57763671875e-05, + -164.89654541015625 + ], + "type":"VEC3" + }, + { + "bufferView":4161, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":4162, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4163, + "componentType":5126, + "count":172, + "max":[ + 22.73046875, + 64.23074340820312, + 545.1064453125 + ], + "min":[ + -22.728515625, + 0.000148773193359375, + -545.107421875 + ], + "type":"VEC3" + }, + { + "bufferView":4164, + "componentType":5126, + "count":172, + "type":"VEC3" + }, + { + "bufferView":4165, + "componentType":5126, + "count":172, + "type":"VEC2" + }, + { + "bufferView":4166, + "componentType":5123, + "count":336, + "type":"SCALAR" + }, + { + "bufferView":4167, + "componentType":5126, + "count":648, + "max":[ + 615.0107421875, + 2510.925048828125, + 347.265625 + ], + "min":[ + -615.01025390625, + 0, + -347.26611328125 + ], + "type":"VEC3" + }, + { + "bufferView":4168, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":4169, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":4170, + "componentType":5126, + "count":570, + "max":[ + 211.34117126464844, + 216.4180145263672, + 184.04443359375 + ], + "min":[ + -211.33865356445312, + -4.57763671875e-05, + -184.0446319580078 + ], + "type":"VEC3" + }, + { + "bufferView":4171, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":4172, + "componentType":5126, + "count":24, + "max":[ + 110.00011444091797, + 50, + 584.662109375 + ], + "min":[ + -110.00007629394531, + 0, + -584.666015625 + ], + "type":"VEC3" + }, + { + "bufferView":4173, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4174, + "componentType":5126, + "count":1336, + "max":[ + 413.28759765625, + 1858.30810546875, + 224.743896484375 + ], + "min":[ + -460.22119140625, + 25.10791015625, + -224.744140625 + ], + "type":"VEC3" + }, + { + "bufferView":4175, + "componentType":5126, + "count":1336, + "type":"VEC3" + }, + { + "bufferView":4176, + "componentType":5126, + "count":1336, + "type":"VEC2" + }, + { + "bufferView":4177, + "componentType":5126, + "count":1810, + "max":[ + 91.37360382080078, + 182.74732971191406, + 6.498558044433594 + ], + "min":[ + -91.37369537353516, + 1.52587890625e-05, + -6.498471260070801 + ], + "type":"VEC3" + }, + { + "bufferView":4178, + "componentType":5126, + "count":1810, + "type":"VEC3" + }, + { + "bufferView":4179, + "componentType":5126, + "count":1810, + "type":"VEC2" + }, + { + "bufferView":4180, + "componentType":5126, + "count":183, + "max":[ + 156.158203125, + 12554.818359375, + 1060.18603515625 + ], + "min":[ + -156.1611328125, + 0.000152587890625, + -1060.1875 + ], + "type":"VEC3" + }, + { + "bufferView":4181, + "componentType":5126, + "count":183, + "type":"VEC3" + }, + { + "bufferView":4182, + "componentType":5126, + "count":183, + "type":"VEC2" + }, + { + "bufferView":4183, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":4184, + "componentType":5126, + "count":573, + "max":[ + 177.13888549804688, + 213.41726684570312, + 162.00498962402344 + ], + "min":[ + -177.13851928710938, + -7.62939453125e-05, + -162.0047149658203 + ], + "type":"VEC3" + }, + { + "bufferView":4185, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":4186, + "componentType":5126, + "count":576, + "max":[ + 184.265625, + 264.9776611328125, + 165.82289123535156 + ], + "min":[ + -191.471923828125, + 39.05499267578125, + -177.75439453125 + ], + "type":"VEC3" + }, + { + "bufferView":4187, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":4188, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4189, + "componentType":5126, + "count":232, + "max":[ + 115.35124206542969, + 318.5151062011719, + 159.1707000732422 + ], + "min":[ + -115.35128021240234, + 1.3115692138671875, + -160.49093627929688 + ], + "type":"VEC3" + }, + { + "bufferView":4190, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":4191, + "componentType":5126, + "count":588, + "max":[ + 207.89891052246094, + 214.47723388671875, + 187.204345703125 + ], + "min":[ + -207.89772033691406, + 1.453033447265625, + -174.9236602783203 + ], + "type":"VEC3" + }, + { + "bufferView":4192, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":4193, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4194, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4195, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4196, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4197, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":4198, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4199, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4200, + "componentType":5126, + "count":329, + "max":[ + 170.90625, + 157.00146484375, + 177.25439453125 + ], + "min":[ + -170.9033203125, + 21.2880859375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":4201, + "componentType":5126, + "count":329, + "type":"VEC3" + }, + { + "bufferView":4202, + "componentType":5126, + "count":329, + "type":"VEC2" + }, + { + "bufferView":4203, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":4204, + "componentType":5126, + "count":819, + "max":[ + 4.130859375, + 90.58753204345703, + 34.45703887939453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":4205, + "componentType":5126, + "count":819, + "type":"VEC3" + }, + { + "bufferView":4206, + "componentType":5126, + "count":819, + "type":"VEC2" + }, + { + "bufferView":4207, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":4208, + "componentType":5126, + "count":592, + "max":[ + 143.60861206054688, + 99.39439392089844, + 149.48057556152344 + ], + "min":[ + -143.60581970214844, + -6.103515625e-05, + -149.48060607910156 + ], + "type":"VEC3" + }, + { + "bufferView":4209, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":4210, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4211, + "componentType":5126, + "count":136, + "max":[ + 824.2421875, + 156.626220703125, + 69.5697021484375 + ], + "min":[ + -824.24169921875, + 0, + -69.5699462890625 + ], + "type":"VEC3" + }, + { + "bufferView":4212, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":4213, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":4214, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":4215, + "componentType":5126, + "count":820, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45655059814453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":4216, + "componentType":5126, + "count":820, + "type":"VEC3" + }, + { + "bufferView":4217, + "componentType":5126, + "count":820, + "type":"VEC2" + }, + { + "bufferView":4218, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":4219, + "componentType":5126, + "count":164, + "max":[ + 520.6484375, + 14332.2607421875, + 66.3231201171875 + ], + "min":[ + -520.650634765625, + 0.00096893310546875, + -66.3218994140625 + ], + "type":"VEC3" + }, + { + "bufferView":4220, + "componentType":5126, + "count":164, + "type":"VEC3" + }, + { + "bufferView":4221, + "componentType":5126, + "count":164, + "type":"VEC2" + }, + { + "bufferView":4222, + "componentType":5126, + "count":46, + "max":[ + 161.98095703125, + 658.67578125, + 366.15234375 + ], + "min":[ + -161.978515625, + 0, + -366.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":4223, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":4224, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":4225, + "componentType":5126, + "count":750, + "max":[ + 136.75340270996094, + 217.14334106445312, + 129.45623779296875 + ], + "min":[ + -136.81773376464844, + 27.222068786621094, + -129.56021118164062 + ], + "type":"VEC3" + }, + { + "bufferView":4226, + "componentType":5126, + "count":750, + "type":"VEC3" + }, + { + "bufferView":4227, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":4228, + "componentType":5126, + "count":168, + "max":[ + 29.924560546875, + 1132.8153076171875, + 29.9249267578125 + ], + "min":[ + -29.92431640625, + 0, + -29.9241943359375 + ], + "type":"VEC3" + }, + { + "bufferView":4229, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":4230, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":4231, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":4232, + "componentType":5126, + "count":48, + "max":[ + 756.610107421875, + 2198.73388671875, + 58.383304595947266 + ], + "min":[ + -756.6087036132812, + 0, + -58.38257598876953 + ], + "type":"VEC3" + }, + { + "bufferView":4233, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":4234, + "componentType":5126, + "count":76, + "max":[ + 279.1010437011719, + 3543.081787109375, + 278.8670349121094 + ], + "min":[ + -279.0986328125, + 0, + -278.8664245605469 + ], + "type":"VEC3" + }, + { + "bufferView":4235, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":4236, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":4237, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":4238, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4239, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4240, + "componentType":5126, + "count":582, + "max":[ + 160.69309997558594, + 166.47372436523438, + 140.18228149414062 + ], + "min":[ + -160.69134521484375, + 6.103515625e-05, + -140.18234252929688 + ], + "type":"VEC3" + }, + { + "bufferView":4241, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":4242, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4243, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4244, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4245, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4246, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":4247, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":4248, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":4249, + "componentType":5126, + "count":236, + "max":[ + 383.69830322265625, + 1951.66748046875, + 575.7845458984375 + ], + "min":[ + -416.318115234375, + 17.533493041992188, + -630.4196166992188 + ], + "type":"VEC3" + }, + { + "bufferView":4250, + "componentType":5126, + "count":236, + "type":"VEC3" + }, + { + "bufferView":4251, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":4252, + "componentType":5126, + "count":24, + "max":[ + 110.00011444091797, + 50, + 584.666015625 + ], + "min":[ + -110.00007629394531, + 0, + -584.662109375 + ], + "type":"VEC3" + }, + { + "bufferView":4253, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4254, + "componentType":5126, + "count":384, + "max":[ + 1069.84423828125, + 58.48869323730469, + 5200.28271484375 + ], + "min":[ + -1069.84423828125, + 6.67572021484375e-05, + -5200.28515625 + ], + "type":"VEC3" + }, + { + "bufferView":4255, + "componentType":5126, + "count":384, + "type":"VEC3" + }, + { + "bufferView":4256, + "componentType":5126, + "count":384, + "type":"VEC2" + }, + { + "bufferView":4257, + "componentType":5123, + "count":576, + "type":"SCALAR" + }, + { + "bufferView":4258, + "componentType":5126, + "count":24, + "max":[ + 110.00012969970703, + 50, + 584.662109375 + ], + "min":[ + -110.00007629394531, + 0, + -584.666015625 + ], + "type":"VEC3" + }, + { + "bufferView":4259, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4260, + "componentType":5126, + "count":1952, + "max":[ + 2.095486640930176, + 14.731964111328125, + 7.36604642868042 + ], + "min":[ + -2.0954651832580566, + -8.249282836914062e-05, + -7.3659987449646 + ], + "type":"VEC3" + }, + { + "bufferView":4261, + "componentType":5126, + "count":1952, + "type":"VEC3" + }, + { + "bufferView":4262, + "componentType":5126, + "count":1952, + "type":"VEC2" + }, + { + "bufferView":4263, + "componentType":5123, + "count":2880, + "type":"SCALAR" + }, + { + "bufferView":4264, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":4265, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4266, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4267, + "componentType":5126, + "count":210, + "max":[ + 1342.826171875, + 1646.6240234375, + 7.0341796875 + ], + "min":[ + -1342.828125, + 0, + -7.03271484375 + ], + "type":"VEC3" + }, + { + "bufferView":4268, + "componentType":5126, + "count":210, + "type":"VEC3" + }, + { + "bufferView":4269, + "componentType":5126, + "count":210, + "type":"VEC2" + }, + { + "bufferView":4270, + "componentType":5123, + "count":804, + "type":"SCALAR" + }, + { + "bufferView":4271, + "componentType":5126, + "count":590, + "max":[ + 140.9255828857422, + 171.21202087402344, + 128.9840087890625 + ], + "min":[ + -140.92384338378906, + 3.0517578125e-05, + -128.98486328125 + ], + "type":"VEC3" + }, + { + "bufferView":4272, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":4273, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4274, + "componentType":5126, + "count":112, + "max":[ + 34.857242584228516, + 1878.334228515625, + 483.718017578125 + ], + "min":[ + -34.857261657714844, + 0, + -483.7185363769531 + ], + "type":"VEC3" + }, + { + "bufferView":4275, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":4276, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":4277, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":4278, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":4279, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":4280, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4281, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4282, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4283, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.5859375 + ], + "min":[ + -46.2841796875, + 0, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":4284, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4285, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4286, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51428985595703, + 43.587894439697266 + ], + "min":[ + -22.728515625, + 0.00011444091796875, + -43.590335845947266 + ], + "type":"VEC3" + }, + { + "bufferView":4287, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":4288, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":4289, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.456298828125, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.0006103515625, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":4290, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":4291, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":4292, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4293, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4294, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4295, + "componentType":5126, + "count":120, + "max":[ + 31.293148040771484, + 15.511141777038574, + 6.5032501220703125 + ], + "min":[ + -31.29313850402832, + 3.6716461181640625e-05, + -6.5018310546875 + ], + "type":"VEC3" + }, + { + "bufferView":4296, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":4297, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":4298, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":4299, + "componentType":5126, + "count":582, + "max":[ + 178.91232299804688, + 185.68356323242188, + 149.8197479248047 + ], + "min":[ + -178.90992736816406, + 1.2440185546875, + -162.1010284423828 + ], + "type":"VEC3" + }, + { + "bufferView":4300, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":4301, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4302, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4303, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4304, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4305, + "componentType":5126, + "count":582, + "max":[ + 178.4804229736328, + 116.01481628417969, + 185.91830444335938 + ], + "min":[ + -178.47952270507812, + 0.0002288818359375, + -185.9185333251953 + ], + "type":"VEC3" + }, + { + "bufferView":4306, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":4307, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4308, + "componentType":5126, + "count":7749, + "max":[ + 103.786865234375, + 427.46484375, + 496.30615234375 + ], + "min":[ + -103.786865234375, + 0, + -496.30712890625 + ], + "type":"VEC3" + }, + { + "bufferView":4309, + "componentType":5126, + "count":7749, + "type":"VEC3" + }, + { + "bufferView":4310, + "componentType":5126, + "count":7749, + "type":"VEC2" + }, + { + "bufferView":4311, + "componentType":5126, + "count":52, + "max":[ + 29.9993896484375, + 483.89794921875, + 238.47802734375 + ], + "min":[ + -30.0010986328125, + 0, + -238.48046875 + ], + "type":"VEC3" + }, + { + "bufferView":4312, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":4313, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":4314, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":4315, + "componentType":5126, + "count":88, + "max":[ + 50.1396484375, + 105.89306640625, + 891.34228515625 + ], + "min":[ + -50.139892578125, + 0, + -891.34228515625 + ], + "type":"VEC3" + }, + { + "bufferView":4316, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":4317, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":4318, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":4319, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4320, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4321, + "componentType":5126, + "count":112, + "max":[ + 1022.581298828125, + 429.54217529296875, + 214.7710723876953 + ], + "min":[ + -1022.5777587890625, + -3.0517578125e-05, + -214.77090454101562 + ], + "type":"VEC3" + }, + { + "bufferView":4322, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":4323, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.07305908203125 + ], + "min":[ + -27.193359375, + 0, + -126.07366943359375 + ], + "type":"VEC3" + }, + { + "bufferView":4324, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4325, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4326, + "componentType":5126, + "count":1420, + "max":[ + 433.119140625, + 367.92919921875, + 90.004150390625 + ], + "min":[ + -433.12109375, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":4327, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":4328, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":4329, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4330, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4331, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4332, + "componentType":5126, + "count":559, + "max":[ + 2.095487594604492, + 14.731964111328125, + 7.3659987449646 + ], + "min":[ + -2.0954642295837402, + -8.249282836914062e-05, + -7.3660454750061035 + ], + "type":"VEC3" + }, + { + "bufferView":4333, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":4334, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":4335, + "componentType":5126, + "count":48, + "max":[ + 127.44677734375, + 625.6328125, + 391.73681640625 + ], + "min":[ + -127.4404296875, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":4336, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":4337, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":4338, + "componentType":5126, + "count":96, + "max":[ + 69.56640625, + 141.0712890625, + 513.90771484375 + ], + "min":[ + -69.57421875, + 0, + -513.9072265625 + ], + "type":"VEC3" + }, + { + "bufferView":4339, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":4340, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":4341, + "componentType":5126, + "count":583, + "max":[ + 181.5825653076172, + 261.29150390625, + 163.3765106201172 + ], + "min":[ + -188.78990173339844, + 38.495086669921875, + -175.308837890625 + ], + "type":"VEC3" + }, + { + "bufferView":4342, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":4343, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4344, + "componentType":5126, + "count":4, + "max":[ + 0, + 2586.479248046875, + 698.884521484375 + ], + "min":[ + 0, + 0, + -698.884521484375 + ], + "type":"VEC3" + }, + { + "bufferView":4345, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4346, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4347, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7293758392334 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":4348, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":4349, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":4350, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":4351, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4352, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4353, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":4354, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4355, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4356, + "componentType":5126, + "count":678, + "max":[ + 824.33984375, + 1001.807373046875, + 93.05411529541016 + ], + "min":[ + -824.337890625, + 0, + -93.05069732666016 + ], + "type":"VEC3" + }, + { + "bufferView":4357, + "componentType":5126, + "count":678, + "type":"VEC3" + }, + { + "bufferView":4358, + "componentType":5126, + "count":678, + "type":"VEC2" + }, + { + "bufferView":4359, + "componentType":5123, + "count":678, + "type":"SCALAR" + }, + { + "bufferView":4360, + "componentType":5126, + "count":24, + "max":[ + 46.2841796875, + 147.76666259765625, + 78.58544921875 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":4361, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4362, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4363, + "componentType":5126, + "count":24, + "max":[ + 27.1982421875, + 130.123046875, + 126.072265625 + ], + "min":[ + -27.189453125, + 0, + -126.07421875 + ], + "type":"VEC3" + }, + { + "bufferView":4364, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4365, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4366, + "componentType":5126, + "count":574, + "max":[ + 180.24105834960938, + 259.448486328125, + 162.15408325195312 + ], + "min":[ + -187.44894409179688, + 38.21537780761719, + -174.0853271484375 + ], + "type":"VEC3" + }, + { + "bufferView":4367, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":4368, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4369, + "componentType":5126, + "count":143, + "max":[ + 18.1376953125, + 2298.161376953125, + 18.139448165893555 + ], + "min":[ + -18.138671875, + 0, + -18.138471603393555 + ], + "type":"VEC3" + }, + { + "bufferView":4370, + "componentType":5126, + "count":143, + "type":"VEC3" + }, + { + "bufferView":4371, + "componentType":5126, + "count":143, + "type":"VEC2" + }, + { + "bufferView":4372, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":4373, + "componentType":5126, + "count":76, + "max":[ + 278.8664855957031, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8669128417969, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":4374, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":4375, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":4376, + "componentType":5126, + "count":24, + "max":[ + 35.000003814697266, + 2000, + 35.000003814697266 + ], + "min":[ + -35.000003814697266, + 0, + -35.000003814697266 + ], + "type":"VEC3" + }, + { + "bufferView":4377, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4378, + "componentType":5126, + "count":582, + "max":[ + 184.51686096191406, + 32.82521057128906, + 184.51698303222656 + ], + "min":[ + -184.51705932617188, + 6.866455078125e-05, + -184.51695251464844 + ], + "type":"VEC3" + }, + { + "bufferView":4379, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":4380, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4381, + "componentType":5126, + "count":576, + "max":[ + 175.79733276367188, + 211.85409545898438, + 160.78196716308594 + ], + "min":[ + -175.79751586914062, + 1.52587890625e-05, + -160.78175354003906 + ], + "type":"VEC3" + }, + { + "bufferView":4382, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":4383, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4384, + "componentType":5126, + "count":118, + "max":[ + 31.293136596679688, + 15.511151313781738, + 6.50274658203125 + ], + "min":[ + -31.293140411376953, + -6.29425048828125e-05, + -6.5023345947265625 + ], + "type":"VEC3" + }, + { + "bufferView":4385, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":4386, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":4387, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":4388, + "componentType":5126, + "count":240, + "max":[ + 172.5966796875, + 185.23486328125, + 169.070556640625 + ], + "min":[ + -172.59716796875, + -0.00048828125, + -169.070556640625 + ], + "type":"VEC3" + }, + { + "bufferView":4389, + "componentType":5126, + "count":240, + "type":"VEC3" + }, + { + "bufferView":4390, + "componentType":5126, + "count":240, + "type":"VEC2" + }, + { + "bufferView":4391, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":4392, + "componentType":5126, + "count":24, + "max":[ + 292.4480895996094, + 205.86782836914062, + 292.42669677734375 + ], + "min":[ + -292.4480895996094, + 7.62939453125e-05, + -292.4266357421875 + ], + "type":"VEC3" + }, + { + "bufferView":4393, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4394, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4395, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4396, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4397, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4398, + "componentType":5126, + "count":24, + "max":[ + 110.00021362304688, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534164175624028, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":4399, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4400, + "componentType":5126, + "count":234, + "max":[ + 115.35124969482422, + 318.5151062011719, + 160.49095153808594 + ], + "min":[ + -115.35120391845703, + 1.3115386962890625, + -159.1707000732422 + ], + "type":"VEC3" + }, + { + "bufferView":4401, + "componentType":5126, + "count":234, + "type":"VEC3" + }, + { + "bufferView":4402, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":4403, + "componentType":5126, + "count":4, + "max":[ + 698.884765625, + 2586.479248046875, + 0.0013247504830360413 + ], + "min":[ + -698.884765625, + 0, + 0.0008725151419639587 + ], + "type":"VEC3" + }, + { + "bufferView":4404, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4405, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4406, + "componentType":5126, + "count":60, + "max":[ + 3.7875120639801025, + 13.693793296813965, + 6.47288179397583 + ], + "min":[ + -3.787554979324341, + 0.00021409988403320312, + -6.472884178161621 + ], + "type":"VEC3" + }, + { + "bufferView":4407, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":4408, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":4409, + "componentType":5126, + "count":112, + "max":[ + 126.77018737792969, + 222.64730834960938, + 126.77018737792969 + ], + "min":[ + -126.77018737792969, + 0, + -126.7702865600586 + ], + "type":"VEC3" + }, + { + "bufferView":4410, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":4411, + "componentType":5126, + "count":24, + "max":[ + 4704, + 6000, + 128 + ], + "min":[ + -4704, + 0, + -128 + ], + "type":"VEC3" + }, + { + "bufferView":4412, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4413, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4414, + "componentType":5126, + "count":7749, + "max":[ + 103.786865234375, + 427.46484375, + 496.30615234375 + ], + "min":[ + -103.786865234375, + 0, + -496.30712890625 + ], + "type":"VEC3" + }, + { + "bufferView":4415, + "componentType":5126, + "count":7749, + "type":"VEC3" + }, + { + "bufferView":4416, + "componentType":5126, + "count":7749, + "type":"VEC2" + }, + { + "bufferView":4417, + "componentType":5126, + "count":136, + "max":[ + 1923.4017333984375, + 217.5, + 3275.270263671875 + ], + "min":[ + -1923.4022216796875, + 0, + -3276.3525390625 + ], + "type":"VEC3" + }, + { + "bufferView":4418, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":4419, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":4420, + "componentType":5123, + "count":336, + "type":"SCALAR" + }, + { + "bufferView":4421, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.2841796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.2841796875 + ], + "type":"VEC3" + }, + { + "bufferView":4422, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":4423, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":4424, + "componentType":5126, + "count":56, + "max":[ + 238.478515625, + 483.897705078125, + 30.0009765625 + ], + "min":[ + -238.4794921875, + 0, + -30 + ], + "type":"VEC3" + }, + { + "bufferView":4425, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":4426, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":4427, + "componentType":5126, + "count":204, + "max":[ + 591.1002197265625, + 6877.521484375, + 34.48677444458008 + ], + "min":[ + -591.1004028320312, + 0, + -34.48673629760742 + ], + "type":"VEC3" + }, + { + "bufferView":4428, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":4429, + "componentType":5123, + "count":1068, + "type":"SCALAR" + }, + { + "bufferView":4430, + "componentType":5126, + "count":234, + "max":[ + 115.35121154785156, + 317.20355224609375, + 159.83065795898438 + ], + "min":[ + -115.35128021240234, + -7.62939453125e-05, + -159.8308563232422 + ], + "type":"VEC3" + }, + { + "bufferView":4431, + "componentType":5126, + "count":234, + "type":"VEC3" + }, + { + "bufferView":4432, + "componentType":5126, + "count":574, + "max":[ + 171.90518188476562, + 177.52947998046875, + 149.89190673828125 + ], + "min":[ + -171.9025421142578, + -0.000152587890625, + -149.89193725585938 + ], + "type":"VEC3" + }, + { + "bufferView":4433, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":4434, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4435, + "componentType":5126, + "count":52, + "max":[ + 29.9993896484375, + 483.89794921875, + 238.47802734375 + ], + "min":[ + -30.0010986328125, + 0, + -238.48046875 + ], + "type":"VEC3" + }, + { + "bufferView":4436, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":4437, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":4438, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4439, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4440, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4441, + "componentType":5126, + "count":342, + "max":[ + 115.14114379882812, + 210.2413787841797, + 69.11681365966797 + ], + "min":[ + -115.1412582397461, + 7.62939453125e-05, + -69.11588287353516 + ], + "type":"VEC3" + }, + { + "bufferView":4442, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":4443, + "componentType":5126, + "count":676, + "max":[ + 17.46044921875, + 2528.300048828125, + 1916.37353515625 + ], + "min":[ + -17.45947265625, + 0.0006103515625, + -1916.375732421875 + ], + "type":"VEC3" + }, + { + "bufferView":4444, + "componentType":5126, + "count":676, + "type":"VEC3" + }, + { + "bufferView":4445, + "componentType":5126, + "count":676, + "type":"VEC2" + }, + { + "bufferView":4446, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 463.990234375 + ], + "min":[ + -110.0000228881836, + 0, + -463.990234375 + ], + "type":"VEC3" + }, + { + "bufferView":4447, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4448, + "componentType":5126, + "count":329, + "max":[ + 170.90625, + 157.00146484375, + 177.25439453125 + ], + "min":[ + -170.9033203125, + 21.2880859375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":4449, + "componentType":5126, + "count":329, + "type":"VEC3" + }, + { + "bufferView":4450, + "componentType":5126, + "count":329, + "type":"VEC2" + }, + { + "bufferView":4451, + "componentType":5126, + "count":112, + "max":[ + 31.29314422607422, + 15.511116027832031, + 6.5026092529296875 + ], + "min":[ + -31.29315757751465, + 9.202957153320312e-05, + -6.5025787353515625 + ], + "type":"VEC3" + }, + { + "bufferView":4452, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":4453, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":4454, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":4455, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4456, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4457, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4458, + "componentType":5126, + "count":24, + "max":[ + 189.23095703125, + 33.600830078125, + 486.49072265625 + ], + "min":[ + -189.23193359375, + 0, + -486.489013671875 + ], + "type":"VEC3" + }, + { + "bufferView":4459, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4460, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4461, + "componentType":5126, + "count":158, + "max":[ + 769.70751953125, + 113.19482421875, + 56.5966796875 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":4462, + "componentType":5126, + "count":158, + "type":"VEC3" + }, + { + "bufferView":4463, + "componentType":5126, + "count":158, + "type":"VEC2" + }, + { + "bufferView":4464, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":4465, + "componentType":5126, + "count":573, + "max":[ + 160.1221160888672, + 231.80075073242188, + 143.80897521972656 + ], + "min":[ + -167.3301239013672, + 34.01490020751953, + -155.74111938476562 + ], + "type":"VEC3" + }, + { + "bufferView":4466, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":4467, + "componentType":5126, + "count":111, + "max":[ + 3865.394287109375, + 81.21484375, + 40.60791015625 + ], + "min":[ + -3865.39306640625, + 0, + -40.607421875 + ], + "type":"VEC3" + }, + { + "bufferView":4468, + "componentType":5126, + "count":111, + "type":"VEC3" + }, + { + "bufferView":4469, + "componentType":5126, + "count":111, + "type":"VEC2" + }, + { + "bufferView":4470, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":4471, + "componentType":5126, + "count":96, + "max":[ + 513.90966796875, + 141.07080078125, + 69.5703125 + ], + "min":[ + -513.9052734375, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":4472, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":4473, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":4474, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4475, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4476, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4477, + "componentType":5126, + "count":24, + "max":[ + 350, + 1016.5, + 350 + ], + "min":[ + -350, + 0, + -350 + ], + "type":"VEC3" + }, + { + "bufferView":4478, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4479, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4480, + "componentType":5126, + "count":352, + "max":[ + 131.3284912109375, + 224.240234375, + 138.18701171875 + ], + "min":[ + -131.32923889160156, + 3.361572265625, + -138.1864013671875 + ], + "type":"VEC3" + }, + { + "bufferView":4481, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":4482, + "componentType":5126, + "count":336, + "max":[ + 115.14118194580078, + 258.98150634765625, + 13.560661315917969 + ], + "min":[ + -115.14129638671875, + 28.69904327392578, + -13.560714721679688 + ], + "type":"VEC3" + }, + { + "bufferView":4483, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":4484, + "componentType":5126, + "count":24, + "max":[ + 10.934783935546875, + 361.93450927734375, + 56.17059326171875 + ], + "min":[ + -10.934823989868164, + 9.918212890625e-05, + -56.171226501464844 + ], + "type":"VEC3" + }, + { + "bufferView":4485, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4486, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4487, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51410675048828, + 43.590824127197266 + ], + "min":[ + -22.728515625, + -7.62939453125e-06, + -43.587406158447266 + ], + "type":"VEC3" + }, + { + "bufferView":4488, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":4489, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":4490, + "componentType":5123, + "count":276, + "type":"SCALAR" + }, + { + "bufferView":4491, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4492, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4493, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4494, + "componentType":5126, + "count":108, + "max":[ + 15.704833984375, + 190.963134765625, + 266.5069885253906 + ], + "min":[ + -15.705810546875, + 0, + -266.50701904296875 + ], + "type":"VEC3" + }, + { + "bufferView":4495, + "componentType":5126, + "count":108, + "type":"VEC3" + }, + { + "bufferView":4496, + "componentType":5126, + "count":108, + "type":"VEC2" + }, + { + "bufferView":4497, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":4498, + "componentType":5126, + "count":336, + "max":[ + 115.14122772216797, + 230.28253173828125, + 13.560562133789062 + ], + "min":[ + -115.1412124633789, + 8.392333984375e-05, + -13.560859680175781 + ], + "type":"VEC3" + }, + { + "bufferView":4499, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":4500, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":4501, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4502, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4503, + "componentType":5126, + "count":580, + "max":[ + 170.50344848632812, + 32.82521057128906, + 170.50233459472656 + ], + "min":[ + -170.50135803222656, + 1.52587890625e-05, + -170.50250244140625 + ], + "type":"VEC3" + }, + { + "bufferView":4504, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":4505, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4506, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.585693359375 + ], + "min":[ + -46.2841796875, + 0, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":4507, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4508, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4509, + "componentType":5126, + "count":96, + "max":[ + 29444.12109375, + 696.6343994140625, + 44874.1640625 + ], + "min":[ + -29444.12109375, + 0, + -44874.16015625 + ], + "type":"VEC3" + }, + { + "bufferView":4510, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":4511, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":4512, + "componentType":5123, + "count":192, + "type":"SCALAR" + }, + { + "bufferView":4513, + "componentType":5126, + "count":82, + "max":[ + 5.782175540924072, + 27.783960342407227, + 5.782160758972168 + ], + "min":[ + -5.782073497772217, + 0.0001882332726381719, + -5.782059669494629 + ], + "type":"VEC3" + }, + { + "bufferView":4514, + "componentType":5126, + "count":82, + "type":"VEC3" + }, + { + "bufferView":4515, + "componentType":5126, + "count":82, + "type":"VEC2" + }, + { + "bufferView":4516, + "componentType":5126, + "count":574, + "max":[ + 149.48141479492188, + 155.41775512695312, + 130.4728546142578 + ], + "min":[ + -149.47979736328125, + 0.00019073486328125, + -130.47276306152344 + ], + "type":"VEC3" + }, + { + "bufferView":4517, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":4518, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4519, + "componentType":5126, + "count":574, + "max":[ + 206.41368103027344, + 285.50921630859375, + 191.37799072265625 + ], + "min":[ + -199.20541381835938, + 42.17414855957031, + -179.44570922851562 + ], + "type":"VEC3" + }, + { + "bufferView":4520, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":4521, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4522, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4523, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4524, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4525, + "componentType":5126, + "count":580, + "max":[ + 182.92408752441406, + 263.1343994140625, + 164.5999755859375 + ], + "min":[ + -190.1309051513672, + 38.774932861328125, + -176.53138732910156 + ], + "type":"VEC3" + }, + { + "bufferView":4526, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":4527, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4528, + "componentType":5126, + "count":56, + "max":[ + 115.15478515625, + 511.947509765625, + 147.15673828125 + ], + "min":[ + -115.15283203125, + 0, + -147.15576171875 + ], + "type":"VEC3" + }, + { + "bufferView":4529, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":4530, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":4531, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":4532, + "componentType":5126, + "count":576, + "max":[ + 206.177734375, + 212.76779174804688, + 185.71405029296875 + ], + "min":[ + -206.17726135253906, + 1.44049072265625, + -173.43338012695312 + ], + "type":"VEC3" + }, + { + "bufferView":4533, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":4534, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4535, + "componentType":5126, + "count":556, + "max":[ + 187.32032775878906, + 192.731689453125, + 163.24252319335938 + ], + "min":[ + -187.31944274902344, + 0.000152587890625, + -163.2425994873047 + ], + "type":"VEC3" + }, + { + "bufferView":4536, + "componentType":5126, + "count":556, + "type":"VEC3" + }, + { + "bufferView":4537, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4538, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4539, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4540, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4541, + "componentType":5126, + "count":72, + "max":[ + 25584.798828125, + 14, + 30063.203125 + ], + "min":[ + -25584.798828125, + 0, + -30063.203125 + ], + "type":"VEC3" + }, + { + "bufferView":4542, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":4543, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":4544, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":4545, + "componentType":5123, + "count":108, + "type":"SCALAR" + }, + { + "bufferView":4546, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58544921875 + ], + "min":[ + -46.2841796875, + 0, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":4547, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4548, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4549, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4550, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4551, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4552, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4553, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4554, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4555, + "componentType":5126, + "count":596, + "max":[ + 142.26710510253906, + 98.75543212890625, + 148.07913208007812 + ], + "min":[ + -142.26473999023438, + 0.0001068115234375, + -148.0791473388672 + ], + "type":"VEC3" + }, + { + "bufferView":4556, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":4557, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4558, + "componentType":5126, + "count":50, + "max":[ + 391.73828125, + 625.6328125, + 127.44482421875 + ], + "min":[ + -391.7373046875, + 0, + -127.4423828125 + ], + "type":"VEC3" + }, + { + "bufferView":4559, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":4560, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":4561, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":4562, + "componentType":5126, + "count":92, + "max":[ + 824.2412109375, + 141.0703125, + 69.5703125 + ], + "min":[ + -824.24072265625, + 0, + -69.569580078125 + ], + "type":"VEC3" + }, + { + "bufferView":4563, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":4564, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":4565, + "componentType":5126, + "count":50, + "max":[ + 142.32080078125, + 608.220703125, + 391.73779296875 + ], + "min":[ + -142.32177734375, + 0, + -391.73779296875 + ], + "type":"VEC3" + }, + { + "bufferView":4566, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":4567, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":4568, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":4569, + "componentType":5126, + "count":228, + "max":[ + 105.79638671875, + 2059.5048828125, + 105.79833984375 + ], + "min":[ + -105.798828125, + 0, + -105.801025390625 + ], + "type":"VEC3" + }, + { + "bufferView":4570, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":4571, + "componentType":5126, + "count":228, + "type":"VEC2" + }, + { + "bufferView":4572, + "componentType":5126, + "count":584, + "max":[ + 173.30691528320312, + 180.11541748046875, + 157.2457733154297 + ], + "min":[ + -173.3037109375, + 1.2038650512695312, + -144.9654541015625 + ], + "type":"VEC3" + }, + { + "bufferView":4573, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":4574, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4575, + "componentType":5126, + "count":112, + "max":[ + 147.98104858398438, + 402.919921875, + 170.0750732421875 + ], + "min":[ + -147.98330688476562, + 20.407974243164062, + -170.07574462890625 + ], + "type":"VEC3" + }, + { + "bufferView":4576, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":4577, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":4578, + "componentType":5126, + "count":584, + "max":[ + 167.7482452392578, + 110.9007568359375, + 174.7067108154297 + ], + "min":[ + -167.75155639648438, + 3.0517578125e-05, + -174.70689392089844 + ], + "type":"VEC3" + }, + { + "bufferView":4579, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":4580, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4581, + "componentType":5126, + "count":168, + "max":[ + 29.924560546875, + 1132.8153076171875, + 29.9249267578125 + ], + "min":[ + -29.92431640625, + 0, + -29.9241943359375 + ], + "type":"VEC3" + }, + { + "bufferView":4582, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":4583, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":4584, + "componentType":5126, + "count":138, + "max":[ + 80.151611328125, + 126.6884765625, + 49.03515625 + ], + "min":[ + -80.154541015625, + 0, + -49.03515625 + ], + "type":"VEC3" + }, + { + "bufferView":4585, + "componentType":5126, + "count":138, + "type":"VEC3" + }, + { + "bufferView":4586, + "componentType":5126, + "count":138, + "type":"VEC2" + }, + { + "bufferView":4587, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":4588, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4589, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4590, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4591, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4592, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4593, + "componentType":5126, + "count":489, + "max":[ + 186.85626220703125, + 259.27752685546875, + 182.40966796875 + ], + "min":[ + -186.8560791015625, + 7.62939453125e-06, + -182.41015625 + ], + "type":"VEC3" + }, + { + "bufferView":4594, + "componentType":5126, + "count":489, + "type":"VEC3" + }, + { + "bufferView":4595, + "componentType":5126, + "count":489, + "type":"VEC2" + }, + { + "bufferView":4596, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4597, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":4598, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4599, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4600, + "componentType":5126, + "count":582, + "max":[ + 178.90992736816406, + 184.43942260742188, + 155.9603729248047 + ], + "min":[ + -178.91232299804688, + -0.00011444091796875, + -155.9604034423828 + ], + "type":"VEC3" + }, + { + "bufferView":4601, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":4602, + "componentType":5126, + "count":2917, + "max":[ + 8.997692108154297, + 48.001651763916016, + 23.86931610107422 + ], + "min":[ + -8.997540473937988, + 0.0001125335693359375, + -23.869264602661133 + ], + "type":"VEC3" + }, + { + "bufferView":4603, + "componentType":5126, + "count":2917, + "type":"VEC3" + }, + { + "bufferView":4604, + "componentType":5126, + "count":2917, + "type":"VEC2" + }, + { + "bufferView":4605, + "componentType":5126, + "count":682, + "max":[ + 150.831298828125, + 268.334716796875, + 147.6686248779297 + ], + "min":[ + -150.833984375, + 28.938980102539062, + -147.66799926757812 + ], + "type":"VEC3" + }, + { + "bufferView":4606, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":4607, + "componentType":5126, + "count":112, + "max":[ + 31.293148040771484, + 15.51118278503418, + 6.5037689208984375 + ], + "min":[ + -31.29313850402832, + 7.677078247070312e-05, + -6.5018310546875 + ], + "type":"VEC3" + }, + { + "bufferView":4608, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":4609, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":4610, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":4611, + "componentType":5126, + "count":12, + "max":[ + 411.462890625, + 388.941162109375, + 9.51611328125 + ], + "min":[ + -411.462890625, + 0, + -9.5142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":4612, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":4613, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":4614, + "componentType":5126, + "count":162, + "max":[ + 228.90869140625, + 55.46875, + 27.736328125 + ], + "min":[ + -228.907470703125, + 0, + -27.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":4615, + "componentType":5126, + "count":162, + "type":"VEC3" + }, + { + "bufferView":4616, + "componentType":5126, + "count":162, + "type":"VEC2" + }, + { + "bufferView":4617, + "componentType":5126, + "count":350, + "max":[ + 171.298828125, + 184.80859375, + 176.140625 + ], + "min":[ + -171.2978515625, + 44.45703125, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":4618, + "componentType":5126, + "count":350, + "type":"VEC3" + }, + { + "bufferView":4619, + "componentType":5126, + "count":350, + "type":"VEC2" + }, + { + "bufferView":4620, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4621, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4622, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4623, + "componentType":5126, + "count":865, + "max":[ + 7.779087543487549, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778796672821045, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":4624, + "componentType":5126, + "count":865, + "type":"VEC3" + }, + { + "bufferView":4625, + "componentType":5126, + "count":865, + "type":"VEC2" + }, + { + "bufferView":4626, + "componentType":5126, + "count":181, + "max":[ + 769.70703125, + 113.194580078125, + 56.59765625 + ], + "min":[ + -769.71044921875, + 0, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":4627, + "componentType":5126, + "count":181, + "type":"VEC3" + }, + { + "bufferView":4628, + "componentType":5126, + "count":181, + "type":"VEC2" + }, + { + "bufferView":4629, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":4630, + "componentType":5126, + "count":84, + "max":[ + 1104.4970703125, + 2852.560791015625, + 29.2441463470459 + ], + "min":[ + -1104.4970703125, + 0, + -29.24298667907715 + ], + "type":"VEC3" + }, + { + "bufferView":4631, + "componentType":5126, + "count":84, + "type":"VEC3" + }, + { + "bufferView":4632, + "componentType":5126, + "count":84, + "type":"VEC2" + }, + { + "bufferView":4633, + "componentType":5123, + "count":126, + "type":"SCALAR" + }, + { + "bufferView":4634, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":4635, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4636, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4637, + "componentType":5126, + "count":229, + "max":[ + 172.59716796875, + 185.23583984375, + 169.0712890625 + ], + "min":[ + -172.596923828125, + 0, + -169.0693359375 + ], + "type":"VEC3" + }, + { + "bufferView":4638, + "componentType":5126, + "count":229, + "type":"VEC3" + }, + { + "bufferView":4639, + "componentType":5126, + "count":229, + "type":"VEC2" + }, + { + "bufferView":4640, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":4641, + "componentType":5126, + "count":60, + "max":[ + 5.548463821411133, + 14.031469345092773, + 3.7875235080718994 + ], + "min":[ + -5.54845666885376, + -3.2901763916015625e-05, + -3.7875478267669678 + ], + "type":"VEC3" + }, + { + "bufferView":4642, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":4643, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":4644, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4645, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4646, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4647, + "componentType":5126, + "count":584, + "max":[ + 177.13890075683594, + 115.37523651123047, + 184.51686096191406 + ], + "min":[ + -177.1385040283203, + -0.000152587890625, + -184.51707458496094 + ], + "type":"VEC3" + }, + { + "bufferView":4648, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":4649, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4650, + "componentType":5126, + "count":56, + "max":[ + 29.798583984375, + 520.125, + 217.041015625 + ], + "min":[ + -29.7984619140625, + 0, + -217.04150390625 + ], + "type":"VEC3" + }, + { + "bufferView":4651, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":4652, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":4653, + "componentType":5126, + "count":88, + "max":[ + 50.1396484375, + 860.975830078125, + 52.946044921875 + ], + "min":[ + -50.139892578125, + 0, + -52.946533203125 + ], + "type":"VEC3" + }, + { + "bufferView":4654, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":4655, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":4656, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":4657, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4658, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4659, + "componentType":5126, + "count":340, + "max":[ + 115.3511962890625, + 230.70252990722656, + 13.560722351074219 + ], + "min":[ + -115.35124969482422, + 4.57763671875e-05, + -13.5606689453125 + ], + "type":"VEC3" + }, + { + "bufferView":4660, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":4661, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":4662, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.0733642578125 + ], + "min":[ + -27.193359375, + 0, + -126.07333374023438 + ], + "type":"VEC3" + }, + { + "bufferView":4663, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4664, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4665, + "componentType":5126, + "count":1020, + "max":[ + 831.546875, + 116.2335205078125, + 746.103759765625 + ], + "min":[ + -831.544921875, + 0.000118255615234375, + -746.101318359375 + ], + "type":"VEC3" + }, + { + "bufferView":4666, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":4667, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":4668, + "componentType":5126, + "count":237, + "max":[ + 173.28125, + 188.23828125, + 169.1005859375 + ], + "min":[ + -173.28173828125, + 0, + -169.1015625 + ], + "type":"VEC3" + }, + { + "bufferView":4669, + "componentType":5126, + "count":237, + "type":"VEC3" + }, + { + "bufferView":4670, + "componentType":5126, + "count":237, + "type":"VEC2" + }, + { + "bufferView":4671, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":4672, + "componentType":5126, + "count":54, + "max":[ + 123.61328125, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.615234375, + 0, + -366.1533203125 + ], + "type":"VEC3" + }, + { + "bufferView":4673, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":4674, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":4675, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":4676, + "componentType":5126, + "count":575, + "max":[ + 168.17123413085938, + 242.8599395751953, + 151.1470947265625 + ], + "min":[ + -175.37606811523438, + 35.69518280029297, + -163.0787353515625 + ], + "type":"VEC3" + }, + { + "bufferView":4677, + "componentType":5126, + "count":575, + "type":"VEC3" + }, + { + "bufferView":4678, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4679, + "componentType":5126, + "count":342, + "max":[ + 170.435546875, + 188.556640625, + 176.205078125 + ], + "min":[ + -170.43359375, + 45.296875, + -176.2021484375 + ], + "type":"VEC3" + }, + { + "bufferView":4680, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":4681, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":4682, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":4683, + "componentType":5126, + "count":52, + "max":[ + 30.0029296875, + 483.89794921875, + 238.47998046875 + ], + "min":[ + -29.998046875, + 0, + -238.478515625 + ], + "type":"VEC3" + }, + { + "bufferView":4684, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":4685, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":4686, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":4687, + "componentType":5126, + "count":224, + "max":[ + 118.72059631347656, + 272.6591796875, + 115.08650207519531 + ], + "min":[ + -118.72099304199219, + 42.486289978027344, + -115.08641052246094 + ], + "type":"VEC3" + }, + { + "bufferView":4688, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":4689, + "componentType":5126, + "count":578, + "max":[ + 160.69134521484375, + 32.82542037963867, + 160.6921844482422 + ], + "min":[ + -160.69309997558594, + 6.103515625e-05, + -160.69229125976562 + ], + "type":"VEC3" + }, + { + "bufferView":4690, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":4691, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":4692, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4693, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4694, + "componentType":5126, + "count":162, + "max":[ + 983.470703125, + 355.5093688964844, + 983.4719848632812 + ], + "min":[ + -983.46875, + 9.1552734375e-05, + -983.4695434570312 + ], + "type":"VEC3" + }, + { + "bufferView":4695, + "componentType":5126, + "count":162, + "type":"VEC3" + }, + { + "bufferView":4696, + "componentType":5126, + "count":162, + "type":"VEC2" + }, + { + "bufferView":4697, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58544921875 + ], + "min":[ + -46.2841796875, + 0, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":4698, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4699, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4700, + "componentType":5126, + "count":24, + "max":[ + 27.1982421875, + 130.123046875, + 126.07373046875 + ], + "min":[ + -27.189453125, + 0, + -126.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":4701, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4702, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4703, + "componentType":5126, + "count":561, + "max":[ + 178.89952087402344, + 257.6051025390625, + 160.93115234375 + ], + "min":[ + -186.1079864501953, + 37.93511962890625, + -172.86228942871094 + ], + "type":"VEC3" + }, + { + "bufferView":4704, + "componentType":5126, + "count":561, + "type":"VEC3" + }, + { + "bufferView":4705, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4706, + "componentType":5126, + "count":76, + "max":[ + 278.8669738769531, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8664245605469, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":4707, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":4708, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":4709, + "componentType":5126, + "count":50, + "max":[ + 142.32275390625, + 608.220703125, + 391.7376403808594 + ], + "min":[ + -142.31982421875, + 0, + -391.7374572753906 + ], + "type":"VEC3" + }, + { + "bufferView":4710, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":4711, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":4712, + "componentType":5126, + "count":24, + "max":[ + 253.74288940429688, + 50, + 584.666015625 + ], + "min":[ + -253.7432403564453, + -8.255030479631387e-06, + -584.6621704101562 + ], + "type":"VEC3" + }, + { + "bufferView":4713, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4714, + "componentType":5126, + "count":24, + "max":[ + 35.000003814697266, + 2000, + 35.000003814697266 + ], + "min":[ + -35.000003814697266, + 0, + -35.000003814697266 + ], + "type":"VEC3" + }, + { + "bufferView":4715, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4716, + "componentType":5126, + "count":584, + "max":[ + 185.91859436035156, + 32.82526779174805, + 185.91842651367188 + ], + "min":[ + -185.9182586669922, + 6.866455078125e-05, + -185.9184112548828 + ], + "type":"VEC3" + }, + { + "bufferView":4717, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":4718, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4719, + "componentType":5126, + "count":595, + "max":[ + 152.995361328125, + 185.28057861328125, + 139.99119567871094 + ], + "min":[ + -152.99667358398438, + 9.1552734375e-05, + -139.99127197265625 + ], + "type":"VEC3" + }, + { + "bufferView":4720, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":4721, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4722, + "componentType":5126, + "count":48, + "max":[ + 11.695329666137695, + 233.9413299560547, + 289.01409912109375 + ], + "min":[ + -11.698831558227539, + -1.52587890625e-05, + -289.0140686035156 + ], + "type":"VEC3" + }, + { + "bufferView":4723, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":4724, + "componentType":5126, + "count":580, + "max":[ + 190.123779296875, + 195.49533081054688, + 165.669921875 + ], + "min":[ + -190.12181091308594, + -0.0001983642578125, + -165.6699981689453 + ], + "type":"VEC3" + }, + { + "bufferView":4725, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":4726, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4727, + "componentType":5126, + "count":348, + "max":[ + 115.35124969482422, + 212.3877410888672, + 68.44605255126953 + ], + "min":[ + -115.35121154785156, + 0.9674606323242188, + -68.44590759277344 + ], + "type":"VEC3" + }, + { + "bufferView":4728, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":4729, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":4730, + "componentType":5126, + "count":4, + "max":[ + 698.8837890625, + 2586.479248046875, + 0.0014468207955360413 + ], + "min":[ + -698.8837890625, + 0, + 0.0009945854544639587 + ], + "type":"VEC3" + }, + { + "bufferView":4731, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4732, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4733, + "componentType":5126, + "count":48, + "max":[ + 127.44091796875, + 625.6328125, + 391.736328125 + ], + "min":[ + -127.4423828125, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":4734, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":4735, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":4736, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":4737, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4738, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4739, + "componentType":5126, + "count":596, + "max":[ + 175.79734802246094, + 114.73617553710938, + 183.1154022216797 + ], + "min":[ + -175.79750061035156, + 6.103515625e-05, + -183.11566162109375 + ], + "type":"VEC3" + }, + { + "bufferView":4740, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":4741, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4742, + "componentType":5126, + "count":586, + "max":[ + 185.1880340576172, + 119.22972106933594, + 192.92555236816406 + ], + "min":[ + -185.18443298339844, + -4.57763671875e-05, + -192.9258575439453 + ], + "type":"VEC3" + }, + { + "bufferView":4743, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":4744, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4745, + "componentType":5126, + "count":96, + "max":[ + 820.9443359375, + 205.1725616455078, + 73.4787826538086 + ], + "min":[ + -820.9476318359375, + -5.7220458984375e-05, + -73.47869110107422 + ], + "type":"VEC3" + }, + { + "bufferView":4746, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":4747, + "componentType":5126, + "count":582, + "max":[ + 185.91859436035156, + 32.82526779174805, + 185.91830444335938 + ], + "min":[ + -185.9182586669922, + 6.866455078125e-05, + -185.9185333251953 + ], + "type":"VEC3" + }, + { + "bufferView":4748, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":4749, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4750, + "componentType":5126, + "count":594, + "max":[ + 161.04449462890625, + 107.70491027832031, + 167.69956970214844 + ], + "min":[ + -161.0426483154297, + 0.00022125244140625, + -167.69944763183594 + ], + "type":"VEC3" + }, + { + "bufferView":4751, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":4752, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4753, + "componentType":5126, + "count":202, + "max":[ + 1060.18603515625, + 12554.818359375, + 156.158203125 + ], + "min":[ + -1060.1875, + 0.000278472900390625, + -156.1611328125 + ], + "type":"VEC3" + }, + { + "bufferView":4754, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":4755, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":4756, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":4757, + "componentType":5126, + "count":580, + "max":[ + 169.50885009765625, + 244.70289611816406, + 152.37002563476562 + ], + "min":[ + -176.7209930419922, + 35.97492980957031, + -164.30172729492188 + ], + "type":"VEC3" + }, + { + "bufferView":4758, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":4759, + "componentType":5126, + "count":584, + "max":[ + 173.30691528320312, + 178.91180419921875, + 151.10560607910156 + ], + "min":[ + -173.3037109375, + 0.00023651123046875, + -151.10565185546875 + ], + "type":"VEC3" + }, + { + "bufferView":4760, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":4761, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4762, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4763, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4764, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4765, + "componentType":5126, + "count":226, + "max":[ + 115.14118957519531, + 342.30987548828125, + 159.38693237304688 + ], + "min":[ + -115.14127349853516, + 24.731460571289062, + -160.72265625 + ], + "type":"VEC3" + }, + { + "bufferView":4766, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":4767, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 463.990234375 + ], + "min":[ + -110.0000228881836, + 0, + -463.990234375 + ], + "type":"VEC3" + }, + { + "bufferView":4768, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4769, + "componentType":5126, + "count":347, + "max":[ + 170.435546875, + 188.558349609375, + 176.2041015625 + ], + "min":[ + -170.4345703125, + 45.296630859375, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":4770, + "componentType":5126, + "count":347, + "type":"VEC3" + }, + { + "bufferView":4771, + "componentType":5126, + "count":347, + "type":"VEC2" + }, + { + "bufferView":4772, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":4773, + "componentType":5126, + "count":195, + "max":[ + 13.25341796875, + 75.7955093383789, + 25.507080078125 + ], + "min":[ + -13.25, + 1.4826655387878418e-05, + -25.497314453125 + ], + "type":"VEC3" + }, + { + "bufferView":4774, + "componentType":5126, + "count":195, + "type":"VEC3" + }, + { + "bufferView":4775, + "componentType":5126, + "count":195, + "type":"VEC2" + }, + { + "bufferView":4776, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":4777, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":4778, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":4779, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":4780, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":4781, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4782, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4783, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4784, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4785, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4786, + "componentType":5126, + "count":76, + "max":[ + 279.1010437011719, + 3543.081787109375, + 278.8665466308594 + ], + "min":[ + -279.0986328125, + 0, + -278.8669128417969 + ], + "type":"VEC3" + }, + { + "bufferView":4787, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":4788, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":4789, + "componentType":5126, + "count":574, + "max":[ + 152.2848663330078, + 159.23370361328125, + 139.0407257080078 + ], + "min":[ + -152.2821502685547, + 1.05206298828125, + -126.75958251953125 + ], + "type":"VEC3" + }, + { + "bufferView":4790, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":4791, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.14447021484375, + 360.898193359375 + ], + "min":[ + -8.34619140625, + 0.00030517578125, + -360.896484375 + ], + "type":"VEC3" + }, + { + "bufferView":4792, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":4793, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":4794, + "componentType":5126, + "count":2453, + "max":[ + 50.151649475097656, + 4511.697265625, + 79.23255920410156 + ], + "min":[ + -50.151641845703125, + 0, + -79.23702239990234 + ], + "type":"VEC3" + }, + { + "bufferView":4795, + "componentType":5126, + "count":2453, + "type":"VEC3" + }, + { + "bufferView":4796, + "componentType":5126, + "count":2453, + "type":"VEC2" + }, + { + "bufferView":4797, + "componentType":5123, + "count":4488, + "type":"SCALAR" + }, + { + "bufferView":4798, + "componentType":5126, + "count":648, + "max":[ + 615.01123046875, + 2510.92529296875, + 347.265625 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.26611328125 + ], + "type":"VEC3" + }, + { + "bufferView":4799, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":4800, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":4801, + "componentType":5126, + "count":586, + "max":[ + 146.29168701171875, + 100.67314147949219, + 152.28347778320312 + ], + "min":[ + -146.2877960205078, + 0.00011444091796875, + -152.28353881835938 + ], + "type":"VEC3" + }, + { + "bufferView":4802, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":4803, + "componentType":5126, + "count":580, + "max":[ + 174.70492553710938, + 32.8251953125, + 174.7067108154297 + ], + "min":[ + -174.70864868164062, + 3.814697265625e-05, + -174.70689392089844 + ], + "type":"VEC3" + }, + { + "bufferView":4804, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":4805, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4806, + "componentType":5126, + "count":40, + "max":[ + 1.4143264293670654, + 10.517535209655762, + 5.258737564086914 + ], + "min":[ + -1.4143013954162598, + 6.0558319091796875e-05, + -5.258735179901123 + ], + "type":"VEC3" + }, + { + "bufferView":4807, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":4808, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":4809, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":4810, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4811, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4812, + "componentType":5126, + "count":229, + "max":[ + 105.801025390625, + 2059.5048828125, + 105.79736328125 + ], + "min":[ + -105.79833984375, + 0, + -105.7978515625 + ], + "type":"VEC3" + }, + { + "bufferView":4813, + "componentType":5126, + "count":229, + "type":"VEC3" + }, + { + "bufferView":4814, + "componentType":5126, + "count":229, + "type":"VEC2" + }, + { + "bufferView":4815, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":4816, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.072265625 + ], + "min":[ + -27.193359375, + 0, + -126.07421875 + ], + "type":"VEC3" + }, + { + "bufferView":4817, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4818, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4819, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4820, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4821, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4822, + "componentType":5126, + "count":578, + "max":[ + 209.62005615234375, + 214.72119140625, + 182.55419921875 + ], + "min":[ + -209.6181640625, + 6.103515625e-05, + -182.55435180664062 + ], + "type":"VEC3" + }, + { + "bufferView":4823, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":4824, + "componentType":5126, + "count":24, + "max":[ + 35.000003814697266, + 2000, + 35.000003814697266 + ], + "min":[ + -35.000003814697266, + 0, + -35.000003814697266 + ], + "type":"VEC3" + }, + { + "bufferView":4825, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4826, + "componentType":5126, + "count":51, + "max":[ + 123.61328125, + 696.755859375, + 366.152587890625 + ], + "min":[ + -123.615234375, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":4827, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":4828, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":4829, + "componentType":5126, + "count":204, + "max":[ + 656.1495361328125, + 5599.7265625, + 186.63299560546875 + ], + "min":[ + -656.1527099609375, + 0, + -186.63217163085938 + ], + "type":"VEC3" + }, + { + "bufferView":4830, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":4831, + "componentType":5126, + "count":112, + "max":[ + 34.61507797241211, + 1878.334228515625, + 445.77825927734375 + ], + "min":[ + -34.615074157714844, + -0.0001220703125, + -445.7799072265625 + ], + "type":"VEC3" + }, + { + "bufferView":4832, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":4833, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":4834, + "componentType":5123, + "count":168, + "type":"SCALAR" + }, + { + "bufferView":4835, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51428985595703, + 43.590824127197266 + ], + "min":[ + -22.728515625, + 0.00011444091796875, + -43.587406158447266 + ], + "type":"VEC3" + }, + { + "bufferView":4836, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":4837, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":4838, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4839, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4840, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4841, + "componentType":5126, + "count":4978, + "max":[ + 84.5299072265625, + 1089.08251953125, + 84.72052001953125 + ], + "min":[ + -84.52813720703125, + 0, + -84.7215576171875 + ], + "type":"VEC3" + }, + { + "bufferView":4842, + "componentType":5126, + "count":4978, + "type":"VEC3" + }, + { + "bufferView":4843, + "componentType":5126, + "count":4978, + "type":"VEC2" + }, + { + "bufferView":4844, + "componentType":5123, + "count":11976, + "type":"SCALAR" + }, + { + "bufferView":4845, + "componentType":5126, + "count":224, + "max":[ + 115.14126586914062, + 258.98175048828125, + 118.72100830078125 + ], + "min":[ + -115.14119720458984, + 28.69928741455078, + -118.72061157226562 + ], + "type":"VEC3" + }, + { + "bufferView":4846, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":4847, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":4848, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":4849, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4850, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4851, + "componentType":5126, + "count":572, + "max":[ + 199.20542907714844, + 285.5093078613281, + 179.4456787109375 + ], + "min":[ + -206.41366577148438, + 42.17408752441406, + -191.37799072265625 + ], + "type":"VEC3" + }, + { + "bufferView":4852, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":4853, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4854, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4855, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4856, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4857, + "componentType":5126, + "count":580, + "max":[ + 157.88787841796875, + 164.80230712890625, + 143.89532470703125 + ], + "min":[ + -157.89076232910156, + 1.092681884765625, + -131.61459350585938 + ], + "type":"VEC3" + }, + { + "bufferView":4858, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":4859, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4860, + "componentType":5126, + "count":6522, + "max":[ + 128.06063842773438, + 193.06546020507812, + 128.06063842773438 + ], + "min":[ + -128.06063842773438, + -0.0001678466796875, + -128.0606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":4861, + "componentType":5126, + "count":6522, + "type":"VEC3" + }, + { + "bufferView":4862, + "componentType":5126, + "count":6522, + "type":"VEC2" + }, + { + "bufferView":4863, + "componentType":5126, + "count":186, + "max":[ + 769.70947265625, + 113.194580078125, + 56.596923828125 + ], + "min":[ + -769.7080078125, + 0, + -56.597412109375 + ], + "type":"VEC3" + }, + { + "bufferView":4864, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":4865, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":4866, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":4867, + "componentType":5126, + "count":210, + "max":[ + 1342.826171875, + 1646.6240234375, + 7.033203125 + ], + "min":[ + -1342.828125, + 0, + -7.03369140625 + ], + "type":"VEC3" + }, + { + "bufferView":4868, + "componentType":5126, + "count":210, + "type":"VEC3" + }, + { + "bufferView":4869, + "componentType":5126, + "count":210, + "type":"VEC2" + }, + { + "bufferView":4870, + "componentType":5126, + "count":340, + "max":[ + 171.296875, + 184.802001953125, + 176.139404296875 + ], + "min":[ + -171.298828125, + 44.454833984375, + -176.142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":4871, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":4872, + "componentType":5126, + "count":340, + "type":"VEC2" + }, + { + "bufferView":4873, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":4874, + "componentType":5126, + "count":574, + "max":[ + 148.07968139648438, + 154.0355682373047, + 129.2591552734375 + ], + "min":[ + -148.07859802246094, + -9.918212890625e-05, + -129.25901794433594 + ], + "type":"VEC3" + }, + { + "bufferView":4875, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":4876, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4877, + "componentType":5126, + "count":586, + "max":[ + 204.76708984375, + 283.24615478515625, + 189.87631225585938 + ], + "min":[ + -197.55821228027344, + 41.83042907714844, + -177.944091796875 + ], + "type":"VEC3" + }, + { + "bufferView":4878, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":4879, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4880, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4881, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4882, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4883, + "componentType":5126, + "count":24, + "max":[ + 292.4480895996094, + 205.86782836914062, + 292.42657470703125 + ], + "min":[ + -292.4480895996094, + 7.62939453125e-05, + -292.4267578125 + ], + "type":"VEC3" + }, + { + "bufferView":4884, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4885, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4886, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.07373046875 + ], + "type":"VEC3" + }, + { + "bufferView":4887, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":4888, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":4889, + "componentType":5126, + "count":591, + "max":[ + 167.74822998046875, + 202.47500610351562, + 153.44403076171875 + ], + "min":[ + -167.75157165527344, + -0.0001373291015625, + -153.4440460205078 + ], + "type":"VEC3" + }, + { + "bufferView":4890, + "componentType":5126, + "count":591, + "type":"VEC3" + }, + { + "bufferView":4891, + "componentType":5126, + "count":579, + "max":[ + 181.5825653076172, + 261.29150390625, + 163.3769989013672 + ], + "min":[ + -188.78990173339844, + 38.495086669921875, + -175.308349609375 + ], + "type":"VEC3" + }, + { + "bufferView":4892, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":4893, + "componentType":5126, + "count":578, + "max":[ + 155.0883331298828, + 162.0181884765625, + 141.46768188476562 + ], + "min":[ + -155.08447265625, + 1.072662353515625, + -129.1874542236328 + ], + "type":"VEC3" + }, + { + "bufferView":4894, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":4895, + "componentType":5126, + "count":582, + "max":[ + 201.33372497558594, + 32.82526779174805, + 201.33425903320312 + ], + "min":[ + -201.3351287841797, + 9.1552734375e-05, + -201.33462524414062 + ], + "type":"VEC3" + }, + { + "bufferView":4896, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":4897, + "componentType":5126, + "count":582, + "max":[ + 194.26376342773438, + 278.7198486328125, + 174.94082641601562 + ], + "min":[ + -201.4739532470703, + 41.14268493652344, + -186.87286376953125 + ], + "type":"VEC3" + }, + { + "bufferView":4898, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":4899, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4900, + "componentType":5126, + "count":588, + "max":[ + 185.91859436035156, + 192.64437866210938, + 168.16917419433594 + ], + "min":[ + -185.9182586669922, + 1.2948074340820312, + -155.88848876953125 + ], + "type":"VEC3" + }, + { + "bufferView":4901, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":4902, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4903, + "componentType":5126, + "count":1830, + "max":[ + -2441.2734375, + 76.5, + 44032 + ], + "min":[ + -110798.21875, + 0, + -44032 + ], + "type":"VEC3" + }, + { + "bufferView":4904, + "componentType":5126, + "count":1830, + "type":"VEC3" + }, + { + "bufferView":4905, + "componentType":5126, + "count":1830, + "type":"VEC2" + }, + { + "bufferView":4906, + "componentType":5123, + "count":5076, + "type":"SCALAR" + }, + { + "bufferView":4907, + "componentType":5126, + "count":12, + "max":[ + 10.26025390625, + 419.39984130859375, + 443.6835632324219 + ], + "min":[ + -10.26025390625, + 7.62939453125e-05, + -443.6864929199219 + ], + "type":"VEC3" + }, + { + "bufferView":4908, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":4909, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":4910, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4911, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4912, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4913, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4914, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4915, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4916, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4917, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4918, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4919, + "componentType":5126, + "count":574, + "max":[ + 140.92559814453125, + 98.11587524414062, + 146.67767333984375 + ], + "min":[ + -140.923828125, + -0.0002288818359375, + -146.6776885986328 + ], + "type":"VEC3" + }, + { + "bufferView":4920, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":4921, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4922, + "componentType":5126, + "count":206, + "max":[ + 33.40234375, + 133.60888671875, + 66.80517578125 + ], + "min":[ + -33.402099609375, + 0, + -66.80322265625 + ], + "type":"VEC3" + }, + { + "bufferView":4923, + "componentType":5126, + "count":206, + "type":"VEC3" + }, + { + "bufferView":4924, + "componentType":5126, + "count":206, + "type":"VEC2" + }, + { + "bufferView":4925, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":4926, + "componentType":5126, + "count":53, + "max":[ + 366.15283203125, + 696.755859375, + 123.615234375 + ], + "min":[ + -366.15283203125, + 0, + -123.61328125 + ], + "type":"VEC3" + }, + { + "bufferView":4927, + "componentType":5126, + "count":53, + "type":"VEC3" + }, + { + "bufferView":4928, + "componentType":5126, + "count":53, + "type":"VEC2" + }, + { + "bufferView":4929, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":4930, + "componentType":5126, + "count":56, + "max":[ + 238.478515625, + 483.897705078125, + 30.0001220703125 + ], + "min":[ + -238.4794921875, + 0, + -30.0003662109375 + ], + "type":"VEC3" + }, + { + "bufferView":4931, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":4932, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":4933, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":4934, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4935, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4936, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92926025390625, + 384.1406555175781 + ], + "min":[ + -245.232421875, + 4.57763671875e-05, + -384.1396789550781 + ], + "type":"VEC3" + }, + { + "bufferView":4937, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":4938, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":4939, + "componentType":5126, + "count":46, + "max":[ + 161.98095703125, + 658.67578125, + 366.15234375 + ], + "min":[ + -161.97900390625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":4940, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":4941, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":4942, + "componentType":5126, + "count":188, + "max":[ + 769.70947265625, + 113.194580078125, + 56.59716796875 + ], + "min":[ + -769.7080078125, + 0, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":4943, + "componentType":5126, + "count":188, + "type":"VEC3" + }, + { + "bufferView":4944, + "componentType":5126, + "count":188, + "type":"VEC2" + }, + { + "bufferView":4945, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":4946, + "componentType":5126, + "count":238, + "max":[ + 175.0537109375, + 196.214111328125, + 169.1068115234375 + ], + "min":[ + -175.05322265625, + 0, + -169.10693359375 + ], + "type":"VEC3" + }, + { + "bufferView":4947, + "componentType":5126, + "count":238, + "type":"VEC3" + }, + { + "bufferView":4948, + "componentType":5126, + "count":238, + "type":"VEC2" + }, + { + "bufferView":4949, + "componentType":5126, + "count":336, + "max":[ + 131.32907104492188, + 111.1650390625, + 131.32896423339844 + ], + "min":[ + -131.32864379882812, + 0, + -131.3287353515625 + ], + "type":"VEC3" + }, + { + "bufferView":4950, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":4951, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":4952, + "componentType":5126, + "count":576, + "max":[ + 171.90518188476562, + 178.72332763671875, + 156.03204345703125 + ], + "min":[ + -171.9025421142578, + 1.1937255859375, + -143.7517547607422 + ], + "type":"VEC3" + }, + { + "bufferView":4953, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":4954, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4955, + "componentType":5126, + "count":559, + "max":[ + 722.72265625, + 2637.3974609375, + 19.80296516418457 + ], + "min":[ + -722.720703125, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":4956, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":4957, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":4958, + "componentType":5123, + "count":864, + "type":"SCALAR" + }, + { + "bufferView":4959, + "componentType":5126, + "count":168, + "max":[ + 29.924560546875, + 1132.8153076171875, + 29.9249267578125 + ], + "min":[ + -29.92431640625, + 0, + -29.9241943359375 + ], + "type":"VEC3" + }, + { + "bufferView":4960, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":4961, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":4962, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":4963, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":4964, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":4965, + "componentType":5126, + "count":120, + "max":[ + 2752.00341796875, + 2819.531005859375, + 2516.53955078125 + ], + "min":[ + -2752.001953125, + -0.0001220703125, + -2516.5419921875 + ], + "type":"VEC3" + }, + { + "bufferView":4966, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":4967, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":4968, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":4969, + "componentType":5126, + "count":584, + "max":[ + 180.31166076660156, + 185.82171630859375, + 157.174072265625 + ], + "min":[ + -180.3135223388672, + 0.0001678466796875, + -157.17410278320312 + ], + "type":"VEC3" + }, + { + "bufferView":4970, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":4971, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4972, + "componentType":5126, + "count":865, + "max":[ + 7.779110908508301, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778773307800293, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":4973, + "componentType":5126, + "count":865, + "type":"VEC3" + }, + { + "bufferView":4974, + "componentType":5126, + "count":865, + "type":"VEC2" + }, + { + "bufferView":4975, + "componentType":5126, + "count":750, + "max":[ + 136.75340270996094, + 217.14334106445312, + 129.45623779296875 + ], + "min":[ + -136.81773376464844, + 27.222068786621094, + -129.56021118164062 + ], + "type":"VEC3" + }, + { + "bufferView":4976, + "componentType":5126, + "count":750, + "type":"VEC3" + }, + { + "bufferView":4977, + "componentType":5126, + "count":586, + "max":[ + 155.08447265625, + 32.8253059387207, + 155.0863800048828 + ], + "min":[ + -155.0883331298828, + -7.2479248046875e-05, + -155.08645629882812 + ], + "type":"VEC3" + }, + { + "bufferView":4978, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":4979, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":4980, + "componentType":5126, + "count":204, + "max":[ + 2702.69140625, + 2451.67333984375, + 175.64503479003906 + ], + "min":[ + -2702.69287109375, + 0, + -175.64422607421875 + ], + "type":"VEC3" + }, + { + "bufferView":4981, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":4982, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28369140625 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":4983, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":4984, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":4985, + "componentType":5126, + "count":344, + "max":[ + 170.435546875, + 188.5546875, + 176.20361328125 + ], + "min":[ + -170.43359375, + 45.296875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":4986, + "componentType":5126, + "count":344, + "type":"VEC3" + }, + { + "bufferView":4987, + "componentType":5126, + "count":344, + "type":"VEC2" + }, + { + "bufferView":4988, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":4989, + "componentType":5126, + "count":811, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45703887939453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":4990, + "componentType":5126, + "count":811, + "type":"VEC3" + }, + { + "bufferView":4991, + "componentType":5126, + "count":811, + "type":"VEC2" + }, + { + "bufferView":4992, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":4993, + "componentType":5126, + "count":8300, + "max":[ + 496.3330078125, + 427.0244140625, + 103.7861328125 + ], + "min":[ + -496.3359375, + -0.0009765625, + -103.78759765625 + ], + "type":"VEC3" + }, + { + "bufferView":4994, + "componentType":5126, + "count":8300, + "type":"VEC3" + }, + { + "bufferView":4995, + "componentType":5126, + "count":8300, + "type":"VEC2" + }, + { + "bufferView":4996, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":4997, + "componentType":5126, + "count":224, + "max":[ + 115.14118194580078, + 230.28256225585938, + 118.72101593017578 + ], + "min":[ + -115.1412582397461, + 8.392333984375e-05, + -118.72062683105469 + ], + "type":"VEC3" + }, + { + "bufferView":4998, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":4999, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5000, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5001, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5002, + "componentType":5126, + "count":648, + "max":[ + 615.009765625, + 2510.925048828125, + 347.26708984375 + ], + "min":[ + -615.01171875, + 0, + -347.265625 + ], + "type":"VEC3" + }, + { + "bufferView":5003, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":5004, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":5005, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5006, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5007, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5008, + "componentType":5126, + "count":142, + "max":[ + 9.472749710083008, + 18.945335388183594, + 3.451724052429199 + ], + "min":[ + -9.472704887390137, + -0.00011920928955078125, + -3.4518513679504395 + ], + "type":"VEC3" + }, + { + "bufferView":5009, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":5010, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":5011, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5012, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5013, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5014, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.07330322265625 + ], + "min":[ + -27.193359375, + 0, + -126.07342529296875 + ], + "type":"VEC3" + }, + { + "bufferView":5015, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5016, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5017, + "componentType":5126, + "count":596, + "max":[ + 175.79734802246094, + 114.73617553710938, + 183.1154022216797 + ], + "min":[ + -175.79750061035156, + 6.103515625e-05, + -183.11566162109375 + ], + "type":"VEC3" + }, + { + "bufferView":5018, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":5019, + "componentType":5126, + "count":92, + "max":[ + 69.570068359375, + 141.0703125, + 824.2412109375 + ], + "min":[ + -69.5697021484375, + 0, + -824.24072265625 + ], + "type":"VEC3" + }, + { + "bufferView":5020, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":5021, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":5022, + "componentType":5126, + "count":88, + "max":[ + 50.1396484375, + 105.89306640625, + 891.34228515625 + ], + "min":[ + -50.139892578125, + 0, + -891.34228515625 + ], + "type":"VEC3" + }, + { + "bufferView":5023, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":5024, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":5025, + "componentType":5126, + "count":582, + "max":[ + 195.9110107421875, + 280.98291015625, + 176.44248962402344 + ], + "min":[ + -203.12054443359375, + 41.48637390136719, + -188.3745880126953 + ], + "type":"VEC3" + }, + { + "bufferView":5026, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":5027, + "componentType":5126, + "count":113, + "max":[ + 86.3843994140625, + 4362.8408203125, + 86.38427734375 + ], + "min":[ + -86.3843994140625, + -0.0001220703125, + -86.38427734375 + ], + "type":"VEC3" + }, + { + "bufferView":5028, + "componentType":5126, + "count":113, + "type":"VEC3" + }, + { + "bufferView":5029, + "componentType":5126, + "count":113, + "type":"VEC2" + }, + { + "bufferView":5030, + "componentType":5126, + "count":204, + "max":[ + 491.284912109375, + 2458.32470703125, + 168.4849395751953 + ], + "min":[ + -491.28839111328125, + 0, + -168.48428344726562 + ], + "type":"VEC3" + }, + { + "bufferView":5031, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":5032, + "componentType":5126, + "count":810, + "max":[ + 4.1318359375, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":5033, + "componentType":5126, + "count":810, + "type":"VEC3" + }, + { + "bufferView":5034, + "componentType":5126, + "count":810, + "type":"VEC2" + }, + { + "bufferView":5035, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":5036, + "componentType":5126, + "count":24, + "max":[ + 27.19384765625, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":5037, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5038, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5039, + "componentType":5126, + "count":488, + "max":[ + 879.658203125, + 587.032958984375, + 879.6592407226562 + ], + "min":[ + -879.66015625, + -3.0517578125e-05, + -879.6607055664062 + ], + "type":"VEC3" + }, + { + "bufferView":5040, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":5041, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":5042, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5043, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5044, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5045, + "componentType":5126, + "count":618, + "max":[ + 56.700767517089844, + 172.07469177246094, + 23.86005401611328 + ], + "min":[ + -56.70082092285156, + 7.62939453125e-05, + -23.860050201416016 + ], + "type":"VEC3" + }, + { + "bufferView":5046, + "componentType":5126, + "count":618, + "type":"VEC3" + }, + { + "bufferView":5047, + "componentType":5126, + "count":618, + "type":"VEC2" + }, + { + "bufferView":5048, + "componentType":5126, + "count":336, + "max":[ + 13.560531616210938, + 272.65911865234375, + 115.08649444580078 + ], + "min":[ + -13.560844421386719, + 42.486297607421875, + -115.08638000488281 + ], + "type":"VEC3" + }, + { + "bufferView":5049, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":5050, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7293758392334 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":5051, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":5052, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":5053, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":5054, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5055, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5056, + "componentType":5126, + "count":914, + "max":[ + 879.66015625, + 587.0330810546875, + 879.6592407226562 + ], + "min":[ + -879.658203125, + 9.1552734375e-05, + -879.6607055664062 + ], + "type":"VEC3" + }, + { + "bufferView":5057, + "componentType":5126, + "count":914, + "type":"VEC3" + }, + { + "bufferView":5058, + "componentType":5126, + "count":914, + "type":"VEC2" + }, + { + "bufferView":5059, + "componentType":5123, + "count":1440, + "type":"SCALAR" + }, + { + "bufferView":5060, + "componentType":5126, + "count":24, + "max":[ + 27.1982421875, + 130.123046875, + 126.07275390625 + ], + "min":[ + -27.189453125, + 0, + -126.07421875 + ], + "type":"VEC3" + }, + { + "bufferView":5061, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5062, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5063, + "componentType":5126, + "count":1392, + "max":[ + 12.50003719329834, + 362.87994384765625, + 512.4300537109375 + ], + "min":[ + -12.500016212463379, + -1.2874603271484375e-05, + -512.4300537109375 + ], + "type":"VEC3" + }, + { + "bufferView":5064, + "componentType":5126, + "count":1392, + "type":"VEC3" + }, + { + "bufferView":5065, + "componentType":5123, + "count":3912, + "type":"SCALAR" + }, + { + "bufferView":5066, + "componentType":5126, + "count":141, + "max":[ + 437.3779296875, + 12069.287109375, + 19.6142578125 + ], + "min":[ + -437.378173828125, + 0.00048828125, + -19.6142578125 + ], + "type":"VEC3" + }, + { + "bufferView":5067, + "componentType":5126, + "count":141, + "type":"VEC3" + }, + { + "bufferView":5068, + "componentType":5126, + "count":141, + "type":"VEC2" + }, + { + "bufferView":5069, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":5070, + "componentType":5126, + "count":573, + "max":[ + 177.55799865722656, + 255.76210021972656, + 159.70814514160156 + ], + "min":[ + -184.7669677734375, + 37.65521240234375, + -171.6393280029297 + ], + "type":"VEC3" + }, + { + "bufferView":5071, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":5072, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5073, + "componentType":5126, + "count":56, + "max":[ + 30.0029296875, + 483.89794921875, + 238.48046875 + ], + "min":[ + -29.998046875, + 0, + -238.4775390625 + ], + "type":"VEC3" + }, + { + "bufferView":5074, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":5075, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":5076, + "componentType":5126, + "count":24, + "max":[ + 35.000003814697266, + 2000, + 35.000003814697266 + ], + "min":[ + -35.000003814697266, + 0, + -35.000003814697266 + ], + "type":"VEC3" + }, + { + "bufferView":5077, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5078, + "componentType":5126, + "count":597, + "max":[ + 150.3123321533203, + 182.15432739257812, + 137.5451202392578 + ], + "min":[ + -150.3146514892578, + 0.0001373291015625, + -137.54542541503906 + ], + "type":"VEC3" + }, + { + "bufferView":5079, + "componentType":5126, + "count":597, + "type":"VEC3" + }, + { + "bufferView":5080, + "componentType":5126, + "count":48, + "max":[ + 289.0126037597656, + 233.9413299560547, + 11.697039604187012 + ], + "min":[ + -289.01556396484375, + -1.52587890625e-05, + -11.697131156921387 + ], + "type":"VEC3" + }, + { + "bufferView":5081, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":5082, + "componentType":5126, + "count":1420, + "max":[ + 244.466796875, + 367.92926025390625, + 384.58251953125 + ], + "min":[ + -244.46875, + 0, + -384.5790710449219 + ], + "type":"VEC3" + }, + { + "bufferView":5083, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":5084, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":5085, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":5086, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":5087, + "componentType":5126, + "count":591, + "max":[ + 156.09751892089844, + 226.27139282226562, + 140.14010620117188 + ], + "min":[ + -163.30712890625, + 33.175025939941406, + -152.07205200195312 + ], + "type":"VEC3" + }, + { + "bufferView":5088, + "componentType":5126, + "count":591, + "type":"VEC3" + }, + { + "bufferView":5089, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":5090, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":5091, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":5092, + "componentType":5126, + "count":24, + "max":[ + 65.33245849609375, + 83.343017578125, + 789.6705932617188 + ], + "min":[ + -65.3310546875, + 0, + -789.6720581054688 + ], + "type":"VEC3" + }, + { + "bufferView":5093, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5094, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5095, + "componentType":5126, + "count":140, + "max":[ + 57.79658889770508, + 61.74175262451172, + 45.56761932373047 + ], + "min":[ + -57.79658889770508, + 6.4849853515625e-05, + -45.56759262084961 + ], + "type":"VEC3" + }, + { + "bufferView":5096, + "componentType":5126, + "count":140, + "type":"VEC3" + }, + { + "bufferView":5097, + "componentType":5126, + "count":140, + "type":"VEC2" + }, + { + "bufferView":5098, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":5099, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5100, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5101, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5102, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5103, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5104, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5105, + "componentType":5126, + "count":96, + "max":[ + 212.81607055664062, + 929.9830932617188, + 1136.57421875 + ], + "min":[ + -212.81607055664062, + -3.0517578125e-05, + -1136.5745849609375 + ], + "type":"VEC3" + }, + { + "bufferView":5106, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":5107, + "componentType":5123, + "count":132, + "type":"SCALAR" + }, + { + "bufferView":5108, + "componentType":5126, + "count":228, + "max":[ + 105.79638671875, + 2059.5048828125, + 105.7998046875 + ], + "min":[ + -105.798828125, + 0, + -105.798828125 + ], + "type":"VEC3" + }, + { + "bufferView":5109, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":5110, + "componentType":5126, + "count":228, + "type":"VEC2" + }, + { + "bufferView":5111, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5112, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5113, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5114, + "componentType":5126, + "count":586, + "max":[ + 176.10647583007812, + 181.67581176757812, + 153.53298950195312 + ], + "min":[ + -176.10997009277344, + 0.00022125244140625, + -153.53302001953125 + ], + "type":"VEC3" + }, + { + "bufferView":5115, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":5116, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5117, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5118, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5119, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5120, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + 0.000118255615234375, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":5121, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":5122, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":5123, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 463.990234375 + ], + "min":[ + -110.0000228881836, + 0, + -463.990234375 + ], + "type":"VEC3" + }, + { + "bufferView":5124, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5125, + "componentType":5126, + "count":328, + "max":[ + 170.9052734375, + 157.004638671875, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.2890625, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":5126, + "componentType":5126, + "count":328, + "type":"VEC3" + }, + { + "bufferView":5127, + "componentType":5126, + "count":328, + "type":"VEC2" + }, + { + "bufferView":5128, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":5129, + "componentType":5126, + "count":582, + "max":[ + 773.8193359375, + 1124.222900390625, + 31.93008041381836 + ], + "min":[ + -773.8193359375, + 0, + -31.93349838256836 + ], + "type":"VEC3" + }, + { + "bufferView":5130, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":5131, + "componentType":5126, + "count":582, + "type":"VEC2" + }, + { + "bufferView":5132, + "componentType":5123, + "count":582, + "type":"SCALAR" + }, + { + "bufferView":5133, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51428985595703, + 43.588871002197266 + ], + "min":[ + -22.7265625, + 0.00011444091796875, + -43.589359283447266 + ], + "type":"VEC3" + }, + { + "bufferView":5134, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":5135, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":5136, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5137, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5138, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5139, + "componentType":5126, + "count":60, + "max":[ + 3.787522315979004, + 14.031469345092773, + 5.548464298248291 + ], + "min":[ + -3.7875449657440186, + -3.2901763916015625e-05, + -5.548455715179443 + ], + "type":"VEC3" + }, + { + "bufferView":5140, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":5141, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":5142, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.14453125, + 360.898193359375 + ], + "min":[ + -8.345703125, + 0.000244140625, + -360.896484375 + ], + "type":"VEC3" + }, + { + "bufferView":5143, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":5144, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":5145, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76708984375, + 78.5859375 + ], + "min":[ + -46.2822265625, + 0, + -78.58447265625 + ], + "type":"VEC3" + }, + { + "bufferView":5146, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5147, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5148, + "componentType":5126, + "count":582, + "max":[ + 194.26376342773438, + 278.7198486328125, + 174.94082641601562 + ], + "min":[ + -201.4739532470703, + 41.14268493652344, + -186.87286376953125 + ], + "type":"VEC3" + }, + { + "bufferView":5149, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":5150, + "componentType":5126, + "count":136, + "max":[ + 239.7059326171875, + 131.9609375, + 242.8525390625 + ], + "min":[ + -239.7059326171875, + 0, + -242.8515625 + ], + "type":"VEC3" + }, + { + "bufferView":5151, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":5152, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":5153, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5154, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5155, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5156, + "componentType":5126, + "count":580, + "max":[ + 209.6181640625, + 216.1865234375, + 176.41357421875 + ], + "min":[ + -209.62005615234375, + 1.46539306640625, + -188.69497680664062 + ], + "type":"VEC3" + }, + { + "bufferView":5157, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":5158, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5159, + "componentType":5126, + "count":24, + "max":[ + 35.000003814697266, + 2000, + 35.000003814697266 + ], + "min":[ + -35.000003814697266, + 0, + -35.000003814697266 + ], + "type":"VEC3" + }, + { + "bufferView":5160, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5161, + "componentType":5126, + "count":48, + "max":[ + 127.44287109375, + 625.6328125, + 391.73681640625 + ], + "min":[ + -127.4443359375, + 0, + -391.738525390625 + ], + "type":"VEC3" + }, + { + "bufferView":5162, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":5163, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":5164, + "componentType":5126, + "count":24, + "max":[ + 2144.98828125, + 78.5, + 6719.9541015625 + ], + "min":[ + -2144.98828125, + 0, + -6719.9541015625 + ], + "type":"VEC3" + }, + { + "bufferView":5165, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5166, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5167, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51416778564453, + 43.590824127197266 + ], + "min":[ + -22.728515625, + -7.62939453125e-06, + -43.587406158447266 + ], + "type":"VEC3" + }, + { + "bufferView":5168, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":5169, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":5170, + "componentType":5123, + "count":276, + "type":"SCALAR" + }, + { + "bufferView":5171, + "componentType":5126, + "count":106, + "max":[ + 27.31396484375, + 1876.474365234375, + 413.562255859375 + ], + "min":[ + -27.314453125, + -0.00054931640625, + -413.56005859375 + ], + "type":"VEC3" + }, + { + "bufferView":5172, + "componentType":5126, + "count":106, + "type":"VEC3" + }, + { + "bufferView":5173, + "componentType":5126, + "count":106, + "type":"VEC2" + }, + { + "bufferView":5174, + "componentType":5126, + "count":350, + "max":[ + 170.435546875, + 188.5556640625, + 176.20361328125 + ], + "min":[ + -170.43359375, + 45.2958984375, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":5175, + "componentType":5126, + "count":350, + "type":"VEC3" + }, + { + "bufferView":5176, + "componentType":5126, + "count":350, + "type":"VEC2" + }, + { + "bufferView":5177, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":5178, + "componentType":5126, + "count":573, + "max":[ + 160.1221160888672, + 231.80075073242188, + 143.80897521972656 + ], + "min":[ + -167.3301239013672, + 34.01490020751953, + -155.74111938476562 + ], + "type":"VEC3" + }, + { + "bufferView":5179, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":5180, + "componentType":5126, + "count":6340, + "max":[ + 77.57806396484375, + 733.191650390625, + 309.2935791015625 + ], + "min":[ + -77.58001708984375, + 0.000244140625, + -309.2938232421875 + ], + "type":"VEC3" + }, + { + "bufferView":5181, + "componentType":5126, + "count":6340, + "type":"VEC3" + }, + { + "bufferView":5182, + "componentType":5126, + "count":6340, + "type":"VEC2" + }, + { + "bufferView":5183, + "componentType":5123, + "count":12336, + "type":"SCALAR" + }, + { + "bufferView":5184, + "componentType":5126, + "count":6314, + "max":[ + 77.5799560546875, + 733.191650390625, + 309.2935791015625 + ], + "min":[ + -77.578125, + 0.000244140625, + -309.2938232421875 + ], + "type":"VEC3" + }, + { + "bufferView":5185, + "componentType":5126, + "count":6314, + "type":"VEC3" + }, + { + "bufferView":5186, + "componentType":5126, + "count":6314, + "type":"VEC2" + }, + { + "bufferView":5187, + "componentType":5123, + "count":12336, + "type":"SCALAR" + }, + { + "bufferView":5188, + "componentType":5126, + "count":580, + "max":[ + 193.23435974121094, + 232.1754150390625, + 176.680419921875 + ], + "min":[ + -193.2332305908203, + 0.0001068115234375, + -176.68057250976562 + ], + "type":"VEC3" + }, + { + "bufferView":5189, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":5190, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5191, + "componentType":5126, + "count":344, + "max":[ + 139.86773681640625, + 180.593994140625, + 131.32896423339844 + ], + "min":[ + -139.86639404296875, + 1.94921875, + -131.3287353515625 + ], + "type":"VEC3" + }, + { + "bufferView":5192, + "componentType":5126, + "count":344, + "type":"VEC3" + }, + { + "bufferView":5193, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":5194, + "componentType":5126, + "count":24, + "max":[ + 253.74386596679688, + 50, + 584.666015625 + ], + "min":[ + -253.7422637939453, + -8.255030479631387e-06, + -584.6621704101562 + ], + "type":"VEC3" + }, + { + "bufferView":5195, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5196, + "componentType":5126, + "count":234, + "max":[ + 91.49453735351562, + 2267.8251953125, + 91.49462127685547 + ], + "min":[ + -91.49444580078125, + 9.918212890625e-05, + -91.49432373046875 + ], + "type":"VEC3" + }, + { + "bufferView":5197, + "componentType":5126, + "count":234, + "type":"VEC3" + }, + { + "bufferView":5198, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5199, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5200, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5201, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":5202, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5203, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5204, + "componentType":5126, + "count":240, + "max":[ + 172.5966796875, + 185.23486328125, + 169.070556640625 + ], + "min":[ + -172.59716796875, + -0.00048828125, + -169.070556640625 + ], + "type":"VEC3" + }, + { + "bufferView":5205, + "componentType":5126, + "count":240, + "type":"VEC3" + }, + { + "bufferView":5206, + "componentType":5126, + "count":240, + "type":"VEC2" + }, + { + "bufferView":5207, + "componentType":5126, + "count":648, + "max":[ + 615.0107421875, + 2510.925048828125, + 347.265869140625 + ], + "min":[ + -615.01025390625, + 0, + -347.266357421875 + ], + "type":"VEC3" + }, + { + "bufferView":5208, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":5209, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":5210, + "componentType":5126, + "count":202, + "max":[ + 322.19677734375, + 464.7861328125, + 22.96337890625 + ], + "min":[ + -322.1982421875, + 0, + -22.96337890625 + ], + "type":"VEC3" + }, + { + "bufferView":5211, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":5212, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":5213, + "componentType":5123, + "count":348, + "type":"SCALAR" + }, + { + "bufferView":5214, + "componentType":5126, + "count":210, + "max":[ + 1342.826171875, + 1646.6240234375, + 7.0322265625 + ], + "min":[ + -1342.828125, + 0, + -7.03466796875 + ], + "type":"VEC3" + }, + { + "bufferView":5215, + "componentType":5126, + "count":210, + "type":"VEC3" + }, + { + "bufferView":5216, + "componentType":5126, + "count":210, + "type":"VEC2" + }, + { + "bufferView":5217, + "componentType":5126, + "count":556, + "max":[ + 187.32032775878906, + 192.731689453125, + 163.24252319335938 + ], + "min":[ + -187.31944274902344, + 0.000152587890625, + -163.2425994873047 + ], + "type":"VEC3" + }, + { + "bufferView":5218, + "componentType":5126, + "count":556, + "type":"VEC3" + }, + { + "bufferView":5219, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":5220, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":5221, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":5222, + "componentType":5126, + "count":574, + "max":[ + 146.67794799804688, + 152.65367126464844, + 128.0454559326172 + ], + "min":[ + -146.6774139404297, + 0.0001068115234375, + -128.04537963867188 + ], + "type":"VEC3" + }, + { + "bufferView":5223, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":5224, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5225, + "componentType":5126, + "count":582, + "max":[ + 203.12054443359375, + 280.98284912109375, + 188.3745880126953 + ], + "min":[ + -195.91099548339844, + 41.4864501953125, + -176.4425048828125 + ], + "type":"VEC3" + }, + { + "bufferView":5226, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":5227, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5228, + "componentType":5126, + "count":570, + "max":[ + 211.34117126464844, + 32.82524871826172, + 211.3397216796875 + ], + "min":[ + -211.33865356445312, + 0.00011444091796875, + -211.3401336669922 + ], + "type":"VEC3" + }, + { + "bufferView":5229, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":5230, + "componentType":5126, + "count":24, + "max":[ + 110.00023651123047, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534163448028266, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":5231, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5232, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5233, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5234, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5235, + "componentType":5126, + "count":232, + "max":[ + 91.49449157714844, + 2020.37548828125, + 589.9327392578125 + ], + "min":[ + -91.49444580078125, + 3.0517578125e-05, + -646.193115234375 + ], + "type":"VEC3" + }, + { + "bufferView":5236, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":5237, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":5238, + "componentType":5126, + "count":574, + "max":[ + 180.24105834960938, + 259.448486328125, + 162.15408325195312 + ], + "min":[ + -187.44894409179688, + 38.21537780761719, + -174.0853271484375 + ], + "type":"VEC3" + }, + { + "bufferView":5239, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":5240, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5241, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5242, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5243, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":5244, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5245, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5246, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5247, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5248, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5249, + "componentType":5126, + "count":564, + "max":[ + 204.45657348632812, + 32.82526779174805, + 204.45651245117188 + ], + "min":[ + -204.45677185058594, + 0.0001068115234375, + -204.45687866210938 + ], + "type":"VEC3" + }, + { + "bufferView":5250, + "componentType":5126, + "count":564, + "type":"VEC3" + }, + { + "bufferView":5251, + "componentType":5126, + "count":578, + "max":[ + 166.2982635498047, + 173.15460205078125, + 151.17727661132812 + ], + "min":[ + -166.29783630371094, + 1.1530075073242188, + -138.89698791503906 + ], + "type":"VEC3" + }, + { + "bufferView":5252, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":5253, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5254, + "componentType":5126, + "count":54, + "max":[ + 366.1533203125, + 696.755859375, + 123.615234375 + ], + "min":[ + -366.15234375, + 0, + -123.61328125 + ], + "type":"VEC3" + }, + { + "bufferView":5255, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":5256, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":5257, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":5258, + "componentType":5126, + "count":56, + "max":[ + 217.04052734375, + 520.125244140625, + 29.7979736328125 + ], + "min":[ + -217.04150390625, + 0.000244140625, + -29.799072265625 + ], + "type":"VEC3" + }, + { + "bufferView":5259, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":5260, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":5261, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":5262, + "componentType":5126, + "count":578, + "max":[ + 209.62005615234375, + 214.72119140625, + 182.55419921875 + ], + "min":[ + -209.6181640625, + 6.103515625e-05, + -182.55435180664062 + ], + "type":"VEC3" + }, + { + "bufferView":5263, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":5264, + "componentType":5126, + "count":384, + "max":[ + 1069.84375, + 58.48869323730469, + 5200.28271484375 + ], + "min":[ + -1069.8447265625, + 6.67572021484375e-05, + -5200.28515625 + ], + "type":"VEC3" + }, + { + "bufferView":5265, + "componentType":5126, + "count":384, + "type":"VEC3" + }, + { + "bufferView":5266, + "componentType":5126, + "count":384, + "type":"VEC2" + }, + { + "bufferView":5267, + "componentType":5126, + "count":24, + "max":[ + 13.692138671875, + 40.78076171875, + 2279.095947265625 + ], + "min":[ + -13.692626953125, + 0, + -2279.09521484375 + ], + "type":"VEC3" + }, + { + "bufferView":5268, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5269, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5270, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92926025390625, + 384.5810852050781 + ], + "min":[ + -244.466796875, + 4.57763671875e-05, + -384.5781555175781 + ], + "type":"VEC3" + }, + { + "bufferView":5271, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":5272, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":5273, + "componentType":5126, + "count":238, + "max":[ + 91.49446105957031, + 2020.3758544921875, + 618.0626220703125 + ], + "min":[ + -91.49473571777344, + 1.52587890625e-05, + -618.0628051757812 + ], + "type":"VEC3" + }, + { + "bufferView":5274, + "componentType":5126, + "count":238, + "type":"VEC3" + }, + { + "bufferView":5275, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":5276, + "componentType":5126, + "count":125, + "max":[ + 3.8606996536254883, + 15.442764282226562, + 7.721350193023682 + ], + "min":[ + -3.860643148422241, + 8.249282836914062e-05, + -7.721330165863037 + ], + "type":"VEC3" + }, + { + "bufferView":5277, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":5278, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":5279, + "componentType":5126, + "count":50, + "max":[ + 142.32080078125, + 608.220703125, + 391.73583984375 + ], + "min":[ + -142.32177734375, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":5280, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":5281, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":5282, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":5283, + "componentType":5126, + "count":16, + "max":[ + 2718.68896484375, + 1203, + 7129.9921875 + ], + "min":[ + -2718.68896484375, + 0, + -7129.9931640625 + ], + "type":"VEC3" + }, + { + "bufferView":5284, + "componentType":5126, + "count":16, + "type":"VEC3" + }, + { + "bufferView":5285, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":5286, + "componentType":5123, + "count":24, + "type":"SCALAR" + }, + { + "bufferView":5287, + "componentType":5126, + "count":560, + "max":[ + 192.92724609375, + 198.25942993164062, + 168.09732055664062 + ], + "min":[ + -192.9241180419922, + -0.0001068115234375, + -168.09739685058594 + ], + "type":"VEC3" + }, + { + "bufferView":5288, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":5289, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5290, + "componentType":5126, + "count":559, + "max":[ + 722.72265625, + 2637.3974609375, + 19.80308723449707 + ], + "min":[ + -722.720703125, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":5291, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":5292, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":5293, + "componentType":5126, + "count":1420, + "max":[ + 433.119140625, + 367.929443359375, + 90.004150390625 + ], + "min":[ + -433.12109375, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":5294, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":5295, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":5296, + "componentType":5126, + "count":204, + "max":[ + 41.33154296875, + 82.662109375, + 2288.800537109375 + ], + "min":[ + -41.33154296875, + 0.00048828125, + -2288.800048828125 + ], + "type":"VEC3" + }, + { + "bufferView":5297, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":5298, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":5299, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":5300, + "componentType":5126, + "count":122, + "max":[ + 228.90673828125, + 55.46875, + 27.736328125 + ], + "min":[ + -228.909423828125, + 0, + -27.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":5301, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":5302, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":5303, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":5304, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5305, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5306, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5307, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5308, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5309, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92938232421875, + 384.578857421875 + ], + "min":[ + -244.466796875, + 6.103515625e-05, + -384.5805358886719 + ], + "type":"VEC3" + }, + { + "bufferView":5310, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":5311, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":5312, + "componentType":5126, + "count":548, + "max":[ + 7.779083728790283, + 21.312030792236328, + 10.655908584594727 + ], + "min":[ + -7.778790473937988, + 0.00021648406982421875, + -10.65590763092041 + ], + "type":"VEC3" + }, + { + "bufferView":5313, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":5314, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":5315, + "componentType":5126, + "count":450, + "max":[ + 194.18663024902344, + 132.90142822265625, + 194.18666076660156 + ], + "min":[ + -194.18663024902344, + 0, + -194.1867218017578 + ], + "type":"VEC3" + }, + { + "bufferView":5316, + "componentType":5126, + "count":450, + "type":"VEC3" + }, + { + "bufferView":5317, + "componentType":5123, + "count":828, + "type":"SCALAR" + }, + { + "bufferView":5318, + "componentType":5126, + "count":594, + "max":[ + 181.71339416503906, + 187.2035675048828, + 158.3877716064453 + ], + "min":[ + -181.71473693847656, + -2.288818359375e-05, + -158.3878173828125 + ], + "type":"VEC3" + }, + { + "bufferView":5319, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":5320, + "componentType":5126, + "count":204, + "max":[ + 3006.522705078125, + 6025.6748046875, + 328.9077453613281 + ], + "min":[ + -3006.52197265625, + 0, + -328.9068298339844 + ], + "type":"VEC3" + }, + { + "bufferView":5321, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":5322, + "componentType":5123, + "count":1068, + "type":"SCALAR" + }, + { + "bufferView":5323, + "componentType":5126, + "count":573, + "max":[ + 160.1221160888672, + 231.80075073242188, + 143.80897521972656 + ], + "min":[ + -167.3301239013672, + 34.01490020751953, + -155.74111938476562 + ], + "type":"VEC3" + }, + { + "bufferView":5324, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":5325, + "componentType":5126, + "count":548, + "max":[ + 7.779083728790283, + 21.312030792236328, + 10.655908584594727 + ], + "min":[ + -7.778790473937988, + 0.00021648406982421875, + -10.65590763092041 + ], + "type":"VEC3" + }, + { + "bufferView":5326, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":5327, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":5328, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5329, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5330, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5331, + "componentType":5126, + "count":340, + "max":[ + 139.86639404296875, + 178.644775390625, + 131.32904052734375 + ], + "min":[ + -139.86773681640625, + 0, + -131.3286590576172 + ], + "type":"VEC3" + }, + { + "bufferView":5332, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":5333, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":5334, + "componentType":5126, + "count":320, + "max":[ + 166.0859375, + 1147.822998046875, + 111.53135681152344 + ], + "min":[ + -166.08595275878906, + -6.103515625e-05, + -111.5313491821289 + ], + "type":"VEC3" + }, + { + "bufferView":5335, + "componentType":5126, + "count":320, + "type":"VEC3" + }, + { + "bufferView":5336, + "componentType":5126, + "count":320, + "type":"VEC2" + }, + { + "bufferView":5337, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58544921875 + ], + "min":[ + -46.2841796875, + 0, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":5338, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5339, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5340, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5341, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5342, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5343, + "componentType":5126, + "count":60, + "max":[ + 6.472907543182373, + 13.693549156188965, + 3.787405252456665 + ], + "min":[ + -6.47286319732666, + -2.956390380859375e-05, + -3.787665605545044 + ], + "type":"VEC3" + }, + { + "bufferView":5344, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":5345, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":5346, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.5859375 + ], + "min":[ + -46.2841796875, + 0, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":5347, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5348, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5349, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.0733642578125 + ], + "min":[ + -27.193359375, + 0, + -126.07333374023438 + ], + "type":"VEC3" + }, + { + "bufferView":5350, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5351, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5352, + "componentType":5126, + "count":595, + "max":[ + 174.45584106445312, + 114.09710693359375, + 181.7139434814453 + ], + "min":[ + -174.45654296875, + 0.00016021728515625, + -181.71420288085938 + ], + "type":"VEC3" + }, + { + "bufferView":5353, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":5354, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5355, + "componentType":5126, + "count":24, + "max":[ + 88.34375, + 276.109375, + 83.760986328125 + ], + "min":[ + -88.3438720703125, + 0, + -83.761474609375 + ], + "type":"VEC3" + }, + { + "bufferView":5356, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5357, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5358, + "componentType":5126, + "count":112, + "max":[ + 101.75885009765625, + 150.65576171875, + 75.327880859375 + ], + "min":[ + -101.759033203125, + 0, + -75.32763671875 + ], + "type":"VEC3" + }, + { + "bufferView":5359, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":5360, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":5361, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":5362, + "componentType":5126, + "count":682, + "max":[ + 134.314453125, + 2974.83349609375, + 130.719482421875 + ], + "min":[ + -134.31640625, + 0, + -130.72291564941406 + ], + "type":"VEC3" + }, + { + "bufferView":5363, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":5364, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":5365, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5366, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5367, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5368, + "componentType":5126, + "count":342, + "max":[ + 115.3511962890625, + 230.70248413085938, + 13.560707092285156 + ], + "min":[ + -115.35124969482422, + -3.0517578125e-05, + -13.560760498046875 + ], + "type":"VEC3" + }, + { + "bufferView":5369, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":5370, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":5371, + "componentType":5126, + "count":127, + "max":[ + 40.60498046875, + 81.2109375, + 5725.87646484375 + ], + "min":[ + -40.60546875, + 0, + -5725.875 + ], + "type":"VEC3" + }, + { + "bufferView":5372, + "componentType":5126, + "count":127, + "type":"VEC3" + }, + { + "bufferView":5373, + "componentType":5126, + "count":127, + "type":"VEC2" + }, + { + "bufferView":5374, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5375, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5376, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5377, + "componentType":5126, + "count":164, + "max":[ + 520.6484375, + 14332.2607421875, + 66.3216552734375 + ], + "min":[ + -520.650634765625, + 0.00096893310546875, + -66.3233642578125 + ], + "type":"VEC3" + }, + { + "bufferView":5378, + "componentType":5126, + "count":164, + "type":"VEC3" + }, + { + "bufferView":5379, + "componentType":5126, + "count":164, + "type":"VEC2" + }, + { + "bufferView":5380, + "componentType":5126, + "count":336, + "max":[ + 13.560836791992188, + 230.1728057861328, + 115.08647155761719 + ], + "min":[ + -13.560539245605469, + -2.288818359375e-05, + -115.08639526367188 + ], + "type":"VEC3" + }, + { + "bufferView":5381, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":5382, + "componentType":5126, + "count":528, + "max":[ + 722.7216796875, + 2637.3974609375, + 19.80259895324707 + ], + "min":[ + -722.7216796875, + 0, + -19.80333137512207 + ], + "type":"VEC3" + }, + { + "bufferView":5383, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":5384, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":5385, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":5386, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5387, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5388, + "componentType":5126, + "count":169, + "max":[ + 505.51953125, + 59.56597900390625, + 21.07904052734375 + ], + "min":[ + -505.5185546875, + 0, + -21.07806396484375 + ], + "type":"VEC3" + }, + { + "bufferView":5389, + "componentType":5126, + "count":169, + "type":"VEC3" + }, + { + "bufferView":5390, + "componentType":5126, + "count":169, + "type":"VEC2" + }, + { + "bufferView":5391, + "componentType":5123, + "count":336, + "type":"SCALAR" + }, + { + "bufferView":5392, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":5393, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5394, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5395, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92926025390625, + 384.1394348144531 + ], + "min":[ + -245.232421875, + 4.57763671875e-05, + -384.1411437988281 + ], + "type":"VEC3" + }, + { + "bufferView":5396, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":5397, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":5398, + "componentType":5126, + "count":24, + "max":[ + 27.1982421875, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.189453125, + 0, + -126.07373046875 + ], + "type":"VEC3" + }, + { + "bufferView":5399, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5400, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5401, + "componentType":5126, + "count":4, + "max":[ + -0.001953125, + 2586.479248046875, + 698.884033203125 + ], + "min":[ + -0.001953125, + 0, + -698.884521484375 + ], + "type":"VEC3" + }, + { + "bufferView":5402, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5403, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5404, + "componentType":5126, + "count":578, + "max":[ + 176.21644592285156, + 253.9186553955078, + 158.48526000976562 + ], + "min":[ + -183.4259796142578, + 37.37495422363281, + -170.4163055419922 + ], + "type":"VEC3" + }, + { + "bufferView":5405, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":5406, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5407, + "componentType":5126, + "count":584, + "max":[ + 173.30691528320312, + 180.11541748046875, + 157.24598693847656 + ], + "min":[ + -173.3037109375, + 1.2038650512695312, + -144.96524047851562 + ], + "type":"VEC3" + }, + { + "bufferView":5408, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":5409, + "componentType":5126, + "count":24, + "max":[ + 35.000003814697266, + 2000, + 35.000003814697266 + ], + "min":[ + -35.000003814697266, + 0, + -35.000003814697266 + ], + "type":"VEC3" + }, + { + "bufferView":5410, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5411, + "componentType":5126, + "count":594, + "max":[ + 148.97080993652344, + 180.591064453125, + 136.3221435546875 + ], + "min":[ + -148.9737091064453, + 0.0001220703125, + -136.32241821289062 + ], + "type":"VEC3" + }, + { + "bufferView":5412, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":5413, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5414, + "componentType":5126, + "count":1420, + "max":[ + 433.119140625, + 367.9293212890625, + 90.005859375 + ], + "min":[ + -433.12109375, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":5415, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":5416, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":5417, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":5418, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":5419, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":5420, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":5421, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5422, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5423, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":5424, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":5425, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":5426, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":5427, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":5428, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":5429, + "componentType":5126, + "count":6522, + "max":[ + 128.06063842773438, + 193.0657196044922, + 128.06063842773438 + ], + "min":[ + -128.06063842773438, + 8.0108642578125e-05, + -128.0606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":5430, + "componentType":5126, + "count":6522, + "type":"VEC3" + }, + { + "bufferView":5431, + "componentType":5126, + "count":6522, + "type":"VEC2" + }, + { + "bufferView":5432, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5433, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5434, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5435, + "componentType":5126, + "count":112, + "max":[ + 1022.5776977539062, + 429.5421447753906, + 214.77090454101562 + ], + "min":[ + -1022.5814819335938, + -0.0003204345703125, + -214.77090454101562 + ], + "type":"VEC3" + }, + { + "bufferView":5436, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":5437, + "componentType":5126, + "count":339, + "max":[ + 171.298828125, + 184.801513671875, + 176.139404296875 + ], + "min":[ + -171.296875, + 44.454345703125, + -176.142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":5438, + "componentType":5126, + "count":339, + "type":"VEC3" + }, + { + "bufferView":5439, + "componentType":5126, + "count":339, + "type":"VEC2" + }, + { + "bufferView":5440, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":5441, + "componentType":5126, + "count":574, + "max":[ + 152.2848663330078, + 158.18145751953125, + 132.9002227783203 + ], + "min":[ + -152.2821502685547, + -0.00020599365234375, + -132.90011596679688 + ], + "type":"VEC3" + }, + { + "bufferView":5442, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":5443, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5444, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5445, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5446, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5447, + "componentType":5126, + "count":574, + "max":[ + 177.50819396972656, + 183.0576934814453, + 154.74668884277344 + ], + "min":[ + -177.5111541748047, + 0.0001220703125, + -154.74673461914062 + ], + "type":"VEC3" + }, + { + "bufferView":5448, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":5449, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5450, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5451, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5452, + "componentType":5126, + "count":596, + "max":[ + 162.38604736328125, + 196.222412109375, + 148.55226135253906 + ], + "min":[ + -162.3836212158203, + -0.000213623046875, + -148.55191040039062 + ], + "type":"VEC3" + }, + { + "bufferView":5453, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":5454, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5455, + "componentType":5126, + "count":228, + "max":[ + 115.14118957519531, + 317.5784912109375, + 160.0547637939453 + ], + "min":[ + -115.14126586914062, + 0.0001373291015625, + -160.0548858642578 + ], + "type":"VEC3" + }, + { + "bufferView":5456, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":5457, + "componentType":5126, + "count":72, + "max":[ + 771.3452758789062, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.345703125, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":5458, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":5459, + "componentType":5126, + "count":24, + "max":[ + 110.00010681152344, + 50, + 584.666015625 + ], + "min":[ + -110.00007629394531, + 0, + -584.662109375 + ], + "type":"VEC3" + }, + { + "bufferView":5460, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5461, + "componentType":5126, + "count":342, + "max":[ + 170.90625, + 157.003662109375, + 177.25439453125 + ], + "min":[ + -170.9033203125, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":5462, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":5463, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":5464, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":5465, + "componentType":5126, + "count":60, + "max":[ + 3.7875118255615234, + 13.000020980834961, + 3.74242901802063 + ], + "min":[ + -3.7875607013702393, + -2.3352227799477987e-05, + -3.742408275604248 + ], + "type":"VEC3" + }, + { + "bufferView":5466, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":5467, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":5468, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5469, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5470, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5471, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.14453125, + 360.898193359375 + ], + "min":[ + -8.345703125, + 0.000244140625, + -360.896484375 + ], + "type":"VEC3" + }, + { + "bufferView":5472, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":5473, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":5474, + "componentType":5126, + "count":750, + "max":[ + 136.75340270996094, + 217.14334106445312, + 129.45623779296875 + ], + "min":[ + -136.81773376464844, + 27.222068786621094, + -129.56021118164062 + ], + "type":"VEC3" + }, + { + "bufferView":5475, + "componentType":5126, + "count":750, + "type":"VEC3" + }, + { + "bufferView":5476, + "componentType":5126, + "count":166, + "max":[ + 769.70751953125, + 113.19482421875, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.59765625 + ], + "type":"VEC3" + }, + { + "bufferView":5477, + "componentType":5126, + "count":166, + "type":"VEC3" + }, + { + "bufferView":5478, + "componentType":5126, + "count":166, + "type":"VEC2" + }, + { + "bufferView":5479, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":5480, + "componentType":5126, + "count":590, + "max":[ + 192.61654663085938, + 276.45672607421875, + 173.439208984375 + ], + "min":[ + -199.82736206054688, + 40.79896545410156, + -185.37115478515625 + ], + "type":"VEC3" + }, + { + "bufferView":5481, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":5482, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5483, + "componentType":5126, + "count":233, + "max":[ + 169.070556640625, + 185.23583984375, + 172.59619140625 + ], + "min":[ + -169.0704345703125, + 0, + -172.597900390625 + ], + "type":"VEC3" + }, + { + "bufferView":5484, + "componentType":5126, + "count":233, + "type":"VEC3" + }, + { + "bufferView":5485, + "componentType":5126, + "count":233, + "type":"VEC2" + }, + { + "bufferView":5486, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":5487, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5488, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5489, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5490, + "componentType":5126, + "count":336, + "max":[ + 13.560523986816406, + 272.65911865234375, + 115.08651733398438 + ], + "min":[ + -13.560836791992188, + 42.48628234863281, + -115.08638000488281 + ], + "type":"VEC3" + }, + { + "bufferView":5491, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":5492, + "componentType":5126, + "count":183, + "max":[ + 156.158203125, + 12554.818359375, + 1060.18505859375 + ], + "min":[ + -156.1611328125, + 0.000152587890625, + -1060.1884765625 + ], + "type":"VEC3" + }, + { + "bufferView":5493, + "componentType":5126, + "count":183, + "type":"VEC3" + }, + { + "bufferView":5494, + "componentType":5126, + "count":183, + "type":"VEC2" + }, + { + "bufferView":5495, + "componentType":5126, + "count":24, + "max":[ + 35.000003814697266, + 2000, + 35.000003814697266 + ], + "min":[ + -35.000003814697266, + 0, + -35.000003814697266 + ], + "type":"VEC3" + }, + { + "bufferView":5496, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5497, + "componentType":5126, + "count":48, + "max":[ + 123.61376953125, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.615234375, + 0, + -366.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":5498, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":5499, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":5500, + "componentType":5126, + "count":118, + "max":[ + 31.290645599365234, + 15.510940551757812, + 6.1126251220703125 + ], + "min":[ + -31.290639877319336, + -1.430511474609375e-06, + -6.112091064453125 + ], + "type":"VEC3" + }, + { + "bufferView":5501, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":5502, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":5503, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":5504, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5505, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5506, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5507, + "componentType":5126, + "count":33, + "max":[ + 157.4300537109375, + 190.609130859375, + 139.08941650390625 + ], + "min":[ + -157.43045043945312, + 0, + -139.08880615234375 + ], + "type":"VEC3" + }, + { + "bufferView":5508, + "componentType":5126, + "count":33, + "type":"VEC3" + }, + { + "bufferView":5509, + "componentType":5126, + "count":33, + "type":"VEC2" + }, + { + "bufferView":5510, + "componentType":5123, + "count":60, + "type":"SCALAR" + }, + { + "bufferView":5511, + "componentType":5126, + "count":33, + "max":[ + 157.4300537109375, + 190.60888671875, + 139.08843994140625 + ], + "min":[ + -157.43045043945312, + 0, + -139.08978271484375 + ], + "type":"VEC3" + }, + { + "bufferView":5512, + "componentType":5126, + "count":33, + "type":"VEC3" + }, + { + "bufferView":5513, + "componentType":5126, + "count":33, + "type":"VEC2" + }, + { + "bufferView":5514, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5515, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5516, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5517, + "componentType":5126, + "count":224, + "max":[ + 146.68063354492188, + 288.874267578125, + 115.3512191772461 + ], + "min":[ + -146.68435668945312, + -7.62939453125e-05, + -115.35126495361328 + ], + "type":"VEC3" + }, + { + "bufferView":5518, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":5519, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":5520, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5521, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5522, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5523, + "componentType":5126, + "count":60, + "max":[ + 3.7875242233276367, + 13.413311004638672, + 4.2459025382995605 + ], + "min":[ + -3.7875430583953857, + 0.00010967254638671875, + -4.24592399597168 + ], + "type":"VEC3" + }, + { + "bufferView":5524, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":5525, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":5526, + "componentType":5126, + "count":262, + "max":[ + 174.408203125, + 193.25439453125, + 169.06298828125 + ], + "min":[ + -174.408203125, + 0, + -169.0628662109375 + ], + "type":"VEC3" + }, + { + "bufferView":5527, + "componentType":5126, + "count":262, + "type":"VEC3" + }, + { + "bufferView":5528, + "componentType":5126, + "count":262, + "type":"VEC2" + }, + { + "bufferView":5529, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58544921875 + ], + "min":[ + -46.2841796875, + 0, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":5530, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5531, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5532, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5533, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5534, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5535, + "componentType":5126, + "count":1018, + "max":[ + 29.78515625, + 254.3076171875, + 90.10791015625 + ], + "min":[ + -29.787109375, + 1.31298828125, + -90.1103515625 + ], + "type":"VEC3" + }, + { + "bufferView":5536, + "componentType":5126, + "count":1018, + "type":"VEC3" + }, + { + "bufferView":5537, + "componentType":5126, + "count":1018, + "type":"VEC2" + }, + { + "bufferView":5538, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":5539, + "componentType":5126, + "count":48, + "max":[ + 391.736328125, + 625.6328125, + 127.44384765625 + ], + "min":[ + -391.73779296875, + 0, + -127.443359375 + ], + "type":"VEC3" + }, + { + "bufferView":5540, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":5541, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":5542, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":5543, + "componentType":5126, + "count":584, + "max":[ + 185.91859436035156, + 191.34945678710938, + 162.02882385253906 + ], + "min":[ + -185.9182586669922, + -0.0001373291015625, + -162.0288848876953 + ], + "type":"VEC3" + }, + { + "bufferView":5544, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":5545, + "componentType":5126, + "count":578, + "max":[ + 201.47396850585938, + 278.7197265625, + 186.8728790283203 + ], + "min":[ + -194.26376342773438, + 41.14274597167969, + -174.9408721923828 + ], + "type":"VEC3" + }, + { + "bufferView":5546, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":5547, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5548, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5549, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5550, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5551, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5552, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5553, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5554, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":5555, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5556, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5557, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5558, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5559, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5560, + "componentType":5126, + "count":561, + "max":[ + 178.89952087402344, + 257.6051025390625, + 160.93115234375 + ], + "min":[ + -186.1079864501953, + 37.93511962890625, + -172.86228942871094 + ], + "type":"VEC3" + }, + { + "bufferView":5561, + "componentType":5126, + "count":561, + "type":"VEC3" + }, + { + "bufferView":5562, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":5563, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":5564, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5565, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5566, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5567, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16455078125, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":5568, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":5569, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":5570, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5571, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5572, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5573, + "componentType":5126, + "count":588, + "max":[ + 202.73544311523438, + 32.82524108886719, + 202.7357177734375 + ], + "min":[ + -202.73629760742188, + 9.918212890625e-05, + -202.73605346679688 + ], + "type":"VEC3" + }, + { + "bufferView":5574, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":5575, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7293758392334 + ], + "min":[ + -43.5888671875, + 0.000118255615234375, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":5576, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":5577, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":5578, + "componentType":5126, + "count":12642, + "max":[ + 1623.944580078125, + 5758.6630859375, + 20177.1953125 + ], + "min":[ + -17379.818359375, + -4414.93896484375, + -20177.203125 + ], + "type":"VEC3" + }, + { + "bufferView":5579, + "componentType":5126, + "count":12642, + "type":"VEC3" + }, + { + "bufferView":5580, + "componentType":5126, + "count":12642, + "type":"VEC2" + }, + { + "bufferView":5581, + "componentType":5123, + "count":19608, + "type":"SCALAR" + }, + { + "bufferView":5582, + "componentType":5126, + "count":4536, + "max":[ + -1577.498046875, + 2592.469970703125, + 18763.55859375 + ], + "min":[ + -17277.59765625, + -4002.320556640625, + -18763.53125 + ], + "type":"VEC3" + }, + { + "bufferView":5583, + "componentType":5126, + "count":4536, + "type":"VEC3" + }, + { + "bufferView":5584, + "componentType":5126, + "count":4536, + "type":"VEC2" + }, + { + "bufferView":5585, + "componentType":5123, + "count":7836, + "type":"SCALAR" + }, + { + "bufferView":5586, + "componentType":5126, + "count":980, + "max":[ + -1556.5718994140625, + 332.3138427734375, + 20193.841796875 + ], + "min":[ + -17298.517578125, + -2528.46630859375, + -20193.818359375 + ], + "type":"VEC3" + }, + { + "bufferView":5587, + "componentType":5126, + "count":980, + "type":"VEC3" + }, + { + "bufferView":5588, + "componentType":5126, + "count":980, + "type":"VEC2" + }, + { + "bufferView":5589, + "componentType":5123, + "count":1836, + "type":"SCALAR" + }, + { + "bufferView":5590, + "componentType":5126, + "count":192, + "max":[ + -7564.673828125, + -1613.766357421875, + 20228.216796875 + ], + "min":[ + -11270.33984375, + -2621.1650390625, + -20228.193359375 + ], + "type":"VEC3" + }, + { + "bufferView":5591, + "componentType":5126, + "count":192, + "type":"VEC3" + }, + { + "bufferView":5592, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":5593, + "componentType":5123, + "count":288, + "type":"SCALAR" + }, + { + "bufferView":5594, + "componentType":5126, + "count":192, + "max":[ + -2248.885009765625, + 2592.47119140625, + 18248.17578125 + ], + "min":[ + -16573.078125, + -4002.320556640625, + -18246.1875 + ], + "type":"VEC3" + }, + { + "bufferView":5595, + "componentType":5126, + "count":192, + "type":"VEC3" + }, + { + "bufferView":5596, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":5597, + "componentType":5123, + "count":288, + "type":"SCALAR" + }, + { + "bufferView":5598, + "componentType":5126, + "count":18, + "max":[ + -2155.916015625, + 5944.0546875, + 18300.0390625 + ], + "min":[ + -16699.16796875, + 3703.3671875, + -18300.05078125 + ], + "type":"VEC3" + }, + { + "bufferView":5599, + "componentType":5126, + "count":18, + "type":"VEC3" + }, + { + "bufferView":5600, + "componentType":5126, + "count":18, + "type":"VEC2" + }, + { + "bufferView":5601, + "componentType":5123, + "count":24, + "type":"SCALAR" + }, + { + "bufferView":5602, + "componentType":5126, + "count":18, + "max":[ + -1062.34375, + 5758.6484375, + 4077.380859375 + ], + "min":[ + -8811.1171875, + 3703.34765625, + -4068.4609375 + ], + "type":"VEC3" + }, + { + "bufferView":5603, + "componentType":5126, + "count":18, + "type":"VEC3" + }, + { + "bufferView":5604, + "componentType":5126, + "count":18, + "type":"VEC2" + }, + { + "bufferView":5605, + "componentType":5123, + "count":24, + "type":"SCALAR" + }, + { + "bufferView":5606, + "componentType":5126, + "count":584, + "max":[ + 167.7482452392578, + 110.9007568359375, + 174.7067108154297 + ], + "min":[ + -167.75155639648438, + 3.0517578125e-05, + -174.70689392089844 + ], + "type":"VEC3" + }, + { + "bufferView":5607, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":5608, + "componentType":5126, + "count":8031, + "max":[ + 103.78759765625, + 1010.39501953125, + 180.119140625 + ], + "min":[ + -103.78662109375, + 12.32421875, + -180.1201171875 + ], + "type":"VEC3" + }, + { + "bufferView":5609, + "componentType":5126, + "count":8031, + "type":"VEC3" + }, + { + "bufferView":5610, + "componentType":5126, + "count":8031, + "type":"VEC2" + }, + { + "bufferView":5611, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":5612, + "componentType":5126, + "count":586, + "max":[ + 187.8671875, + 120.83259582519531, + 195.7285919189453 + ], + "min":[ + -187.870361328125, + 9.918212890625e-05, + -195.7285919189453 + ], + "type":"VEC3" + }, + { + "bufferView":5613, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":5614, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5615, + "componentType":5126, + "count":48, + "max":[ + 391.7373046875, + 625.6328125, + 127.44287109375 + ], + "min":[ + -391.7373046875, + 0, + -127.4404296875 + ], + "type":"VEC3" + }, + { + "bufferView":5616, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":5617, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":5618, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":5619, + "componentType":5126, + "count":240, + "max":[ + 172.5966796875, + 185.23486328125, + 169.070556640625 + ], + "min":[ + -172.59716796875, + -0.00048828125, + -169.070556640625 + ], + "type":"VEC3" + }, + { + "bufferView":5620, + "componentType":5126, + "count":240, + "type":"VEC3" + }, + { + "bufferView":5621, + "componentType":5126, + "count":240, + "type":"VEC2" + }, + { + "bufferView":5622, + "componentType":5126, + "count":8039, + "max":[ + 180.1181640625, + 1010.39501953125, + 103.787109375 + ], + "min":[ + -180.12109375, + 12.32470703125, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":5623, + "componentType":5126, + "count":8039, + "type":"VEC3" + }, + { + "bufferView":5624, + "componentType":5126, + "count":8039, + "type":"VEC2" + }, + { + "bufferView":5625, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":5626, + "componentType":5126, + "count":342, + "max":[ + 115.14120483398438, + 235.95407104492188, + 69.11589050292969 + ], + "min":[ + -115.14122772216797, + 25.712726593017578, + -69.11685943603516 + ], + "type":"VEC3" + }, + { + "bufferView":5627, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":5628, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":5629, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5630, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5631, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5632, + "componentType":5126, + "count":1660, + "max":[ + 433.119140625, + 367.92919921875, + 90.005859375 + ], + "min":[ + -433.12109375, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":5633, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":5634, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":5635, + "componentType":5126, + "count":50, + "max":[ + 161.98095703125, + 658.67578125, + 366.15185546875 + ], + "min":[ + -161.97900390625, + 0, + -366.15380859375 + ], + "type":"VEC3" + }, + { + "bufferView":5636, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":5637, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":5638, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":5639, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 463.990234375 + ], + "min":[ + -110.0000228881836, + 0, + -463.990234375 + ], + "type":"VEC3" + }, + { + "bufferView":5640, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5641, + "componentType":5126, + "count":572, + "max":[ + 206.17726135253906, + 212.7680206298828, + 173.4330596923828 + ], + "min":[ + -206.177734375, + 1.4406890869140625, + -185.71441650390625 + ], + "type":"VEC3" + }, + { + "bufferView":5642, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":5643, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5644, + "componentType":5126, + "count":201, + "max":[ + 13.25439453125, + 75.79572296142578, + 23.9547119140625 + ], + "min":[ + -13.25048828125, + 9.736733045428991e-05, + -23.9464111328125 + ], + "type":"VEC3" + }, + { + "bufferView":5645, + "componentType":5126, + "count":201, + "type":"VEC3" + }, + { + "bufferView":5646, + "componentType":5126, + "count":201, + "type":"VEC2" + }, + { + "bufferView":5647, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":5648, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92926025390625, + 384.1396484375 + ], + "min":[ + -245.2333984375, + -6.103515625e-05, + -384.1410827636719 + ], + "type":"VEC3" + }, + { + "bufferView":5649, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":5650, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":5651, + "componentType":5126, + "count":882, + "max":[ + 134.314453125, + 2974.83349609375, + 130.7236328125 + ], + "min":[ + -134.31640625, + 0, + -130.72071838378906 + ], + "type":"VEC3" + }, + { + "bufferView":5652, + "componentType":5126, + "count":882, + "type":"VEC3" + }, + { + "bufferView":5653, + "componentType":5126, + "count":882, + "type":"VEC2" + }, + { + "bufferView":5654, + "componentType":5123, + "count":1308, + "type":"SCALAR" + }, + { + "bufferView":5655, + "componentType":5126, + "count":587, + "max":[ + 146.2916717529297, + 177.46481323242188, + 133.87635803222656 + ], + "min":[ + -146.28781127929688, + 7.62939453125e-05, + -133.87637329101562 + ], + "type":"VEC3" + }, + { + "bufferView":5656, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":5657, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5658, + "componentType":5126, + "count":265, + "max":[ + 383.94287109375, + 1066.085205078125, + 229.2598876953125 + ], + "min":[ + -383.9423828125, + 0, + -229.26171875 + ], + "type":"VEC3" + }, + { + "bufferView":5659, + "componentType":5126, + "count":265, + "type":"VEC3" + }, + { + "bufferView":5660, + "componentType":5126, + "count":265, + "type":"VEC2" + }, + { + "bufferView":5661, + "componentType":5123, + "count":564, + "type":"SCALAR" + }, + { + "bufferView":5662, + "componentType":5126, + "count":24, + "max":[ + 29.8388671875, + 320.322265625, + 219.6572265625 + ], + "min":[ + -29.83935546875, + 0, + -219.654296875 + ], + "type":"VEC3" + }, + { + "bufferView":5663, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5664, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5665, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":5666, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5667, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5668, + "componentType":5126, + "count":548, + "max":[ + 7.779083728790283, + 21.312030792236328, + 10.655908584594727 + ], + "min":[ + -7.778790473937988, + 0.00021648406982421875, + -10.65590763092041 + ], + "type":"VEC3" + }, + { + "bufferView":5669, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":5670, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":5671, + "componentType":5126, + "count":570, + "max":[ + 183.11512756347656, + 188.58531188964844, + 159.60145568847656 + ], + "min":[ + -183.11587524414062, + -0.00018310546875, + -159.6015167236328 + ], + "type":"VEC3" + }, + { + "bufferView":5672, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":5673, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5674, + "componentType":5126, + "count":323, + "max":[ + 3.8607194423675537, + 15.442765235900879, + 7.721343517303467 + ], + "min":[ + -3.8606269359588623, + 8.296966552734375e-05, + -7.721337795257568 + ], + "type":"VEC3" + }, + { + "bufferView":5675, + "componentType":5126, + "count":323, + "type":"VEC3" + }, + { + "bufferView":5676, + "componentType":5126, + "count":323, + "type":"VEC2" + }, + { + "bufferView":5677, + "componentType":5126, + "count":584, + "max":[ + 209.6181640625, + 32.82498550415039, + 209.6189422607422 + ], + "min":[ + -209.62005615234375, + -0.000102996826171875, + -209.6193084716797 + ], + "type":"VEC3" + }, + { + "bufferView":5678, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":5679, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5680, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":5681, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":5682, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":5683, + "componentType":5126, + "count":570, + "max":[ + 201.33372497558594, + 207.9571990966797, + 181.51983642578125 + ], + "min":[ + -201.3351287841797, + 1.4057235717773438, + -169.23916625976562 + ], + "type":"VEC3" + }, + { + "bufferView":5684, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":5685, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5686, + "componentType":5126, + "count":243, + "max":[ + 169.100830078125, + 188.23828125, + 173.28125 + ], + "min":[ + -169.100830078125, + 0, + -173.28173828125 + ], + "type":"VEC3" + }, + { + "bufferView":5687, + "componentType":5126, + "count":243, + "type":"VEC3" + }, + { + "bufferView":5688, + "componentType":5126, + "count":243, + "type":"VEC2" + }, + { + "bufferView":5689, + "componentType":5126, + "count":204, + "max":[ + 448.376953125, + 2467.31787109375, + 373.7769775390625 + ], + "min":[ + -448.3787841796875, + 0, + -373.7767333984375 + ], + "type":"VEC3" + }, + { + "bufferView":5690, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":5691, + "componentType":5123, + "count":1068, + "type":"SCALAR" + }, + { + "bufferView":5692, + "componentType":5126, + "count":228, + "max":[ + 147.0672149658203, + 288.87457275390625, + 115.35121154785156 + ], + "min":[ + -146.29786682128906, + 0.0001220703125, + -115.35125732421875 + ], + "type":"VEC3" + }, + { + "bufferView":5693, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":5694, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":5695, + "componentType":5126, + "count":916, + "max":[ + 879.66015625, + 587.0330810546875, + 879.6582641601562 + ], + "min":[ + -879.66015625, + 9.1552734375e-05, + -879.6621704101562 + ], + "type":"VEC3" + }, + { + "bufferView":5696, + "componentType":5126, + "count":916, + "type":"VEC3" + }, + { + "bufferView":5697, + "componentType":5126, + "count":916, + "type":"VEC2" + }, + { + "bufferView":5698, + "componentType":5123, + "count":1440, + "type":"SCALAR" + }, + { + "bufferView":5699, + "componentType":5126, + "count":580, + "max":[ + 162.09307861328125, + 167.85537719726562, + 141.3960723876953 + ], + "min":[ + -162.0943145751953, + -0.0001373291015625, + -141.39605712890625 + ], + "type":"VEC3" + }, + { + "bufferView":5700, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":5701, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5702, + "componentType":5126, + "count":183, + "max":[ + 769.70703125, + 113.194580078125, + 56.596923828125 + ], + "min":[ + -769.71044921875, + 0, + -56.596923828125 + ], + "type":"VEC3" + }, + { + "bufferView":5703, + "componentType":5126, + "count":183, + "type":"VEC3" + }, + { + "bufferView":5704, + "componentType":5126, + "count":183, + "type":"VEC2" + }, + { + "bufferView":5705, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":5706, + "componentType":5126, + "count":136, + "max":[ + 80.153076171875, + 126.6884765625, + 49.03466796875 + ], + "min":[ + -80.153076171875, + 0, + -49.03564453125 + ], + "type":"VEC3" + }, + { + "bufferView":5707, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":5708, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":5709, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92926025390625, + 384.578857421875 + ], + "min":[ + -244.4677734375, + -6.103515625e-05, + -384.5805358886719 + ], + "type":"VEC3" + }, + { + "bufferView":5710, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":5711, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":5712, + "componentType":5126, + "count":60, + "max":[ + 3.742351531982422, + 13.000020027160645, + 3.7873902320861816 + ], + "min":[ + -3.742482900619507, + -2.384185791015625e-05, + -3.787674903869629 + ], + "type":"VEC3" + }, + { + "bufferView":5713, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":5714, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":5715, + "componentType":5126, + "count":177, + "max":[ + 769.70947265625, + 113.194580078125, + 56.59765625 + ], + "min":[ + -769.7080078125, + 0, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":5716, + "componentType":5126, + "count":177, + "type":"VEC3" + }, + { + "bufferView":5717, + "componentType":5126, + "count":177, + "type":"VEC2" + }, + { + "bufferView":5718, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":5719, + "componentType":5126, + "count":24, + "max":[ + 27.19775390625, + 130.123046875, + 126.07421875 + ], + "min":[ + -27.189453125, + 0, + -126.072265625 + ], + "type":"VEC3" + }, + { + "bufferView":5720, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5721, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5722, + "componentType":5126, + "count":580, + "max":[ + 173.11431884765625, + 113.45752716064453, + 180.3125 + ], + "min":[ + -173.1155242919922, + -0.0001678466796875, + -180.31268310546875 + ], + "type":"VEC3" + }, + { + "bufferView":5723, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":5724, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5725, + "componentType":5126, + "count":158, + "max":[ + 19.6142578125, + 12069.2880859375, + 437.37841796875 + ], + "min":[ + -19.6141357421875, + 0.000701904296875, + -437.37890625 + ], + "type":"VEC3" + }, + { + "bufferView":5726, + "componentType":5126, + "count":158, + "type":"VEC3" + }, + { + "bufferView":5727, + "componentType":5126, + "count":158, + "type":"VEC2" + }, + { + "bufferView":5728, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":5729, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5730, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5731, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5732, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.92919921875, + 90.005859375 + ], + "min":[ + -433.1201171875, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":5733, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":5734, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":5735, + "componentType":5126, + "count":204, + "max":[ + 1587.1123046875, + 2084.53515625, + 185.61849975585938 + ], + "min":[ + -1587.1123046875, + -0.000244140625, + -185.61935424804688 + ], + "type":"VEC3" + }, + { + "bufferView":5736, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":5737, + "componentType":5126, + "count":24, + "max":[ + 35.000003814697266, + 2000, + 35.000003814697266 + ], + "min":[ + -35.000003814697266, + 0, + -35.000003814697266 + ], + "type":"VEC3" + }, + { + "bufferView":5738, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5739, + "componentType":5126, + "count":137, + "max":[ + 40.6044921875, + 81.2109375, + 5085.66357421875 + ], + "min":[ + -40.60546875, + 0, + -5085.66357421875 + ], + "type":"VEC3" + }, + { + "bufferView":5740, + "componentType":5126, + "count":137, + "type":"VEC3" + }, + { + "bufferView":5741, + "componentType":5126, + "count":137, + "type":"VEC2" + }, + { + "bufferView":5742, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.45654296875, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.000732421875, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":5743, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":5744, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":5745, + "componentType":5126, + "count":226, + "max":[ + 118.72099304199219, + 230.17282104492188, + 115.08647918701172 + ], + "min":[ + -118.72061157226562, + -3.0517578125e-05, + -115.08637237548828 + ], + "type":"VEC3" + }, + { + "bufferView":5746, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":5747, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":5748, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.143798828125, + 360.897216796875 + ], + "min":[ + -8.345703125, + -0.00048828125, + -360.8974609375 + ], + "type":"VEC3" + }, + { + "bufferView":5749, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":5750, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":5751, + "componentType":5126, + "count":48, + "max":[ + 756.610107421875, + 2198.73388671875, + 58.383304595947266 + ], + "min":[ + -756.6087036132812, + 0, + -58.38257598876953 + ], + "type":"VEC3" + }, + { + "bufferView":5752, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":5753, + "componentType":5126, + "count":682, + "max":[ + 134.314453125, + 2974.83349609375, + 130.7232666015625 + ], + "min":[ + -134.314453125, + 0, + -130.72096252441406 + ], + "type":"VEC3" + }, + { + "bufferView":5754, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":5755, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":5756, + "componentType":5123, + "count":1308, + "type":"SCALAR" + }, + { + "bufferView":5757, + "componentType":5126, + "count":582, + "max":[ + 166.40670776367188, + 200.91189575195312, + 152.2208251953125 + ], + "min":[ + -166.41055297851562, + -0.0001678466796875, + -152.2212371826172 + ], + "type":"VEC3" + }, + { + "bufferView":5758, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":5759, + "componentType":5126, + "count":229, + "max":[ + 105.80078125, + 2059.5048828125, + 105.79638671875 + ], + "min":[ + -105.7978515625, + 0, + -105.798828125 + ], + "type":"VEC3" + }, + { + "bufferView":5760, + "componentType":5126, + "count":229, + "type":"VEC3" + }, + { + "bufferView":5761, + "componentType":5126, + "count":229, + "type":"VEC2" + }, + { + "bufferView":5762, + "componentType":5126, + "count":8031, + "max":[ + 103.78759765625, + 1010.39501953125, + 180.1171875 + ], + "min":[ + -103.78662109375, + 12.32421875, + -180.1220703125 + ], + "type":"VEC3" + }, + { + "bufferView":5763, + "componentType":5126, + "count":8031, + "type":"VEC3" + }, + { + "bufferView":5764, + "componentType":5126, + "count":8031, + "type":"VEC2" + }, + { + "bufferView":5765, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":5766, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":5767, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5768, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5769, + "componentType":5126, + "count":15112, + "max":[ + 128.0606231689453, + 193.06546020507812, + 128.06063842773438 + ], + "min":[ + -128.06065368652344, + -0.00017547607421875, + -128.06065368652344 + ], + "type":"VEC3" + }, + { + "bufferView":5770, + "componentType":5126, + "count":15112, + "type":"VEC3" + }, + { + "bufferView":5771, + "componentType":5126, + "count":15112, + "type":"VEC2" + }, + { + "bufferView":5772, + "componentType":5123, + "count":37296, + "type":"SCALAR" + }, + { + "bufferView":5773, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92926025390625, + 384.5793762207031 + ], + "min":[ + -244.466796875, + 4.57763671875e-05, + -384.5820617675781 + ], + "type":"VEC3" + }, + { + "bufferView":5774, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":5775, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":5776, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.073486328125 + ], + "type":"VEC3" + }, + { + "bufferView":5777, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5778, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5779, + "componentType":5126, + "count":92, + "max":[ + 824.2412109375, + 141.0703125, + 69.5703125 + ], + "min":[ + -824.24072265625, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":5780, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":5781, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":5782, + "componentType":5126, + "count":585, + "max":[ + 174.8749542236328, + 252.07574462890625, + 157.2623291015625 + ], + "min":[ + -182.08499145507812, + 37.095184326171875, + -169.19326782226562 + ], + "type":"VEC3" + }, + { + "bufferView":5783, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":5784, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5785, + "componentType":5126, + "count":238, + "max":[ + 169.10693359375, + 196.2138671875, + 175.0537109375 + ], + "min":[ + -169.1068115234375, + -0.000244140625, + -175.05322265625 + ], + "type":"VEC3" + }, + { + "bufferView":5786, + "componentType":5126, + "count":238, + "type":"VEC3" + }, + { + "bufferView":5787, + "componentType":5126, + "count":238, + "type":"VEC2" + }, + { + "bufferView":5788, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":5789, + "componentType":5126, + "count":24, + "max":[ + 35.000160217285156, + 2000, + 35.000160217285156 + ], + "min":[ + -35.000160217285156, + 0, + -35.000160217285156 + ], + "type":"VEC3" + }, + { + "bufferView":5790, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5791, + "componentType":5126, + "count":593, + "max":[ + 147.62928771972656, + 179.02798461914062, + 135.09918212890625 + ], + "min":[ + -147.6327362060547, + 0.0001068115234375, + -135.09954833984375 + ], + "type":"VEC3" + }, + { + "bufferView":5792, + "componentType":5126, + "count":593, + "type":"VEC3" + }, + { + "bufferView":5793, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":5794, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":5795, + "componentType":5126, + "count":559, + "max":[ + 722.72265625, + 2637.397705078125, + 19.80198860168457 + ], + "min":[ + -722.72265625, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":5796, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":5797, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":5798, + "componentType":5126, + "count":572, + "max":[ + 187.86717224121094, + 225.92266845703125, + 171.78860473632812 + ], + "min":[ + -187.87037658691406, + 7.62939453125e-05, + -171.78875732421875 + ], + "type":"VEC3" + }, + { + "bufferView":5799, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":5800, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5801, + "componentType":5126, + "count":577, + "max":[ + 157.01995849609375, + 105.78671264648438, + 163.49508666992188 + ], + "min":[ + -157.0196990966797, + -0.0001678466796875, + -163.49517822265625 + ], + "type":"VEC3" + }, + { + "bufferView":5802, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":5803, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5804, + "componentType":5126, + "count":8099, + "max":[ + 103.78759765625, + 429.962890625, + 496.1484375 + ], + "min":[ + -103.78662109375, + 0.0009765625, + -496.148681640625 + ], + "type":"VEC3" + }, + { + "bufferView":5805, + "componentType":5126, + "count":8099, + "type":"VEC3" + }, + { + "bufferView":5806, + "componentType":5126, + "count":8099, + "type":"VEC2" + }, + { + "bufferView":5807, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":5808, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":5809, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":5810, + "componentType":5126, + "count":60, + "max":[ + 3.78739070892334, + 13.000263214111328, + 3.74235200881958 + ], + "min":[ + -3.7876739501953125, + 0.00021982192993164062, + -3.7424826622009277 + ], + "type":"VEC3" + }, + { + "bufferView":5811, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":5812, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":5813, + "componentType":5126, + "count":578, + "max":[ + 199.51646423339844, + 239.4965362548828, + 182.4088134765625 + ], + "min":[ + -199.51507568359375, + 9.1552734375e-05, + -182.4083251953125 + ], + "type":"VEC3" + }, + { + "bufferView":5814, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":5815, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5816, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5817, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5818, + "componentType":5126, + "count":343, + "max":[ + 171.296875, + 184.80615234375, + 176.139404296875 + ], + "min":[ + -171.298828125, + 44.45458984375, + -176.142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":5819, + "componentType":5126, + "count":343, + "type":"VEC3" + }, + { + "bufferView":5820, + "componentType":5126, + "count":343, + "type":"VEC2" + }, + { + "bufferView":5821, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":5822, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5823, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5824, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5825, + "componentType":5126, + "count":582, + "max":[ + 178.90992736816406, + 184.43942260742188, + 155.9603729248047 + ], + "min":[ + -178.91232299804688, + -0.00011444091796875, + -155.9604034423828 + ], + "type":"VEC3" + }, + { + "bufferView":5826, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":5827, + "componentType":5126, + "count":585, + "max":[ + 146.2916717529297, + 177.46481323242188, + 133.87660217285156 + ], + "min":[ + -146.28781127929688, + 7.62939453125e-05, + -133.87612915039062 + ], + "type":"VEC3" + }, + { + "bufferView":5828, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":5829, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5830, + "componentType":5126, + "count":588, + "max":[ + 181.71339416503906, + 188.46771240234375, + 164.52810668945312 + ], + "min":[ + -181.71473693847656, + 1.2641448974609375, + -152.2474365234375 + ], + "type":"VEC3" + }, + { + "bufferView":5831, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":5832, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5833, + "componentType":5126, + "count":576, + "max":[ + 183.8465118408203, + 221.23312377929688, + 168.11953735351562 + ], + "min":[ + -183.843505859375, + 7.62939453125e-05, + -168.1199188232422 + ], + "type":"VEC3" + }, + { + "bufferView":5834, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":5835, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5836, + "componentType":5126, + "count":528, + "max":[ + 722.72265625, + 2637.3974609375, + 19.80198860168457 + ], + "min":[ + -722.72265625, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":5837, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":5838, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":5839, + "componentType":5126, + "count":72, + "max":[ + 771.3452758789062, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.345703125, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":5840, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":5841, + "componentType":5126, + "count":329, + "max":[ + 170.90625, + 156.9990234375, + 177.25439453125 + ], + "min":[ + -170.9033203125, + 21.287841796875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":5842, + "componentType":5126, + "count":329, + "type":"VEC3" + }, + { + "bufferView":5843, + "componentType":5126, + "count":329, + "type":"VEC2" + }, + { + "bufferView":5844, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":5845, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.58544921875 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":5846, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5847, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5848, + "componentType":5126, + "count":318, + "max":[ + 10.6767578125, + 283.877197265625, + 60.75002670288086 + ], + "min":[ + -10.6796875, + -1.52587890625e-05, + -60.75002670288086 + ], + "type":"VEC3" + }, + { + "bufferView":5849, + "componentType":5126, + "count":318, + "type":"VEC3" + }, + { + "bufferView":5850, + "componentType":5126, + "count":318, + "type":"VEC2" + }, + { + "bufferView":5851, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":5852, + "componentType":5126, + "count":106, + "max":[ + 27.31396484375, + 1876.475341796875, + 413.562255859375 + ], + "min":[ + -27.3154296875, + 0.000244140625, + -413.56005859375 + ], + "type":"VEC3" + }, + { + "bufferView":5853, + "componentType":5126, + "count":106, + "type":"VEC3" + }, + { + "bufferView":5854, + "componentType":5126, + "count":106, + "type":"VEC2" + }, + { + "bufferView":5855, + "componentType":5126, + "count":648, + "max":[ + 615.01123046875, + 2510.92529296875, + 347.265625 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.2666015625 + ], + "type":"VEC3" + }, + { + "bufferView":5856, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":5857, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":5858, + "componentType":5126, + "count":334, + "max":[ + 171.2978515625, + 184.80517578125, + 176.14013671875 + ], + "min":[ + -171.2978515625, + 44.4541015625, + -176.141845703125 + ], + "type":"VEC3" + }, + { + "bufferView":5859, + "componentType":5126, + "count":334, + "type":"VEC3" + }, + { + "bufferView":5860, + "componentType":5126, + "count":334, + "type":"VEC2" + }, + { + "bufferView":5861, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":5862, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28369140625 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":5863, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":5864, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":5865, + "componentType":5126, + "count":582, + "max":[ + 190.9693145751953, + 274.19342041015625, + 171.9376220703125 + ], + "min":[ + -198.18081665039062, + 40.454986572265625, + -183.86944580078125 + ], + "type":"VEC3" + }, + { + "bufferView":5866, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":5867, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5868, + "componentType":5126, + "count":233, + "max":[ + 169.100830078125, + 188.23828125, + 173.28125 + ], + "min":[ + -169.100830078125, + 0, + -173.28173828125 + ], + "type":"VEC3" + }, + { + "bufferView":5869, + "componentType":5126, + "count":233, + "type":"VEC3" + }, + { + "bufferView":5870, + "componentType":5126, + "count":233, + "type":"VEC2" + }, + { + "bufferView":5871, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":5872, + "componentType":5126, + "count":584, + "max":[ + 169.10015869140625, + 175.9392852783203, + 141.32391357421875 + ], + "min":[ + -169.1017303466797, + 1.173675537109375, + -153.60513305664062 + ], + "type":"VEC3" + }, + { + "bufferView":5873, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":5874, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5875, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5876, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5877, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5878, + "componentType":5126, + "count":48, + "max":[ + 391.7373046875, + 625.6328125, + 127.44287109375 + ], + "min":[ + -391.7373046875, + 0, + -127.4404296875 + ], + "type":"VEC3" + }, + { + "bufferView":5879, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":5880, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":5881, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5882, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5883, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5884, + "componentType":5126, + "count":806, + "max":[ + 1.9772133827209473, + 36.3969841003418, + 18.19847297668457 + ], + "min":[ + -1.9772028923034668, + -7.62939453125e-06, + -18.198514938354492 + ], + "type":"VEC3" + }, + { + "bufferView":5885, + "componentType":5126, + "count":806, + "type":"VEC3" + }, + { + "bufferView":5886, + "componentType":5126, + "count":806, + "type":"VEC2" + }, + { + "bufferView":5887, + "componentType":5123, + "count":1440, + "type":"SCALAR" + }, + { + "bufferView":5888, + "componentType":5126, + "count":24, + "max":[ + 35.000003814697266, + 2000, + 35.000003814697266 + ], + "min":[ + -35.000003814697266, + 0, + -35.000003814697266 + ], + "type":"VEC3" + }, + { + "bufferView":5889, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5890, + "componentType":5126, + "count":49, + "max":[ + 127.44287109375, + 625.6328125, + 391.73779296875 + ], + "min":[ + -127.4443359375, + 0, + -391.73779296875 + ], + "type":"VEC3" + }, + { + "bufferView":5891, + "componentType":5126, + "count":49, + "type":"VEC3" + }, + { + "bufferView":5892, + "componentType":5126, + "count":49, + "type":"VEC2" + }, + { + "bufferView":5893, + "componentType":5126, + "count":156, + "max":[ + 28556.630859375, + 1217.7703857421875, + 34.48623275756836 + ], + "min":[ + -28556.630859375, + 0.0001220703125, + -34.486351013183594 + ], + "type":"VEC3" + }, + { + "bufferView":5894, + "componentType":5126, + "count":156, + "type":"VEC3" + }, + { + "bufferView":5895, + "componentType":5123, + "count":780, + "type":"SCALAR" + }, + { + "bufferView":5896, + "componentType":5126, + "count":8046, + "max":[ + 180.119140625, + 1010.39404296875, + 103.787109375 + ], + "min":[ + -180.12109375, + 12.32373046875, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":5897, + "componentType":5126, + "count":8046, + "type":"VEC3" + }, + { + "bufferView":5898, + "componentType":5126, + "count":8046, + "type":"VEC2" + }, + { + "bufferView":5899, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":5900, + "componentType":5126, + "count":285, + "max":[ + 23.607620239257812, + 267.57562255859375, + 221.60244750976562 + ], + "min":[ + -23.222036361694336, + -7.62939453125e-06, + -221.5637664794922 + ], + "type":"VEC3" + }, + { + "bufferView":5901, + "componentType":5126, + "count":285, + "type":"VEC3" + }, + { + "bufferView":5902, + "componentType":5126, + "count":285, + "type":"VEC2" + }, + { + "bufferView":5903, + "componentType":5123, + "count":645, + "type":"SCALAR" + }, + { + "bufferView":5904, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5905, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5906, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5907, + "componentType":5126, + "count":24, + "max":[ + 161.6258544921875, + 62.20361328125, + 70.02761840820312 + ], + "min":[ + -161.62655639648438, + 0, + -70.02761840820312 + ], + "type":"VEC3" + }, + { + "bufferView":5908, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5909, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5910, + "componentType":5126, + "count":340, + "max":[ + 45.85670852661133, + 227.53494262695312, + 115.35120391845703 + ], + "min":[ + -45.858062744140625, + -1.52587890625e-05, + -115.35126495361328 + ], + "type":"VEC3" + }, + { + "bufferView":5911, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":5912, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":5913, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5914, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5915, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5916, + "componentType":5126, + "count":245, + "max":[ + 173.28125, + 188.23828125, + 169.100830078125 + ], + "min":[ + -173.28173828125, + 0, + -169.100830078125 + ], + "type":"VEC3" + }, + { + "bufferView":5917, + "componentType":5126, + "count":245, + "type":"VEC3" + }, + { + "bufferView":5918, + "componentType":5126, + "count":245, + "type":"VEC2" + }, + { + "bufferView":5919, + "componentType":5126, + "count":4062, + "max":[ + 37.94614028930664, + 117.86515808105469, + 219.26441955566406 + ], + "min":[ + -37.9461555480957, + -0.00017547607421875, + -219.26199340820312 + ], + "type":"VEC3" + }, + { + "bufferView":5920, + "componentType":5126, + "count":4062, + "type":"VEC3" + }, + { + "bufferView":5921, + "componentType":5126, + "count":4062, + "type":"VEC2" + }, + { + "bufferView":5922, + "componentType":5123, + "count":21444, + "type":"SCALAR" + }, + { + "bufferView":5923, + "componentType":5126, + "count":1043, + "max":[ + 125.22607421875, + 76.19921875, + 90.10888671875 + ], + "min":[ + -125.22607421875, + 0, + -90.109375 + ], + "type":"VEC3" + }, + { + "bufferView":5924, + "componentType":5126, + "count":1043, + "type":"VEC3" + }, + { + "bufferView":5925, + "componentType":5126, + "count":1043, + "type":"VEC2" + }, + { + "bufferView":5926, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":5927, + "componentType":5126, + "count":574, + "max":[ + 186.9486541748047, + 268.66400146484375, + 168.26852416992188 + ], + "min":[ + -194.1539306640625, + 39.61506652832031, + -180.20065307617188 + ], + "type":"VEC3" + }, + { + "bufferView":5928, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":5929, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5930, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4544677734375, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":5931, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":5932, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":5933, + "componentType":5126, + "count":579, + "max":[ + 163.72756958007812, + 197.78558349609375, + 149.77484130859375 + ], + "min":[ + -163.72467041015625, + -0.00018310546875, + -149.7753143310547 + ], + "type":"VEC3" + }, + { + "bufferView":5934, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":5935, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5936, + "componentType":5126, + "count":577, + "max":[ + 157.01995849609375, + 105.78671264648438, + 163.49508666992188 + ], + "min":[ + -157.0196990966797, + -0.0001678466796875, + -163.49517822265625 + ], + "type":"VEC3" + }, + { + "bufferView":5937, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":5938, + "componentType":5126, + "count":384, + "max":[ + 29.244140625, + 2882.534912109375, + 5200.28515625 + ], + "min":[ + -29.2431640625, + 0, + -5200.28369140625 + ], + "type":"VEC3" + }, + { + "bufferView":5939, + "componentType":5126, + "count":384, + "type":"VEC3" + }, + { + "bufferView":5940, + "componentType":5126, + "count":384, + "type":"VEC2" + }, + { + "bufferView":5941, + "componentType":5126, + "count":245, + "max":[ + 173.28125, + 188.23828125, + 169.100830078125 + ], + "min":[ + -173.28173828125, + 0, + -169.100830078125 + ], + "type":"VEC3" + }, + { + "bufferView":5942, + "componentType":5126, + "count":245, + "type":"VEC3" + }, + { + "bufferView":5943, + "componentType":5126, + "count":245, + "type":"VEC2" + }, + { + "bufferView":5944, + "componentType":5126, + "count":188, + "max":[ + 769.70947265625, + 113.194580078125, + 56.59814453125 + ], + "min":[ + -769.7080078125, + 0, + -56.59619140625 + ], + "type":"VEC3" + }, + { + "bufferView":5945, + "componentType":5126, + "count":188, + "type":"VEC3" + }, + { + "bufferView":5946, + "componentType":5126, + "count":188, + "type":"VEC2" + }, + { + "bufferView":5947, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":5948, + "componentType":5126, + "count":72, + "max":[ + 771.3447875976562, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.34619140625, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":5949, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":5950, + "componentType":5126, + "count":1039, + "max":[ + 29.7890625, + 254.3076171875, + 90.10986328125 + ], + "min":[ + -29.783203125, + 1.31298828125, + -90.10791015625 + ], + "type":"VEC3" + }, + { + "bufferView":5951, + "componentType":5126, + "count":1039, + "type":"VEC3" + }, + { + "bufferView":5952, + "componentType":5126, + "count":1039, + "type":"VEC2" + }, + { + "bufferView":5953, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":5954, + "componentType":5126, + "count":580, + "max":[ + 174.70864868164062, + 180.29354858398438, + 152.31930541992188 + ], + "min":[ + -174.70492553710938, + 3.0517578125e-05, + -152.31935119628906 + ], + "type":"VEC3" + }, + { + "bufferView":5955, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":5956, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5957, + "componentType":5126, + "count":585, + "max":[ + 170.43125915527344, + 205.60140991210938, + 155.88986206054688 + ], + "min":[ + -170.43350219726562, + -9.1552734375e-05, + -155.89002990722656 + ], + "type":"VEC3" + }, + { + "bufferView":5958, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":5959, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5960, + "componentType":5126, + "count":573, + "max":[ + 177.55799865722656, + 255.76210021972656, + 159.70814514160156 + ], + "min":[ + -184.7669677734375, + 37.65521240234375, + -171.6393280029297 + ], + "type":"VEC3" + }, + { + "bufferView":5961, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":5962, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":5963, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5964, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5965, + "componentType":5126, + "count":341, + "max":[ + 170.9052734375, + 156.999267578125, + 177.25439453125 + ], + "min":[ + -170.9052734375, + 21.2880859375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":5966, + "componentType":5126, + "count":341, + "type":"VEC3" + }, + { + "bufferView":5967, + "componentType":5126, + "count":341, + "type":"VEC2" + }, + { + "bufferView":5968, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":5969, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":5970, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5971, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5972, + "componentType":5126, + "count":136, + "max":[ + 239.705078125, + 131.9609375, + 242.8515625 + ], + "min":[ + -239.70703125, + 0, + -242.8525390625 + ], + "type":"VEC3" + }, + { + "bufferView":5973, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":5974, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":5975, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5976, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5977, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5978, + "componentType":5126, + "count":584, + "max":[ + 201.3351287841797, + 32.825252532958984, + 201.33425903320312 + ], + "min":[ + -201.33372497558594, + 0.000110626220703125, + -201.33462524414062 + ], + "type":"VEC3" + }, + { + "bufferView":5979, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":5980, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5981, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":5982, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":5983, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":5984, + "componentType":5126, + "count":573, + "max":[ + 177.13888549804688, + 213.41726684570312, + 162.00498962402344 + ], + "min":[ + -177.13851928710938, + -7.62939453125e-05, + -162.0047149658203 + ], + "type":"VEC3" + }, + { + "bufferView":5985, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":5986, + "componentType":5126, + "count":84, + "max":[ + 25.650390625, + 2502.00634765625, + 1011.18505859375 + ], + "min":[ + -25.6494140625, + -0.0001220703125, + -1011.1865234375 + ], + "type":"VEC3" + }, + { + "bufferView":5987, + "componentType":5126, + "count":84, + "type":"VEC3" + }, + { + "bufferView":5988, + "componentType":5126, + "count":84, + "type":"VEC2" + }, + { + "bufferView":5989, + "componentType":5123, + "count":126, + "type":"SCALAR" + }, + { + "bufferView":5990, + "componentType":5126, + "count":574, + "max":[ + 163.4947967529297, + 170.37051391601562, + 148.75033569335938 + ], + "min":[ + -163.4954833984375, + 1.13299560546875, + -136.4691162109375 + ], + "type":"VEC3" + }, + { + "bufferView":5991, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":5992, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":5993, + "componentType":5126, + "count":24, + "max":[ + 126.0732421875, + 130.123046875, + 27.1943359375 + ], + "min":[ + -126.0732421875, + 0, + -27.193359375 + ], + "type":"VEC3" + }, + { + "bufferView":5994, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":5995, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":5996, + "componentType":5126, + "count":7739, + "max":[ + 496.304931640625, + 427.4638671875, + 103.786865234375 + ], + "min":[ + -496.30810546875, + -0.0009765625, + -103.7869873046875 + ], + "type":"VEC3" + }, + { + "bufferView":5997, + "componentType":5126, + "count":7739, + "type":"VEC3" + }, + { + "bufferView":5998, + "componentType":5126, + "count":7739, + "type":"VEC2" + }, + { + "bufferView":5999, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":6000, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6001, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6002, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6003, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92926025390625, + 384.1416015625 + ], + "min":[ + -245.232421875, + -6.103515625e-05, + -384.1391296386719 + ], + "type":"VEC3" + }, + { + "bufferView":6004, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":6005, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":6006, + "componentType":5126, + "count":929, + "max":[ + 79.23311614990234, + 4511.697265625, + 50.15165328979492 + ], + "min":[ + -79.23646545410156, + 0, + -50.15163803100586 + ], + "type":"VEC3" + }, + { + "bufferView":6007, + "componentType":5126, + "count":929, + "type":"VEC3" + }, + { + "bufferView":6008, + "componentType":5126, + "count":929, + "type":"VEC2" + }, + { + "bufferView":6009, + "componentType":5123, + "count":4488, + "type":"SCALAR" + }, + { + "bufferView":6010, + "componentType":5126, + "count":52, + "max":[ + 142.32080078125, + 608.220703125, + 391.7373046875 + ], + "min":[ + -142.32177734375, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":6011, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":6012, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":6013, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":6014, + "componentType":5126, + "count":24, + "max":[ + 52.86289978027344, + 92.6992416381836, + 95.74981689453125 + ], + "min":[ + -52.860870361328125, + 2.6702880859375e-05, + -95.74981689453125 + ], + "type":"VEC3" + }, + { + "bufferView":6015, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6016, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":6017, + "componentType":5126, + "count":110, + "max":[ + 58.34326171875, + 131.9423828125, + 58.34326171875 + ], + "min":[ + -58.34326171875, + 0, + -58.34228515625 + ], + "type":"VEC3" + }, + { + "bufferView":6018, + "componentType":5126, + "count":110, + "type":"VEC3" + }, + { + "bufferView":6019, + "componentType":5126, + "count":110, + "type":"VEC2" + }, + { + "bufferView":6020, + "componentType":5126, + "count":122, + "max":[ + 20.428955078125, + 104.244140625, + 52.125 + ], + "min":[ + -20.4296875, + 0, + -52.1220703125 + ], + "type":"VEC3" + }, + { + "bufferView":6021, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":6022, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":6023, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":6024, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6025, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6026, + "componentType":5126, + "count":587, + "max":[ + 174.45582580566406, + 210.29098510742188, + 159.5589141845703 + ], + "min":[ + -174.45655822753906, + -6.103515625e-05, + -159.55889892578125 + ], + "type":"VEC3" + }, + { + "bufferView":6027, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":6028, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6029, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.585693359375 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":6030, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6031, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6032, + "componentType":5126, + "count":587, + "max":[ + 159.29193115234375, + 165.09193420410156, + 138.96864318847656 + ], + "min":[ + -159.28961181640625, + 0.0001678466796875, + -138.96864318847656 + ], + "type":"VEC3" + }, + { + "bufferView":6033, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":6034, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6035, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6036, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6037, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6038, + "componentType":5126, + "count":578, + "max":[ + 199.51646423339844, + 239.4965362548828, + 182.4088134765625 + ], + "min":[ + -199.51507568359375, + 9.1552734375e-05, + -182.4083251953125 + ], + "type":"VEC3" + }, + { + "bufferView":6039, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":6040, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6041, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6042, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6043, + "componentType":5126, + "count":142, + "max":[ + 3.451836347579956, + 18.945335388183594, + 9.47275161743164 + ], + "min":[ + -3.451739549636841, + -0.00011920928955078125, + -9.472702980041504 + ], + "type":"VEC3" + }, + { + "bufferView":6044, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":6045, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":6046, + "componentType":5126, + "count":142, + "max":[ + 3.45172119140625, + 18.94533348083496, + 9.472748756408691 + ], + "min":[ + -3.451845169067383, + -0.00011920928955078125, + -9.472702026367188 + ], + "type":"VEC3" + }, + { + "bufferView":6047, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":6048, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":6049, + "componentType":5126, + "count":687, + "max":[ + 150.83139038085938, + 239.3956298828125, + 147.66860961914062 + ], + "min":[ + -150.83389282226562, + -4.57763671875e-05, + -147.66815185546875 + ], + "type":"VEC3" + }, + { + "bufferView":6050, + "componentType":5126, + "count":687, + "type":"VEC3" + }, + { + "bufferView":6051, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":6052, + "componentType":5126, + "count":576, + "max":[ + 184.51686096191406, + 189.9676055908203, + 160.81515502929688 + ], + "min":[ + -184.51705932617188, + 6.103515625e-05, + -160.81521606445312 + ], + "type":"VEC3" + }, + { + "bufferView":6053, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":6054, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":6055, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6056, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6057, + "componentType":5126, + "count":204, + "max":[ + 1391.90234375, + 2081.4296875, + 94.3839340209961 + ], + "min":[ + -1391.9027099609375, + 0.000244140625, + -94.38288879394531 + ], + "type":"VEC3" + }, + { + "bufferView":6058, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":6059, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.07275390625 + ], + "min":[ + -27.193359375, + 0, + -126.07421875 + ], + "type":"VEC3" + }, + { + "bufferView":6060, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6061, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6062, + "componentType":5126, + "count":336, + "max":[ + 45.858123779296875, + 228.09591674804688, + 115.35120391845703 + ], + "min":[ + -45.85678482055664, + 0.56097412109375, + -115.35125732421875 + ], + "type":"VEC3" + }, + { + "bufferView":6063, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":6064, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":6065, + "componentType":5126, + "count":578, + "max":[ + 160.69134521484375, + 166.47369384765625, + 140.18238830566406 + ], + "min":[ + -160.69309997558594, + 6.866455078125e-05, + -140.18231201171875 + ], + "type":"VEC3" + }, + { + "bufferView":6066, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":6067, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6068, + "componentType":5126, + "count":648, + "max":[ + 615.0107421875, + 2510.925048828125, + 347.264892578125 + ], + "min":[ + -615.01025390625, + 0, + -347.266845703125 + ], + "type":"VEC3" + }, + { + "bufferView":6069, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":6070, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":6071, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7294979095459 + ], + "min":[ + -43.5888671875, + 5.7220458984375e-05, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":6072, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":6073, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":6074, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51409912109375, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":6075, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":6076, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":6077, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6078, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6079, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6080, + "componentType":5126, + "count":122, + "max":[ + 19.55224609375, + 40.31746292114258, + 17.7990779876709 + ], + "min":[ + -19.552249908447266, + 1.33514404296875e-05, + -17.8001766204834 + ], + "type":"VEC3" + }, + { + "bufferView":6081, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":6082, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":6083, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":6084, + "componentType":5126, + "count":60, + "max":[ + 4.245934009552002, + 13.413309097290039, + 3.7875030040740967 + ], + "min":[ + -4.245893478393555, + 0.000110626220703125, + -3.7875640392303467 + ], + "type":"VEC3" + }, + { + "bufferView":6085, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":6086, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":6087, + "componentType":5126, + "count":24, + "max":[ + 13.6923828125, + 34.440673828125, + 2314.280517578125 + ], + "min":[ + -13.6923828125, + -6.103515625e-05, + -2314.28125 + ], + "type":"VEC3" + }, + { + "bufferView":6088, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6089, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6090, + "componentType":5126, + "count":556, + "max":[ + 187.32032775878906, + 192.731689453125, + 163.24252319335938 + ], + "min":[ + -187.31944274902344, + 0.000152587890625, + -163.2425994873047 + ], + "type":"VEC3" + }, + { + "bufferView":6091, + "componentType":5126, + "count":556, + "type":"VEC3" + }, + { + "bufferView":6092, + "componentType":5126, + "count":560, + "max":[ + 194.32528686523438, + 32.825252532958984, + 194.32701110839844 + ], + "min":[ + -194.32896423339844, + 9.5367431640625e-05, + -194.3273162841797 + ], + "type":"VEC3" + }, + { + "bufferView":6093, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":6094, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6095, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6096, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6097, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6098, + "componentType":5126, + "count":582, + "max":[ + 171.77279663085938, + 112.81846618652344, + 178.9110565185547 + ], + "min":[ + -171.77450561523438, + 4.57763671875e-05, + -178.9112548828125 + ], + "type":"VEC3" + }, + { + "bufferView":6099, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":6100, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6101, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6102, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6103, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6104, + "componentType":5126, + "count":164, + "max":[ + 66.3214111328125, + 14332.2607421875, + 520.650390625 + ], + "min":[ + -66.323486328125, + 0.0010223388671875, + -520.650634765625 + ], + "type":"VEC3" + }, + { + "bufferView":6105, + "componentType":5126, + "count":164, + "type":"VEC3" + }, + { + "bufferView":6106, + "componentType":5126, + "count":164, + "type":"VEC2" + }, + { + "bufferView":6107, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6108, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6109, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6110, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76666259765625, + 78.5859375 + ], + "min":[ + -46.2822265625, + 0, + -78.58447265625 + ], + "type":"VEC3" + }, + { + "bufferView":6111, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6112, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6113, + "componentType":5126, + "count":119, + "max":[ + 40.60498046875, + 81.208984375, + 5725.87548828125 + ], + "min":[ + -40.60546875, + 0, + -5725.87548828125 + ], + "type":"VEC3" + }, + { + "bufferView":6114, + "componentType":5126, + "count":119, + "type":"VEC3" + }, + { + "bufferView":6115, + "componentType":5126, + "count":119, + "type":"VEC2" + }, + { + "bufferView":6116, + "componentType":5126, + "count":51, + "max":[ + 123.61669921875, + 696.755859375, + 366.15283203125 + ], + "min":[ + -123.61181640625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":6117, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":6118, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":6119, + "componentType":5126, + "count":181, + "max":[ + 769.70947265625, + 113.194580078125, + 56.59765625 + ], + "min":[ + -769.7080078125, + 0, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":6120, + "componentType":5126, + "count":181, + "type":"VEC3" + }, + { + "bufferView":6121, + "componentType":5126, + "count":181, + "type":"VEC2" + }, + { + "bufferView":6122, + "componentType":5126, + "count":559, + "max":[ + 224.27151489257812, + 447.58258056640625, + 223.79132080078125 + ], + "min":[ + -224.27151489257812, + -6.103515625e-05, + -223.7913055419922 + ], + "type":"VEC3" + }, + { + "bufferView":6123, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":6124, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":6125, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6126, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6127, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6128, + "componentType":5126, + "count":4, + "max":[ + 0, + 2586.479248046875, + 698.884033203125 + ], + "min":[ + 0, + 0, + -698.884521484375 + ], + "type":"VEC3" + }, + { + "bufferView":6129, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6130, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6131, + "componentType":5126, + "count":112, + "max":[ + 116.97066497802734, + 2149.27001953125, + 116.97098541259766 + ], + "min":[ + -116.97066497802734, + 0, + -116.97066497802734 + ], + "type":"VEC3" + }, + { + "bufferView":6132, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":6133, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51422119140625, + 22.7297420501709 + ], + "min":[ + -43.5888671875, + 5.7220458984375e-05, + -22.725955963134766 + ], + "type":"VEC3" + }, + { + "bufferView":6134, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":6135, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":6136, + "componentType":5126, + "count":8099, + "max":[ + 103.78759765625, + 429.962890625, + 496.1484375 + ], + "min":[ + -103.78662109375, + 0.0009765625, + -496.148681640625 + ], + "type":"VEC3" + }, + { + "bufferView":6137, + "componentType":5126, + "count":8099, + "type":"VEC3" + }, + { + "bufferView":6138, + "componentType":5126, + "count":8099, + "type":"VEC2" + }, + { + "bufferView":6139, + "componentType":5126, + "count":76, + "max":[ + 279.1005859375, + 3543.081787109375, + 278.86895751953125 + ], + "min":[ + -279.10284423828125, + 0, + -278.86810302734375 + ], + "type":"VEC3" + }, + { + "bufferView":6140, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":6141, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":6142, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":6143, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6144, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6145, + "componentType":5126, + "count":1660, + "max":[ + 433.12109375, + 367.92919921875, + 90.004150390625 + ], + "min":[ + -433.119140625, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":6146, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":6147, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":6148, + "componentType":5126, + "count":56, + "max":[ + 238.478515625, + 483.897705078125, + 30.0009765625 + ], + "min":[ + -238.4794921875, + 0, + -30 + ], + "type":"VEC3" + }, + { + "bufferView":6149, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":6150, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":6151, + "componentType":5126, + "count":571, + "max":[ + 173.53343200683594, + 250.2322540283203, + 156.03839111328125 + ], + "min":[ + -180.7439727783203, + 36.8148193359375, + -167.97125244140625 + ], + "type":"VEC3" + }, + { + "bufferView":6152, + "componentType":5126, + "count":571, + "type":"VEC3" + }, + { + "bufferView":6153, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6154, + "componentType":5126, + "count":24, + "max":[ + 35.000003814697266, + 2000, + 35.000003814697266 + ], + "min":[ + -35.000003814697266, + 0, + -35.000003814697266 + ], + "type":"VEC3" + }, + { + "bufferView":6155, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6156, + "componentType":5126, + "count":7724, + "max":[ + 496.306640625, + 427.46484375, + 103.7867431640625 + ], + "min":[ + -496.306396484375, + 0, + -103.786865234375 + ], + "type":"VEC3" + }, + { + "bufferView":6157, + "componentType":5126, + "count":7724, + "type":"VEC3" + }, + { + "bufferView":6158, + "componentType":5126, + "count":7724, + "type":"VEC2" + }, + { + "bufferView":6159, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":6160, + "componentType":5126, + "count":595, + "max":[ + 147.62928771972656, + 179.02798461914062, + 135.099365234375 + ], + "min":[ + -147.6327362060547, + 0.0001068115234375, + -135.099365234375 + ], + "type":"VEC3" + }, + { + "bufferView":6161, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":6162, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6163, + "componentType":5126, + "count":592, + "max":[ + 143.60861206054688, + 99.39439392089844, + 149.48057556152344 + ], + "min":[ + -143.60581970214844, + -6.103515625e-05, + -149.48060607910156 + ], + "type":"VEC3" + }, + { + "bufferView":6164, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":6165, + "componentType":5126, + "count":585, + "max":[ + 146.2916717529297, + 177.46481323242188, + 133.87660217285156 + ], + "min":[ + -146.28781127929688, + 7.62939453125e-05, + -133.87612915039062 + ], + "type":"VEC3" + }, + { + "bufferView":6166, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":6167, + "componentType":5126, + "count":585, + "max":[ + 174.45582580566406, + 210.29098510742188, + 159.55894470214844 + ], + "min":[ + -174.45655822753906, + -6.103515625e-05, + -159.55886840820312 + ], + "type":"VEC3" + }, + { + "bufferView":6168, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":6169, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6170, + "componentType":5126, + "count":120, + "max":[ + 31.293148040771484, + 15.511141777038574, + 6.5032501220703125 + ], + "min":[ + -31.29313850402832, + 3.6716461181640625e-05, + -6.5018310546875 + ], + "type":"VEC3" + }, + { + "bufferView":6171, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":6172, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":6173, + "componentType":5126, + "count":559, + "max":[ + 722.72265625, + 2637.3974609375, + 19.80198860168457 + ], + "min":[ + -722.720703125, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":6174, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":6175, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":6176, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6177, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6178, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6179, + "componentType":5126, + "count":1492, + "max":[ + 831.5908203125, + 3651.483642578125, + 381.8388671875 + ], + "min":[ + -635.6494140625, + 40.05810546875, + -381.837890625 + ], + "type":"VEC3" + }, + { + "bufferView":6180, + "componentType":5126, + "count":1492, + "type":"VEC3" + }, + { + "bufferView":6181, + "componentType":5126, + "count":1492, + "type":"VEC2" + }, + { + "bufferView":6182, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":6183, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":6184, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6185, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6186, + "componentType":5126, + "count":582, + "max":[ + 197.86923217773438, + 237.57696533203125, + 180.9071044921875 + ], + "min":[ + -197.86849975585938, + -9.1552734375e-05, + -180.9066925048828 + ], + "type":"VEC3" + }, + { + "bufferView":6187, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":6188, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6189, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6190, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6191, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":6192, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6193, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6194, + "componentType":5126, + "count":807, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45850372314453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45459747314453 + ], + "type":"VEC3" + }, + { + "bufferView":6195, + "componentType":5126, + "count":807, + "type":"VEC3" + }, + { + "bufferView":6196, + "componentType":5126, + "count":807, + "type":"VEC2" + }, + { + "bufferView":6197, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":6198, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76708984375, + 78.58447265625 + ], + "min":[ + -46.2822265625, + 0, + -78.5869140625 + ], + "type":"VEC3" + }, + { + "bufferView":6199, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6200, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6201, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":6202, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6203, + "componentType":5126, + "count":127, + "max":[ + 40.60498046875, + 81.2109375, + 5725.87646484375 + ], + "min":[ + -40.60546875, + 0, + -5725.875 + ], + "type":"VEC3" + }, + { + "bufferView":6204, + "componentType":5126, + "count":127, + "type":"VEC3" + }, + { + "bufferView":6205, + "componentType":5126, + "count":127, + "type":"VEC2" + }, + { + "bufferView":6206, + "componentType":5126, + "count":584, + "max":[ + 174.70864868164062, + 181.50741577148438, + 158.45965576171875 + ], + "min":[ + -174.70492553710938, + 1.2139205932617188, + -146.178955078125 + ], + "type":"VEC3" + }, + { + "bufferView":6207, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":6208, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6209, + "componentType":5126, + "count":362, + "max":[ + 131.3284912109375, + 220.878662109375, + 138.187255859375 + ], + "min":[ + -131.32923889160156, + 0, + -138.186279296875 + ], + "type":"VEC3" + }, + { + "bufferView":6210, + "componentType":5126, + "count":362, + "type":"VEC3" + }, + { + "bufferView":6211, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":6212, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6213, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6214, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6215, + "componentType":5126, + "count":584, + "max":[ + 180.31166076660156, + 185.82171630859375, + 157.174072265625 + ], + "min":[ + -180.3135223388672, + 0.0001678466796875, + -157.17410278320312 + ], + "type":"VEC3" + }, + { + "bufferView":6216, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":6217, + "componentType":5126, + "count":137, + "max":[ + 40.6044921875, + 81.2109375, + 5085.66357421875 + ], + "min":[ + -40.60546875, + 0, + -5085.66357421875 + ], + "type":"VEC3" + }, + { + "bufferView":6218, + "componentType":5126, + "count":137, + "type":"VEC3" + }, + { + "bufferView":6219, + "componentType":5126, + "count":137, + "type":"VEC2" + }, + { + "bufferView":6220, + "componentType":5126, + "count":204, + "max":[ + 331.70587158203125, + 5424.3125, + 678.6790771484375 + ], + "min":[ + -331.70440673828125, + 0.000244140625, + -678.67724609375 + ], + "type":"VEC3" + }, + { + "bufferView":6221, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":6222, + "componentType":5123, + "count":1068, + "type":"SCALAR" + }, + { + "bufferView":6223, + "componentType":5126, + "count":226, + "max":[ + 147.06719970703125, + 323.5045166015625, + 131.37371826171875 + ], + "min":[ + -146.29783630371094, + 42.47633361816406, + -130.9872589111328 + ], + "type":"VEC3" + }, + { + "bufferView":6224, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":6225, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":6226, + "componentType":5126, + "count":586, + "max":[ + 169.10015869140625, + 174.7655029296875, + 147.4644775390625 + ], + "min":[ + -169.1017303466797, + -0.00016021728515625, + -147.46449279785156 + ], + "type":"VEC3" + }, + { + "bufferView":6227, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":6228, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6229, + "componentType":5126, + "count":353, + "max":[ + 170.4345703125, + 188.5556640625, + 176.205078125 + ], + "min":[ + -170.4345703125, + 45.29638671875, + -176.2021484375 + ], + "type":"VEC3" + }, + { + "bufferView":6230, + "componentType":5126, + "count":353, + "type":"VEC3" + }, + { + "bufferView":6231, + "componentType":5126, + "count":353, + "type":"VEC2" + }, + { + "bufferView":6232, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":6233, + "componentType":5126, + "count":88, + "max":[ + 30.26416015625, + 32.2479248046875, + 126.460693359375 + ], + "min":[ + -30.265625, + 0.0001220703125, + -126.45849609375 + ], + "type":"VEC3" + }, + { + "bufferView":6234, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":6235, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":6236, + "componentType":5126, + "count":353, + "max":[ + 171.2978515625, + 184.8017578125, + 176.13916015625 + ], + "min":[ + -171.2978515625, + 44.4541015625, + -176.142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":6237, + "componentType":5126, + "count":353, + "type":"VEC3" + }, + { + "bufferView":6238, + "componentType":5126, + "count":353, + "type":"VEC2" + }, + { + "bufferView":6239, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":6240, + "componentType":5126, + "count":598, + "max":[ + 158.7805938720703, + 229.95777893066406, + 142.5860595703125 + ], + "min":[ + -165.98907470703125, + 33.735084533691406, + -154.51805114746094 + ], + "type":"VEC3" + }, + { + "bufferView":6241, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":6242, + "componentType":5126, + "count":24, + "max":[ + 516.6122436523438, + 50, + 3248.447265625 + ], + "min":[ + -516.6124267578125, + -7.62939453125e-06, + -3248.444091796875 + ], + "type":"VEC3" + }, + { + "bufferView":6243, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6244, + "componentType":5126, + "count":588, + "max":[ + 189.62779235839844, + 272.3504638671875, + 170.71463012695312 + ], + "min":[ + -196.83981323242188, + 40.17518615722656, + -182.64645385742188 + ], + "type":"VEC3" + }, + { + "bufferView":6245, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":6246, + "componentType":5126, + "count":238, + "max":[ + 169.10693359375, + 196.2138671875, + 175.0537109375 + ], + "min":[ + -169.1068115234375, + -0.000244140625, + -175.05322265625 + ], + "type":"VEC3" + }, + { + "bufferView":6247, + "componentType":5126, + "count":238, + "type":"VEC3" + }, + { + "bufferView":6248, + "componentType":5126, + "count":238, + "type":"VEC2" + }, + { + "bufferView":6249, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6250, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6251, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6252, + "componentType":5126, + "count":24, + "max":[ + 350, + 1016.5, + 350 + ], + "min":[ + -350, + 0, + -350 + ], + "type":"VEC3" + }, + { + "bufferView":6253, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6254, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6255, + "componentType":5126, + "count":224, + "max":[ + 118.72103118896484, + 230.17282104492188, + 115.0865478515625 + ], + "min":[ + -118.72062683105469, + -2.288818359375e-05, + -115.08647155761719 + ], + "type":"VEC3" + }, + { + "bufferView":6256, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":6257, + "componentType":5126, + "count":559, + "max":[ + 224.27151489257812, + 530.1519775390625, + 223.79135131835938 + ], + "min":[ + -224.27151489257812, + 82.56924438476562, + -223.79135131835938 + ], + "type":"VEC3" + }, + { + "bufferView":6258, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":6259, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":6260, + "componentType":5126, + "count":24, + "max":[ + 35.000003814697266, + 2000, + 35.000003814697266 + ], + "min":[ + -35.000003814697266, + 0, + -35.000003814697266 + ], + "type":"VEC3" + }, + { + "bufferView":6261, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6262, + "componentType":5126, + "count":119, + "max":[ + 31.290660858154297, + 15.511075973510742, + 6.1126251220703125 + ], + "min":[ + -31.290639877319336, + -1.430511474609375e-06, + -6.112213134765625 + ], + "type":"VEC3" + }, + { + "bufferView":6263, + "componentType":5126, + "count":119, + "type":"VEC3" + }, + { + "bufferView":6264, + "componentType":5126, + "count":119, + "type":"VEC2" + }, + { + "bufferView":6265, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":6266, + "componentType":5126, + "count":586, + "max":[ + 170.50135803222656, + 176.14767456054688, + 148.67822265625 + ], + "min":[ + -170.50344848632812, + 0.0001373291015625, + -148.67819213867188 + ], + "type":"VEC3" + }, + { + "bufferView":6267, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":6268, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6269, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6270, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6271, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6272, + "componentType":5126, + "count":24, + "max":[ + 65.33050537109375, + 83.3427734375, + 789.6715698242188 + ], + "min":[ + -65.33306884765625, + 0, + -789.6710815429688 + ], + "type":"VEC3" + }, + { + "bufferView":6273, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6274, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6275, + "componentType":5126, + "count":340, + "max":[ + 45.85816955566406, + 228.09585571289062, + 115.35120391845703 + ], + "min":[ + -45.856754302978516, + 0.5610198974609375, + -115.35125732421875 + ], + "type":"VEC3" + }, + { + "bufferView":6276, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":6277, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":6278, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6279, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6280, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6281, + "componentType":5126, + "count":264, + "max":[ + 175.05322265625, + 196.21435546875, + 169.1068115234375 + ], + "min":[ + -175.0537109375, + 0, + -169.10693359375 + ], + "type":"VEC3" + }, + { + "bufferView":6282, + "componentType":5126, + "count":264, + "type":"VEC3" + }, + { + "bufferView":6283, + "componentType":5126, + "count":264, + "type":"VEC2" + }, + { + "bufferView":6284, + "componentType":5126, + "count":1153, + "max":[ + 65.60057830810547, + 185.22500610351562, + 5.788296699523926 + ], + "min":[ + -65.6004867553711, + -3.0517578125e-05, + -5.788368225097656 + ], + "type":"VEC3" + }, + { + "bufferView":6285, + "componentType":5126, + "count":1153, + "type":"VEC3" + }, + { + "bufferView":6286, + "componentType":5126, + "count":1153, + "type":"VEC2" + }, + { + "bufferView":6287, + "componentType":5126, + "count":568, + "max":[ + 202.81089782714844, + 129.75909423828125, + 211.3397216796875 + ], + "min":[ + -202.80819702148438, + -7.62939453125e-05, + -211.3401336669922 + ], + "type":"VEC3" + }, + { + "bufferView":6288, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":6289, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6290, + "componentType":5126, + "count":548, + "max":[ + 7.778961181640625, + 21.312030792236328, + 10.655908584594727 + ], + "min":[ + -7.7789130210876465, + 0.00021648406982421875, + -10.65590763092041 + ], + "type":"VEC3" + }, + { + "bufferView":6291, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":6292, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":6293, + "componentType":5126, + "count":224, + "max":[ + 115.35120391845703, + 230.70260620117188, + 118.72087097167969 + ], + "min":[ + -115.35124969482422, + -3.814697265625e-05, + -118.72079467773438 + ], + "type":"VEC3" + }, + { + "bufferView":6294, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":6295, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":6296, + "componentType":5126, + "count":264, + "max":[ + 175.05322265625, + 196.21435546875, + 169.1068115234375 + ], + "min":[ + -175.0537109375, + 0, + -169.10693359375 + ], + "type":"VEC3" + }, + { + "bufferView":6297, + "componentType":5126, + "count":264, + "type":"VEC3" + }, + { + "bufferView":6298, + "componentType":5126, + "count":264, + "type":"VEC2" + }, + { + "bufferView":6299, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6300, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6301, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6302, + "componentType":5126, + "count":592, + "max":[ + 167.6999969482422, + 173.38357543945312, + 146.25083923339844 + ], + "min":[ + -167.6990203857422, + 4.57763671875e-05, + -146.2508544921875 + ], + "type":"VEC3" + }, + { + "bufferView":6303, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":6304, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6305, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6306, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6307, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6308, + "componentType":5126, + "count":720, + "max":[ + 36.197998046875, + 520.969482421875, + 260.4848937988281 + ], + "min":[ + -36.197998046875, + -0.0003662109375, + -260.4848937988281 + ], + "type":"VEC3" + }, + { + "bufferView":6309, + "componentType":5126, + "count":720, + "type":"VEC3" + }, + { + "bufferView":6310, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.07373046875 + ], + "min":[ + -27.193359375, + 0, + -126.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":6311, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6312, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6313, + "componentType":5126, + "count":262, + "max":[ + 174.408203125, + 193.25439453125, + 169.06298828125 + ], + "min":[ + -174.408203125, + 0, + -169.0628662109375 + ], + "type":"VEC3" + }, + { + "bufferView":6314, + "componentType":5126, + "count":262, + "type":"VEC3" + }, + { + "bufferView":6315, + "componentType":5126, + "count":262, + "type":"VEC2" + }, + { + "bufferView":6316, + "componentType":5126, + "count":325, + "max":[ + 170.90625, + 157.000732421875, + 177.25439453125 + ], + "min":[ + -170.9033203125, + 21.2890625, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":6317, + "componentType":5126, + "count":325, + "type":"VEC3" + }, + { + "bufferView":6318, + "componentType":5126, + "count":325, + "type":"VEC2" + }, + { + "bufferView":6319, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":6320, + "componentType":5126, + "count":580, + "max":[ + 154.33766174316406, + 186.84390258789062, + 141.2141876220703 + ], + "min":[ + -154.33688354492188, + 0.0001373291015625, + -141.2140655517578 + ], + "type":"VEC3" + }, + { + "bufferView":6321, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":6322, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6323, + "componentType":5126, + "count":581, + "max":[ + 194.1539306640625, + 123.23870086669922, + 198.53135681152344 + ], + "min":[ + -186.9486541748047, + 0.8034515380859375, + -198.53167724609375 + ], + "type":"VEC3" + }, + { + "bufferView":6324, + "componentType":5126, + "count":581, + "type":"VEC3" + }, + { + "bufferView":6325, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6326, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6327, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6328, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6329, + "componentType":5126, + "count":142, + "max":[ + 3.4517722129821777, + 18.94533348083496, + 9.472701072692871 + ], + "min":[ + -3.451794385910034, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":6330, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":6331, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":6332, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6333, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6334, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6335, + "componentType":5126, + "count":1050, + "max":[ + 90.1090087890625, + 76.19921875, + 125.22607421875 + ], + "min":[ + -90.109130859375, + 0, + -125.22607421875 + ], + "type":"VEC3" + }, + { + "bufferView":6336, + "componentType":5126, + "count":1050, + "type":"VEC3" + }, + { + "bufferView":6337, + "componentType":5126, + "count":1050, + "type":"VEC2" + }, + { + "bufferView":6338, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6339, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6340, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6341, + "componentType":5126, + "count":580, + "max":[ + 162.09307861328125, + 168.9784393310547, + 147.53616333007812 + ], + "min":[ + -162.0943145751953, + 1.1229324340820312, + -135.2559051513672 + ], + "type":"VEC3" + }, + { + "bufferView":6342, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":6343, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6344, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.144287109375, + 360.898193359375 + ], + "min":[ + -8.345703125, + 0, + -360.896484375 + ], + "type":"VEC3" + }, + { + "bufferView":6345, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":6346, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":6347, + "componentType":5126, + "count":24, + "max":[ + 126.07373046875, + 130.123046875, + 27.1943359375 + ], + "min":[ + -126.0732421875, + 0, + -27.193359375 + ], + "type":"VEC3" + }, + { + "bufferView":6348, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6349, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6350, + "componentType":5126, + "count":1023, + "max":[ + 29.78515625, + 254.306640625, + 90.10888671875 + ], + "min":[ + -29.787109375, + 1.31201171875, + -90.109375 + ], + "type":"VEC3" + }, + { + "bufferView":6351, + "componentType":5126, + "count":1023, + "type":"VEC3" + }, + { + "bufferView":6352, + "componentType":5126, + "count":1023, + "type":"VEC2" + }, + { + "bufferView":6353, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":6354, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92926025390625, + 384.58251953125 + ], + "min":[ + -244.466796875, + -6.103515625e-05, + -384.5790710449219 + ], + "type":"VEC3" + }, + { + "bufferView":6355, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":6356, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":6357, + "componentType":5126, + "count":24, + "max":[ + 135.7646942138672, + 537.346923828125, + 12.500043869018555 + ], + "min":[ + -135.7646942138672, + 3.0517578125e-05, + -12.500043869018555 + ], + "type":"VEC3" + }, + { + "bufferView":6358, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6359, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":6360, + "componentType":5126, + "count":49, + "max":[ + 161.98095703125, + 658.67578125, + 366.15283203125 + ], + "min":[ + -161.97900390625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":6361, + "componentType":5126, + "count":49, + "type":"VEC3" + }, + { + "bufferView":6362, + "componentType":5126, + "count":49, + "type":"VEC2" + }, + { + "bufferView":6363, + "componentType":5126, + "count":98, + "max":[ + 35.91145324707031, + 822, + 73.0061264038086 + ], + "min":[ + -35.9130973815918, + -2.842963658622466e-05, + -73.00641632080078 + ], + "type":"VEC3" + }, + { + "bufferView":6364, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":6365, + "componentType":5123, + "count":252, + "type":"SCALAR" + }, + { + "bufferView":6366, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":6367, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":6368, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":6369, + "componentType":5126, + "count":579, + "max":[ + 166.40672302246094, + 110.26168823242188, + 173.3052520751953 + ], + "min":[ + -166.41053771972656, + 0.00018310546875, + -173.30545043945312 + ], + "type":"VEC3" + }, + { + "bufferView":6370, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":6371, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6372, + "componentType":5126, + "count":535, + "max":[ + 241.77294921875, + 751.646484375, + 774.029296875 + ], + "min":[ + -241.77197265625, + -0.000732421875, + -774.02783203125 + ], + "type":"VEC3" + }, + { + "bufferView":6373, + "componentType":5126, + "count":535, + "type":"VEC3" + }, + { + "bufferView":6374, + "componentType":5126, + "count":535, + "type":"VEC2" + }, + { + "bufferView":6375, + "componentType":5126, + "count":136, + "max":[ + 80.153076171875, + 126.6884765625, + 49.03466796875 + ], + "min":[ + -80.153076171875, + 0, + -49.03564453125 + ], + "type":"VEC3" + }, + { + "bufferView":6376, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":6377, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":6378, + "componentType":5126, + "count":488, + "max":[ + 879.658203125, + 587.0330810546875, + 879.6582641601562 + ], + "min":[ + -879.662109375, + 9.1552734375e-05, + -879.6621704101562 + ], + "type":"VEC3" + }, + { + "bufferView":6379, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":6380, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":6381, + "componentType":5126, + "count":591, + "max":[ + 156.09751892089844, + 226.27139282226562, + 140.14010620117188 + ], + "min":[ + -163.30712890625, + 33.175025939941406, + -152.07205200195312 + ], + "type":"VEC3" + }, + { + "bufferView":6382, + "componentType":5126, + "count":591, + "type":"VEC3" + }, + { + "bufferView":6383, + "componentType":5126, + "count":4, + "max":[ + 0, + 2586.479248046875, + 698.885986328125 + ], + "min":[ + 0, + 0, + -698.8828125 + ], + "type":"VEC3" + }, + { + "bufferView":6384, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6385, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6386, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6387, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6388, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6389, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6390, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6391, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6392, + "componentType":5126, + "count":125, + "max":[ + 3.8606996536254883, + 15.442764282226562, + 7.721350193023682 + ], + "min":[ + -3.860643148422241, + 8.249282836914062e-05, + -7.721330165863037 + ], + "type":"VEC3" + }, + { + "bufferView":6393, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":6394, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":6395, + "componentType":5126, + "count":1420, + "max":[ + 244.466796875, + 367.92926025390625, + 384.57861328125 + ], + "min":[ + -244.46875, + 0, + -384.5820007324219 + ], + "type":"VEC3" + }, + { + "bufferView":6396, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":6397, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":6398, + "componentType":5126, + "count":574, + "max":[ + 188.72206115722656, + 194.11349487304688, + 164.4562225341797 + ], + "min":[ + -188.72061157226562, + -4.57763671875e-05, + -164.45632934570312 + ], + "type":"VEC3" + }, + { + "bufferView":6399, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":6400, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6401, + "componentType":5126, + "count":24, + "max":[ + 159.6669921875, + 25.890380859375, + 6691.4453125 + ], + "min":[ + -159.666015625, + 0.000732421875, + -6691.44482421875 + ], + "type":"VEC3" + }, + { + "bufferView":6402, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6403, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6404, + "componentType":5126, + "count":204, + "max":[ + 2516.907958984375, + 2457.23876953125, + 120.91043853759766 + ], + "min":[ + -2516.90869140625, + 0, + -120.9102554321289 + ], + "type":"VEC3" + }, + { + "bufferView":6405, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":6406, + "componentType":5123, + "count":1068, + "type":"SCALAR" + }, + { + "bufferView":6407, + "componentType":5126, + "count":234, + "max":[ + 91.49453735351562, + 2267.8251953125, + 91.49449920654297 + ], + "min":[ + -91.49444580078125, + 9.918212890625e-05, + -91.49444580078125 + ], + "type":"VEC3" + }, + { + "bufferView":6408, + "componentType":5126, + "count":234, + "type":"VEC3" + }, + { + "bufferView":6409, + "componentType":5126, + "count":340, + "max":[ + 45.85676574707031, + 227.53482055664062, + 115.35122680664062 + ], + "min":[ + -45.858154296875, + -7.62939453125e-06, + -115.35122680664062 + ], + "type":"VEC3" + }, + { + "bufferView":6410, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":6411, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":6412, + "componentType":5126, + "count":12, + "max":[ + 411.462890625, + 388.941162109375, + 9.51611328125 + ], + "min":[ + -411.462890625, + 0, + -9.5142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":6413, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":6414, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":6415, + "componentType":5126, + "count":590, + "max":[ + 159.28961181640625, + 165.0919189453125, + 138.96868896484375 + ], + "min":[ + -159.29193115234375, + 0.0001678466796875, + -138.96868896484375 + ], + "type":"VEC3" + }, + { + "bufferView":6416, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":6417, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6418, + "componentType":5126, + "count":347, + "max":[ + 171.2998046875, + 184.80908203125, + 176.140625 + ], + "min":[ + -171.296875, + 44.4580078125, + -176.1416015625 + ], + "type":"VEC3" + }, + { + "bufferView":6419, + "componentType":5126, + "count":347, + "type":"VEC3" + }, + { + "bufferView":6420, + "componentType":5126, + "count":347, + "type":"VEC2" + }, + { + "bufferView":6421, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":6422, + "componentType":5126, + "count":865, + "max":[ + 7.779087543487549, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778796672821045, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":6423, + "componentType":5126, + "count":865, + "type":"VEC3" + }, + { + "bufferView":6424, + "componentType":5126, + "count":865, + "type":"VEC2" + }, + { + "bufferView":6425, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7294979095459 + ], + "min":[ + -43.5888671875, + 0.000118255615234375, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":6426, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":6427, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":6428, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6429, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6430, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6431, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6432, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6433, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6434, + "componentType":5126, + "count":559, + "max":[ + 7.3659987449646, + 14.731964111328125, + 2.095486640930176 + ], + "min":[ + -7.36604642868042, + -8.249282836914062e-05, + -2.0954651832580566 + ], + "type":"VEC3" + }, + { + "bufferView":6435, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":6436, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":6437, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6438, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6439, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6440, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6441, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6442, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6443, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6444, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6445, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6446, + "componentType":5126, + "count":232, + "max":[ + 169.06298828125, + 193.254638671875, + 174.40771484375 + ], + "min":[ + -169.0628662109375, + 0, + -174.408203125 + ], + "type":"VEC3" + }, + { + "bufferView":6447, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":6448, + "componentType":5126, + "count":232, + "type":"VEC2" + }, + { + "bufferView":6449, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":6450, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6451, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6452, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6453, + "componentType":5126, + "count":576, + "max":[ + 193.23324584960938, + 232.17510986328125, + 176.68064880371094 + ], + "min":[ + -193.23434448242188, + -6.103515625e-05, + -176.6804962158203 + ], + "type":"VEC3" + }, + { + "bufferView":6454, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":6455, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6456, + "componentType":5126, + "count":136, + "max":[ + 242.853515625, + 131.9609375, + 239.70703125 + ], + "min":[ + -242.8505859375, + 0, + -239.705078125 + ], + "type":"VEC3" + }, + { + "bufferView":6457, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":6458, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":6459, + "componentType":5123, + "count":252, + "type":"SCALAR" + }, + { + "bufferView":6460, + "componentType":5126, + "count":580, + "max":[ + 150.7314453125, + 218.8985595703125, + 135.24815368652344 + ], + "min":[ + -157.94313049316406, + 32.054840087890625, + -147.18019104003906 + ], + "type":"VEC3" + }, + { + "bufferView":6461, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":6462, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6463, + "componentType":5126, + "count":585, + "max":[ + 166.8297119140625, + 241.0164794921875, + 149.9239501953125 + ], + "min":[ + -174.03504943847656, + 35.41490936279297, + -161.85589599609375 + ], + "type":"VEC3" + }, + { + "bufferView":6464, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":6465, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6466, + "componentType":5126, + "count":590, + "max":[ + 192.61654663085938, + 276.45672607421875, + 173.439208984375 + ], + "min":[ + -199.82736206054688, + 40.79896545410156, + -185.37115478515625 + ], + "type":"VEC3" + }, + { + "bufferView":6467, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":6468, + "componentType":5126, + "count":24, + "max":[ + 292.4480895996094, + 205.86782836914062, + 292.42657470703125 + ], + "min":[ + -292.4480895996094, + 7.62939453125e-05, + -292.4267578125 + ], + "type":"VEC3" + }, + { + "bufferView":6469, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6470, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6471, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7297420501709 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.725955963134766 + ], + "type":"VEC3" + }, + { + "bufferView":6472, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":6473, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":6474, + "componentType":5126, + "count":76, + "max":[ + 279.10015869140625, + 3543.081787109375, + 278.8675537109375 + ], + "min":[ + -279.1027526855469, + 0, + -278.8695373535156 + ], + "type":"VEC3" + }, + { + "bufferView":6475, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":6476, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":6477, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":6478, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6479, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6480, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92926025390625, + 384.1396484375 + ], + "min":[ + -245.232421875, + -6.103515625e-05, + -384.1410827636719 + ], + "type":"VEC3" + }, + { + "bufferView":6481, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":6482, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":6483, + "componentType":5126, + "count":54, + "max":[ + 217.04052734375, + 520.125244140625, + 29.798828125 + ], + "min":[ + -217.04150390625, + 0.000244140625, + -29.798828125 + ], + "type":"VEC3" + }, + { + "bufferView":6484, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":6485, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":6486, + "componentType":5126, + "count":578, + "max":[ + 172.19187927246094, + 248.38929748535156, + 154.8153839111328 + ], + "min":[ + -179.40296936035156, + 36.535125732421875, + -166.7482452392578 + ], + "type":"VEC3" + }, + { + "bufferView":6487, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":6488, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6489, + "componentType":5126, + "count":76, + "max":[ + 278.86810302734375, + 3543.081787109375, + 279.1005859375 + ], + "min":[ + -278.86895751953125, + 0, + -279.10284423828125 + ], + "type":"VEC3" + }, + { + "bufferView":6490, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":6491, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":6492, + "componentType":5126, + "count":24, + "max":[ + 110.00011444091797, + 50, + 584.662109375 + ], + "min":[ + -110.00007629394531, + 0, + -584.666015625 + ], + "type":"VEC3" + }, + { + "bufferView":6493, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6494, + "componentType":5126, + "count":564, + "max":[ + 204.45657348632812, + 32.82526779174805, + 204.45675659179688 + ], + "min":[ + -204.45677185058594, + 0.0001068115234375, + -204.45663452148438 + ], + "type":"VEC3" + }, + { + "bufferView":6495, + "componentType":5126, + "count":564, + "type":"VEC3" + }, + { + "bufferView":6496, + "componentType":5126, + "count":24, + "max":[ + 35.000160217285156, + 2000, + 35.000160217285156 + ], + "min":[ + -35.000160217285156, + 0, + -35.000160217285156 + ], + "type":"VEC3" + }, + { + "bufferView":6497, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6498, + "componentType":5126, + "count":24, + "max":[ + 182.4747314453125, + 47.838134765625, + 502.0746154785156 + ], + "min":[ + -182.47537231445312, + -0.000244140625, + -502.07452392578125 + ], + "type":"VEC3" + }, + { + "bufferView":6499, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6500, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6501, + "componentType":5126, + "count":621, + "max":[ + 144.9501190185547, + 175.90155029296875, + 132.65357971191406 + ], + "min":[ + -144.9468231201172, + 0.0001678466796875, + -132.65316772460938 + ], + "type":"VEC3" + }, + { + "bufferView":6502, + "componentType":5126, + "count":621, + "type":"VEC3" + }, + { + "bufferView":6503, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6504, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6505, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6506, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6507, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51409912109375, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":6508, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":6509, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":6510, + "componentType":5126, + "count":240, + "max":[ + 400.007080078125, + 2203.110595703125, + 91.49455261230469 + ], + "min":[ + -400.009521484375, + -0.0001220703125, + -91.49444580078125 + ], + "type":"VEC3" + }, + { + "bufferView":6511, + "componentType":5126, + "count":240, + "type":"VEC3" + }, + { + "bufferView":6512, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":6513, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":6514, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":6515, + "componentType":5126, + "count":588, + "max":[ + 196.2220001220703, + 235.65760803222656, + 179.40536499023438 + ], + "min":[ + -196.22190856933594, + -6.103515625e-05, + -179.40505981445312 + ], + "type":"VEC3" + }, + { + "bufferView":6516, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":6517, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6518, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6519, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6520, + "componentType":5126, + "count":331, + "max":[ + 170.90625, + 157.00390625, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":6521, + "componentType":5126, + "count":331, + "type":"VEC3" + }, + { + "bufferView":6522, + "componentType":5126, + "count":331, + "type":"VEC2" + }, + { + "bufferView":6523, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":6524, + "componentType":5126, + "count":815, + "max":[ + 4.1318359375, + 90.58740997314453, + 34.45850372314453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45459747314453 + ], + "type":"VEC3" + }, + { + "bufferView":6525, + "componentType":5126, + "count":815, + "type":"VEC3" + }, + { + "bufferView":6526, + "componentType":5126, + "count":815, + "type":"VEC2" + }, + { + "bufferView":6527, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":6528, + "componentType":5126, + "count":577, + "max":[ + 183.84652709960938, + 118.57159423828125, + 191.52410888671875 + ], + "min":[ + -183.84349060058594, + 0.00011444091796875, + -191.5244140625 + ], + "type":"VEC3" + }, + { + "bufferView":6529, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":6530, + "componentType":5126, + "count":338, + "max":[ + 171.298828125, + 184.80615234375, + 176.140380859375 + ], + "min":[ + -171.296875, + 44.455078125, + -176.1416015625 + ], + "type":"VEC3" + }, + { + "bufferView":6531, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":6532, + "componentType":5126, + "count":338, + "type":"VEC2" + }, + { + "bufferView":6533, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":6534, + "componentType":5126, + "count":1392, + "max":[ + 12.50003719329834, + 362.87994384765625, + 512.4300537109375 + ], + "min":[ + -12.500016212463379, + -1.2874603271484375e-05, + -512.4300537109375 + ], + "type":"VEC3" + }, + { + "bufferView":6535, + "componentType":5126, + "count":1392, + "type":"VEC3" + }, + { + "bufferView":6536, + "componentType":5126, + "count":1488, + "max":[ + 831.546875, + 116.23333740234375, + 746.10400390625 + ], + "min":[ + -831.544921875, + 5.7220458984375e-05, + -746.1015625 + ], + "type":"VEC3" + }, + { + "bufferView":6537, + "componentType":5126, + "count":1488, + "type":"VEC3" + }, + { + "bufferView":6538, + "componentType":5126, + "count":1488, + "type":"VEC2" + }, + { + "bufferView":6539, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6540, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6541, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6542, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6543, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6544, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6545, + "componentType":5126, + "count":51, + "max":[ + 161.97705078125, + 658.67578125, + 366.15283203125 + ], + "min":[ + -161.98291015625, + 0, + -366.152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6546, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":6547, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":6548, + "componentType":5126, + "count":338, + "max":[ + 45.85808563232422, + 271.1289978027344, + 115.62043762207031 + ], + "min":[ + -45.85676956176758, + 42.95967102050781, + -115.62026977539062 + ], + "type":"VEC3" + }, + { + "bufferView":6549, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":6550, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":6551, + "componentType":5126, + "count":136, + "max":[ + 242.8515625, + 131.9609375, + 239.7060546875 + ], + "min":[ + -242.8525390625, + 0, + -239.7060546875 + ], + "type":"VEC3" + }, + { + "bufferView":6552, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":6553, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":6554, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":6555, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6556, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6557, + "componentType":5126, + "count":586, + "max":[ + 167.6990203857422, + 173.38360595703125, + 146.2508087158203 + ], + "min":[ + -167.6999969482422, + 3.814697265625e-05, + -146.25079345703125 + ], + "type":"VEC3" + }, + { + "bufferView":6558, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":6559, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6560, + "componentType":5126, + "count":345, + "max":[ + 170.435546875, + 188.558349609375, + 176.20361328125 + ], + "min":[ + -170.43359375, + 45.296630859375, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":6561, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":6562, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":6563, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":6564, + "componentType":5126, + "count":583, + "max":[ + 150.8831329345703, + 157.842041015625, + 137.82708740234375 + ], + "min":[ + -150.88096618652344, + 1.0424041748046875, + -125.54588317871094 + ], + "type":"VEC3" + }, + { + "bufferView":6565, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":6566, + "componentType":5126, + "count":76, + "max":[ + 279.1072998046875, + 3543.081787109375, + 278.8729248046875 + ], + "min":[ + -279.10540771484375, + 0, + -278.8734130859375 + ], + "type":"VEC3" + }, + { + "bufferView":6567, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":6568, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":6569, + "componentType":5126, + "count":92, + "max":[ + 22.05029296875, + 77.637451171875, + 30.451416015625 + ], + "min":[ + -22.0517578125, + 0.000244140625, + -30.44921875 + ], + "type":"VEC3" + }, + { + "bufferView":6570, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":6571, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":6572, + "componentType":5126, + "count":597, + "max":[ + 144.95013427734375, + 100.0341796875, + 150.8820343017578 + ], + "min":[ + -144.94680786132812, + 0.0001678466796875, + -150.882080078125 + ], + "type":"VEC3" + }, + { + "bufferView":6573, + "componentType":5126, + "count":597, + "type":"VEC3" + }, + { + "bufferView":6574, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6575, + "componentType":5126, + "count":797, + "max":[ + 4.1318359375, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":6576, + "componentType":5126, + "count":797, + "type":"VEC3" + }, + { + "bufferView":6577, + "componentType":5126, + "count":797, + "type":"VEC2" + }, + { + "bufferView":6578, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":6579, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":6580, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6581, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6582, + "componentType":5126, + "count":582, + "max":[ + 188.29019165039062, + 270.5072021484375, + 169.49169921875 + ], + "min":[ + -195.49488830566406, + 39.895111083984375, + -181.42343139648438 + ], + "type":"VEC3" + }, + { + "bufferView":6583, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":6584, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":6585, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":6586, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":6587, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6588, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6589, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6590, + "componentType":5126, + "count":136, + "max":[ + 242.8515625, + 131.9609375, + 239.7054443359375 + ], + "min":[ + -242.8525390625, + 0, + -239.7064208984375 + ], + "type":"VEC3" + }, + { + "bufferView":6591, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":6592, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":6593, + "componentType":5126, + "count":602, + "max":[ + 325.56951904296875, + 506.26312255859375, + 332.9397277832031 + ], + "min":[ + -325.5695495605469, + 1.6454315185546875, + -332.93988037109375 + ], + "type":"VEC3" + }, + { + "bufferView":6594, + "componentType":5126, + "count":602, + "type":"VEC3" + }, + { + "bufferView":6595, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6596, + "componentType":5126, + "count":24, + "max":[ + 46.290279388427734, + 2000, + 46.290279388427734 + ], + "min":[ + -46.290279388427734, + 0, + -46.290279388427734 + ], + "type":"VEC3" + }, + { + "bufferView":6597, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6598, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":6599, + "componentType":5126, + "count":1023, + "max":[ + 29.78515625, + 254.306640625, + 90.10888671875 + ], + "min":[ + -29.787109375, + 1.31201171875, + -90.109375 + ], + "type":"VEC3" + }, + { + "bufferView":6600, + "componentType":5126, + "count":1023, + "type":"VEC3" + }, + { + "bufferView":6601, + "componentType":5126, + "count":1023, + "type":"VEC2" + }, + { + "bufferView":6602, + "componentType":5126, + "count":122, + "max":[ + 31.29064178466797, + 15.511200904846191, + 6.1123199462890625 + ], + "min":[ + -31.290664672851562, + -1.239776611328125e-05, + -6.1129913330078125 + ], + "type":"VEC3" + }, + { + "bufferView":6603, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":6604, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":6605, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":6606, + "componentType":5126, + "count":24, + "max":[ + 253.74313354492188, + 50, + 584.666015625 + ], + "min":[ + -253.7429962158203, + -8.255030479631387e-06, + -584.6621704101562 + ], + "type":"VEC3" + }, + { + "bufferView":6607, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6608, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6609, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6610, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6611, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 253.74371337890625 + ], + "min":[ + -463.990234375, + -8.255030479631387e-06, + -253.7421875 + ], + "type":"VEC3" + }, + { + "bufferView":6612, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6613, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.455810546875, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":6614, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":6615, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":6616, + "componentType":5126, + "count":121, + "max":[ + 7.3453369140625, + 706.9150390625, + 7.3460693359375 + ], + "min":[ + -7.3460693359375, + 0, + -7.3450927734375 + ], + "type":"VEC3" + }, + { + "bufferView":6617, + "componentType":5126, + "count":121, + "type":"VEC3" + }, + { + "bufferView":6618, + "componentType":5126, + "count":121, + "type":"VEC2" + }, + { + "bufferView":6619, + "componentType":5126, + "count":224, + "max":[ + 147.0633544921875, + 289.6347351074219, + 115.35121154785156 + ], + "min":[ + -146.3017578125, + 0.76043701171875, + -115.35125732421875 + ], + "type":"VEC3" + }, + { + "bufferView":6620, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":6621, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":6622, + "componentType":5126, + "count":60, + "max":[ + 2752.0029296875, + 2819.531005859375, + 1436.7666015625 + ], + "min":[ + -2752.0029296875, + 0, + -1436.763671875 + ], + "type":"VEC3" + }, + { + "bufferView":6623, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":6624, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":6625, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6626, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6627, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6628, + "componentType":5126, + "count":576, + "max":[ + 156.4861602783203, + 163.41033935546875, + 142.6815643310547 + ], + "min":[ + -156.4895782470703, + 1.0827178955078125, + -130.40089416503906 + ], + "type":"VEC3" + }, + { + "bufferView":6629, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":6630, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6631, + "componentType":5126, + "count":152, + "max":[ + 586.3154296875, + 156.6259765625, + 69.5693359375 + ], + "min":[ + -586.32080078125, + 0, + -69.57080078125 + ], + "type":"VEC3" + }, + { + "bufferView":6632, + "componentType":5126, + "count":152, + "type":"VEC3" + }, + { + "bufferView":6633, + "componentType":5126, + "count":152, + "type":"VEC2" + }, + { + "bufferView":6634, + "componentType":5126, + "count":40, + "max":[ + 1.4143264293670654, + 10.517535209655762, + 5.258737564086914 + ], + "min":[ + -1.4143013954162598, + 6.0558319091796875e-05, + -5.258735179901123 + ], + "type":"VEC3" + }, + { + "bufferView":6635, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":6636, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":6637, + "componentType":5126, + "count":340, + "max":[ + 115.14122009277344, + 235.95401000976562, + 69.11585998535156 + ], + "min":[ + -115.14122009277344, + 25.712646484375, + -69.11674499511719 + ], + "type":"VEC3" + }, + { + "bufferView":6638, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":6639, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":6640, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6641, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6642, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6643, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6644, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6645, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6646, + "componentType":5126, + "count":152, + "max":[ + 586.3193359375, + 156.6259765625, + 69.5693359375 + ], + "min":[ + -586.31689453125, + 0, + -69.57080078125 + ], + "type":"VEC3" + }, + { + "bufferView":6647, + "componentType":5126, + "count":152, + "type":"VEC3" + }, + { + "bufferView":6648, + "componentType":5126, + "count":152, + "type":"VEC2" + }, + { + "bufferView":6649, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6650, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6651, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6652, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6653, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6654, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6655, + "componentType":5126, + "count":584, + "max":[ + 169.1017303466797, + 174.76547241210938, + 147.46453857421875 + ], + "min":[ + -169.10015869140625, + -0.00014495849609375, + -147.46450805664062 + ], + "type":"VEC3" + }, + { + "bufferView":6656, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":6657, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6658, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6659, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6660, + "componentType":5126, + "count":112, + "max":[ + 1022.581298828125, + 429.54217529296875, + 214.7710723876953 + ], + "min":[ + -1022.5777587890625, + -3.0517578125e-05, + -214.77090454101562 + ], + "type":"VEC3" + }, + { + "bufferView":6661, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":6662, + "componentType":5126, + "count":582, + "max":[ + 166.40670776367188, + 200.91189575195312, + 152.22103881835938 + ], + "min":[ + -166.41055297851562, + -0.0001678466796875, + -152.2210235595703 + ], + "type":"VEC3" + }, + { + "bufferView":6663, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":6664, + "componentType":5126, + "count":562, + "max":[ + 199.93199157714844, + 32.82524108886719, + 199.9328155517578 + ], + "min":[ + -199.93392944335938, + 8.7738037109375e-05, + -199.93313598632812 + ], + "type":"VEC3" + }, + { + "bufferView":6665, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":6666, + "componentType":5126, + "count":572, + "max":[ + 153.6865997314453, + 160.62615966796875, + 140.25399780273438 + ], + "min":[ + -153.68331909179688, + 1.0625991821289062, + -127.97377014160156 + ], + "type":"VEC3" + }, + { + "bufferView":6667, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":6668, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6669, + "componentType":5126, + "count":12, + "max":[ + 10.26025390625, + 419.39959716796875, + 443.6836242675781 + ], + "min":[ + -10.26025390625, + 7.62939453125e-05, + -443.6855773925781 + ], + "type":"VEC3" + }, + { + "bufferView":6670, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":6671, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":6672, + "componentType":5126, + "count":342, + "max":[ + 171.298828125, + 184.806640625, + 176.14111328125 + ], + "min":[ + -171.296875, + 44.45703125, + -176.140869140625 + ], + "type":"VEC3" + }, + { + "bufferView":6673, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":6674, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":6675, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":6676, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":6677, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6678, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6679, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6680, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6681, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6682, + "componentType":5126, + "count":96, + "max":[ + 69.56640625, + 141.0712890625, + 513.90966796875 + ], + "min":[ + -69.57421875, + 0, + -513.9052734375 + ], + "type":"VEC3" + }, + { + "bufferView":6683, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":6684, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":6685, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6686, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6687, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6688, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6689, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6690, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6691, + "componentType":5126, + "count":594, + "max":[ + 181.71339416503906, + 187.2035675048828, + 158.3877716064453 + ], + "min":[ + -181.71473693847656, + -2.288818359375e-05, + -158.3878173828125 + ], + "type":"VEC3" + }, + { + "bufferView":6692, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":6693, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6694, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6695, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6696, + "componentType":5126, + "count":582, + "max":[ + 160.69134521484375, + 167.5865020751953, + 146.3229217529297 + ], + "min":[ + -160.69309997558594, + 1.112884521484375, + -134.041748046875 + ], + "type":"VEC3" + }, + { + "bufferView":6697, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":6698, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.14453125, + 360.898193359375 + ], + "min":[ + -8.345703125, + 0.000244140625, + -360.896484375 + ], + "type":"VEC3" + }, + { + "bufferView":6699, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":6700, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":6701, + "componentType":5126, + "count":24, + "max":[ + 126.0732421875, + 130.123046875, + 27.1943359375 + ], + "min":[ + -126.07373046875, + 0, + -27.193359375 + ], + "type":"VEC3" + }, + { + "bufferView":6702, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6703, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6704, + "componentType":5126, + "count":1043, + "max":[ + 125.22607421875, + 76.19921875, + 90.10888671875 + ], + "min":[ + -125.22607421875, + 0, + -90.109375 + ], + "type":"VEC3" + }, + { + "bufferView":6705, + "componentType":5126, + "count":1043, + "type":"VEC3" + }, + { + "bufferView":6706, + "componentType":5126, + "count":1043, + "type":"VEC2" + }, + { + "bufferView":6707, + "componentType":5126, + "count":756, + "max":[ + 136.373779296875, + 174.96986389160156, + 128.96868896484375 + ], + "min":[ + -136.3739013671875, + 1.14251708984375, + -128.861328125 + ], + "type":"VEC3" + }, + { + "bufferView":6708, + "componentType":5126, + "count":756, + "type":"VEC3" + }, + { + "bufferView":6709, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":6710, + "componentType":5126, + "count":1660, + "max":[ + 433.12109375, + 367.92919921875, + 90.005859375 + ], + "min":[ + -433.119140625, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":6711, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":6712, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":6713, + "componentType":5126, + "count":24, + "max":[ + 135.76470947265625, + 537.346923828125, + 12.50014877319336 + ], + "min":[ + -135.7646942138672, + 3.0517578125e-05, + -12.50014877319336 + ], + "type":"VEC3" + }, + { + "bufferView":6714, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6715, + "componentType":5126, + "count":76, + "max":[ + 278.8669738769531, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8664245605469, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":6716, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":6717, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":6718, + "componentType":5126, + "count":52, + "max":[ + 161.98095703125, + 658.67578125, + 366.15234375 + ], + "min":[ + -161.97900390625, + 0, + -366.1533203125 + ], + "type":"VEC3" + }, + { + "bufferView":6719, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":6720, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":6721, + "componentType":5126, + "count":136, + "max":[ + 824.2421875, + 156.626220703125, + 69.5699462890625 + ], + "min":[ + -824.24169921875, + 0, + -69.5697021484375 + ], + "type":"VEC3" + }, + { + "bufferView":6722, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":6723, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":6724, + "componentType":5126, + "count":24, + "max":[ + 52.86289978027344, + 92.6992416381836, + 95.74981689453125 + ], + "min":[ + -52.860870361328125, + 2.6702880859375e-05, + -95.74981689453125 + ], + "type":"VEC3" + }, + { + "bufferView":6725, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6726, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":6727, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":6728, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":6729, + "componentType":5126, + "count":548, + "max":[ + 1958.87890625, + 2326.893310546875, + 738.77001953125 + ], + "min":[ + -1958.879638671875, + -0.000732421875, + -738.76806640625 + ], + "type":"VEC3" + }, + { + "bufferView":6730, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":6731, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":6732, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6733, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6734, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6735, + "componentType":5126, + "count":1420, + "max":[ + 245.232421875, + 367.92926025390625, + 384.1406555175781 + ], + "min":[ + -245.234375, + 4.57763671875e-05, + -384.1396789550781 + ], + "type":"VEC3" + }, + { + "bufferView":6736, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":6737, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":6738, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.5859375 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.585205078125 + ], + "type":"VEC3" + }, + { + "bufferView":6739, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6740, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6741, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6742, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6743, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6744, + "componentType":5126, + "count":125, + "max":[ + 3.8606996536254883, + 15.442764282226562, + 7.721350193023682 + ], + "min":[ + -3.860643148422241, + 8.249282836914062e-05, + -7.721330165863037 + ], + "type":"VEC3" + }, + { + "bufferView":6745, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":6746, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":6747, + "componentType":5126, + "count":1420, + "max":[ + 433.119140625, + 367.9293212890625, + 90.00634765625 + ], + "min":[ + -433.12109375, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":6748, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":6749, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":6750, + "componentType":5126, + "count":556, + "max":[ + 187.32032775878906, + 192.731689453125, + 163.24252319335938 + ], + "min":[ + -187.31944274902344, + 0.000152587890625, + -163.2425994873047 + ], + "type":"VEC3" + }, + { + "bufferView":6751, + "componentType":5126, + "count":556, + "type":"VEC3" + }, + { + "bufferView":6752, + "componentType":5126, + "count":48, + "max":[ + 45.86509323120117, + 68.97252655029297, + 15390.8203125 + ], + "min":[ + -45.86118698120117, + 0.00012969970703125, + -15390.8203125 + ], + "type":"VEC3" + }, + { + "bufferView":6753, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":6754, + "componentType":5123, + "count":132, + "type":"SCALAR" + }, + { + "bufferView":6755, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":6756, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":6757, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":6758, + "componentType":5126, + "count":337, + "max":[ + 170.435546875, + 188.55859375, + 176.20263671875 + ], + "min":[ + -170.43359375, + 45.296875, + -176.20458984375 + ], + "type":"VEC3" + }, + { + "bufferView":6759, + "componentType":5126, + "count":337, + "type":"VEC3" + }, + { + "bufferView":6760, + "componentType":5126, + "count":337, + "type":"VEC2" + }, + { + "bufferView":6761, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":6762, + "componentType":5126, + "count":48, + "max":[ + 11.695329666137695, + 233.9413299560547, + 289.01458740234375 + ], + "min":[ + -11.698831558227539, + -1.52587890625e-05, + -289.0135803222656 + ], + "type":"VEC3" + }, + { + "bufferView":6763, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":6764, + "componentType":5126, + "count":550, + "max":[ + 199.93199157714844, + 206.56509399414062, + 180.30599975585938 + ], + "min":[ + -199.93392944335938, + 1.395660400390625, + -168.02560424804688 + ], + "type":"VEC3" + }, + { + "bufferView":6765, + "componentType":5126, + "count":550, + "type":"VEC3" + }, + { + "bufferView":6766, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6767, + "componentType":5126, + "count":226, + "max":[ + 146.6806640625, + 288.87420654296875, + 115.35120391845703 + ], + "min":[ + -146.6844482421875, + -6.103515625e-05, + -115.35126495361328 + ], + "type":"VEC3" + }, + { + "bufferView":6768, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":6769, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":6770, + "componentType":5126, + "count":8204, + "max":[ + 496.33251953125, + 427.021484375, + 103.7861328125 + ], + "min":[ + -496.335693359375, + 0, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":6771, + "componentType":5126, + "count":8204, + "type":"VEC3" + }, + { + "bufferView":6772, + "componentType":5126, + "count":8204, + "type":"VEC2" + }, + { + "bufferView":6773, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":6774, + "componentType":5126, + "count":599, + "max":[ + 150.3123321533203, + 182.15432739257812, + 137.54527282714844 + ], + "min":[ + -150.3146514892578, + 0.0001373291015625, + -137.54527282714844 + ], + "type":"VEC3" + }, + { + "bufferView":6775, + "componentType":5126, + "count":599, + "type":"VEC3" + }, + { + "bufferView":6776, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6777, + "componentType":5126, + "count":586, + "max":[ + 157.88787841796875, + 163.70953369140625, + 137.75498962402344 + ], + "min":[ + -157.89076232910156, + -0.0001220703125, + -137.7549591064453 + ], + "type":"VEC3" + }, + { + "bufferView":6778, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":6779, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6780, + "componentType":5126, + "count":64, + "max":[ + 4093.119140625, + 919.57177734375, + 4951.87744140625 + ], + "min":[ + -4093.119140625, + 6.103515625e-05, + -4951.8779296875 + ], + "type":"VEC3" + }, + { + "bufferView":6781, + "componentType":5126, + "count":64, + "type":"VEC3" + }, + { + "bufferView":6782, + "componentType":5126, + "count":64, + "type":"VEC2" + }, + { + "bufferView":6783, + "componentType":5123, + "count":144, + "type":"SCALAR" + }, + { + "bufferView":6784, + "componentType":5126, + "count":574, + "max":[ + 180.3135223388672, + 32.825252532958984, + 180.3125 + ], + "min":[ + -180.31166076660156, + -1.52587890625e-05, + -180.31268310546875 + ], + "type":"VEC3" + }, + { + "bufferView":6785, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":6786, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6787, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6788, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6789, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6790, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7294979095459 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":6791, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":6792, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":6793, + "componentType":5126, + "count":1333, + "max":[ + 23.869264602661133, + 48.001651763916016, + 8.997692108154297 + ], + "min":[ + -23.86931610107422, + 0.0001125335693359375, + -8.997539520263672 + ], + "type":"VEC3" + }, + { + "bufferView":6794, + "componentType":5126, + "count":1333, + "type":"VEC3" + }, + { + "bufferView":6795, + "componentType":5126, + "count":1333, + "type":"VEC2" + }, + { + "bufferView":6796, + "componentType":5123, + "count":4860, + "type":"SCALAR" + }, + { + "bufferView":6797, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6798, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6799, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6800, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6801, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6802, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6803, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6804, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6805, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6806, + "componentType":5126, + "count":202, + "max":[ + 156.1572265625, + 12554.818359375, + 1060.18505859375 + ], + "min":[ + -156.1632080078125, + 0.000152587890625, + -1060.1884765625 + ], + "type":"VEC3" + }, + { + "bufferView":6807, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":6808, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":6809, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":6810, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6811, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6812, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6813, + "componentType":5126, + "count":682, + "max":[ + 134.314453125, + 2974.83349609375, + 130.721435546875 + ], + "min":[ + -134.314453125, + 0, + -130.72096252441406 + ], + "type":"VEC3" + }, + { + "bufferView":6814, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":6815, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":6816, + "componentType":5126, + "count":578, + "max":[ + 160.69134521484375, + 166.47369384765625, + 140.18238830566406 + ], + "min":[ + -160.69309997558594, + 6.866455078125e-05, + -140.18231201171875 + ], + "type":"VEC3" + }, + { + "bufferView":6817, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":6818, + "componentType":5126, + "count":24, + "max":[ + 110.00011444091797, + 50, + 584.662109375 + ], + "min":[ + -110.00007629394531, + 0, + -584.666015625 + ], + "type":"VEC3" + }, + { + "bufferView":6819, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6820, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68719482421875 + ], + "min":[ + -15.4755859375, + 0, + -381.68621826171875 + ], + "type":"VEC3" + }, + { + "bufferView":6821, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6822, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6823, + "componentType":5126, + "count":136, + "max":[ + 242.8515625, + 131.9609375, + 239.7059326171875 + ], + "min":[ + -242.8525390625, + 0, + -239.7059326171875 + ], + "type":"VEC3" + }, + { + "bufferView":6824, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":6825, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":6826, + "componentType":5126, + "count":230, + "max":[ + 91.49444580078125, + 2020.375244140625, + 618.063232421875 + ], + "min":[ + -91.49453735351562, + 6.103515625e-05, + -618.0625 + ], + "type":"VEC3" + }, + { + "bufferView":6827, + "componentType":5126, + "count":230, + "type":"VEC3" + }, + { + "bufferView":6828, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":6829, + "componentType":5126, + "count":48, + "max":[ + 11.695329666137695, + 233.9413299560547, + 289.01458740234375 + ], + "min":[ + -11.698831558227539, + -1.52587890625e-05, + -289.0135803222656 + ], + "type":"VEC3" + }, + { + "bufferView":6830, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":6831, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.5140380859375, + 22.7297420501709 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.725955963134766 + ], + "type":"VEC3" + }, + { + "bufferView":6832, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":6833, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":6834, + "componentType":5126, + "count":76, + "max":[ + 279.0987243652344, + 3543.081787109375, + 278.8664855957031 + ], + "min":[ + -279.1011047363281, + 0, + -278.86700439453125 + ], + "type":"VEC3" + }, + { + "bufferView":6835, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":6836, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":6837, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":6838, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6839, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6840, + "componentType":5126, + "count":46, + "max":[ + 161.97705078125, + 658.67578125, + 366.15234375 + ], + "min":[ + -161.982421875, + 0, + -366.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":6841, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":6842, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":6843, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":6844, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6845, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6846, + "componentType":5126, + "count":72, + "max":[ + 422.67730712890625, + 629.1729125976562, + 222.1094512939453 + ], + "min":[ + -422.6772155761719, + 6.103515625e-05, + -222.10919189453125 + ], + "type":"VEC3" + }, + { + "bufferView":6847, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":6848, + "componentType":5123, + "count":144, + "type":"SCALAR" + }, + { + "bufferView":6849, + "componentType":5126, + "count":254, + "max":[ + 175.0537109375, + 196.214111328125, + 169.1083984375 + ], + "min":[ + -175.05322265625, + 0, + -169.1064453125 + ], + "type":"VEC3" + }, + { + "bufferView":6850, + "componentType":5126, + "count":254, + "type":"VEC3" + }, + { + "bufferView":6851, + "componentType":5126, + "count":254, + "type":"VEC2" + }, + { + "bufferView":6852, + "componentType":5126, + "count":593, + "max":[ + 170.85037231445312, + 246.54588317871094, + 153.592529296875 + ], + "min":[ + -178.06201171875, + 36.25477600097656, + -165.5252227783203 + ], + "type":"VEC3" + }, + { + "bufferView":6853, + "componentType":5126, + "count":593, + "type":"VEC3" + }, + { + "bufferView":6854, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6855, + "componentType":5126, + "count":54, + "max":[ + 29.798828125, + 520.124755859375, + 217.04052734375 + ], + "min":[ + -29.798828125, + -0.000244140625, + -217.04150390625 + ], + "type":"VEC3" + }, + { + "bufferView":6856, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":6857, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":6858, + "componentType":5126, + "count":584, + "max":[ + 154.33689880371094, + 186.84385681152344, + 141.21417236328125 + ], + "min":[ + -154.33767700195312, + 0.0001983642578125, + -141.21426391601562 + ], + "type":"VEC3" + }, + { + "bufferView":6859, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":6860, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6861, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":6862, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":6863, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":6864, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92926025390625, + 384.578857421875 + ], + "min":[ + -244.4677734375, + 0, + -384.5805358886719 + ], + "type":"VEC3" + }, + { + "bufferView":6865, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":6866, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":6867, + "componentType":5126, + "count":750, + "max":[ + 136.373779296875, + 174.96987915039062, + 128.9681854248047 + ], + "min":[ + -136.3739013671875, + 1.1425247192382812, + -128.86183166503906 + ], + "type":"VEC3" + }, + { + "bufferView":6868, + "componentType":5126, + "count":750, + "type":"VEC3" + }, + { + "bufferView":6869, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":6870, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":6871, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6872, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6873, + "componentType":5126, + "count":577, + "max":[ + 157.01995849609375, + 105.78671264648438, + 163.49508666992188 + ], + "min":[ + -157.0196990966797, + -0.0001678466796875, + -163.49517822265625 + ], + "type":"VEC3" + }, + { + "bufferView":6874, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":6875, + "componentType":5126, + "count":213, + "max":[ + 13.25390625, + 75.79608154296875, + 25.5054931640625 + ], + "min":[ + -13.24951171875, + 0.00020866177510470152, + -25.4984130859375 + ], + "type":"VEC3" + }, + { + "bufferView":6876, + "componentType":5126, + "count":213, + "type":"VEC3" + }, + { + "bufferView":6877, + "componentType":5126, + "count":213, + "type":"VEC2" + }, + { + "bufferView":6878, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":6879, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6880, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6881, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6882, + "componentType":5126, + "count":802, + "max":[ + 4.1318359375, + 90.58740997314453, + 34.45850372314453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45459747314453 + ], + "type":"VEC3" + }, + { + "bufferView":6883, + "componentType":5126, + "count":802, + "type":"VEC3" + }, + { + "bufferView":6884, + "componentType":5126, + "count":802, + "type":"VEC2" + }, + { + "bufferView":6885, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":6886, + "componentType":5126, + "count":24, + "max":[ + 4704, + 6000, + 128 + ], + "min":[ + -4704, + 0, + -128 + ], + "type":"VEC3" + }, + { + "bufferView":6887, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6888, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6889, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6890, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6891, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6892, + "componentType":5126, + "count":8096, + "max":[ + 496.1484375, + 429.962890625, + 103.78662109375 + ], + "min":[ + -496.148681640625, + 0, + -103.78759765625 + ], + "type":"VEC3" + }, + { + "bufferView":6893, + "componentType":5126, + "count":8096, + "type":"VEC3" + }, + { + "bufferView":6894, + "componentType":5126, + "count":8096, + "type":"VEC2" + }, + { + "bufferView":6895, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":6896, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6897, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6898, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6899, + "componentType":5126, + "count":232, + "max":[ + 115.35128021240234, + 317.20355224609375, + 159.83082580566406 + ], + "min":[ + -115.35121154785156, + -6.103515625e-05, + -159.83065795898438 + ], + "type":"VEC3" + }, + { + "bufferView":6900, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":6901, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":6902, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6903, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6904, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6905, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":6906, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":6907, + "componentType":5126, + "count":576, + "max":[ + 174.70492553710938, + 180.2935791015625, + 152.31930541992188 + ], + "min":[ + -174.70864868164062, + 2.288818359375e-05, + -152.3192596435547 + ], + "type":"VEC3" + }, + { + "bufferView":6908, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":6909, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6910, + "componentType":5126, + "count":339, + "max":[ + 170.435546875, + 188.558837890625, + 176.203125 + ], + "min":[ + -170.43359375, + 45.297119140625, + -176.2041015625 + ], + "type":"VEC3" + }, + { + "bufferView":6911, + "componentType":5126, + "count":339, + "type":"VEC3" + }, + { + "bufferView":6912, + "componentType":5126, + "count":339, + "type":"VEC2" + }, + { + "bufferView":6913, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":6914, + "componentType":5126, + "count":580, + "max":[ + 174.70864868164062, + 32.82521057128906, + 174.7067108154297 + ], + "min":[ + -174.70492553710938, + 2.6702880859375e-05, + -174.70689392089844 + ], + "type":"VEC3" + }, + { + "bufferView":6915, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":6916, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6917, + "componentType":5126, + "count":586, + "max":[ + 207.89891052246094, + 213.0241241455078, + 181.06394958496094 + ], + "min":[ + -207.89772033691406, + -0.0001068115234375, + -181.06411743164062 + ], + "type":"VEC3" + }, + { + "bufferView":6918, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":6919, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51416778564453, + 43.588871002197266 + ], + "min":[ + -22.7265625, + -7.62939453125e-06, + -43.589359283447266 + ], + "type":"VEC3" + }, + { + "bufferView":6920, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":6921, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":6922, + "componentType":5126, + "count":578, + "max":[ + 160.69134521484375, + 166.47369384765625, + 140.18238830566406 + ], + "min":[ + -160.69309997558594, + 6.866455078125e-05, + -140.18231201171875 + ], + "type":"VEC3" + }, + { + "bufferView":6923, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":6924, + "componentType":5126, + "count":340, + "max":[ + 45.856773376464844, + 228.16909790039062, + 115.62029266357422 + ], + "min":[ + -45.858154296875, + -7.62939453125e-05, + -115.62040710449219 + ], + "type":"VEC3" + }, + { + "bufferView":6925, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":6926, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":6927, + "componentType":5126, + "count":142, + "max":[ + 3.45172119140625, + 18.94533348083496, + 9.472748756408691 + ], + "min":[ + -3.451845169067383, + -0.00011920928955078125, + -9.472702026367188 + ], + "type":"VEC3" + }, + { + "bufferView":6928, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":6929, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":6930, + "componentType":5126, + "count":574, + "max":[ + 180.31166076660156, + 32.82526397705078, + 180.3125 + ], + "min":[ + -180.3135223388672, + -4.1961669921875e-05, + -180.31268310546875 + ], + "type":"VEC3" + }, + { + "bufferView":6931, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":6932, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6933, + "componentType":5126, + "count":343, + "max":[ + 171.2978515625, + 184.8037109375, + 176.140380859375 + ], + "min":[ + -171.2978515625, + 44.45458984375, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":6934, + "componentType":5126, + "count":343, + "type":"VEC3" + }, + { + "bufferView":6935, + "componentType":5126, + "count":343, + "type":"VEC2" + }, + { + "bufferView":6936, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":6937, + "componentType":5126, + "count":24, + "max":[ + 292.4480895996094, + 205.86782836914062, + 292.42657470703125 + ], + "min":[ + -292.4480895996094, + 0, + -292.4267883300781 + ], + "type":"VEC3" + }, + { + "bufferView":6938, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6939, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6940, + "componentType":5126, + "count":572, + "max":[ + 186.9486541748047, + 268.66400146484375, + 168.26876831054688 + ], + "min":[ + -194.1539306640625, + 39.615081787109375, + -180.20040893554688 + ], + "type":"VEC3" + }, + { + "bufferView":6941, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":6942, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6943, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6944, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6945, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6946, + "componentType":5126, + "count":230, + "max":[ + 91.49446105957031, + 2020.37548828125, + 646.193115234375 + ], + "min":[ + -91.49473571777344, + 6.103515625e-05, + -589.9326171875 + ], + "type":"VEC3" + }, + { + "bufferView":6947, + "componentType":5126, + "count":230, + "type":"VEC3" + }, + { + "bufferView":6948, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":6949, + "componentType":5126, + "count":24, + "max":[ + 35.000003814697266, + 2000, + 35.000003814697266 + ], + "min":[ + -35.000003814697266, + 0, + -35.000003814697266 + ], + "type":"VEC3" + }, + { + "bufferView":6950, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6951, + "componentType":5126, + "count":1043, + "max":[ + 125.22607421875, + 76.19921875, + 90.10888671875 + ], + "min":[ + -125.22607421875, + 0, + -90.109375 + ], + "type":"VEC3" + }, + { + "bufferView":6952, + "componentType":5126, + "count":1043, + "type":"VEC3" + }, + { + "bufferView":6953, + "componentType":5126, + "count":1043, + "type":"VEC2" + }, + { + "bufferView":6954, + "componentType":5126, + "count":94, + "max":[ + 31.27215576171875, + 267.8876953125, + 51.744140625 + ], + "min":[ + -31.22821044921875, + 0, + -51.582275390625 + ], + "type":"VEC3" + }, + { + "bufferView":6955, + "componentType":5126, + "count":94, + "type":"VEC3" + }, + { + "bufferView":6956, + "componentType":5126, + "count":94, + "type":"VEC2" + }, + { + "bufferView":6957, + "componentType":5123, + "count":150, + "type":"SCALAR" + }, + { + "bufferView":6958, + "componentType":5126, + "count":346, + "max":[ + 115.35118865966797, + 212.38772583007812, + 68.44580078125 + ], + "min":[ + -115.35128021240234, + 0.9673385620117188, + -68.44600677490234 + ], + "type":"VEC3" + }, + { + "bufferView":6959, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":6960, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":6961, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":6962, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":6963, + "componentType":5126, + "count":204, + "max":[ + 25.650390625, + 2528.2978515625, + 2406.368896484375 + ], + "min":[ + -25.64892578125, + -0.0001220703125, + -2406.37109375 + ], + "type":"VEC3" + }, + { + "bufferView":6964, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":6965, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":6966, + "componentType":5123, + "count":306, + "type":"SCALAR" + }, + { + "bufferView":6967, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":6968, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":6969, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":6970, + "componentType":5126, + "count":580, + "max":[ + 191.89334106445312, + 230.61221313476562, + 175.4574737548828 + ], + "min":[ + -191.8917236328125, + 6.103515625e-05, + -175.45755004882812 + ], + "type":"VEC3" + }, + { + "bufferView":6971, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":6972, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":6973, + "componentType":5126, + "count":24, + "max":[ + 151.5736083984375, + 224.48095703125, + 158.55409240722656 + ], + "min":[ + -151.57437133789062, + -0.000244140625, + -158.55517578125 + ], + "type":"VEC3" + }, + { + "bufferView":6974, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6975, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":6976, + "componentType":5126, + "count":7974, + "max":[ + 496.146484375, + 429.9638671875, + 103.78662109375 + ], + "min":[ + -496.150634765625, + 0, + -103.78759765625 + ], + "type":"VEC3" + }, + { + "bufferView":6977, + "componentType":5126, + "count":7974, + "type":"VEC3" + }, + { + "bufferView":6978, + "componentType":5126, + "count":7974, + "type":"VEC2" + }, + { + "bufferView":6979, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":6980, + "componentType":5126, + "count":296, + "max":[ + 1.9772073030471802, + 36.3969841003418, + 18.198516845703125 + ], + "min":[ + -1.9772001504898071, + -7.62939453125e-06, + -18.198471069335938 + ], + "type":"VEC3" + }, + { + "bufferView":6981, + "componentType":5126, + "count":296, + "type":"VEC3" + }, + { + "bufferView":6982, + "componentType":5126, + "count":296, + "type":"VEC2" + }, + { + "bufferView":6983, + "componentType":5126, + "count":756, + "max":[ + 136.373779296875, + 173.8272705078125, + 128.91510009765625 + ], + "min":[ + -136.37388610839844, + -3.0517578125e-05, + -128.91500854492188 + ], + "type":"VEC3" + }, + { + "bufferView":6984, + "componentType":5126, + "count":756, + "type":"VEC3" + }, + { + "bufferView":6985, + "componentType":5126, + "count":24, + "max":[ + 110.00011444091797, + 50, + 584.666015625 + ], + "min":[ + -110.00007629394531, + 0, + -584.662109375 + ], + "type":"VEC3" + }, + { + "bufferView":6986, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6987, + "componentType":5126, + "count":108, + "max":[ + 1274.9716796875, + 2502.0087890625, + 25.650390625 + ], + "min":[ + -1274.97119140625, + -6.103515625e-05, + -25.650390625 + ], + "type":"VEC3" + }, + { + "bufferView":6988, + "componentType":5126, + "count":108, + "type":"VEC3" + }, + { + "bufferView":6989, + "componentType":5126, + "count":108, + "type":"VEC2" + }, + { + "bufferView":6990, + "componentType":5126, + "count":336, + "max":[ + 171.298828125, + 184.8056640625, + 176.139404296875 + ], + "min":[ + -171.296875, + 44.45458984375, + -176.142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":6991, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":6992, + "componentType":5126, + "count":336, + "type":"VEC2" + }, + { + "bufferView":6993, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":6994, + "componentType":5126, + "count":99, + "max":[ + 513.90966796875, + 141.07080078125, + 69.5699462890625 + ], + "min":[ + -513.9052734375, + 0, + -69.5701904296875 + ], + "type":"VEC3" + }, + { + "bufferView":6995, + "componentType":5126, + "count":99, + "type":"VEC3" + }, + { + "bufferView":6996, + "componentType":5126, + "count":99, + "type":"VEC2" + }, + { + "bufferView":6997, + "componentType":5123, + "count":204, + "type":"SCALAR" + }, + { + "bufferView":6998, + "componentType":5126, + "count":40, + "max":[ + 1.4143264293670654, + 10.517629623413086, + 5.258737564086914 + ], + "min":[ + -1.4143013954162598, + 0.0001544952392578125, + -5.258735179901123 + ], + "type":"VEC3" + }, + { + "bufferView":6999, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":7000, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":7001, + "componentType":5126, + "count":1086, + "max":[ + 56.700801849365234, + 172.07467651367188, + 23.860069274902344 + ], + "min":[ + -56.70079803466797, + 6.866455078125e-05, + -23.86005401611328 + ], + "type":"VEC3" + }, + { + "bufferView":7002, + "componentType":5126, + "count":1086, + "type":"VEC3" + }, + { + "bufferView":7003, + "componentType":5126, + "count":1086, + "type":"VEC2" + }, + { + "bufferView":7004, + "componentType":5123, + "count":1806, + "type":"SCALAR" + }, + { + "bufferView":7005, + "componentType":5126, + "count":98, + "max":[ + 513.90771484375, + 141.07080078125, + 69.5699462890625 + ], + "min":[ + -513.9072265625, + 0, + -69.5701904296875 + ], + "type":"VEC3" + }, + { + "bufferView":7006, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":7007, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":7008, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7009, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7010, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7011, + "componentType":5126, + "count":580, + "max":[ + 190.123779296875, + 195.49533081054688, + 165.669921875 + ], + "min":[ + -190.12181091308594, + -0.0001983642578125, + -165.6699981689453 + ], + "type":"VEC3" + }, + { + "bufferView":7012, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":7013, + "componentType":5126, + "count":584, + "max":[ + 170.50344848632812, + 176.1476593017578, + 148.67823791503906 + ], + "min":[ + -170.50135803222656, + 0.00014495849609375, + -148.6782684326172 + ], + "type":"VEC3" + }, + { + "bufferView":7014, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":7015, + "componentType":5126, + "count":595, + "max":[ + 155.6784210205078, + 188.40704345703125, + 142.43716430664062 + ], + "min":[ + -155.67872619628906, + 0.0001983642578125, + -142.43719482421875 + ], + "type":"VEC3" + }, + { + "bufferView":7016, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":7017, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7018, + "componentType":5126, + "count":1488, + "max":[ + 831.546875, + 116.2333984375, + 746.10400390625 + ], + "min":[ + -831.544921875, + 0.000118255615234375, + -746.1015625 + ], + "type":"VEC3" + }, + { + "bufferView":7019, + "componentType":5126, + "count":1488, + "type":"VEC3" + }, + { + "bufferView":7020, + "componentType":5126, + "count":1488, + "type":"VEC2" + }, + { + "bufferView":7021, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":7022, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":7023, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7024, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7025, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7026, + "componentType":5126, + "count":598, + "max":[ + 325.56951904296875, + 506.26318359375, + 332.93994140625 + ], + "min":[ + -325.56951904296875, + 1.6453857421875, + -332.9397888183594 + ], + "type":"VEC3" + }, + { + "bufferView":7027, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":7028, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7029, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":7030, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":7031, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":7032, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7033, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7034, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7035, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7036, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7037, + "componentType":5126, + "count":586, + "max":[ + 159.28961181640625, + 166.1944580078125, + 145.10879516601562 + ], + "min":[ + -159.29193115234375, + 1.1027374267578125, + -132.8285369873047 + ], + "type":"VEC3" + }, + { + "bufferView":7038, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":7039, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7040, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7041, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7042, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7043, + "componentType":5126, + "count":112, + "max":[ + 106.49421691894531, + 381.6711730957031, + 171.66343688964844 + ], + "min":[ + -106.49431610107422, + 1.52587890625e-05, + -171.66342163085938 + ], + "type":"VEC3" + }, + { + "bufferView":7044, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":7045, + "componentType":5126, + "count":106, + "max":[ + 27.31396484375, + 1876.475341796875, + 413.562255859375 + ], + "min":[ + -27.3154296875, + 0.000244140625, + -413.56005859375 + ], + "type":"VEC3" + }, + { + "bufferView":7046, + "componentType":5126, + "count":106, + "type":"VEC3" + }, + { + "bufferView":7047, + "componentType":5126, + "count":106, + "type":"VEC2" + }, + { + "bufferView":7048, + "componentType":5126, + "count":24, + "max":[ + 126.07373046875, + 130.123046875, + 27.1943359375 + ], + "min":[ + -126.0732421875, + 0, + -27.193359375 + ], + "type":"VEC3" + }, + { + "bufferView":7049, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7050, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7051, + "componentType":5126, + "count":584, + "max":[ + 201.1636962890625, + 128.77523803710938, + 209.6189422607422 + ], + "min":[ + -201.16160583496094, + 3.0517578125e-05, + -209.6193084716797 + ], + "type":"VEC3" + }, + { + "bufferView":7052, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":7053, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7054, + "componentType":5126, + "count":178, + "max":[ + 769.70947265625, + 113.194580078125, + 56.59619140625 + ], + "min":[ + -769.7080078125, + 6.103515625e-05, + -56.5966796875 + ], + "type":"VEC3" + }, + { + "bufferView":7055, + "componentType":5126, + "count":178, + "type":"VEC3" + }, + { + "bufferView":7056, + "componentType":5126, + "count":178, + "type":"VEC2" + }, + { + "bufferView":7057, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":7058, + "componentType":5126, + "count":138, + "max":[ + 80.151611328125, + 126.6884765625, + 49.03515625 + ], + "min":[ + -80.154541015625, + 0, + -49.03515625 + ], + "type":"VEC3" + }, + { + "bufferView":7059, + "componentType":5126, + "count":138, + "type":"VEC3" + }, + { + "bufferView":7060, + "componentType":5126, + "count":138, + "type":"VEC2" + }, + { + "bufferView":7061, + "componentType":5126, + "count":71, + "max":[ + 3.7873902320861816, + 13.000020027160645, + 3.742483139038086 + ], + "min":[ + -3.787674903869629, + -2.384185791015625e-05, + -3.7423512935638428 + ], + "type":"VEC3" + }, + { + "bufferView":7062, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":7063, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":7064, + "componentType":5126, + "count":599, + "max":[ + 171.35311889648438, + 237.3299560546875, + 159.41017150878906 + ], + "min":[ + -164.14666748046875, + 34.8548583984375, + -147.4778594970703 + ], + "type":"VEC3" + }, + { + "bufferView":7065, + "componentType":5126, + "count":599, + "type":"VEC3" + }, + { + "bufferView":7066, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7067, + "componentType":5126, + "count":288, + "max":[ + 10871.8134765625, + 916.612060546875, + 282.39910888671875 + ], + "min":[ + -10871.8125, + 0, + -282.3988952636719 + ], + "type":"VEC3" + }, + { + "bufferView":7068, + "componentType":5126, + "count":288, + "type":"VEC3" + }, + { + "bufferView":7069, + "componentType":5123, + "count":1572, + "type":"SCALAR" + }, + { + "bufferView":7070, + "componentType":5126, + "count":1488, + "max":[ + 831.546875, + 116.2335205078125, + 746.10400390625 + ], + "min":[ + -831.544921875, + 0.000118255615234375, + -746.1015625 + ], + "type":"VEC3" + }, + { + "bufferView":7071, + "componentType":5126, + "count":1488, + "type":"VEC3" + }, + { + "bufferView":7072, + "componentType":5126, + "count":1488, + "type":"VEC2" + }, + { + "bufferView":7073, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76666259765625, + 78.58642578125 + ], + "min":[ + -46.2822265625, + 0, + -78.5849609375 + ], + "type":"VEC3" + }, + { + "bufferView":7074, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7075, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7076, + "componentType":5126, + "count":618, + "max":[ + 56.700828552246094, + 172.07469177246094, + 23.856155395507812 + ], + "min":[ + -56.70075988769531, + 7.62939453125e-05, + -23.863948822021484 + ], + "type":"VEC3" + }, + { + "bufferView":7077, + "componentType":5126, + "count":618, + "type":"VEC3" + }, + { + "bufferView":7078, + "componentType":5126, + "count":618, + "type":"VEC2" + }, + { + "bufferView":7079, + "componentType":5126, + "count":24, + "max":[ + 260, + 2824.5, + 260 + ], + "min":[ + -260, + 0, + -260 + ], + "type":"VEC3" + }, + { + "bufferView":7080, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7081, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7082, + "componentType":5126, + "count":50, + "max":[ + 142.32080078125, + 608.2197265625, + 391.736328125 + ], + "min":[ + -142.32177734375, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":7083, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":7084, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":7085, + "componentType":5126, + "count":24, + "max":[ + 52.86289978027344, + 92.6992416381836, + 95.74981689453125 + ], + "min":[ + -52.860870361328125, + 2.6702880859375e-05, + -95.74981689453125 + ], + "type":"VEC3" + }, + { + "bufferView":7086, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7087, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":7088, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":7089, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":7090, + "componentType":5126, + "count":1020, + "max":[ + 831.546875, + 116.2333984375, + 746.101806640625 + ], + "min":[ + -831.544921875, + 0.000118255615234375, + -746.103271484375 + ], + "type":"VEC3" + }, + { + "bufferView":7091, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":7092, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":7093, + "componentType":5126, + "count":570, + "max":[ + 187.32032775878906, + 32.82526779174805, + 187.3197479248047 + ], + "min":[ + -187.31944274902344, + 1.1444091796875e-05, + -187.3200225830078 + ], + "type":"VEC3" + }, + { + "bufferView":7094, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":7095, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7096, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7097, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7098, + "componentType":5126, + "count":1420, + "max":[ + 244.46875, + 367.92926025390625, + 384.5810852050781 + ], + "min":[ + -244.466796875, + 4.57763671875e-05, + -384.5781555175781 + ], + "type":"VEC3" + }, + { + "bufferView":7099, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":7100, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":7101, + "componentType":5126, + "count":188, + "max":[ + 769.70947265625, + 113.194580078125, + 56.59716796875 + ], + "min":[ + -769.7080078125, + 6.103515625e-05, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":7102, + "componentType":5126, + "count":188, + "type":"VEC3" + }, + { + "bufferView":7103, + "componentType":5126, + "count":188, + "type":"VEC2" + }, + { + "bufferView":7104, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":7105, + "componentType":5126, + "count":4, + "max":[ + 161.0859375, + 904.087158203125, + 1.2161650374764577e-05 + ], + "min":[ + -161.0859375, + 0, + -1.2161650374764577e-05 + ], + "type":"VEC3" + }, + { + "bufferView":7106, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7107, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7108, + "componentType":5123, + "count":6, + "type":"SCALAR" + }, + { + "bufferView":7109, + "componentType":5126, + "count":50, + "max":[ + 142.32275390625, + 608.2197265625, + 391.736328125 + ], + "min":[ + -142.31982421875, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":7110, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":7111, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":7112, + "componentType":5126, + "count":618, + "max":[ + 56.700828552246094, + 172.07469177246094, + 23.86005401611328 + ], + "min":[ + -56.70075988769531, + 7.62939453125e-05, + -23.860050201416016 + ], + "type":"VEC3" + }, + { + "bufferView":7113, + "componentType":5126, + "count":618, + "type":"VEC3" + }, + { + "bufferView":7114, + "componentType":5126, + "count":618, + "type":"VEC2" + }, + { + "bufferView":7115, + "componentType":5126, + "count":1020, + "max":[ + 831.546875, + 116.23333740234375, + 746.10498046875 + ], + "min":[ + -831.544921875, + 5.7220458984375e-05, + -746.10205078125 + ], + "type":"VEC3" + }, + { + "bufferView":7116, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":7117, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":7118, + "componentType":5126, + "count":580, + "max":[ + 190.123779296875, + 195.49533081054688, + 165.669921875 + ], + "min":[ + -190.12181091308594, + -0.0001983642578125, + -165.6699981689453 + ], + "type":"VEC3" + }, + { + "bufferView":7119, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":7120, + "componentType":5126, + "count":112, + "max":[ + 290.003173828125, + 576.6788330078125, + 290.00323486328125 + ], + "min":[ + -290.003173828125, + 0.0001220703125, + -290.00335693359375 + ], + "type":"VEC3" + }, + { + "bufferView":7121, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":7122, + "componentType":5126, + "count":54, + "max":[ + 217.04150390625, + 520.125, + 29.798828125 + ], + "min":[ + -217.04150390625, + 0, + -29.798828125 + ], + "type":"VEC3" + }, + { + "bufferView":7123, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":7124, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":7125, + "componentType":5126, + "count":571, + "max":[ + 173.53343200683594, + 250.2322540283203, + 156.03839111328125 + ], + "min":[ + -180.7439727783203, + 36.8148193359375, + -167.97125244140625 + ], + "type":"VEC3" + }, + { + "bufferView":7126, + "componentType":5126, + "count":571, + "type":"VEC3" + }, + { + "bufferView":7127, + "componentType":5126, + "count":602, + "max":[ + 159.70297241210938, + 193.0960693359375, + 146.10626220703125 + ], + "min":[ + -159.70167541503906, + -0.0002288818359375, + -146.10597229003906 + ], + "type":"VEC3" + }, + { + "bufferView":7128, + "componentType":5126, + "count":602, + "type":"VEC3" + }, + { + "bufferView":7129, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7130, + "componentType":5126, + "count":48, + "max":[ + 45.86509323120117, + 68.97252655029297, + 15390.8203125 + ], + "min":[ + -45.86118698120117, + 0.00012969970703125, + -15390.8203125 + ], + "type":"VEC3" + }, + { + "bufferView":7131, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":7132, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":7133, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":7134, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":7135, + "componentType":5126, + "count":7788, + "max":[ + 103.786865234375, + 427.46484375, + 496.30615234375 + ], + "min":[ + -103.7867431640625, + 0, + -496.30712890625 + ], + "type":"VEC3" + }, + { + "bufferView":7136, + "componentType":5126, + "count":7788, + "type":"VEC3" + }, + { + "bufferView":7137, + "componentType":5126, + "count":7788, + "type":"VEC2" + }, + { + "bufferView":7138, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7139, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7140, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7141, + "componentType":5126, + "count":559, + "max":[ + 223.19972229003906, + 446.3994140625, + 224.27151489257812 + ], + "min":[ + -223.19969177246094, + 1.52587890625e-05, + -224.27151489257812 + ], + "type":"VEC3" + }, + { + "bufferView":7142, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":7143, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":7144, + "componentType":5126, + "count":576, + "max":[ + 156.4861602783203, + 162.32781982421875, + 136.5413055419922 + ], + "min":[ + -156.4895782470703, + 0.00017547607421875, + -136.5412139892578 + ], + "type":"VEC3" + }, + { + "bufferView":7145, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":7146, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7147, + "componentType":5126, + "count":76, + "max":[ + 278.86651611328125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8672180175781, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":7148, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":7149, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":7150, + "componentType":5126, + "count":76, + "max":[ + 279.1028137207031, + 3543.081787109375, + 278.86810302734375 + ], + "min":[ + -279.1005859375, + 0, + -278.8689270019531 + ], + "type":"VEC3" + }, + { + "bufferView":7151, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":7152, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":7153, + "componentType":5126, + "count":528, + "max":[ + 722.7216796875, + 2637.397705078125, + 19.80272102355957 + ], + "min":[ + -722.7216796875, + 0, + -19.80333137512207 + ], + "type":"VEC3" + }, + { + "bufferView":7154, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":7155, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":7156, + "componentType":5126, + "count":351, + "max":[ + 171.298828125, + 184.80419921875, + 176.139892578125 + ], + "min":[ + -171.296875, + 44.45458984375, + -176.141845703125 + ], + "type":"VEC3" + }, + { + "bufferView":7157, + "componentType":5126, + "count":351, + "type":"VEC3" + }, + { + "bufferView":7158, + "componentType":5126, + "count":351, + "type":"VEC2" + }, + { + "bufferView":7159, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":7160, + "componentType":5126, + "count":548, + "max":[ + 10.65591049194336, + 21.311786651611328, + 7.779110908508301 + ], + "min":[ + -10.65591049194336, + -2.956390380859375e-05, + -7.778773307800293 + ], + "type":"VEC3" + }, + { + "bufferView":7161, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":7162, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":7163, + "componentType":5126, + "count":112, + "max":[ + 116.97066497802734, + 2149.27001953125, + 116.97098541259766 + ], + "min":[ + -116.97066497802734, + 0, + -116.97066497802734 + ], + "type":"VEC3" + }, + { + "bufferView":7164, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":7165, + "componentType":5126, + "count":96, + "max":[ + 332.39324951171875, + 1922.780517578125, + 35.13720703125 + ], + "min":[ + -332.39056396484375, + 0, + -35.13653564453125 + ], + "type":"VEC3" + }, + { + "bufferView":7166, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":7167, + "componentType":5123, + "count":132, + "type":"SCALAR" + }, + { + "bufferView":7168, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7169, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7170, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7171, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7172, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7173, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7174, + "componentType":5126, + "count":50, + "max":[ + 391.7373046875, + 608.220703125, + 142.32080078125 + ], + "min":[ + -391.73779296875, + 0, + -142.32177734375 + ], + "type":"VEC3" + }, + { + "bufferView":7175, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":7176, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":7177, + "componentType":5126, + "count":336, + "max":[ + 115.14122772216797, + 235.9542236328125, + 69.11585235595703 + ], + "min":[ + -115.1412353515625, + 25.71295166015625, + -69.11680603027344 + ], + "type":"VEC3" + }, + { + "bufferView":7178, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":7179, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7180, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7181, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7182, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7183, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7184, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7185, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7186, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7187, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7188, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7189, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7190, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7191, + "componentType":5126, + "count":16, + "max":[ + 1184.47216796875, + 1203, + 5328.560546875 + ], + "min":[ + -1184.4716796875, + 0, + -5328.5576171875 + ], + "type":"VEC3" + }, + { + "bufferView":7192, + "componentType":5126, + "count":16, + "type":"VEC3" + }, + { + "bufferView":7193, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":7194, + "componentType":5126, + "count":46, + "max":[ + 161.98095703125, + 658.67578125, + 366.15240478515625 + ], + "min":[ + -161.97900390625, + 0, + -366.1530456542969 + ], + "type":"VEC3" + }, + { + "bufferView":7195, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":7196, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":7197, + "componentType":5126, + "count":746, + "max":[ + 136.37388610839844, + 46.099220275878906, + 136.37379455566406 + ], + "min":[ + -136.373779296875, + -5.14984130859375e-05, + -136.37380981445312 + ], + "type":"VEC3" + }, + { + "bufferView":7198, + "componentType":5126, + "count":746, + "type":"VEC3" + }, + { + "bufferView":7199, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":7200, + "componentType":5126, + "count":48, + "max":[ + 289.0126037597656, + 233.9413299560547, + 11.697283744812012 + ], + "min":[ + -289.01556396484375, + -1.52587890625e-05, + -11.696887016296387 + ], + "type":"VEC3" + }, + { + "bufferView":7201, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":7202, + "componentType":5126, + "count":48, + "max":[ + 1539.080078125, + 193.8000030517578, + 6748.66796875 + ], + "min":[ + -1539.080078125, + 0, + -6748.66796875 + ], + "type":"VEC3" + }, + { + "bufferView":7203, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":7204, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":7205, + "componentType":5123, + "count":72, + "type":"SCALAR" + }, + { + "bufferView":7206, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.0733642578125 + ], + "min":[ + -27.193359375, + 0, + -126.07333374023438 + ], + "type":"VEC3" + }, + { + "bufferView":7207, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7208, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7209, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":7210, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7211, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7212, + "componentType":5126, + "count":152, + "max":[ + 503.8994140625, + 59.56591796875, + 21.07904052734375 + ], + "min":[ + -503.90234375, + 0, + -21.07806396484375 + ], + "type":"VEC3" + }, + { + "bufferView":7213, + "componentType":5126, + "count":152, + "type":"VEC3" + }, + { + "bufferView":7214, + "componentType":5126, + "count":152, + "type":"VEC2" + }, + { + "bufferView":7215, + "componentType":5123, + "count":336, + "type":"SCALAR" + }, + { + "bufferView":7216, + "componentType":5126, + "count":76, + "max":[ + 279.10015869140625, + 3543.081787109375, + 278.8675537109375 + ], + "min":[ + -279.1027526855469, + 0, + -278.8695373535156 + ], + "type":"VEC3" + }, + { + "bufferView":7217, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":7218, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":7219, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":7220, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7221, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7222, + "componentType":5126, + "count":76, + "max":[ + 278.8675231933594, + 3543.081787109375, + 279.1027526855469 + ], + "min":[ + -278.8695068359375, + 0, + -279.10015869140625 + ], + "type":"VEC3" + }, + { + "bufferView":7223, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":7224, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":7225, + "componentType":5126, + "count":748, + "max":[ + 136.78469848632812, + 121.51294708251953, + 136.37379455566406 + ], + "min":[ + -136.78652954101562, + 0.000118255615234375, + -136.37380981445312 + ], + "type":"VEC3" + }, + { + "bufferView":7226, + "componentType":5126, + "count":748, + "type":"VEC3" + }, + { + "bufferView":7227, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":7228, + "componentType":5126, + "count":384, + "max":[ + 29.24365234375, + 2882.534912109375, + 5200.28515625 + ], + "min":[ + -29.24365234375, + 0, + -5200.28369140625 + ], + "type":"VEC3" + }, + { + "bufferView":7229, + "componentType":5126, + "count":384, + "type":"VEC3" + }, + { + "bufferView":7230, + "componentType":5126, + "count":384, + "type":"VEC2" + }, + { + "bufferView":7231, + "componentType":5126, + "count":559, + "max":[ + 224.27151489257812, + 530.1519775390625, + 223.79135131835938 + ], + "min":[ + -224.27151489257812, + 82.56924438476562, + -223.79135131835938 + ], + "type":"VEC3" + }, + { + "bufferView":7232, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":7233, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":7234, + "componentType":5126, + "count":4, + "max":[ + -0.001953125, + 2586.479248046875, + 698.884521484375 + ], + "min":[ + -0.001953125, + 0, + -698.885009765625 + ], + "type":"VEC3" + }, + { + "bufferView":7235, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7236, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7237, + "componentType":5126, + "count":239, + "max":[ + 173.28125, + 188.23828125, + 169.1015625 + ], + "min":[ + -173.28173828125, + 0, + -169.1005859375 + ], + "type":"VEC3" + }, + { + "bufferView":7238, + "componentType":5126, + "count":239, + "type":"VEC3" + }, + { + "bufferView":7239, + "componentType":5126, + "count":239, + "type":"VEC2" + }, + { + "bufferView":7240, + "componentType":5126, + "count":24, + "max":[ + 350, + 1016.5, + 350 + ], + "min":[ + -350, + 0, + -350 + ], + "type":"VEC3" + }, + { + "bufferView":7241, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7242, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7243, + "componentType":5126, + "count":595, + "max":[ + 155.6784210205078, + 188.40704345703125, + 142.43716430664062 + ], + "min":[ + -155.67872619628906, + 0.0001983642578125, + -142.43719482421875 + ], + "type":"VEC3" + }, + { + "bufferView":7244, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":7245, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.5140380859375, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":7246, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":7247, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":7248, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":7249, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":7250, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":7251, + "componentType":5126, + "count":589, + "max":[ + 137.32012939453125, + 200.46693420410156, + 123.01901245117188 + ], + "min":[ + -144.529296875, + 29.25487518310547, + -134.94979858398438 + ], + "type":"VEC3" + }, + { + "bufferView":7252, + "componentType":5126, + "count":589, + "type":"VEC3" + }, + { + "bufferView":7253, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7254, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51416778564453, + 43.588871002197266 + ], + "min":[ + -22.728515625, + -7.62939453125e-06, + -43.589359283447266 + ], + "type":"VEC3" + }, + { + "bufferView":7255, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":7256, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":7257, + "componentType":5126, + "count":112, + "max":[ + 106.49421691894531, + 381.671142578125, + 171.66342163085938 + ], + "min":[ + -106.49431610107422, + 1.52587890625e-05, + -171.66342163085938 + ], + "type":"VEC3" + }, + { + "bufferView":7258, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":7259, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":7260, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":7261, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":7262, + "componentType":5126, + "count":213, + "max":[ + 13.2529296875, + 75.79655456542969, + 25.507080078125 + ], + "min":[ + -13.25048828125, + 0.00018621631897985935, + -25.497314453125 + ], + "type":"VEC3" + }, + { + "bufferView":7263, + "componentType":5126, + "count":213, + "type":"VEC3" + }, + { + "bufferView":7264, + "componentType":5126, + "count":213, + "type":"VEC2" + }, + { + "bufferView":7265, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":7266, + "componentType":5126, + "count":40, + "max":[ + 1.4143264293670654, + 10.517629623413086, + 5.258737564086914 + ], + "min":[ + -1.4143013954162598, + 0.0001544952392578125, + -5.258735179901123 + ], + "type":"VEC3" + }, + { + "bufferView":7267, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":7268, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":7269, + "componentType":5126, + "count":576, + "max":[ + 193.23324584960938, + 232.17510986328125, + 176.68064880371094 + ], + "min":[ + -193.23434448242188, + -6.103515625e-05, + -176.6804962158203 + ], + "type":"VEC3" + }, + { + "bufferView":7270, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":7271, + "componentType":5126, + "count":336, + "max":[ + 170.9033203125, + 157.004150390625, + 177.25439453125 + ], + "min":[ + -170.90625, + 21.2890625, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":7272, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":7273, + "componentType":5126, + "count":336, + "type":"VEC2" + }, + { + "bufferView":7274, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":7275, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7276, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7277, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7278, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68621826171875 + ], + "min":[ + -15.4755859375, + 0, + -381.68670654296875 + ], + "type":"VEC3" + }, + { + "bufferView":7279, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7280, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7281, + "componentType":5126, + "count":94, + "max":[ + 31.27215576171875, + 267.8876953125, + 51.744140625 + ], + "min":[ + -31.22821044921875, + 0, + -51.582275390625 + ], + "type":"VEC3" + }, + { + "bufferView":7282, + "componentType":5126, + "count":94, + "type":"VEC3" + }, + { + "bufferView":7283, + "componentType":5126, + "count":94, + "type":"VEC2" + }, + { + "bufferView":7284, + "componentType":5126, + "count":575, + "max":[ + 157.94313049316406, + 105.15357971191406, + 160.6921844482422 + ], + "min":[ + -150.7314453125, + 0.6451568603515625, + -160.69229125976562 + ], + "type":"VEC3" + }, + { + "bufferView":7285, + "componentType":5126, + "count":575, + "type":"VEC3" + }, + { + "bufferView":7286, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7287, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7288, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7289, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7290, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7291, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7292, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7293, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":7294, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":7295, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":7296, + "componentType":5126, + "count":1052, + "max":[ + 29.7890625, + 254.3076171875, + 90.1090087890625 + ], + "min":[ + -29.783203125, + 1.31298828125, + -90.109130859375 + ], + "type":"VEC3" + }, + { + "bufferView":7297, + "componentType":5126, + "count":1052, + "type":"VEC3" + }, + { + "bufferView":7298, + "componentType":5126, + "count":1052, + "type":"VEC2" + }, + { + "bufferView":7299, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":7300, + "componentType":5126, + "count":594, + "max":[ + 161.0444793701172, + 194.65914916992188, + 147.3292694091797 + ], + "min":[ + -161.04266357421875, + -0.000213623046875, + -147.3289031982422 + ], + "type":"VEC3" + }, + { + "bufferView":7301, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":7302, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":7303, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7304, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7305, + "componentType":5126, + "count":564, + "max":[ + 204.45677185058594, + 209.63052368164062, + 178.08349609375 + ], + "min":[ + -204.45657348632812, + 0.0001068115234375, + -178.0833282470703 + ], + "type":"VEC3" + }, + { + "bufferView":7306, + "componentType":5126, + "count":564, + "type":"VEC3" + }, + { + "bufferView":7307, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7308, + "componentType":5126, + "count":586, + "max":[ + 173.30691528320312, + 32.82530975341797, + 173.3052520751953 + ], + "min":[ + -173.3037109375, + 9.1552734375e-05, + -173.30545043945312 + ], + "type":"VEC3" + }, + { + "bufferView":7309, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":7310, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7311, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7312, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7313, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7314, + "componentType":5126, + "count":60, + "max":[ + 3.7875263690948486, + 13.413311004638672, + 4.245928764343262 + ], + "min":[ + -3.787546396255493, + 0.00010930931603070349, + -4.2459025382995605 + ], + "type":"VEC3" + }, + { + "bufferView":7315, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":7316, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":7317, + "componentType":5126, + "count":585, + "max":[ + 152.57525634765625, + 102.57337188720703, + 155.0863800048828 + ], + "min":[ + -145.3692626953125, + 0.6216506958007812, + -155.08645629882812 + ], + "type":"VEC3" + }, + { + "bufferView":7318, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":7319, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7320, + "componentType":5126, + "count":355, + "max":[ + 171.296875, + 184.80419921875, + 176.14013671875 + ], + "min":[ + -171.298828125, + 44.45556640625, + -176.1416015625 + ], + "type":"VEC3" + }, + { + "bufferView":7321, + "componentType":5126, + "count":355, + "type":"VEC3" + }, + { + "bufferView":7322, + "componentType":5126, + "count":355, + "type":"VEC2" + }, + { + "bufferView":7323, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":7324, + "componentType":5126, + "count":578, + "max":[ + 160.69134521484375, + 32.82542037963867, + 160.6921844482422 + ], + "min":[ + -160.69309997558594, + 6.103515625e-05, + -160.69229125976562 + ], + "type":"VEC3" + }, + { + "bufferView":7325, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":7326, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7327, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7328, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7329, + "componentType":5126, + "count":586, + "max":[ + 185.60711669921875, + 266.8208312988281, + 167.04583740234375 + ], + "min":[ + -192.8129119873047, + 39.33503723144531, + -178.97738647460938 + ], + "type":"VEC3" + }, + { + "bufferView":7330, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":7331, + "componentType":5126, + "count":4987, + "max":[ + 84.528076171875, + 1089.08251953125, + 84.72149658203125 + ], + "min":[ + -84.52996826171875, + 0, + -84.7205810546875 + ], + "type":"VEC3" + }, + { + "bufferView":7332, + "componentType":5126, + "count":4987, + "type":"VEC3" + }, + { + "bufferView":7333, + "componentType":5126, + "count":4987, + "type":"VEC2" + }, + { + "bufferView":7334, + "componentType":5123, + "count":11976, + "type":"SCALAR" + }, + { + "bufferView":7335, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.58984375, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":7336, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":7337, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":7338, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7339, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7340, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7341, + "componentType":5126, + "count":756, + "max":[ + 136.373779296875, + 173.8272705078125, + 128.91510009765625 + ], + "min":[ + -136.37388610839844, + -3.0517578125e-05, + -128.91500854492188 + ], + "type":"VEC3" + }, + { + "bufferView":7342, + "componentType":5126, + "count":756, + "type":"VEC3" + }, + { + "bufferView":7343, + "componentType":5126, + "count":24, + "max":[ + 35.000003814697266, + 2000, + 35.000003814697266 + ], + "min":[ + -35.000003814697266, + 0, + -35.000003814697266 + ], + "type":"VEC3" + }, + { + "bufferView":7344, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7345, + "componentType":5126, + "count":568, + "max":[ + 211.34117126464844, + 217.89578247070312, + 190.1847381591797 + ], + "min":[ + -211.33865356445312, + 1.477752685546875, + -177.90426635742188 + ], + "type":"VEC3" + }, + { + "bufferView":7346, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":7347, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7348, + "componentType":5126, + "count":579, + "max":[ + 186.52565002441406, + 120.03093719482422, + 194.32701110839844 + ], + "min":[ + -186.5293426513672, + -0.0002288818359375, + -194.3273162841797 + ], + "type":"VEC3" + }, + { + "bufferView":7349, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":7350, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7351, + "componentType":5126, + "count":138, + "max":[ + 80.151611328125, + 126.6884765625, + 49.03515625 + ], + "min":[ + -80.154541015625, + 0, + -49.03515625 + ], + "type":"VEC3" + }, + { + "bufferView":7352, + "componentType":5126, + "count":138, + "type":"VEC3" + }, + { + "bufferView":7353, + "componentType":5126, + "count":138, + "type":"VEC2" + }, + { + "bufferView":7354, + "componentType":5126, + "count":562, + "max":[ + 204.45657348632812, + 211.0584716796875, + 184.22413635253906 + ], + "min":[ + -204.45677185058594, + 1.4281158447265625, + -171.9427490234375 + ], + "type":"VEC3" + }, + { + "bufferView":7355, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":7356, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7357, + "componentType":5126, + "count":559, + "max":[ + 722.72265625, + 2637.3974609375, + 19.80198860168457 + ], + "min":[ + -722.72265625, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":7358, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":7359, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":7360, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7361, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7362, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7363, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7364, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7365, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7366, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7367, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7368, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7369, + "componentType":5126, + "count":348, + "max":[ + 171.296875, + 184.8017578125, + 176.13916015625 + ], + "min":[ + -171.298828125, + 44.4541015625, + -176.142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":7370, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":7371, + "componentType":5126, + "count":348, + "type":"VEC2" + }, + { + "bufferView":7372, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":7373, + "componentType":5126, + "count":120, + "max":[ + 2752.00439453125, + 2819.530517578125, + 711.5361328125 + ], + "min":[ + -2752.0029296875, + -0.0001220703125, + -711.53515625 + ], + "type":"VEC3" + }, + { + "bufferView":7374, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":7375, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":7376, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":7377, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7378, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7379, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7380, + "componentType":5126, + "count":52, + "max":[ + 238.47802734375, + 483.89794921875, + 30.0010986328125 + ], + "min":[ + -238.48046875, + 0, + -29.9993896484375 + ], + "type":"VEC3" + }, + { + "bufferView":7381, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":7382, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":7383, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":7384, + "componentType":5126, + "count":50, + "max":[ + 123.61669921875, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.61181640625, + 0, + -366.1531066894531 + ], + "type":"VEC3" + }, + { + "bufferView":7385, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":7386, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":7387, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":7388, + "componentType":5126, + "count":570, + "max":[ + 180.24105834960938, + 259.448486328125, + 162.15383911132812 + ], + "min":[ + -187.44895935058594, + 38.21537780761719, + -174.0855712890625 + ], + "type":"VEC3" + }, + { + "bufferView":7389, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":7390, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7391, + "componentType":5126, + "count":52, + "max":[ + 238.47998046875, + 483.89794921875, + 30.0010986328125 + ], + "min":[ + -238.478515625, + 0, + -29.9993896484375 + ], + "type":"VEC3" + }, + { + "bufferView":7392, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":7393, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":7394, + "componentType":5126, + "count":76, + "max":[ + 279.1010437011719, + 3543.081787109375, + 278.8670349121094 + ], + "min":[ + -279.0986328125, + 0, + -278.8664245605469 + ], + "type":"VEC3" + }, + { + "bufferView":7395, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":7396, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":7397, + "componentType":5126, + "count":178, + "max":[ + 769.70703125, + 113.194580078125, + 56.59716796875 + ], + "min":[ + -769.71044921875, + 0, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":7398, + "componentType":5126, + "count":178, + "type":"VEC3" + }, + { + "bufferView":7399, + "componentType":5126, + "count":178, + "type":"VEC2" + }, + { + "bufferView":7400, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":7401, + "componentType":5126, + "count":50, + "max":[ + 142.32080078125, + 608.2197265625, + 391.7373046875 + ], + "min":[ + -142.32177734375, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":7402, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":7403, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":7404, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":7405, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7406, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7407, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7408, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7409, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7410, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7411, + "componentType":5126, + "count":570, + "max":[ + 211.34117126464844, + 216.4180145263672, + 184.04443359375 + ], + "min":[ + -211.33865356445312, + -4.57763671875e-05, + -184.0446319580078 + ], + "type":"VEC3" + }, + { + "bufferView":7412, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":7413, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7414, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7415, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7416, + "componentType":5126, + "count":288, + "max":[ + 10871.78515625, + 916.696044921875, + 823.04150390625 + ], + "min":[ + -10871.7861328125, + 0.00030517578125, + -823.0414428710938 + ], + "type":"VEC3" + }, + { + "bufferView":7417, + "componentType":5126, + "count":288, + "type":"VEC3" + }, + { + "bufferView":7418, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7419, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7420, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7421, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":7422, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":7423, + "componentType":5126, + "count":1420, + "max":[ + 433.119140625, + 367.92919921875, + 90.005859375 + ], + "min":[ + -433.12109375, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":7424, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":7425, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":7426, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":7427, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7428, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7429, + "componentType":5126, + "count":588, + "max":[ + 158.3614959716797, + 106.42626953125, + 164.89654541015625 + ], + "min":[ + -158.360595703125, + 4.57763671875e-05, + -164.89666748046875 + ], + "type":"VEC3" + }, + { + "bufferView":7430, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":7431, + "componentType":5126, + "count":54, + "max":[ + 29.798828125, + 520.125, + 217.041015625 + ], + "min":[ + -29.798828125, + 0, + -217.04150390625 + ], + "type":"VEC3" + }, + { + "bufferView":7432, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":7433, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":7434, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":7435, + "componentType":5126, + "count":104, + "max":[ + 1192.81396484375, + 3260.187255859375, + 2788.339599609375 + ], + "min":[ + -1192.81640625, + 4.57763671875e-05, + -2788.34130859375 + ], + "type":"VEC3" + }, + { + "bufferView":7436, + "componentType":5126, + "count":104, + "type":"VEC3" + }, + { + "bufferView":7437, + "componentType":5126, + "count":104, + "type":"VEC2" + }, + { + "bufferView":7438, + "componentType":5123, + "count":180, + "type":"SCALAR" + }, + { + "bufferView":7439, + "componentType":5126, + "count":578, + "max":[ + 195.72679138183594, + 32.82524108886719, + 195.7284698486328 + ], + "min":[ + -195.7303924560547, + 6.866455078125e-05, + -195.7287139892578 + ], + "type":"VEC3" + }, + { + "bufferView":7440, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":7441, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.514404296875, + 22.7293758392334 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":7442, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":7443, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":7444, + "componentType":5126, + "count":169, + "max":[ + 769.70751953125, + 113.194580078125, + 56.5966796875 + ], + "min":[ + -769.709228515625, + 0, + -56.59814453125 + ], + "type":"VEC3" + }, + { + "bufferView":7445, + "componentType":5126, + "count":169, + "type":"VEC3" + }, + { + "bufferView":7446, + "componentType":5126, + "count":169, + "type":"VEC2" + }, + { + "bufferView":7447, + "componentType":5126, + "count":579, + "max":[ + 166.40672302246094, + 110.26168823242188, + 173.3052520751953 + ], + "min":[ + -166.41053771972656, + 0.00018310546875, + -173.30545043945312 + ], + "type":"VEC3" + }, + { + "bufferView":7448, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":7449, + "componentType":5126, + "count":803, + "max":[ + 4.130859375, + 90.58740997314453, + 34.45850372314453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45459747314453 + ], + "type":"VEC3" + }, + { + "bufferView":7450, + "componentType":5126, + "count":803, + "type":"VEC3" + }, + { + "bufferView":7451, + "componentType":5126, + "count":803, + "type":"VEC2" + }, + { + "bufferView":7452, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":7453, + "componentType":5126, + "count":88, + "max":[ + 30.26416015625, + 32.248046875, + 126.460693359375 + ], + "min":[ + -30.265625, + 0.000244140625, + -126.45849609375 + ], + "type":"VEC3" + }, + { + "bufferView":7454, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":7455, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":7456, + "componentType":5126, + "count":24, + "max":[ + 126.0732421875, + 130.123046875, + 27.19384765625 + ], + "min":[ + -126.0732421875, + 0, + -27.193359375 + ], + "type":"VEC3" + }, + { + "bufferView":7457, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7458, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7459, + "componentType":5126, + "count":579, + "max":[ + 186.52565002441406, + 120.03093719482422, + 194.32713317871094 + ], + "min":[ + -186.5293426513672, + -0.0002288818359375, + -194.3271942138672 + ], + "type":"VEC3" + }, + { + "bufferView":7460, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":7461, + "componentType":5126, + "count":24, + "max":[ + 110.00010681152344, + 50, + 584.666015625 + ], + "min":[ + -110.00007629394531, + 0, + -584.662109375 + ], + "type":"VEC3" + }, + { + "bufferView":7462, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7463, + "componentType":5126, + "count":136, + "max":[ + 80.153076171875, + 126.6884765625, + 49.03466796875 + ], + "min":[ + -80.153076171875, + 0, + -49.03564453125 + ], + "type":"VEC3" + }, + { + "bufferView":7464, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":7465, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":7466, + "componentType":5126, + "count":226, + "max":[ + 115.14122009277344, + 317.57855224609375, + 160.0547332763672 + ], + "min":[ + -115.14129638671875, + -6.103515625e-05, + -160.05490112304688 + ], + "type":"VEC3" + }, + { + "bufferView":7467, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":7468, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":7469, + "componentType":5126, + "count":350, + "max":[ + 115.35118865966797, + 212.3876495361328, + 68.44575500488281 + ], + "min":[ + -115.35128021240234, + 0.967132568359375, + -68.44590759277344 + ], + "type":"VEC3" + }, + { + "bufferView":7470, + "componentType":5126, + "count":350, + "type":"VEC3" + }, + { + "bufferView":7471, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":7472, + "componentType":5126, + "count":920, + "max":[ + 879.658203125, + 587.032958984375, + 879.6582641601562 + ], + "min":[ + -879.66015625, + -3.0517578125e-05, + -879.6621704101562 + ], + "type":"VEC3" + }, + { + "bufferView":7473, + "componentType":5126, + "count":920, + "type":"VEC3" + }, + { + "bufferView":7474, + "componentType":5126, + "count":920, + "type":"VEC2" + }, + { + "bufferView":7475, + "componentType":5123, + "count":1440, + "type":"SCALAR" + }, + { + "bufferView":7476, + "componentType":5126, + "count":24, + "max":[ + 260, + 2824.5, + 260 + ], + "min":[ + -260, + 0, + -260 + ], + "type":"VEC3" + }, + { + "bufferView":7477, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7478, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7479, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92938232421875, + 384.1394348144531 + ], + "min":[ + -245.2333984375, + 0.0001678466796875, + -384.1411437988281 + ], + "type":"VEC3" + }, + { + "bufferView":7480, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":7481, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":7482, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":7483, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":7484, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":7485, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7486, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7487, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7488, + "componentType":5126, + "count":1420, + "max":[ + 433.12109375, + 367.92919921875, + 90.005859375 + ], + "min":[ + -433.119140625, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":7489, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":7490, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":7491, + "componentType":5126, + "count":152, + "max":[ + 503.8994140625, + 59.56591796875, + 21.07904052734375 + ], + "min":[ + -503.90234375, + 0, + -21.07806396484375 + ], + "type":"VEC3" + }, + { + "bufferView":7492, + "componentType":5126, + "count":152, + "type":"VEC3" + }, + { + "bufferView":7493, + "componentType":5126, + "count":152, + "type":"VEC2" + }, + { + "bufferView":7494, + "componentType":5126, + "count":183, + "max":[ + 769.70947265625, + 113.194580078125, + 56.597412109375 + ], + "min":[ + -769.7080078125, + 6.103515625e-05, + -56.596923828125 + ], + "type":"VEC3" + }, + { + "bufferView":7495, + "componentType":5126, + "count":183, + "type":"VEC3" + }, + { + "bufferView":7496, + "componentType":5126, + "count":183, + "type":"VEC2" + }, + { + "bufferView":7497, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":7498, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4556884765625, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":7499, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":7500, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":7501, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":7502, + "componentType":5126, + "count":44, + "max":[ + 127.44287109375, + 625.6328125, + 391.7375183105469 + ], + "min":[ + -127.4443359375, + 0, + -391.7375793457031 + ], + "type":"VEC3" + }, + { + "bufferView":7503, + "componentType":5126, + "count":44, + "type":"VEC3" + }, + { + "bufferView":7504, + "componentType":5126, + "count":44, + "type":"VEC2" + }, + { + "bufferView":7505, + "componentType":5126, + "count":140, + "max":[ + 57.79643630981445, + 61.74175262451172, + 45.56761932373047 + ], + "min":[ + -57.7967414855957, + 6.4849853515625e-05, + -45.56759262084961 + ], + "type":"VEC3" + }, + { + "bufferView":7506, + "componentType":5126, + "count":140, + "type":"VEC3" + }, + { + "bufferView":7507, + "componentType":5126, + "count":140, + "type":"VEC2" + }, + { + "bufferView":7508, + "componentType":5126, + "count":574, + "max":[ + 191.5229949951172, + 198.21255493164062, + 160.7429962158203 + ], + "min":[ + -191.5255126953125, + 1.3350753784179688, + -173.02432250976562 + ], + "type":"VEC3" + }, + { + "bufferView":7509, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":7510, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7511, + "componentType":5126, + "count":218, + "max":[ + 33.40234375, + 133.60888671875, + 66.80419921875 + ], + "min":[ + -33.402099609375, + 0, + -66.80419921875 + ], + "type":"VEC3" + }, + { + "bufferView":7512, + "componentType":5126, + "count":218, + "type":"VEC3" + }, + { + "bufferView":7513, + "componentType":5126, + "count":218, + "type":"VEC2" + }, + { + "bufferView":7514, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":7515, + "componentType":5126, + "count":122, + "max":[ + 983.470703125, + 355.5092468261719, + 983.4702758789062 + ], + "min":[ + -983.470703125, + 9.1552734375e-05, + -983.4717407226562 + ], + "type":"VEC3" + }, + { + "bufferView":7516, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":7517, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":7518, + "componentType":5126, + "count":570, + "max":[ + 207.89772033691406, + 32.82524490356445, + 207.8981475830078 + ], + "min":[ + -207.89891052246094, + 0.0001373291015625, + -207.89852905273438 + ], + "type":"VEC3" + }, + { + "bufferView":7519, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":7520, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7521, + "componentType":5126, + "count":24, + "max":[ + 13.6923828125, + 40.78076171875, + 2279.094970703125 + ], + "min":[ + -13.69189453125, + 0, + -2279.09619140625 + ], + "type":"VEC3" + }, + { + "bufferView":7522, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7523, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7524, + "componentType":5126, + "count":578, + "max":[ + 202.73544311523438, + 209.34921264648438, + 182.7335205078125 + ], + "min":[ + -202.73629760742188, + 1.4157562255859375, + -170.45285034179688 + ], + "type":"VEC3" + }, + { + "bufferView":7525, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":7526, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7527, + "componentType":5126, + "count":112, + "max":[ + 147.98104858398438, + 402.919921875, + 170.0750732421875 + ], + "min":[ + -147.98330688476562, + 20.407974243164062, + -170.07574462890625 + ], + "type":"VEC3" + }, + { + "bufferView":7528, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":7529, + "componentType":5126, + "count":60, + "max":[ + 3.7875099182128906, + 13.000264167785645, + 3.742408275604248 + ], + "min":[ + -3.7875568866729736, + 0.00022077560424804688, + -3.742424249649048 + ], + "type":"VEC3" + }, + { + "bufferView":7530, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":7531, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":7532, + "componentType":5126, + "count":1952, + "max":[ + 2.095486640930176, + 14.731964111328125, + 7.36604642868042 + ], + "min":[ + -2.0954651832580566, + -8.249282836914062e-05, + -7.3659987449646 + ], + "type":"VEC3" + }, + { + "bufferView":7533, + "componentType":5126, + "count":1952, + "type":"VEC3" + }, + { + "bufferView":7534, + "componentType":5126, + "count":1952, + "type":"VEC2" + }, + { + "bufferView":7535, + "componentType":5126, + "count":263, + "max":[ + 169.10693359375, + 196.21435546875, + 175.05322265625 + ], + "min":[ + -169.1068115234375, + 0, + -175.0537109375 + ], + "type":"VEC3" + }, + { + "bufferView":7536, + "componentType":5126, + "count":263, + "type":"VEC3" + }, + { + "bufferView":7537, + "componentType":5126, + "count":263, + "type":"VEC2" + }, + { + "bufferView":7538, + "componentType":5126, + "count":48, + "max":[ + 45.86509323120117, + 68.97252655029297, + 15390.8203125 + ], + "min":[ + -45.86118698120117, + 0.00012969970703125, + -15390.8203125 + ], + "type":"VEC3" + }, + { + "bufferView":7539, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":7540, + "componentType":5126, + "count":574, + "max":[ + 180.31166076660156, + 32.82526397705078, + 180.3126220703125 + ], + "min":[ + -180.3135223388672, + -4.1961669921875e-05, + -180.31256103515625 + ], + "type":"VEC3" + }, + { + "bufferView":7541, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":7542, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7543, + "componentType":5126, + "count":240, + "max":[ + 400.007080078125, + 2203.110595703125, + 91.49455261230469 + ], + "min":[ + -400.009521484375, + -0.0001220703125, + -91.49444580078125 + ], + "type":"VEC3" + }, + { + "bufferView":7544, + "componentType":5126, + "count":240, + "type":"VEC3" + }, + { + "bufferView":7545, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7546, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7547, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7548, + "componentType":5126, + "count":582, + "max":[ + 155.0883331298828, + 160.94541931152344, + 135.32760620117188 + ], + "min":[ + -155.08447265625, + -0.00011444091796875, + -135.32757568359375 + ], + "type":"VEC3" + }, + { + "bufferView":7549, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":7550, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7551, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51416778564453, + 43.590213775634766 + ], + "min":[ + -22.728515625, + -7.62939453125e-06, + -43.587894439697266 + ], + "type":"VEC3" + }, + { + "bufferView":7552, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":7553, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":7554, + "componentType":5126, + "count":528, + "max":[ + 722.720703125, + 2637.3974609375, + 19.80284309387207 + ], + "min":[ + -722.720703125, + 0, + -19.80308723449707 + ], + "type":"VEC3" + }, + { + "bufferView":7555, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":7556, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":7557, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":7558, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7559, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7560, + "componentType":5126, + "count":141, + "max":[ + 437.3779296875, + 12069.287109375, + 19.6142578125 + ], + "min":[ + -437.378173828125, + 0.00048828125, + -19.6142578125 + ], + "type":"VEC3" + }, + { + "bufferView":7561, + "componentType":5126, + "count":141, + "type":"VEC3" + }, + { + "bufferView":7562, + "componentType":5126, + "count":141, + "type":"VEC2" + }, + { + "bufferView":7563, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.92919921875, + 90.004150390625 + ], + "min":[ + -433.1201171875, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":7564, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":7565, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":7566, + "componentType":5126, + "count":142, + "max":[ + 9.472702980041504, + 18.945335388183594, + 3.451836109161377 + ], + "min":[ + -9.47275161743164, + -0.00011920928955078125, + -3.451739549636841 + ], + "type":"VEC3" + }, + { + "bufferView":7567, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":7568, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":7569, + "componentType":5126, + "count":315, + "max":[ + 10.677734375, + 283.877197265625, + 60.75100326538086 + ], + "min":[ + -10.6796875, + -1.52587890625e-05, + -60.74929428100586 + ], + "type":"VEC3" + }, + { + "bufferView":7570, + "componentType":5126, + "count":315, + "type":"VEC3" + }, + { + "bufferView":7571, + "componentType":5126, + "count":315, + "type":"VEC2" + }, + { + "bufferView":7572, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":7573, + "componentType":5126, + "count":8046, + "max":[ + 103.78759765625, + 1010.39453125, + 180.1181640625 + ], + "min":[ + -103.78662109375, + 12.32421875, + -180.12109375 + ], + "type":"VEC3" + }, + { + "bufferView":7574, + "componentType":5126, + "count":8046, + "type":"VEC3" + }, + { + "bufferView":7575, + "componentType":5126, + "count":8046, + "type":"VEC2" + }, + { + "bufferView":7576, + "componentType":5126, + "count":136, + "max":[ + 242.8515625, + 131.9609375, + 239.7059326171875 + ], + "min":[ + -242.8525390625, + 0, + -239.7059326171875 + ], + "type":"VEC3" + }, + { + "bufferView":7577, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":7578, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":7579, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7580, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7581, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7582, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7583, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7584, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7585, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.58544921875 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":7586, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7587, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7588, + "componentType":5126, + "count":2453, + "max":[ + 50.151649475097656, + 4511.697265625, + 79.23451232910156 + ], + "min":[ + -50.151641845703125, + 0, + -79.23506927490234 + ], + "type":"VEC3" + }, + { + "bufferView":7589, + "componentType":5126, + "count":2453, + "type":"VEC3" + }, + { + "bufferView":7590, + "componentType":5126, + "count":2453, + "type":"VEC2" + }, + { + "bufferView":7591, + "componentType":5123, + "count":4488, + "type":"SCALAR" + }, + { + "bufferView":7592, + "componentType":5126, + "count":48, + "max":[ + 142.32275390625, + 608.220703125, + 391.737548828125 + ], + "min":[ + -142.31982421875, + 0, + -391.737548828125 + ], + "type":"VEC3" + }, + { + "bufferView":7593, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":7594, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":7595, + "componentType":5126, + "count":112, + "max":[ + 106.49427795410156, + 317.7471008300781, + 106.49418640136719 + ], + "min":[ + -106.49419403076172, + 7.62939453125e-05, + -106.49420928955078 + ], + "type":"VEC3" + }, + { + "bufferView":7596, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":7597, + "componentType":5126, + "count":582, + "max":[ + 185.91859436035156, + 32.82526779174805, + 185.91830444335938 + ], + "min":[ + -185.9182586669922, + 6.866455078125e-05, + -185.9185333251953 + ], + "type":"VEC3" + }, + { + "bufferView":7598, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":7599, + "componentType":5126, + "count":594, + "max":[ + 165.069091796875, + 199.34866333007812, + 150.99778747558594 + ], + "min":[ + -165.06565856933594, + -0.0001678466796875, + -150.99826049804688 + ], + "type":"VEC3" + }, + { + "bufferView":7600, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":7601, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7602, + "componentType":5126, + "count":580, + "max":[ + 170.50135803222656, + 32.8251953125, + 170.50233459472656 + ], + "min":[ + -170.50344848632812, + 3.814697265625e-05, + -170.50250244140625 + ], + "type":"VEC3" + }, + { + "bufferView":7603, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":7604, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7605, + "componentType":5126, + "count":142, + "max":[ + 19.6142578125, + 12069.2861328125, + 437.37841796875 + ], + "min":[ + -19.6142578125, + 0.00054931640625, + -437.379150390625 + ], + "type":"VEC3" + }, + { + "bufferView":7606, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":7607, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":7608, + "componentType":5126, + "count":599, + "max":[ + 149.38990783691406, + 217.0555419921875, + 134.02542114257812 + ], + "min":[ + -156.6021270751953, + 31.77496337890625, + -145.95697021484375 + ], + "type":"VEC3" + }, + { + "bufferView":7609, + "componentType":5126, + "count":599, + "type":"VEC3" + }, + { + "bufferView":7610, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7611, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92938232421875, + 384.578857421875 + ], + "min":[ + -244.4677734375, + 6.103515625e-05, + -384.5805358886719 + ], + "type":"VEC3" + }, + { + "bufferView":7612, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":7613, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":7614, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7615, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7616, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7617, + "componentType":5126, + "count":112, + "max":[ + 147.98106384277344, + 365.8507995605469, + 106.49419403076172 + ], + "min":[ + -147.98333740234375, + -3.0517578125e-05, + -106.49420166015625 + ], + "type":"VEC3" + }, + { + "bufferView":7618, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":7619, + "componentType":5126, + "count":231, + "max":[ + 174.40771484375, + 193.254638671875, + 169.0634765625 + ], + "min":[ + -174.408203125, + 0, + -169.0625 + ], + "type":"VEC3" + }, + { + "bufferView":7620, + "componentType":5126, + "count":231, + "type":"VEC3" + }, + { + "bufferView":7621, + "componentType":5126, + "count":231, + "type":"VEC2" + }, + { + "bufferView":7622, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":7623, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7624, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7625, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7626, + "componentType":5126, + "count":24, + "max":[ + 350, + 1016.5, + 350 + ], + "min":[ + -350, + 0, + -350 + ], + "type":"VEC3" + }, + { + "bufferView":7627, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7628, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7629, + "componentType":5126, + "count":592, + "max":[ + 157.0199432373047, + 189.9700927734375, + 143.6602325439453 + ], + "min":[ + -157.01971435546875, + 0.0001373291015625, + -143.66014099121094 + ], + "type":"VEC3" + }, + { + "bufferView":7630, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":7631, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7632, + "componentType":5126, + "count":340, + "max":[ + 115.14114379882812, + 210.2413787841797, + 69.1163558959961 + ], + "min":[ + -115.1412582397461, + 7.62939453125e-05, + -69.11634063720703 + ], + "type":"VEC3" + }, + { + "bufferView":7633, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":7634, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":7635, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.58984375, + 5.7220458984375e-05, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":7636, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":7637, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":7638, + "componentType":5126, + "count":574, + "max":[ + 152.2848663330078, + 158.18145751953125, + 132.9002227783203 + ], + "min":[ + -152.2821502685547, + -0.00020599365234375, + -132.90011596679688 + ], + "type":"VEC3" + }, + { + "bufferView":7639, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":7640, + "componentType":5126, + "count":578, + "max":[ + 155.67843627929688, + 105.14762878417969, + 162.09364318847656 + ], + "min":[ + -155.6787109375, + -0.0002288818359375, + -162.09371948242188 + ], + "type":"VEC3" + }, + { + "bufferView":7641, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":7642, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7643, + "componentType":5126, + "count":450, + "max":[ + 104.17137908935547, + 104.17129516601562, + 104.17137908935547 + ], + "min":[ + -104.17139434814453, + -8.392333984375e-05, + -104.17137908935547 + ], + "type":"VEC3" + }, + { + "bufferView":7644, + "componentType":5126, + "count":450, + "type":"VEC3" + }, + { + "bufferView":7645, + "componentType":5126, + "count":450, + "type":"VEC2" + }, + { + "bufferView":7646, + "componentType":5126, + "count":8051, + "max":[ + 103.78759765625, + 1010.394775390625, + 180.119140625 + ], + "min":[ + -103.78662109375, + 12.324462890625, + -180.1201171875 + ], + "type":"VEC3" + }, + { + "bufferView":7647, + "componentType":5126, + "count":8051, + "type":"VEC3" + }, + { + "bufferView":7648, + "componentType":5126, + "count":8051, + "type":"VEC2" + }, + { + "bufferView":7649, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":7650, + "componentType":5126, + "count":584, + "max":[ + 186.525634765625, + 224.35946655273438, + 170.5655975341797 + ], + "min":[ + -186.52935791015625, + 6.103515625e-05, + -170.56582641601562 + ], + "type":"VEC3" + }, + { + "bufferView":7651, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":7652, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7653, + "componentType":5126, + "count":576, + "max":[ + 157.88787841796875, + 32.825321197509766, + 157.8892822265625 + ], + "min":[ + -157.89076232910156, + 1.52587890625e-05, + -157.8893585205078 + ], + "type":"VEC3" + }, + { + "bufferView":7654, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":7655, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7656, + "componentType":5126, + "count":350, + "max":[ + 115.35118865966797, + 212.3876495361328, + 68.44575500488281 + ], + "min":[ + -115.35128021240234, + 0.967132568359375, + -68.44590759277344 + ], + "type":"VEC3" + }, + { + "bufferView":7657, + "componentType":5126, + "count":350, + "type":"VEC3" + }, + { + "bufferView":7658, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":7659, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7660, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7661, + "componentType":5126, + "count":586, + "max":[ + 185.60711669921875, + 266.8208312988281, + 167.04583740234375 + ], + "min":[ + -192.8129119873047, + 39.33503723144531, + -178.97738647460938 + ], + "type":"VEC3" + }, + { + "bufferView":7662, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":7663, + "componentType":5126, + "count":576, + "max":[ + 191.89173889160156, + 230.61215209960938, + 175.45767211914062 + ], + "min":[ + -191.89334106445312, + 0.0001220703125, + -175.4575653076172 + ], + "type":"VEC3" + }, + { + "bufferView":7664, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":7665, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7666, + "componentType":5126, + "count":140, + "max":[ + 57.79655838012695, + 61.74175262451172, + 45.56761932373047 + ], + "min":[ + -57.7966194152832, + 6.4849853515625e-05, + -45.56759262084961 + ], + "type":"VEC3" + }, + { + "bufferView":7667, + "componentType":5126, + "count":140, + "type":"VEC3" + }, + { + "bufferView":7668, + "componentType":5126, + "count":140, + "type":"VEC2" + }, + { + "bufferView":7669, + "componentType":5126, + "count":598, + "max":[ + 181.71473693847656, + 32.825252532958984, + 181.7139434814453 + ], + "min":[ + -181.71339416503906, + 9.5367431640625e-05, + -181.71420288085938 + ], + "type":"VEC3" + }, + { + "bufferView":7670, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":7671, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7672, + "componentType":5126, + "count":596, + "max":[ + 146.67794799804688, + 32.8252067565918, + 146.67767333984375 + ], + "min":[ + -146.6774139404297, + -4.9591064453125e-05, + -146.6776885986328 + ], + "type":"VEC3" + }, + { + "bufferView":7673, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":7674, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7675, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7676, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7677, + "componentType":5126, + "count":24, + "max":[ + 182.037109375, + 29.517658233642578, + 3245.603759765625 + ], + "min":[ + -182.037109375, + -7.915496826171875e-05, + -3245.60009765625 + ], + "type":"VEC3" + }, + { + "bufferView":7678, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7679, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7680, + "componentType":5126, + "count":180, + "max":[ + 13.2529296875, + 75.79545593261719, + 25.50537109375 + ], + "min":[ + -13.25048828125, + 2.5339191779494286e-05, + -25.4984130859375 + ], + "type":"VEC3" + }, + { + "bufferView":7681, + "componentType":5126, + "count":180, + "type":"VEC3" + }, + { + "bufferView":7682, + "componentType":5126, + "count":180, + "type":"VEC2" + }, + { + "bufferView":7683, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":7684, + "componentType":5126, + "count":341, + "max":[ + 171.298828125, + 184.80078125, + 176.13916015625 + ], + "min":[ + -171.296875, + 44.45361328125, + -176.142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":7685, + "componentType":5126, + "count":341, + "type":"VEC3" + }, + { + "bufferView":7686, + "componentType":5126, + "count":341, + "type":"VEC2" + }, + { + "bufferView":7687, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":7688, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7689, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7690, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7691, + "componentType":5126, + "count":584, + "max":[ + 177.13890075683594, + 115.37523651123047, + 184.51686096191406 + ], + "min":[ + -177.1385040283203, + -0.000152587890625, + -184.51707458496094 + ], + "type":"VEC3" + }, + { + "bufferView":7692, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":7693, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7694, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7695, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7696, + "componentType":5126, + "count":48, + "max":[ + 366.153076171875, + 696.755859375, + 123.615234375 + ], + "min":[ + -366.15234375, + 0, + -123.61328125 + ], + "type":"VEC3" + }, + { + "bufferView":7697, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":7698, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":7699, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":7700, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":7701, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":7702, + "componentType":5126, + "count":690, + "max":[ + 150.83132934570312, + 174.3048095703125, + 143.72177124023438 + ], + "min":[ + -150.83401489257812, + 1.52587890625e-05, + -143.72178649902344 + ], + "type":"VEC3" + }, + { + "bufferView":7703, + "componentType":5126, + "count":690, + "type":"VEC3" + }, + { + "bufferView":7704, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":7705, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":7706, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":7707, + "componentType":5126, + "count":574, + "max":[ + 188.72206115722656, + 194.11349487304688, + 164.4562225341797 + ], + "min":[ + -188.72061157226562, + -4.57763671875e-05, + -164.45632934570312 + ], + "type":"VEC3" + }, + { + "bufferView":7708, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":7709, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7710, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7711, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7712, + "componentType":5126, + "count":1333, + "max":[ + 8.9976224899292, + 48.001407623291016, + 23.8692626953125 + ], + "min":[ + -8.997587203979492, + -0.00012969970703125, + -23.869312286376953 + ], + "type":"VEC3" + }, + { + "bufferView":7713, + "componentType":5126, + "count":1333, + "type":"VEC3" + }, + { + "bufferView":7714, + "componentType":5126, + "count":1333, + "type":"VEC2" + }, + { + "bufferView":7715, + "componentType":5126, + "count":560, + "max":[ + 187.31944274902344, + 192.73170471191406, + 163.2425537109375 + ], + "min":[ + -187.32032775878906, + 0.00014495849609375, + -163.2424774169922 + ], + "type":"VEC3" + }, + { + "bufferView":7716, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":7717, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7718, + "componentType":5126, + "count":602, + "max":[ + 171.90518188476562, + 32.825321197509766, + 171.90379333496094 + ], + "min":[ + -171.9025421142578, + 2.288818359375e-05, + -171.90396118164062 + ], + "type":"VEC3" + }, + { + "bufferView":7719, + "componentType":5126, + "count":602, + "type":"VEC3" + }, + { + "bufferView":7720, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7721, + "componentType":5126, + "count":561, + "max":[ + 151.23428344726562, + 101.92843627929688, + 153.6849365234375 + ], + "min":[ + -144.02774047851562, + 0.6161727905273438, + -153.68499755859375 + ], + "type":"VEC3" + }, + { + "bufferView":7722, + "componentType":5126, + "count":561, + "type":"VEC3" + }, + { + "bufferView":7723, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7724, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":7725, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":7726, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":7727, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":7728, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":7729, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":7730, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7731, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7732, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7733, + "componentType":5126, + "count":576, + "max":[ + 184.265625, + 264.9776611328125, + 165.82289123535156 + ], + "min":[ + -191.471923828125, + 39.05499267578125, + -177.75439453125 + ], + "type":"VEC3" + }, + { + "bufferView":7734, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":7735, + "componentType":5126, + "count":24, + "max":[ + 35.000003814697266, + 2000, + 35.000003814697266 + ], + "min":[ + -35.000003814697266, + 0, + -35.000003814697266 + ], + "type":"VEC3" + }, + { + "bufferView":7736, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7737, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.58984375, + 0.000118255615234375, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":7738, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":7739, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":7740, + "componentType":5126, + "count":112, + "max":[ + 106.49421691894531, + 381.6711730957031, + 171.66294860839844 + ], + "min":[ + -106.49431610107422, + 1.52587890625e-05, + -171.66390991210938 + ], + "type":"VEC3" + }, + { + "bufferView":7741, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":7742, + "componentType":5126, + "count":135, + "max":[ + 14.75341796875, + 1869.35009765625, + 14.7548828125 + ], + "min":[ + -14.75537109375, + 6.103515625e-05, + -14.7529296875 + ], + "type":"VEC3" + }, + { + "bufferView":7743, + "componentType":5126, + "count":135, + "type":"VEC3" + }, + { + "bufferView":7744, + "componentType":5126, + "count":135, + "type":"VEC2" + }, + { + "bufferView":7745, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":7746, + "componentType":5126, + "count":24, + "max":[ + 126.0732421875, + 130.123046875, + 27.1943359375 + ], + "min":[ + -126.0732421875, + 0, + -27.193359375 + ], + "type":"VEC3" + }, + { + "bufferView":7747, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7748, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7749, + "componentType":5126, + "count":588, + "max":[ + 156.4861602783203, + 32.8253173828125, + 156.4878387451172 + ], + "min":[ + -156.4895782470703, + 3.4332275390625e-05, + -156.48789978027344 + ], + "type":"VEC3" + }, + { + "bufferView":7750, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":7751, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7752, + "componentType":5126, + "count":367, + "max":[ + 1060.1865234375, + 12554.818359375, + 6043.29052734375 + ], + "min":[ + -1060.1875, + 0.000278472900390625, + -6043.2900390625 + ], + "type":"VEC3" + }, + { + "bufferView":7753, + "componentType":5126, + "count":367, + "type":"VEC3" + }, + { + "bufferView":7754, + "componentType":5126, + "count":367, + "type":"VEC2" + }, + { + "bufferView":7755, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":7756, + "componentType":5126, + "count":1248, + "max":[ + 104.1713638305664, + 104.17131042480469, + 104.17139434814453 + ], + "min":[ + -104.1714096069336, + -8.392333984375e-05, + -104.17137908935547 + ], + "type":"VEC3" + }, + { + "bufferView":7757, + "componentType":5126, + "count":1248, + "type":"VEC3" + }, + { + "bufferView":7758, + "componentType":5126, + "count":1248, + "type":"VEC2" + }, + { + "bufferView":7759, + "componentType":5123, + "count":2280, + "type":"SCALAR" + }, + { + "bufferView":7760, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":7761, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":7762, + "componentType":5126, + "count":136, + "max":[ + 80.153076171875, + 126.6884765625, + 49.03466796875 + ], + "min":[ + -80.153076171875, + 0, + -49.03564453125 + ], + "type":"VEC3" + }, + { + "bufferView":7763, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":7764, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":7765, + "componentType":5126, + "count":882, + "max":[ + 134.314453125, + 2974.83349609375, + 130.721435546875 + ], + "min":[ + -134.314453125, + 0, + -130.72096252441406 + ], + "type":"VEC3" + }, + { + "bufferView":7766, + "componentType":5126, + "count":882, + "type":"VEC3" + }, + { + "bufferView":7767, + "componentType":5126, + "count":882, + "type":"VEC2" + }, + { + "bufferView":7768, + "componentType":5126, + "count":1343, + "max":[ + 413.28955078125, + 1858.3076171875, + 224.743896484375 + ], + "min":[ + -460.21923828125, + 25.107421875, + -224.744140625 + ], + "type":"VEC3" + }, + { + "bufferView":7769, + "componentType":5126, + "count":1343, + "type":"VEC3" + }, + { + "bufferView":7770, + "componentType":5126, + "count":1343, + "type":"VEC2" + }, + { + "bufferView":7771, + "componentType":5123, + "count":2316, + "type":"SCALAR" + }, + { + "bufferView":7772, + "componentType":5126, + "count":60, + "max":[ + 25.64990234375, + 2502.00830078125, + 682.6611328125 + ], + "min":[ + -25.6494140625, + -0.0001220703125, + -682.6611328125 + ], + "type":"VEC3" + }, + { + "bufferView":7773, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":7774, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":7775, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7776, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7777, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7778, + "componentType":5126, + "count":344, + "max":[ + 170.43359375, + 188.554443359375, + 176.2041015625 + ], + "min":[ + -170.4365234375, + 45.296630859375, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":7779, + "componentType":5126, + "count":344, + "type":"VEC3" + }, + { + "bufferView":7780, + "componentType":5126, + "count":344, + "type":"VEC2" + }, + { + "bufferView":7781, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":7782, + "componentType":5126, + "count":56, + "max":[ + 217.041015625, + 520.125, + 29.79638671875 + ], + "min":[ + -217.04150390625, + 0, + -29.8006591796875 + ], + "type":"VEC3" + }, + { + "bufferView":7783, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":7784, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":7785, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":7786, + "componentType":5126, + "count":112, + "max":[ + 1022.581298828125, + 429.54217529296875, + 214.7710723876953 + ], + "min":[ + -1022.5777587890625, + -3.0517578125e-05, + -214.77090454101562 + ], + "type":"VEC3" + }, + { + "bufferView":7787, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":7788, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.45458984375, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":7789, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":7790, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":7791, + "componentType":5126, + "count":48, + "max":[ + 127.44677734375, + 625.6328125, + 391.737548828125 + ], + "min":[ + -127.4404296875, + 0, + -391.737548828125 + ], + "type":"VEC3" + }, + { + "bufferView":7792, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":7793, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":7794, + "componentType":5126, + "count":590, + "max":[ + 185.60711669921875, + 266.82080078125, + 167.04559326171875 + ], + "min":[ + -192.8129119873047, + 39.33502197265625, + -178.97763061523438 + ], + "type":"VEC3" + }, + { + "bufferView":7795, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":7796, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7797, + "componentType":5126, + "count":562, + "max":[ + 177.5111541748047, + 32.8253059387207, + 177.5095977783203 + ], + "min":[ + -177.50819396972656, + 9.5367431640625e-05, + -177.5098114013672 + ], + "type":"VEC3" + }, + { + "bufferView":7798, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":7799, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7800, + "componentType":5126, + "count":1086, + "max":[ + 56.700870513916016, + 172.07470703125, + 23.860031127929688 + ], + "min":[ + -56.700721740722656, + 5.340576171875e-05, + -23.86003875732422 + ], + "type":"VEC3" + }, + { + "bufferView":7801, + "componentType":5126, + "count":1086, + "type":"VEC3" + }, + { + "bufferView":7802, + "componentType":5126, + "count":1086, + "type":"VEC2" + }, + { + "bufferView":7803, + "componentType":5126, + "count":578, + "max":[ + 155.67843627929688, + 105.14762878417969, + 162.09364318847656 + ], + "min":[ + -155.6787109375, + -0.0002288818359375, + -162.09371948242188 + ], + "type":"VEC3" + }, + { + "bufferView":7804, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":7805, + "componentType":5126, + "count":372, + "max":[ + 29.2421875, + 2898.5703125, + 5033.95361328125 + ], + "min":[ + -29.244140625, + 0.00146484375, + -5033.951171875 + ], + "type":"VEC3" + }, + { + "bufferView":7806, + "componentType":5126, + "count":372, + "type":"VEC3" + }, + { + "bufferView":7807, + "componentType":5126, + "count":372, + "type":"VEC2" + }, + { + "bufferView":7808, + "componentType":5123, + "count":558, + "type":"SCALAR" + }, + { + "bufferView":7809, + "componentType":5126, + "count":1036, + "max":[ + 29.78515625, + 254.306640625, + 90.10888671875 + ], + "min":[ + -29.787109375, + 1.31201171875, + -90.10888671875 + ], + "type":"VEC3" + }, + { + "bufferView":7810, + "componentType":5126, + "count":1036, + "type":"VEC3" + }, + { + "bufferView":7811, + "componentType":5126, + "count":1036, + "type":"VEC2" + }, + { + "bufferView":7812, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":7813, + "componentType":5126, + "count":24, + "max":[ + 110.00010681152344, + 50, + 584.662109375 + ], + "min":[ + -110.00007629394531, + 0, + -584.666015625 + ], + "type":"VEC3" + }, + { + "bufferView":7814, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7815, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7816, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7817, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7818, + "componentType":5126, + "count":112, + "max":[ + 1022.581298828125, + 429.54217529296875, + 214.7710723876953 + ], + "min":[ + -1022.5777587890625, + -3.0517578125e-05, + -214.77090454101562 + ], + "type":"VEC3" + }, + { + "bufferView":7819, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":7820, + "componentType":5126, + "count":1020, + "max":[ + 831.546875, + 116.2335205078125, + 746.10400390625 + ], + "min":[ + -831.544921875, + 0.000118255615234375, + -746.1015625 + ], + "type":"VEC3" + }, + { + "bufferView":7821, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":7822, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":7823, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":7824, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":7825, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":7826, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7827, + "componentType":5126, + "count":71, + "max":[ + 3.7873902320861816, + 13.000020027160645, + 3.742483139038086 + ], + "min":[ + -3.787674903869629, + -2.384185791015625e-05, + -3.7423512935638428 + ], + "type":"VEC3" + }, + { + "bufferView":7828, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":7829, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":7830, + "componentType":5126, + "count":577, + "max":[ + 157.01995849609375, + 105.78671264648438, + 163.49508666992188 + ], + "min":[ + -157.0196990966797, + -0.0001678466796875, + -163.49517822265625 + ], + "type":"VEC3" + }, + { + "bufferView":7831, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":7832, + "componentType":5126, + "count":16, + "max":[ + 4093.119140625, + 0.00035858154296875, + 4951.876953125 + ], + "min":[ + -4093.119140625, + 0, + -4951.87841796875 + ], + "type":"VEC3" + }, + { + "bufferView":7833, + "componentType":5126, + "count":16, + "type":"VEC3" + }, + { + "bufferView":7834, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":7835, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":7836, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7837, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7838, + "componentType":5126, + "count":560, + "max":[ + 194.32896423339844, + 32.82526779174805, + 194.32701110839844 + ], + "min":[ + -194.32528686523438, + 6.866455078125e-05, + -194.3273162841797 + ], + "type":"VEC3" + }, + { + "bufferView":7839, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":7840, + "componentType":5126, + "count":576, + "max":[ + 175.79733276367188, + 211.85409545898438, + 160.78196716308594 + ], + "min":[ + -175.79751586914062, + 1.52587890625e-05, + -160.78175354003906 + ], + "type":"VEC3" + }, + { + "bufferView":7841, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":7842, + "componentType":5126, + "count":578, + "max":[ + 202.73544311523438, + 209.34921264648438, + 182.73338317871094 + ], + "min":[ + -202.73629760742188, + 1.4157562255859375, + -170.45298767089844 + ], + "type":"VEC3" + }, + { + "bufferView":7843, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":7844, + "componentType":5126, + "count":159, + "max":[ + 769.70751953125, + 113.194580078125, + 56.59619140625 + ], + "min":[ + -769.709228515625, + 0, + -56.59765625 + ], + "type":"VEC3" + }, + { + "bufferView":7845, + "componentType":5126, + "count":159, + "type":"VEC3" + }, + { + "bufferView":7846, + "componentType":5126, + "count":159, + "type":"VEC2" + }, + { + "bufferView":7847, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":7848, + "componentType":5126, + "count":92, + "max":[ + 22.05029296875, + 77.637451171875, + 30.451904296875 + ], + "min":[ + -22.0517578125, + 0.000244140625, + -30.44873046875 + ], + "type":"VEC3" + }, + { + "bufferView":7849, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":7850, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":7851, + "componentType":5126, + "count":333, + "max":[ + 170.43359375, + 188.5576171875, + 176.20263671875 + ], + "min":[ + -170.435546875, + 45.2958984375, + -176.20458984375 + ], + "type":"VEC3" + }, + { + "bufferView":7852, + "componentType":5126, + "count":333, + "type":"VEC3" + }, + { + "bufferView":7853, + "componentType":5126, + "count":333, + "type":"VEC2" + }, + { + "bufferView":7854, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":7855, + "componentType":5126, + "count":146, + "max":[ + 43.591796875, + 61.51416015625, + 22.7259578704834 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.729740142822266 + ], + "type":"VEC3" + }, + { + "bufferView":7856, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":7857, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":7858, + "componentType":5126, + "count":128, + "max":[ + 58.8193359375, + 162.824951171875, + 49.03466796875 + ], + "min":[ + -58.822265625, + 6.845703125, + -49.03564453125 + ], + "type":"VEC3" + }, + { + "bufferView":7859, + "componentType":5126, + "count":128, + "type":"VEC3" + }, + { + "bufferView":7860, + "componentType":5126, + "count":128, + "type":"VEC2" + }, + { + "bufferView":7861, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":7862, + "componentType":5126, + "count":232, + "max":[ + 115.35120391845703, + 317.20355224609375, + 159.8307647705078 + ], + "min":[ + -115.35127258300781, + 3.0517578125e-05, + -159.83084106445312 + ], + "type":"VEC3" + }, + { + "bufferView":7863, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":7864, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":7865, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92938232421875, + 384.1406555175781 + ], + "min":[ + -245.232421875, + 0.0001678466796875, + -384.1396789550781 + ], + "type":"VEC3" + }, + { + "bufferView":7866, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":7867, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":7868, + "componentType":5126, + "count":24, + "max":[ + 260, + 2824.5, + 260 + ], + "min":[ + -260, + 0, + -260 + ], + "type":"VEC3" + }, + { + "bufferView":7869, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7870, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7871, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":7872, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":7873, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":7874, + "componentType":5126, + "count":596, + "max":[ + 164.8965301513672, + 171.76266479492188, + 149.96351623535156 + ], + "min":[ + -164.89663696289062, + 1.1429519653320312, + -137.6833038330078 + ], + "type":"VEC3" + }, + { + "bufferView":7875, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":7876, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7877, + "componentType":5126, + "count":8031, + "max":[ + 103.78759765625, + 1010.39501953125, + 180.119140625 + ], + "min":[ + -103.78662109375, + 12.32421875, + -180.1201171875 + ], + "type":"VEC3" + }, + { + "bufferView":7878, + "componentType":5126, + "count":8031, + "type":"VEC3" + }, + { + "bufferView":7879, + "componentType":5126, + "count":8031, + "type":"VEC2" + }, + { + "bufferView":7880, + "componentType":5126, + "count":24, + "max":[ + 292.4480895996094, + 205.86782836914062, + 292.42657470703125 + ], + "min":[ + -292.4480895996094, + 7.62939453125e-05, + -292.4267578125 + ], + "type":"VEC3" + }, + { + "bufferView":7881, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7882, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7883, + "componentType":5126, + "count":72, + "max":[ + 22.50006103515625, + 1492.539794921875, + 771.3447875976562 + ], + "min":[ + -22.500253677368164, + 0, + -771.34619140625 + ], + "type":"VEC3" + }, + { + "bufferView":7884, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":7885, + "componentType":5126, + "count":1420, + "max":[ + 245.234375, + 367.92926025390625, + 384.1416015625 + ], + "min":[ + -245.232421875, + -6.103515625e-05, + -384.1391296386719 + ], + "type":"VEC3" + }, + { + "bufferView":7886, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":7887, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":7888, + "componentType":5126, + "count":187, + "max":[ + 769.70947265625, + 113.194580078125, + 56.596923828125 + ], + "min":[ + -769.7080078125, + 6.103515625e-05, + -56.596923828125 + ], + "type":"VEC3" + }, + { + "bufferView":7889, + "componentType":5126, + "count":187, + "type":"VEC3" + }, + { + "bufferView":7890, + "componentType":5126, + "count":187, + "type":"VEC2" + }, + { + "bufferView":7891, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":7892, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":7893, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":7894, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":7895, + "componentType":5126, + "count":51, + "max":[ + 123.61328125, + 696.755859375, + 366.15289306640625 + ], + "min":[ + -123.615234375, + 0, + -366.15301513671875 + ], + "type":"VEC3" + }, + { + "bufferView":7896, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":7897, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":7898, + "componentType":5126, + "count":750, + "max":[ + 136.78468322753906, + 189.921142578125, + 129.50843811035156 + ], + "min":[ + -136.78651428222656, + -4.57763671875e-05, + -129.5079803466797 + ], + "type":"VEC3" + }, + { + "bufferView":7899, + "componentType":5126, + "count":750, + "type":"VEC3" + }, + { + "bufferView":7900, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":7901, + "componentType":5126, + "count":24, + "max":[ + 110.00010681152344, + 50, + 584.666015625 + ], + "min":[ + -110.00007629394531, + 0, + -584.662109375 + ], + "type":"VEC3" + }, + { + "bufferView":7902, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7903, + "componentType":5126, + "count":125, + "max":[ + 3.8607194423675537, + 15.442765235900879, + 7.721343517303467 + ], + "min":[ + -3.8606269359588623, + 8.296966552734375e-05, + -7.721337795257568 + ], + "type":"VEC3" + }, + { + "bufferView":7904, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":7905, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":7906, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":7907, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":7908, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":7909, + "componentType":5126, + "count":559, + "max":[ + 224.27151489257812, + 447.5828857421875, + 223.7913818359375 + ], + "min":[ + -224.27151489257812, + 0.0001068115234375, + -223.79139709472656 + ], + "type":"VEC3" + }, + { + "bufferView":7910, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":7911, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":7912, + "componentType":5126, + "count":342, + "max":[ + 115.14120483398438, + 235.95407104492188, + 69.11589050292969 + ], + "min":[ + -115.14122772216797, + 25.712726593017578, + -69.11685943603516 + ], + "type":"VEC3" + }, + { + "bufferView":7913, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":7914, + "componentType":5126, + "count":597, + "max":[ + 150.3123321533203, + 182.15432739257812, + 137.5451202392578 + ], + "min":[ + -150.3146514892578, + 0.0001373291015625, + -137.54542541503906 + ], + "type":"VEC3" + }, + { + "bufferView":7915, + "componentType":5126, + "count":597, + "type":"VEC3" + }, + { + "bufferView":7916, + "componentType":5126, + "count":144, + "max":[ + 428.9181823730469, + 1017.9163818359375, + 642.9834594726562 + ], + "min":[ + -428.9188537597656, + 9.1552734375e-05, + -642.9835815429688 + ], + "type":"VEC3" + }, + { + "bufferView":7917, + "componentType":5126, + "count":144, + "type":"VEC3" + }, + { + "bufferView":7918, + "componentType":5126, + "count":614, + "max":[ + 147.21128845214844, + 204.15335083007812, + 137.3958740234375 + ], + "min":[ + -140.0031280517578, + 29.814987182617188, + -125.46490478515625 + ], + "type":"VEC3" + }, + { + "bufferView":7919, + "componentType":5126, + "count":614, + "type":"VEC3" + }, + { + "bufferView":7920, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7921, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7922, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7923, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7924, + "componentType":5126, + "count":568, + "max":[ + 153.6865997314453, + 159.56365966796875, + 134.11392211914062 + ], + "min":[ + -153.68331909179688, + 8.392333984375e-05, + -134.11387634277344 + ], + "type":"VEC3" + }, + { + "bufferView":7925, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":7926, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7927, + "componentType":5126, + "count":566, + "max":[ + 176.10997009277344, + 32.8253059387207, + 176.10813903808594 + ], + "min":[ + -176.10647583007812, + 3.814697265625e-05, + -176.1083221435547 + ], + "type":"VEC3" + }, + { + "bufferView":7928, + "componentType":5126, + "count":566, + "type":"VEC3" + }, + { + "bufferView":7929, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7930, + "componentType":5126, + "count":72, + "max":[ + 2400.223876953125, + 793.4286499023438, + 1981.32177734375 + ], + "min":[ + -2400.22607421875, + 0, + -1981.32275390625 + ], + "type":"VEC3" + }, + { + "bufferView":7931, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":7932, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":7933, + "componentType":5126, + "count":96, + "max":[ + 747.4671630859375, + 205.17288208007812, + 73.47864532470703 + ], + "min":[ + -747.468994140625, + 2.6702880859375e-05, + -73.4786376953125 + ], + "type":"VEC3" + }, + { + "bufferView":7934, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":7935, + "componentType":5126, + "count":580, + "max":[ + 157.89076232910156, + 163.7095489501953, + 137.7549285888672 + ], + "min":[ + -157.88787841796875, + -0.0001220703125, + -137.7549591064453 + ], + "type":"VEC3" + }, + { + "bufferView":7936, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":7937, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7938, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51409912109375, + 22.7260799407959 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.729618072509766 + ], + "type":"VEC3" + }, + { + "bufferView":7939, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":7940, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":7941, + "componentType":5126, + "count":40, + "max":[ + 1.4143147468566895, + 10.517629623413086, + 5.258714199066162 + ], + "min":[ + -1.4143130779266357, + 0.0001544952392578125, + -5.258758544921875 + ], + "type":"VEC3" + }, + { + "bufferView":7942, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":7943, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":7944, + "componentType":5126, + "count":548, + "max":[ + 7.779083728790283, + 21.312030792236328, + 10.655908584594727 + ], + "min":[ + -7.778790473937988, + 0.00021648406982421875, + -10.65590763092041 + ], + "type":"VEC3" + }, + { + "bufferView":7945, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":7946, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":7947, + "componentType":5126, + "count":122, + "max":[ + 25.642379760742188, + 106.52559661865234, + 14.454517364501953 + ], + "min":[ + -25.64236831665039, + 9.5367431640625e-05, + -14.454416275024414 + ], + "type":"VEC3" + }, + { + "bufferView":7948, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":7949, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":7950, + "componentType":5126, + "count":72, + "max":[ + 22.499942779541016, + 1492.539794921875, + 771.346435546875 + ], + "min":[ + -22.5002384185791, + 0.00030517578125, + -771.3448486328125 + ], + "type":"VEC3" + }, + { + "bufferView":7951, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":7952, + "componentType":5126, + "count":334, + "max":[ + 10.6767578125, + 283.877197265625, + 60.74856185913086 + ], + "min":[ + -10.6796875, + -1.52587890625e-05, + -60.75149154663086 + ], + "type":"VEC3" + }, + { + "bufferView":7953, + "componentType":5126, + "count":334, + "type":"VEC3" + }, + { + "bufferView":7954, + "componentType":5126, + "count":334, + "type":"VEC2" + }, + { + "bufferView":7955, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":7956, + "componentType":5126, + "count":138, + "max":[ + 49.03515625, + 126.6884765625, + 80.15283203125 + ], + "min":[ + -49.03515625, + 0, + -80.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":7957, + "componentType":5126, + "count":138, + "type":"VEC3" + }, + { + "bufferView":7958, + "componentType":5126, + "count":138, + "type":"VEC2" + }, + { + "bufferView":7959, + "componentType":5126, + "count":233, + "max":[ + 172.59716796875, + 185.23583984375, + 169.0704345703125 + ], + "min":[ + -172.596923828125, + 0, + -169.070556640625 + ], + "type":"VEC3" + }, + { + "bufferView":7960, + "componentType":5126, + "count":233, + "type":"VEC3" + }, + { + "bufferView":7961, + "componentType":5126, + "count":233, + "type":"VEC2" + }, + { + "bufferView":7962, + "componentType":5126, + "count":584, + "max":[ + 169.08973693847656, + 111.53993225097656, + 176.10813903808594 + ], + "min":[ + -169.09249877929688, + -0.00023651123046875, + -176.1083221435547 + ], + "type":"VEC3" + }, + { + "bufferView":7963, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":7964, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7965, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7966, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7967, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7968, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":7969, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":7970, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":7971, + "componentType":5126, + "count":2011, + "max":[ + 656.1875, + 2671.175048828125, + 2411.783447265625 + ], + "min":[ + -656.19921875, + 0.0025787353515625, + -2410.533447265625 + ], + "type":"VEC3" + }, + { + "bufferView":7972, + "componentType":5126, + "count":2011, + "type":"VEC3" + }, + { + "bufferView":7973, + "componentType":5126, + "count":2011, + "type":"VEC2" + }, + { + "bufferView":7974, + "componentType":5123, + "count":4740, + "type":"SCALAR" + }, + { + "bufferView":7975, + "componentType":5126, + "count":168, + "max":[ + 54934.49609375, + 24.990116119384766, + 44918.49609375 + ], + "min":[ + -54934.49609375, + 0.00011730194091796875, + -44918.49609375 + ], + "type":"VEC3" + }, + { + "bufferView":7976, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":7977, + "componentType":5126, + "count":24, + "max":[ + 161.6258544921875, + 62.203857421875, + 70.02761840820312 + ], + "min":[ + -161.62652587890625, + 0, + -70.02761840820312 + ], + "type":"VEC3" + }, + { + "bufferView":7978, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7979, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7980, + "componentType":5126, + "count":929, + "max":[ + 50.151649475097656, + 4511.697265625, + 79.23451232910156 + ], + "min":[ + -50.151641845703125, + 0, + -79.23506927490234 + ], + "type":"VEC3" + }, + { + "bufferView":7981, + "componentType":5126, + "count":929, + "type":"VEC3" + }, + { + "bufferView":7982, + "componentType":5126, + "count":929, + "type":"VEC2" + }, + { + "bufferView":7983, + "componentType":5123, + "count":4488, + "type":"SCALAR" + }, + { + "bufferView":7984, + "componentType":5126, + "count":51, + "max":[ + 161.98095703125, + 658.67578125, + 366.152587890625 + ], + "min":[ + -161.97900390625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":7985, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":7986, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":7987, + "componentType":5126, + "count":574, + "max":[ + 184.51686096191406, + 191.2522735595703, + 166.95550537109375 + ], + "min":[ + -184.51705932617188, + 1.2847518920898438, + -154.67481994628906 + ], + "type":"VEC3" + }, + { + "bufferView":7988, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":7989, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":7990, + "componentType":5126, + "count":48, + "max":[ + 11.695329666137695, + 233.9413299560547, + 289.01458740234375 + ], + "min":[ + -11.698831558227539, + -1.52587890625e-05, + -289.0135803222656 + ], + "type":"VEC3" + }, + { + "bufferView":7991, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":7992, + "componentType":5126, + "count":76, + "max":[ + 278.86810302734375, + 3543.081787109375, + 279.1005859375 + ], + "min":[ + -278.86895751953125, + 0, + -279.10284423828125 + ], + "type":"VEC3" + }, + { + "bufferView":7993, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":7994, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":7995, + "componentType":5126, + "count":336, + "max":[ + 115.14120483398438, + 230.28253173828125, + 13.560859680175781 + ], + "min":[ + -115.14124298095703, + 8.392333984375e-05, + -13.560562133789062 + ], + "type":"VEC3" + }, + { + "bufferView":7996, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":7997, + "componentType":5126, + "count":48, + "max":[ + 289.0126037597656, + 233.9413299560547, + 11.697283744812012 + ], + "min":[ + -289.01556396484375, + -1.52587890625e-05, + -11.696887016296387 + ], + "type":"VEC3" + }, + { + "bufferView":7998, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":7999, + "componentType":5126, + "count":1420, + "max":[ + 244.466796875, + 367.92938232421875, + 384.57861328125 + ], + "min":[ + -244.46875, + 6.103515625e-05, + -384.5820007324219 + ], + "type":"VEC3" + }, + { + "bufferView":8000, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":8001, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":8002, + "componentType":5126, + "count":229, + "max":[ + 172.59716796875, + 185.23583984375, + 169.0712890625 + ], + "min":[ + -172.596923828125, + 0, + -169.0693359375 + ], + "type":"VEC3" + }, + { + "bufferView":8003, + "componentType":5126, + "count":229, + "type":"VEC3" + }, + { + "bufferView":8004, + "componentType":5126, + "count":229, + "type":"VEC2" + }, + { + "bufferView":8005, + "componentType":5126, + "count":24, + "max":[ + 350, + 1016.5, + 350 + ], + "min":[ + -350, + 0, + -350 + ], + "type":"VEC3" + }, + { + "bufferView":8006, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8007, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8008, + "componentType":5126, + "count":76, + "max":[ + 278.8669738769531, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8664245605469, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":8009, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":8010, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":8011, + "componentType":5126, + "count":7799, + "max":[ + 496.306884765625, + 427.46484375, + 103.7867431640625 + ], + "min":[ + -496.306396484375, + 0, + -103.7867431640625 + ], + "type":"VEC3" + }, + { + "bufferView":8012, + "componentType":5126, + "count":7799, + "type":"VEC3" + }, + { + "bufferView":8013, + "componentType":5126, + "count":7799, + "type":"VEC2" + }, + { + "bufferView":8014, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":8015, + "componentType":5126, + "count":581, + "max":[ + 173.1143035888672, + 208.72775268554688, + 158.3359832763672 + ], + "min":[ + -173.11553955078125, + -0.0001220703125, + -158.33587646484375 + ], + "type":"VEC3" + }, + { + "bufferView":8016, + "componentType":5126, + "count":581, + "type":"VEC3" + }, + { + "bufferView":8017, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8018, + "componentType":5126, + "count":596, + "max":[ + 142.26710510253906, + 98.75543212890625, + 148.07913208007812 + ], + "min":[ + -142.26473999023438, + 0.0001068115234375, + -148.0791473388672 + ], + "type":"VEC3" + }, + { + "bufferView":8019, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":8020, + "componentType":5126, + "count":122, + "max":[ + 19.55224609375, + 40.31746292114258, + 17.7990779876709 + ], + "min":[ + -19.552249908447266, + 1.33514404296875e-05, + -17.8001766204834 + ], + "type":"VEC3" + }, + { + "bufferView":8021, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":8022, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":8023, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.5142822265625, + 22.7275447845459 + ], + "min":[ + -43.58984375, + 0.000118255615234375, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":8024, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":8025, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":8026, + "componentType":5126, + "count":7986, + "max":[ + 103.78759765625, + 429.9638671875, + 496.1484375 + ], + "min":[ + -103.78662109375, + 0, + -496.148681640625 + ], + "type":"VEC3" + }, + { + "bufferView":8027, + "componentType":5126, + "count":7986, + "type":"VEC3" + }, + { + "bufferView":8028, + "componentType":5126, + "count":7986, + "type":"VEC2" + }, + { + "bufferView":8029, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8030, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8031, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8032, + "componentType":5126, + "count":562, + "max":[ + 192.9241180419922, + 198.25946044921875, + 168.0973358154297 + ], + "min":[ + -192.92724609375, + -0.00011444091796875, + -168.09727478027344 + ], + "type":"VEC3" + }, + { + "bufferView":8033, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":8034, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8035, + "componentType":5126, + "count":232, + "max":[ + 115.35120391845703, + 317.20355224609375, + 159.8307647705078 + ], + "min":[ + -115.35127258300781, + 3.0517578125e-05, + -159.83084106445312 + ], + "type":"VEC3" + }, + { + "bufferView":8036, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":8037, + "componentType":5126, + "count":576, + "max":[ + 184.265625, + 264.9776611328125, + 165.82289123535156 + ], + "min":[ + -191.471923828125, + 39.05499267578125, + -177.75439453125 + ], + "type":"VEC3" + }, + { + "bufferView":8038, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":8039, + "componentType":5126, + "count":574, + "max":[ + 190.55020141601562, + 229.0487518310547, + 174.23463439941406 + ], + "min":[ + -190.55238342285156, + -0.0001068115234375, + -174.23463439941406 + ], + "type":"VEC3" + }, + { + "bufferView":8040, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":8041, + "componentType":5126, + "count":590, + "max":[ + 180.31166076660156, + 187.0756378173828, + 163.31422424316406 + ], + "min":[ + -180.3135223388672, + 1.2540969848632812, + -151.03392028808594 + ], + "type":"VEC3" + }, + { + "bufferView":8042, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":8043, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8044, + "componentType":5126, + "count":813, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45508575439453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45801544189453 + ], + "type":"VEC3" + }, + { + "bufferView":8045, + "componentType":5126, + "count":813, + "type":"VEC3" + }, + { + "bufferView":8046, + "componentType":5126, + "count":813, + "type":"VEC2" + }, + { + "bufferView":8047, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":8048, + "componentType":5126, + "count":213, + "max":[ + 13.25341796875, + 75.79608154296875, + 25.5054931640625 + ], + "min":[ + -13.25, + 0.00020866189152002335, + -25.4984130859375 + ], + "type":"VEC3" + }, + { + "bufferView":8049, + "componentType":5126, + "count":213, + "type":"VEC3" + }, + { + "bufferView":8050, + "componentType":5126, + "count":213, + "type":"VEC2" + }, + { + "bufferView":8051, + "componentType":5126, + "count":354, + "max":[ + 171.2958984375, + 184.8056640625, + 176.13916015625 + ], + "min":[ + -171.2998046875, + 44.4541015625, + -176.142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":8052, + "componentType":5126, + "count":354, + "type":"VEC3" + }, + { + "bufferView":8053, + "componentType":5126, + "count":354, + "type":"VEC2" + }, + { + "bufferView":8054, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":8055, + "componentType":5126, + "count":125, + "max":[ + 40.6044921875, + 81.2109375, + 5085.66259765625 + ], + "min":[ + -40.60546875, + 0, + -5085.66455078125 + ], + "type":"VEC3" + }, + { + "bufferView":8056, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":8057, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":8058, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":8059, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":8060, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8061, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.2841796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.2841796875 + ], + "type":"VEC3" + }, + { + "bufferView":8062, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":8063, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":8064, + "componentType":5126, + "count":560, + "max":[ + 204.45657348632812, + 211.0584716796875, + 184.22378540039062 + ], + "min":[ + -204.45677185058594, + 1.4281158447265625, + -171.943115234375 + ], + "type":"VEC3" + }, + { + "bufferView":8065, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":8066, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8067, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8068, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8069, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8070, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":8071, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":8072, + "componentType":5126, + "count":24, + "max":[ + 292.4480895996094, + 205.86782836914062, + 292.42657470703125 + ], + "min":[ + -292.4480895996094, + 7.62939453125e-05, + -292.4267578125 + ], + "type":"VEC3" + }, + { + "bufferView":8073, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8074, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8075, + "componentType":5126, + "count":4906, + "max":[ + 84.52996826171875, + 1004.792724609375, + 84.72105407714844 + ], + "min":[ + -84.528076171875, + 0.000244140625, + -84.72103881835938 + ], + "type":"VEC3" + }, + { + "bufferView":8076, + "componentType":5126, + "count":4906, + "type":"VEC3" + }, + { + "bufferView":8077, + "componentType":5126, + "count":4906, + "type":"VEC2" + }, + { + "bufferView":8078, + "componentType":5123, + "count":11976, + "type":"SCALAR" + }, + { + "bufferView":8079, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8080, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8081, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8082, + "componentType":5126, + "count":288, + "max":[ + 10872.4609375, + 916.6930541992188, + 1503.2784423828125 + ], + "min":[ + -10872.4638671875, + 0.00030517578125, + -1503.2784423828125 + ], + "type":"VEC3" + }, + { + "bufferView":8083, + "componentType":5126, + "count":288, + "type":"VEC3" + }, + { + "bufferView":8084, + "componentType":5123, + "count":1572, + "type":"SCALAR" + }, + { + "bufferView":8085, + "componentType":5126, + "count":162, + "max":[ + 228.90869140625, + 55.46875, + 27.736328125 + ], + "min":[ + -228.907470703125, + 0, + -27.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":8086, + "componentType":5126, + "count":162, + "type":"VEC3" + }, + { + "bufferView":8087, + "componentType":5126, + "count":162, + "type":"VEC2" + }, + { + "bufferView":8088, + "componentType":5126, + "count":34, + "max":[ + 2889.6533203125, + 320.1450500488281, + 7353 + ], + "min":[ + -2889.6533203125, + -0.00012969970703125, + -7353 + ], + "type":"VEC3" + }, + { + "bufferView":8089, + "componentType":5126, + "count":34, + "type":"VEC3" + }, + { + "bufferView":8090, + "componentType":5126, + "count":34, + "type":"VEC2" + }, + { + "bufferView":8091, + "componentType":5123, + "count":60, + "type":"SCALAR" + }, + { + "bufferView":8092, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8093, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8094, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8095, + "componentType":5126, + "count":572, + "max":[ + 188.72061157226562, + 194.113525390625, + 164.45628356933594 + ], + "min":[ + -188.72206115722656, + -6.103515625e-05, + -164.4561767578125 + ], + "type":"VEC3" + }, + { + "bufferView":8096, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":8097, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8098, + "componentType":5126, + "count":580, + "max":[ + 170.50344848632812, + 32.82521057128906, + 170.50233459472656 + ], + "min":[ + -170.50135803222656, + 1.52587890625e-05, + -170.50250244140625 + ], + "type":"VEC3" + }, + { + "bufferView":8099, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":8100, + "componentType":5126, + "count":582, + "max":[ + 149.8932647705078, + 101.28300476074219, + 152.28347778320312 + ], + "min":[ + -142.68621826171875, + 0.6099700927734375, + -152.28353881835938 + ], + "type":"VEC3" + }, + { + "bufferView":8101, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":8102, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8103, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.455078125, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.00048828125, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":8104, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":8105, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":8106, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.2841796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.2841796875 + ], + "type":"VEC3" + }, + { + "bufferView":8107, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":8108, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":8109, + "componentType":5126, + "count":346, + "max":[ + 171.298828125, + 184.8056640625, + 176.139892578125 + ], + "min":[ + -171.2978515625, + 44.45458984375, + -176.141845703125 + ], + "type":"VEC3" + }, + { + "bufferView":8110, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":8111, + "componentType":5126, + "count":346, + "type":"VEC2" + }, + { + "bufferView":8112, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":8113, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8114, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8115, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8116, + "componentType":5126, + "count":580, + "max":[ + 182.92408752441406, + 263.1343994140625, + 164.5999755859375 + ], + "min":[ + -190.1309051513672, + 38.774932861328125, + -176.53138732910156 + ], + "type":"VEC3" + }, + { + "bufferView":8117, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":8118, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":8119, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":8120, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":8121, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.58984375, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":8122, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":8123, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":8124, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":8125, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8126, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8127, + "componentType":5126, + "count":348, + "max":[ + 115.35123443603516, + 211.42062377929688, + 68.4458999633789 + ], + "min":[ + -115.3512191772461, + 9.1552734375e-05, + -68.44573974609375 + ], + "type":"VEC3" + }, + { + "bufferView":8128, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":8129, + "componentType":5126, + "count":564, + "max":[ + 204.45657348632812, + 211.0584716796875, + 184.22364807128906 + ], + "min":[ + -204.45677185058594, + 1.4281158447265625, + -171.9432373046875 + ], + "type":"VEC3" + }, + { + "bufferView":8130, + "componentType":5126, + "count":564, + "type":"VEC3" + }, + { + "bufferView":8131, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8132, + "componentType":5126, + "count":8407, + "max":[ + 264.72265625, + 1535.4100341796875, + 5507.376953125 + ], + "min":[ + -236.76951599121094, + -0.0010528563288971782, + -669.8949584960938 + ], + "type":"VEC3" + }, + { + "bufferView":8133, + "componentType":5126, + "count":8407, + "type":"VEC3" + }, + { + "bufferView":8134, + "componentType":5126, + "count":8407, + "type":"VEC2" + }, + { + "bufferView":8135, + "componentType":5123, + "count":13344, + "type":"SCALAR" + }, + { + "bufferView":8136, + "componentType":5126, + "count":50, + "max":[ + 123.61474609375, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.61376953125, + 0, + -366.1531066894531 + ], + "type":"VEC3" + }, + { + "bufferView":8137, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":8138, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":8139, + "componentType":5126, + "count":128, + "max":[ + 58.8193359375, + 162.824951171875, + 49.03466796875 + ], + "min":[ + -58.822265625, + 6.845703125, + -49.03564453125 + ], + "type":"VEC3" + }, + { + "bufferView":8140, + "componentType":5126, + "count":128, + "type":"VEC3" + }, + { + "bufferView":8141, + "componentType":5126, + "count":128, + "type":"VEC2" + }, + { + "bufferView":8142, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51422119140625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + 5.7220458984375e-05, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":8143, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":8144, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":8145, + "componentType":5126, + "count":2719, + "max":[ + 128.19970703125, + 421.52587890625, + 128.198974609375 + ], + "min":[ + -128.19921875, + 0, + -128.199462890625 + ], + "type":"VEC3" + }, + { + "bufferView":8146, + "componentType":5126, + "count":2719, + "type":"VEC3" + }, + { + "bufferView":8147, + "componentType":5126, + "count":2719, + "type":"VEC2" + }, + { + "bufferView":8148, + "componentType":5126, + "count":108, + "max":[ + 1274.9716796875, + 2502.0087890625, + 25.650390625 + ], + "min":[ + -1274.9716796875, + -6.103515625e-05, + -25.650390625 + ], + "type":"VEC3" + }, + { + "bufferView":8149, + "componentType":5126, + "count":108, + "type":"VEC3" + }, + { + "bufferView":8150, + "componentType":5126, + "count":108, + "type":"VEC2" + }, + { + "bufferView":8151, + "componentType":5126, + "count":112, + "max":[ + 1022.581298828125, + 429.54217529296875, + 214.7710723876953 + ], + "min":[ + -1022.5777587890625, + -3.0517578125e-05, + -214.77090454101562 + ], + "type":"VEC3" + }, + { + "bufferView":8152, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":8153, + "componentType":5126, + "count":153, + "max":[ + 586.3193359375, + 156.6259765625, + 69.5693359375 + ], + "min":[ + -586.31689453125, + 0, + -69.5712890625 + ], + "type":"VEC3" + }, + { + "bufferView":8154, + "componentType":5126, + "count":153, + "type":"VEC3" + }, + { + "bufferView":8155, + "componentType":5126, + "count":153, + "type":"VEC2" + }, + { + "bufferView":8156, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":8157, + "componentType":5126, + "count":586, + "max":[ + 169.1017303466797, + 32.82521057128906, + 169.10089111328125 + ], + "min":[ + -169.10015869140625, + 3.814697265625e-05, + -169.10105895996094 + ], + "type":"VEC3" + }, + { + "bufferView":8158, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":8159, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8160, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8161, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8162, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8163, + "componentType":5126, + "count":580, + "max":[ + 198.53277587890625, + 203.78756713867188, + 172.9521484375 + ], + "min":[ + -198.53025817871094, + 5.340576171875e-05, + -172.95199584960938 + ], + "type":"VEC3" + }, + { + "bufferView":8164, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":8165, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8166, + "componentType":5126, + "count":142, + "max":[ + 3.45184326171875, + 18.94533348083496, + 9.472748756408691 + ], + "min":[ + -3.451723098754883, + -0.00011920928955078125, + -9.472702026367188 + ], + "type":"VEC3" + }, + { + "bufferView":8167, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":8168, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":8169, + "componentType":5126, + "count":12, + "max":[ + 411.462890625, + 388.9410400390625, + 9.51611328125 + ], + "min":[ + -411.462890625, + 0, + -9.5142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":8170, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":8171, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":8172, + "componentType":5126, + "count":52, + "max":[ + 123.61669921875, + 696.755859375, + 366.152587890625 + ], + "min":[ + -123.61181640625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":8173, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":8174, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":8175, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":8176, + "componentType":5126, + "count":123, + "max":[ + 58.8193359375, + 162.824951171875, + 49.03515625 + ], + "min":[ + -58.822265625, + 6.845703125, + -49.03515625 + ], + "type":"VEC3" + }, + { + "bufferView":8177, + "componentType":5126, + "count":123, + "type":"VEC3" + }, + { + "bufferView":8178, + "componentType":5126, + "count":123, + "type":"VEC2" + }, + { + "bufferView":8179, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":8180, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8181, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8182, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8183, + "componentType":5126, + "count":139, + "max":[ + 437.3759765625, + 12069.287109375, + 19.6142578125 + ], + "min":[ + -437.380126953125, + 0.00048828125, + -19.6142578125 + ], + "type":"VEC3" + }, + { + "bufferView":8184, + "componentType":5126, + "count":139, + "type":"VEC3" + }, + { + "bufferView":8185, + "componentType":5126, + "count":139, + "type":"VEC2" + }, + { + "bufferView":8186, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":8187, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8188, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8189, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8190, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":8191, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":8192, + "componentType":5126, + "count":488, + "max":[ + 879.658203125, + 587.032958984375, + 879.6582641601562 + ], + "min":[ + -879.66015625, + -3.0517578125e-05, + -879.6621704101562 + ], + "type":"VEC3" + }, + { + "bufferView":8193, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":8194, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":8195, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":8196, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8197, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8198, + "componentType":5126, + "count":112, + "max":[ + 1022.5776977539062, + 429.5421447753906, + 214.77090454101562 + ], + "min":[ + -1022.5814819335938, + -0.0003204345703125, + -214.77090454101562 + ], + "type":"VEC3" + }, + { + "bufferView":8199, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":8200, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.07373046875 + ], + "type":"VEC3" + }, + { + "bufferView":8201, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8202, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8203, + "componentType":5126, + "count":582, + "max":[ + 198.53025817871094, + 205.1730499267578, + 179.09231567382812 + ], + "min":[ + -198.53277587890625, + 1.3856048583984375, + -166.8118896484375 + ], + "type":"VEC3" + }, + { + "bufferView":8204, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":8205, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8206, + "componentType":5126, + "count":576, + "max":[ + 191.5255126953125, + 196.87759399414062, + 166.8836212158203 + ], + "min":[ + -191.5229949951172, + 0.00011444091796875, + -166.88369750976562 + ], + "type":"VEC3" + }, + { + "bufferView":8207, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":8208, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8209, + "componentType":5126, + "count":580, + "max":[ + 192.8129119873047, + 122.43167114257812, + 197.12991333007812 + ], + "min":[ + -185.60711669921875, + 0.7977523803710938, + -197.13023376464844 + ], + "type":"VEC3" + }, + { + "bufferView":8210, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":8211, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8212, + "componentType":5126, + "count":332, + "max":[ + 170.90625, + 157.00439453125, + 177.25439453125 + ], + "min":[ + -170.9033203125, + 21.289306640625, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":8213, + "componentType":5126, + "count":332, + "type":"VEC3" + }, + { + "bufferView":8214, + "componentType":5126, + "count":332, + "type":"VEC2" + }, + { + "bufferView":8215, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":8216, + "componentType":5126, + "count":8098, + "max":[ + 496.1484375, + 429.962890625, + 103.787109375 + ], + "min":[ + -496.148681640625, + 0, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":8217, + "componentType":5126, + "count":8098, + "type":"VEC3" + }, + { + "bufferView":8218, + "componentType":5126, + "count":8098, + "type":"VEC2" + }, + { + "bufferView":8219, + "componentType":5126, + "count":578, + "max":[ + 155.67843627929688, + 105.14762878417969, + 162.09364318847656 + ], + "min":[ + -155.6787109375, + -0.0002288818359375, + -162.09371948242188 + ], + "type":"VEC3" + }, + { + "bufferView":8220, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":8221, + "componentType":5126, + "count":241, + "max":[ + 169.0703125, + 185.2353515625, + 172.5966796875 + ], + "min":[ + -169.0703125, + -0.00048828125, + -172.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":8222, + "componentType":5126, + "count":241, + "type":"VEC3" + }, + { + "bufferView":8223, + "componentType":5126, + "count":241, + "type":"VEC2" + }, + { + "bufferView":8224, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":8225, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":8226, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8227, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8228, + "componentType":5126, + "count":600, + "max":[ + 181.71339416503906, + 32.82525634765625, + 181.7139434814453 + ], + "min":[ + -181.71473693847656, + 6.866455078125e-05, + -181.71420288085938 + ], + "type":"VEC3" + }, + { + "bufferView":8229, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":8230, + "componentType":5126, + "count":4, + "max":[ + 0.0001068115234375, + 144.50997924804688, + 1.2866668701171875 + ], + "min":[ + 6.103515625e-05, + -1.52587890625e-05, + -1.2867050170898438 + ], + "type":"VEC3" + }, + { + "bufferView":8231, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8232, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8233, + "componentType":5126, + "count":346, + "max":[ + 115.35118865966797, + 212.38772583007812, + 68.44580078125 + ], + "min":[ + -115.35128021240234, + 0.9673385620117188, + -68.44600677490234 + ], + "type":"VEC3" + }, + { + "bufferView":8234, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":8235, + "componentType":5126, + "count":576, + "max":[ + 183.8465118408203, + 221.23312377929688, + 168.11953735351562 + ], + "min":[ + -183.843505859375, + 7.62939453125e-05, + -168.1199188232422 + ], + "type":"VEC3" + }, + { + "bufferView":8236, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":8237, + "componentType":5126, + "count":119, + "max":[ + 49.03564453125, + 162.82470703125, + 58.8193359375 + ], + "min":[ + -49.03466796875, + 6.845458984375, + -58.822265625 + ], + "type":"VEC3" + }, + { + "bufferView":8238, + "componentType":5126, + "count":119, + "type":"VEC3" + }, + { + "bufferView":8239, + "componentType":5126, + "count":119, + "type":"VEC2" + }, + { + "bufferView":8240, + "componentType":5126, + "count":336, + "max":[ + 45.858123779296875, + 228.09591674804688, + 115.35120391845703 + ], + "min":[ + -45.85678482055664, + 0.56097412109375, + -115.35125732421875 + ], + "type":"VEC3" + }, + { + "bufferView":8241, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":8242, + "componentType":5126, + "count":596, + "max":[ + 164.8965301513672, + 170.61959838867188, + 143.82345581054688 + ], + "min":[ + -164.89663696289062, + -0.00014495849609375, + -143.8234100341797 + ], + "type":"VEC3" + }, + { + "bufferView":8243, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":8244, + "componentType":5126, + "count":135, + "max":[ + 14.75341796875, + 1869.35009765625, + 14.755615234375 + ], + "min":[ + -14.75537109375, + 6.103515625e-05, + -14.752197265625 + ], + "type":"VEC3" + }, + { + "bufferView":8245, + "componentType":5126, + "count":135, + "type":"VEC3" + }, + { + "bufferView":8246, + "componentType":5126, + "count":135, + "type":"VEC2" + }, + { + "bufferView":8247, + "componentType":5126, + "count":72, + "max":[ + 22.499942779541016, + 1492.539794921875, + 771.346435546875 + ], + "min":[ + -22.5002384185791, + 0.00030517578125, + -771.3448486328125 + ], + "type":"VEC3" + }, + { + "bufferView":8248, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":8249, + "componentType":5126, + "count":210, + "max":[ + 1342.826171875, + 1646.6240234375, + 7.03369140625 + ], + "min":[ + -1342.828125, + 0, + -7.033203125 + ], + "type":"VEC3" + }, + { + "bufferView":8250, + "componentType":5126, + "count":210, + "type":"VEC3" + }, + { + "bufferView":8251, + "componentType":5126, + "count":210, + "type":"VEC2" + }, + { + "bufferView":8252, + "componentType":5126, + "count":352, + "max":[ + 115.35122680664062, + 211.42044067382812, + 68.44601440429688 + ], + "min":[ + -115.35122680664062, + 4.1961669921875e-05, + -68.44577026367188 + ], + "type":"VEC3" + }, + { + "bufferView":8253, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":8254, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":8255, + "componentType":5126, + "count":24, + "max":[ + 260, + 2824.5, + 260 + ], + "min":[ + -260, + 0, + -260 + ], + "type":"VEC3" + }, + { + "bufferView":8256, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8257, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8258, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.929443359375, + 90.004150390625 + ], + "min":[ + -433.1201171875, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":8259, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":8260, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":8261, + "componentType":5123, + "count":2472, + "type":"SCALAR" + }, + { + "bufferView":8262, + "componentType":5126, + "count":24, + "max":[ + 110.00023651123047, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534163448028266, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":8263, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8264, + "componentType":5126, + "count":48, + "max":[ + 161.98095703125, + 658.67578125, + 366.1527099609375 + ], + "min":[ + -161.97900390625, + 0, + -366.1531982421875 + ], + "type":"VEC3" + }, + { + "bufferView":8265, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":8266, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":8267, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":8268, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":8269, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":8270, + "componentType":5126, + "count":8099, + "max":[ + 103.78759765625, + 429.962890625, + 496.1484375 + ], + "min":[ + -103.78662109375, + 0.0009765625, + -496.148681640625 + ], + "type":"VEC3" + }, + { + "bufferView":8271, + "componentType":5126, + "count":8099, + "type":"VEC3" + }, + { + "bufferView":8272, + "componentType":5126, + "count":8099, + "type":"VEC2" + }, + { + "bufferView":8273, + "componentType":5126, + "count":128, + "max":[ + 58.8193359375, + 162.824951171875, + 49.03466796875 + ], + "min":[ + -58.822265625, + 6.845703125, + -49.03564453125 + ], + "type":"VEC3" + }, + { + "bufferView":8274, + "componentType":5126, + "count":128, + "type":"VEC3" + }, + { + "bufferView":8275, + "componentType":5126, + "count":128, + "type":"VEC2" + }, + { + "bufferView":8276, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8277, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8278, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8279, + "componentType":5126, + "count":4, + "max":[ + 0, + 2586.479248046875, + 698.8837890625 + ], + "min":[ + 0, + 0, + -698.885009765625 + ], + "type":"VEC3" + }, + { + "bufferView":8280, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8281, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8282, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8283, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8284, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8285, + "componentType":5126, + "count":184, + "max":[ + 769.70947265625, + 113.194580078125, + 56.59765625 + ], + "min":[ + -769.7080078125, + 6.103515625e-05, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":8286, + "componentType":5126, + "count":184, + "type":"VEC3" + }, + { + "bufferView":8287, + "componentType":5126, + "count":184, + "type":"VEC2" + }, + { + "bufferView":8288, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":8289, + "componentType":5126, + "count":338, + "max":[ + 45.85808563232422, + 271.1289978027344, + 115.62043762207031 + ], + "min":[ + -45.85676956176758, + 42.95967102050781, + -115.62026977539062 + ], + "type":"VEC3" + }, + { + "bufferView":8290, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":8291, + "componentType":5126, + "count":48, + "max":[ + 127.44287109375, + 625.6328125, + 391.737548828125 + ], + "min":[ + -127.4443359375, + 0, + -391.7374267578125 + ], + "type":"VEC3" + }, + { + "bufferView":8292, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":8293, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":8294, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":8295, + "componentType":5126, + "count":1810, + "max":[ + 91.37369537353516, + 182.74732971191406, + 6.498554229736328 + ], + "min":[ + -91.37360382080078, + 1.52587890625e-05, + -6.498502731323242 + ], + "type":"VEC3" + }, + { + "bufferView":8296, + "componentType":5126, + "count":1810, + "type":"VEC3" + }, + { + "bufferView":8297, + "componentType":5126, + "count":1810, + "type":"VEC2" + }, + { + "bufferView":8298, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":8299, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":8300, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":8301, + "componentType":5126, + "count":226, + "max":[ + 115.14122009277344, + 317.57855224609375, + 160.0547332763672 + ], + "min":[ + -115.14129638671875, + -6.103515625e-05, + -160.05490112304688 + ], + "type":"VEC3" + }, + { + "bufferView":8302, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":8303, + "componentType":5126, + "count":594, + "max":[ + 148.97080993652344, + 180.591064453125, + 136.3221435546875 + ], + "min":[ + -148.9737091064453, + 0.0001220703125, + -136.32241821289062 + ], + "type":"VEC3" + }, + { + "bufferView":8304, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":8305, + "componentType":5126, + "count":589, + "max":[ + 144.529296875, + 200.46685791015625, + 134.94979858398438 + ], + "min":[ + -137.3201141357422, + 29.254913330078125, + -123.01902770996094 + ], + "type":"VEC3" + }, + { + "bufferView":8306, + "componentType":5126, + "count":589, + "type":"VEC3" + }, + { + "bufferView":8307, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8308, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8309, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8310, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8311, + "componentType":5126, + "count":355, + "max":[ + 171.2998046875, + 184.8037109375, + 176.140625 + ], + "min":[ + -171.296875, + 44.4560546875, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":8312, + "componentType":5126, + "count":355, + "type":"VEC3" + }, + { + "bufferView":8313, + "componentType":5126, + "count":355, + "type":"VEC2" + }, + { + "bufferView":8314, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":8315, + "componentType":5126, + "count":820, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45752716064453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":8316, + "componentType":5126, + "count":820, + "type":"VEC3" + }, + { + "bufferView":8317, + "componentType":5126, + "count":820, + "type":"VEC2" + }, + { + "bufferView":8318, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":8319, + "componentType":5126, + "count":96, + "max":[ + 55126.9296875, + 2629.5, + 45110.9296875 + ], + "min":[ + -55126.9296875, + 0, + -45110.9296875 + ], + "type":"VEC3" + }, + { + "bufferView":8320, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":8321, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":8322, + "componentType":5123, + "count":168, + "type":"SCALAR" + }, + { + "bufferView":8323, + "componentType":5126, + "count":260, + "max":[ + 3.4517245292663574, + 18.945335388183594, + 9.472704887390137 + ], + "min":[ + -3.4518513679504395, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":8324, + "componentType":5126, + "count":260, + "type":"VEC3" + }, + { + "bufferView":8325, + "componentType":5126, + "count":260, + "type":"VEC2" + }, + { + "bufferView":8326, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8327, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8328, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8329, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":8330, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":8331, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7260799407959 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.729618072509766 + ], + "type":"VEC3" + }, + { + "bufferView":8332, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":8333, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":8334, + "componentType":5126, + "count":142, + "max":[ + 3.45172119140625, + 18.94533348083496, + 9.472748756408691 + ], + "min":[ + -3.451845169067383, + -0.00011920928955078125, + -9.472702026367188 + ], + "type":"VEC3" + }, + { + "bufferView":8335, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":8336, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":8337, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.5859375 + ], + "min":[ + -46.284423828125, + 0, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":8338, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8339, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8340, + "componentType":5126, + "count":72, + "max":[ + 866.67041015625, + 1492.539794921875, + 22.500154495239258 + ], + "min":[ + -866.6709594726562, + 0, + -22.500349044799805 + ], + "type":"VEC3" + }, + { + "bufferView":8341, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":8342, + "componentType":5126, + "count":315, + "max":[ + 10.6767578125, + 283.877197265625, + 60.75100326538086 + ], + "min":[ + -10.6796875, + -1.52587890625e-05, + -60.74905014038086 + ], + "type":"VEC3" + }, + { + "bufferView":8343, + "componentType":5126, + "count":315, + "type":"VEC3" + }, + { + "bufferView":8344, + "componentType":5126, + "count":315, + "type":"VEC2" + }, + { + "bufferView":8345, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":8346, + "componentType":5126, + "count":119, + "max":[ + 49.03564453125, + 162.82470703125, + 58.8193359375 + ], + "min":[ + -49.03466796875, + 6.845458984375, + -58.822265625 + ], + "type":"VEC3" + }, + { + "bufferView":8347, + "componentType":5126, + "count":119, + "type":"VEC3" + }, + { + "bufferView":8348, + "componentType":5126, + "count":119, + "type":"VEC2" + }, + { + "bufferView":8349, + "componentType":5126, + "count":586, + "max":[ + 209.62005615234375, + 32.82524871826172, + 209.6189422607422 + ], + "min":[ + -209.6181640625, + 0.000110626220703125, + -209.6193084716797 + ], + "type":"VEC3" + }, + { + "bufferView":8350, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":8351, + "componentType":5126, + "count":52, + "max":[ + 238.47802734375, + 483.89794921875, + 30.0001220703125 + ], + "min":[ + -238.48046875, + 0, + -30.0003662109375 + ], + "type":"VEC3" + }, + { + "bufferView":8352, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":8353, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":8354, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8355, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8356, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8357, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8358, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8359, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8360, + "componentType":5126, + "count":60, + "max":[ + 2752.0029296875, + 2819.531005859375, + 1436.7666015625 + ], + "min":[ + -2752.0029296875, + 0, + -1436.763671875 + ], + "type":"VEC3" + }, + { + "bufferView":8361, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":8362, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":8363, + "componentType":5126, + "count":571, + "max":[ + 181.1634521484375, + 218.10679626464844, + 165.6735382080078 + ], + "min":[ + -181.16151428222656, + 0, + -165.67401123046875 + ], + "type":"VEC3" + }, + { + "bufferView":8364, + "componentType":5126, + "count":571, + "type":"VEC3" + }, + { + "bufferView":8365, + "componentType":5126, + "count":582, + "max":[ + 157.88787841796875, + 164.80230712890625, + 143.89556884765625 + ], + "min":[ + -157.89076232910156, + 1.0926666259765625, + -131.61434936523438 + ], + "type":"VEC3" + }, + { + "bufferView":8366, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":8367, + "componentType":5126, + "count":164, + "max":[ + 66.3214111328125, + 14332.2607421875, + 520.6513671875 + ], + "min":[ + -66.323486328125, + 0.0010223388671875, + -520.649658203125 + ], + "type":"VEC3" + }, + { + "bufferView":8368, + "componentType":5126, + "count":164, + "type":"VEC3" + }, + { + "bufferView":8369, + "componentType":5126, + "count":164, + "type":"VEC2" + }, + { + "bufferView":8370, + "componentType":5126, + "count":583, + "max":[ + 165.48817443847656, + 239.1734619140625, + 148.70101928710938 + ], + "min":[ + -172.69406127929688, + 35.13507080078125, + -160.63290405273438 + ], + "type":"VEC3" + }, + { + "bufferView":8371, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":8372, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8373, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.58984375, + 5.7220458984375e-05, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":8374, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":8375, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":8376, + "componentType":5126, + "count":929, + "max":[ + 50.15165710449219, + 4511.69775390625, + 79.23551940917969 + ], + "min":[ + -50.15164566040039, + 0.0001220703125, + -79.23470306396484 + ], + "type":"VEC3" + }, + { + "bufferView":8377, + "componentType":5126, + "count":929, + "type":"VEC3" + }, + { + "bufferView":8378, + "componentType":5126, + "count":929, + "type":"VEC2" + }, + { + "bufferView":8379, + "componentType":5123, + "count":4488, + "type":"SCALAR" + }, + { + "bufferView":8380, + "componentType":5126, + "count":50, + "max":[ + 142.32080078125, + 608.220703125, + 391.73681640625 + ], + "min":[ + -142.32177734375, + 0, + -391.738525390625 + ], + "type":"VEC3" + }, + { + "bufferView":8381, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":8382, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":8383, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8384, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8385, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8386, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8387, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8388, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8389, + "componentType":5126, + "count":167, + "max":[ + 57.79645919799805, + 61.74176025390625, + 45.56758499145508 + ], + "min":[ + -57.79677200317383, + 5.340576171875e-05, + -45.56761169433594 + ], + "type":"VEC3" + }, + { + "bufferView":8390, + "componentType":5126, + "count":167, + "type":"VEC3" + }, + { + "bufferView":8391, + "componentType":5126, + "count":167, + "type":"VEC2" + }, + { + "bufferView":8392, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":8393, + "componentType":5126, + "count":48, + "max":[ + 1539.080078125, + 193.8000030517578, + 4828.68359375 + ], + "min":[ + -1539.080078125, + 0, + -4828.68359375 + ], + "type":"VEC3" + }, + { + "bufferView":8394, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":8395, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":8396, + "componentType":5126, + "count":76, + "max":[ + 278.8675231933594, + 3543.081787109375, + 279.1027526855469 + ], + "min":[ + -278.8695068359375, + 0, + -279.10015869140625 + ], + "type":"VEC3" + }, + { + "bufferView":8397, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":8398, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":8399, + "componentType":5126, + "count":160, + "max":[ + 769.70751953125, + 113.19482421875, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":8400, + "componentType":5126, + "count":160, + "type":"VEC3" + }, + { + "bufferView":8401, + "componentType":5126, + "count":160, + "type":"VEC2" + }, + { + "bufferView":8402, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":8403, + "componentType":5126, + "count":224, + "max":[ + 115.1412124633789, + 258.98175048828125, + 118.72059631347656 + ], + "min":[ + -115.14129638671875, + 28.69927978515625, + -118.72099304199219 + ], + "type":"VEC3" + }, + { + "bufferView":8404, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":8405, + "componentType":5126, + "count":48, + "max":[ + 289.0126037597656, + 233.9413299560547, + 11.697283744812012 + ], + "min":[ + -289.01556396484375, + -1.52587890625e-05, + -11.696887016296387 + ], + "type":"VEC3" + }, + { + "bufferView":8406, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":8407, + "componentType":5126, + "count":139, + "max":[ + 80.153076171875, + 126.6884765625, + 49.03515625 + ], + "min":[ + -80.153076171875, + 0, + -49.03515625 + ], + "type":"VEC3" + }, + { + "bufferView":8408, + "componentType":5126, + "count":139, + "type":"VEC3" + }, + { + "bufferView":8409, + "componentType":5126, + "count":139, + "type":"VEC2" + }, + { + "bufferView":8410, + "componentType":5126, + "count":240, + "max":[ + 34788, + 350, + 31076 + ], + "min":[ + -34788, + 0, + -31076 + ], + "type":"VEC3" + }, + { + "bufferView":8411, + "componentType":5126, + "count":240, + "type":"VEC3" + }, + { + "bufferView":8412, + "componentType":5126, + "count":240, + "type":"VEC2" + }, + { + "bufferView":8413, + "componentType":5126, + "count":108, + "max":[ + 1272.04541015625, + 2502.010009765625, + 25.650390625 + ], + "min":[ + -1272.044921875, + 0, + -25.650146484375 + ], + "type":"VEC3" + }, + { + "bufferView":8414, + "componentType":5126, + "count":108, + "type":"VEC3" + }, + { + "bufferView":8415, + "componentType":5126, + "count":108, + "type":"VEC2" + }, + { + "bufferView":8416, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.5140380859375, + 22.7297420501709 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.725955963134766 + ], + "type":"VEC3" + }, + { + "bufferView":8417, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":8418, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":8419, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":8420, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8421, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8422, + "componentType":5126, + "count":24, + "max":[ + 110.00012969970703, + 50, + 584.662109375 + ], + "min":[ + -110.00007629394531, + 0, + -584.666015625 + ], + "type":"VEC3" + }, + { + "bufferView":8423, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8424, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92938232421875, + 384.5786437988281 + ], + "min":[ + -244.4677734375, + 0.0001068115234375, + -384.5815734863281 + ], + "type":"VEC3" + }, + { + "bufferView":8425, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":8426, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":8427, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8428, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8429, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8430, + "componentType":5126, + "count":342, + "max":[ + 115.1412124633789, + 235.95401000976562, + 69.11627197265625 + ], + "min":[ + -115.14122772216797, + 25.712646484375, + -69.1163330078125 + ], + "type":"VEC3" + }, + { + "bufferView":8431, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":8432, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":8433, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.58984375, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":8434, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":8435, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":8436, + "componentType":5126, + "count":588, + "max":[ + 194.32528686523438, + 199.6417236328125, + 169.31103515625 + ], + "min":[ + -194.32896423339844, + 0.00017547607421875, + -169.31097412109375 + ], + "type":"VEC3" + }, + { + "bufferView":8437, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":8438, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8439, + "componentType":5126, + "count":60, + "max":[ + 3.7875025272369385, + 13.413309097290039, + 4.24593448638916 + ], + "min":[ + -3.7875616550445557, + 0.000110626220703125, + -4.2458930015563965 + ], + "type":"VEC3" + }, + { + "bufferView":8440, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":8441, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":8442, + "componentType":5126, + "count":352, + "max":[ + 115.35122680664062, + 211.42044067382812, + 68.44601440429688 + ], + "min":[ + -115.35122680664062, + 4.1961669921875e-05, + -68.44577026367188 + ], + "type":"VEC3" + }, + { + "bufferView":8443, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":8444, + "componentType":5126, + "count":580, + "max":[ + 182.92408752441406, + 263.1343994140625, + 164.5994873046875 + ], + "min":[ + -190.1309051513672, + 38.774932861328125, + -176.53187561035156 + ], + "type":"VEC3" + }, + { + "bufferView":8445, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":8446, + "componentType":5126, + "count":586, + "max":[ + 189.2086639404297, + 227.48583984375, + 173.01158142089844 + ], + "min":[ + -189.21136474609375, + 0.0001068115234375, + -173.01168823242188 + ], + "type":"VEC3" + }, + { + "bufferView":8447, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":8448, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8449, + "componentType":5126, + "count":824, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45703887939453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":8450, + "componentType":5126, + "count":824, + "type":"VEC3" + }, + { + "bufferView":8451, + "componentType":5126, + "count":824, + "type":"VEC2" + }, + { + "bufferView":8452, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":8453, + "componentType":5126, + "count":568, + "max":[ + 182.50498962402344, + 117.93252563476562, + 190.12266540527344 + ], + "min":[ + -182.5025177001953, + 0.000244140625, + -190.1229248046875 + ], + "type":"VEC3" + }, + { + "bufferView":8454, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":8455, + "componentType":5126, + "count":209, + "max":[ + 13.2529296875, + 75.79594421386719, + 25.50537109375 + ], + "min":[ + -13.2509765625, + 0.00019535725004971027, + -25.4984130859375 + ], + "type":"VEC3" + }, + { + "bufferView":8456, + "componentType":5126, + "count":209, + "type":"VEC3" + }, + { + "bufferView":8457, + "componentType":5126, + "count":209, + "type":"VEC2" + }, + { + "bufferView":8458, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":8459, + "componentType":5126, + "count":72, + "max":[ + 422.67730712890625, + 629.1729125976562, + 222.1094512939453 + ], + "min":[ + -422.6772155761719, + 6.103515625e-05, + -222.10919189453125 + ], + "type":"VEC3" + }, + { + "bufferView":8460, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":8461, + "componentType":5126, + "count":580, + "max":[ + 188.72206115722656, + 32.82521057128906, + 188.72120666503906 + ], + "min":[ + -188.72061157226562, + 6.866455078125e-05, + -188.72146606445312 + ], + "type":"VEC3" + }, + { + "bufferView":8462, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":8463, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8464, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8465, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8466, + "componentType":5126, + "count":114, + "max":[ + 102.130859375, + 3063.665283203125, + 102.13092041015625 + ], + "min":[ + -102.1312255859375, + 7.62939453125e-05, + -102.13088989257812 + ], + "type":"VEC3" + }, + { + "bufferView":8467, + "componentType":5126, + "count":114, + "type":"VEC3" + }, + { + "bufferView":8468, + "componentType":5126, + "count":114, + "type":"VEC2" + }, + { + "bufferView":8469, + "componentType":5126, + "count":24, + "max":[ + 29.8388671875, + 320.322265625, + 219.6572265625 + ], + "min":[ + -29.83935546875, + 0, + -219.654296875 + ], + "type":"VEC3" + }, + { + "bufferView":8470, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8471, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8472, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7293758392334 + ], + "min":[ + -43.5888671875, + 0.000118255615234375, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":8473, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":8474, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":8475, + "componentType":5126, + "count":224, + "max":[ + 118.72100067138672, + 272.6591796875, + 115.08638763427734 + ], + "min":[ + -118.72062683105469, + 42.48628234863281, + -115.08647155761719 + ], + "type":"VEC3" + }, + { + "bufferView":8476, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":8477, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":8478, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":8479, + "componentType":5126, + "count":603, + "max":[ + 158.36148071289062, + 191.53338623046875, + 144.88320922851562 + ], + "min":[ + -158.360595703125, + 0.0002288818359375, + -144.88308715820312 + ], + "type":"VEC3" + }, + { + "bufferView":8480, + "componentType":5126, + "count":603, + "type":"VEC3" + }, + { + "bufferView":8481, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8482, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8483, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8484, + "componentType":5126, + "count":580, + "max":[ + 190.12181091308594, + 195.495361328125, + 165.66993713378906 + ], + "min":[ + -190.123779296875, + -0.00020599365234375, + -165.66986083984375 + ], + "type":"VEC3" + }, + { + "bufferView":8485, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":8486, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8487, + "componentType":5126, + "count":586, + "max":[ + 169.1017303466797, + 32.82521057128906, + 169.10089111328125 + ], + "min":[ + -169.10015869140625, + 3.814697265625e-05, + -169.10105895996094 + ], + "type":"VEC3" + }, + { + "bufferView":8488, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":8489, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.45458984375, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":8490, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":8491, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":8492, + "componentType":5126, + "count":122, + "max":[ + 16.8212890625, + 2131.26025390625, + 16.82171630859375 + ], + "min":[ + -16.8212890625, + -0.00030517578125, + -16.820556640625 + ], + "type":"VEC3" + }, + { + "bufferView":8493, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":8494, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":8495, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":8496, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":8497, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8498, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8499, + "componentType":5126, + "count":76, + "max":[ + 279.1010437011719, + 3543.081787109375, + 278.8670349121094 + ], + "min":[ + -279.0986328125, + 0, + -278.8664245605469 + ], + "type":"VEC3" + }, + { + "bufferView":8500, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":8501, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":8502, + "componentType":5126, + "count":599, + "max":[ + 148.55227661132812, + 100.63818359375, + 150.8820343017578 + ], + "min":[ + -141.34466552734375, + 0.604156494140625, + -150.882080078125 + ], + "type":"VEC3" + }, + { + "bufferView":8503, + "componentType":5126, + "count":599, + "type":"VEC3" + }, + { + "bufferView":8504, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8505, + "componentType":5126, + "count":574, + "max":[ + 149.48141479492188, + 156.44998168945312, + 136.61288452148438 + ], + "min":[ + -149.47979736328125, + 1.0324478149414062, + -124.33268737792969 + ], + "type":"VEC3" + }, + { + "bufferView":8506, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":8507, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8508, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":8509, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":8510, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":8511, + "componentType":5126, + "count":798, + "max":[ + 4.1318359375, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":8512, + "componentType":5126, + "count":798, + "type":"VEC3" + }, + { + "bufferView":8513, + "componentType":5126, + "count":798, + "type":"VEC2" + }, + { + "bufferView":8514, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":8515, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":8516, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8517, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8518, + "componentType":5126, + "count":346, + "max":[ + 171.2978515625, + 184.8017578125, + 176.138916015625 + ], + "min":[ + -171.2978515625, + 44.455078125, + -176.142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":8519, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":8520, + "componentType":5126, + "count":346, + "type":"VEC2" + }, + { + "bufferView":8521, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":8522, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8523, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8524, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8525, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":8526, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8527, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8528, + "componentType":5126, + "count":122, + "max":[ + 228.908203125, + 55.46875, + 27.736328125 + ], + "min":[ + -228.907958984375, + 0, + -27.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":8529, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":8530, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":8531, + "componentType":5126, + "count":582, + "max":[ + 201.33372497558594, + 206.5514373779297, + 175.37945556640625 + ], + "min":[ + -201.3351287841797, + -6.103515625e-05, + -175.37960815429688 + ], + "type":"VEC3" + }, + { + "bufferView":8532, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":8533, + "componentType":5126, + "count":232, + "max":[ + 115.35124206542969, + 318.5151062011719, + 159.1707000732422 + ], + "min":[ + -115.35128021240234, + 1.3115692138671875, + -160.49093627929688 + ], + "type":"VEC3" + }, + { + "bufferView":8534, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":8535, + "componentType":5126, + "count":48, + "max":[ + 123.61328125, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.615234375, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":8536, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":8537, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":8538, + "componentType":5126, + "count":48, + "max":[ + 127.44482421875, + 625.6328125, + 391.737548828125 + ], + "min":[ + -127.4423828125, + 0, + -391.737548828125 + ], + "type":"VEC3" + }, + { + "bufferView":8539, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":8540, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":8541, + "componentType":5126, + "count":210, + "max":[ + 1342.826171875, + 1646.6240234375, + 7.0341796875 + ], + "min":[ + -1342.828125, + 0, + -7.03271484375 + ], + "type":"VEC3" + }, + { + "bufferView":8542, + "componentType":5126, + "count":210, + "type":"VEC3" + }, + { + "bufferView":8543, + "componentType":5126, + "count":210, + "type":"VEC2" + }, + { + "bufferView":8544, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":8545, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":8546, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":8547, + "componentType":5126, + "count":2690, + "max":[ + 128.19970703125, + 421.52587890625, + 128.19921875 + ], + "min":[ + -128.19921875, + 0, + -128.19921875 + ], + "type":"VEC3" + }, + { + "bufferView":8548, + "componentType":5126, + "count":2690, + "type":"VEC3" + }, + { + "bufferView":8549, + "componentType":5126, + "count":2690, + "type":"VEC2" + }, + { + "bufferView":8550, + "componentType":5123, + "count":4800, + "type":"SCALAR" + }, + { + "bufferView":8551, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":8552, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8553, + "componentType":5126, + "count":24, + "max":[ + 13.57373046875, + 1879.529541015625, + 334.78076171875 + ], + "min":[ + -13.5732421875, + 0, + -334.78076171875 + ], + "type":"VEC3" + }, + { + "bufferView":8554, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8555, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8556, + "componentType":5126, + "count":574, + "max":[ + 155.0883331298828, + 162.0181884765625, + 141.46792602539062 + ], + "min":[ + -155.08447265625, + 1.072662353515625, + -129.1872100830078 + ], + "type":"VEC3" + }, + { + "bufferView":8557, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":8558, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8559, + "componentType":5126, + "count":96, + "max":[ + 513.90966796875, + 141.07080078125, + 69.5703125 + ], + "min":[ + -513.9052734375, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":8560, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":8561, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":8562, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8563, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8564, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8565, + "componentType":5126, + "count":51, + "max":[ + 127.44677734375, + 625.6328125, + 391.73583984375 + ], + "min":[ + -127.4404296875, + 0, + -391.739501953125 + ], + "type":"VEC3" + }, + { + "bufferView":8566, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":8567, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":8568, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":8569, + "componentType":5126, + "count":201, + "max":[ + 13.25439453125, + 75.79572296142578, + 23.9537353515625 + ], + "min":[ + -13.25048828125, + 9.736733045428991e-05, + -23.9473876953125 + ], + "type":"VEC3" + }, + { + "bufferView":8570, + "componentType":5126, + "count":201, + "type":"VEC3" + }, + { + "bufferView":8571, + "componentType":5126, + "count":201, + "type":"VEC2" + }, + { + "bufferView":8572, + "componentType":5126, + "count":8516, + "max":[ + 178.595703125, + 1010.52294921875, + 103.78662109375 + ], + "min":[ + -178.6044921875, + 12.33984375, + -103.78662109375 + ], + "type":"VEC3" + }, + { + "bufferView":8573, + "componentType":5126, + "count":8516, + "type":"VEC3" + }, + { + "bufferView":8574, + "componentType":5126, + "count":8516, + "type":"VEC2" + }, + { + "bufferView":8575, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":8576, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8577, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8578, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8579, + "componentType":5126, + "count":578, + "max":[ + 176.21644592285156, + 253.9186553955078, + 158.48526000976562 + ], + "min":[ + -183.4259796142578, + 37.37495422363281, + -170.4163055419922 + ], + "type":"VEC3" + }, + { + "bufferView":8580, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":8581, + "componentType":5126, + "count":204, + "max":[ + 491.284912109375, + 2458.32470703125, + 168.48463439941406 + ], + "min":[ + -491.28839111328125, + 0, + -168.48458862304688 + ], + "type":"VEC3" + }, + { + "bufferView":8582, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":8583, + "componentType":5126, + "count":596, + "max":[ + 165.069091796875, + 199.34866333007812, + 150.99803161621094 + ], + "min":[ + -165.06565856933594, + -0.0001678466796875, + -150.99801635742188 + ], + "type":"VEC3" + }, + { + "bufferView":8584, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":8585, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8586, + "componentType":5126, + "count":574, + "max":[ + 152.2848663330078, + 159.23370361328125, + 139.0407257080078 + ], + "min":[ + -152.2821502685547, + 1.05206298828125, + -126.75958251953125 + ], + "type":"VEC3" + }, + { + "bufferView":8587, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":8588, + "componentType":5126, + "count":598, + "max":[ + 198.53025817871094, + 32.825233459472656, + 198.53135681152344 + ], + "min":[ + -198.53277587890625, + 6.4849853515625e-05, + -198.53167724609375 + ], + "type":"VEC3" + }, + { + "bufferView":8589, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":8590, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.5140380859375, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":8591, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":8592, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":8593, + "componentType":5126, + "count":348, + "max":[ + 115.35120391845703, + 211.4204559326172, + 68.44580078125 + ], + "min":[ + -115.35124206542969, + 6.866455078125e-05, + -68.44602966308594 + ], + "type":"VEC3" + }, + { + "bufferView":8594, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":8595, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":8596, + "componentType":5126, + "count":112, + "max":[ + 147.98106384277344, + 365.8507995605469, + 106.49419403076172 + ], + "min":[ + -147.98333740234375, + -3.0517578125e-05, + -106.49420166015625 + ], + "type":"VEC3" + }, + { + "bufferView":8597, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":8598, + "componentType":5126, + "count":577, + "max":[ + 154.3369140625, + 104.50856018066406, + 160.6921844482422 + ], + "min":[ + -154.33766174316406, + 0.00014495849609375, + -160.69229125976562 + ], + "type":"VEC3" + }, + { + "bufferView":8599, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":8600, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8601, + "componentType":5126, + "count":250, + "max":[ + 169.1015625, + 188.23828125, + 173.28125 + ], + "min":[ + -169.1015625, + 0, + -173.28173828125 + ], + "type":"VEC3" + }, + { + "bufferView":8602, + "componentType":5126, + "count":250, + "type":"VEC3" + }, + { + "bufferView":8603, + "componentType":5126, + "count":250, + "type":"VEC2" + }, + { + "bufferView":8604, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":8605, + "componentType":5126, + "count":600, + "max":[ + 164.6481170654297, + 108.37923431396484, + 167.69944763183594 + ], + "min":[ + -157.43902587890625, + 0.6745376586914062, + -167.69956970214844 + ], + "type":"VEC3" + }, + { + "bufferView":8606, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":8607, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8608, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":8609, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8610, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8611, + "componentType":5126, + "count":574, + "max":[ + 180.31166076660156, + 32.82526397705078, + 180.3125 + ], + "min":[ + -180.3135223388672, + -4.1961669921875e-05, + -180.31268310546875 + ], + "type":"VEC3" + }, + { + "bufferView":8612, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":8613, + "componentType":5126, + "count":234, + "max":[ + 115.35121154785156, + 317.20355224609375, + 159.83065795898438 + ], + "min":[ + -115.35128021240234, + -7.62939453125e-05, + -159.8308563232422 + ], + "type":"VEC3" + }, + { + "bufferView":8614, + "componentType":5126, + "count":234, + "type":"VEC3" + }, + { + "bufferView":8615, + "componentType":5126, + "count":570, + "max":[ + 163.4947967529297, + 169.23770141601562, + 142.60977172851562 + ], + "min":[ + -163.4954833984375, + 0.00016021728515625, + -142.6097412109375 + ], + "type":"VEC3" + }, + { + "bufferView":8616, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":8617, + "componentType":5126, + "count":92, + "max":[ + 22.05126953125, + 77.6373291015625, + 30.45068359375 + ], + "min":[ + -22.05078125, + 0.0001220703125, + -30.449951171875 + ], + "type":"VEC3" + }, + { + "bufferView":8618, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":8619, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":8620, + "componentType":5126, + "count":72, + "max":[ + 22.499942779541016, + 1492.539794921875, + 771.346435546875 + ], + "min":[ + -22.5002384185791, + 0.00030517578125, + -771.3448486328125 + ], + "type":"VEC3" + }, + { + "bufferView":8621, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":8622, + "componentType":5126, + "count":210, + "max":[ + 1342.826171875, + 1646.6240234375, + 7.03369140625 + ], + "min":[ + -1342.828125, + 0, + -7.033203125 + ], + "type":"VEC3" + }, + { + "bufferView":8623, + "componentType":5126, + "count":210, + "type":"VEC3" + }, + { + "bufferView":8624, + "componentType":5126, + "count":210, + "type":"VEC2" + }, + { + "bufferView":8625, + "componentType":5126, + "count":144, + "max":[ + 428.9188232421875, + 1017.9165649414062, + 642.9835205078125 + ], + "min":[ + -428.9180603027344, + 9.1552734375e-05, + -642.9835815429688 + ], + "type":"VEC3" + }, + { + "bufferView":8626, + "componentType":5126, + "count":144, + "type":"VEC3" + }, + { + "bufferView":8627, + "componentType":5126, + "count":228, + "max":[ + 115.35124206542969, + 317.20355224609375, + 159.17068481445312 + ], + "min":[ + -115.35128021240234, + -6.103515625e-05, + -160.49081420898438 + ], + "type":"VEC3" + }, + { + "bufferView":8628, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":8629, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":8630, + "componentType":5126, + "count":60, + "max":[ + 2752.00439453125, + 2819.53076171875, + 1066.3984375 + ], + "min":[ + -2752.0029296875, + -0.0001220703125, + -1066.39453125 + ], + "type":"VEC3" + }, + { + "bufferView":8631, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":8632, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":8633, + "componentType":5126, + "count":120, + "max":[ + 2333.6357421875, + 450, + 44740.32421875 + ], + "min":[ + -2333.63623046875, + 0, + -44740.32421875 + ], + "type":"VEC3" + }, + { + "bufferView":8634, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":8635, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":8636, + "componentType":5123, + "count":204, + "type":"SCALAR" + }, + { + "bufferView":8637, + "componentType":5126, + "count":570, + "max":[ + 183.11512756347656, + 188.58531188964844, + 159.60145568847656 + ], + "min":[ + -183.11587524414062, + -0.00018310546875, + -159.6015167236328 + ], + "type":"VEC3" + }, + { + "bufferView":8638, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":8639, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8640, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8641, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8642, + "componentType":5126, + "count":125, + "max":[ + 3.8606691360473633, + 15.442764282226562, + 7.721350193023682 + ], + "min":[ + -3.860673666000366, + 8.249282836914062e-05, + -7.721330165863037 + ], + "type":"VEC3" + }, + { + "bufferView":8643, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":8644, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":8645, + "componentType":5126, + "count":92, + "max":[ + 824.2412109375, + 141.0703125, + 69.5699462890625 + ], + "min":[ + -824.24072265625, + 0, + -69.5699462890625 + ], + "type":"VEC3" + }, + { + "bufferView":8646, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":8647, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":8648, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":8649, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":8650, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":8651, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":8652, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8653, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8654, + "componentType":5126, + "count":90, + "max":[ + 14.75390625, + 1869.35107421875, + 14.75341796875 + ], + "min":[ + -14.75390625, + 0.0010986328125, + -14.75537109375 + ], + "type":"VEC3" + }, + { + "bufferView":8655, + "componentType":5126, + "count":90, + "type":"VEC3" + }, + { + "bufferView":8656, + "componentType":5126, + "count":90, + "type":"VEC2" + }, + { + "bufferView":8657, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":8658, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8659, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8660, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8661, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58544921875 + ], + "min":[ + -46.2841796875, + 0, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":8662, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8663, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8664, + "componentType":5126, + "count":49, + "max":[ + 123.61328125, + 696.755859375, + 366.15264892578125 + ], + "min":[ + -123.615234375, + 0, + -366.1528015136719 + ], + "type":"VEC3" + }, + { + "bufferView":8665, + "componentType":5126, + "count":49, + "type":"VEC3" + }, + { + "bufferView":8666, + "componentType":5126, + "count":49, + "type":"VEC2" + }, + { + "bufferView":8667, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":8668, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":8669, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":8670, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":8671, + "componentType":5126, + "count":336, + "max":[ + 115.14116668701172, + 210.2412567138672, + 69.11679077148438 + ], + "min":[ + -115.14129638671875, + -7.62939453125e-05, + -69.11602783203125 + ], + "type":"VEC3" + }, + { + "bufferView":8672, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":8673, + "componentType":5126, + "count":593, + "max":[ + 147.62928771972656, + 179.02798461914062, + 135.09918212890625 + ], + "min":[ + -147.6327362060547, + 0.0001068115234375, + -135.09954833984375 + ], + "type":"VEC3" + }, + { + "bufferView":8674, + "componentType":5126, + "count":593, + "type":"VEC3" + }, + { + "bufferView":8675, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28369140625 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":8676, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":8677, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":8678, + "componentType":5126, + "count":593, + "max":[ + 145.87022399902344, + 202.30992126464844, + 136.173828125 + ], + "min":[ + -138.66162109375, + 29.53472900390625, + -124.2409896850586 + ], + "type":"VEC3" + }, + { + "bufferView":8679, + "componentType":5126, + "count":593, + "type":"VEC3" + }, + { + "bufferView":8680, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8681, + "componentType":5126, + "count":1489, + "max":[ + 831.5908203125, + 3651.483642578125, + 381.837890625 + ], + "min":[ + -635.6494140625, + 40.05810546875, + -381.8388671875 + ], + "type":"VEC3" + }, + { + "bufferView":8682, + "componentType":5126, + "count":1489, + "type":"VEC3" + }, + { + "bufferView":8683, + "componentType":5126, + "count":1489, + "type":"VEC2" + }, + { + "bufferView":8684, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":8685, + "componentType":5126, + "count":1420, + "max":[ + 433.119140625, + 367.929443359375, + 90.005859375 + ], + "min":[ + -433.12109375, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":8686, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":8687, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":8688, + "componentType":5126, + "count":576, + "max":[ + 201.33372497558594, + 207.95718383789062, + 181.51971435546875 + ], + "min":[ + -201.3351287841797, + 1.4057083129882812, + -169.23928833007812 + ], + "type":"VEC3" + }, + { + "bufferView":8689, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":8690, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8691, + "componentType":5126, + "count":1016, + "max":[ + 125.224609375, + 76.1982421875, + 90.109375 + ], + "min":[ + -125.2275390625, + -0.0009765625, + -90.1083984375 + ], + "type":"VEC3" + }, + { + "bufferView":8692, + "componentType":5126, + "count":1016, + "type":"VEC3" + }, + { + "bufferView":8693, + "componentType":5126, + "count":1016, + "type":"VEC2" + }, + { + "bufferView":8694, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":8695, + "componentType":5126, + "count":354, + "max":[ + 131.32864379882812, + 220.879150390625, + 138.18701171875 + ], + "min":[ + -131.32907104492188, + 0.00048828125, + -138.1864013671875 + ], + "type":"VEC3" + }, + { + "bufferView":8696, + "componentType":5126, + "count":354, + "type":"VEC3" + }, + { + "bufferView":8697, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":8698, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8699, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8700, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8701, + "componentType":5126, + "count":581, + "max":[ + 150.8831329345703, + 156.79954528808594, + 131.68653869628906 + ], + "min":[ + -150.88096618652344, + -0.0001068115234375, + -131.68649291992188 + ], + "type":"VEC3" + }, + { + "bufferView":8702, + "componentType":5126, + "count":581, + "type":"VEC3" + }, + { + "bufferView":8703, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8704, + "componentType":5126, + "count":1922, + "max":[ + 12.500040054321289, + 416.6913757324219, + 579.5 + ], + "min":[ + -12.500024795532227, + -4.76837158203125e-07, + -579.5 + ], + "type":"VEC3" + }, + { + "bufferView":8705, + "componentType":5126, + "count":1922, + "type":"VEC3" + }, + { + "bufferView":8706, + "componentType":5123, + "count":5520, + "type":"SCALAR" + }, + { + "bufferView":8707, + "componentType":5126, + "count":588, + "max":[ + 173.3037109375, + 32.8253059387207, + 173.3052520751953 + ], + "min":[ + -173.30691528320312, + 9.5367431640625e-05, + -173.30545043945312 + ], + "type":"VEC3" + }, + { + "bufferView":8708, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":8709, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8710, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":8711, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":8712, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.5140380859375, + 22.7260799407959 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.729618072509766 + ], + "type":"VEC3" + }, + { + "bufferView":8713, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":8714, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":8715, + "componentType":5126, + "count":125, + "max":[ + 3.8606996536254883, + 15.442764282226562, + 7.721350193023682 + ], + "min":[ + -3.860643148422241, + 8.249282836914062e-05, + -7.721330165863037 + ], + "type":"VEC3" + }, + { + "bufferView":8716, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":8717, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":8718, + "componentType":5126, + "count":572, + "max":[ + 184.51705932617188, + 191.2522735595703, + 154.67453002929688 + ], + "min":[ + -184.51686096191406, + 1.28472900390625, + -166.95584106445312 + ], + "type":"VEC3" + }, + { + "bufferView":8719, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":8720, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8721, + "componentType":5126, + "count":303, + "max":[ + 10.6767578125, + 283.877197265625, + 60.75051498413086 + ], + "min":[ + -10.6796875, + -1.52587890625e-05, + -60.74953842163086 + ], + "type":"VEC3" + }, + { + "bufferView":8722, + "componentType":5126, + "count":303, + "type":"VEC3" + }, + { + "bufferView":8723, + "componentType":5126, + "count":303, + "type":"VEC2" + }, + { + "bufferView":8724, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":8725, + "componentType":5126, + "count":577, + "max":[ + 170.4312744140625, + 112.17939758300781, + 177.5095977783203 + ], + "min":[ + -170.43348693847656, + 0.0001983642578125, + -177.5098114013672 + ], + "type":"VEC3" + }, + { + "bufferView":8726, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":8727, + "componentType":5126, + "count":136, + "max":[ + 49.03564453125, + 126.6884765625, + 80.153076171875 + ], + "min":[ + -49.03466796875, + 0, + -80.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":8728, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":8729, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":8730, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8731, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8732, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8733, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4556884765625, + 30.22265625 + ], + "min":[ + -3.62353515625, + 0, + -30.2216796875 + ], + "type":"VEC3" + }, + { + "bufferView":8734, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":8735, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":8736, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51422119140625, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + 5.7220458984375e-05, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":8737, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":8738, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":8739, + "componentType":5126, + "count":590, + "max":[ + 159.28961181640625, + 165.0919189453125, + 138.96868896484375 + ], + "min":[ + -159.29193115234375, + 0.0001678466796875, + -138.96868896484375 + ], + "type":"VEC3" + }, + { + "bufferView":8740, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":8741, + "componentType":5126, + "count":72, + "max":[ + 771.3452758789062, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.345703125, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":8742, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":8743, + "componentType":5126, + "count":817, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45655059814453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":8744, + "componentType":5126, + "count":817, + "type":"VEC3" + }, + { + "bufferView":8745, + "componentType":5126, + "count":817, + "type":"VEC2" + }, + { + "bufferView":8746, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":8747, + "componentType":5126, + "count":592, + "max":[ + 167.6999969482422, + 173.38357543945312, + 146.25083923339844 + ], + "min":[ + -167.6990203857422, + 4.57763671875e-05, + -146.2508544921875 + ], + "type":"VEC3" + }, + { + "bufferView":8748, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":8749, + "componentType":5126, + "count":584, + "max":[ + 202.73629760742188, + 32.82523727416992, + 202.7357177734375 + ], + "min":[ + -202.73544311523438, + 0.000110626220703125, + -202.73605346679688 + ], + "type":"VEC3" + }, + { + "bufferView":8750, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":8751, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8752, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8753, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8754, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8755, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.5142822265625, + 22.7275447845459 + ], + "min":[ + -43.58984375, + 0.000118255615234375, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":8756, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":8757, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":8758, + "componentType":5126, + "count":929, + "max":[ + 50.15165710449219, + 4511.69775390625, + 79.23747253417969 + ], + "min":[ + -50.15164566040039, + 0.0001220703125, + -79.23274993896484 + ], + "type":"VEC3" + }, + { + "bufferView":8759, + "componentType":5126, + "count":929, + "type":"VEC3" + }, + { + "bufferView":8760, + "componentType":5126, + "count":929, + "type":"VEC2" + }, + { + "bufferView":8761, + "componentType":5123, + "count":4488, + "type":"SCALAR" + }, + { + "bufferView":8762, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8763, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8764, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8765, + "componentType":5126, + "count":112, + "max":[ + 116.97066497802734, + 2149.27001953125, + 116.97098541259766 + ], + "min":[ + -116.97066497802734, + 0, + -116.97066497802734 + ], + "type":"VEC3" + }, + { + "bufferView":8766, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":8767, + "componentType":5126, + "count":8046, + "max":[ + 103.78759765625, + 1010.39453125, + 180.1181640625 + ], + "min":[ + -103.78662109375, + 12.32421875, + -180.12109375 + ], + "type":"VEC3" + }, + { + "bufferView":8768, + "componentType":5126, + "count":8046, + "type":"VEC3" + }, + { + "bufferView":8769, + "componentType":5126, + "count":8046, + "type":"VEC2" + }, + { + "bufferView":8770, + "componentType":5126, + "count":76, + "max":[ + 278.86651611328125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8672180175781, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":8771, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":8772, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":8773, + "componentType":5126, + "count":336, + "max":[ + 115.14118194580078, + 258.98150634765625, + 13.560531616210938 + ], + "min":[ + -115.14129638671875, + 28.69904327392578, + -13.560844421386719 + ], + "type":"VEC3" + }, + { + "bufferView":8774, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":8775, + "componentType":5126, + "count":585, + "max":[ + 146.2877960205078, + 177.46484375, + 133.87655639648438 + ], + "min":[ + -146.2916717529297, + 2.288818359375e-05, + -133.87603759765625 + ], + "type":"VEC3" + }, + { + "bufferView":8776, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":8777, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8778, + "componentType":5126, + "count":50, + "max":[ + 142.32275390625, + 608.220703125, + 391.73828125 + ], + "min":[ + -142.31982421875, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":8779, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":8780, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":8781, + "componentType":5126, + "count":16, + "max":[ + 2718.68896484375, + 1203, + 7129.99267578125 + ], + "min":[ + -2718.68896484375, + 0, + -7129.9931640625 + ], + "type":"VEC3" + }, + { + "bufferView":8782, + "componentType":5126, + "count":16, + "type":"VEC3" + }, + { + "bufferView":8783, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":8784, + "componentType":5126, + "count":559, + "max":[ + 223.19964599609375, + 446.28021240234375, + 223.60580444335938 + ], + "min":[ + -223.19967651367188, + 4.57763671875e-05, + -223.6057891845703 + ], + "type":"VEC3" + }, + { + "bufferView":8785, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":8786, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":8787, + "componentType":5126, + "count":133, + "max":[ + 80.153076171875, + 126.6884765625, + 49.0341796875 + ], + "min":[ + -80.153076171875, + 0, + -49.0361328125 + ], + "type":"VEC3" + }, + { + "bufferView":8788, + "componentType":5126, + "count":133, + "type":"VEC3" + }, + { + "bufferView":8789, + "componentType":5126, + "count":133, + "type":"VEC2" + }, + { + "bufferView":8790, + "componentType":5126, + "count":106, + "max":[ + 27.31396484375, + 1876.474365234375, + 413.561279296875 + ], + "min":[ + -27.314453125, + -0.00054931640625, + -413.56103515625 + ], + "type":"VEC3" + }, + { + "bufferView":8791, + "componentType":5126, + "count":106, + "type":"VEC3" + }, + { + "bufferView":8792, + "componentType":5126, + "count":106, + "type":"VEC2" + }, + { + "bufferView":8793, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":8794, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":8795, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.9293212890625, + 90.00634765625 + ], + "min":[ + -433.1201171875, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":8796, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":8797, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":8798, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8799, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8800, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8801, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8802, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8803, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8804, + "componentType":5126, + "count":224, + "max":[ + 115.14118957519531, + 317.5784912109375, + 160.05482482910156 + ], + "min":[ + -115.14126586914062, + 0.0001373291015625, + -160.05482482910156 + ], + "type":"VEC3" + }, + { + "bufferView":8805, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":8806, + "componentType":5126, + "count":559, + "max":[ + 722.72265625, + 2637.3974609375, + 19.80198860168457 + ], + "min":[ + -722.72265625, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":8807, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":8808, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":8809, + "componentType":5126, + "count":24, + "max":[ + 13.692138671875, + 40.78076171875, + 2279.095947265625 + ], + "min":[ + -13.692626953125, + 0, + -2279.09521484375 + ], + "type":"VEC3" + }, + { + "bufferView":8810, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8811, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8812, + "componentType":5126, + "count":574, + "max":[ + 195.7303924560547, + 201.02349853515625, + 170.5247039794922 + ], + "min":[ + -195.72679138183594, + -2.288818359375e-05, + -170.52462768554688 + ], + "type":"VEC3" + }, + { + "bufferView":8813, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":8814, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8815, + "componentType":5126, + "count":559, + "max":[ + 2.095487594604492, + 14.731964111328125, + 7.3659987449646 + ], + "min":[ + -2.0954642295837402, + -8.249282836914062e-05, + -7.3660454750061035 + ], + "type":"VEC3" + }, + { + "bufferView":8816, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":8817, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":8818, + "componentType":5126, + "count":228, + "max":[ + 115.35124206542969, + 317.20355224609375, + 159.17068481445312 + ], + "min":[ + -115.35128021240234, + -6.103515625e-05, + -160.49081420898438 + ], + "type":"VEC3" + }, + { + "bufferView":8819, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":8820, + "componentType":5126, + "count":601, + "max":[ + 146.71078491210938, + 213.36920166015625, + 131.57958984375 + ], + "min":[ + -153.9162139892578, + 31.214935302734375, + -143.51089477539062 + ], + "type":"VEC3" + }, + { + "bufferView":8821, + "componentType":5126, + "count":601, + "type":"VEC3" + }, + { + "bufferView":8822, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8823, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51410675048828, + 43.590213775634766 + ], + "min":[ + -22.728515625, + -7.62939453125e-06, + -43.587894439697266 + ], + "type":"VEC3" + }, + { + "bufferView":8824, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":8825, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":8826, + "componentType":5126, + "count":209, + "max":[ + 13.2529296875, + 75.79594421386719, + 25.50537109375 + ], + "min":[ + -13.2509765625, + 0.00019535725004971027, + -25.4984130859375 + ], + "type":"VEC3" + }, + { + "bufferView":8827, + "componentType":5126, + "count":209, + "type":"VEC3" + }, + { + "bufferView":8828, + "componentType":5126, + "count":209, + "type":"VEC2" + }, + { + "bufferView":8829, + "componentType":5126, + "count":810, + "max":[ + 4.1318359375, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45801544189453 + ], + "type":"VEC3" + }, + { + "bufferView":8830, + "componentType":5126, + "count":810, + "type":"VEC3" + }, + { + "bufferView":8831, + "componentType":5126, + "count":810, + "type":"VEC2" + }, + { + "bufferView":8832, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":8833, + "componentType":5126, + "count":24, + "max":[ + 10.958148956298828, + 361.93402099609375, + 59.81034851074219 + ], + "min":[ + -10.95809555053711, + 0.0001220703125, + -59.81049346923828 + ], + "type":"VEC3" + }, + { + "bufferView":8834, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8835, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8836, + "componentType":5126, + "count":4, + "max":[ + 8.535845699952915e-05, + 904.087158203125, + 161.0859375 + ], + "min":[ + 3.671185550047085e-05, + 0, + -161.0859375 + ], + "type":"VEC3" + }, + { + "bufferView":8837, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8838, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8839, + "componentType":5126, + "count":123, + "max":[ + 17.02679443359375, + 3492.66357421875, + 17.0267333984375 + ], + "min":[ + -17.027099609375, + 0, + -17.026611328125 + ], + "type":"VEC3" + }, + { + "bufferView":8840, + "componentType":5126, + "count":123, + "type":"VEC3" + }, + { + "bufferView":8841, + "componentType":5126, + "count":123, + "type":"VEC2" + }, + { + "bufferView":8842, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8843, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8844, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8845, + "componentType":5126, + "count":586, + "max":[ + 146.29168701171875, + 100.67314147949219, + 152.28347778320312 + ], + "min":[ + -146.2877960205078, + 0.00011444091796875, + -152.28353881835938 + ], + "type":"VEC3" + }, + { + "bufferView":8846, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":8847, + "componentType":5126, + "count":162, + "max":[ + 20.428955078125, + 104.244140625, + 52.125 + ], + "min":[ + -20.4296875, + 0, + -52.1220703125 + ], + "type":"VEC3" + }, + { + "bufferView":8848, + "componentType":5126, + "count":162, + "type":"VEC3" + }, + { + "bufferView":8849, + "componentType":5126, + "count":162, + "type":"VEC2" + }, + { + "bufferView":8850, + "componentType":5126, + "count":136, + "max":[ + 69.570556640625, + 156.626220703125, + 824.2421875 + ], + "min":[ + -69.5689697265625, + -0.000244140625, + -824.24169921875 + ], + "type":"VEC3" + }, + { + "bufferView":8851, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":8852, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":8853, + "componentType":5126, + "count":342, + "max":[ + 13.56085205078125, + 272.6591796875, + 115.08643341064453 + ], + "min":[ + -13.560539245605469, + 42.486289978027344, + -115.08647155761719 + ], + "type":"VEC3" + }, + { + "bufferView":8854, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":8855, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":8856, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8857, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8858, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.929443359375, + 90.004150390625 + ], + "min":[ + -433.1201171875, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":8859, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":8860, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":8861, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8862, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8863, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8864, + "componentType":5126, + "count":572, + "max":[ + 191.5229949951172, + 196.87762451171875, + 166.88365173339844 + ], + "min":[ + -191.5255126953125, + 9.918212890625e-05, + -166.88357543945312 + ], + "type":"VEC3" + }, + { + "bufferView":8865, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":8866, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8867, + "componentType":5126, + "count":682, + "max":[ + 130.72265625, + 2974.83349609375, + 134.31640625 + ], + "min":[ + -130.72265625, + 0, + -134.31349182128906 + ], + "type":"VEC3" + }, + { + "bufferView":8868, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":8869, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":8870, + "componentType":5126, + "count":260, + "max":[ + 3.451836347579956, + 18.945335388183594, + 9.47275161743164 + ], + "min":[ + -3.451739549636841, + -0.00011920928955078125, + -9.472702980041504 + ], + "type":"VEC3" + }, + { + "bufferView":8871, + "componentType":5126, + "count":260, + "type":"VEC3" + }, + { + "bufferView":8872, + "componentType":5126, + "count":260, + "type":"VEC2" + }, + { + "bufferView":8873, + "componentType":5126, + "count":598, + "max":[ + 167.6999969482422, + 32.825321197509766, + 167.69944763183594 + ], + "min":[ + -167.6990203857422, + 1.52587890625e-05, + -167.69956970214844 + ], + "type":"VEC3" + }, + { + "bufferView":8874, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":8875, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8876, + "componentType":5126, + "count":578, + "max":[ + 206.177734375, + 211.3273468017578, + 179.5736846923828 + ], + "min":[ + -206.17726135253906, + 1.52587890625e-05, + -179.57379150390625 + ], + "type":"VEC3" + }, + { + "bufferView":8877, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":8878, + "componentType":5126, + "count":579, + "max":[ + 186.52565002441406, + 120.03093719482422, + 194.32701110839844 + ], + "min":[ + -186.5293426513672, + -0.0002288818359375, + -194.3273162841797 + ], + "type":"VEC3" + }, + { + "bufferView":8879, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":8880, + "componentType":5126, + "count":224, + "max":[ + 146.6806640625, + 281.02813720703125, + 131.18055725097656 + ], + "min":[ + -146.68443298339844, + 9.1552734375e-05, + -131.1803436279297 + ], + "type":"VEC3" + }, + { + "bufferView":8881, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":8882, + "componentType":5126, + "count":60, + "max":[ + 3.7874035835266113, + 13.693792343139648, + 6.472907543182373 + ], + "min":[ + -3.7876627445220947, + 0.00021409988403320312, + -6.4728617668151855 + ], + "type":"VEC3" + }, + { + "bufferView":8883, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":8884, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":8885, + "componentType":5126, + "count":590, + "max":[ + 147.21128845214844, + 99.99303436279297, + 149.48057556152344 + ], + "min":[ + -140.00314331054688, + 0.5985641479492188, + -149.48060607910156 + ], + "type":"VEC3" + }, + { + "bufferView":8886, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":8887, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8888, + "componentType":5126, + "count":560, + "max":[ + 192.92724609375, + 198.25942993164062, + 168.09732055664062 + ], + "min":[ + -192.9241180419922, + -0.0001068115234375, + -168.09739685058594 + ], + "type":"VEC3" + }, + { + "bufferView":8889, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":8890, + "componentType":5126, + "count":1420, + "max":[ + 433.12109375, + 367.92919921875, + 90.00634765625 + ], + "min":[ + -433.119140625, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":8891, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":8892, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":8893, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8894, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8895, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8896, + "componentType":5126, + "count":24, + "max":[ + 29.8388671875, + 320.322265625, + 219.6572265625 + ], + "min":[ + -29.83935546875, + 0, + -219.654296875 + ], + "type":"VEC3" + }, + { + "bufferView":8897, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8898, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8899, + "componentType":5126, + "count":682, + "max":[ + 134.31640625, + 2974.83349609375, + 130.721435546875 + ], + "min":[ + -134.3125, + 0, + -130.72096252441406 + ], + "type":"VEC3" + }, + { + "bufferView":8900, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":8901, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":8902, + "componentType":5126, + "count":51, + "max":[ + 123.61474609375, + 696.755859375, + 366.152587890625 + ], + "min":[ + -123.61376953125, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":8903, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":8904, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":8905, + "componentType":5126, + "count":7731, + "max":[ + 496.304931640625, + 427.4638671875, + 103.785888671875 + ], + "min":[ + -496.30810546875, + -0.0009765625, + -103.7879638671875 + ], + "type":"VEC3" + }, + { + "bufferView":8906, + "componentType":5126, + "count":7731, + "type":"VEC3" + }, + { + "bufferView":8907, + "componentType":5126, + "count":7731, + "type":"VEC2" + }, + { + "bufferView":8908, + "componentType":5126, + "count":572, + "max":[ + 197.12852478027344, + 32.82524108886719, + 197.12991333007812 + ], + "min":[ + -197.13157653808594, + 9.5367431640625e-05, + -197.13023376464844 + ], + "type":"VEC3" + }, + { + "bufferView":8909, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":8910, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8911, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.5140380859375, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":8912, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":8913, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":8914, + "componentType":5126, + "count":587, + "max":[ + 157.43902587890625, + 228.1142578125, + 141.363037109375 + ], + "min":[ + -164.6481170654297, + 33.45482635498047, + -153.29505920410156 + ], + "type":"VEC3" + }, + { + "bufferView":8915, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":8916, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8917, + "componentType":5126, + "count":92, + "max":[ + 22.05078125, + 77.63677978515625, + 30.45068359375 + ], + "min":[ + -22.05126953125, + -0.00042724609375, + -30.449951171875 + ], + "type":"VEC3" + }, + { + "bufferView":8918, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":8919, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":8920, + "componentType":5126, + "count":52, + "max":[ + 238.48193359375, + 483.89794921875, + 30.001953125 + ], + "min":[ + -238.4765625, + 0, + -29.9990234375 + ], + "type":"VEC3" + }, + { + "bufferView":8921, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":8922, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":8923, + "componentType":5126, + "count":595, + "max":[ + 152.995361328125, + 185.28057861328125, + 139.99122619628906 + ], + "min":[ + -152.99667358398438, + 9.1552734375e-05, + -139.99124145507812 + ], + "type":"VEC3" + }, + { + "bufferView":8924, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":8925, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8926, + "componentType":5126, + "count":594, + "max":[ + 152.99667358398438, + 185.28062438964844, + 139.9912109375 + ], + "min":[ + -152.99534606933594, + 3.0517578125e-05, + -139.99111938476562 + ], + "type":"VEC3" + }, + { + "bufferView":8927, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":8928, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8929, + "componentType":5126, + "count":48, + "max":[ + 289.0126037597656, + 233.9413299560547, + 11.697283744812012 + ], + "min":[ + -289.01556396484375, + -1.52587890625e-05, + -11.696887016296387 + ], + "type":"VEC3" + }, + { + "bufferView":8930, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":8931, + "componentType":5126, + "count":788, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45508575439453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":8932, + "componentType":5126, + "count":788, + "type":"VEC3" + }, + { + "bufferView":8933, + "componentType":5126, + "count":788, + "type":"VEC2" + }, + { + "bufferView":8934, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":8935, + "componentType":5126, + "count":208, + "max":[ + 13.25341796875, + 75.79608917236328, + 23.9541015625 + ], + "min":[ + -13.251953125, + -3.265915438532829e-05, + -23.9476318359375 + ], + "type":"VEC3" + }, + { + "bufferView":8936, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":8937, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":8938, + "componentType":5126, + "count":8532, + "max":[ + 178.59765625, + 1010.521240234375, + 103.78662109375 + ], + "min":[ + -178.599609375, + 12.338623046875, + -103.78662109375 + ], + "type":"VEC3" + }, + { + "bufferView":8939, + "componentType":5126, + "count":8532, + "type":"VEC3" + }, + { + "bufferView":8940, + "componentType":5126, + "count":8532, + "type":"VEC2" + }, + { + "bufferView":8941, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":8942, + "componentType":5126, + "count":24, + "max":[ + 83.761474609375, + 276.109375, + 88.3427734375 + ], + "min":[ + -83.761474609375, + 0, + -88.34375 + ], + "type":"VEC3" + }, + { + "bufferView":8943, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8944, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8945, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":8946, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":8947, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":8948, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":8949, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8950, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8951, + "componentType":5126, + "count":574, + "max":[ + 207.89891052246094, + 32.82524871826172, + 207.8981475830078 + ], + "min":[ + -207.89772033691406, + 0.0001068115234375, + -207.89852905273438 + ], + "type":"VEC3" + }, + { + "bufferView":8952, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":8953, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8954, + "componentType":5126, + "count":920, + "max":[ + 879.658203125, + 587.0332641601562, + 879.6582641601562 + ], + "min":[ + -879.66015625, + 3.0517578125e-05, + -879.6621704101562 + ], + "type":"VEC3" + }, + { + "bufferView":8955, + "componentType":5126, + "count":920, + "type":"VEC3" + }, + { + "bufferView":8956, + "componentType":5126, + "count":920, + "type":"VEC2" + }, + { + "bufferView":8957, + "componentType":5123, + "count":1440, + "type":"SCALAR" + }, + { + "bufferView":8958, + "componentType":5126, + "count":574, + "max":[ + 159.28961181640625, + 32.8253173828125, + 159.2907257080078 + ], + "min":[ + -159.29193115234375, + 1.52587890625e-05, + -159.2908477783203 + ], + "type":"VEC3" + }, + { + "bufferView":8959, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":8960, + "componentType":5126, + "count":162, + "max":[ + 22.728515625, + 64.23062133789062, + 543.3623046875 + ], + "min":[ + -22.73046875, + 9.5367431640625e-05, + -543.3623046875 + ], + "type":"VEC3" + }, + { + "bufferView":8961, + "componentType":5126, + "count":162, + "type":"VEC3" + }, + { + "bufferView":8962, + "componentType":5126, + "count":162, + "type":"VEC2" + }, + { + "bufferView":8963, + "componentType":5126, + "count":585, + "max":[ + 174.8749542236328, + 252.07574462890625, + 157.2623291015625 + ], + "min":[ + -182.08499145507812, + 37.095184326171875, + -169.19326782226562 + ], + "type":"VEC3" + }, + { + "bufferView":8964, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":8965, + "componentType":5126, + "count":204, + "max":[ + 1587.1123046875, + 2084.53515625, + 185.61898803710938 + ], + "min":[ + -1587.1123046875, + -0.000244140625, + -185.61886596679688 + ], + "type":"VEC3" + }, + { + "bufferView":8966, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":8967, + "componentType":5126, + "count":686, + "max":[ + 150.83389282226562, + 239.39569091796875, + 147.66860961914062 + ], + "min":[ + -150.8313751220703, + -2.288818359375e-05, + -147.6680908203125 + ], + "type":"VEC3" + }, + { + "bufferView":8968, + "componentType":5126, + "count":686, + "type":"VEC3" + }, + { + "bufferView":8969, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":8970, + "componentType":5126, + "count":125, + "max":[ + 7.721349716186523, + 15.442765235900879, + 3.8607020378112793 + ], + "min":[ + -7.721331596374512, + 8.296966552734375e-05, + -3.8606443405151367 + ], + "type":"VEC3" + }, + { + "bufferView":8971, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":8972, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":8973, + "componentType":5126, + "count":576, + "max":[ + 201.33372497558594, + 207.95718383789062, + 181.51971435546875 + ], + "min":[ + -201.3351287841797, + 1.4057083129882812, + -169.23928833007812 + ], + "type":"VEC3" + }, + { + "bufferView":8974, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":8975, + "componentType":5126, + "count":1420, + "max":[ + 244.466796875, + 367.92926025390625, + 384.58251953125 + ], + "min":[ + -244.46875, + -6.103515625e-05, + -384.5790710449219 + ], + "type":"VEC3" + }, + { + "bufferView":8976, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":8977, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":8978, + "componentType":5126, + "count":572, + "max":[ + 152.99537658691406, + 103.86900329589844, + 159.2907257080078 + ], + "min":[ + -152.9966583251953, + -7.62939453125e-05, + -159.2908477783203 + ], + "type":"VEC3" + }, + { + "bufferView":8979, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":8980, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8981, + "componentType":5126, + "count":584, + "max":[ + 163.30712890625, + 107.73419189453125, + 166.29798889160156 + ], + "min":[ + -156.09751892089844, + 0.6689376831054688, + -166.29811096191406 + ], + "type":"VEC3" + }, + { + "bufferView":8982, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":8983, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8984, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":8985, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":8986, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":8987, + "componentType":5126, + "count":578, + "max":[ + 178.90992736816406, + 32.825321197509766, + 178.9110565185547 + ], + "min":[ + -178.91232299804688, + 1.1444091796875e-05, + -178.9112548828125 + ], + "type":"VEC3" + }, + { + "bufferView":8988, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":8989, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":8990, + "componentType":5126, + "count":362, + "max":[ + 131.3284912109375, + 220.878662109375, + 138.186767578125 + ], + "min":[ + -131.32923889160156, + 0, + -138.186767578125 + ], + "type":"VEC3" + }, + { + "bufferView":8991, + "componentType":5126, + "count":362, + "type":"VEC3" + }, + { + "bufferView":8992, + "componentType":5126, + "count":580, + "max":[ + 162.09307861328125, + 167.85537719726562, + 141.3960723876953 + ], + "min":[ + -162.0943145751953, + -0.0001373291015625, + -141.39605712890625 + ], + "type":"VEC3" + }, + { + "bufferView":8993, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":8994, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.14453125, + 360.898193359375 + ], + "min":[ + -8.345703125, + 0.0001220703125, + -360.896484375 + ], + "type":"VEC3" + }, + { + "bufferView":8995, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":8996, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":8997, + "componentType":5126, + "count":24, + "max":[ + 584.6640625, + 50.00004577636719, + 110.00007629394531 + ], + "min":[ + -584.6640625, + 1.390804027323611e-05, + -110.00010681152344 + ], + "type":"VEC3" + }, + { + "bufferView":8998, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":8999, + "componentType":5126, + "count":586, + "max":[ + 170.01210021972656, + 235.48703002929688, + 158.18710327148438 + ], + "min":[ + -162.80514526367188, + 34.575042724609375, + -146.2549285888672 + ], + "type":"VEC3" + }, + { + "bufferView":9000, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":9001, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9002, + "componentType":5126, + "count":56, + "max":[ + 217.041015625, + 520.125, + 29.7984619140625 + ], + "min":[ + -217.04150390625, + 0, + -29.798583984375 + ], + "type":"VEC3" + }, + { + "bufferView":9003, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":9004, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":9005, + "componentType":5126, + "count":84, + "max":[ + 1104.4951171875, + 2852.559326171875, + 29.245634078979492 + ], + "min":[ + -1104.494140625, + 0, + -29.244178771972656 + ], + "type":"VEC3" + }, + { + "bufferView":9006, + "componentType":5126, + "count":84, + "type":"VEC3" + }, + { + "bufferView":9007, + "componentType":5126, + "count":84, + "type":"VEC2" + }, + { + "bufferView":9008, + "componentType":5123, + "count":126, + "type":"SCALAR" + }, + { + "bufferView":9009, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76666259765625, + 78.5859375 + ], + "min":[ + -46.2822265625, + 0, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":9010, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9011, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9012, + "componentType":5126, + "count":684, + "max":[ + 150.83128356933594, + 268.334716796875, + 147.66812133789062 + ], + "min":[ + -150.833984375, + 28.938980102539062, + -147.6685028076172 + ], + "type":"VEC3" + }, + { + "bufferView":9013, + "componentType":5126, + "count":684, + "type":"VEC3" + }, + { + "bufferView":9014, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":9015, + "componentType":5126, + "count":140, + "max":[ + 57.79643630981445, + 61.74175262451172, + 45.56761932373047 + ], + "min":[ + -57.7967414855957, + 6.4849853515625e-05, + -45.56759262084961 + ], + "type":"VEC3" + }, + { + "bufferView":9016, + "componentType":5126, + "count":140, + "type":"VEC3" + }, + { + "bufferView":9017, + "componentType":5126, + "count":140, + "type":"VEC2" + }, + { + "bufferView":9018, + "componentType":5126, + "count":24, + "max":[ + 46.29121780395508, + 2000, + 46.29121780395508 + ], + "min":[ + -46.29121780395508, + 0, + -46.29121780395508 + ], + "type":"VEC3" + }, + { + "bufferView":9019, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9020, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":9021, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":9022, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":9023, + "componentType":5126, + "count":138, + "max":[ + 49.03515625, + 126.6884765625, + 80.15283203125 + ], + "min":[ + -49.03515625, + 0, + -80.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":9024, + "componentType":5126, + "count":138, + "type":"VEC3" + }, + { + "bufferView":9025, + "componentType":5126, + "count":138, + "type":"VEC2" + }, + { + "bufferView":9026, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9027, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9028, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9029, + "componentType":5126, + "count":181, + "max":[ + 769.70947265625, + 113.194580078125, + 56.59765625 + ], + "min":[ + -769.7080078125, + 0, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":9030, + "componentType":5126, + "count":181, + "type":"VEC3" + }, + { + "bufferView":9031, + "componentType":5126, + "count":181, + "type":"VEC2" + }, + { + "bufferView":9032, + "componentType":5126, + "count":96, + "max":[ + 332.3906555175781, + 70.2734375, + 704.2722778320312 + ], + "min":[ + -332.39306640625, + 0, + -704.2722778320312 + ], + "type":"VEC3" + }, + { + "bufferView":9033, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":9034, + "componentType":5126, + "count":48, + "max":[ + 127.44287109375, + 625.6328125, + 391.7373046875 + ], + "min":[ + -127.4443359375, + 0, + -391.73779296875 + ], + "type":"VEC3" + }, + { + "bufferView":9035, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":9036, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":9037, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":9038, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":9039, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":9040, + "componentType":5126, + "count":265, + "max":[ + 174.40869140625, + 193.25439453125, + 169.0634765625 + ], + "min":[ + -174.408203125, + 0, + -169.0625 + ], + "type":"VEC3" + }, + { + "bufferView":9041, + "componentType":5126, + "count":265, + "type":"VEC3" + }, + { + "bufferView":9042, + "componentType":5126, + "count":265, + "type":"VEC2" + }, + { + "bufferView":9043, + "componentType":5126, + "count":226, + "max":[ + 115.14118194580078, + 343.64056396484375, + 159.38693237304688 + ], + "min":[ + -115.14126586914062, + 26.06207275390625, + -160.72274780273438 + ], + "type":"VEC3" + }, + { + "bufferView":9044, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":9045, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":9046, + "componentType":5126, + "count":580, + "max":[ + 178.90992736816406, + 185.68356323242188, + 162.10052490234375 + ], + "min":[ + -178.91232299804688, + 1.2440414428710938, + -149.82022094726562 + ], + "type":"VEC3" + }, + { + "bufferView":9047, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":9048, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9049, + "componentType":5126, + "count":589, + "max":[ + 146.2916717529297, + 177.46481323242188, + 133.87611389160156 + ], + "min":[ + -146.28781127929688, + 7.62939453125e-05, + -133.87661743164062 + ], + "type":"VEC3" + }, + { + "bufferView":9050, + "componentType":5126, + "count":589, + "type":"VEC3" + }, + { + "bufferView":9051, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9052, + "componentType":5126, + "count":578, + "max":[ + 172.19187927246094, + 248.38929748535156, + 154.8153839111328 + ], + "min":[ + -179.40296936035156, + 36.535125732421875, + -166.7482452392578 + ], + "type":"VEC3" + }, + { + "bufferView":9053, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":9054, + "componentType":5126, + "count":7749, + "max":[ + 103.786865234375, + 427.46484375, + 496.30615234375 + ], + "min":[ + -103.786865234375, + 0, + -496.30712890625 + ], + "type":"VEC3" + }, + { + "bufferView":9055, + "componentType":5126, + "count":7749, + "type":"VEC3" + }, + { + "bufferView":9056, + "componentType":5126, + "count":7749, + "type":"VEC2" + }, + { + "bufferView":9057, + "componentType":5126, + "count":587, + "max":[ + 157.43902587890625, + 228.1142578125, + 141.363037109375 + ], + "min":[ + -164.6481170654297, + 33.45482635498047, + -153.29505920410156 + ], + "type":"VEC3" + }, + { + "bufferView":9058, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":9059, + "componentType":5126, + "count":597, + "max":[ + 163.30712890625, + 226.2713165283203, + 152.07205200195312 + ], + "min":[ + -156.09750366210938, + 33.175079345703125, + -140.14013671875 + ], + "type":"VEC3" + }, + { + "bufferView":9060, + "componentType":5126, + "count":597, + "type":"VEC3" + }, + { + "bufferView":9061, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9062, + "componentType":5126, + "count":242, + "max":[ + 400.00958251953125, + 1934.1339111328125, + 603.1021728515625 + ], + "min":[ + -400.0078430175781, + 9.1552734375e-05, + -603.1011962890625 + ], + "type":"VEC3" + }, + { + "bufferView":9063, + "componentType":5126, + "count":242, + "type":"VEC3" + }, + { + "bufferView":9064, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":9065, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9066, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9067, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9068, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9069, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9070, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9071, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9072, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9073, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9074, + "componentType":5126, + "count":584, + "max":[ + 177.13890075683594, + 115.37523651123047, + 184.51686096191406 + ], + "min":[ + -177.1385040283203, + -0.000152587890625, + -184.51707458496094 + ], + "type":"VEC3" + }, + { + "bufferView":9075, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":9076, + "componentType":5126, + "count":24, + "max":[ + 14.306544303894043, + 434.9862060546875, + 371.9234924316406 + ], + "min":[ + -14.302728652954102, + -0.0001220703125, + -371.9234924316406 + ], + "type":"VEC3" + }, + { + "bufferView":9077, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9078, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9079, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":9080, + "componentType":5126, + "count":602, + "max":[ + 171.9025421142578, + 32.8253059387207, + 171.90379333496094 + ], + "min":[ + -171.90518188476562, + 3.814697265625e-05, + -171.90396118164062 + ], + "type":"VEC3" + }, + { + "bufferView":9081, + "componentType":5126, + "count":602, + "type":"VEC3" + }, + { + "bufferView":9082, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9083, + "componentType":5126, + "count":96, + "max":[ + 73.4791030883789, + 205.1731414794922, + 990.6383056640625 + ], + "min":[ + -73.47884368896484, + 0.000217437744140625, + -990.638671875 + ], + "type":"VEC3" + }, + { + "bufferView":9084, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":9085, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51416015625, + 22.7259578704834 + ], + "min":[ + -43.58984375, + 5.7220458984375e-05, + -22.729740142822266 + ], + "type":"VEC3" + }, + { + "bufferView":9086, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":9087, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":9088, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":9089, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":9090, + "componentType":5126, + "count":343, + "max":[ + 10.6767578125, + 283.877197265625, + 60.75051498413086 + ], + "min":[ + -10.6796875, + -1.52587890625e-05, + -60.74953842163086 + ], + "type":"VEC3" + }, + { + "bufferView":9091, + "componentType":5126, + "count":343, + "type":"VEC3" + }, + { + "bufferView":9092, + "componentType":5126, + "count":343, + "type":"VEC2" + }, + { + "bufferView":9093, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":9094, + "componentType":5126, + "count":578, + "max":[ + 177.50819396972656, + 184.29156494140625, + 160.88685607910156 + ], + "min":[ + -177.5111541748047, + 1.2340316772460938, + -148.6065216064453 + ], + "type":"VEC3" + }, + { + "bufferView":9095, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":9096, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9097, + "componentType":5126, + "count":112, + "max":[ + 80.63999938964844, + 1523.42626953125, + 80.63999938964844 + ], + "min":[ + -80.63999938964844, + 0, + -80.64000701904297 + ], + "type":"VEC3" + }, + { + "bufferView":9098, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":9099, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":9100, + "componentType":5126, + "count":584, + "max":[ + 169.08973693847656, + 111.53993225097656, + 176.10813903808594 + ], + "min":[ + -169.09249877929688, + -0.00023651123046875, + -176.1083221435547 + ], + "type":"VEC3" + }, + { + "bufferView":9101, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":9102, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9103, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9104, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9105, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68743896484375 + ], + "min":[ + -15.4755859375, + 0, + -381.68572998046875 + ], + "type":"VEC3" + }, + { + "bufferView":9106, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9107, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9108, + "componentType":5126, + "count":226, + "max":[ + 115.14126586914062, + 317.57843017578125, + 160.05490112304688 + ], + "min":[ + -115.14117431640625, + 1.52587890625e-05, + -160.0546875 + ], + "type":"VEC3" + }, + { + "bufferView":9109, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":9110, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":9111, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9112, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9113, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9114, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9115, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9116, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9117, + "componentType":5126, + "count":1420, + "max":[ + 244.466796875, + 367.92938232421875, + 384.578857421875 + ], + "min":[ + -244.46875, + 6.103515625e-05, + -384.5805358886719 + ], + "type":"VEC3" + }, + { + "bufferView":9118, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":9119, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":9120, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9121, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9122, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9123, + "componentType":5126, + "count":226, + "max":[ + 146.6844024658203, + 281.02813720703125, + 131.18032836914062 + ], + "min":[ + -146.6806182861328, + 9.1552734375e-05, + -131.18057250976562 + ], + "type":"VEC3" + }, + { + "bufferView":9124, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":9125, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":9126, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.58984375, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":9127, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":9128, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":9129, + "componentType":5126, + "count":88, + "max":[ + 30.2646484375, + 32.2474365234375, + 126.459716796875 + ], + "min":[ + -30.26513671875, + -0.0003662109375, + -126.45947265625 + ], + "type":"VEC3" + }, + { + "bufferView":9130, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":9131, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":9132, + "componentType":5126, + "count":929, + "max":[ + 50.15165710449219, + 4511.69775390625, + 79.23747253417969 + ], + "min":[ + -50.15164566040039, + 0.0001220703125, + -79.23274993896484 + ], + "type":"VEC3" + }, + { + "bufferView":9133, + "componentType":5126, + "count":929, + "type":"VEC3" + }, + { + "bufferView":9134, + "componentType":5126, + "count":929, + "type":"VEC2" + }, + { + "bufferView":9135, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9136, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9137, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9138, + "componentType":5126, + "count":138, + "max":[ + 49.03515625, + 126.6884765625, + 80.15283203125 + ], + "min":[ + -49.03515625, + 0, + -80.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":9139, + "componentType":5126, + "count":138, + "type":"VEC3" + }, + { + "bufferView":9140, + "componentType":5126, + "count":138, + "type":"VEC2" + }, + { + "bufferView":9141, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":9142, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9143, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9144, + "componentType":5126, + "count":76, + "max":[ + 278.86651611328125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8672180175781, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":9145, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":9146, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":9147, + "componentType":5126, + "count":160, + "max":[ + 29.7822265625, + 2198.236572265625, + 21.0791015625 + ], + "min":[ + -29.783203125, + -0.00018310546875, + -21.07794189453125 + ], + "type":"VEC3" + }, + { + "bufferView":9148, + "componentType":5126, + "count":160, + "type":"VEC3" + }, + { + "bufferView":9149, + "componentType":5126, + "count":160, + "type":"VEC2" + }, + { + "bufferView":9150, + "componentType":5123, + "count":336, + "type":"SCALAR" + }, + { + "bufferView":9151, + "componentType":5126, + "count":372, + "max":[ + 29.2431640625, + 2898.5703125, + 5033.95361328125 + ], + "min":[ + -29.2431640625, + 0.00146484375, + -5033.951171875 + ], + "type":"VEC3" + }, + { + "bufferView":9152, + "componentType":5126, + "count":372, + "type":"VEC3" + }, + { + "bufferView":9153, + "componentType":5126, + "count":372, + "type":"VEC2" + }, + { + "bufferView":9154, + "componentType":5126, + "count":1810, + "max":[ + 6.498496055603027, + 182.74732971191406, + 91.37369537353516 + ], + "min":[ + -6.498456954956055, + 1.5258823623298667e-05, + -91.37360382080078 + ], + "type":"VEC3" + }, + { + "bufferView":9155, + "componentType":5126, + "count":1810, + "type":"VEC3" + }, + { + "bufferView":9156, + "componentType":5126, + "count":1810, + "type":"VEC2" + }, + { + "bufferView":9157, + "componentType":5123, + "count":9708, + "type":"SCALAR" + }, + { + "bufferView":9158, + "componentType":5126, + "count":602, + "max":[ + 325.56951904296875, + 506.26312255859375, + 332.9397277832031 + ], + "min":[ + -325.5695495605469, + 1.6454315185546875, + -332.93988037109375 + ], + "type":"VEC3" + }, + { + "bufferView":9159, + "componentType":5126, + "count":602, + "type":"VEC3" + }, + { + "bufferView":9160, + "componentType":5126, + "count":4, + "max":[ + -0.001953125, + 2586.479248046875, + 698.884033203125 + ], + "min":[ + -0.001953125, + 0, + -698.885009765625 + ], + "type":"VEC3" + }, + { + "bufferView":9161, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9162, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9163, + "componentType":5126, + "count":204, + "max":[ + 25.650390625, + 2528.2978515625, + 2406.369873046875 + ], + "min":[ + -25.64892578125, + -0.0001220703125, + -2406.3701171875 + ], + "type":"VEC3" + }, + { + "bufferView":9164, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":9165, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":9166, + "componentType":5126, + "count":146, + "max":[ + 43.591796875, + 61.5142822265625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + 0.000118255615234375, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":9167, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":9168, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":9169, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":9170, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9171, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9172, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92938232421875, + 384.1416015625 + ], + "min":[ + -245.2333984375, + 0, + -384.1381530761719 + ], + "type":"VEC3" + }, + { + "bufferView":9173, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":9174, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":9175, + "componentType":5126, + "count":352, + "max":[ + 139.8673095703125, + 232.628662109375, + 138.3524169921875 + ], + "min":[ + -139.8668212890625, + 0, + -138.35205078125 + ], + "type":"VEC3" + }, + { + "bufferView":9176, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":9177, + "componentType":5126, + "count":574, + "max":[ + 197.13157653808594, + 202.40554809570312, + 171.7384490966797 + ], + "min":[ + -197.12852478027344, + 1.52587890625e-05, + -171.73831176757812 + ], + "type":"VEC3" + }, + { + "bufferView":9178, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":9179, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9180, + "componentType":5126, + "count":580, + "max":[ + 195.72679138183594, + 202.38870239257812, + 176.66534423828125 + ], + "min":[ + -195.7303924560547, + 1.3652496337890625, + -164.384033203125 + ], + "type":"VEC3" + }, + { + "bufferView":9181, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":9182, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9183, + "componentType":5126, + "count":590, + "max":[ + 138.66163635253906, + 202.30996704101562, + 124.24098205566406 + ], + "min":[ + -145.87022399902344, + 29.534652709960938, + -136.173828125 + ], + "type":"VEC3" + }, + { + "bufferView":9184, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":9185, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9186, + "componentType":5126, + "count":1333, + "max":[ + 8.997684478759766, + 48.001407623291016, + 23.8692626953125 + ], + "min":[ + -8.997526168823242, + -0.00012969970703125, + -23.869312286376953 + ], + "type":"VEC3" + }, + { + "bufferView":9187, + "componentType":5126, + "count":1333, + "type":"VEC3" + }, + { + "bufferView":9188, + "componentType":5126, + "count":1333, + "type":"VEC2" + }, + { + "bufferView":9189, + "componentType":5126, + "count":352, + "max":[ + 131.3284912109375, + 224.240234375, + 138.18701171875 + ], + "min":[ + -131.32923889160156, + 3.361572265625, + -138.1864013671875 + ], + "type":"VEC3" + }, + { + "bufferView":9190, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":9191, + "componentType":5126, + "count":576, + "max":[ + 180.24105834960938, + 259.4485168457031, + 162.15357971191406 + ], + "min":[ + -187.44895935058594, + 38.21539306640625, + -174.0858154296875 + ], + "type":"VEC3" + }, + { + "bufferView":9192, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":9193, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9194, + "componentType":5126, + "count":326, + "max":[ + 170.9052734375, + 157.00048828125, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.288818359375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":9195, + "componentType":5126, + "count":326, + "type":"VEC3" + }, + { + "bufferView":9196, + "componentType":5126, + "count":326, + "type":"VEC2" + }, + { + "bufferView":9197, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":9198, + "componentType":5126, + "count":810, + "max":[ + 4.130859375, + 90.58753204345703, + 34.45703887939453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":9199, + "componentType":5126, + "count":810, + "type":"VEC3" + }, + { + "bufferView":9200, + "componentType":5126, + "count":810, + "type":"VEC2" + }, + { + "bufferView":9201, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":9202, + "componentType":5126, + "count":815, + "max":[ + 4.1318359375, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45801544189453 + ], + "type":"VEC3" + }, + { + "bufferView":9203, + "componentType":5126, + "count":815, + "type":"VEC3" + }, + { + "bufferView":9204, + "componentType":5126, + "count":815, + "type":"VEC2" + }, + { + "bufferView":9205, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":9206, + "componentType":5126, + "count":202, + "max":[ + 322.19677734375, + 464.7861328125, + 22.96240234375 + ], + "min":[ + -322.1982421875, + 0, + -22.96435546875 + ], + "type":"VEC3" + }, + { + "bufferView":9207, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":9208, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":9209, + "componentType":5126, + "count":92, + "max":[ + 31.27215576171875, + 267.8876953125, + 51.744140625 + ], + "min":[ + -31.22821044921875, + 0, + -51.5830078125 + ], + "type":"VEC3" + }, + { + "bufferView":9210, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":9211, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":9212, + "componentType":5126, + "count":121, + "max":[ + 17.02679443359375, + 3492.66357421875, + 17.02667236328125 + ], + "min":[ + -17.02703857421875, + 0, + -17.02667236328125 + ], + "type":"VEC3" + }, + { + "bufferView":9213, + "componentType":5126, + "count":121, + "type":"VEC3" + }, + { + "bufferView":9214, + "componentType":5126, + "count":121, + "type":"VEC2" + }, + { + "bufferView":9215, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9216, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9217, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9218, + "componentType":5126, + "count":582, + "max":[ + 202.73544311523438, + 207.93344116210938, + 176.59315490722656 + ], + "min":[ + -202.73629760742188, + -4.57763671875e-05, + -176.59327697753906 + ], + "type":"VEC3" + }, + { + "bufferView":9219, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":9220, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":9221, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":9222, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":9223, + "componentType":5126, + "count":159, + "max":[ + 437.3818359375, + 12069.2890625, + 19.6142578125 + ], + "min":[ + -437.3740234375, + 0.000640869140625, + -19.6142578125 + ], + "type":"VEC3" + }, + { + "bufferView":9224, + "componentType":5126, + "count":159, + "type":"VEC3" + }, + { + "bufferView":9225, + "componentType":5126, + "count":159, + "type":"VEC2" + }, + { + "bufferView":9226, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":9227, + "componentType":5126, + "count":609, + "max":[ + 143.6085968017578, + 174.33847045898438, + 131.43057250976562 + ], + "min":[ + -143.6058349609375, + 4.57763671875e-05, + -131.43023681640625 + ], + "type":"VEC3" + }, + { + "bufferView":9228, + "componentType":5126, + "count":609, + "type":"VEC3" + }, + { + "bufferView":9229, + "componentType":5126, + "count":336, + "max":[ + 13.560546875, + 230.1728515625, + 115.08642578125 + ], + "min":[ + -13.560844421386719, + -3.814697265625e-05, + -115.08648681640625 + ], + "type":"VEC3" + }, + { + "bufferView":9230, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":9231, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":9232, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":9233, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9234, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9235, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9236, + "componentType":5126, + "count":590, + "max":[ + 190.12181091308594, + 32.825252532958984, + 190.12266540527344 + ], + "min":[ + -190.123779296875, + 9.5367431640625e-05, + -190.1229248046875 + ], + "type":"VEC3" + }, + { + "bufferView":9237, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":9238, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9239, + "componentType":5126, + "count":323, + "max":[ + 3.8607194423675537, + 15.442765235900879, + 7.721343517303467 + ], + "min":[ + -3.8606269359588623, + 8.296966552734375e-05, + -7.721337795257568 + ], + "type":"VEC3" + }, + { + "bufferView":9240, + "componentType":5126, + "count":323, + "type":"VEC3" + }, + { + "bufferView":9241, + "componentType":5126, + "count":323, + "type":"VEC2" + }, + { + "bufferView":9242, + "componentType":5126, + "count":590, + "max":[ + 166.2982635498047, + 32.825321197509766, + 166.29798889160156 + ], + "min":[ + -166.29783630371094, + 1.52587890625e-05, + -166.29811096191406 + ], + "type":"VEC3" + }, + { + "bufferView":9243, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":9244, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9245, + "componentType":5126, + "count":4062, + "max":[ + 37.94609069824219, + 117.86515808105469, + 219.26202392578125 + ], + "min":[ + -37.94620895385742, + -0.0001678466796875, + -219.26443481445312 + ], + "type":"VEC3" + }, + { + "bufferView":9246, + "componentType":5126, + "count":4062, + "type":"VEC3" + }, + { + "bufferView":9247, + "componentType":5126, + "count":4062, + "type":"VEC2" + }, + { + "bufferView":9248, + "componentType":5123, + "count":21444, + "type":"SCALAR" + }, + { + "bufferView":9249, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9250, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9251, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9252, + "componentType":5126, + "count":584, + "max":[ + 145.87022399902344, + 99.34772491455078, + 148.07913208007812 + ], + "min":[ + -138.66163635253906, + 0.592376708984375, + -148.0791473388672 + ], + "type":"VEC3" + }, + { + "bufferView":9253, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":9254, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9255, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":9256, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9257, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9258, + "componentType":5126, + "count":1420, + "max":[ + 245.234375, + 367.92926025390625, + 384.1416015625 + ], + "min":[ + -245.232421875, + -6.103515625e-05, + -384.1381530761719 + ], + "type":"VEC3" + }, + { + "bufferView":9259, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":9260, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":9261, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9262, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9263, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9264, + "componentType":5126, + "count":122, + "max":[ + 20.429443359375, + 104.244140625, + 52.125 + ], + "min":[ + -20.42919921875, + 0, + -52.1220703125 + ], + "type":"VEC3" + }, + { + "bufferView":9265, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":9266, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":9267, + "componentType":5126, + "count":1660, + "max":[ + 433.119140625, + 367.9293212890625, + 90.005859375 + ], + "min":[ + -433.12109375, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":9268, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":9269, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":9270, + "componentType":5126, + "count":51, + "max":[ + 127.44287109375, + 625.6328125, + 391.73779296875 + ], + "min":[ + -127.4443359375, + 0, + -391.737548828125 + ], + "type":"VEC3" + }, + { + "bufferView":9271, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":9272, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":9273, + "componentType":5126, + "count":578, + "max":[ + 195.72679138183594, + 32.82524108886719, + 195.7284698486328 + ], + "min":[ + -195.7303924560547, + 6.866455078125e-05, + -195.7287139892578 + ], + "type":"VEC3" + }, + { + "bufferView":9274, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":9275, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + 5.7220458984375e-05, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":9276, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":9277, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":9278, + "componentType":5126, + "count":24, + "max":[ + 52.86289978027344, + 92.6992416381836, + 95.74981689453125 + ], + "min":[ + -52.860870361328125, + 2.6702880859375e-05, + -95.74981689453125 + ], + "type":"VEC3" + }, + { + "bufferView":9279, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9280, + "componentType":5126, + "count":76, + "max":[ + 278.86651611328125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8672180175781, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":9281, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":9282, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":9283, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92926025390625, + 384.1391906738281 + ], + "min":[ + -245.2333984375, + 4.57763671875e-05, + -384.1406555175781 + ], + "type":"VEC3" + }, + { + "bufferView":9284, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":9285, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":9286, + "componentType":5126, + "count":12, + "max":[ + 8.345703125, + 341.14361572265625, + 360.897216796875 + ], + "min":[ + -8.34521484375, + -0.00054931640625, + -360.8974609375 + ], + "type":"VEC3" + }, + { + "bufferView":9287, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":9288, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":9289, + "componentType":5126, + "count":578, + "max":[ + 209.62005615234375, + 216.1865234375, + 188.6944580078125 + ], + "min":[ + -209.6181640625, + 1.4654083251953125, + -176.41403198242188 + ], + "type":"VEC3" + }, + { + "bufferView":9290, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":9291, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9292, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":9293, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9294, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9295, + "componentType":5126, + "count":582, + "max":[ + 197.5582275390625, + 283.2462158203125, + 177.94407653808594 + ], + "min":[ + -204.76707458496094, + 41.83033752441406, + -189.8762969970703 + ], + "type":"VEC3" + }, + { + "bufferView":9296, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":9297, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9298, + "componentType":5126, + "count":49, + "max":[ + 127.44677734375, + 625.6328125, + 391.73828125 + ], + "min":[ + -127.4404296875, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":9299, + "componentType":5126, + "count":49, + "type":"VEC3" + }, + { + "bufferView":9300, + "componentType":5126, + "count":49, + "type":"VEC2" + }, + { + "bufferView":9301, + "componentType":5126, + "count":24, + "max":[ + 10.93478012084961, + 361.93450927734375, + 56.17156982421875 + ], + "min":[ + -10.93482780456543, + 9.918212890625e-05, + -56.170249938964844 + ], + "type":"VEC3" + }, + { + "bufferView":9302, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9303, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9304, + "componentType":5126, + "count":577, + "max":[ + 177.1385040283203, + 213.41732788085938, + 162.00514221191406 + ], + "min":[ + -177.1388702392578, + -0.000152587890625, + -162.00439453125 + ], + "type":"VEC3" + }, + { + "bufferView":9305, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":9306, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9307, + "componentType":5126, + "count":132, + "max":[ + 80.153076171875, + 126.6884765625, + 49.03515625 + ], + "min":[ + -80.153076171875, + 0, + -49.03515625 + ], + "type":"VEC3" + }, + { + "bufferView":9308, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":9309, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":9310, + "componentType":5126, + "count":648, + "max":[ + 615.009765625, + 2510.925048828125, + 347.26611328125 + ], + "min":[ + -615.01171875, + 0, + -347.26611328125 + ], + "type":"VEC3" + }, + { + "bufferView":9311, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":9312, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":9313, + "componentType":5126, + "count":44, + "max":[ + 127.44482421875, + 625.6328125, + 391.7376403808594 + ], + "min":[ + -127.4423828125, + 0, + -391.7374572753906 + ], + "type":"VEC3" + }, + { + "bufferView":9314, + "componentType":5126, + "count":44, + "type":"VEC3" + }, + { + "bufferView":9315, + "componentType":5126, + "count":44, + "type":"VEC2" + }, + { + "bufferView":9316, + "componentType":5126, + "count":4, + "max":[ + 161.0859375, + 904.087158203125, + 1.2161650374764577e-05 + ], + "min":[ + -161.0859375, + 0, + -1.2161650374764577e-05 + ], + "type":"VEC3" + }, + { + "bufferView":9317, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9318, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9319, + "componentType":5126, + "count":50, + "max":[ + 391.73828125, + 625.6328125, + 127.44482421875 + ], + "min":[ + -391.7373046875, + 0, + -127.4423828125 + ], + "type":"VEC3" + }, + { + "bufferView":9320, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":9321, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":9322, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9323, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9324, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9325, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9326, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9327, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9328, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9329, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9330, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9331, + "componentType":5126, + "count":204, + "max":[ + 2702.69140625, + 2451.67333984375, + 175.64454650878906 + ], + "min":[ + -2702.69287109375, + 0, + -175.64471435546875 + ], + "type":"VEC3" + }, + { + "bufferView":9332, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":9333, + "componentType":5126, + "count":118, + "max":[ + 31.29062271118164, + 15.511119842529297, + 6.112213134765625 + ], + "min":[ + -31.290618896484375, + 4.1484832763671875e-05, + -6.112152099609375 + ], + "type":"VEC3" + }, + { + "bufferView":9334, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":9335, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":9336, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":9337, + "componentType":5126, + "count":618, + "max":[ + 23.86005401611328, + 172.07467651367188, + 56.7008056640625 + ], + "min":[ + -23.860069274902344, + 6.866455078125e-05, + -56.70079040527344 + ], + "type":"VEC3" + }, + { + "bufferView":9338, + "componentType":5126, + "count":618, + "type":"VEC3" + }, + { + "bufferView":9339, + "componentType":5126, + "count":618, + "type":"VEC2" + }, + { + "bufferView":9340, + "componentType":5123, + "count":1806, + "type":"SCALAR" + }, + { + "bufferView":9341, + "componentType":5126, + "count":578, + "max":[ + 202.73544311523438, + 209.34921264648438, + 182.73338317871094 + ], + "min":[ + -202.73629760742188, + 1.4157562255859375, + -170.45298767089844 + ], + "type":"VEC3" + }, + { + "bufferView":9342, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":9343, + "componentType":5126, + "count":577, + "max":[ + 183.84652709960938, + 118.57159423828125, + 191.52423095703125 + ], + "min":[ + -183.84349060058594, + 0.00011444091796875, + -191.5242919921875 + ], + "type":"VEC3" + }, + { + "bufferView":9344, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":9345, + "componentType":5126, + "count":589, + "max":[ + 151.65383911132812, + 103.22981262207031, + 157.8892822265625 + ], + "min":[ + -151.65567016601562, + -0.0001373291015625, + -157.8893585205078 + ], + "type":"VEC3" + }, + { + "bufferView":9346, + "componentType":5126, + "count":589, + "type":"VEC3" + }, + { + "bufferView":9347, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9348, + "componentType":5126, + "count":586, + "max":[ + 161.966064453125, + 107.0888671875, + 164.89654541015625 + ], + "min":[ + -154.7560272216797, + 0.6626358032226562, + -164.89666748046875 + ], + "type":"VEC3" + }, + { + "bufferView":9349, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":9350, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9351, + "componentType":5126, + "count":203, + "max":[ + 33.4022216796875, + 133.6083984375, + 66.80419921875 + ], + "min":[ + -33.40234375, + 0, + -66.80419921875 + ], + "type":"VEC3" + }, + { + "bufferView":9352, + "componentType":5126, + "count":203, + "type":"VEC3" + }, + { + "bufferView":9353, + "componentType":5126, + "count":203, + "type":"VEC2" + }, + { + "bufferView":9354, + "componentType":5126, + "count":603, + "max":[ + 158.36148071289062, + 191.53338623046875, + 144.88320922851562 + ], + "min":[ + -158.360595703125, + 0.0002288818359375, + -144.88308715820312 + ], + "type":"VEC3" + }, + { + "bufferView":9355, + "componentType":5126, + "count":603, + "type":"VEC3" + }, + { + "bufferView":9356, + "componentType":5126, + "count":562, + "max":[ + 177.50819396972656, + 32.82530975341797, + 177.5095977783203 + ], + "min":[ + -177.5111541748047, + 8.0108642578125e-05, + -177.5098114013672 + ], + "type":"VEC3" + }, + { + "bufferView":9357, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":9358, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9359, + "componentType":5126, + "count":564, + "max":[ + 192.92724609375, + 32.82526779174805, + 192.92555236816406 + ], + "min":[ + -192.9241180419922, + 6.4849853515625e-05, + -192.9258575439453 + ], + "type":"VEC3" + }, + { + "bufferView":9360, + "componentType":5126, + "count":564, + "type":"VEC3" + }, + { + "bufferView":9361, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9362, + "componentType":5126, + "count":682, + "max":[ + 134.31640625, + 2974.83349609375, + 130.72314453125 + ], + "min":[ + -134.31640625, + 0, + -130.72108459472656 + ], + "type":"VEC3" + }, + { + "bufferView":9363, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":9364, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":9365, + "componentType":5126, + "count":224, + "max":[ + 118.72100067138672, + 272.6591796875, + 115.08638763427734 + ], + "min":[ + -118.72062683105469, + 42.48628234863281, + -115.08647155761719 + ], + "type":"VEC3" + }, + { + "bufferView":9366, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":9367, + "componentType":5126, + "count":579, + "max":[ + 165.06910705566406, + 109.62261962890625, + 171.90379333496094 + ], + "min":[ + -165.06564331054688, + 0.000244140625, + -171.90396118164062 + ], + "type":"VEC3" + }, + { + "bufferView":9368, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":9369, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9370, + "componentType":5126, + "count":578, + "max":[ + 178.90992736816406, + 32.825321197509766, + 178.9110565185547 + ], + "min":[ + -178.91232299804688, + 1.1444091796875e-05, + -178.9112548828125 + ], + "type":"VEC3" + }, + { + "bufferView":9371, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":9372, + "componentType":5126, + "count":8046, + "max":[ + 103.78759765625, + 1010.39453125, + 180.1181640625 + ], + "min":[ + -103.78662109375, + 12.32421875, + -180.12109375 + ], + "type":"VEC3" + }, + { + "bufferView":9373, + "componentType":5126, + "count":8046, + "type":"VEC3" + }, + { + "bufferView":9374, + "componentType":5126, + "count":8046, + "type":"VEC2" + }, + { + "bufferView":9375, + "componentType":5126, + "count":189, + "max":[ + 13.25341796875, + 75.79529571533203, + 23.9549560546875 + ], + "min":[ + -13.2509765625, + 4.2061321437358856e-05, + -23.9466552734375 + ], + "type":"VEC3" + }, + { + "bufferView":9376, + "componentType":5126, + "count":189, + "type":"VEC3" + }, + { + "bufferView":9377, + "componentType":5126, + "count":189, + "type":"VEC2" + }, + { + "bufferView":9378, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":9379, + "componentType":5126, + "count":586, + "max":[ + 185.1880340576172, + 119.22972106933594, + 192.92567443847656 + ], + "min":[ + -185.18443298339844, + -4.57763671875e-05, + -192.9257354736328 + ], + "type":"VEC3" + }, + { + "bufferView":9380, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":9381, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9382, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9383, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9384, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9385, + "componentType":5126, + "count":24, + "max":[ + 584.6641235351562, + 50.00006103515625, + 253.7422637939453 + ], + "min":[ + -584.6640625, + -1.660953785176389e-05, + -253.74383544921875 + ], + "type":"VEC3" + }, + { + "bufferView":9386, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9387, + "componentType":5126, + "count":336, + "max":[ + 115.14116668701172, + 210.2412567138672, + 69.11679077148438 + ], + "min":[ + -115.14129638671875, + -7.62939453125e-05, + -69.11602783203125 + ], + "type":"VEC3" + }, + { + "bufferView":9388, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":9389, + "componentType":5126, + "count":112, + "max":[ + 116.97066497802734, + 2149.27001953125, + 116.97049713134766 + ], + "min":[ + -116.97066497802734, + 0, + -116.97115325927734 + ], + "type":"VEC3" + }, + { + "bufferView":9390, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":9391, + "componentType":5126, + "count":72, + "max":[ + 422.67730712890625, + 629.1729125976562, + 222.1094512939453 + ], + "min":[ + -422.6772155761719, + 6.103515625e-05, + -222.10919189453125 + ], + "type":"VEC3" + }, + { + "bufferView":9392, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":9393, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 463.990234375 + ], + "min":[ + -110.0000228881836, + 0, + -463.990234375 + ], + "type":"VEC3" + }, + { + "bufferView":9394, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9395, + "componentType":5126, + "count":162, + "max":[ + 228.90869140625, + 55.46875, + 27.736328125 + ], + "min":[ + -228.907470703125, + 0, + -27.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":9396, + "componentType":5126, + "count":162, + "type":"VEC3" + }, + { + "bufferView":9397, + "componentType":5126, + "count":162, + "type":"VEC2" + }, + { + "bufferView":9398, + "componentType":5126, + "count":588, + "max":[ + 181.71339416503906, + 188.4677276611328, + 164.52842712402344 + ], + "min":[ + -181.71473693847656, + 1.26416015625, + -152.2471160888672 + ], + "type":"VEC3" + }, + { + "bufferView":9399, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":9400, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9401, + "componentType":5126, + "count":119, + "max":[ + 49.03564453125, + 162.82470703125, + 58.8193359375 + ], + "min":[ + -49.03466796875, + 6.845458984375, + -58.822265625 + ], + "type":"VEC3" + }, + { + "bufferView":9402, + "componentType":5126, + "count":119, + "type":"VEC3" + }, + { + "bufferView":9403, + "componentType":5126, + "count":119, + "type":"VEC2" + }, + { + "bufferView":9404, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":9405, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9406, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9407, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4544677734375, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":9408, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":9409, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":9410, + "componentType":5126, + "count":96, + "max":[ + 367.2461242675781, + 70.27349853515625, + 704.2722778320312 + ], + "min":[ + -367.2457275390625, + 6.103515625e-05, + -704.2723388671875 + ], + "type":"VEC3" + }, + { + "bufferView":9411, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":9412, + "componentType":5126, + "count":51, + "max":[ + 123.61328125, + 696.755859375, + 366.15283203125 + ], + "min":[ + -123.615234375, + 0, + -366.152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9413, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":9414, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":9415, + "componentType":5126, + "count":1328, + "max":[ + 4857.8447265625, + 790.028564453125, + 49.98193359375 + ], + "min":[ + -4857.8466796875, + -0.000244140625, + -49.982421875 + ], + "type":"VEC3" + }, + { + "bufferView":9416, + "componentType":5126, + "count":1328, + "type":"VEC3" + }, + { + "bufferView":9417, + "componentType":5126, + "count":1328, + "type":"VEC2" + }, + { + "bufferView":9418, + "componentType":5123, + "count":2520, + "type":"SCALAR" + }, + { + "bufferView":9419, + "componentType":5126, + "count":560, + "max":[ + 192.9241180419922, + 199.60464477539062, + 161.95669555664062 + ], + "min":[ + -192.92724609375, + 1.3451004028320312, + -174.23802185058594 + ], + "type":"VEC3" + }, + { + "bufferView":9420, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":9421, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9422, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.58544921875 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":9423, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9424, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9425, + "componentType":5126, + "count":576, + "max":[ + 206.17726135253906, + 32.82523727416992, + 206.1773223876953 + ], + "min":[ + -206.177734375, + 0.0001373291015625, + -206.17767333984375 + ], + "type":"VEC3" + }, + { + "bufferView":9426, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":9427, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9428, + "componentType":5126, + "count":24, + "max":[ + 29.8388671875, + 320.322265625, + 219.6572265625 + ], + "min":[ + -29.83935546875, + 0, + -219.654296875 + ], + "type":"VEC3" + }, + { + "bufferView":9429, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9430, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9431, + "componentType":5126, + "count":352, + "max":[ + 139.86614990234375, + 261.595458984375, + 138.3526611328125 + ], + "min":[ + -139.86798095703125, + 28.966552734375, + -138.3516845703125 + ], + "type":"VEC3" + }, + { + "bufferView":9432, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":9433, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":9434, + "componentType":5126, + "count":600, + "max":[ + 181.71339416503906, + 32.82525634765625, + 181.7140655517578 + ], + "min":[ + -181.71473693847656, + 6.866455078125e-05, + -181.71408081054688 + ], + "type":"VEC3" + }, + { + "bufferView":9435, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":9436, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9437, + "componentType":5126, + "count":152, + "max":[ + 69.57080078125, + 156.62646484375, + 586.318359375 + ], + "min":[ + -69.5693359375, + 0, + -586.31787109375 + ], + "type":"VEC3" + }, + { + "bufferView":9438, + "componentType":5126, + "count":152, + "type":"VEC3" + }, + { + "bufferView":9439, + "componentType":5126, + "count":152, + "type":"VEC2" + }, + { + "bufferView":9440, + "componentType":5126, + "count":621, + "max":[ + 144.9501190185547, + 175.90155029296875, + 132.65309143066406 + ], + "min":[ + -144.9468231201172, + 0.0001678466796875, + -132.65365600585938 + ], + "type":"VEC3" + }, + { + "bufferView":9441, + "componentType":5126, + "count":621, + "type":"VEC3" + }, + { + "bufferView":9442, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9443, + "componentType":5126, + "count":598, + "max":[ + 156.6021270751953, + 217.05543518066406, + 145.95697021484375 + ], + "min":[ + -149.389892578125, + 31.774993896484375, + -134.02545166015625 + ], + "type":"VEC3" + }, + { + "bufferView":9444, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":9445, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9446, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9447, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9448, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9449, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9450, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9451, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9452, + "componentType":5126, + "count":1736, + "max":[ + 12.500040054321289, + 418.94512939453125, + 581.875 + ], + "min":[ + -12.500024795532227, + -4.76837158203125e-07, + -581.875 + ], + "type":"VEC3" + }, + { + "bufferView":9453, + "componentType":5126, + "count":1736, + "type":"VEC3" + }, + { + "bufferView":9454, + "componentType":5123, + "count":4956, + "type":"SCALAR" + }, + { + "bufferView":9455, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51410675048828, + 43.588871002197266 + ], + "min":[ + -22.728515625, + -7.62939453125e-06, + -43.589359283447266 + ], + "type":"VEC3" + }, + { + "bufferView":9456, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":9457, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":9458, + "componentType":5126, + "count":96, + "max":[ + 820.9476318359375, + 205.17288208007812, + 73.47864532470703 + ], + "min":[ + -820.9443359375, + 7.62939453125e-06, + -73.4786376953125 + ], + "type":"VEC3" + }, + { + "bufferView":9459, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":9460, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":9461, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":9462, + "componentType":5126, + "count":1020, + "max":[ + 831.5458984375, + 116.2335205078125, + 746.103759765625 + ], + "min":[ + -831.5458984375, + 0.000118255615234375, + -746.101318359375 + ], + "type":"VEC3" + }, + { + "bufferView":9463, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":9464, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":9465, + "componentType":5126, + "count":24, + "max":[ + 83.760986328125, + 276.109375, + 88.3438720703125 + ], + "min":[ + -83.76171875, + 0, + -88.34375 + ], + "type":"VEC3" + }, + { + "bufferView":9466, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9467, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9468, + "componentType":5126, + "count":573, + "max":[ + 173.53343200683594, + 250.23223876953125, + 156.03887939453125 + ], + "min":[ + -180.7439727783203, + 36.81480407714844, + -167.97076416015625 + ], + "type":"VEC3" + }, + { + "bufferView":9469, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":9470, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9471, + "componentType":5126, + "count":343, + "max":[ + 170.90625, + 157.00146484375, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":9472, + "componentType":5126, + "count":343, + "type":"VEC3" + }, + { + "bufferView":9473, + "componentType":5126, + "count":343, + "type":"VEC2" + }, + { + "bufferView":9474, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":9475, + "componentType":5126, + "count":340, + "max":[ + 45.85676574707031, + 227.53482055664062, + 115.35122680664062 + ], + "min":[ + -45.858154296875, + -7.62939453125e-06, + -115.35122680664062 + ], + "type":"VEC3" + }, + { + "bufferView":9476, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":9477, + "componentType":5126, + "count":308, + "max":[ + 10.6767578125, + 283.877197265625, + 60.75002670288086 + ], + "min":[ + -10.6796875, + -1.52587890625e-05, + -60.75002670288086 + ], + "type":"VEC3" + }, + { + "bufferView":9478, + "componentType":5126, + "count":308, + "type":"VEC3" + }, + { + "bufferView":9479, + "componentType":5126, + "count":308, + "type":"VEC2" + }, + { + "bufferView":9480, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":9481, + "componentType":5126, + "count":584, + "max":[ + 167.7482452392578, + 110.9007568359375, + 174.7067108154297 + ], + "min":[ + -167.75155639648438, + 3.0517578125e-05, + -174.70689392089844 + ], + "type":"VEC3" + }, + { + "bufferView":9482, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":9483, + "componentType":5126, + "count":96, + "max":[ + 332.39007568359375, + 1922.7802734375, + 35.13714599609375 + ], + "min":[ + -332.3934631347656, + -0.0001220703125, + -35.13677978515625 + ], + "type":"VEC3" + }, + { + "bufferView":9484, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":9485, + "componentType":5126, + "count":800, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45508575439453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":9486, + "componentType":5126, + "count":800, + "type":"VEC3" + }, + { + "bufferView":9487, + "componentType":5126, + "count":800, + "type":"VEC2" + }, + { + "bufferView":9488, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.456298828125, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.0006103515625, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":9489, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":9490, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":9491, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":9492, + "componentType":5126, + "count":582, + "max":[ + 201.33372497558594, + 32.82526779174805, + 201.33450317382812 + ], + "min":[ + -201.3351287841797, + 9.1552734375e-05, + -201.33438110351562 + ], + "type":"VEC3" + }, + { + "bufferView":9493, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":9494, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9495, + "componentType":5126, + "count":187, + "max":[ + 769.70947265625, + 113.194580078125, + 56.596923828125 + ], + "min":[ + -769.7080078125, + 6.103515625e-05, + -56.596923828125 + ], + "type":"VEC3" + }, + { + "bufferView":9496, + "componentType":5126, + "count":187, + "type":"VEC3" + }, + { + "bufferView":9497, + "componentType":5126, + "count":187, + "type":"VEC2" + }, + { + "bufferView":9498, + "componentType":5126, + "count":574, + "max":[ + 171.9025421142578, + 178.72332763671875, + 143.75128173828125 + ], + "min":[ + -171.90518188476562, + 1.193695068359375, + -156.03256225585938 + ], + "type":"VEC3" + }, + { + "bufferView":9499, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":9500, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9501, + "componentType":5126, + "count":562, + "max":[ + 199.93392944335938, + 32.82522201538086, + 199.9328155517578 + ], + "min":[ + -199.93199157714844, + 9.5367431640625e-05, + -199.93313598632812 + ], + "type":"VEC3" + }, + { + "bufferView":9502, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":9503, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9504, + "componentType":5126, + "count":528, + "max":[ + 722.72265625, + 2637.3974609375, + 19.80198860168457 + ], + "min":[ + -722.72265625, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":9505, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":9506, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":9507, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":9508, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9509, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9510, + "componentType":5126, + "count":2453, + "max":[ + 50.151649475097656, + 4511.697265625, + 79.23255920410156 + ], + "min":[ + -50.151641845703125, + 0, + -79.23702239990234 + ], + "type":"VEC3" + }, + { + "bufferView":9511, + "componentType":5126, + "count":2453, + "type":"VEC3" + }, + { + "bufferView":9512, + "componentType":5126, + "count":2453, + "type":"VEC2" + }, + { + "bufferView":9513, + "componentType":5126, + "count":1043, + "max":[ + 125.22607421875, + 76.19921875, + 90.10888671875 + ], + "min":[ + -125.22607421875, + 0, + -90.109375 + ], + "type":"VEC3" + }, + { + "bufferView":9514, + "componentType":5126, + "count":1043, + "type":"VEC3" + }, + { + "bufferView":9515, + "componentType":5126, + "count":1043, + "type":"VEC2" + }, + { + "bufferView":9516, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":9517, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9518, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9519, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9520, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9521, + "componentType":5126, + "count":96, + "max":[ + 34.85283660888672, + 1922.78076171875, + 633.9986572265625 + ], + "min":[ + -34.855621337890625, + 0, + -633.9988403320312 + ], + "type":"VEC3" + }, + { + "bufferView":9522, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":9523, + "componentType":5126, + "count":807, + "max":[ + 4.1328125, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":9524, + "componentType":5126, + "count":807, + "type":"VEC3" + }, + { + "bufferView":9525, + "componentType":5126, + "count":807, + "type":"VEC2" + }, + { + "bufferView":9526, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":9527, + "componentType":5126, + "count":579, + "max":[ + 163.72756958007812, + 197.78558349609375, + 149.77484130859375 + ], + "min":[ + -163.72467041015625, + -0.00018310546875, + -149.7753143310547 + ], + "type":"VEC3" + }, + { + "bufferView":9528, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":9529, + "componentType":5126, + "count":119, + "max":[ + 49.03564453125, + 162.82470703125, + 58.8193359375 + ], + "min":[ + -49.03466796875, + 6.845458984375, + -58.822265625 + ], + "type":"VEC3" + }, + { + "bufferView":9530, + "componentType":5126, + "count":119, + "type":"VEC3" + }, + { + "bufferView":9531, + "componentType":5126, + "count":119, + "type":"VEC2" + }, + { + "bufferView":9532, + "componentType":5126, + "count":586, + "max":[ + 169.10015869140625, + 32.8251953125, + 169.10089111328125 + ], + "min":[ + -169.1017303466797, + 3.814697265625e-05, + -169.10105895996094 + ], + "type":"VEC3" + }, + { + "bufferView":9533, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":9534, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9535, + "componentType":5126, + "count":164, + "max":[ + 63.8212890625, + 14332.2607421875, + 524.54736328125 + ], + "min":[ + -63.8173828125, + 0.0010223388671875, + -524.546142578125 + ], + "type":"VEC3" + }, + { + "bufferView":9536, + "componentType":5126, + "count":164, + "type":"VEC3" + }, + { + "bufferView":9537, + "componentType":5126, + "count":164, + "type":"VEC2" + }, + { + "bufferView":9538, + "componentType":5126, + "count":119, + "max":[ + 31.29312515258789, + 15.510947227478027, + 6.503013610839844 + ], + "min":[ + -31.293148040771484, + -2.09808349609375e-05, + -6.5025787353515625 + ], + "type":"VEC3" + }, + { + "bufferView":9539, + "componentType":5126, + "count":119, + "type":"VEC3" + }, + { + "bufferView":9540, + "componentType":5126, + "count":119, + "type":"VEC2" + }, + { + "bufferView":9541, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":9542, + "componentType":5126, + "count":71, + "max":[ + 3.7875263690948486, + 13.413311004638672, + 4.245928764343262 + ], + "min":[ + -3.787546396255493, + 0.00010930931603070349, + -4.2459025382995605 + ], + "type":"VEC3" + }, + { + "bufferView":9543, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":9544, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":9545, + "componentType":5123, + "count":108, + "type":"SCALAR" + }, + { + "bufferView":9546, + "componentType":5126, + "count":340, + "max":[ + 139.86639404296875, + 178.644775390625, + 131.32904052734375 + ], + "min":[ + -139.86773681640625, + 0, + -131.3286590576172 + ], + "type":"VEC3" + }, + { + "bufferView":9547, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":9548, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9549, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9550, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9551, + "componentType":5126, + "count":576, + "max":[ + 157.88787841796875, + 32.825321197509766, + 157.8892822265625 + ], + "min":[ + -157.89076232910156, + 1.52587890625e-05, + -157.8893585205078 + ], + "type":"VEC3" + }, + { + "bufferView":9552, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":9553, + "componentType":5126, + "count":120, + "max":[ + 2752.00341796875, + 2819.531005859375, + 2516.54052734375 + ], + "min":[ + -2752.001953125, + -0.0001220703125, + -2516.541015625 + ], + "type":"VEC3" + }, + { + "bufferView":9554, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":9555, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":9556, + "componentType":5126, + "count":682, + "max":[ + 134.3154296875, + 2974.83349609375, + 130.719482421875 + ], + "min":[ + -134.3154296875, + 0, + -130.72291564941406 + ], + "type":"VEC3" + }, + { + "bufferView":9557, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":9558, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":9559, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":9560, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":9561, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92926025390625, + 384.57861328125 + ], + "min":[ + -244.4677734375, + 0, + -384.5820007324219 + ], + "type":"VEC3" + }, + { + "bufferView":9562, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":9563, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":9564, + "componentType":5126, + "count":224, + "max":[ + 147.06719970703125, + 323.5045166015625, + 131.37338256835938 + ], + "min":[ + -146.29783630371094, + 42.476348876953125, + -130.9875946044922 + ], + "type":"VEC3" + }, + { + "bufferView":9565, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":9566, + "componentType":5126, + "count":577, + "max":[ + 185.18801879882812, + 222.7963409423828, + 169.34255981445312 + ], + "min":[ + -185.1844482421875, + 3.0517578125e-05, + -169.34286499023438 + ], + "type":"VEC3" + }, + { + "bufferView":9567, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":9568, + "componentType":5126, + "count":577, + "max":[ + 154.3369140625, + 104.50856018066406, + 160.6921844482422 + ], + "min":[ + -154.33766174316406, + 0.00014495849609375, + -160.69229125976562 + ], + "type":"VEC3" + }, + { + "bufferView":9569, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":9570, + "componentType":5126, + "count":60, + "max":[ + 3.787522077560425, + 14.031469345092773, + 5.548454284667969 + ], + "min":[ + -3.7875452041625977, + -3.24249267578125e-05, + -5.548465728759766 + ], + "type":"VEC3" + }, + { + "bufferView":9571, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":9572, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":9573, + "componentType":5126, + "count":138, + "max":[ + 49.03515625, + 126.6884765625, + 80.15283203125 + ], + "min":[ + -49.03515625, + 0, + -80.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":9574, + "componentType":5126, + "count":138, + "type":"VEC3" + }, + { + "bufferView":9575, + "componentType":5126, + "count":138, + "type":"VEC2" + }, + { + "bufferView":9576, + "componentType":5126, + "count":588, + "max":[ + 156.4861602783203, + 32.8253173828125, + 156.4878387451172 + ], + "min":[ + -156.4895782470703, + 3.4332275390625e-05, + -156.48789978027344 + ], + "type":"VEC3" + }, + { + "bufferView":9577, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":9578, + "componentType":5126, + "count":548, + "max":[ + 7.779107093811035, + 21.312030792236328, + 10.655908584594727 + ], + "min":[ + -7.778767108917236, + 0.00021648406982421875, + -10.65590763092041 + ], + "type":"VEC3" + }, + { + "bufferView":9579, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":9580, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":9581, + "componentType":5126, + "count":224, + "max":[ + 118.72103118896484, + 230.17282104492188, + 115.0865478515625 + ], + "min":[ + -118.72062683105469, + -2.288818359375e-05, + -115.08647155761719 + ], + "type":"VEC3" + }, + { + "bufferView":9582, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":9583, + "componentType":5126, + "count":567, + "max":[ + 178.89952087402344, + 257.6051025390625, + 160.9306640625 + ], + "min":[ + -186.1079864501953, + 37.93511962890625, + -172.86279296875 + ], + "type":"VEC3" + }, + { + "bufferView":9584, + "componentType":5126, + "count":567, + "type":"VEC3" + }, + { + "bufferView":9585, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9586, + "componentType":5126, + "count":813, + "max":[ + 4.130859375, + 90.58740997314453, + 34.45703887939453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":9587, + "componentType":5126, + "count":813, + "type":"VEC3" + }, + { + "bufferView":9588, + "componentType":5126, + "count":813, + "type":"VEC2" + }, + { + "bufferView":9589, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":9590, + "componentType":5126, + "count":72, + "max":[ + 771.3447875976562, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.34619140625, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":9591, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":9592, + "componentType":5126, + "count":112, + "max":[ + 34.857215881347656, + 1878.33447265625, + 483.718017578125 + ], + "min":[ + -34.857261657714844, + 0.0001220703125, + -483.7181701660156 + ], + "type":"VEC3" + }, + { + "bufferView":9593, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":9594, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":9595, + "componentType":5126, + "count":582, + "max":[ + 198.53025817871094, + 203.7875518798828, + 172.95205688476562 + ], + "min":[ + -198.53277587890625, + 6.866455078125e-05, + -172.95220947265625 + ], + "type":"VEC3" + }, + { + "bufferView":9596, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":9597, + "componentType":5126, + "count":574, + "max":[ + 206.177734375, + 32.82525634765625, + 206.1773223876953 + ], + "min":[ + -206.17726135253906, + 0.0001068115234375, + -206.17767333984375 + ], + "type":"VEC3" + }, + { + "bufferView":9598, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":9599, + "componentType":5126, + "count":76, + "max":[ + 278.86651611328125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8672180175781, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":9600, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":9601, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":9602, + "componentType":5126, + "count":576, + "max":[ + 176.7209930419922, + 114.1850814819336, + 180.3125 + ], + "min":[ + -169.50885009765625, + 0.7273635864257812, + -180.31268310546875 + ], + "type":"VEC3" + }, + { + "bufferView":9603, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":9604, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9605, + "componentType":5126, + "count":584, + "max":[ + 154.33689880371094, + 186.84385681152344, + 141.21417236328125 + ], + "min":[ + -154.33767700195312, + 0.0001983642578125, + -141.21426391601562 + ], + "type":"VEC3" + }, + { + "bufferView":9606, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":9607, + "componentType":5126, + "count":129, + "max":[ + 11.82037353515625, + 20, + 318.7106628417969 + ], + "min":[ + -11.81964111328125, + 0.00048828125, + -318.7106018066406 + ], + "type":"VEC3" + }, + { + "bufferView":9608, + "componentType":5126, + "count":129, + "type":"VEC3" + }, + { + "bufferView":9609, + "componentType":5126, + "count":129, + "type":"VEC2" + }, + { + "bufferView":9610, + "componentType":5126, + "count":24, + "max":[ + 110.00023651123047, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534163448028266, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":9611, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9612, + "componentType":5126, + "count":596, + "max":[ + 175.79734802246094, + 114.73617553710938, + 183.1154022216797 + ], + "min":[ + -175.79750061035156, + 6.103515625e-05, + -183.11566162109375 + ], + "type":"VEC3" + }, + { + "bufferView":9613, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":9614, + "componentType":5126, + "count":578, + "max":[ + 178.90992736816406, + 185.68356323242188, + 162.10072326660156 + ], + "min":[ + -178.91232299804688, + 1.2440414428710938, + -149.8200225830078 + ], + "type":"VEC3" + }, + { + "bufferView":9615, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":9616, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9617, + "componentType":5126, + "count":562, + "max":[ + 204.45657348632812, + 209.63050842285156, + 178.08338928222656 + ], + "min":[ + -204.45677185058594, + 0.0001220703125, + -178.08355712890625 + ], + "type":"VEC3" + }, + { + "bufferView":9618, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":9619, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":9620, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":9621, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":9622, + "componentType":5126, + "count":224, + "max":[ + 118.72061157226562, + 230.17283630371094, + 115.08639526367188 + ], + "min":[ + -118.72100067138672, + -3.814697265625e-05, + -115.08649444580078 + ], + "type":"VEC3" + }, + { + "bufferView":9623, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":9624, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":9625, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9626, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9627, + "componentType":5126, + "count":484, + "max":[ + 80.27381896972656, + 265.1298828125, + 12.50005054473877 + ], + "min":[ + -80.27381896972656, + 7.82012939453125e-05, + -12.500009536743164 + ], + "type":"VEC3" + }, + { + "bufferView":9628, + "componentType":5126, + "count":484, + "type":"VEC3" + }, + { + "bufferView":9629, + "componentType":5123, + "count":1392, + "type":"SCALAR" + }, + { + "bufferView":9630, + "componentType":5126, + "count":332, + "max":[ + 170.9052734375, + 157.000244140625, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":9631, + "componentType":5126, + "count":332, + "type":"VEC3" + }, + { + "bufferView":9632, + "componentType":5126, + "count":332, + "type":"VEC2" + }, + { + "bufferView":9633, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9634, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9635, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9636, + "componentType":5126, + "count":98, + "max":[ + 1.4143146276474, + 10.517534255981445, + 5.258759021759033 + ], + "min":[ + -1.4143165349960327, + 6.008148193359375e-05, + -5.25871467590332 + ], + "type":"VEC3" + }, + { + "bufferView":9637, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":9638, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":9639, + "componentType":5123, + "count":174, + "type":"SCALAR" + }, + { + "bufferView":9640, + "componentType":5126, + "count":24, + "max":[ + 110.00021362304688, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534164175624028, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":9641, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9642, + "componentType":5126, + "count":598, + "max":[ + 164.8965301513672, + 32.825321197509766, + 164.89654541015625 + ], + "min":[ + -164.89663696289062, + 1.52587890625e-05, + -164.89666748046875 + ], + "type":"VEC3" + }, + { + "bufferView":9643, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":9644, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9645, + "componentType":5126, + "count":574, + "max":[ + 144.529296875, + 98.70327758789062, + 146.67767333984375 + ], + "min":[ + -137.32012939453125, + 0.5871658325195312, + -146.6776885986328 + ], + "type":"VEC3" + }, + { + "bufferView":9646, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":9647, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9648, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":9649, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9650, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9651, + "componentType":5126, + "count":1420, + "max":[ + 244.466796875, + 367.92926025390625, + 384.57861328125 + ], + "min":[ + -244.46875, + -6.103515625e-05, + -384.5820007324219 + ], + "type":"VEC3" + }, + { + "bufferView":9652, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":9653, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":9654, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9655, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9656, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9657, + "componentType":5126, + "count":72, + "max":[ + 771.345458984375, + 1492.539794921875, + 22.500337600708008 + ], + "min":[ + -771.3455200195312, + 0, + -22.50017738342285 + ], + "type":"VEC3" + }, + { + "bufferView":9658, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":9659, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":9660, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":9661, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":9662, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":9663, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":9664, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":9665, + "componentType":5126, + "count":24, + "max":[ + 35.000614166259766, + 2000, + 35.000614166259766 + ], + "min":[ + -35.000614166259766, + 0, + -35.000614166259766 + ], + "type":"VEC3" + }, + { + "bufferView":9666, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9667, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92938232421875, + 384.142578125 + ], + "min":[ + -245.232421875, + 0, + -384.1391296386719 + ], + "type":"VEC3" + }, + { + "bufferView":9668, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":9669, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":9670, + "componentType":5126, + "count":24, + "max":[ + 126.07373046875, + 130.123046875, + 27.1943359375 + ], + "min":[ + -126.0732421875, + 0, + -27.193359375 + ], + "type":"VEC3" + }, + { + "bufferView":9671, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9672, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9673, + "componentType":5126, + "count":92, + "max":[ + 22.05126953125, + 77.6373291015625, + 30.45068359375 + ], + "min":[ + -22.05078125, + 0.0001220703125, + -30.449951171875 + ], + "type":"VEC3" + }, + { + "bufferView":9674, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":9675, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":9676, + "componentType":5126, + "count":50, + "max":[ + 127.44287109375, + 625.6328125, + 391.7373046875 + ], + "min":[ + -127.4443359375, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":9677, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":9678, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":9679, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":9680, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9681, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9682, + "componentType":5126, + "count":48, + "max":[ + 123.615234375, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.61376953125, + 0, + -366.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":9683, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":9684, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":9685, + "componentType":5126, + "count":560, + "max":[ + 194.32896423339844, + 32.82526779174805, + 194.32701110839844 + ], + "min":[ + -194.32528686523438, + 6.866455078125e-05, + -194.3273162841797 + ], + "type":"VEC3" + }, + { + "bufferView":9686, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":9687, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + 0.000118255615234375, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":9688, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":9689, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":9690, + "componentType":5126, + "count":76, + "max":[ + 278.8675231933594, + 3543.081787109375, + 279.1027526855469 + ], + "min":[ + -278.8695068359375, + 0, + -279.10015869140625 + ], + "type":"VEC3" + }, + { + "bufferView":9691, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":9692, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":9693, + "componentType":5126, + "count":12, + "max":[ + 8.345703125, + 341.1436767578125, + 360.897216796875 + ], + "min":[ + -8.345703125, + -0.0006103515625, + -360.8974609375 + ], + "type":"VEC3" + }, + { + "bufferView":9694, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":9695, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":9696, + "componentType":5126, + "count":582, + "max":[ + 195.9110107421875, + 280.98291015625, + 176.44248962402344 + ], + "min":[ + -203.12054443359375, + 41.48637390136719, + -188.3745880126953 + ], + "type":"VEC3" + }, + { + "bufferView":9697, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":9698, + "componentType":5126, + "count":71, + "max":[ + 3.7875118255615234, + 13.000020980834961, + 3.74242901802063 + ], + "min":[ + -3.7875607013702393, + -2.3352227799477987e-05, + -3.742408275604248 + ], + "type":"VEC3" + }, + { + "bufferView":9699, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":9700, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":9701, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4556884765625, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":9702, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":9703, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":9704, + "componentType":5126, + "count":131, + "max":[ + 40.60546875, + 81.2080078125, + 5725.87548828125 + ], + "min":[ + -40.6083984375, + -0.0009765625, + -5725.8759765625 + ], + "type":"VEC3" + }, + { + "bufferView":9705, + "componentType":5126, + "count":131, + "type":"VEC3" + }, + { + "bufferView":9706, + "componentType":5126, + "count":131, + "type":"VEC2" + }, + { + "bufferView":9707, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":9708, + "componentType":5126, + "count":582, + "max":[ + 184.265625, + 264.9776306152344, + 165.82266235351562 + ], + "min":[ + -191.471923828125, + 39.05497741699219, + -177.754638671875 + ], + "type":"VEC3" + }, + { + "bufferView":9709, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":9710, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9711, + "componentType":5126, + "count":48, + "max":[ + 123.61669921875, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.61181640625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":9712, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":9713, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":9714, + "componentType":5126, + "count":298, + "max":[ + 10.6787109375, + 283.877197265625, + 60.75002670288086 + ], + "min":[ + -10.677734375, + -1.52587890625e-05, + -60.75002670288086 + ], + "type":"VEC3" + }, + { + "bufferView":9715, + "componentType":5126, + "count":298, + "type":"VEC3" + }, + { + "bufferView":9716, + "componentType":5126, + "count":298, + "type":"VEC2" + }, + { + "bufferView":9717, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":9718, + "componentType":5126, + "count":112, + "max":[ + 34.615074157714844, + 1878.334228515625, + 445.77923583984375 + ], + "min":[ + -34.61507797241211, + -0.0001220703125, + -445.7789306640625 + ], + "type":"VEC3" + }, + { + "bufferView":9719, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":9720, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":9721, + "componentType":5126, + "count":24, + "max":[ + 110.00011444091797, + 50, + 584.662109375 + ], + "min":[ + -110.00007629394531, + 0, + -584.666015625 + ], + "type":"VEC3" + }, + { + "bufferView":9722, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9723, + "componentType":5126, + "count":115, + "max":[ + 31.29314422607422, + 15.511116027832031, + 6.5032196044921875 + ], + "min":[ + -31.29315757751465, + 9.202957153320312e-05, + -6.50201416015625 + ], + "type":"VEC3" + }, + { + "bufferView":9724, + "componentType":5126, + "count":115, + "type":"VEC3" + }, + { + "bufferView":9725, + "componentType":5126, + "count":115, + "type":"VEC2" + }, + { + "bufferView":9726, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":9727, + "componentType":5126, + "count":8290, + "max":[ + 496.33447265625, + 427.025390625, + 103.78662109375 + ], + "min":[ + -496.334716796875, + 0, + -103.78662109375 + ], + "type":"VEC3" + }, + { + "bufferView":9728, + "componentType":5126, + "count":8290, + "type":"VEC3" + }, + { + "bufferView":9729, + "componentType":5126, + "count":8290, + "type":"VEC2" + }, + { + "bufferView":9730, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":9731, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":9732, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":9733, + "componentType":5126, + "count":204, + "max":[ + 656.1495361328125, + 5599.7265625, + 186.63262939453125 + ], + "min":[ + -656.1527099609375, + 0, + -186.63253784179688 + ], + "type":"VEC3" + }, + { + "bufferView":9734, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":9735, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":9736, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9737, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9738, + "componentType":5126, + "count":140, + "max":[ + 45.56761169433594, + 61.74176025390625, + 57.79645538330078 + ], + "min":[ + -45.567588806152344, + 5.340576171875e-05, + -57.79677200317383 + ], + "type":"VEC3" + }, + { + "bufferView":9739, + "componentType":5126, + "count":140, + "type":"VEC3" + }, + { + "bufferView":9740, + "componentType":5126, + "count":140, + "type":"VEC2" + }, + { + "bufferView":9741, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":9742, + "componentType":5126, + "count":600, + "max":[ + 181.71339416503906, + 32.82525634765625, + 181.7139434814453 + ], + "min":[ + -181.71473693847656, + 6.866455078125e-05, + -181.71420288085938 + ], + "type":"VEC3" + }, + { + "bufferView":9743, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":9744, + "componentType":5126, + "count":342, + "max":[ + 170.90625, + 157.003662109375, + 177.25439453125 + ], + "min":[ + -170.9033203125, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":9745, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":9746, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":9747, + "componentType":5126, + "count":564, + "max":[ + 182.50498962402344, + 117.93252563476562, + 190.12278747558594 + ], + "min":[ + -182.5025177001953, + 0.000244140625, + -190.122802734375 + ], + "type":"VEC3" + }, + { + "bufferView":9748, + "componentType":5126, + "count":564, + "type":"VEC3" + }, + { + "bufferView":9749, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9750, + "componentType":5126, + "count":598, + "max":[ + 150.31234741210938, + 102.59085083007812, + 156.4878387451172 + ], + "min":[ + -150.31463623046875, + 0.00012969970703125, + -156.48789978027344 + ], + "type":"VEC3" + }, + { + "bufferView":9751, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":9752, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9753, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":9754, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9755, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9756, + "componentType":5126, + "count":570, + "max":[ + 183.11512756347656, + 188.58531188964844, + 159.60145568847656 + ], + "min":[ + -183.11587524414062, + -0.00018310546875, + -159.6015167236328 + ], + "type":"VEC3" + }, + { + "bufferView":9757, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":9758, + "componentType":5126, + "count":577, + "max":[ + 160.6251678466797, + 106.4439468383789, + 163.49508666992188 + ], + "min":[ + -153.41448974609375, + 0.6570510864257812, + -163.49517822265625 + ], + "type":"VEC3" + }, + { + "bufferView":9759, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":9760, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9761, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":9762, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9763, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9764, + "componentType":5126, + "count":352, + "max":[ + 170.4345703125, + 188.55419921875, + 176.203125 + ], + "min":[ + -170.4345703125, + 45.29638671875, + -176.2041015625 + ], + "type":"VEC3" + }, + { + "bufferView":9765, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":9766, + "componentType":5126, + "count":352, + "type":"VEC2" + }, + { + "bufferView":9767, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":9768, + "componentType":5126, + "count":566, + "max":[ + 176.10647583007812, + 32.82530975341797, + 176.10813903808594 + ], + "min":[ + -176.10997009277344, + 2.288818359375e-05, + -176.1083221435547 + ], + "type":"VEC3" + }, + { + "bufferView":9769, + "componentType":5126, + "count":566, + "type":"VEC3" + }, + { + "bufferView":9770, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9771, + "componentType":5126, + "count":342, + "max":[ + 13.56085205078125, + 272.6591796875, + 115.08643341064453 + ], + "min":[ + -13.560539245605469, + 42.486289978027344, + -115.08647155761719 + ], + "type":"VEC3" + }, + { + "bufferView":9772, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":9773, + "componentType":5126, + "count":590, + "max":[ + 159.28961181640625, + 165.0919189453125, + 138.96868896484375 + ], + "min":[ + -159.29193115234375, + 0.0001678466796875, + -138.96868896484375 + ], + "type":"VEC3" + }, + { + "bufferView":9774, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":9775, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9776, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9777, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9778, + "componentType":5126, + "count":24, + "max":[ + 584.6640625, + 50.00004577636719, + 110.00007629394531 + ], + "min":[ + -584.6640625, + 1.390804027323611e-05, + -110.00010681152344 + ], + "type":"VEC3" + }, + { + "bufferView":9779, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9780, + "componentType":5126, + "count":24, + "max":[ + 292.4480895996094, + 205.86782836914062, + 292.42657470703125 + ], + "min":[ + -292.4480895996094, + 7.62939453125e-05, + -292.4267578125 + ], + "type":"VEC3" + }, + { + "bufferView":9781, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9782, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9783, + "componentType":5126, + "count":336, + "max":[ + 13.560874938964844, + 230.17283630371094, + 115.0865478515625 + ], + "min":[ + -13.560577392578125, + -1.52587890625e-05, + -115.08636474609375 + ], + "type":"VEC3" + }, + { + "bufferView":9784, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":9785, + "componentType":5126, + "count":24, + "max":[ + 584.6621704101562, + 50.00006103515625, + 253.7422637939453 + ], + "min":[ + -584.666015625, + -1.660953785176389e-05, + -253.74383544921875 + ], + "type":"VEC3" + }, + { + "bufferView":9786, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9787, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9788, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9789, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9790, + "componentType":5126, + "count":590, + "max":[ + 180.31166076660156, + 187.07562255859375, + 163.31471252441406 + ], + "min":[ + -180.3135223388672, + 1.25408935546875, + -151.03343200683594 + ], + "type":"VEC3" + }, + { + "bufferView":9791, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":9792, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9793, + "componentType":5126, + "count":136, + "max":[ + 49.03564453125, + 126.6884765625, + 80.154052734375 + ], + "min":[ + -49.03466796875, + 0, + -80.152099609375 + ], + "type":"VEC3" + }, + { + "bufferView":9794, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":9795, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":9796, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":9797, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9798, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9799, + "componentType":5126, + "count":577, + "max":[ + 171.7727813720703, + 207.16458129882812, + 157.1129608154297 + ], + "min":[ + -171.77452087402344, + -9.1552734375e-05, + -157.11294555664062 + ], + "type":"VEC3" + }, + { + "bufferView":9800, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":9801, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9802, + "componentType":5126, + "count":584, + "max":[ + 156.4895782470703, + 162.3278350830078, + 136.54116821289062 + ], + "min":[ + -156.4861602783203, + 0.0001678466796875, + -136.541259765625 + ], + "type":"VEC3" + }, + { + "bufferView":9803, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":9804, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9805, + "componentType":5126, + "count":588, + "max":[ + 196.2220001220703, + 235.65760803222656, + 179.40536499023438 + ], + "min":[ + -196.22190856933594, + -6.103515625e-05, + -179.40505981445312 + ], + "type":"VEC3" + }, + { + "bufferView":9806, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":9807, + "componentType":5126, + "count":96, + "max":[ + 34.85567092895508, + 1448.2872314453125, + 704.2721557617188 + ], + "min":[ + -34.85291290283203, + 3.0517578125e-05, + -704.2722778320312 + ], + "type":"VEC3" + }, + { + "bufferView":9808, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":9809, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9810, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9811, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9812, + "componentType":5126, + "count":51, + "max":[ + 127.44677734375, + 625.6328125, + 391.7373046875 + ], + "min":[ + -127.4404296875, + 0, + -391.738037109375 + ], + "type":"VEC3" + }, + { + "bufferView":9813, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":9814, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":9815, + "componentType":5126, + "count":112, + "max":[ + 147.98110961914062, + 382.51190185546875, + 170.07574462890625 + ], + "min":[ + -147.98336791992188, + 4.57763671875e-05, + -170.07504272460938 + ], + "type":"VEC3" + }, + { + "bufferView":9816, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":9817, + "componentType":5126, + "count":24, + "max":[ + 110.00010681152344, + 50, + 584.662109375 + ], + "min":[ + -110.00007629394531, + 0, + -584.666015625 + ], + "type":"VEC3" + }, + { + "bufferView":9818, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9819, + "componentType":5126, + "count":242, + "max":[ + 91.49446105957031, + 2020.3758544921875, + 618.0631103515625 + ], + "min":[ + -91.49473571777344, + 1.52587890625e-05, + -618.0623168945312 + ], + "type":"VEC3" + }, + { + "bufferView":9820, + "componentType":5126, + "count":242, + "type":"VEC3" + }, + { + "bufferView":9821, + "componentType":5126, + "count":339, + "max":[ + 170.904296875, + 157.00341796875, + 177.25439453125 + ], + "min":[ + -170.90625, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":9822, + "componentType":5126, + "count":339, + "type":"VEC3" + }, + { + "bufferView":9823, + "componentType":5126, + "count":339, + "type":"VEC2" + }, + { + "bufferView":9824, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":9825, + "componentType":5126, + "count":226, + "max":[ + 146.6844024658203, + 281.0282287597656, + 131.18060302734375 + ], + "min":[ + -146.6806640625, + -1.52587890625e-05, + -131.18035888671875 + ], + "type":"VEC3" + }, + { + "bufferView":9826, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":9827, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":9828, + "componentType":5126, + "count":584, + "max":[ + 154.33689880371094, + 186.84385681152344, + 141.21417236328125 + ], + "min":[ + -154.33767700195312, + 0.0001983642578125, + -141.21426391601562 + ], + "type":"VEC3" + }, + { + "bufferView":9829, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":9830, + "componentType":5126, + "count":599, + "max":[ + 153.9162139892578, + 213.369140625, + 143.5109100341797 + ], + "min":[ + -146.7107696533203, + 31.214996337890625, + -131.57962036132812 + ], + "type":"VEC3" + }, + { + "bufferView":9831, + "componentType":5126, + "count":599, + "type":"VEC3" + }, + { + "bufferView":9832, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9833, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9834, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9835, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9836, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9837, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9838, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9839, + "componentType":5126, + "count":24, + "max":[ + 14.304591178894043, + 434.9862060546875, + 371.9234924316406 + ], + "min":[ + -14.304681777954102, + -0.0001220703125, + -371.9234924316406 + ], + "type":"VEC3" + }, + { + "bufferView":9840, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9841, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9842, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51428985595703, + 43.588871002197266 + ], + "min":[ + -22.728515625, + 0.00011444091796875, + -43.589359283447266 + ], + "type":"VEC3" + }, + { + "bufferView":9843, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":9844, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":9845, + "componentType":5126, + "count":96, + "max":[ + 820.9476318359375, + 205.17288208007812, + 73.47864532470703 + ], + "min":[ + -820.9443359375, + 7.62939453125e-06, + -73.4786376953125 + ], + "type":"VEC3" + }, + { + "bufferView":9846, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":9847, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + 0.000118255615234375, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":9848, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":9849, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":9850, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":9851, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9852, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9853, + "componentType":5126, + "count":450, + "max":[ + 104.17137908935547, + 104.17129516601562, + 104.17137908935547 + ], + "min":[ + -104.17139434814453, + -8.392333984375e-05, + -104.17137908935547 + ], + "type":"VEC3" + }, + { + "bufferView":9854, + "componentType":5126, + "count":450, + "type":"VEC3" + }, + { + "bufferView":9855, + "componentType":5126, + "count":450, + "type":"VEC2" + }, + { + "bufferView":9856, + "componentType":5126, + "count":147, + "max":[ + 25.642379760742188, + 106.52584075927734, + 14.453723907470703 + ], + "min":[ + -25.64236068725586, + 2.288818359375e-05, + -14.454416275024414 + ], + "type":"VEC3" + }, + { + "bufferView":9857, + "componentType":5126, + "count":147, + "type":"VEC3" + }, + { + "bufferView":9858, + "componentType":5126, + "count":147, + "type":"VEC2" + }, + { + "bufferView":9859, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":9860, + "componentType":5126, + "count":226, + "max":[ + 146.6806640625, + 288.87420654296875, + 115.35120391845703 + ], + "min":[ + -146.6844482421875, + -6.103515625e-05, + -115.35126495361328 + ], + "type":"VEC3" + }, + { + "bufferView":9861, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":9862, + "componentType":5126, + "count":172, + "max":[ + 22.728515625, + 64.23074340820312, + 545.1064453125 + ], + "min":[ + -22.73046875, + 0.000148773193359375, + -545.107421875 + ], + "type":"VEC3" + }, + { + "bufferView":9863, + "componentType":5126, + "count":172, + "type":"VEC3" + }, + { + "bufferView":9864, + "componentType":5126, + "count":172, + "type":"VEC2" + }, + { + "bufferView":9865, + "componentType":5126, + "count":579, + "max":[ + 166.40672302246094, + 110.26168823242188, + 173.3052520751953 + ], + "min":[ + -166.41053771972656, + 0.00018310546875, + -173.30545043945312 + ], + "type":"VEC3" + }, + { + "bufferView":9866, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":9867, + "componentType":5126, + "count":96, + "max":[ + 332.39007568359375, + 1922.7802734375, + 35.13714599609375 + ], + "min":[ + -332.3934631347656, + -0.0001220703125, + -35.13677978515625 + ], + "type":"VEC3" + }, + { + "bufferView":9868, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":9869, + "componentType":5126, + "count":76, + "max":[ + 278.86810302734375, + 3543.081787109375, + 279.1005859375 + ], + "min":[ + -278.86895751953125, + 0, + -279.10284423828125 + ], + "type":"VEC3" + }, + { + "bufferView":9870, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":9871, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":9872, + "componentType":5126, + "count":795, + "max":[ + 4.130859375, + 90.58753204345703, + 34.45508575439453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":9873, + "componentType":5126, + "count":795, + "type":"VEC3" + }, + { + "bufferView":9874, + "componentType":5126, + "count":795, + "type":"VEC2" + }, + { + "bufferView":9875, + "componentType":5126, + "count":568, + "max":[ + 199.93199157714844, + 32.82524108886719, + 199.9329376220703 + ], + "min":[ + -199.93392944335938, + 8.7738037109375e-05, + -199.93301391601562 + ], + "type":"VEC3" + }, + { + "bufferView":9876, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":9877, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9878, + "componentType":5126, + "count":184, + "max":[ + 769.70947265625, + 113.194580078125, + 56.59765625 + ], + "min":[ + -769.7080078125, + 6.103515625e-05, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":9879, + "componentType":5126, + "count":184, + "type":"VEC3" + }, + { + "bufferView":9880, + "componentType":5126, + "count":184, + "type":"VEC2" + }, + { + "bufferView":9881, + "componentType":5126, + "count":600, + "max":[ + 198.53277587890625, + 32.82522201538086, + 198.53135681152344 + ], + "min":[ + -198.53025817871094, + 9.5367431640625e-05, + -198.53167724609375 + ], + "type":"VEC3" + }, + { + "bufferView":9882, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":9883, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9884, + "componentType":5126, + "count":203, + "max":[ + 33.4022216796875, + 133.6083984375, + 66.80322265625 + ], + "min":[ + -33.40234375, + 0, + -66.80517578125 + ], + "type":"VEC3" + }, + { + "bufferView":9885, + "componentType":5126, + "count":203, + "type":"VEC3" + }, + { + "bufferView":9886, + "componentType":5126, + "count":203, + "type":"VEC2" + }, + { + "bufferView":9887, + "componentType":5126, + "count":528, + "max":[ + 722.72265625, + 2637.3974609375, + 19.80198860168457 + ], + "min":[ + -722.72265625, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":9888, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":9889, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":9890, + "componentType":5126, + "count":587, + "max":[ + 142.68621826171875, + 207.83984375, + 127.91075134277344 + ], + "min":[ + -149.8932647705078, + 30.375045776367188, + -139.84190368652344 + ], + "type":"VEC3" + }, + { + "bufferView":9891, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":9892, + "componentType":5126, + "count":24, + "max":[ + 65.33245849609375, + 83.343017578125, + 789.6710815429688 + ], + "min":[ + -65.3310546875, + 0, + -789.6715698242188 + ], + "type":"VEC3" + }, + { + "bufferView":9893, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9894, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9895, + "componentType":5126, + "count":929, + "max":[ + 50.151649475097656, + 4511.697265625, + 79.23255920410156 + ], + "min":[ + -50.151641845703125, + 0, + -79.23702239990234 + ], + "type":"VEC3" + }, + { + "bufferView":9896, + "componentType":5126, + "count":929, + "type":"VEC3" + }, + { + "bufferView":9897, + "componentType":5126, + "count":929, + "type":"VEC2" + }, + { + "bufferView":9898, + "componentType":5123, + "count":4488, + "type":"SCALAR" + }, + { + "bufferView":9899, + "componentType":5126, + "count":1660, + "max":[ + 433.12109375, + 367.92919921875, + 90.004150390625 + ], + "min":[ + -433.119140625, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":9900, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":9901, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":9902, + "componentType":5126, + "count":276, + "max":[ + 175.05322265625, + 196.21435546875, + 169.1064453125 + ], + "min":[ + -175.0537109375, + 0, + -169.107421875 + ], + "type":"VEC3" + }, + { + "bufferView":9903, + "componentType":5126, + "count":276, + "type":"VEC3" + }, + { + "bufferView":9904, + "componentType":5126, + "count":276, + "type":"VEC2" + }, + { + "bufferView":9905, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9906, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9907, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9908, + "componentType":5126, + "count":4, + "max":[ + 698.8828125, + 2586.479248046875, + 0.0015688911080360413 + ], + "min":[ + -698.8828125, + 0, + 0.0009945854544639587 + ], + "type":"VEC3" + }, + { + "bufferView":9909, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9910, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9911, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68719482421875 + ], + "min":[ + -15.4755859375, + 0, + -381.68621826171875 + ], + "type":"VEC3" + }, + { + "bufferView":9912, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9913, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":9914, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9915, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9916, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9917, + "componentType":5126, + "count":136, + "max":[ + 49.03564453125, + 126.6884765625, + 80.153076171875 + ], + "min":[ + -49.03466796875, + 0, + -80.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":9918, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":9919, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":9920, + "componentType":5126, + "count":208, + "max":[ + 33.40234375, + 133.60888671875, + 66.80419921875 + ], + "min":[ + -33.402099609375, + 0, + -66.80419921875 + ], + "type":"VEC3" + }, + { + "bufferView":9921, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":9922, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":9923, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":9924, + "componentType":5126, + "count":228, + "max":[ + 147.0672149658203, + 288.87457275390625, + 115.35121154785156 + ], + "min":[ + -146.29786682128906, + 0.0001220703125, + -115.35125732421875 + ], + "type":"VEC3" + }, + { + "bufferView":9925, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":9926, + "componentType":5126, + "count":588, + "max":[ + 156.4861602783203, + 32.8253173828125, + 156.4878387451172 + ], + "min":[ + -156.4895782470703, + 3.4332275390625e-05, + -156.48789978027344 + ], + "type":"VEC3" + }, + { + "bufferView":9927, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":9928, + "componentType":5126, + "count":1420, + "max":[ + 244.46875, + 367.92938232421875, + 384.5786437988281 + ], + "min":[ + -244.466796875, + 0.0001068115234375, + -384.5815734863281 + ], + "type":"VEC3" + }, + { + "bufferView":9929, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":9930, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":9931, + "componentType":5126, + "count":606, + "max":[ + 325.56951904296875, + 504.617919921875, + 332.93994140625 + ], + "min":[ + -325.56951904296875, + 0.0001220703125, + -332.9397888183594 + ], + "type":"VEC3" + }, + { + "bufferView":9932, + "componentType":5126, + "count":606, + "type":"VEC3" + }, + { + "bufferView":9933, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9934, + "componentType":5126, + "count":108, + "max":[ + 1272.04443359375, + 2502.009521484375, + 25.650390625 + ], + "min":[ + -1272.044921875, + 0, + -25.650146484375 + ], + "type":"VEC3" + }, + { + "bufferView":9935, + "componentType":5126, + "count":108, + "type":"VEC3" + }, + { + "bufferView":9936, + "componentType":5126, + "count":108, + "type":"VEC2" + }, + { + "bufferView":9937, + "componentType":5126, + "count":24, + "max":[ + 253.74386596679688, + 50, + 584.666015625 + ], + "min":[ + -253.7422637939453, + -8.255030479631387e-06, + -584.6621704101562 + ], + "type":"VEC3" + }, + { + "bufferView":9938, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9939, + "componentType":5126, + "count":648, + "max":[ + 615.0107421875, + 2510.925048828125, + 347.265869140625 + ], + "min":[ + -615.01025390625, + 0, + -347.26611328125 + ], + "type":"VEC3" + }, + { + "bufferView":9940, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":9941, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":9942, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":9943, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":9944, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":9945, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.9293212890625, + 90.00634765625 + ], + "min":[ + -433.1201171875, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":9946, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":9947, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":9948, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9949, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9950, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9951, + "componentType":5126, + "count":574, + "max":[ + 140.92559814453125, + 98.11587524414062, + 146.67767333984375 + ], + "min":[ + -140.923828125, + -0.0002288818359375, + -146.6776885986328 + ], + "type":"VEC3" + }, + { + "bufferView":9952, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":9953, + "componentType":5126, + "count":338, + "max":[ + 45.85809326171875, + 271.1289978027344, + 115.62034606933594 + ], + "min":[ + -45.85676193237305, + 42.95967102050781, + -115.620361328125 + ], + "type":"VEC3" + }, + { + "bufferView":9954, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":9955, + "componentType":5126, + "count":122, + "max":[ + 25.642379760742188, + 106.52559661865234, + 14.454517364501953 + ], + "min":[ + -25.64236831665039, + 9.5367431640625e-05, + -14.454416275024414 + ], + "type":"VEC3" + }, + { + "bufferView":9956, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":9957, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":9958, + "componentType":5126, + "count":46, + "max":[ + 161.98095703125, + 658.67578125, + 366.15240478515625 + ], + "min":[ + -161.97900390625, + 0, + -366.1530456542969 + ], + "type":"VEC3" + }, + { + "bufferView":9959, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":9960, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":9961, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9962, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9963, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9964, + "componentType":5126, + "count":288, + "max":[ + 10873.6416015625, + 916.6891479492188, + 1981.46826171875 + ], + "min":[ + -10873.638671875, + 0.00018310546875, + -1981.46728515625 + ], + "type":"VEC3" + }, + { + "bufferView":9965, + "componentType":5126, + "count":288, + "type":"VEC3" + }, + { + "bufferView":9966, + "componentType":5123, + "count":1572, + "type":"SCALAR" + }, + { + "bufferView":9967, + "componentType":5126, + "count":344, + "max":[ + 170.4326171875, + 188.55810546875, + 176.203125 + ], + "min":[ + -170.4365234375, + 45.29638671875, + -176.20458984375 + ], + "type":"VEC3" + }, + { + "bufferView":9968, + "componentType":5126, + "count":344, + "type":"VEC3" + }, + { + "bufferView":9969, + "componentType":5126, + "count":344, + "type":"VEC2" + }, + { + "bufferView":9970, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":9971, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":9972, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9973, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9974, + "componentType":5126, + "count":562, + "max":[ + 199.93392944335938, + 205.16961669921875, + 174.16583251953125 + ], + "min":[ + -199.93199157714844, + 0.0001068115234375, + -174.16571044921875 + ], + "type":"VEC3" + }, + { + "bufferView":9975, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":9976, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":9977, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 463.990234375 + ], + "min":[ + -110.0000228881836, + 0, + -463.990234375 + ], + "type":"VEC3" + }, + { + "bufferView":9978, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9979, + "componentType":5126, + "count":4, + "max":[ + 0.0001068115234375, + 144.50997924804688, + 1.2866668701171875 + ], + "min":[ + 6.103515625e-05, + -1.52587890625e-05, + -1.2867050170898438 + ], + "type":"VEC3" + }, + { + "bufferView":9980, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":9981, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":9982, + "componentType":5126, + "count":573, + "max":[ + 177.55799865722656, + 255.76211547851562, + 159.70765686035156 + ], + "min":[ + -184.7669677734375, + 37.65522766113281, + -171.6398162841797 + ], + "type":"VEC3" + }, + { + "bufferView":9983, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":9984, + "componentType":5126, + "count":816, + "max":[ + 4.130859375, + 90.58740997314453, + 34.45703887939453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":9985, + "componentType":5126, + "count":816, + "type":"VEC3" + }, + { + "bufferView":9986, + "componentType":5126, + "count":816, + "type":"VEC2" + }, + { + "bufferView":9987, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":9988, + "componentType":5126, + "count":580, + "max":[ + 188.72206115722656, + 32.82521057128906, + 188.72120666503906 + ], + "min":[ + -188.72061157226562, + 6.866455078125e-05, + -188.72146606445312 + ], + "type":"VEC3" + }, + { + "bufferView":9989, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":9990, + "componentType":5126, + "count":105, + "max":[ + 86.38427734375, + 4344.65771484375, + 86.384521484375 + ], + "min":[ + -86.3843994140625, + -0.0001373291015625, + -86.384033203125 + ], + "type":"VEC3" + }, + { + "bufferView":9991, + "componentType":5126, + "count":105, + "type":"VEC3" + }, + { + "bufferView":9992, + "componentType":5126, + "count":105, + "type":"VEC2" + }, + { + "bufferView":9993, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":9994, + "componentType":5126, + "count":648, + "max":[ + 615.01123046875, + 2510.92529296875, + 347.265625 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.266357421875 + ], + "type":"VEC3" + }, + { + "bufferView":9995, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":9996, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":9997, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":9998, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":9999, + "componentType":5126, + "count":132, + "max":[ + 40.60498046875, + 81.208984375, + 5725.87451171875 + ], + "min":[ + -40.60546875, + 0, + -5725.87646484375 + ], + "type":"VEC3" + }, + { + "bufferView":10000, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":10001, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":10002, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":10003, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":10004, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":10005, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":10006, + "componentType":5126, + "count":562, + "max":[ + 199.93199157714844, + 205.16958618164062, + 174.16575622558594 + ], + "min":[ + -199.93392944335938, + 0.00011444091796875, + -174.16587829589844 + ], + "type":"VEC3" + }, + { + "bufferView":10007, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":10008, + "componentType":5126, + "count":237, + "max":[ + 173.28125, + 188.23828125, + 169.1005859375 + ], + "min":[ + -173.28173828125, + 0, + -169.1015625 + ], + "type":"VEC3" + }, + { + "bufferView":10009, + "componentType":5126, + "count":237, + "type":"VEC3" + }, + { + "bufferView":10010, + "componentType":5126, + "count":237, + "type":"VEC2" + }, + { + "bufferView":10011, + "componentType":5126, + "count":342, + "max":[ + 13.56085205078125, + 272.6591796875, + 115.08643341064453 + ], + "min":[ + -13.560539245605469, + 42.486289978027344, + -115.08647155761719 + ], + "type":"VEC3" + }, + { + "bufferView":10012, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":10013, + "componentType":5126, + "count":72, + "max":[ + 866.67041015625, + 1492.539794921875, + 22.500154495239258 + ], + "min":[ + -866.6709594726562, + 0, + -22.500349044799805 + ], + "type":"VEC3" + }, + { + "bufferView":10014, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":10015, + "componentType":5126, + "count":756, + "max":[ + 136.78648376464844, + 189.92120361328125, + 129.5080108642578 + ], + "min":[ + -136.78465270996094, + -9.1552734375e-05, + -129.50845336914062 + ], + "type":"VEC3" + }, + { + "bufferView":10016, + "componentType":5126, + "count":756, + "type":"VEC3" + }, + { + "bufferView":10017, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":10018, + "componentType":5126, + "count":108, + "max":[ + 15.704833984375, + 190.963134765625, + 266.5069885253906 + ], + "min":[ + -15.705810546875, + 0, + -266.50701904296875 + ], + "type":"VEC3" + }, + { + "bufferView":10019, + "componentType":5126, + "count":108, + "type":"VEC3" + }, + { + "bufferView":10020, + "componentType":5126, + "count":108, + "type":"VEC2" + }, + { + "bufferView":10021, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":10022, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":10023, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":10024, + "componentType":5126, + "count":34, + "max":[ + 2889.6533203125, + 320.1450500488281, + 7353.00048828125 + ], + "min":[ + -2889.6533203125, + -0.00012969970703125, + -7352.99951171875 + ], + "type":"VEC3" + }, + { + "bufferView":10025, + "componentType":5126, + "count":34, + "type":"VEC3" + }, + { + "bufferView":10026, + "componentType":5126, + "count":34, + "type":"VEC2" + }, + { + "bufferView":10027, + "componentType":5126, + "count":559, + "max":[ + 224.27151489257812, + 447.5828857421875, + 223.7913818359375 + ], + "min":[ + -224.27151489257812, + 0.0001068115234375, + -223.79139709472656 + ], + "type":"VEC3" + }, + { + "bufferView":10028, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":10029, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":10030, + "componentType":5126, + "count":331, + "max":[ + 170.9052734375, + 157, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.288818359375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":10031, + "componentType":5126, + "count":331, + "type":"VEC3" + }, + { + "bufferView":10032, + "componentType":5126, + "count":331, + "type":"VEC2" + }, + { + "bufferView":10033, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10034, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10035, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10036, + "componentType":5126, + "count":865, + "max":[ + 7.779110908508301, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778773307800293, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":10037, + "componentType":5126, + "count":865, + "type":"VEC3" + }, + { + "bufferView":10038, + "componentType":5126, + "count":865, + "type":"VEC2" + }, + { + "bufferView":10039, + "componentType":5126, + "count":560, + "max":[ + 163.4947967529297, + 32.825321197509766, + 163.49508666992188 + ], + "min":[ + -163.4954833984375, + 1.52587890625e-05, + -163.49517822265625 + ], + "type":"VEC3" + }, + { + "bufferView":10040, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":10041, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10042, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10043, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10044, + "componentType":5126, + "count":340, + "max":[ + 170.4345703125, + 188.55810546875, + 176.2041015625 + ], + "min":[ + -170.4345703125, + 45.29638671875, + -176.203125 + ], + "type":"VEC3" + }, + { + "bufferView":10045, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":10046, + "componentType":5126, + "count":340, + "type":"VEC2" + }, + { + "bufferView":10047, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":10048, + "componentType":5126, + "count":588, + "max":[ + 169.0897216796875, + 204.03817749023438, + 154.66737365722656 + ], + "min":[ + -169.09251403808594, + -0.0001373291015625, + -154.66661071777344 + ], + "type":"VEC3" + }, + { + "bufferView":10049, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":10050, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10051, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":10052, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10053, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10054, + "componentType":5126, + "count":560, + "max":[ + 147.62930297851562, + 101.31221008300781, + 153.6849365234375 + ], + "min":[ + -147.63272094726562, + -4.57763671875e-05, + -153.68499755859375 + ], + "type":"VEC3" + }, + { + "bufferView":10055, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":10056, + "componentType":5126, + "count":1420, + "max":[ + 433.119140625, + 367.92919921875, + 90.00634765625 + ], + "min":[ + -433.12109375, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":10057, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":10058, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":10059, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10060, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10061, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10062, + "componentType":5126, + "count":40, + "max":[ + 1.4143146276474, + 10.517534255981445, + 5.258759021759033 + ], + "min":[ + -1.4143165349960327, + 6.008148193359375e-05, + -5.25871467590332 + ], + "type":"VEC3" + }, + { + "bufferView":10063, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":10064, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":10065, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10066, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10067, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10068, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":10069, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":10070, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":10071, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92926025390625, + 384.58251953125 + ], + "min":[ + -244.466796875, + 0, + -384.5790710449219 + ], + "type":"VEC3" + }, + { + "bufferView":10072, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":10073, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":10074, + "componentType":5126, + "count":53, + "max":[ + 123.61328125, + 696.755859375, + 366.15283203125 + ], + "min":[ + -123.615234375, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":10075, + "componentType":5126, + "count":53, + "type":"VEC3" + }, + { + "bufferView":10076, + "componentType":5126, + "count":53, + "type":"VEC2" + }, + { + "bufferView":10077, + "componentType":5126, + "count":49, + "max":[ + 127.44287109375, + 625.6328125, + 391.73779296875 + ], + "min":[ + -127.4443359375, + 0, + -391.73779296875 + ], + "type":"VEC3" + }, + { + "bufferView":10078, + "componentType":5126, + "count":49, + "type":"VEC3" + }, + { + "bufferView":10079, + "componentType":5126, + "count":49, + "type":"VEC2" + }, + { + "bufferView":10080, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":10081, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":10082, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":10083, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10084, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10085, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10086, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":10087, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":10088, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":10089, + "componentType":5126, + "count":76, + "max":[ + 278.86651611328125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8672180175781, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":10090, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":10091, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":10092, + "componentType":5126, + "count":598, + "max":[ + 167.6999969482422, + 32.825321197509766, + 167.69944763183594 + ], + "min":[ + -167.6990203857422, + 1.52587890625e-05, + -167.69956970214844 + ], + "type":"VEC3" + }, + { + "bufferView":10093, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":10094, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":10095, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":10096, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":10097, + "componentType":5126, + "count":582, + "max":[ + 194.26376342773438, + 278.7198486328125, + 174.94082641601562 + ], + "min":[ + -201.4739532470703, + 41.14268493652344, + -186.87286376953125 + ], + "type":"VEC3" + }, + { + "bufferView":10098, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":10099, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10100, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10101, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10102, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10103, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10104, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10105, + "componentType":5126, + "count":226, + "max":[ + 115.35120391845703, + 230.70249938964844, + 118.72075653076172 + ], + "min":[ + -115.35124969482422, + 3.814697265625e-05, + -118.72084045410156 + ], + "type":"VEC3" + }, + { + "bufferView":10106, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":10107, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":10108, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68670654296875 + ], + "min":[ + -15.4755859375, + 0, + -381.68621826171875 + ], + "type":"VEC3" + }, + { + "bufferView":10109, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10110, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10111, + "componentType":5126, + "count":118, + "max":[ + 31.29062271118164, + 15.511119842529297, + 6.112213134765625 + ], + "min":[ + -31.290618896484375, + 4.1484832763671875e-05, + -6.112152099609375 + ], + "type":"VEC3" + }, + { + "bufferView":10112, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":10113, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":10114, + "componentType":5126, + "count":24, + "max":[ + 14.304591178894043, + 434.9862060546875, + 371.9234924316406 + ], + "min":[ + -14.304681777954102, + -0.0001220703125, + -371.9234924316406 + ], + "type":"VEC3" + }, + { + "bufferView":10115, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10116, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10117, + "componentType":5126, + "count":147, + "max":[ + 25.642379760742188, + 106.52584075927734, + 14.453723907470703 + ], + "min":[ + -25.64236068725586, + 2.288818359375e-05, + -14.454416275024414 + ], + "type":"VEC3" + }, + { + "bufferView":10118, + "componentType":5126, + "count":147, + "type":"VEC3" + }, + { + "bufferView":10119, + "componentType":5126, + "count":147, + "type":"VEC2" + }, + { + "bufferView":10120, + "componentType":5126, + "count":88, + "max":[ + 58.8118896484375, + 124.20556640625, + 895.8076171875 + ], + "min":[ + -58.8109130859375, + 0, + -895.8056640625 + ], + "type":"VEC3" + }, + { + "bufferView":10121, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":10122, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":10123, + "componentType":5126, + "count":8186, + "max":[ + 496.334228515625, + 427.0224609375, + 103.78662109375 + ], + "min":[ + -496.333984375, + 0, + -103.78662109375 + ], + "type":"VEC3" + }, + { + "bufferView":10124, + "componentType":5126, + "count":8186, + "type":"VEC3" + }, + { + "bufferView":10125, + "componentType":5126, + "count":8186, + "type":"VEC2" + }, + { + "bufferView":10126, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":10127, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":10128, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":10129, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":10130, + "componentType":5126, + "count":48, + "max":[ + 127.44091796875, + 625.6328125, + 391.7373046875 + ], + "min":[ + -127.4423828125, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":10131, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":10132, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":10133, + "componentType":5126, + "count":618, + "max":[ + 23.86003875732422, + 172.07470703125, + 56.70086669921875 + ], + "min":[ + -23.860031127929688, + 5.340576171875e-05, + -56.70072937011719 + ], + "type":"VEC3" + }, + { + "bufferView":10134, + "componentType":5126, + "count":618, + "type":"VEC3" + }, + { + "bufferView":10135, + "componentType":5126, + "count":618, + "type":"VEC2" + }, + { + "bufferView":10136, + "componentType":5126, + "count":1420, + "max":[ + 244.466796875, + 367.92938232421875, + 384.58251953125 + ], + "min":[ + -244.46875, + 6.103515625e-05, + -384.5790710449219 + ], + "type":"VEC3" + }, + { + "bufferView":10137, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":10138, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":10139, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.07373046875 + ], + "min":[ + -27.193359375, + 0, + -126.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":10140, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10141, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10142, + "componentType":5126, + "count":581, + "max":[ + 168.17123413085938, + 242.8599395751953, + 151.1466064453125 + ], + "min":[ + -175.37606811523438, + 35.69518280029297, + -163.07920837402344 + ], + "type":"VEC3" + }, + { + "bufferView":10143, + "componentType":5126, + "count":581, + "type":"VEC3" + }, + { + "bufferView":10144, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10145, + "componentType":5126, + "count":329, + "max":[ + 170.9052734375, + 157.003173828125, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.2880859375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":10146, + "componentType":5126, + "count":329, + "type":"VEC3" + }, + { + "bufferView":10147, + "componentType":5126, + "count":329, + "type":"VEC2" + }, + { + "bufferView":10148, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":10149, + "componentType":5126, + "count":576, + "max":[ + 191.5255126953125, + 196.87759399414062, + 166.8836212158203 + ], + "min":[ + -191.5229949951172, + 0.00011444091796875, + -166.88369750976562 + ], + "type":"VEC3" + }, + { + "bufferView":10150, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":10151, + "componentType":5126, + "count":560, + "max":[ + 192.92724609375, + 198.25942993164062, + 168.09732055664062 + ], + "min":[ + -192.9241180419922, + -0.0001068115234375, + -168.09739685058594 + ], + "type":"VEC3" + }, + { + "bufferView":10152, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":10153, + "componentType":5126, + "count":588, + "max":[ + 157.0196990966797, + 189.97015380859375, + 143.6600799560547 + ], + "min":[ + -157.0199432373047, + 6.103515625e-05, + -143.66015625 + ], + "type":"VEC3" + }, + { + "bufferView":10154, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":10155, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10156, + "componentType":5126, + "count":578, + "max":[ + 191.471923828125, + 121.6241226196289, + 195.7284698486328 + ], + "min":[ + -184.265625, + 0.7916030883789062, + -195.7287139892578 + ], + "type":"VEC3" + }, + { + "bufferView":10157, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":10158, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10159, + "componentType":5126, + "count":587, + "max":[ + 148.9708251953125, + 101.9517822265625, + 155.0863800048828 + ], + "min":[ + -148.97369384765625, + 7.62939453125e-05, + -155.08645629882812 + ], + "type":"VEC3" + }, + { + "bufferView":10160, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":10161, + "componentType":5126, + "count":574, + "max":[ + 159.2841796875, + 105.79900360107422, + 162.09364318847656 + ], + "min":[ + -152.07296752929688, + 0.6511306762695312, + -162.09371948242188 + ], + "type":"VEC3" + }, + { + "bufferView":10162, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":10163, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10164, + "componentType":5126, + "count":580, + "max":[ + 174.70864868164062, + 32.82521057128906, + 174.7067108154297 + ], + "min":[ + -174.70492553710938, + 2.6702880859375e-05, + -174.70689392089844 + ], + "type":"VEC3" + }, + { + "bufferView":10165, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":10166, + "componentType":5126, + "count":336, + "max":[ + 13.560546875, + 230.1728515625, + 115.08642578125 + ], + "min":[ + -13.560844421386719, + -3.814697265625e-05, + -115.08648681640625 + ], + "type":"VEC3" + }, + { + "bufferView":10167, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":10168, + "componentType":5126, + "count":622, + "max":[ + 148.55227661132812, + 205.99624633789062, + 138.61888122558594 + ], + "min":[ + -141.3446502685547, + 30.09490966796875, + -126.68783569335938 + ], + "type":"VEC3" + }, + { + "bufferView":10169, + "componentType":5126, + "count":622, + "type":"VEC3" + }, + { + "bufferView":10170, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10171, + "componentType":5126, + "count":586, + "max":[ + 157.88787841796875, + 163.70953369140625, + 137.75498962402344 + ], + "min":[ + -157.89076232910156, + -0.0001220703125, + -137.7549591064453 + ], + "type":"VEC3" + }, + { + "bufferView":10172, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":10173, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10174, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10175, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10176, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.514404296875, + 22.7275447845459 + ], + "min":[ + -43.58984375, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":10177, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":10178, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":10179, + "componentType":5126, + "count":48, + "max":[ + 11.695329666137695, + 233.9413299560547, + 289.01409912109375 + ], + "min":[ + -11.698831558227539, + -1.52587890625e-05, + -289.0140686035156 + ], + "type":"VEC3" + }, + { + "bufferView":10180, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":10181, + "componentType":5126, + "count":24, + "max":[ + 584.662109375, + 50.00004577636719, + 110.00007629394531 + ], + "min":[ + -584.666015625, + 1.390804027323611e-05, + -110.00010681152344 + ], + "type":"VEC3" + }, + { + "bufferView":10182, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10183, + "componentType":5126, + "count":48, + "max":[ + 142.32275390625, + 608.220703125, + 391.7376708984375 + ], + "min":[ + -142.31982421875, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":10184, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":10185, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":10186, + "componentType":5126, + "count":64, + "max":[ + 4093.119140625, + 919.57177734375, + 4951.87646484375 + ], + "min":[ + -4093.119140625, + 6.103515625e-05, + -4951.87890625 + ], + "type":"VEC3" + }, + { + "bufferView":10187, + "componentType":5126, + "count":64, + "type":"VEC3" + }, + { + "bufferView":10188, + "componentType":5126, + "count":64, + "type":"VEC2" + }, + { + "bufferView":10189, + "componentType":5126, + "count":606, + "max":[ + 325.56951904296875, + 504.617919921875, + 332.93994140625 + ], + "min":[ + -325.56951904296875, + 0.0001220703125, + -332.9397888183594 + ], + "type":"VEC3" + }, + { + "bufferView":10190, + "componentType":5126, + "count":606, + "type":"VEC3" + }, + { + "bufferView":10191, + "componentType":5126, + "count":24, + "max":[ + 88.34375, + 276.109375, + 83.761474609375 + ], + "min":[ + -88.3427734375, + 0, + -83.761474609375 + ], + "type":"VEC3" + }, + { + "bufferView":10192, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10193, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10194, + "componentType":5126, + "count":568, + "max":[ + 191.89175415039062, + 123.23667907714844, + 199.9328155517578 + ], + "min":[ + -191.89332580566406, + 9.1552734375e-05, + -199.93313598632812 + ], + "type":"VEC3" + }, + { + "bufferView":10195, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":10196, + "componentType":5126, + "count":580, + "max":[ + 169.1017303466797, + 175.93930053710938, + 153.60462951660156 + ], + "min":[ + -169.10015869140625, + 1.1737060546875, + -141.32437133789062 + ], + "type":"VEC3" + }, + { + "bufferView":10197, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":10198, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10199, + "componentType":5126, + "count":582, + "max":[ + 178.90992736816406, + 185.68357849121094, + 162.10101318359375 + ], + "min":[ + -178.91232299804688, + 1.244049072265625, + -149.81973266601562 + ], + "type":"VEC3" + }, + { + "bufferView":10200, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":10201, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10202, + "componentType":5126, + "count":1050, + "max":[ + 90.1090087890625, + 76.19921875, + 125.22607421875 + ], + "min":[ + -90.109130859375, + 0, + -125.22607421875 + ], + "type":"VEC3" + }, + { + "bufferView":10203, + "componentType":5126, + "count":1050, + "type":"VEC3" + }, + { + "bufferView":10204, + "componentType":5126, + "count":1050, + "type":"VEC2" + }, + { + "bufferView":10205, + "componentType":5126, + "count":210, + "max":[ + 1342.826171875, + 1646.6240234375, + 7.0341796875 + ], + "min":[ + -1342.828125, + 0, + -7.03271484375 + ], + "type":"VEC3" + }, + { + "bufferView":10206, + "componentType":5126, + "count":210, + "type":"VEC3" + }, + { + "bufferView":10207, + "componentType":5126, + "count":210, + "type":"VEC2" + }, + { + "bufferView":10208, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10209, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10210, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10211, + "componentType":5126, + "count":24, + "max":[ + 253.74305725097656, + 50, + 481.6465148925781 + ], + "min":[ + -253.74307250976562, + 0, + -481.64654541015625 + ], + "type":"VEC3" + }, + { + "bufferView":10212, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10213, + "componentType":5126, + "count":48, + "max":[ + 123.61376953125, + 696.755859375, + 366.15283203125 + ], + "min":[ + -123.615234375, + 0, + -366.152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10214, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":10215, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":10216, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":10217, + "componentType":5126, + "count":560, + "max":[ + 192.92724609375, + 198.25942993164062, + 168.09732055664062 + ], + "min":[ + -192.9241180419922, + -0.0001068115234375, + -168.09739685058594 + ], + "type":"VEC3" + }, + { + "bufferView":10218, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":10219, + "componentType":5126, + "count":51, + "max":[ + 366.15283203125, + 696.755859375, + 123.6142578125 + ], + "min":[ + -366.15283203125, + 0, + -123.6142578125 + ], + "type":"VEC3" + }, + { + "bufferView":10220, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":10221, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":10222, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":10223, + "componentType":5126, + "count":577, + "max":[ + 154.3369140625, + 104.50856018066406, + 160.6921844482422 + ], + "min":[ + -154.33766174316406, + 0.00014495849609375, + -160.69229125976562 + ], + "type":"VEC3" + }, + { + "bufferView":10224, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":10225, + "componentType":5126, + "count":584, + "max":[ + 194.32528686523438, + 200.99667358398438, + 163.17037963867188 + ], + "min":[ + -194.32896423339844, + 1.35516357421875, + -175.45172119140625 + ], + "type":"VEC3" + }, + { + "bufferView":10226, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":10227, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10228, + "componentType":5126, + "count":595, + "max":[ + 152.57525634765625, + 211.52609252929688, + 142.2879180908203 + ], + "min":[ + -145.36924743652344, + 30.935195922851562, + -130.35658264160156 + ], + "type":"VEC3" + }, + { + "bufferView":10229, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":10230, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10231, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10232, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10233, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10234, + "componentType":5126, + "count":24, + "max":[ + 110.00021362304688, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534164175624028, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":10235, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10236, + "componentType":5126, + "count":162, + "max":[ + 29.783203125, + 2198.236328125, + 21.07904052734375 + ], + "min":[ + -29.7822265625, + -0.00018310546875, + -21.0780029296875 + ], + "type":"VEC3" + }, + { + "bufferView":10237, + "componentType":5126, + "count":162, + "type":"VEC3" + }, + { + "bufferView":10238, + "componentType":5126, + "count":162, + "type":"VEC2" + }, + { + "bufferView":10239, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":10240, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":10241, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10242, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10243, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10244, + "componentType":5126, + "count":804, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45752716064453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":10245, + "componentType":5126, + "count":804, + "type":"VEC3" + }, + { + "bufferView":10246, + "componentType":5126, + "count":804, + "type":"VEC2" + }, + { + "bufferView":10247, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":10248, + "componentType":5126, + "count":346, + "max":[ + 171.298828125, + 184.80419921875, + 176.140625 + ], + "min":[ + -171.296875, + 44.45703125, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":10249, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":10250, + "componentType":5126, + "count":346, + "type":"VEC2" + }, + { + "bufferView":10251, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":10252, + "componentType":5126, + "count":1342, + "max":[ + 12.500038146972656, + 415.625, + 564.0625 + ], + "min":[ + -12.500024795532227, + -4.76837158203125e-07, + -564.0625 + ], + "type":"VEC3" + }, + { + "bufferView":10253, + "componentType":5126, + "count":1342, + "type":"VEC3" + }, + { + "bufferView":10254, + "componentType":5123, + "count":3780, + "type":"SCALAR" + }, + { + "bufferView":10255, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":10256, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":10257, + "componentType":5126, + "count":323, + "max":[ + 3.8607020378112793, + 15.442765235900879, + 7.72133207321167 + ], + "min":[ + -3.8606443405151367, + 8.296966552734375e-05, + -7.721349239349365 + ], + "type":"VEC3" + }, + { + "bufferView":10258, + "componentType":5126, + "count":323, + "type":"VEC3" + }, + { + "bufferView":10259, + "componentType":5126, + "count":323, + "type":"VEC2" + }, + { + "bufferView":10260, + "componentType":5126, + "count":96, + "max":[ + 212.81607055664062, + 929.9837646484375, + 1136.57421875 + ], + "min":[ + -212.81607055664062, + 0.000293731689453125, + -1136.57470703125 + ], + "type":"VEC3" + }, + { + "bufferView":10261, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":10262, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10263, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10264, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10265, + "componentType":5126, + "count":618, + "max":[ + 56.70086669921875, + 172.07470703125, + 23.860042572021484 + ], + "min":[ + -56.70069885253906, + 5.340576171875e-05, + -23.860008239746094 + ], + "type":"VEC3" + }, + { + "bufferView":10266, + "componentType":5126, + "count":618, + "type":"VEC3" + }, + { + "bufferView":10267, + "componentType":5126, + "count":618, + "type":"VEC2" + }, + { + "bufferView":10268, + "componentType":5126, + "count":24, + "max":[ + 516.6122436523438, + 50, + 7084.61572265625 + ], + "min":[ + -516.6124877929688, + -7.62939453125e-06, + -7084.61572265625 + ], + "type":"VEC3" + }, + { + "bufferView":10269, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10270, + "componentType":5126, + "count":559, + "max":[ + 223.19972229003906, + 446.3994140625, + 224.27151489257812 + ], + "min":[ + -223.19969177246094, + 1.52587890625e-05, + -224.27151489257812 + ], + "type":"VEC3" + }, + { + "bufferView":10271, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":10272, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":10273, + "componentType":5126, + "count":384, + "max":[ + 29.244140625, + 2882.534912109375, + 5200.28515625 + ], + "min":[ + -29.2431640625, + 0, + -5200.28369140625 + ], + "type":"VEC3" + }, + { + "bufferView":10274, + "componentType":5126, + "count":384, + "type":"VEC3" + }, + { + "bufferView":10275, + "componentType":5126, + "count":384, + "type":"VEC2" + }, + { + "bufferView":10276, + "componentType":5126, + "count":584, + "max":[ + 180.31166076660156, + 185.82171630859375, + 157.174072265625 + ], + "min":[ + -180.3135223388672, + 0.0001678466796875, + -157.17410278320312 + ], + "type":"VEC3" + }, + { + "bufferView":10277, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":10278, + "componentType":5126, + "count":582, + "max":[ + 175.37606811523438, + 113.54014587402344, + 178.9110565185547 + ], + "min":[ + -168.17123413085938, + 0.721710205078125, + -178.9112548828125 + ], + "type":"VEC3" + }, + { + "bufferView":10279, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":10280, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10281, + "componentType":5126, + "count":802, + "max":[ + 4.130859375, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":10282, + "componentType":5126, + "count":802, + "type":"VEC3" + }, + { + "bufferView":10283, + "componentType":5126, + "count":802, + "type":"VEC2" + }, + { + "bufferView":10284, + "componentType":5126, + "count":598, + "max":[ + 198.53025817871094, + 32.825233459472656, + 198.53147888183594 + ], + "min":[ + -198.53277587890625, + 6.4849853515625e-05, + -198.53155517578125 + ], + "type":"VEC3" + }, + { + "bufferView":10285, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":10286, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.5849609375 + ], + "min":[ + -46.2841796875, + 0, + -78.58642578125 + ], + "type":"VEC3" + }, + { + "bufferView":10287, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10288, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10289, + "componentType":5126, + "count":572, + "max":[ + 197.13157653808594, + 32.82522201538086, + 197.12991333007812 + ], + "min":[ + -197.12852478027344, + 9.5367431640625e-05, + -197.13023376464844 + ], + "type":"VEC3" + }, + { + "bufferView":10290, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":10291, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10292, + "componentType":5126, + "count":139, + "max":[ + 80.153076171875, + 126.6884765625, + 49.034912109375 + ], + "min":[ + -80.153076171875, + 0, + -49.035400390625 + ], + "type":"VEC3" + }, + { + "bufferView":10293, + "componentType":5126, + "count":139, + "type":"VEC3" + }, + { + "bufferView":10294, + "componentType":5126, + "count":139, + "type":"VEC2" + }, + { + "bufferView":10295, + "componentType":5126, + "count":682, + "max":[ + 134.3154296875, + 2974.83349609375, + 130.721435546875 + ], + "min":[ + -134.3154296875, + 0, + -130.72096252441406 + ], + "type":"VEC3" + }, + { + "bufferView":10296, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":10297, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":10298, + "componentType":5126, + "count":229, + "max":[ + 105.801025390625, + 2059.5048828125, + 105.79638671875 + ], + "min":[ + -105.79833984375, + 0, + -105.798828125 + ], + "type":"VEC3" + }, + { + "bufferView":10299, + "componentType":5126, + "count":229, + "type":"VEC3" + }, + { + "bufferView":10300, + "componentType":5126, + "count":229, + "type":"VEC2" + }, + { + "bufferView":10301, + "componentType":5126, + "count":589, + "max":[ + 164.1466827392578, + 237.33001708984375, + 147.47808837890625 + ], + "min":[ + -171.35311889648438, + 34.85478973388672, + -159.40992736816406 + ], + "type":"VEC3" + }, + { + "bufferView":10302, + "componentType":5126, + "count":589, + "type":"VEC3" + }, + { + "bufferView":10303, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":10304, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10305, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10306, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.45458984375, + 30.22265625 + ], + "min":[ + -3.62353515625, + 0, + -30.2216796875 + ], + "type":"VEC3" + }, + { + "bufferView":10307, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":10308, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":10309, + "componentType":5126, + "count":24, + "max":[ + 110.00007629394531, + 50, + 481.646484375 + ], + "min":[ + -110.00011444091797, + 0, + -481.6465148925781 + ], + "type":"VEC3" + }, + { + "bufferView":10310, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10311, + "componentType":5126, + "count":340, + "max":[ + 115.35126495361328, + 230.7025146484375, + 13.560844421386719 + ], + "min":[ + -115.3511962890625, + 3.0517578125e-05, + -13.560531616210938 + ], + "type":"VEC3" + }, + { + "bufferView":10312, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":10313, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":10314, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10315, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10316, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10317, + "componentType":5126, + "count":817, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45655059814453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":10318, + "componentType":5126, + "count":817, + "type":"VEC3" + }, + { + "bufferView":10319, + "componentType":5126, + "count":817, + "type":"VEC2" + }, + { + "bufferView":10320, + "componentType":5126, + "count":1050, + "max":[ + 90.1090087890625, + 76.19921875, + 125.22607421875 + ], + "min":[ + -90.109130859375, + 0, + -125.22607421875 + ], + "type":"VEC3" + }, + { + "bufferView":10321, + "componentType":5126, + "count":1050, + "type":"VEC3" + }, + { + "bufferView":10322, + "componentType":5126, + "count":1050, + "type":"VEC2" + }, + { + "bufferView":10323, + "componentType":5126, + "count":217, + "max":[ + 33.40234375, + 133.60888671875, + 66.80322265625 + ], + "min":[ + -33.402099609375, + 0, + -66.80517578125 + ], + "type":"VEC3" + }, + { + "bufferView":10324, + "componentType":5126, + "count":217, + "type":"VEC3" + }, + { + "bufferView":10325, + "componentType":5126, + "count":217, + "type":"VEC2" + }, + { + "bufferView":10326, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":10327, + "componentType":5126, + "count":796, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45850372314453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45459747314453 + ], + "type":"VEC3" + }, + { + "bufferView":10328, + "componentType":5126, + "count":796, + "type":"VEC3" + }, + { + "bufferView":10329, + "componentType":5126, + "count":796, + "type":"VEC2" + }, + { + "bufferView":10330, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":10331, + "componentType":5126, + "count":156, + "max":[ + 769.70751953125, + 113.19482421875, + 56.59619140625 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.59765625 + ], + "type":"VEC3" + }, + { + "bufferView":10332, + "componentType":5126, + "count":156, + "type":"VEC3" + }, + { + "bufferView":10333, + "componentType":5126, + "count":156, + "type":"VEC2" + }, + { + "bufferView":10334, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":10335, + "componentType":5126, + "count":72, + "max":[ + 22.50006103515625, + 1492.539794921875, + 771.3447875976562 + ], + "min":[ + -22.500253677368164, + 0, + -771.34619140625 + ], + "type":"VEC3" + }, + { + "bufferView":10336, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":10337, + "componentType":5126, + "count":1420, + "max":[ + 433.12109375, + 367.9293212890625, + 90.00634765625 + ], + "min":[ + -433.119140625, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":10338, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":10339, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":10340, + "componentType":5126, + "count":76, + "max":[ + 278.86810302734375, + 3543.081787109375, + 279.1005859375 + ], + "min":[ + -278.86895751953125, + 0, + -279.10284423828125 + ], + "type":"VEC3" + }, + { + "bufferView":10341, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":10342, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":10343, + "componentType":5126, + "count":92, + "max":[ + 22.05126953125, + 77.63671875, + 30.45068359375 + ], + "min":[ + -22.05078125, + -0.00048828125, + -30.449951171875 + ], + "type":"VEC3" + }, + { + "bufferView":10344, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":10345, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":10346, + "componentType":5126, + "count":594, + "max":[ + 148.05227661132812, + 215.2120819091797, + 132.8024444580078 + ], + "min":[ + -155.25723266601562, + 31.4947509765625, + -144.7340087890625 + ], + "type":"VEC3" + }, + { + "bufferView":10347, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":10348, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10349, + "componentType":5126, + "count":24, + "max":[ + 110.00011444091797, + 50, + 584.662109375 + ], + "min":[ + -110.00007629394531, + 0, + -584.666015625 + ], + "type":"VEC3" + }, + { + "bufferView":10350, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10351, + "componentType":5126, + "count":211, + "max":[ + 33.40234375, + 133.60888671875, + 66.80419921875 + ], + "min":[ + -33.402099609375, + 0, + -66.804443359375 + ], + "type":"VEC3" + }, + { + "bufferView":10352, + "componentType":5126, + "count":211, + "type":"VEC3" + }, + { + "bufferView":10353, + "componentType":5126, + "count":211, + "type":"VEC2" + }, + { + "bufferView":10354, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":10355, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10356, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10357, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10358, + "componentType":5126, + "count":1020, + "max":[ + 831.5458984375, + 116.23333740234375, + 746.10498046875 + ], + "min":[ + -831.5458984375, + 5.7220458984375e-05, + -746.10205078125 + ], + "type":"VEC3" + }, + { + "bufferView":10359, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":10360, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":10361, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10362, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10363, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10364, + "componentType":5126, + "count":340, + "max":[ + 45.856773376464844, + 228.16909790039062, + 115.62035369873047 + ], + "min":[ + -45.858154296875, + -7.62939453125e-05, + -115.62034606933594 + ], + "type":"VEC3" + }, + { + "bufferView":10365, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":10366, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10367, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10368, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10369, + "componentType":5126, + "count":76, + "max":[ + 279.1028137207031, + 3543.081787109375, + 278.86810302734375 + ], + "min":[ + -279.1005859375, + 0, + -278.8689270019531 + ], + "type":"VEC3" + }, + { + "bufferView":10370, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":10371, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":10372, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":10373, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":10374, + "componentType":5126, + "count":125, + "max":[ + 3.8607170581817627, + 15.442764282226562, + 7.721338748931885 + ], + "min":[ + -3.860625743865967, + 8.249282836914062e-05, + -7.721341609954834 + ], + "type":"VEC3" + }, + { + "bufferView":10375, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":10376, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":10377, + "componentType":5126, + "count":584, + "max":[ + 176.21644592285156, + 253.91867065429688, + 158.48477172851562 + ], + "min":[ + -183.4259796142578, + 37.374969482421875, + -170.4167938232422 + ], + "type":"VEC3" + }, + { + "bufferView":10378, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":10379, + "componentType":5126, + "count":24, + "max":[ + 15.474609375, + 2142.8671875, + 381.68865966796875 + ], + "min":[ + -15.4755859375, + 0, + -381.68475341796875 + ], + "type":"VEC3" + }, + { + "bufferView":10380, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10381, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10382, + "componentType":5126, + "count":343, + "max":[ + 170.90625, + 157.00146484375, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":10383, + "componentType":5126, + "count":343, + "type":"VEC3" + }, + { + "bufferView":10384, + "componentType":5126, + "count":343, + "type":"VEC2" + }, + { + "bufferView":10385, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51422119140625, + 22.7297420501709 + ], + "min":[ + -43.587890625, + 5.7220458984375e-05, + -22.725955963134766 + ], + "type":"VEC3" + }, + { + "bufferView":10386, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":10387, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":10388, + "componentType":5126, + "count":570, + "max":[ + 181.16346740722656, + 117.29295349121094, + 188.72120666503906 + ], + "min":[ + -181.1614990234375, + -0.0001373291015625, + -188.72146606445312 + ], + "type":"VEC3" + }, + { + "bufferView":10389, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":10390, + "componentType":5126, + "count":72, + "max":[ + 22.499942779541016, + 1492.539794921875, + 771.346435546875 + ], + "min":[ + -22.5002384185791, + 0.00030517578125, + -771.3448486328125 + ], + "type":"VEC3" + }, + { + "bufferView":10391, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":10392, + "componentType":5126, + "count":114, + "max":[ + 31.293132781982422, + 15.51094913482666, + 6.50299072265625 + ], + "min":[ + -31.293136596679688, + 8.869171142578125e-05, + -6.502105712890625 + ], + "type":"VEC3" + }, + { + "bufferView":10393, + "componentType":5126, + "count":114, + "type":"VEC3" + }, + { + "bufferView":10394, + "componentType":5126, + "count":114, + "type":"VEC2" + }, + { + "bufferView":10395, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":10396, + "componentType":5126, + "count":592, + "max":[ + 190.123779296875, + 32.82526779174805, + 190.12266540527344 + ], + "min":[ + -190.12181091308594, + 6.866455078125e-05, + -190.1229248046875 + ], + "type":"VEC3" + }, + { + "bufferView":10397, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":10398, + "componentType":5126, + "count":820, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45752716064453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":10399, + "componentType":5126, + "count":820, + "type":"VEC3" + }, + { + "bufferView":10400, + "componentType":5126, + "count":820, + "type":"VEC2" + }, + { + "bufferView":10401, + "componentType":5126, + "count":582, + "max":[ + 201.33372497558594, + 206.5514373779297, + 175.37945556640625 + ], + "min":[ + -201.3351287841797, + -6.103515625e-05, + -175.37960815429688 + ], + "type":"VEC3" + }, + { + "bufferView":10402, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":10403, + "componentType":5126, + "count":125, + "max":[ + 3.8607170581817627, + 15.442764282226562, + 7.721338748931885 + ], + "min":[ + -3.860625743865967, + 8.249282836914062e-05, + -7.721341609954834 + ], + "type":"VEC3" + }, + { + "bufferView":10404, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":10405, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":10406, + "componentType":5126, + "count":112, + "max":[ + 147.9833526611328, + 382.5119934082031, + 170.07504272460938 + ], + "min":[ + -147.98110961914062, + -1.52587890625e-05, + -170.07574462890625 + ], + "type":"VEC3" + }, + { + "bufferView":10407, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":10408, + "componentType":5126, + "count":4980, + "max":[ + 84.5299072265625, + 1089.08251953125, + 84.720947265625 + ], + "min":[ + -84.52813720703125, + 0, + -84.72113037109375 + ], + "type":"VEC3" + }, + { + "bufferView":10409, + "componentType":5126, + "count":4980, + "type":"VEC3" + }, + { + "bufferView":10410, + "componentType":5126, + "count":4980, + "type":"VEC2" + }, + { + "bufferView":10411, + "componentType":5123, + "count":11976, + "type":"SCALAR" + }, + { + "bufferView":10412, + "componentType":5126, + "count":578, + "max":[ + 199.20542907714844, + 285.50927734375, + 179.4459228515625 + ], + "min":[ + -206.41366577148438, + 42.174072265625, + -191.37774658203125 + ], + "type":"VEC3" + }, + { + "bufferView":10413, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":10414, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10415, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":10416, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":10417, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":10418, + "componentType":5126, + "count":238, + "max":[ + 91.49446105957031, + 2020.3758544921875, + 618.0626220703125 + ], + "min":[ + -91.49473571777344, + 1.52587890625e-05, + -618.0628051757812 + ], + "type":"VEC3" + }, + { + "bufferView":10419, + "componentType":5126, + "count":238, + "type":"VEC3" + }, + { + "bufferView":10420, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":10421, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":10422, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":10423, + "componentType":5126, + "count":328, + "max":[ + 170.9052734375, + 157.003173828125, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.2880859375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":10424, + "componentType":5126, + "count":328, + "type":"VEC3" + }, + { + "bufferView":10425, + "componentType":5126, + "count":328, + "type":"VEC2" + }, + { + "bufferView":10426, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10427, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10428, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10429, + "componentType":5126, + "count":323, + "max":[ + 3.8607194423675537, + 15.442765235900879, + 7.721343517303467 + ], + "min":[ + -3.8606269359588623, + 8.296966552734375e-05, + -7.721337795257568 + ], + "type":"VEC3" + }, + { + "bufferView":10430, + "componentType":5126, + "count":323, + "type":"VEC3" + }, + { + "bufferView":10431, + "componentType":5126, + "count":323, + "type":"VEC2" + }, + { + "bufferView":10432, + "componentType":5126, + "count":24, + "max":[ + 13.57373046875, + 1879.529541015625, + 334.78125 + ], + "min":[ + -13.5732421875, + 0, + -334.78076171875 + ], + "type":"VEC3" + }, + { + "bufferView":10433, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10434, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10435, + "componentType":5126, + "count":92, + "max":[ + 34.716796875, + 88.515625, + 25.14129638671875 + ], + "min":[ + -34.716796875, + 0.000244140625, + -25.14013671875 + ], + "type":"VEC3" + }, + { + "bufferView":10436, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":10437, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":10438, + "componentType":5126, + "count":572, + "max":[ + 148.07968139648438, + 155.0575408935547, + 135.3996124267578 + ], + "min":[ + -148.07859802246094, + 1.021881103515625, + -123.11851501464844 + ], + "type":"VEC3" + }, + { + "bufferView":10439, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":10440, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10441, + "componentType":5126, + "count":598, + "max":[ + 164.89663696289062, + 170.61961364746094, + 143.8233642578125 + ], + "min":[ + -164.8965301513672, + -0.000152587890625, + -143.82342529296875 + ], + "type":"VEC3" + }, + { + "bufferView":10442, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":10443, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10444, + "componentType":5126, + "count":76, + "max":[ + 279.1010437011719, + 3543.081787109375, + 278.8670349121094 + ], + "min":[ + -279.0986328125, + 0, + -278.8664245605469 + ], + "type":"VEC3" + }, + { + "bufferView":10445, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":10446, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":10447, + "componentType":5126, + "count":1020, + "max":[ + 831.5458984375, + 116.23333740234375, + 746.10400390625 + ], + "min":[ + -831.5458984375, + 5.7220458984375e-05, + -746.1015625 + ], + "type":"VEC3" + }, + { + "bufferView":10448, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":10449, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":10450, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":10451, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10452, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10453, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10454, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10455, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10456, + "componentType":5126, + "count":1660, + "max":[ + 433.12109375, + 367.9293212890625, + 90.005859375 + ], + "min":[ + -433.119140625, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":10457, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":10458, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":10459, + "componentType":5126, + "count":8099, + "max":[ + 103.78759765625, + 429.962890625, + 496.1484375 + ], + "min":[ + -103.78662109375, + 0.0009765625, + -496.148681640625 + ], + "type":"VEC3" + }, + { + "bufferView":10460, + "componentType":5126, + "count":8099, + "type":"VEC3" + }, + { + "bufferView":10461, + "componentType":5126, + "count":8099, + "type":"VEC2" + }, + { + "bufferView":10462, + "componentType":5126, + "count":48, + "max":[ + 123.61328125, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.615234375, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":10463, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":10464, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":10465, + "componentType":5126, + "count":588, + "max":[ + 191.5255126953125, + 32.82521057128906, + 191.52410888671875 + ], + "min":[ + -191.5229949951172, + 1.1444091796875e-05, + -191.5244140625 + ], + "type":"VEC3" + }, + { + "bufferView":10466, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":10467, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10468, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":10469, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10470, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4556884765625, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":10471, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":10472, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":10473, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + 0.000118255615234375, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":10474, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":10475, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":10476, + "componentType":5126, + "count":568, + "max":[ + 153.6865997314453, + 160.62615966796875, + 140.25424194335938 + ], + "min":[ + -153.68331909179688, + 1.0626068115234375, + -127.97352600097656 + ], + "type":"VEC3" + }, + { + "bufferView":10477, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":10478, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10479, + "componentType":5126, + "count":590, + "max":[ + 192.61654663085938, + 276.45672607421875, + 173.439208984375 + ], + "min":[ + -199.82736206054688, + 40.79896545410156, + -185.37115478515625 + ], + "type":"VEC3" + }, + { + "bufferView":10480, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":10481, + "componentType":5126, + "count":797, + "max":[ + 4.13232421875, + 90.58753204345703, + 34.45850372314453 + ], + "min":[ + -4.13232421875, + -7.62939453125e-06, + -34.45459747314453 + ], + "type":"VEC3" + }, + { + "bufferView":10482, + "componentType":5126, + "count":797, + "type":"VEC3" + }, + { + "bufferView":10483, + "componentType":5126, + "count":797, + "type":"VEC2" + }, + { + "bufferView":10484, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":10485, + "componentType":5126, + "count":118, + "max":[ + 31.290645599365234, + 15.510940551757812, + 6.1126251220703125 + ], + "min":[ + -31.290639877319336, + -1.430511474609375e-06, + -6.112091064453125 + ], + "type":"VEC3" + }, + { + "bufferView":10486, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":10487, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":10488, + "componentType":5126, + "count":1022, + "max":[ + 125.22607421875, + 76.19921875, + 90.10888671875 + ], + "min":[ + -125.22607421875, + 0, + -90.10888671875 + ], + "type":"VEC3" + }, + { + "bufferView":10489, + "componentType":5126, + "count":1022, + "type":"VEC3" + }, + { + "bufferView":10490, + "componentType":5126, + "count":1022, + "type":"VEC2" + }, + { + "bufferView":10491, + "componentType":5126, + "count":165, + "max":[ + 769.70751953125, + 113.194580078125, + 56.59765625 + ], + "min":[ + -769.709228515625, + 0, + -56.596923828125 + ], + "type":"VEC3" + }, + { + "bufferView":10492, + "componentType":5126, + "count":165, + "type":"VEC3" + }, + { + "bufferView":10493, + "componentType":5126, + "count":165, + "type":"VEC2" + }, + { + "bufferView":10494, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":10495, + "componentType":5126, + "count":107, + "max":[ + 24.40625, + 122.798828125, + 61.5908203125 + ], + "min":[ + -24.41796875, + -0.001251220703125, + -61.5849609375 + ], + "type":"VEC3" + }, + { + "bufferView":10496, + "componentType":5126, + "count":107, + "type":"VEC3" + }, + { + "bufferView":10497, + "componentType":5126, + "count":107, + "type":"VEC2" + }, + { + "bufferView":10498, + "componentType":5123, + "count":144, + "type":"SCALAR" + }, + { + "bufferView":10499, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10500, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10501, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10502, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":10503, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":10504, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":10505, + "componentType":5126, + "count":579, + "max":[ + 163.72756958007812, + 197.78558349609375, + 149.77508544921875 + ], + "min":[ + -163.72467041015625, + -0.00018310546875, + -149.7750701904297 + ], + "type":"VEC3" + }, + { + "bufferView":10506, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":10507, + "componentType":5126, + "count":572, + "max":[ + 197.12852478027344, + 32.82524108886719, + 197.12991333007812 + ], + "min":[ + -197.13157653808594, + 9.5367431640625e-05, + -197.13023376464844 + ], + "type":"VEC3" + }, + { + "bufferView":10508, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":10509, + "componentType":5126, + "count":583, + "max":[ + 150.8831329345703, + 157.842041015625, + 137.82708740234375 + ], + "min":[ + -150.88096618652344, + 1.0424041748046875, + -125.54588317871094 + ], + "type":"VEC3" + }, + { + "bufferView":10510, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":10511, + "componentType":5126, + "count":4912, + "max":[ + 84.52813720703125, + 1004.792724609375, + 84.72056579589844 + ], + "min":[ + -84.5299072265625, + 0.000244140625, + -84.72152709960938 + ], + "type":"VEC3" + }, + { + "bufferView":10512, + "componentType":5126, + "count":4912, + "type":"VEC3" + }, + { + "bufferView":10513, + "componentType":5126, + "count":4912, + "type":"VEC2" + }, + { + "bufferView":10514, + "componentType":5123, + "count":11976, + "type":"SCALAR" + }, + { + "bufferView":10515, + "componentType":5126, + "count":586, + "max":[ + 179.82191467285156, + 116.65388488769531, + 187.3198699951172 + ], + "min":[ + -179.8205108642578, + -3.0517578125e-05, + -187.3199005126953 + ], + "type":"VEC3" + }, + { + "bufferView":10516, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":10517, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10518, + "componentType":5126, + "count":229, + "max":[ + 172.59716796875, + 185.23583984375, + 169.0703125 + ], + "min":[ + -172.596923828125, + 0, + -169.0703125 + ], + "type":"VEC3" + }, + { + "bufferView":10519, + "componentType":5126, + "count":229, + "type":"VEC3" + }, + { + "bufferView":10520, + "componentType":5126, + "count":229, + "type":"VEC2" + }, + { + "bufferView":10521, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":10522, + "componentType":5126, + "count":586, + "max":[ + 173.30691528320312, + 32.82530975341797, + 173.3052520751953 + ], + "min":[ + -173.3037109375, + 9.1552734375e-05, + -173.30545043945312 + ], + "type":"VEC3" + }, + { + "bufferView":10523, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":10524, + "componentType":5126, + "count":580, + "max":[ + 157.94313049316406, + 218.8985137939453, + 147.17994689941406 + ], + "min":[ + -150.73143005371094, + 32.054901123046875, + -135.24842834472656 + ], + "type":"VEC3" + }, + { + "bufferView":10525, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":10526, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10527, + "componentType":5126, + "count":576, + "max":[ + 156.4861602783203, + 162.32781982421875, + 136.5413055419922 + ], + "min":[ + -156.4895782470703, + 0.00017547607421875, + -136.5412139892578 + ], + "type":"VEC3" + }, + { + "bufferView":10528, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":10529, + "componentType":5126, + "count":24, + "max":[ + 584.6640625, + 50.00001525878906, + 110.00007629394531 + ], + "min":[ + -584.6640625, + -1.660953785176389e-05, + -110.00010681152344 + ], + "type":"VEC3" + }, + { + "bufferView":10530, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10531, + "componentType":5126, + "count":684, + "max":[ + 150.83128356933594, + 268.3347473144531, + 147.6683807373047 + ], + "min":[ + -150.833984375, + 28.938995361328125, + -147.66824340820312 + ], + "type":"VEC3" + }, + { + "bufferView":10532, + "componentType":5126, + "count":684, + "type":"VEC3" + }, + { + "bufferView":10533, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":10534, + "componentType":5126, + "count":576, + "max":[ + 177.50819396972656, + 184.2915802001953, + 160.88734436035156 + ], + "min":[ + -177.5111541748047, + 1.234039306640625, + -148.6060333251953 + ], + "type":"VEC3" + }, + { + "bufferView":10535, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":10536, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10537, + "componentType":5126, + "count":230, + "max":[ + 169.0634765625, + 193.254638671875, + 174.40771484375 + ], + "min":[ + -169.0625, + 0, + -174.408203125 + ], + "type":"VEC3" + }, + { + "bufferView":10538, + "componentType":5126, + "count":230, + "type":"VEC3" + }, + { + "bufferView":10539, + "componentType":5126, + "count":230, + "type":"VEC2" + }, + { + "bufferView":10540, + "componentType":5126, + "count":24, + "max":[ + 486.489990234375, + 33.601806640625, + 189.232421875 + ], + "min":[ + -486.48974609375, + 0.0009765625, + -189.23046875 + ], + "type":"VEC3" + }, + { + "bufferView":10541, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10542, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10543, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":10544, + "componentType":5126, + "count":588, + "max":[ + 202.73544311523438, + 32.82524108886719, + 202.7357177734375 + ], + "min":[ + -202.73629760742188, + 9.918212890625e-05, + -202.73605346679688 + ], + "type":"VEC3" + }, + { + "bufferView":10545, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":10546, + "componentType":5126, + "count":24, + "max":[ + 110.00007629394531, + 50, + 481.6465148925781 + ], + "min":[ + -110.00010681152344, + 0, + -481.6465148925781 + ], + "type":"VEC3" + }, + { + "bufferView":10547, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10548, + "componentType":5126, + "count":590, + "max":[ + 194.32896423339844, + 199.64170837402344, + 169.31101989746094 + ], + "min":[ + -194.32528686523438, + 0.00019073486328125, + -169.3110809326172 + ], + "type":"VEC3" + }, + { + "bufferView":10549, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":10550, + "componentType":5126, + "count":158, + "max":[ + 437.3779296875, + 12069.2890625, + 19.6142578125 + ], + "min":[ + -437.3779296875, + 0.000640869140625, + -19.6142578125 + ], + "type":"VEC3" + }, + { + "bufferView":10551, + "componentType":5126, + "count":158, + "type":"VEC3" + }, + { + "bufferView":10552, + "componentType":5126, + "count":158, + "type":"VEC2" + }, + { + "bufferView":10553, + "componentType":5126, + "count":340, + "max":[ + 45.85672378540039, + 271.12908935546875, + 115.62039947509766 + ], + "min":[ + -45.85814666748047, + 42.95982360839844, + -115.62028503417969 + ], + "type":"VEC3" + }, + { + "bufferView":10554, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":10555, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":10556, + "componentType":5126, + "count":48, + "max":[ + 756.6087036132812, + 2198.73388671875, + 58.38346862792969 + ], + "min":[ + -756.610107421875, + 0, + -58.38273620605469 + ], + "type":"VEC3" + }, + { + "bufferView":10557, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":10558, + "componentType":5126, + "count":600, + "max":[ + 151.23428344726562, + 209.68272399902344, + 141.0649871826172 + ], + "min":[ + -144.02772521972656, + 30.654891967773438, + -129.13372802734375 + ], + "type":"VEC3" + }, + { + "bufferView":10559, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":10560, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10561, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":10562, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":10563, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":10564, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10565, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10566, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10567, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":10568, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10569, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10570, + "componentType":5126, + "count":372, + "max":[ + 29.244140625, + 2898.5703125, + 5033.95361328125 + ], + "min":[ + -29.2421875, + 0.00146484375, + -5033.951171875 + ], + "type":"VEC3" + }, + { + "bufferView":10571, + "componentType":5126, + "count":372, + "type":"VEC3" + }, + { + "bufferView":10572, + "componentType":5126, + "count":372, + "type":"VEC2" + }, + { + "bufferView":10573, + "componentType":5126, + "count":232, + "max":[ + 174.40771484375, + 193.254638671875, + 169.062744140625 + ], + "min":[ + -174.408203125, + 0, + -169.06298828125 + ], + "type":"VEC3" + }, + { + "bufferView":10574, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":10575, + "componentType":5126, + "count":232, + "type":"VEC2" + }, + { + "bufferView":10576, + "componentType":5126, + "count":590, + "max":[ + 163.7275848388672, + 108.98304748535156, + 170.50233459472656 + ], + "min":[ + -163.7246551513672, + 1.52587890625e-05, + -170.50250244140625 + ], + "type":"VEC3" + }, + { + "bufferView":10577, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":10578, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10579, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.143798828125, + 360.897216796875 + ], + "min":[ + -8.345703125, + -0.00048828125, + -360.8974609375 + ], + "type":"VEC3" + }, + { + "bufferView":10580, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":10581, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":10582, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4544677734375, + 30.22265625 + ], + "min":[ + -3.62353515625, + 0, + -30.2216796875 + ], + "type":"VEC3" + }, + { + "bufferView":10583, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":10584, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":10585, + "componentType":5126, + "count":809, + "max":[ + 4.130859375, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":10586, + "componentType":5126, + "count":809, + "type":"VEC3" + }, + { + "bufferView":10587, + "componentType":5126, + "count":809, + "type":"VEC2" + }, + { + "bufferView":10588, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":10589, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58544921875 + ], + "min":[ + -46.284423828125, + 0, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":10590, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10591, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10592, + "componentType":5126, + "count":574, + "max":[ + 197.12852478027344, + 202.405517578125, + 171.73837280273438 + ], + "min":[ + -197.13157653808594, + 3.0517578125e-05, + -171.73849487304688 + ], + "type":"VEC3" + }, + { + "bufferView":10593, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":10594, + "componentType":5126, + "count":570, + "max":[ + 181.16346740722656, + 117.29295349121094, + 188.72132873535156 + ], + "min":[ + -181.1614990234375, + -0.0001373291015625, + -188.72134399414062 + ], + "type":"VEC3" + }, + { + "bufferView":10595, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":10596, + "componentType":5126, + "count":572, + "max":[ + 197.12852478027344, + 32.82524108886719, + 197.13003540039062 + ], + "min":[ + -197.13157653808594, + 9.5367431640625e-05, + -197.13011169433594 + ], + "type":"VEC3" + }, + { + "bufferView":10597, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":10598, + "componentType":5126, + "count":576, + "max":[ + 195.7303924560547, + 32.82522201538086, + 195.7284698486328 + ], + "min":[ + -195.72679138183594, + 9.5367431640625e-05, + -195.7287139892578 + ], + "type":"VEC3" + }, + { + "bufferView":10599, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":10600, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10601, + "componentType":5126, + "count":208, + "max":[ + 33.402587890625, + 133.6083984375, + 66.80419921875 + ], + "min":[ + -33.4019775390625, + 0, + -66.804443359375 + ], + "type":"VEC3" + }, + { + "bufferView":10602, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":10603, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":10604, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.455810546875, + 30.22265625 + ], + "min":[ + -3.62353515625, + 0, + -30.2216796875 + ], + "type":"VEC3" + }, + { + "bufferView":10605, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":10606, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":10607, + "componentType":5126, + "count":224, + "max":[ + 115.35126495361328, + 230.7025146484375, + 118.72059631347656 + ], + "min":[ + -115.3512191772461, + 2.288818359375e-05, + -118.72098541259766 + ], + "type":"VEC3" + }, + { + "bufferView":10608, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":10609, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":10610, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10611, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10612, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10613, + "componentType":5126, + "count":820, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45655059814453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":10614, + "componentType":5126, + "count":820, + "type":"VEC3" + }, + { + "bufferView":10615, + "componentType":5126, + "count":820, + "type":"VEC2" + }, + { + "bufferView":10616, + "componentType":5126, + "count":1053, + "max":[ + 90.109375, + 76.19921875, + 125.22607421875 + ], + "min":[ + -90.10888671875, + 0, + -125.22607421875 + ], + "type":"VEC3" + }, + { + "bufferView":10617, + "componentType":5126, + "count":1053, + "type":"VEC3" + }, + { + "bufferView":10618, + "componentType":5126, + "count":1053, + "type":"VEC2" + }, + { + "bufferView":10619, + "componentType":5126, + "count":24, + "max":[ + 46.29056930541992, + 2000, + 46.29056930541992 + ], + "min":[ + -46.29056930541992, + 0, + -46.29056930541992 + ], + "type":"VEC3" + }, + { + "bufferView":10620, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10621, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":10622, + "componentType":5126, + "count":1322, + "max":[ + 4857.8447265625, + 790.028564453125, + 49.9814453125 + ], + "min":[ + -4857.8466796875, + -0.000244140625, + -49.98291015625 + ], + "type":"VEC3" + }, + { + "bufferView":10623, + "componentType":5126, + "count":1322, + "type":"VEC3" + }, + { + "bufferView":10624, + "componentType":5126, + "count":1322, + "type":"VEC2" + }, + { + "bufferView":10625, + "componentType":5123, + "count":2520, + "type":"SCALAR" + }, + { + "bufferView":10626, + "componentType":5126, + "count":566, + "max":[ + 153.6865997314453, + 32.82521057128906, + 153.6849365234375 + ], + "min":[ + -153.68331909179688, + 1.52587890625e-05, + -153.68499755859375 + ], + "type":"VEC3" + }, + { + "bufferView":10627, + "componentType":5126, + "count":566, + "type":"VEC3" + }, + { + "bufferView":10628, + "componentType":5126, + "count":1420, + "max":[ + 245.234375, + 367.92938232421875, + 384.1416015625 + ], + "min":[ + -245.232421875, + 0, + -384.1381530761719 + ], + "type":"VEC3" + }, + { + "bufferView":10629, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":10630, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":10631, + "componentType":5126, + "count":224, + "max":[ + 118.72059631347656, + 272.6591491699219, + 115.08651733398438 + ], + "min":[ + -118.72098541259766, + 42.48627471923828, + -115.08641052246094 + ], + "type":"VEC3" + }, + { + "bufferView":10632, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":10633, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51410675048828, + 43.589359283447266 + ], + "min":[ + -22.728515625, + -7.62939453125e-06, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":10634, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":10635, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":10636, + "componentType":5126, + "count":128, + "max":[ + 14.75390625, + 1869.349365234375, + 14.754638671875 + ], + "min":[ + -14.75390625, + -0.00054931640625, + -14.753173828125 + ], + "type":"VEC3" + }, + { + "bufferView":10637, + "componentType":5126, + "count":128, + "type":"VEC3" + }, + { + "bufferView":10638, + "componentType":5126, + "count":128, + "type":"VEC2" + }, + { + "bufferView":10639, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10640, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10641, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10642, + "componentType":5126, + "count":288, + "max":[ + 12512.609375, + 916.6832885742188, + 293.04132080078125 + ], + "min":[ + -12512.6064453125, + 6.103515625e-05, + -293.040283203125 + ], + "type":"VEC3" + }, + { + "bufferView":10643, + "componentType":5126, + "count":288, + "type":"VEC3" + }, + { + "bufferView":10644, + "componentType":5123, + "count":1572, + "type":"SCALAR" + }, + { + "bufferView":10645, + "componentType":5126, + "count":579, + "max":[ + 165.06910705566406, + 109.62261962890625, + 171.90379333496094 + ], + "min":[ + -165.06564331054688, + 0.000244140625, + -171.90396118164062 + ], + "type":"VEC3" + }, + { + "bufferView":10646, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":10647, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76666259765625, + 78.58642578125 + ], + "min":[ + -46.2822265625, + 0, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":10648, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10649, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10650, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10651, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10652, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10653, + "componentType":5126, + "count":76, + "max":[ + 279.1028137207031, + 3543.081787109375, + 278.86810302734375 + ], + "min":[ + -279.1005859375, + 0, + -278.8689270019531 + ], + "type":"VEC3" + }, + { + "bufferView":10654, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":10655, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":10656, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":10657, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10658, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10659, + "componentType":5126, + "count":40, + "max":[ + 1.4143147468566895, + 10.517535209655762, + 5.258714199066162 + ], + "min":[ + -1.4143130779266357, + 6.0558319091796875e-05, + -5.258758544921875 + ], + "type":"VEC3" + }, + { + "bufferView":10660, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":10661, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":10662, + "componentType":5126, + "count":585, + "max":[ + 174.8749542236328, + 252.07574462890625, + 157.2618408203125 + ], + "min":[ + -182.08499145507812, + 37.095184326171875, + -169.19375610351562 + ], + "type":"VEC3" + }, + { + "bufferView":10663, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":10664, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10665, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51428985595703, + 43.590213775634766 + ], + "min":[ + -22.728515625, + 0.00011444091796875, + -43.587894439697266 + ], + "type":"VEC3" + }, + { + "bufferView":10666, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":10667, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":10668, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51410675048828, + 43.588871002197266 + ], + "min":[ + -22.7265625, + -7.62939453125e-06, + -43.589359283447266 + ], + "type":"VEC3" + }, + { + "bufferView":10669, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":10670, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":10671, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7297420501709 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.725955963134766 + ], + "type":"VEC3" + }, + { + "bufferView":10672, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":10673, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":10674, + "componentType":5126, + "count":90, + "max":[ + 63.2647705078125, + 120.08056640625, + 818.852783203125 + ], + "min":[ + -63.265380859375, + -0.000244140625, + -818.85302734375 + ], + "type":"VEC3" + }, + { + "bufferView":10675, + "componentType":5126, + "count":90, + "type":"VEC3" + }, + { + "bufferView":10676, + "componentType":5126, + "count":90, + "type":"VEC2" + }, + { + "bufferView":10677, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10678, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10679, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10680, + "componentType":5126, + "count":804, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45752716064453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":10681, + "componentType":5126, + "count":804, + "type":"VEC3" + }, + { + "bufferView":10682, + "componentType":5126, + "count":804, + "type":"VEC2" + }, + { + "bufferView":10683, + "componentType":5126, + "count":582, + "max":[ + 202.73544311523438, + 207.93344116210938, + 176.59315490722656 + ], + "min":[ + -202.73629760742188, + -4.57763671875e-05, + -176.59327697753906 + ], + "type":"VEC3" + }, + { + "bufferView":10684, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":10685, + "componentType":5126, + "count":76, + "max":[ + 279.1028137207031, + 3543.081787109375, + 278.8676452636719 + ], + "min":[ + -279.1002197265625, + 0, + -278.8695373535156 + ], + "type":"VEC3" + }, + { + "bufferView":10686, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":10687, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":10688, + "componentType":5126, + "count":340, + "max":[ + 115.14124298095703, + 210.2414093017578, + 69.11679077148438 + ], + "min":[ + -115.14115905761719, + 5.340576171875e-05, + -69.1158447265625 + ], + "type":"VEC3" + }, + { + "bufferView":10689, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":10690, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":10691, + "componentType":5126, + "count":6314, + "max":[ + 77.5799560546875, + 733.191650390625, + 309.2935791015625 + ], + "min":[ + -77.578125, + 0.000244140625, + -309.2938232421875 + ], + "type":"VEC3" + }, + { + "bufferView":10692, + "componentType":5126, + "count":6314, + "type":"VEC3" + }, + { + "bufferView":10693, + "componentType":5126, + "count":6314, + "type":"VEC2" + }, + { + "bufferView":10694, + "componentType":5126, + "count":580, + "max":[ + 197.5582275390625, + 283.2462463378906, + 177.9443359375 + ], + "min":[ + -204.76707458496094, + 41.83036804199219, + -189.87603759765625 + ], + "type":"VEC3" + }, + { + "bufferView":10695, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":10696, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10697, + "componentType":5126, + "count":606, + "max":[ + 325.56951904296875, + 504.617919921875, + 332.93994140625 + ], + "min":[ + -325.56951904296875, + 0.0001220703125, + -332.9397888183594 + ], + "type":"VEC3" + }, + { + "bufferView":10698, + "componentType":5126, + "count":606, + "type":"VEC3" + }, + { + "bufferView":10699, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10700, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10701, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10702, + "componentType":5126, + "count":1020, + "max":[ + 831.5458984375, + 116.2333984375, + 746.101806640625 + ], + "min":[ + -831.5458984375, + 0.000118255615234375, + -746.103271484375 + ], + "type":"VEC3" + }, + { + "bufferView":10703, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":10704, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":10705, + "componentType":5126, + "count":260, + "max":[ + 3.451836347579956, + 18.945335388183594, + 9.47275161743164 + ], + "min":[ + -3.451739549636841, + -0.00011920928955078125, + -9.472702980041504 + ], + "type":"VEC3" + }, + { + "bufferView":10706, + "componentType":5126, + "count":260, + "type":"VEC3" + }, + { + "bufferView":10707, + "componentType":5126, + "count":260, + "type":"VEC2" + }, + { + "bufferView":10708, + "componentType":5126, + "count":574, + "max":[ + 171.90518188476562, + 177.52947998046875, + 149.89190673828125 + ], + "min":[ + -171.9025421142578, + -0.000152587890625, + -149.89193725585938 + ], + "type":"VEC3" + }, + { + "bufferView":10709, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":10710, + "componentType":5126, + "count":559, + "max":[ + 19.802734375, + 2637.3974609375, + 722.721435546875 + ], + "min":[ + -19.802734375, + 0, + -722.720947265625 + ], + "type":"VEC3" + }, + { + "bufferView":10711, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":10712, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":10713, + "componentType":5123, + "count":864, + "type":"SCALAR" + }, + { + "bufferView":10714, + "componentType":5126, + "count":596, + "max":[ + 325.5695495605469, + 504.61785888671875, + 332.939697265625 + ], + "min":[ + -325.56951904296875, + 9.1552734375e-05, + -332.93988037109375 + ], + "type":"VEC3" + }, + { + "bufferView":10715, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":10716, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10717, + "componentType":5126, + "count":590, + "max":[ + 166.2982635498047, + 32.825321197509766, + 166.29798889160156 + ], + "min":[ + -166.29783630371094, + 1.52587890625e-05, + -166.29811096191406 + ], + "type":"VEC3" + }, + { + "bufferView":10718, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":10719, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":10720, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10721, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10722, + "componentType":5126, + "count":580, + "max":[ + 170.50344848632812, + 32.82521057128906, + 170.50233459472656 + ], + "min":[ + -170.50135803222656, + 1.52587890625e-05, + -170.50250244140625 + ], + "type":"VEC3" + }, + { + "bufferView":10723, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":10724, + "componentType":5126, + "count":488, + "max":[ + 879.658203125, + 587.032958984375, + 879.6616821289062 + ], + "min":[ + -879.66015625, + -3.0517578125e-05, + -879.6587524414062 + ], + "type":"VEC3" + }, + { + "bufferView":10725, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":10726, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":10727, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10728, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10729, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10730, + "componentType":5126, + "count":24, + "max":[ + 13.57373046875, + 1879.529541015625, + 334.78076171875 + ], + "min":[ + -13.5732421875, + 0, + -334.78125 + ], + "type":"VEC3" + }, + { + "bufferView":10731, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10732, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10733, + "componentType":5126, + "count":48, + "max":[ + 127.44287109375, + 625.6328125, + 391.73681640625 + ], + "min":[ + -127.4443359375, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":10734, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":10735, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":10736, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10737, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10738, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10739, + "componentType":5126, + "count":108, + "max":[ + 1272.04443359375, + 2502.009521484375, + 25.650390625 + ], + "min":[ + -1272.044921875, + 0, + -25.650146484375 + ], + "type":"VEC3" + }, + { + "bufferView":10740, + "componentType":5126, + "count":108, + "type":"VEC3" + }, + { + "bufferView":10741, + "componentType":5126, + "count":108, + "type":"VEC2" + }, + { + "bufferView":10742, + "componentType":5126, + "count":603, + "max":[ + 140.00314331054688, + 204.15342712402344, + 125.46438598632812 + ], + "min":[ + -147.21128845214844, + 29.81494140625, + -137.3963623046875 + ], + "type":"VEC3" + }, + { + "bufferView":10743, + "componentType":5126, + "count":603, + "type":"VEC3" + }, + { + "bufferView":10744, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10745, + "componentType":5126, + "count":580, + "max":[ + 162.09307861328125, + 167.85537719726562, + 141.3960723876953 + ], + "min":[ + -162.0943145751953, + -0.0001373291015625, + -141.39605712890625 + ], + "type":"VEC3" + }, + { + "bufferView":10746, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":10747, + "componentType":5126, + "count":582, + "max":[ + 190.9693145751953, + 274.19342041015625, + 171.9376220703125 + ], + "min":[ + -198.18081665039062, + 40.454986572265625, + -183.86944580078125 + ], + "type":"VEC3" + }, + { + "bufferView":10748, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":10749, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10750, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10751, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10752, + "componentType":5126, + "count":227, + "max":[ + 7.85205078125, + 248.992431640625, + 53.2841796875 + ], + "min":[ + -7.853515625, + 0.0001220703125, + -53.28515625 + ], + "type":"VEC3" + }, + { + "bufferView":10753, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":10754, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":10755, + "componentType":5126, + "count":285, + "max":[ + 23.607620239257812, + 267.57562255859375, + 221.60244750976562 + ], + "min":[ + -23.222036361694336, + -7.62939453125e-06, + -221.5637664794922 + ], + "type":"VEC3" + }, + { + "bufferView":10756, + "componentType":5126, + "count":285, + "type":"VEC3" + }, + { + "bufferView":10757, + "componentType":5126, + "count":285, + "type":"VEC2" + }, + { + "bufferView":10758, + "componentType":5126, + "count":134, + "max":[ + 80.151611328125, + 126.6884765625, + 49.03515625 + ], + "min":[ + -80.154541015625, + 0, + -49.03515625 + ], + "type":"VEC3" + }, + { + "bufferView":10759, + "componentType":5126, + "count":134, + "type":"VEC3" + }, + { + "bufferView":10760, + "componentType":5126, + "count":134, + "type":"VEC2" + }, + { + "bufferView":10761, + "componentType":5126, + "count":110, + "max":[ + 58.34326171875, + 131.9423828125, + 58.34326171875 + ], + "min":[ + -58.34326171875, + 0, + -58.34228515625 + ], + "type":"VEC3" + }, + { + "bufferView":10762, + "componentType":5126, + "count":110, + "type":"VEC3" + }, + { + "bufferView":10763, + "componentType":5126, + "count":110, + "type":"VEC2" + }, + { + "bufferView":10764, + "componentType":5126, + "count":164, + "max":[ + 524.54638671875, + 14332.2607421875, + 63.8193359375 + ], + "min":[ + -524.545166015625, + 0.00096893310546875, + -63.8193359375 + ], + "type":"VEC3" + }, + { + "bufferView":10765, + "componentType":5126, + "count":164, + "type":"VEC3" + }, + { + "bufferView":10766, + "componentType":5126, + "count":164, + "type":"VEC2" + }, + { + "bufferView":10767, + "componentType":5126, + "count":585, + "max":[ + 174.8749542236328, + 252.07574462890625, + 157.2618408203125 + ], + "min":[ + -182.08499145507812, + 37.095184326171875, + -169.19375610351562 + ], + "type":"VEC3" + }, + { + "bufferView":10768, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":10769, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92938232421875, + 384.1406555175781 + ], + "min":[ + -245.232421875, + 0.0001068115234375, + -384.1396789550781 + ], + "type":"VEC3" + }, + { + "bufferView":10770, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":10771, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":10772, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10773, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10774, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10775, + "componentType":5126, + "count":581, + "max":[ + 168.17123413085938, + 242.8599395751953, + 151.1466064453125 + ], + "min":[ + -175.37606811523438, + 35.69518280029297, + -163.07920837402344 + ], + "type":"VEC3" + }, + { + "bufferView":10776, + "componentType":5126, + "count":581, + "type":"VEC3" + }, + { + "bufferView":10777, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10778, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10779, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10780, + "componentType":5126, + "count":597, + "max":[ + 146.71078491210938, + 213.36920166015625, + 131.57933044433594 + ], + "min":[ + -153.9162139892578, + 31.214935302734375, + -143.5111541748047 + ], + "type":"VEC3" + }, + { + "bufferView":10781, + "componentType":5126, + "count":597, + "type":"VEC3" + }, + { + "bufferView":10782, + "componentType":5126, + "count":115, + "max":[ + 102.13116455078125, + 3063.665283203125, + 102.13092041015625 + ], + "min":[ + -102.131591796875, + 0.0002593994140625, + -102.13088989257812 + ], + "type":"VEC3" + }, + { + "bufferView":10783, + "componentType":5126, + "count":115, + "type":"VEC3" + }, + { + "bufferView":10784, + "componentType":5126, + "count":115, + "type":"VEC2" + }, + { + "bufferView":10785, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":10786, + "componentType":5126, + "count":562, + "max":[ + 177.50819396972656, + 32.82530975341797, + 177.5095977783203 + ], + "min":[ + -177.5111541748047, + 8.0108642578125e-05, + -177.5098114013672 + ], + "type":"VEC3" + }, + { + "bufferView":10787, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":10788, + "componentType":5126, + "count":584, + "max":[ + 178.4804229736328, + 116.01481628417969, + 185.91842651367188 + ], + "min":[ + -178.47952270507812, + 0.0002288818359375, + -185.9184112548828 + ], + "type":"VEC3" + }, + { + "bufferView":10789, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":10790, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10791, + "componentType":5126, + "count":230, + "max":[ + 174.40966796875, + 193.254638671875, + 169.0625 + ], + "min":[ + -174.40625, + 0, + -169.0634765625 + ], + "type":"VEC3" + }, + { + "bufferView":10792, + "componentType":5126, + "count":230, + "type":"VEC3" + }, + { + "bufferView":10793, + "componentType":5126, + "count":230, + "type":"VEC2" + }, + { + "bufferView":10794, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":10795, + "componentType":5126, + "count":576, + "max":[ + 156.6021270751953, + 104.50865173339844, + 159.2907257080078 + ], + "min":[ + -149.38990783691406, + 0.639556884765625, + -159.2908477783203 + ], + "type":"VEC3" + }, + { + "bufferView":10796, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":10797, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10798, + "componentType":5126, + "count":602, + "max":[ + 171.90518188476562, + 32.825321197509766, + 171.90379333496094 + ], + "min":[ + -171.9025421142578, + 2.288818359375e-05, + -171.90396118164062 + ], + "type":"VEC3" + }, + { + "bufferView":10799, + "componentType":5126, + "count":602, + "type":"VEC3" + }, + { + "bufferView":10800, + "componentType":5126, + "count":55, + "max":[ + 123.61669921875, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.61181640625, + 0, + -366.1533203125 + ], + "type":"VEC3" + }, + { + "bufferView":10801, + "componentType":5126, + "count":55, + "type":"VEC3" + }, + { + "bufferView":10802, + "componentType":5126, + "count":55, + "type":"VEC2" + }, + { + "bufferView":10803, + "componentType":5126, + "count":599, + "max":[ + 159.2841796875, + 220.74195861816406, + 148.40296936035156 + ], + "min":[ + -152.0729522705078, + 32.335174560546875, + -136.47137451171875 + ], + "type":"VEC3" + }, + { + "bufferView":10804, + "componentType":5126, + "count":599, + "type":"VEC3" + }, + { + "bufferView":10805, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10806, + "componentType":5126, + "count":582, + "max":[ + 155.0883331298828, + 160.94541931152344, + 135.32760620117188 + ], + "min":[ + -155.08447265625, + -0.00011444091796875, + -135.32757568359375 + ], + "type":"VEC3" + }, + { + "bufferView":10807, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":10808, + "componentType":5126, + "count":582, + "max":[ + 168.67111206054688, + 233.64402770996094, + 156.96408081054688 + ], + "min":[ + -161.463623046875, + 34.295257568359375, + -145.0319366455078 + ], + "type":"VEC3" + }, + { + "bufferView":10809, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":10810, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10811, + "componentType":5126, + "count":574, + "max":[ + 171.90518188476562, + 177.52947998046875, + 149.89190673828125 + ], + "min":[ + -171.9025421142578, + -0.000152587890625, + -149.89193725585938 + ], + "type":"VEC3" + }, + { + "bufferView":10812, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":10813, + "componentType":5126, + "count":536, + "max":[ + 26998.82421875, + 200, + 45056 + ], + "min":[ + -26998.82421875, + 0, + -45056 + ], + "type":"VEC3" + }, + { + "bufferView":10814, + "componentType":5126, + "count":536, + "type":"VEC3" + }, + { + "bufferView":10815, + "componentType":5126, + "count":536, + "type":"VEC2" + }, + { + "bufferView":10816, + "componentType":5123, + "count":1404, + "type":"SCALAR" + }, + { + "bufferView":10817, + "componentType":5126, + "count":115, + "max":[ + 31.29314422607422, + 15.511116027832031, + 6.5022430419921875 + ], + "min":[ + -31.29315757751465, + 9.202957153320312e-05, + -6.50299072265625 + ], + "type":"VEC3" + }, + { + "bufferView":10818, + "componentType":5126, + "count":115, + "type":"VEC3" + }, + { + "bufferView":10819, + "componentType":5126, + "count":115, + "type":"VEC2" + }, + { + "bufferView":10820, + "componentType":5126, + "count":752, + "max":[ + 136.75340270996094, + 217.14334106445312, + 129.45648193359375 + ], + "min":[ + -136.81773376464844, + 27.222061157226562, + -129.55996704101562 + ], + "type":"VEC3" + }, + { + "bufferView":10821, + "componentType":5126, + "count":752, + "type":"VEC3" + }, + { + "bufferView":10822, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":10823, + "componentType":5126, + "count":590, + "max":[ + 176.10647583007812, + 182.8994598388672, + 159.6736297607422 + ], + "min":[ + -176.10997009277344, + 1.223876953125, + -147.392333984375 + ], + "type":"VEC3" + }, + { + "bufferView":10824, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":10825, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10826, + "componentType":5126, + "count":122, + "max":[ + 228.90673828125, + 55.46875, + 27.736328125 + ], + "min":[ + -228.909423828125, + 0, + -27.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":10827, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":10828, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":10829, + "componentType":5126, + "count":76, + "max":[ + 278.86700439453125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8667297363281, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":10830, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":10831, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":10832, + "componentType":5126, + "count":586, + "max":[ + 138.66163635253906, + 202.30996704101562, + 124.24146270751953 + ], + "min":[ + -145.87022399902344, + 29.534652709960938, + -136.17333984375 + ], + "type":"VEC3" + }, + { + "bufferView":10833, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":10834, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10835, + "componentType":5126, + "count":580, + "max":[ + 195.72679138183594, + 201.02346801757812, + 170.52468872070312 + ], + "min":[ + -195.7303924560547, + -1.52587890625e-05, + -170.52474975585938 + ], + "type":"VEC3" + }, + { + "bufferView":10836, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":10837, + "componentType":5126, + "count":582, + "max":[ + 198.53277587890625, + 205.1730499267578, + 166.81143188476562 + ], + "min":[ + -198.53025817871094, + 1.3855667114257812, + -179.09283447265625 + ], + "type":"VEC3" + }, + { + "bufferView":10838, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":10839, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10840, + "componentType":5126, + "count":112, + "max":[ + 116.97066497802734, + 2149.27001953125, + 116.97066497802734 + ], + "min":[ + -116.97066497802734, + 0, + -116.97069549560547 + ], + "type":"VEC3" + }, + { + "bufferView":10841, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":10842, + "componentType":5126, + "count":593, + "max":[ + 170.85037231445312, + 246.54588317871094, + 153.592529296875 + ], + "min":[ + -178.06201171875, + 36.25477600097656, + -165.5252227783203 + ], + "type":"VEC3" + }, + { + "bufferView":10843, + "componentType":5126, + "count":593, + "type":"VEC3" + }, + { + "bufferView":10844, + "componentType":5126, + "count":346, + "max":[ + 171.2978515625, + 184.80810546875, + 176.140625 + ], + "min":[ + -171.2978515625, + 44.45703125, + -176.14111328125 + ], + "type":"VEC3" + }, + { + "bufferView":10845, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":10846, + "componentType":5126, + "count":346, + "type":"VEC2" + }, + { + "bufferView":10847, + "componentType":5126, + "count":603, + "max":[ + 140.00314331054688, + 204.15342712402344, + 125.46438598632812 + ], + "min":[ + -147.21128845214844, + 29.81494140625, + -137.3963623046875 + ], + "type":"VEC3" + }, + { + "bufferView":10848, + "componentType":5126, + "count":603, + "type":"VEC3" + }, + { + "bufferView":10849, + "componentType":5126, + "count":587, + "max":[ + 149.8932647705078, + 207.83978271484375, + 139.84190368652344 + ], + "min":[ + -142.6862030029297, + 30.375106811523438, + -127.91079711914062 + ], + "type":"VEC3" + }, + { + "bufferView":10850, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":10851, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10852, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10853, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10854, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10855, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":10856, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":10857, + "componentType":5126, + "count":224, + "max":[ + 115.35120391845703, + 230.70260620117188, + 118.72062683105469 + ], + "min":[ + -115.35124969482422, + -3.814697265625e-05, + -118.72103881835938 + ], + "type":"VEC3" + }, + { + "bufferView":10858, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":10859, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":10860, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":10861, + "componentType":5126, + "count":232, + "max":[ + 173.28125, + 188.23828125, + 169.100830078125 + ], + "min":[ + -173.28173828125, + 0, + -169.100830078125 + ], + "type":"VEC3" + }, + { + "bufferView":10862, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":10863, + "componentType":5126, + "count":232, + "type":"VEC2" + }, + { + "bufferView":10864, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68719482421875 + ], + "min":[ + -15.4755859375, + 0, + -381.68621826171875 + ], + "type":"VEC3" + }, + { + "bufferView":10865, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10866, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10867, + "componentType":5126, + "count":580, + "max":[ + 195.72679138183594, + 32.82524108886719, + 195.7285919189453 + ], + "min":[ + -195.7303924560547, + 6.866455078125e-05, + -195.7285919189453 + ], + "type":"VEC3" + }, + { + "bufferView":10868, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":10869, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10870, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16455078125, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":10871, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":10872, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":10873, + "componentType":5126, + "count":24, + "max":[ + 110.00012969970703, + 50, + 584.666015625 + ], + "min":[ + -110.00007629394531, + 0, + -584.662109375 + ], + "type":"VEC3" + }, + { + "bufferView":10874, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10875, + "componentType":5126, + "count":105, + "max":[ + 57.39837646484375, + 3360.316650390625, + 57.39794921875 + ], + "min":[ + -57.39813232421875, + -3.814697265625e-05, + -57.398681640625 + ], + "type":"VEC3" + }, + { + "bufferView":10876, + "componentType":5126, + "count":105, + "type":"VEC3" + }, + { + "bufferView":10877, + "componentType":5126, + "count":105, + "type":"VEC2" + }, + { + "bufferView":10878, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":10879, + "componentType":5126, + "count":528, + "max":[ + 19.802734375, + 2637.3974609375, + 722.719482421875 + ], + "min":[ + -19.802734375, + 0, + -722.72314453125 + ], + "type":"VEC3" + }, + { + "bufferView":10880, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":10881, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":10882, + "componentType":5126, + "count":48, + "max":[ + 127.44287109375, + 625.6328125, + 391.737548828125 + ], + "min":[ + -127.4443359375, + 0, + -391.7374267578125 + ], + "type":"VEC3" + }, + { + "bufferView":10883, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":10884, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":10885, + "componentType":5126, + "count":24, + "max":[ + 13.57373046875, + 1879.529541015625, + 334.78076171875 + ], + "min":[ + -13.5732421875, + 0, + -334.78076171875 + ], + "type":"VEC3" + }, + { + "bufferView":10886, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10887, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10888, + "componentType":5126, + "count":338, + "max":[ + 115.35126495361328, + 230.7025146484375, + 13.560531616210938 + ], + "min":[ + -115.3511962890625, + 3.0517578125e-05, + -13.560829162597656 + ], + "type":"VEC3" + }, + { + "bufferView":10889, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":10890, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":10891, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10892, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10893, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10894, + "componentType":5126, + "count":814, + "max":[ + 4.1328125, + 90.58740997314453, + 34.45655059814453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":10895, + "componentType":5126, + "count":814, + "type":"VEC3" + }, + { + "bufferView":10896, + "componentType":5126, + "count":814, + "type":"VEC2" + }, + { + "bufferView":10897, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":10898, + "componentType":5126, + "count":1021, + "max":[ + 90.109375, + 254.306640625, + 29.7861328125 + ], + "min":[ + -90.10888671875, + 1.31201171875, + -29.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":10899, + "componentType":5126, + "count":1021, + "type":"VEC3" + }, + { + "bufferView":10900, + "componentType":5126, + "count":1021, + "type":"VEC2" + }, + { + "bufferView":10901, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":10902, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10903, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10904, + "componentType":5126, + "count":92, + "max":[ + 34.716796875, + 88.51513671875, + 25.14129638671875 + ], + "min":[ + -34.716796875, + 0, + -25.14013671875 + ], + "type":"VEC3" + }, + { + "bufferView":10905, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":10906, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":10907, + "componentType":5126, + "count":586, + "max":[ + 183.11512756347656, + 32.82525634765625, + 183.1154022216797 + ], + "min":[ + -183.11587524414062, + 3.0517578125e-05, + -183.11566162109375 + ], + "type":"VEC3" + }, + { + "bufferView":10908, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":10909, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 253.74371337890625 + ], + "min":[ + -463.990234375, + -8.255030479631387e-06, + -253.7421875 + ], + "type":"VEC3" + }, + { + "bufferView":10910, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10911, + "componentType":5126, + "count":582, + "max":[ + 171.77279663085938, + 112.81846618652344, + 178.9110565185547 + ], + "min":[ + -171.77450561523438, + 4.57763671875e-05, + -178.9112548828125 + ], + "type":"VEC3" + }, + { + "bufferView":10912, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":10913, + "componentType":5126, + "count":134, + "max":[ + 37.57861328125, + 75.158203125, + 1709.3642578125 + ], + "min":[ + -37.57958984375, + 0, + -1709.365234375 + ], + "type":"VEC3" + }, + { + "bufferView":10914, + "componentType":5126, + "count":134, + "type":"VEC3" + }, + { + "bufferView":10915, + "componentType":5126, + "count":134, + "type":"VEC2" + }, + { + "bufferView":10916, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":10917, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.143798828125, + 360.897216796875 + ], + "min":[ + -8.345703125, + -0.00048828125, + -360.8974609375 + ], + "type":"VEC3" + }, + { + "bufferView":10918, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":10919, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":10920, + "componentType":5126, + "count":159, + "max":[ + 769.70751953125, + 113.194580078125, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0, + -56.597412109375 + ], + "type":"VEC3" + }, + { + "bufferView":10921, + "componentType":5126, + "count":159, + "type":"VEC3" + }, + { + "bufferView":10922, + "componentType":5126, + "count":159, + "type":"VEC2" + }, + { + "bufferView":10923, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16455078125, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":10924, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":10925, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":10926, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10927, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10928, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10929, + "componentType":5126, + "count":76, + "max":[ + 279.1010437011719, + 3543.081787109375, + 278.8670349121094 + ], + "min":[ + -279.0986328125, + 0, + -278.8664245605469 + ], + "type":"VEC3" + }, + { + "bufferView":10930, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":10931, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":10932, + "componentType":5126, + "count":548, + "max":[ + 7.779107093811035, + 21.312030792236328, + 10.655908584594727 + ], + "min":[ + -7.778767108917236, + 0.00021648406982421875, + -10.65590763092041 + ], + "type":"VEC3" + }, + { + "bufferView":10933, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":10934, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":10935, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.456298828125, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.0006103515625, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":10936, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":10937, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":10938, + "componentType":5126, + "count":384, + "max":[ + 1069.845703125, + 58.48869323730469, + 5200.28271484375 + ], + "min":[ + -1069.8427734375, + 6.67572021484375e-05, + -5200.28515625 + ], + "type":"VEC3" + }, + { + "bufferView":10939, + "componentType":5126, + "count":384, + "type":"VEC3" + }, + { + "bufferView":10940, + "componentType":5126, + "count":384, + "type":"VEC2" + }, + { + "bufferView":10941, + "componentType":5126, + "count":144, + "max":[ + 428.9188232421875, + 1017.9165649414062, + 642.9835205078125 + ], + "min":[ + -428.9180603027344, + 9.1552734375e-05, + -642.9835815429688 + ], + "type":"VEC3" + }, + { + "bufferView":10942, + "componentType":5126, + "count":144, + "type":"VEC3" + }, + { + "bufferView":10943, + "componentType":5126, + "count":214, + "max":[ + 33.4022216796875, + 133.60888671875, + 66.803955078125 + ], + "min":[ + -33.4022216796875, + 0, + -66.8046875 + ], + "type":"VEC3" + }, + { + "bufferView":10944, + "componentType":5126, + "count":214, + "type":"VEC3" + }, + { + "bufferView":10945, + "componentType":5126, + "count":214, + "type":"VEC2" + }, + { + "bufferView":10946, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":10947, + "componentType":5126, + "count":185, + "max":[ + 769.70703125, + 113.194580078125, + 56.597900390625 + ], + "min":[ + -769.71044921875, + 0, + -56.596435546875 + ], + "type":"VEC3" + }, + { + "bufferView":10948, + "componentType":5126, + "count":185, + "type":"VEC3" + }, + { + "bufferView":10949, + "componentType":5126, + "count":185, + "type":"VEC2" + }, + { + "bufferView":10950, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":10951, + "componentType":5126, + "count":562, + "max":[ + 204.45657348632812, + 209.63050842285156, + 178.08338928222656 + ], + "min":[ + -204.45677185058594, + 0.0001220703125, + -178.08355712890625 + ], + "type":"VEC3" + }, + { + "bufferView":10952, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":10953, + "componentType":5126, + "count":224, + "max":[ + 115.14122772216797, + 342.3099365234375, + 160.72268676757812 + ], + "min":[ + -115.1411361694336, + 24.731369018554688, + -159.38693237304688 + ], + "type":"VEC3" + }, + { + "bufferView":10954, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":10955, + "componentType":5126, + "count":33, + "max":[ + 157.4300537109375, + 190.609130859375, + 139.08941650390625 + ], + "min":[ + -157.43045043945312, + 0, + -139.08880615234375 + ], + "type":"VEC3" + }, + { + "bufferView":10956, + "componentType":5126, + "count":33, + "type":"VEC3" + }, + { + "bufferView":10957, + "componentType":5126, + "count":33, + "type":"VEC2" + }, + { + "bufferView":10958, + "componentType":5126, + "count":112, + "max":[ + 116.97066497802734, + 2149.27001953125, + 116.97061920166016 + ], + "min":[ + -116.97066497802734, + 0, + -116.97103118896484 + ], + "type":"VEC3" + }, + { + "bufferView":10959, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":10960, + "componentType":5126, + "count":582, + "max":[ + 195.9110107421875, + 280.98291015625, + 176.44248962402344 + ], + "min":[ + -203.12054443359375, + 41.48637390136719, + -188.3745880126953 + ], + "type":"VEC3" + }, + { + "bufferView":10961, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":10962, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":10963, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":10964, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":10965, + "componentType":5126, + "count":164, + "max":[ + 520.65234375, + 14332.2607421875, + 66.3226318359375 + ], + "min":[ + -520.646728515625, + 0.00096893310546875, + -66.3223876953125 + ], + "type":"VEC3" + }, + { + "bufferView":10966, + "componentType":5126, + "count":164, + "type":"VEC3" + }, + { + "bufferView":10967, + "componentType":5126, + "count":164, + "type":"VEC2" + }, + { + "bufferView":10968, + "componentType":5126, + "count":592, + "max":[ + 140.9255828857422, + 171.21202087402344, + 128.9844970703125 + ], + "min":[ + -140.92384338378906, + 3.0517578125e-05, + -128.984375 + ], + "type":"VEC3" + }, + { + "bufferView":10969, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":10970, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10971, + "componentType":5126, + "count":24, + "max":[ + 88.34375, + 276.109375, + 83.760986328125 + ], + "min":[ + -88.3438720703125, + 0, + -83.761474609375 + ], + "type":"VEC3" + }, + { + "bufferView":10972, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10973, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":10974, + "componentType":5126, + "count":347, + "max":[ + 171.298828125, + 184.80615234375, + 176.140625 + ], + "min":[ + -171.296875, + 44.45703125, + -176.14111328125 + ], + "type":"VEC3" + }, + { + "bufferView":10975, + "componentType":5126, + "count":347, + "type":"VEC3" + }, + { + "bufferView":10976, + "componentType":5126, + "count":347, + "type":"VEC2" + }, + { + "bufferView":10977, + "componentType":5126, + "count":489, + "max":[ + 186.85626220703125, + 259.27752685546875, + 182.40966796875 + ], + "min":[ + -186.8560791015625, + 7.62939453125e-06, + -182.41015625 + ], + "type":"VEC3" + }, + { + "bufferView":10978, + "componentType":5126, + "count":489, + "type":"VEC3" + }, + { + "bufferView":10979, + "componentType":5126, + "count":489, + "type":"VEC2" + }, + { + "bufferView":10980, + "componentType":5126, + "count":586, + "max":[ + 169.1017303466797, + 32.82521057128906, + 169.10089111328125 + ], + "min":[ + -169.10015869140625, + 3.814697265625e-05, + -169.10105895996094 + ], + "type":"VEC3" + }, + { + "bufferView":10981, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":10982, + "componentType":5126, + "count":1420, + "max":[ + 245.232421875, + 367.92938232421875, + 384.1391906738281 + ], + "min":[ + -245.234375, + 0.0001678466796875, + -384.1406555175781 + ], + "type":"VEC3" + }, + { + "bufferView":10983, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":10984, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":10985, + "componentType":5126, + "count":228, + "max":[ + 105.79638671875, + 2059.5048828125, + 105.7998046875 + ], + "min":[ + -105.798828125, + 0, + -105.798828125 + ], + "type":"VEC3" + }, + { + "bufferView":10986, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":10987, + "componentType":5126, + "count":228, + "type":"VEC2" + }, + { + "bufferView":10988, + "componentType":5126, + "count":17320, + "max":[ + 1678.4140625, + 5149.5478515625, + 1341.006591796875 + ], + "min":[ + -1678.412109375, + 0.000244140625, + -1341.003662109375 + ], + "type":"VEC3" + }, + { + "bufferView":10989, + "componentType":5126, + "count":17320, + "type":"VEC3" + }, + { + "bufferView":10990, + "componentType":5126, + "count":17320, + "type":"VEC2" + }, + { + "bufferView":10991, + "componentType":5123, + "count":25872, + "type":"SCALAR" + }, + { + "bufferView":10992, + "componentType":5126, + "count":590, + "max":[ + 207.89891052246094, + 214.47726440429688, + 187.2042236328125 + ], + "min":[ + -207.89772033691406, + 1.4530487060546875, + -174.9237823486328 + ], + "type":"VEC3" + }, + { + "bufferView":10993, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":10994, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":10995, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":10996, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":10997, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":10998, + "componentType":5126, + "count":694, + "max":[ + 1091.2265625, + 286.94140625, + 86.86620330810547 + ], + "min":[ + -1091.2265625, + 1.52587890625e-05, + -86.86327362060547 + ], + "type":"VEC3" + }, + { + "bufferView":10999, + "componentType":5126, + "count":694, + "type":"VEC3" + }, + { + "bufferView":11000, + "componentType":5126, + "count":694, + "type":"VEC2" + }, + { + "bufferView":11001, + "componentType":5123, + "count":696, + "type":"SCALAR" + }, + { + "bufferView":11002, + "componentType":5126, + "count":76, + "max":[ + 278.86895751953125, + 3543.081787109375, + 279.10284423828125 + ], + "min":[ + -278.86810302734375, + 0, + -279.1005859375 + ], + "type":"VEC3" + }, + { + "bufferView":11003, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":11004, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":11005, + "componentType":5126, + "count":488, + "max":[ + 879.6591796875, + 587.0330810546875, + 879.6616821289062 + ], + "min":[ + -879.6591796875, + 9.1552734375e-05, + -879.6587524414062 + ], + "type":"VEC3" + }, + { + "bufferView":11006, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":11007, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":11008, + "componentType":5126, + "count":340, + "max":[ + 115.3511962890625, + 230.70252990722656, + 13.560844421386719 + ], + "min":[ + -115.35124969482422, + 4.57763671875e-05, + -13.560546875 + ], + "type":"VEC3" + }, + { + "bufferView":11009, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":11010, + "componentType":5126, + "count":588, + "max":[ + 189.62779235839844, + 272.3504638671875, + 170.71463012695312 + ], + "min":[ + -196.83981323242188, + 40.17518615722656, + -182.64645385742188 + ], + "type":"VEC3" + }, + { + "bufferView":11011, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":11012, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11013, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11014, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11015, + "componentType":5126, + "count":119, + "max":[ + 31.290660858154297, + 15.511075973510742, + 6.1126251220703125 + ], + "min":[ + -31.290639877319336, + -1.430511474609375e-06, + -6.112213134765625 + ], + "type":"VEC3" + }, + { + "bufferView":11016, + "componentType":5126, + "count":119, + "type":"VEC3" + }, + { + "bufferView":11017, + "componentType":5126, + "count":119, + "type":"VEC2" + }, + { + "bufferView":11018, + "componentType":5126, + "count":178, + "max":[ + 769.70703125, + 113.194580078125, + 56.59765625 + ], + "min":[ + -769.71044921875, + 6.103515625e-05, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":11019, + "componentType":5126, + "count":178, + "type":"VEC3" + }, + { + "bufferView":11020, + "componentType":5126, + "count":178, + "type":"VEC2" + }, + { + "bufferView":11021, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":11022, + "componentType":5126, + "count":136, + "max":[ + 242.8515625, + 131.9609375, + 239.70703125 + ], + "min":[ + -242.8525390625, + 0, + -239.705078125 + ], + "type":"VEC3" + }, + { + "bufferView":11023, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":11024, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":11025, + "componentType":5126, + "count":40, + "max":[ + 1.4142957925796509, + 10.517535209655762, + 5.258737564086914 + ], + "min":[ + -1.4143321514129639, + 6.0558319091796875e-05, + -5.258735179901123 + ], + "type":"VEC3" + }, + { + "bufferView":11026, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":11027, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":11028, + "componentType":5126, + "count":528, + "max":[ + 19.8046875, + 2637.3974609375, + 722.721435546875 + ], + "min":[ + -19.80078125, + 0, + -722.721923828125 + ], + "type":"VEC3" + }, + { + "bufferView":11029, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":11030, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":11031, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11032, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11033, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11034, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":11035, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":11036, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":11037, + "componentType":5126, + "count":53, + "max":[ + 123.61328125, + 696.755859375, + 366.15283203125 + ], + "min":[ + -123.615234375, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":11038, + "componentType":5126, + "count":53, + "type":"VEC3" + }, + { + "bufferView":11039, + "componentType":5126, + "count":53, + "type":"VEC2" + }, + { + "bufferView":11040, + "componentType":5126, + "count":594, + "max":[ + 145.3692626953125, + 211.52615356445312, + 130.35633850097656 + ], + "min":[ + -152.57525634765625, + 30.935142517089844, + -142.28817749023438 + ], + "type":"VEC3" + }, + { + "bufferView":11041, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":11042, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11043, + "componentType":5126, + "count":82, + "max":[ + 5.782059669494629, + 27.783958435058594, + 5.782175540924072 + ], + "min":[ + -5.782155990600586, + 0.00018964540504384786, + -5.782068729400635 + ], + "type":"VEC3" + }, + { + "bufferView":11044, + "componentType":5126, + "count":82, + "type":"VEC3" + }, + { + "bufferView":11045, + "componentType":5126, + "count":82, + "type":"VEC2" + }, + { + "bufferView":11046, + "componentType":5123, + "count":228, + "type":"SCALAR" + }, + { + "bufferView":11047, + "componentType":5126, + "count":566, + "max":[ + 176.10647583007812, + 32.82530975341797, + 176.10813903808594 + ], + "min":[ + -176.10997009277344, + 2.288818359375e-05, + -176.1083221435547 + ], + "type":"VEC3" + }, + { + "bufferView":11048, + "componentType":5126, + "count":566, + "type":"VEC3" + }, + { + "bufferView":11049, + "componentType":5126, + "count":584, + "max":[ + 177.13890075683594, + 115.37523651123047, + 184.51698303222656 + ], + "min":[ + -177.1385040283203, + -0.000152587890625, + -184.51695251464844 + ], + "type":"VEC3" + }, + { + "bufferView":11050, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":11051, + "componentType":5126, + "count":237, + "max":[ + 173.28125, + 188.23828125, + 169.1005859375 + ], + "min":[ + -173.28173828125, + 0, + -169.1015625 + ], + "type":"VEC3" + }, + { + "bufferView":11052, + "componentType":5126, + "count":237, + "type":"VEC3" + }, + { + "bufferView":11053, + "componentType":5126, + "count":237, + "type":"VEC2" + }, + { + "bufferView":11054, + "componentType":5126, + "count":591, + "max":[ + 155.25723266601562, + 103.86360931396484, + 157.8892822265625 + ], + "min":[ + -148.05227661132812, + 0.6336441040039062, + -157.8893585205078 + ], + "type":"VEC3" + }, + { + "bufferView":11055, + "componentType":5126, + "count":591, + "type":"VEC3" + }, + { + "bufferView":11056, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11057, + "componentType":5126, + "count":48, + "max":[ + 127.44287109375, + 625.6328125, + 391.736328125 + ], + "min":[ + -127.4404296875, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":11058, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":11059, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":11060, + "componentType":5126, + "count":562, + "max":[ + 177.50819396972656, + 32.82530975341797, + 177.5095977783203 + ], + "min":[ + -177.5111541748047, + 8.0108642578125e-05, + -177.5098114013672 + ], + "type":"VEC3" + }, + { + "bufferView":11061, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":11062, + "componentType":5126, + "count":590, + "max":[ + 163.7275848388672, + 108.98304748535156, + 170.50233459472656 + ], + "min":[ + -163.7246551513672, + 1.52587890625e-05, + -170.50250244140625 + ], + "type":"VEC3" + }, + { + "bufferView":11063, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":11064, + "componentType":5126, + "count":76, + "max":[ + 279.1072998046875, + 3543.081787109375, + 278.8748779296875 + ], + "min":[ + -279.10540771484375, + 0, + -278.8714599609375 + ], + "type":"VEC3" + }, + { + "bufferView":11065, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":11066, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":11067, + "componentType":5126, + "count":568, + "max":[ + 153.6865997314453, + 159.56365966796875, + 134.11392211914062 + ], + "min":[ + -153.68331909179688, + 8.392333984375e-05, + -134.11387634277344 + ], + "type":"VEC3" + }, + { + "bufferView":11068, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":11069, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11070, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11071, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11072, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.2841796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.2841796875 + ], + "type":"VEC3" + }, + { + "bufferView":11073, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":11074, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":11075, + "componentType":5126, + "count":48, + "max":[ + 11.695329666137695, + 233.9413299560547, + 289.01409912109375 + ], + "min":[ + -11.698831558227539, + -1.52587890625e-05, + -289.0140686035156 + ], + "type":"VEC3" + }, + { + "bufferView":11076, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":11077, + "componentType":5126, + "count":16, + "max":[ + 2795.93896484375, + 1203, + 1382.157470703125 + ], + "min":[ + -2795.9384765625, + 0, + -1382.155517578125 + ], + "type":"VEC3" + }, + { + "bufferView":11078, + "componentType":5126, + "count":16, + "type":"VEC3" + }, + { + "bufferView":11079, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":11080, + "componentType":5123, + "count":24, + "type":"SCALAR" + }, + { + "bufferView":11081, + "componentType":5126, + "count":112, + "max":[ + 147.9810333251953, + 402.919921875, + 170.0753173828125 + ], + "min":[ + -147.9833221435547, + 20.407974243164062, + -170.0755157470703 + ], + "type":"VEC3" + }, + { + "bufferView":11082, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":11083, + "componentType":5126, + "count":582, + "max":[ + 178.4804229736328, + 116.01481628417969, + 185.91830444335938 + ], + "min":[ + -178.47952270507812, + 0.0002288818359375, + -185.9185333251953 + ], + "type":"VEC3" + }, + { + "bufferView":11084, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":11085, + "componentType":5126, + "count":586, + "max":[ + 173.30691528320312, + 180.11541748046875, + 157.2462615966797 + ], + "min":[ + -173.3037109375, + 1.2038726806640625, + -144.9649658203125 + ], + "type":"VEC3" + }, + { + "bufferView":11086, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":11087, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11088, + "componentType":5126, + "count":76, + "max":[ + 278.86700439453125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8667297363281, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":11089, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":11090, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":11091, + "componentType":5126, + "count":76, + "max":[ + 279.1010437011719, + 3543.081787109375, + 278.8670349121094 + ], + "min":[ + -279.0986328125, + 0, + -278.8664245605469 + ], + "type":"VEC3" + }, + { + "bufferView":11092, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":11093, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":11094, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.455810546875, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":11095, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":11096, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":11097, + "componentType":5126, + "count":24, + "max":[ + 110.00007629394531, + 50, + 481.6465148925781 + ], + "min":[ + -110.0000991821289, + 0, + -481.6465148925781 + ], + "type":"VEC3" + }, + { + "bufferView":11098, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11099, + "componentType":5126, + "count":582, + "max":[ + 198.53025817871094, + 203.7875518798828, + 172.95205688476562 + ], + "min":[ + -198.53277587890625, + 6.866455078125e-05, + -172.95220947265625 + ], + "type":"VEC3" + }, + { + "bufferView":11100, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":11101, + "componentType":5126, + "count":564, + "max":[ + 204.45677185058594, + 32.825252532958984, + 204.45651245117188 + ], + "min":[ + -204.45657348632812, + 0.0001220703125, + -204.45687866210938 + ], + "type":"VEC3" + }, + { + "bufferView":11102, + "componentType":5126, + "count":564, + "type":"VEC3" + }, + { + "bufferView":11103, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11104, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.929443359375, + 90.005859375 + ], + "min":[ + -433.1201171875, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":11105, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":11106, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":11107, + "componentType":5126, + "count":564, + "max":[ + 199.93392944335938, + 206.56509399414062, + 168.02513122558594 + ], + "min":[ + -199.93199157714844, + 1.3956222534179688, + -180.30650329589844 + ], + "type":"VEC3" + }, + { + "bufferView":11108, + "componentType":5126, + "count":564, + "type":"VEC3" + }, + { + "bufferView":11109, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11110, + "componentType":5126, + "count":24, + "max":[ + 292.4480895996094, + 205.86782836914062, + 292.42657470703125 + ], + "min":[ + -292.4480895996094, + 0, + -292.4267883300781 + ], + "type":"VEC3" + }, + { + "bufferView":11111, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11112, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11113, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11114, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11115, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11116, + "componentType":5126, + "count":24, + "max":[ + 110.00023651123047, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534163448028266, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":11117, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11118, + "componentType":5126, + "count":1086, + "max":[ + 56.700870513916016, + 172.07470703125, + 23.860031127929688 + ], + "min":[ + -56.700721740722656, + 5.340576171875e-05, + -23.86003875732422 + ], + "type":"VEC3" + }, + { + "bufferView":11119, + "componentType":5126, + "count":1086, + "type":"VEC3" + }, + { + "bufferView":11120, + "componentType":5126, + "count":1086, + "type":"VEC2" + }, + { + "bufferView":11121, + "componentType":5126, + "count":64, + "max":[ + 4093.119140625, + 919.57177734375, + 4951.87744140625 + ], + "min":[ + -4093.119140625, + 6.103515625e-05, + -4951.8779296875 + ], + "type":"VEC3" + }, + { + "bufferView":11122, + "componentType":5126, + "count":64, + "type":"VEC3" + }, + { + "bufferView":11123, + "componentType":5126, + "count":64, + "type":"VEC2" + }, + { + "bufferView":11124, + "componentType":5126, + "count":342, + "max":[ + 115.3511962890625, + 230.70248413085938, + 13.560577392578125 + ], + "min":[ + -115.35124969482422, + -3.0517578125e-05, + -13.560890197753906 + ], + "type":"VEC3" + }, + { + "bufferView":11125, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":11126, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":11127, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11128, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11129, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":11130, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11131, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11132, + "componentType":5126, + "count":488, + "max":[ + 879.6591796875, + 587.032958984375, + 879.6592407226562 + ], + "min":[ + -879.6591796875, + -3.0517578125e-05, + -879.6607055664062 + ], + "type":"VEC3" + }, + { + "bufferView":11133, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":11134, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":11135, + "componentType":5126, + "count":60, + "max":[ + 3.7875242233276367, + 13.413311004638672, + 4.2459025382995605 + ], + "min":[ + -3.7875430583953857, + 0.00010967254638671875, + -4.24592399597168 + ], + "type":"VEC3" + }, + { + "bufferView":11136, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":11137, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":11138, + "componentType":5126, + "count":238, + "max":[ + 175.0537109375, + 196.214111328125, + 169.1068115234375 + ], + "min":[ + -175.05322265625, + 0, + -169.10693359375 + ], + "type":"VEC3" + }, + { + "bufferView":11139, + "componentType":5126, + "count":238, + "type":"VEC3" + }, + { + "bufferView":11140, + "componentType":5126, + "count":238, + "type":"VEC2" + }, + { + "bufferView":11141, + "componentType":5126, + "count":596, + "max":[ + 161.04449462890625, + 107.70491027832031, + 167.69944763183594 + ], + "min":[ + -161.0426483154297, + 0.00022125244140625, + -167.69956970214844 + ], + "type":"VEC3" + }, + { + "bufferView":11142, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":11143, + "componentType":5126, + "count":580, + "max":[ + 171.35311889648438, + 111.60486602783203, + 174.7067108154297 + ], + "min":[ + -164.1466827392578, + 0.7041244506835938, + -174.70689392089844 + ], + "type":"VEC3" + }, + { + "bufferView":11144, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":11145, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11146, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11147, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11148, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11149, + "componentType":5126, + "count":817, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45655059814453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":11150, + "componentType":5126, + "count":817, + "type":"VEC3" + }, + { + "bufferView":11151, + "componentType":5126, + "count":817, + "type":"VEC2" + }, + { + "bufferView":11152, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11153, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11154, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11155, + "componentType":5126, + "count":558, + "max":[ + 194.32896423339844, + 32.82526779174805, + 194.32713317871094 + ], + "min":[ + -194.32528686523438, + 6.866455078125e-05, + -194.3271942138672 + ], + "type":"VEC3" + }, + { + "bufferView":11156, + "componentType":5126, + "count":558, + "type":"VEC3" + }, + { + "bufferView":11157, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11158, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16455078125, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":11159, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":11160, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":11161, + "componentType":5126, + "count":24, + "max":[ + 110.00011444091797, + 50, + 584.666015625 + ], + "min":[ + -110.00007629394531, + 0, + -584.662109375 + ], + "type":"VEC3" + }, + { + "bufferView":11162, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11163, + "componentType":5126, + "count":48, + "max":[ + 123.61328125, + 696.755859375, + 366.15283203125 + ], + "min":[ + -123.615234375, + 0, + -366.1526184082031 + ], + "type":"VEC3" + }, + { + "bufferView":11164, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":11165, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":11166, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4556884765625, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":11167, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":11168, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":11169, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11170, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11171, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11172, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":11173, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11174, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.455078125, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.00048828125, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":11175, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":11176, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":11177, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11178, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11179, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11180, + "componentType":5126, + "count":806, + "max":[ + 4.1328125, + 90.58740997314453, + 34.45655059814453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":11181, + "componentType":5126, + "count":806, + "type":"VEC3" + }, + { + "bufferView":11182, + "componentType":5126, + "count":806, + "type":"VEC2" + }, + { + "bufferView":11183, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":11184, + "componentType":5126, + "count":24, + "max":[ + 584.6640625, + 50.00001525878906, + 110.00007629394531 + ], + "min":[ + -584.6640625, + -1.6609539670753293e-05, + -110.0000991821289 + ], + "type":"VEC3" + }, + { + "bufferView":11185, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11186, + "componentType":5126, + "count":7986, + "max":[ + 103.78759765625, + 429.9638671875, + 496.1484375 + ], + "min":[ + -103.78662109375, + 0, + -496.148681640625 + ], + "type":"VEC3" + }, + { + "bufferView":11187, + "componentType":5126, + "count":7986, + "type":"VEC3" + }, + { + "bufferView":11188, + "componentType":5126, + "count":7986, + "type":"VEC2" + }, + { + "bufferView":11189, + "componentType":5126, + "count":289, + "max":[ + 23.693763732910156, + 267.57562255859375, + 235.9644775390625 + ], + "min":[ + -23.28310775756836, + -3.0517578125e-05, + -235.92684936523438 + ], + "type":"VEC3" + }, + { + "bufferView":11190, + "componentType":5126, + "count":289, + "type":"VEC3" + }, + { + "bufferView":11191, + "componentType":5126, + "count":289, + "type":"VEC2" + }, + { + "bufferView":11192, + "componentType":5123, + "count":645, + "type":"SCALAR" + }, + { + "bufferView":11193, + "componentType":5126, + "count":1330, + "max":[ + 4857.8447265625, + 790.028564453125, + 49.982421875 + ], + "min":[ + -4857.8466796875, + -0.000244140625, + -49.98046875 + ], + "type":"VEC3" + }, + { + "bufferView":11194, + "componentType":5126, + "count":1330, + "type":"VEC3" + }, + { + "bufferView":11195, + "componentType":5126, + "count":1330, + "type":"VEC2" + }, + { + "bufferView":11196, + "componentType":5123, + "count":2520, + "type":"SCALAR" + }, + { + "bufferView":11197, + "componentType":5126, + "count":528, + "max":[ + 19.802734375, + 2637.3974609375, + 722.721923828125 + ], + "min":[ + -19.802734375, + 0, + -722.721435546875 + ], + "type":"VEC3" + }, + { + "bufferView":11198, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":11199, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":11200, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11201, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11202, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11203, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":11204, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11205, + "componentType":5126, + "count":164, + "max":[ + 524.54443359375, + 14332.2607421875, + 63.8193359375 + ], + "min":[ + -524.547119140625, + 0.00096893310546875, + -63.8193359375 + ], + "type":"VEC3" + }, + { + "bufferView":11206, + "componentType":5126, + "count":164, + "type":"VEC3" + }, + { + "bufferView":11207, + "componentType":5126, + "count":164, + "type":"VEC2" + }, + { + "bufferView":11208, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11209, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11210, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11211, + "componentType":5126, + "count":559, + "max":[ + 722.72265625, + 2637.3974609375, + 19.80198860168457 + ], + "min":[ + -722.72265625, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":11212, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":11213, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":11214, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.5859375 + ], + "min":[ + -46.284423828125, + 0, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":11215, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11216, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11217, + "componentType":5126, + "count":574, + "max":[ + 149.48141479492188, + 155.41775512695312, + 130.4728546142578 + ], + "min":[ + -149.47979736328125, + 0.00019073486328125, + -130.47276306152344 + ], + "type":"VEC3" + }, + { + "bufferView":11218, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":11219, + "componentType":5126, + "count":572, + "max":[ + 152.99537658691406, + 103.86900329589844, + 159.2907257080078 + ], + "min":[ + -152.9966583251953, + -7.62939453125e-05, + -159.2908477783203 + ], + "type":"VEC3" + }, + { + "bufferView":11220, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":11221, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11222, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11223, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11224, + "componentType":5126, + "count":24, + "max":[ + 110.00011444091797, + 50, + 584.666015625 + ], + "min":[ + -110.00007629394531, + 0, + -584.662109375 + ], + "type":"VEC3" + }, + { + "bufferView":11225, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11226, + "componentType":5126, + "count":586, + "max":[ + 155.0883331298828, + 32.825321197509766, + 155.0863800048828 + ], + "min":[ + -155.08447265625, + -7.2479248046875e-05, + -155.08645629882812 + ], + "type":"VEC3" + }, + { + "bufferView":11227, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":11228, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11229, + "componentType":5126, + "count":125, + "max":[ + 3.8607170581817627, + 15.442764282226562, + 7.721338748931885 + ], + "min":[ + -3.860625743865967, + 8.249282836914062e-05, + -7.721341609954834 + ], + "type":"VEC3" + }, + { + "bufferView":11230, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":11231, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":11232, + "componentType":5126, + "count":24, + "max":[ + 703.126953125, + 50, + 110 + ], + "min":[ + -703.126953125, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":11233, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11234, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + 5.7220458984375e-05, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":11235, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":11236, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":11237, + "componentType":5126, + "count":84, + "max":[ + 1104.498046875, + 2852.560791015625, + 29.2441463470459 + ], + "min":[ + -1104.49609375, + 0, + -29.24298667907715 + ], + "type":"VEC3" + }, + { + "bufferView":11238, + "componentType":5126, + "count":84, + "type":"VEC3" + }, + { + "bufferView":11239, + "componentType":5126, + "count":84, + "type":"VEC2" + }, + { + "bufferView":11240, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7294979095459 + ], + "min":[ + -43.587890625, + 5.7220458984375e-05, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":11241, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":11242, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":11243, + "componentType":5126, + "count":206, + "max":[ + 33.4022216796875, + 133.60888671875, + 66.8037109375 + ], + "min":[ + -33.4022216796875, + 0, + -66.8046875 + ], + "type":"VEC3" + }, + { + "bufferView":11244, + "componentType":5126, + "count":206, + "type":"VEC3" + }, + { + "bufferView":11245, + "componentType":5126, + "count":206, + "type":"VEC2" + }, + { + "bufferView":11246, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":11247, + "componentType":5126, + "count":808, + "max":[ + 4.130859375, + 90.58740997314453, + 34.45752716064453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":11248, + "componentType":5126, + "count":808, + "type":"VEC3" + }, + { + "bufferView":11249, + "componentType":5126, + "count":808, + "type":"VEC2" + }, + { + "bufferView":11250, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":11251, + "componentType":5126, + "count":882, + "max":[ + 130.72265625, + 2974.83349609375, + 134.31640625 + ], + "min":[ + -130.72265625, + 0, + -134.31349182128906 + ], + "type":"VEC3" + }, + { + "bufferView":11252, + "componentType":5126, + "count":882, + "type":"VEC3" + }, + { + "bufferView":11253, + "componentType":5126, + "count":882, + "type":"VEC2" + }, + { + "bufferView":11254, + "componentType":5123, + "count":1308, + "type":"SCALAR" + }, + { + "bufferView":11255, + "componentType":5126, + "count":574, + "max":[ + 197.12852478027344, + 202.405517578125, + 171.73837280273438 + ], + "min":[ + -197.13157653808594, + 3.0517578125e-05, + -171.73849487304688 + ], + "type":"VEC3" + }, + { + "bufferView":11256, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":11257, + "componentType":5126, + "count":564, + "max":[ + 204.45657348632812, + 32.82526779174805, + 204.45651245117188 + ], + "min":[ + -204.45677185058594, + 0.0001068115234375, + -204.45687866210938 + ], + "type":"VEC3" + }, + { + "bufferView":11258, + "componentType":5126, + "count":564, + "type":"VEC3" + }, + { + "bufferView":11259, + "componentType":5126, + "count":595, + "max":[ + 155.6784210205078, + 188.40704345703125, + 142.43716430664062 + ], + "min":[ + -155.67872619628906, + 0.0001983642578125, + -142.43719482421875 + ], + "type":"VEC3" + }, + { + "bufferView":11260, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":11261, + "componentType":5126, + "count":338, + "max":[ + 115.14122772216797, + 235.95416259765625, + 69.11679077148438 + ], + "min":[ + -115.14117431640625, + 25.712814331054688, + -69.11595153808594 + ], + "type":"VEC3" + }, + { + "bufferView":11262, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":11263, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":11264, + "componentType":5126, + "count":595, + "max":[ + 174.45584106445312, + 114.09710693359375, + 181.7139434814453 + ], + "min":[ + -174.45654296875, + 0.00016021728515625, + -181.71420288085938 + ], + "type":"VEC3" + }, + { + "bufferView":11265, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":11266, + "componentType":5126, + "count":578, + "max":[ + 177.50819396972656, + 184.29156494140625, + 160.88706970214844 + ], + "min":[ + -177.5111541748047, + 1.2340316772460938, + -148.60630798339844 + ], + "type":"VEC3" + }, + { + "bufferView":11267, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":11268, + "componentType":5126, + "count":96, + "max":[ + 747.4671630859375, + 205.17288208007812, + 73.47864532470703 + ], + "min":[ + -747.468994140625, + 2.6702880859375e-05, + -73.4786376953125 + ], + "type":"VEC3" + }, + { + "bufferView":11269, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":11270, + "componentType":5126, + "count":582, + "max":[ + 194.26376342773438, + 278.7198486328125, + 174.94082641601562 + ], + "min":[ + -201.4739532470703, + 41.14268493652344, + -186.87286376953125 + ], + "type":"VEC3" + }, + { + "bufferView":11271, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":11272, + "componentType":5126, + "count":594, + "max":[ + 145.3692626953125, + 211.52615356445312, + 130.35633850097656 + ], + "min":[ + -152.57525634765625, + 30.935142517089844, + -142.28817749023438 + ], + "type":"VEC3" + }, + { + "bufferView":11273, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":11274, + "componentType":5126, + "count":158, + "max":[ + 19.6142578125, + 12069.2880859375, + 437.37841796875 + ], + "min":[ + -19.6141357421875, + 0.000701904296875, + -437.37890625 + ], + "type":"VEC3" + }, + { + "bufferView":11275, + "componentType":5126, + "count":158, + "type":"VEC3" + }, + { + "bufferView":11276, + "componentType":5126, + "count":158, + "type":"VEC2" + }, + { + "bufferView":11277, + "componentType":5126, + "count":346, + "max":[ + 171.298828125, + 184.80859375, + 176.140625 + ], + "min":[ + -171.296875, + 44.45703125, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":11278, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":11279, + "componentType":5126, + "count":346, + "type":"VEC2" + }, + { + "bufferView":11280, + "componentType":5126, + "count":337, + "max":[ + 170.4326171875, + 188.5576171875, + 176.20361328125 + ], + "min":[ + -170.4365234375, + 45.2958984375, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":11281, + "componentType":5126, + "count":337, + "type":"VEC3" + }, + { + "bufferView":11282, + "componentType":5126, + "count":337, + "type":"VEC2" + }, + { + "bufferView":11283, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":11284, + "componentType":5126, + "count":463, + "max":[ + 186.856201171875, + 259.27752685546875, + 182.409423828125 + ], + "min":[ + -186.8560791015625, + 7.62939453125e-06, + -182.409912109375 + ], + "type":"VEC3" + }, + { + "bufferView":11285, + "componentType":5126, + "count":463, + "type":"VEC3" + }, + { + "bufferView":11286, + "componentType":5126, + "count":463, + "type":"VEC2" + }, + { + "bufferView":11287, + "componentType":5126, + "count":580, + "max":[ + 201.3351287841797, + 206.55145263671875, + 175.3795623779297 + ], + "min":[ + -201.33372497558594, + -7.62939453125e-05, + -175.37940979003906 + ], + "type":"VEC3" + }, + { + "bufferView":11288, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":11289, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11290, + "componentType":5126, + "count":338, + "max":[ + 115.14116668701172, + 210.2412567138672, + 69.11630249023438 + ], + "min":[ + -115.14129638671875, + -7.62939453125e-05, + -69.11651611328125 + ], + "type":"VEC3" + }, + { + "bufferView":11291, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":11292, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":11293, + "componentType":5126, + "count":598, + "max":[ + 167.6999969482422, + 32.825321197509766, + 167.69944763183594 + ], + "min":[ + -167.6990203857422, + 1.52587890625e-05, + -167.69956970214844 + ], + "type":"VEC3" + }, + { + "bufferView":11294, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":11295, + "componentType":5126, + "count":1420, + "max":[ + 244.46875, + 367.92938232421875, + 384.5786437988281 + ], + "min":[ + -244.466796875, + 4.57763671875e-05, + -384.5815734863281 + ], + "type":"VEC3" + }, + { + "bufferView":11296, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":11297, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":11298, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11299, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11300, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11301, + "componentType":5126, + "count":24, + "max":[ + 35.00062561035156, + 2000, + 35.00062561035156 + ], + "min":[ + -35.00062561035156, + 0, + -35.00062561035156 + ], + "type":"VEC3" + }, + { + "bufferView":11302, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11303, + "componentType":5126, + "count":586, + "max":[ + 171.77279663085938, + 112.81846618652344, + 178.9111785888672 + ], + "min":[ + -171.77450561523438, + 4.57763671875e-05, + -178.9111328125 + ], + "type":"VEC3" + }, + { + "bufferView":11304, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":11305, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11306, + "componentType":5126, + "count":24, + "max":[ + 83.761474609375, + 276.109375, + 88.3427734375 + ], + "min":[ + -83.761474609375, + 0, + -88.34375 + ], + "type":"VEC3" + }, + { + "bufferView":11307, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11308, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11309, + "componentType":5126, + "count":480, + "max":[ + 762.228515625, + 1119.944091796875, + 104.78085327148438 + ], + "min":[ + -762.228515625, + 0, + -104.77841186523438 + ], + "type":"VEC3" + }, + { + "bufferView":11310, + "componentType":5126, + "count":480, + "type":"VEC3" + }, + { + "bufferView":11311, + "componentType":5126, + "count":480, + "type":"VEC2" + }, + { + "bufferView":11312, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11313, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11314, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11315, + "componentType":5126, + "count":688, + "max":[ + 1091.2265625, + 286.94140625, + 96.4296646118164 + ], + "min":[ + -1091.2265625, + -1.52587890625e-05, + -96.43164825439453 + ], + "type":"VEC3" + }, + { + "bufferView":11316, + "componentType":5126, + "count":688, + "type":"VEC3" + }, + { + "bufferView":11317, + "componentType":5126, + "count":688, + "type":"VEC2" + }, + { + "bufferView":11318, + "componentType":5123, + "count":690, + "type":"SCALAR" + }, + { + "bufferView":11319, + "componentType":5126, + "count":76, + "max":[ + 278.86895751953125, + 3543.081787109375, + 279.10284423828125 + ], + "min":[ + -278.86810302734375, + 0, + -279.1005859375 + ], + "type":"VEC3" + }, + { + "bufferView":11320, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":11321, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":11322, + "componentType":5126, + "count":224, + "max":[ + 115.35120391845703, + 230.70260620117188, + 118.72062683105469 + ], + "min":[ + -115.35124969482422, + -3.814697265625e-05, + -118.72103881835938 + ], + "type":"VEC3" + }, + { + "bufferView":11323, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":11324, + "componentType":5126, + "count":54, + "max":[ + 217.04150390625, + 520.125, + 29.798828125 + ], + "min":[ + -217.04150390625, + 0, + -29.798828125 + ], + "type":"VEC3" + }, + { + "bufferView":11325, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":11326, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":11327, + "componentType":5126, + "count":582, + "max":[ + 188.29019165039062, + 270.5072021484375, + 169.49169921875 + ], + "min":[ + -195.49488830566406, + 39.895111083984375, + -181.42343139648438 + ], + "type":"VEC3" + }, + { + "bufferView":11328, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":11329, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11330, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11331, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11332, + "componentType":5126, + "count":580, + "max":[ + 182.92408752441406, + 263.1343994140625, + 164.5997314453125 + ], + "min":[ + -190.1309051513672, + 38.77491760253906, + -176.53164672851562 + ], + "type":"VEC3" + }, + { + "bufferView":11333, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":11334, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11335, + "componentType":5126, + "count":122, + "max":[ + 31.29064178466797, + 15.511200904846191, + 6.1123199462890625 + ], + "min":[ + -31.290664672851562, + -1.239776611328125e-05, + -6.1129913330078125 + ], + "type":"VEC3" + }, + { + "bufferView":11336, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":11337, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":11338, + "componentType":5126, + "count":572, + "max":[ + 152.99537658691406, + 103.86900329589844, + 159.2907257080078 + ], + "min":[ + -152.9966583251953, + -7.62939453125e-05, + -159.2908477783203 + ], + "type":"VEC3" + }, + { + "bufferView":11339, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":11340, + "componentType":5126, + "count":574, + "max":[ + 166.29783630371094, + 172.00180053710938, + 145.03712463378906 + ], + "min":[ + -166.2982635498047, + 0.000152587890625, + -145.03709411621094 + ], + "type":"VEC3" + }, + { + "bufferView":11341, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":11342, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11343, + "componentType":5126, + "count":71, + "max":[ + 3.7875146865844727, + 13.693550109863281, + 6.472888469696045 + ], + "min":[ + -3.7875587940216064, + -2.9292161343619227e-05, + -6.472880840301514 + ], + "type":"VEC3" + }, + { + "bufferView":11344, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":11345, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":11346, + "componentType":5126, + "count":528, + "max":[ + 19.8046875, + 2637.3974609375, + 722.720947265625 + ], + "min":[ + -19.802734375, + 0, + -722.721923828125 + ], + "type":"VEC3" + }, + { + "bufferView":11347, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":11348, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":11349, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11350, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11351, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11352, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":11353, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":11354, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":11355, + "componentType":5126, + "count":48, + "max":[ + 1412.1160888671875, + 866.85595703125, + 77 + ], + "min":[ + -1412.120361328125, + -3.0517578125e-05, + -77 + ], + "type":"VEC3" + }, + { + "bufferView":11356, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":11357, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":11358, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":11359, + "componentType":5126, + "count":593, + "max":[ + 144.02774047851562, + 209.6828155517578, + 129.13345336914062 + ], + "min":[ + -151.23428344726562, + 30.65485382080078, + -141.06521606445312 + ], + "type":"VEC3" + }, + { + "bufferView":11360, + "componentType":5126, + "count":593, + "type":"VEC3" + }, + { + "bufferView":11361, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11362, + "componentType":5126, + "count":120, + "max":[ + 17.02728271484375, + 3492.663330078125, + 17.02667236328125 + ], + "min":[ + -17.02740478515625, + 0, + -17.02667236328125 + ], + "type":"VEC3" + }, + { + "bufferView":11363, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":11364, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":11365, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":11366, + "componentType":5126, + "count":24, + "max":[ + 110.00007629394531, + 50, + 481.646484375 + ], + "min":[ + -110.00011444091797, + 0, + -481.6465148925781 + ], + "type":"VEC3" + }, + { + "bufferView":11367, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11368, + "componentType":5126, + "count":592, + "max":[ + 175.79734802246094, + 114.73617553710938, + 183.1155242919922 + ], + "min":[ + -175.79750061035156, + 6.103515625e-05, + -183.11553955078125 + ], + "type":"VEC3" + }, + { + "bufferView":11369, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":11370, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11371, + "componentType":5126, + "count":254, + "max":[ + 175.0556640625, + 196.214111328125, + 169.107421875 + ], + "min":[ + -175.05126953125, + 0, + -169.107421875 + ], + "type":"VEC3" + }, + { + "bufferView":11372, + "componentType":5126, + "count":254, + "type":"VEC3" + }, + { + "bufferView":11373, + "componentType":5126, + "count":254, + "type":"VEC2" + }, + { + "bufferView":11374, + "componentType":5126, + "count":590, + "max":[ + 153.9162139892578, + 103.21879577636719, + 156.4878387451172 + ], + "min":[ + -146.71078491210938, + 0.6280593872070312, + -156.48789978027344 + ], + "type":"VEC3" + }, + { + "bufferView":11375, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":11376, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11377, + "componentType":5126, + "count":344, + "max":[ + 170.43359375, + 188.556396484375, + 176.20361328125 + ], + "min":[ + -170.435546875, + 45.296630859375, + -176.2041015625 + ], + "type":"VEC3" + }, + { + "bufferView":11378, + "componentType":5126, + "count":344, + "type":"VEC3" + }, + { + "bufferView":11379, + "componentType":5126, + "count":344, + "type":"VEC2" + }, + { + "bufferView":11380, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":11381, + "componentType":5126, + "count":24, + "max":[ + 27.19384765625, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":11382, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11383, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11384, + "componentType":5126, + "count":76, + "max":[ + 278.8669738769531, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8664245605469, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":11385, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":11386, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":11387, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11388, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11389, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11390, + "componentType":5126, + "count":48, + "max":[ + 289.0126037597656, + 233.9413299560547, + 11.697283744812012 + ], + "min":[ + -289.01556396484375, + -1.52587890625e-05, + -11.696887016296387 + ], + "type":"VEC3" + }, + { + "bufferView":11391, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":11392, + "componentType":5126, + "count":580, + "max":[ + 173.11431884765625, + 113.45752716064453, + 180.3125 + ], + "min":[ + -173.1155242919922, + -0.0001678466796875, + -180.31268310546875 + ], + "type":"VEC3" + }, + { + "bufferView":11393, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":11394, + "componentType":5126, + "count":338, + "max":[ + 115.14120483398438, + 235.95407104492188, + 69.11639404296875 + ], + "min":[ + -115.14122772216797, + 25.712726593017578, + -69.11636352539062 + ], + "type":"VEC3" + }, + { + "bufferView":11395, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":11396, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":11397, + "componentType":5126, + "count":576, + "max":[ + 171.90518188476562, + 178.72332763671875, + 156.03253173828125 + ], + "min":[ + -171.9025421142578, + 1.1937103271484375, + -143.7512664794922 + ], + "type":"VEC3" + }, + { + "bufferView":11398, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":11399, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11400, + "componentType":5126, + "count":76, + "max":[ + 278.8684997558594, + 3543.081787109375, + 279.1027526855469 + ], + "min":[ + -278.8685302734375, + 0, + -279.10015869140625 + ], + "type":"VEC3" + }, + { + "bufferView":11401, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":11402, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":11403, + "componentType":5126, + "count":432, + "max":[ + 6.750767230987549, + 245.5279541015625, + 6516.54052734375 + ], + "min":[ + -6.750643730163574, + 0, + -6516.54052734375 + ], + "type":"VEC3" + }, + { + "bufferView":11404, + "componentType":5126, + "count":432, + "type":"VEC3" + }, + { + "bufferView":11405, + "componentType":5126, + "count":432, + "type":"VEC2" + }, + { + "bufferView":11406, + "componentType":5123, + "count":648, + "type":"SCALAR" + }, + { + "bufferView":11407, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76666259765625, + 78.58544921875 + ], + "min":[ + -46.2822265625, + 0, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":11408, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11409, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11410, + "componentType":5126, + "count":572, + "max":[ + 155.08447265625, + 160.9454345703125, + 135.32752990722656 + ], + "min":[ + -155.0883331298828, + -0.0001220703125, + -135.3275604248047 + ], + "type":"VEC3" + }, + { + "bufferView":11411, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":11412, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11413, + "componentType":5126, + "count":578, + "max":[ + 194.57476806640625, + 233.73831176757812, + 177.90367126464844 + ], + "min":[ + -194.57534790039062, + -6.103515625e-05, + -177.9034881591797 + ], + "type":"VEC3" + }, + { + "bufferView":11414, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":11415, + "componentType":5126, + "count":24, + "max":[ + 110.00007629394531, + 50, + 481.6465148925781 + ], + "min":[ + -110.00010681152344, + 0, + -481.6465148925781 + ], + "type":"VEC3" + }, + { + "bufferView":11416, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11417, + "componentType":5126, + "count":562, + "max":[ + 199.93199157714844, + 205.16958618164062, + 174.16575622558594 + ], + "min":[ + -199.93392944335938, + 0.00011444091796875, + -174.16587829589844 + ], + "type":"VEC3" + }, + { + "bufferView":11418, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":11419, + "componentType":5126, + "count":1020, + "max":[ + 831.5458984375, + 116.2333984375, + 746.10400390625 + ], + "min":[ + -831.5458984375, + 0.000118255615234375, + -746.1015625 + ], + "type":"VEC3" + }, + { + "bufferView":11420, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":11421, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":11422, + "componentType":5126, + "count":574, + "max":[ + 201.3351287841797, + 207.9571990966797, + 169.23883056640625 + ], + "min":[ + -201.33372497558594, + 1.40570068359375, + -181.52023315429688 + ], + "type":"VEC3" + }, + { + "bufferView":11423, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":11424, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11425, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11426, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11427, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11428, + "componentType":5126, + "count":24, + "max":[ + 349.0685729980469, + 50.00018310546875, + 584.6641845703125 + ], + "min":[ + -349.0680847167969, + 7.65542354201898e-05, + -584.6641235351562 + ], + "type":"VEC3" + }, + { + "bufferView":11429, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11430, + "componentType":5126, + "count":4802, + "max":[ + 91.3736801147461, + 182.74732971191406, + 6.498479843139648 + ], + "min":[ + -91.37361907958984, + 1.5562191038043238e-05, + -6.498486042022705 + ], + "type":"VEC3" + }, + { + "bufferView":11431, + "componentType":5126, + "count":4802, + "type":"VEC3" + }, + { + "bufferView":11432, + "componentType":5126, + "count":4802, + "type":"VEC2" + }, + { + "bufferView":11433, + "componentType":5126, + "count":48, + "max":[ + 1067.000244140625, + 193.80001831054688, + 24832 + ], + "min":[ + -1067, + 7.62939453125e-06, + -24832 + ], + "type":"VEC3" + }, + { + "bufferView":11434, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":11435, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":11436, + "componentType":5126, + "count":648, + "max":[ + 615.01123046875, + 2510.925048828125, + 347.26611328125 + ], + "min":[ + -615.01025390625, + 0, + -347.2666015625 + ], + "type":"VEC3" + }, + { + "bufferView":11437, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":11438, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":11439, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.5142822265625, + 22.7259578704834 + ], + "min":[ + -43.58984375, + 0.000118255615234375, + -22.729740142822266 + ], + "type":"VEC3" + }, + { + "bufferView":11440, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":11441, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":11442, + "componentType":5126, + "count":224, + "max":[ + 115.35120391845703, + 230.70249938964844, + 118.72100067138672 + ], + "min":[ + -115.35124969482422, + 3.814697265625e-05, + -118.72059631347656 + ], + "type":"VEC3" + }, + { + "bufferView":11443, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":11444, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":11445, + "componentType":5126, + "count":60, + "max":[ + 3.787522077560425, + 14.031469345092773, + 5.548454284667969 + ], + "min":[ + -3.7875452041625977, + -3.24249267578125e-05, + -5.548465728759766 + ], + "type":"VEC3" + }, + { + "bufferView":11446, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":11447, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":11448, + "componentType":5126, + "count":24, + "max":[ + 22.129398345947266, + 728.916259765625, + 187.00445556640625 + ], + "min":[ + -22.129379272460938, + 0.0001220703125, + -187.00550842285156 + ], + "type":"VEC3" + }, + { + "bufferView":11449, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11450, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11451, + "componentType":5126, + "count":918, + "max":[ + 879.66015625, + 587.0330810546875, + 879.6616821289062 + ], + "min":[ + -879.658203125, + 9.1552734375e-05, + -879.6587524414062 + ], + "type":"VEC3" + }, + { + "bufferView":11452, + "componentType":5126, + "count":918, + "type":"VEC3" + }, + { + "bufferView":11453, + "componentType":5126, + "count":918, + "type":"VEC2" + }, + { + "bufferView":11454, + "componentType":5123, + "count":1440, + "type":"SCALAR" + }, + { + "bufferView":11455, + "componentType":5126, + "count":136, + "max":[ + 824.2421875, + 156.626220703125, + 69.5711669921875 + ], + "min":[ + -824.24169921875, + 0, + -69.5684814453125 + ], + "type":"VEC3" + }, + { + "bufferView":11456, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":11457, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":11458, + "componentType":5126, + "count":112, + "max":[ + 31.293148040771484, + 15.51118278503418, + 6.5037689208984375 + ], + "min":[ + -31.29313850402832, + 7.677078247070312e-05, + -6.5018310546875 + ], + "type":"VEC3" + }, + { + "bufferView":11459, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":11460, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":11461, + "componentType":5126, + "count":76, + "max":[ + 278.86810302734375, + 3543.081787109375, + 279.1005859375 + ], + "min":[ + -278.86895751953125, + 0, + -279.10284423828125 + ], + "type":"VEC3" + }, + { + "bufferView":11462, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":11463, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":11464, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11465, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11466, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11467, + "componentType":5126, + "count":820, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45655059814453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":11468, + "componentType":5126, + "count":820, + "type":"VEC3" + }, + { + "bufferView":11469, + "componentType":5126, + "count":820, + "type":"VEC2" + }, + { + "bufferView":11470, + "componentType":5126, + "count":161, + "max":[ + 769.70751953125, + 113.194580078125, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":11471, + "componentType":5126, + "count":161, + "type":"VEC3" + }, + { + "bufferView":11472, + "componentType":5126, + "count":161, + "type":"VEC2" + }, + { + "bufferView":11473, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":11474, + "componentType":5126, + "count":564, + "max":[ + 192.92724609375, + 32.82526779174805, + 192.92567443847656 + ], + "min":[ + -192.9241180419922, + 6.4849853515625e-05, + -192.9257354736328 + ], + "type":"VEC3" + }, + { + "bufferView":11475, + "componentType":5126, + "count":564, + "type":"VEC3" + }, + { + "bufferView":11476, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11477, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16455078125, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":11478, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":11479, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":11480, + "componentType":5126, + "count":72, + "max":[ + 771.3455200195312, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.345458984375, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":11481, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":11482, + "componentType":5126, + "count":458, + "max":[ + 124.61407470703125, + 172.9116973876953, + 121.6494140625 + ], + "min":[ + -124.614013671875, + -1.52587890625e-05, + -121.6484375 + ], + "type":"VEC3" + }, + { + "bufferView":11483, + "componentType":5126, + "count":458, + "type":"VEC3" + }, + { + "bufferView":11484, + "componentType":5126, + "count":458, + "type":"VEC2" + }, + { + "bufferView":11485, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11486, + "componentType":5126, + "count":121, + "max":[ + 7.34515380859375, + 706.9150390625, + 7.3455810546875 + ], + "min":[ + -7.34600830078125, + 0, + -7.3455810546875 + ], + "type":"VEC3" + }, + { + "bufferView":11487, + "componentType":5126, + "count":121, + "type":"VEC3" + }, + { + "bufferView":11488, + "componentType":5126, + "count":121, + "type":"VEC2" + }, + { + "bufferView":11489, + "componentType":5126, + "count":48, + "max":[ + 127.44287109375, + 625.6328125, + 391.737548828125 + ], + "min":[ + -127.4443359375, + 0, + -391.737548828125 + ], + "type":"VEC3" + }, + { + "bufferView":11490, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":11491, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":11492, + "componentType":5126, + "count":608, + "max":[ + 141.34466552734375, + 205.99630737304688, + 126.68780517578125 + ], + "min":[ + -148.55227661132812, + 30.09485626220703, + -138.61888122558594 + ], + "type":"VEC3" + }, + { + "bufferView":11493, + "componentType":5126, + "count":608, + "type":"VEC3" + }, + { + "bufferView":11494, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11495, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4544677734375, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":11496, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":11497, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":11498, + "componentType":5126, + "count":4, + "max":[ + 698.8828125, + 2586.479248046875, + 0.0021792426705360413 + ], + "min":[ + -698.884765625, + 0, + 0.0017270073294639587 + ], + "type":"VEC3" + }, + { + "bufferView":11499, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11500, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11501, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11502, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11503, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11504, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68524169921875 + ], + "min":[ + -15.4755859375, + 0, + -381.68817138671875 + ], + "type":"VEC3" + }, + { + "bufferView":11505, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11506, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11507, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11508, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11509, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11510, + "componentType":5126, + "count":7788, + "max":[ + 103.786865234375, + 427.46484375, + 496.30615234375 + ], + "min":[ + -103.7867431640625, + 0, + -496.30712890625 + ], + "type":"VEC3" + }, + { + "bufferView":11511, + "componentType":5126, + "count":7788, + "type":"VEC3" + }, + { + "bufferView":11512, + "componentType":5126, + "count":7788, + "type":"VEC2" + }, + { + "bufferView":11513, + "componentType":5126, + "count":585, + "max":[ + 150.88096618652344, + 156.799560546875, + 131.6864471435547 + ], + "min":[ + -150.8831329345703, + -0.0001068115234375, + -131.68649291992188 + ], + "type":"VEC3" + }, + { + "bufferView":11514, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":11515, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11516, + "componentType":5126, + "count":56, + "max":[ + 115.15478515625, + 511.947509765625, + 147.15576171875 + ], + "min":[ + -115.15283203125, + 0, + -147.15673828125 + ], + "type":"VEC3" + }, + { + "bufferView":11517, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":11518, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":11519, + "componentType":5126, + "count":528, + "max":[ + 19.802734375, + 2637.3974609375, + 722.721435546875 + ], + "min":[ + -19.802734375, + 0, + -722.720947265625 + ], + "type":"VEC3" + }, + { + "bufferView":11520, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":11521, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":11522, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28369140625 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":11523, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":11524, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":11525, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11526, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11527, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11528, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":11529, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11530, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11531, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11532, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11533, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11534, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11535, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11536, + "componentType":5126, + "count":806, + "max":[ + 4.130859375, + 90.58740997314453, + 34.45655059814453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":11537, + "componentType":5126, + "count":806, + "type":"VEC3" + }, + { + "bufferView":11538, + "componentType":5126, + "count":806, + "type":"VEC2" + }, + { + "bufferView":11539, + "componentType":5126, + "count":882, + "max":[ + 134.314453125, + 2974.83349609375, + 130.721435546875 + ], + "min":[ + -134.31640625, + 0, + -130.72096252441406 + ], + "type":"VEC3" + }, + { + "bufferView":11540, + "componentType":5126, + "count":882, + "type":"VEC3" + }, + { + "bufferView":11541, + "componentType":5126, + "count":882, + "type":"VEC2" + }, + { + "bufferView":11542, + "componentType":5126, + "count":56, + "max":[ + 238.48046875, + 483.897705078125, + 30 + ], + "min":[ + -238.4775390625, + 0, + -30.0009765625 + ], + "type":"VEC3" + }, + { + "bufferView":11543, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":11544, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":11545, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11546, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11547, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11548, + "componentType":5126, + "count":76, + "max":[ + 279.1010437011719, + 3543.081787109375, + 278.8670349121094 + ], + "min":[ + -279.0986328125, + 0, + -278.8664245605469 + ], + "type":"VEC3" + }, + { + "bufferView":11549, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":11550, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":11551, + "componentType":5126, + "count":24, + "max":[ + 703.126953125, + 50, + 110 + ], + "min":[ + -703.126953125, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":11552, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11553, + "componentType":5126, + "count":84, + "max":[ + 1104.4951171875, + 2852.559326171875, + 29.245634078979492 + ], + "min":[ + -1104.494140625, + 0, + -29.244178771972656 + ], + "type":"VEC3" + }, + { + "bufferView":11554, + "componentType":5126, + "count":84, + "type":"VEC3" + }, + { + "bufferView":11555, + "componentType":5126, + "count":84, + "type":"VEC2" + }, + { + "bufferView":11556, + "componentType":5126, + "count":56, + "max":[ + 217.041015625, + 520.125, + 29.7984619140625 + ], + "min":[ + -217.04150390625, + 0, + -29.798583984375 + ], + "type":"VEC3" + }, + { + "bufferView":11557, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":11558, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":11559, + "componentType":5126, + "count":112, + "max":[ + 116.97066497802734, + 2149.27001953125, + 116.97098541259766 + ], + "min":[ + -116.97066497802734, + 0, + -116.97066497802734 + ], + "type":"VEC3" + }, + { + "bufferView":11560, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":11561, + "componentType":5126, + "count":165, + "max":[ + 769.70751953125, + 113.194580078125, + 56.596435546875 + ], + "min":[ + -769.709228515625, + 0, + -56.59814453125 + ], + "type":"VEC3" + }, + { + "bufferView":11562, + "componentType":5126, + "count":165, + "type":"VEC3" + }, + { + "bufferView":11563, + "componentType":5126, + "count":165, + "type":"VEC2" + }, + { + "bufferView":11564, + "componentType":5126, + "count":88, + "max":[ + 58.8118896484375, + 124.20556640625, + 895.806640625 + ], + "min":[ + -58.8109130859375, + 0, + -895.806640625 + ], + "type":"VEC3" + }, + { + "bufferView":11565, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":11566, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":11567, + "componentType":5126, + "count":338, + "max":[ + 45.858116149902344, + 228.16934204101562, + 115.62039184570312 + ], + "min":[ + -45.8568000793457, + 0.00011444091796875, + -115.62022399902344 + ], + "type":"VEC3" + }, + { + "bufferView":11568, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":11569, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":11570, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.585693359375 + ], + "min":[ + -46.2841796875, + 0, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":11571, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11572, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11573, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":11574, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11575, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.2841796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.2841796875 + ], + "type":"VEC3" + }, + { + "bufferView":11576, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":11577, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":11578, + "componentType":5126, + "count":48, + "max":[ + 11.698833465576172, + 233.9414520263672, + 289.0145263671875 + ], + "min":[ + -11.695405006408691, + 7.62939453125e-06, + -289.01361083984375 + ], + "type":"VEC3" + }, + { + "bufferView":11579, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":11580, + "componentType":5123, + "count":72, + "type":"SCALAR" + }, + { + "bufferView":11581, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51410675048828, + 43.587894439697266 + ], + "min":[ + -22.7265625, + -7.62939453125e-06, + -43.590335845947266 + ], + "type":"VEC3" + }, + { + "bufferView":11582, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":11583, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":11584, + "componentType":5126, + "count":1050, + "max":[ + 90.1090087890625, + 76.19921875, + 125.22607421875 + ], + "min":[ + -90.109130859375, + 0, + -125.22607421875 + ], + "type":"VEC3" + }, + { + "bufferView":11585, + "componentType":5126, + "count":1050, + "type":"VEC3" + }, + { + "bufferView":11586, + "componentType":5126, + "count":1050, + "type":"VEC2" + }, + { + "bufferView":11587, + "componentType":5126, + "count":574, + "max":[ + 188.72206115722656, + 195.42843627929688, + 170.59658813476562 + ], + "min":[ + -188.72061157226562, + 1.3149185180664062, + -158.31590270996094 + ], + "type":"VEC3" + }, + { + "bufferView":11588, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":11589, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11590, + "componentType":5126, + "count":336, + "max":[ + 13.560546875, + 230.1728515625, + 115.08642578125 + ], + "min":[ + -13.560844421386719, + -3.814697265625e-05, + -115.08648681640625 + ], + "type":"VEC3" + }, + { + "bufferView":11591, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":11592, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11593, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11594, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11595, + "componentType":5126, + "count":224, + "max":[ + 115.14124298095703, + 317.5785217285156, + 160.0548858642578 + ], + "min":[ + -115.14117431640625, + 0.0001068115234375, + -160.05474853515625 + ], + "type":"VEC3" + }, + { + "bufferView":11596, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":11597, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.48492431640625 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48486328125 + ], + "type":"VEC3" + }, + { + "bufferView":11598, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":11599, + "componentType":5126, + "count":590, + "max":[ + 192.61654663085938, + 276.45672607421875, + 173.439208984375 + ], + "min":[ + -199.82736206054688, + 40.79896545410156, + -185.37115478515625 + ], + "type":"VEC3" + }, + { + "bufferView":11600, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":11601, + "componentType":5126, + "count":337, + "max":[ + 171.298828125, + 184.80810546875, + 176.14013671875 + ], + "min":[ + -171.296875, + 44.45703125, + -176.1416015625 + ], + "type":"VEC3" + }, + { + "bufferView":11602, + "componentType":5126, + "count":337, + "type":"VEC3" + }, + { + "bufferView":11603, + "componentType":5126, + "count":337, + "type":"VEC2" + }, + { + "bufferView":11604, + "componentType":5126, + "count":342, + "max":[ + 170.43359375, + 188.556640625, + 176.20361328125 + ], + "min":[ + -170.435546875, + 45.296630859375, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":11605, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":11606, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":11607, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":11608, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":11609, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":11610, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":11611, + "componentType":5126, + "count":349, + "max":[ + 170.435546875, + 188.553955078125, + 176.2041015625 + ], + "min":[ + -170.4345703125, + 45.296142578125, + -176.203125 + ], + "type":"VEC3" + }, + { + "bufferView":11612, + "componentType":5126, + "count":349, + "type":"VEC3" + }, + { + "bufferView":11613, + "componentType":5126, + "count":349, + "type":"VEC2" + }, + { + "bufferView":11614, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":11615, + "componentType":5126, + "count":4, + "max":[ + 698.884765625, + 2586.479248046875, + 0.0010806098580360413 + ], + "min":[ + -698.884765625, + 0, + 0.0006283745169639587 + ], + "type":"VEC3" + }, + { + "bufferView":11616, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11617, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11618, + "componentType":5126, + "count":226, + "max":[ + 115.14118194580078, + 343.64056396484375, + 159.38644409179688 + ], + "min":[ + -115.14126586914062, + 26.062088012695312, + -160.72323608398438 + ], + "type":"VEC3" + }, + { + "bufferView":11619, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":11620, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":11621, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11622, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11623, + "componentType":5126, + "count":591, + "max":[ + 167.74822998046875, + 202.47500610351562, + 153.44439697265625 + ], + "min":[ + -167.75157165527344, + -0.0001373291015625, + -153.4436798095703 + ], + "type":"VEC3" + }, + { + "bufferView":11624, + "componentType":5126, + "count":591, + "type":"VEC3" + }, + { + "bufferView":11625, + "componentType":5126, + "count":590, + "max":[ + 166.2982635498047, + 32.825321197509766, + 166.29798889160156 + ], + "min":[ + -166.29783630371094, + 1.52587890625e-05, + -166.29811096191406 + ], + "type":"VEC3" + }, + { + "bufferView":11626, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":11627, + "componentType":5126, + "count":1420, + "max":[ + 433.12109375, + 367.929443359375, + 90.00634765625 + ], + "min":[ + -433.119140625, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":11628, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":11629, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":11630, + "componentType":5126, + "count":76, + "max":[ + 279.1010437011719, + 3543.081787109375, + 278.8670349121094 + ], + "min":[ + -279.0986328125, + 0, + -278.8664245605469 + ], + "type":"VEC3" + }, + { + "bufferView":11631, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":11632, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":11633, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.58984375, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":11634, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":11635, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":11636, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11637, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11638, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11639, + "componentType":5126, + "count":164, + "max":[ + 524.54638671875, + 14332.2607421875, + 63.8193359375 + ], + "min":[ + -524.545166015625, + 0.00096893310546875, + -63.8193359375 + ], + "type":"VEC3" + }, + { + "bufferView":11640, + "componentType":5126, + "count":164, + "type":"VEC3" + }, + { + "bufferView":11641, + "componentType":5126, + "count":164, + "type":"VEC2" + }, + { + "bufferView":11642, + "componentType":5126, + "count":582, + "max":[ + 773.8203125, + 1124.222900390625, + 31.93008041381836 + ], + "min":[ + -773.818359375, + 0, + -31.93349838256836 + ], + "type":"VEC3" + }, + { + "bufferView":11643, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":11644, + "componentType":5126, + "count":582, + "type":"VEC2" + }, + { + "bufferView":11645, + "componentType":5126, + "count":105, + "max":[ + 86.38427734375, + 4344.65771484375, + 86.384765625 + ], + "min":[ + -86.3843994140625, + -0.0001373291015625, + -86.3837890625 + ], + "type":"VEC3" + }, + { + "bufferView":11646, + "componentType":5126, + "count":105, + "type":"VEC3" + }, + { + "bufferView":11647, + "componentType":5126, + "count":105, + "type":"VEC2" + }, + { + "bufferView":11648, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11649, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11650, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11651, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 463.990234375 + ], + "min":[ + -110.0000228881836, + 0, + -463.990234375 + ], + "type":"VEC3" + }, + { + "bufferView":11652, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11653, + "componentType":5126, + "count":588, + "max":[ + 940.453125, + 1055.2056884765625, + 881.7671508789062 + ], + "min":[ + -940.453125, + 0.0003662109375, + -881.7666625976562 + ], + "type":"VEC3" + }, + { + "bufferView":11654, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":11655, + "componentType":5126, + "count":588, + "type":"VEC2" + }, + { + "bufferView":11656, + "componentType":5126, + "count":76, + "max":[ + 278.86651611328125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8672180175781, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":11657, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":11658, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":11659, + "componentType":5126, + "count":342, + "max":[ + 115.3511962890625, + 230.70248413085938, + 13.560577392578125 + ], + "min":[ + -115.35124969482422, + -3.0517578125e-05, + -13.560890197753906 + ], + "type":"VEC3" + }, + { + "bufferView":11660, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":11661, + "componentType":5126, + "count":267, + "max":[ + 174.40478515625, + 193.25439453125, + 169.0634765625 + ], + "min":[ + -174.412109375, + 0, + -169.0625 + ], + "type":"VEC3" + }, + { + "bufferView":11662, + "componentType":5126, + "count":267, + "type":"VEC3" + }, + { + "bufferView":11663, + "componentType":5126, + "count":267, + "type":"VEC2" + }, + { + "bufferView":11664, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":11665, + "componentType":5126, + "count":572, + "max":[ + 186.9486541748047, + 268.66400146484375, + 168.26876831054688 + ], + "min":[ + -194.1539306640625, + 39.615081787109375, + -180.20040893554688 + ], + "type":"VEC3" + }, + { + "bufferView":11666, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":11667, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11668, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11669, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11670, + "componentType":5126, + "count":575, + "max":[ + 165.06910705566406, + 109.62261962890625, + 171.90391540527344 + ], + "min":[ + -165.06564331054688, + 0.000244140625, + -171.90383911132812 + ], + "type":"VEC3" + }, + { + "bufferView":11671, + "componentType":5126, + "count":575, + "type":"VEC3" + }, + { + "bufferView":11672, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11673, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":11674, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":11675, + "componentType":5126, + "count":682, + "max":[ + 130.72265625, + 2974.83349609375, + 134.316162109375 + ], + "min":[ + -130.72265625, + 0, + -134.31568908691406 + ], + "type":"VEC3" + }, + { + "bufferView":11676, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":11677, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":11678, + "componentType":5123, + "count":1308, + "type":"SCALAR" + }, + { + "bufferView":11679, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11680, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11681, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11682, + "componentType":5126, + "count":284, + "max":[ + 481.304443359375, + 1694.982421875, + 229.26123046875 + ], + "min":[ + -481.30615234375, + 0, + -229.2607421875 + ], + "type":"VEC3" + }, + { + "bufferView":11683, + "componentType":5126, + "count":284, + "type":"VEC3" + }, + { + "bufferView":11684, + "componentType":5126, + "count":284, + "type":"VEC2" + }, + { + "bufferView":11685, + "componentType":5123, + "count":564, + "type":"SCALAR" + }, + { + "bufferView":11686, + "componentType":5126, + "count":50, + "max":[ + 127.44287109375, + 625.6328125, + 391.7373046875 + ], + "min":[ + -127.4443359375, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":11687, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":11688, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":11689, + "componentType":5126, + "count":587, + "max":[ + 142.68621826171875, + 207.83984375, + 127.91027069091797 + ], + "min":[ + -149.8932647705078, + 30.375045776367188, + -139.84237670898438 + ], + "type":"VEC3" + }, + { + "bufferView":11690, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":11691, + "componentType":5126, + "count":129, + "max":[ + 11.81842041015625, + 20, + 318.7106628417969 + ], + "min":[ + -11.8216552734375, + 0.00048828125, + -318.7106018066406 + ], + "type":"VEC3" + }, + { + "bufferView":11692, + "componentType":5126, + "count":129, + "type":"VEC3" + }, + { + "bufferView":11693, + "componentType":5126, + "count":129, + "type":"VEC2" + }, + { + "bufferView":11694, + "componentType":5126, + "count":587, + "max":[ + 166.8297119140625, + 241.0164794921875, + 149.92369079589844 + ], + "min":[ + -174.03504943847656, + 35.41490936279297, + -161.8561553955078 + ], + "type":"VEC3" + }, + { + "bufferView":11695, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":11696, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11697, + "componentType":5126, + "count":12, + "max":[ + 10.2607421875, + 419.39984130859375, + 443.6835632324219 + ], + "min":[ + -10.259765625, + 7.62939453125e-05, + -443.6864929199219 + ], + "type":"VEC3" + }, + { + "bufferView":11698, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":11699, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":11700, + "componentType":5126, + "count":568, + "max":[ + 149.48141479492188, + 32.8253173828125, + 149.48057556152344 + ], + "min":[ + -149.47979736328125, + -4.9591064453125e-05, + -149.48060607910156 + ], + "type":"VEC3" + }, + { + "bufferView":11701, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":11702, + "componentType":5126, + "count":600, + "max":[ + 158.36061096191406, + 191.53341674804688, + 144.8830108642578 + ], + "min":[ + -158.36146545410156, + 0.0001678466796875, + -144.8831024169922 + ], + "type":"VEC3" + }, + { + "bufferView":11703, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":11704, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11705, + "componentType":5126, + "count":579, + "max":[ + 190.1309051513672, + 120.81708526611328, + 194.32701110839844 + ], + "min":[ + -182.92408752441406, + 0.7858963012695312, + -194.3273162841797 + ], + "type":"VEC3" + }, + { + "bufferView":11706, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":11707, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11708, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":11709, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11710, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11711, + "componentType":5126, + "count":597, + "max":[ + 174.45584106445312, + 114.09710693359375, + 181.7140655517578 + ], + "min":[ + -174.45654296875, + 0.00016021728515625, + -181.71408081054688 + ], + "type":"VEC3" + }, + { + "bufferView":11712, + "componentType":5126, + "count":597, + "type":"VEC3" + }, + { + "bufferView":11713, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11714, + "componentType":5126, + "count":54, + "max":[ + 217.04052734375, + 520.125244140625, + 29.798828125 + ], + "min":[ + -217.04150390625, + 0.000244140625, + -29.798828125 + ], + "type":"VEC3" + }, + { + "bufferView":11715, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":11716, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":11717, + "componentType":5126, + "count":346, + "max":[ + 170.435546875, + 188.55810546875, + 176.2041015625 + ], + "min":[ + -170.4345703125, + 45.29638671875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":11718, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":11719, + "componentType":5126, + "count":346, + "type":"VEC2" + }, + { + "bufferView":11720, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":11721, + "componentType":5126, + "count":328, + "max":[ + 170.9052734375, + 157.004638671875, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.2890625, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":11722, + "componentType":5126, + "count":328, + "type":"VEC3" + }, + { + "bufferView":11723, + "componentType":5126, + "count":328, + "type":"VEC2" + }, + { + "bufferView":11724, + "componentType":5126, + "count":52, + "max":[ + 161.98095703125, + 658.67578125, + 366.15234375 + ], + "min":[ + -161.97900390625, + 0, + -366.1533203125 + ], + "type":"VEC3" + }, + { + "bufferView":11725, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":11726, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":11727, + "componentType":5126, + "count":76, + "max":[ + 278.8669738769531, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8664245605469, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":11728, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":11729, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":11730, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11731, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11732, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11733, + "componentType":5126, + "count":16, + "max":[ + 6066.0556640625, + 1203, + 1382.158203125 + ], + "min":[ + -6066.0546875, + 0, + -1382.155517578125 + ], + "type":"VEC3" + }, + { + "bufferView":11734, + "componentType":5126, + "count":16, + "type":"VEC3" + }, + { + "bufferView":11735, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":11736, + "componentType":5126, + "count":226, + "max":[ + 115.14122009277344, + 317.57855224609375, + 160.0547332763672 + ], + "min":[ + -115.14129638671875, + -6.103515625e-05, + -160.05490112304688 + ], + "type":"VEC3" + }, + { + "bufferView":11737, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":11738, + "componentType":5126, + "count":590, + "max":[ + 167.6999969482422, + 174.54714965820312, + 152.39096069335938 + ], + "min":[ + -167.6990203857422, + 1.1636428833007812, + -140.11068725585938 + ], + "type":"VEC3" + }, + { + "bufferView":11739, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":11740, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11741, + "componentType":5126, + "count":583, + "max":[ + 190.5502166748047, + 122.43497467041016, + 198.53135681152344 + ], + "min":[ + -190.5523681640625, + -0.000244140625, + -198.53167724609375 + ], + "type":"VEC3" + }, + { + "bufferView":11742, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":11743, + "componentType":5126, + "count":590, + "max":[ + 170.50344848632812, + 177.33126831054688, + 154.81887817382812 + ], + "min":[ + -170.50135803222656, + 1.1837615966796875, + -142.53758239746094 + ], + "type":"VEC3" + }, + { + "bufferView":11744, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":11745, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11746, + "componentType":5126, + "count":24, + "max":[ + 182.4747314453125, + 47.837890625, + 502.0746154785156 + ], + "min":[ + -182.47543334960938, + -0.000244140625, + -502.07452392578125 + ], + "type":"VEC3" + }, + { + "bufferView":11747, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11748, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11749, + "componentType":5126, + "count":76, + "max":[ + 278.86676025390625, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8669738769531, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":11750, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":11751, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":11752, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.585693359375 + ], + "min":[ + -46.2841796875, + 0, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":11753, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11754, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11755, + "componentType":5126, + "count":72, + "max":[ + 771.345458984375, + 1492.539794921875, + 22.500337600708008 + ], + "min":[ + -771.3455200195312, + 0, + -22.50017738342285 + ], + "type":"VEC3" + }, + { + "bufferView":11756, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":11757, + "componentType":5126, + "count":582, + "max":[ + 201.33372497558594, + 206.5514373779297, + 175.37945556640625 + ], + "min":[ + -201.3351287841797, + -6.103515625e-05, + -175.37960815429688 + ], + "type":"VEC3" + }, + { + "bufferView":11758, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":11759, + "componentType":5126, + "count":488, + "max":[ + 879.6591796875, + 587.0332641601562, + 879.6582641601562 + ], + "min":[ + -879.6591796875, + 3.0517578125e-05, + -879.6621704101562 + ], + "type":"VEC3" + }, + { + "bufferView":11760, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":11761, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":11762, + "componentType":5126, + "count":354, + "max":[ + 170.4345703125, + 188.554443359375, + 176.2041015625 + ], + "min":[ + -170.4345703125, + 45.296630859375, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":11763, + "componentType":5126, + "count":354, + "type":"VEC3" + }, + { + "bufferView":11764, + "componentType":5126, + "count":354, + "type":"VEC2" + }, + { + "bufferView":11765, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":11766, + "componentType":5126, + "count":48, + "max":[ + 289.0155334472656, + 233.94134521484375, + 11.697266578674316 + ], + "min":[ + -289.0126037597656, + -7.62939453125e-06, + -11.696868896484375 + ], + "type":"VEC3" + }, + { + "bufferView":11767, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":11768, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11769, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11770, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11771, + "componentType":5126, + "count":340, + "max":[ + 139.86639404296875, + 178.644775390625, + 131.32904052734375 + ], + "min":[ + -139.86773681640625, + 0, + -131.3286590576172 + ], + "type":"VEC3" + }, + { + "bufferView":11772, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":11773, + "componentType":5126, + "count":24, + "max":[ + 110.00023651123047, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534163448028266, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":11774, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11775, + "componentType":5126, + "count":96, + "max":[ + 471.5048828125, + 2139.384521484375, + 31.14141845703125 + ], + "min":[ + -471.5048828125, + 0, + -31.14031982421875 + ], + "type":"VEC3" + }, + { + "bufferView":11776, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":11777, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":11778, + "componentType":5126, + "count":4802, + "max":[ + 91.37360382080078, + 182.74732971191406, + 6.498558044433594 + ], + "min":[ + -91.37369537353516, + 1.52587890625e-05, + -6.498471260070801 + ], + "type":"VEC3" + }, + { + "bufferView":11779, + "componentType":5126, + "count":4802, + "type":"VEC3" + }, + { + "bufferView":11780, + "componentType":5126, + "count":4802, + "type":"VEC2" + }, + { + "bufferView":11781, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":11782, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":11783, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51416015625, + 22.7259578704834 + ], + "min":[ + -43.58984375, + -3.814697265625e-06, + -22.729740142822266 + ], + "type":"VEC3" + }, + { + "bufferView":11784, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":11785, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":11786, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":11787, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11788, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11789, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":11790, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11791, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11792, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11793, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11794, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11795, + "componentType":5126, + "count":347, + "max":[ + 170.9052734375, + 157.00341796875, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":11796, + "componentType":5126, + "count":347, + "type":"VEC3" + }, + { + "bufferView":11797, + "componentType":5126, + "count":347, + "type":"VEC2" + }, + { + "bufferView":11798, + "componentType":5126, + "count":96, + "max":[ + 599.9990234375, + 143.7607421875, + 7168.00048828125 + ], + "min":[ + -599.9991455078125, + -1.52587890625e-05, + -7168.00048828125 + ], + "type":"VEC3" + }, + { + "bufferView":11799, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":11800, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92926025390625, + 384.1391906738281 + ], + "min":[ + -245.232421875, + 4.57763671875e-05, + -384.1406555175781 + ], + "type":"VEC3" + }, + { + "bufferView":11801, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":11802, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":11803, + "componentType":5126, + "count":92, + "max":[ + 824.2412109375, + 141.0703125, + 69.56982421875 + ], + "min":[ + -824.24072265625, + 0, + -69.570068359375 + ], + "type":"VEC3" + }, + { + "bufferView":11804, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":11805, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":11806, + "componentType":5126, + "count":588, + "max":[ + 191.5255126953125, + 32.82521057128906, + 191.52410888671875 + ], + "min":[ + -191.5229949951172, + 1.1444091796875e-05, + -191.5244140625 + ], + "type":"VEC3" + }, + { + "bufferView":11807, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":11808, + "componentType":5126, + "count":577, + "max":[ + 168.67111206054688, + 110.31451416015625, + 171.90379333496094 + ], + "min":[ + -161.46363830566406, + 0.6921234130859375, + -171.90396118164062 + ], + "type":"VEC3" + }, + { + "bufferView":11809, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":11810, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11811, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11812, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11813, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11814, + "componentType":5126, + "count":815, + "max":[ + 4.130859375, + 90.58740997314453, + 34.45655059814453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":11815, + "componentType":5126, + "count":815, + "type":"VEC3" + }, + { + "bufferView":11816, + "componentType":5126, + "count":815, + "type":"VEC2" + }, + { + "bufferView":11817, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":11818, + "componentType":5126, + "count":230, + "max":[ + 174.40771484375, + 193.254638671875, + 169.0625 + ], + "min":[ + -174.408203125, + 0, + -169.0634765625 + ], + "type":"VEC3" + }, + { + "bufferView":11819, + "componentType":5126, + "count":230, + "type":"VEC3" + }, + { + "bufferView":11820, + "componentType":5126, + "count":230, + "type":"VEC2" + }, + { + "bufferView":11821, + "componentType":5126, + "count":120, + "max":[ + 2752.00439453125, + 2819.530517578125, + 711.5361328125 + ], + "min":[ + -2752.0029296875, + -0.0001220703125, + -711.53515625 + ], + "type":"VEC3" + }, + { + "bufferView":11822, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":11823, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":11824, + "componentType":5126, + "count":146, + "max":[ + 43.591796875, + 61.5142822265625, + 22.7259578704834 + ], + "min":[ + -43.587890625, + 0.000118255615234375, + -22.729740142822266 + ], + "type":"VEC3" + }, + { + "bufferView":11825, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":11826, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":11827, + "componentType":5126, + "count":583, + "max":[ + 178.48040771484375, + 214.98049926757812, + 163.22750854492188 + ], + "min":[ + -178.4795379638672, + 0, + -163.22817993164062 + ], + "type":"VEC3" + }, + { + "bufferView":11828, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":11829, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16455078125, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":11830, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":11831, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":11832, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11833, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11834, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11835, + "componentType":5126, + "count":134, + "max":[ + 80.153076171875, + 126.6884765625, + 49.03466796875 + ], + "min":[ + -80.153076171875, + 0, + -49.03564453125 + ], + "type":"VEC3" + }, + { + "bufferView":11836, + "componentType":5126, + "count":134, + "type":"VEC3" + }, + { + "bufferView":11837, + "componentType":5126, + "count":134, + "type":"VEC2" + }, + { + "bufferView":11838, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":11839, + "componentType":5126, + "count":206, + "max":[ + 386.7890625, + 773.5765991210938, + 81.216796875 + ], + "min":[ + -386.7880859375, + -6.103515625e-05, + -81.2158203125 + ], + "type":"VEC3" + }, + { + "bufferView":11840, + "componentType":5126, + "count":206, + "type":"VEC3" + }, + { + "bufferView":11841, + "componentType":5126, + "count":206, + "type":"VEC2" + }, + { + "bufferView":11842, + "componentType":5123, + "count":420, + "type":"SCALAR" + }, + { + "bufferView":11843, + "componentType":5126, + "count":580, + "max":[ + 162.80516052246094, + 235.4871368408203, + 146.25515747070312 + ], + "min":[ + -170.01210021972656, + 34.57501220703125, + -158.18685913085938 + ], + "type":"VEC3" + }, + { + "bufferView":11844, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":11845, + "componentType":5126, + "count":51, + "max":[ + 123.61328125, + 696.755859375, + 366.153076171875 + ], + "min":[ + -123.615234375, + 0, + -366.15234375 + ], + "type":"VEC3" + }, + { + "bufferView":11846, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":11847, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":11848, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.455810546875, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":11849, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":11850, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":11851, + "componentType":5126, + "count":90, + "max":[ + 12.50005054473877, + 262.99237060546875, + 40.519161224365234 + ], + "min":[ + -12.499996185302734, + 7.82012939453125e-05, + -40.519168853759766 + ], + "type":"VEC3" + }, + { + "bufferView":11852, + "componentType":5126, + "count":90, + "type":"VEC3" + }, + { + "bufferView":11853, + "componentType":5123, + "count":216, + "type":"SCALAR" + }, + { + "bufferView":11854, + "componentType":5126, + "count":76, + "max":[ + 279.1010437011719, + 3543.081787109375, + 278.8670349121094 + ], + "min":[ + -279.0986328125, + 0, + -278.8664245605469 + ], + "type":"VEC3" + }, + { + "bufferView":11855, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":11856, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":11857, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11858, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11859, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11860, + "componentType":5126, + "count":810, + "max":[ + 4.1328125, + 90.58753204345703, + 34.45508575439453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":11861, + "componentType":5126, + "count":810, + "type":"VEC3" + }, + { + "bufferView":11862, + "componentType":5126, + "count":810, + "type":"VEC2" + }, + { + "bufferView":11863, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":11864, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":11865, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11866, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11867, + "componentType":5126, + "count":574, + "max":[ + 149.47979736328125, + 155.4177703857422, + 130.4727325439453 + ], + "min":[ + -149.48141479492188, + 0.00019073486328125, + -130.47280883789062 + ], + "type":"VEC3" + }, + { + "bufferView":11868, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":11869, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11870, + "componentType":5126, + "count":1330, + "max":[ + 4857.84619140625, + 790.025634765625, + 49.982421875 + ], + "min":[ + -4857.84765625, + 0, + -49.98291015625 + ], + "type":"VEC3" + }, + { + "bufferView":11871, + "componentType":5126, + "count":1330, + "type":"VEC3" + }, + { + "bufferView":11872, + "componentType":5126, + "count":1330, + "type":"VEC2" + }, + { + "bufferView":11873, + "componentType":5123, + "count":2520, + "type":"SCALAR" + }, + { + "bufferView":11874, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51410675048828, + 43.588871002197266 + ], + "min":[ + -22.7275390625, + -7.62939453125e-06, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":11875, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":11876, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":11877, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11878, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11879, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11880, + "componentType":5126, + "count":568, + "max":[ + 148.07968139648438, + 32.825321197509766, + 148.07913208007812 + ], + "min":[ + -148.07859802246094, + 0.00012969970703125, + -148.0791473388672 + ], + "type":"VEC3" + }, + { + "bufferView":11881, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":11882, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":11883, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":11884, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":11885, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11886, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11887, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11888, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7294979095459 + ], + "min":[ + -43.587890625, + 0.000118255615234375, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":11889, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":11890, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":11891, + "componentType":5126, + "count":598, + "max":[ + 150.31234741210938, + 102.59085083007812, + 156.4878387451172 + ], + "min":[ + -150.31463623046875, + 0.00012969970703125, + -156.48789978027344 + ], + "type":"VEC3" + }, + { + "bufferView":11892, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":11893, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11894, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11895, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11896, + "componentType":5126, + "count":882, + "max":[ + 134.31640625, + 2974.83349609375, + 130.719482421875 + ], + "min":[ + -134.314453125, + 0, + -130.72291564941406 + ], + "type":"VEC3" + }, + { + "bufferView":11897, + "componentType":5126, + "count":882, + "type":"VEC3" + }, + { + "bufferView":11898, + "componentType":5126, + "count":882, + "type":"VEC2" + }, + { + "bufferView":11899, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11900, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11901, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11902, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11903, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11904, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11905, + "componentType":5126, + "count":336, + "max":[ + 13.560874938964844, + 230.17283630371094, + 115.0865478515625 + ], + "min":[ + -13.560577392578125, + -1.52587890625e-05, + -115.08636474609375 + ], + "type":"VEC3" + }, + { + "bufferView":11906, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":11907, + "componentType":5126, + "count":24, + "max":[ + 703.126953125, + 50, + 110 + ], + "min":[ + -703.126953125, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":11908, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11909, + "componentType":5126, + "count":584, + "max":[ + 179.82191467285156, + 116.65388488769531, + 187.3197479248047 + ], + "min":[ + -179.8205108642578, + -3.0517578125e-05, + -187.3200225830078 + ], + "type":"VEC3" + }, + { + "bufferView":11910, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":11911, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":11912, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11913, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11914, + "componentType":5126, + "count":48, + "max":[ + 1412.1177978515625, + 866.85595703125, + 77 + ], + "min":[ + -1412.11865234375, + -3.0517578125e-05, + -77 + ], + "type":"VEC3" + }, + { + "bufferView":11915, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":11916, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":11917, + "componentType":5126, + "count":826, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45752716064453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45630645751953 + ], + "type":"VEC3" + }, + { + "bufferView":11918, + "componentType":5126, + "count":826, + "type":"VEC3" + }, + { + "bufferView":11919, + "componentType":5126, + "count":826, + "type":"VEC2" + }, + { + "bufferView":11920, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51416778564453, + 43.587894439697266 + ], + "min":[ + -22.7265625, + -7.62939453125e-06, + -43.590335845947266 + ], + "type":"VEC3" + }, + { + "bufferView":11921, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":11922, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":11923, + "componentType":5126, + "count":1053, + "max":[ + 90.109375, + 76.19921875, + 125.22607421875 + ], + "min":[ + -90.10888671875, + 0, + -125.22607421875 + ], + "type":"VEC3" + }, + { + "bufferView":11924, + "componentType":5126, + "count":1053, + "type":"VEC3" + }, + { + "bufferView":11925, + "componentType":5126, + "count":1053, + "type":"VEC2" + }, + { + "bufferView":11926, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11927, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11928, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11929, + "componentType":5126, + "count":358, + "max":[ + 139.86669921875, + 232.62890625, + 138.3524169921875 + ], + "min":[ + -139.8673095703125, + 0.000244140625, + -138.35205078125 + ], + "type":"VEC3" + }, + { + "bufferView":11930, + "componentType":5126, + "count":358, + "type":"VEC3" + }, + { + "bufferView":11931, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":11932, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.48486328125 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48492431640625 + ], + "type":"VEC3" + }, + { + "bufferView":11933, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":11934, + "componentType":5126, + "count":582, + "max":[ + 190.9693145751953, + 274.19342041015625, + 171.9376220703125 + ], + "min":[ + -198.18081665039062, + 40.454986572265625, + -183.86944580078125 + ], + "type":"VEC3" + }, + { + "bufferView":11935, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":11936, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28369140625 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":11937, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":11938, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":11939, + "componentType":5126, + "count":343, + "max":[ + 171.2998046875, + 184.806640625, + 176.140625 + ], + "min":[ + -171.2958984375, + 44.4580078125, + -176.14111328125 + ], + "type":"VEC3" + }, + { + "bufferView":11940, + "componentType":5126, + "count":343, + "type":"VEC3" + }, + { + "bufferView":11941, + "componentType":5126, + "count":343, + "type":"VEC2" + }, + { + "bufferView":11942, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":11943, + "componentType":5126, + "count":24, + "max":[ + 159.66650390625, + 25.8896484375, + 703.12451171875 + ], + "min":[ + -159.6669921875, + 0, + -703.125 + ], + "type":"VEC3" + }, + { + "bufferView":11944, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11945, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11946, + "componentType":5126, + "count":341, + "max":[ + 170.4345703125, + 188.553955078125, + 176.2041015625 + ], + "min":[ + -170.4345703125, + 45.296142578125, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":11947, + "componentType":5126, + "count":341, + "type":"VEC3" + }, + { + "bufferView":11948, + "componentType":5126, + "count":341, + "type":"VEC2" + }, + { + "bufferView":11949, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":11950, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":11951, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":11952, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11953, + "componentType":5126, + "count":4, + "max":[ + 698.8828125, + 2586.4794921875, + 0.0012026801705360413 + ], + "min":[ + -698.884765625, + 0, + 0.0006283745169639587 + ], + "type":"VEC3" + }, + { + "bufferView":11954, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11955, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11956, + "componentType":5126, + "count":580, + "max":[ + 146.67794799804688, + 153.6654052734375, + 134.18548583984375 + ], + "min":[ + -146.6774139404297, + 1.0118484497070312, + -121.90530395507812 + ], + "type":"VEC3" + }, + { + "bufferView":11957, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":11958, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11959, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51410675048828, + 43.590213775634766 + ], + "min":[ + -22.7275390625, + -7.62939453125e-06, + -43.587894439697266 + ], + "type":"VEC3" + }, + { + "bufferView":11960, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":11961, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":11962, + "componentType":5126, + "count":352, + "max":[ + 139.86614990234375, + 261.595458984375, + 138.3526611328125 + ], + "min":[ + -139.86798095703125, + 28.966552734375, + -138.3516845703125 + ], + "type":"VEC3" + }, + { + "bufferView":11963, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":11964, + "componentType":5126, + "count":598, + "max":[ + 164.8965301513672, + 32.825321197509766, + 164.89654541015625 + ], + "min":[ + -164.89663696289062, + 1.52587890625e-05, + -164.89666748046875 + ], + "type":"VEC3" + }, + { + "bufferView":11965, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":11966, + "componentType":5126, + "count":6522, + "max":[ + 128.06063842773438, + 193.06546020507812, + 128.06063842773438 + ], + "min":[ + -128.06063842773438, + -0.0001678466796875, + -128.0606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":11967, + "componentType":5126, + "count":6522, + "type":"VEC3" + }, + { + "bufferView":11968, + "componentType":5126, + "count":6522, + "type":"VEC2" + }, + { + "bufferView":11969, + "componentType":5126, + "count":582, + "max":[ + 160.62518310546875, + 222.58480834960938, + 149.62600708007812 + ], + "min":[ + -153.4144744873047, + 32.614898681640625, + -137.69432067871094 + ], + "type":"VEC3" + }, + { + "bufferView":11970, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":11971, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":11972, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.5140380859375, + 22.7275447845459 + ], + "min":[ + -43.58984375, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":11973, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":11974, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":11975, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":11976, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":11977, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":11978, + "componentType":5126, + "count":141, + "max":[ + 437.3779296875, + 12069.287109375, + 19.6142578125 + ], + "min":[ + -437.378173828125, + 0.00048828125, + -19.6142578125 + ], + "type":"VEC3" + }, + { + "bufferView":11979, + "componentType":5126, + "count":141, + "type":"VEC3" + }, + { + "bufferView":11980, + "componentType":5126, + "count":141, + "type":"VEC2" + }, + { + "bufferView":11981, + "componentType":5126, + "count":678, + "max":[ + 799.0390625, + 1068.857421875, + 103.86904907226562 + ], + "min":[ + -799.0390625, + 0, + -103.86807250976562 + ], + "type":"VEC3" + }, + { + "bufferView":11982, + "componentType":5126, + "count":678, + "type":"VEC3" + }, + { + "bufferView":11983, + "componentType":5126, + "count":678, + "type":"VEC2" + }, + { + "bufferView":11984, + "componentType":5126, + "count":178, + "max":[ + 769.70947265625, + 113.194580078125, + 56.5966796875 + ], + "min":[ + -769.7080078125, + 0, + -56.59765625 + ], + "type":"VEC3" + }, + { + "bufferView":11985, + "componentType":5126, + "count":178, + "type":"VEC3" + }, + { + "bufferView":11986, + "componentType":5126, + "count":178, + "type":"VEC2" + }, + { + "bufferView":11987, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":11988, + "componentType":5126, + "count":678, + "max":[ + 843.603515625, + 1001.3758544921875, + 928.7474975585938 + ], + "min":[ + -843.603515625, + 9.1552734375e-05, + -928.7440795898438 + ], + "type":"VEC3" + }, + { + "bufferView":11989, + "componentType":5126, + "count":678, + "type":"VEC3" + }, + { + "bufferView":11990, + "componentType":5126, + "count":678, + "type":"VEC2" + }, + { + "bufferView":11991, + "componentType":5126, + "count":76, + "max":[ + 278.86651611328125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8672180175781, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":11992, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":11993, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":11994, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.514404296875, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":11995, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":11996, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":11997, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4544677734375, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":11998, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":11999, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":12000, + "componentType":5126, + "count":224, + "max":[ + 115.35120391845703, + 230.70249938964844, + 118.72100067138672 + ], + "min":[ + -115.35124969482422, + 3.814697265625e-05, + -118.72059631347656 + ], + "type":"VEC3" + }, + { + "bufferView":12001, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":12002, + "componentType":5126, + "count":247, + "max":[ + 172.5966796875, + 185.23486328125, + 169.0712890625 + ], + "min":[ + -172.59716796875, + -0.00048828125, + -169.0693359375 + ], + "type":"VEC3" + }, + { + "bufferView":12003, + "componentType":5126, + "count":247, + "type":"VEC3" + }, + { + "bufferView":12004, + "componentType":5126, + "count":247, + "type":"VEC2" + }, + { + "bufferView":12005, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":12006, + "componentType":5126, + "count":574, + "max":[ + 152.2848663330078, + 159.23370361328125, + 139.04054260253906 + ], + "min":[ + -152.2821502685547, + 1.0520706176757812, + -126.759765625 + ], + "type":"VEC3" + }, + { + "bufferView":12007, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":12008, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12009, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12010, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12011, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12012, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12013, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12014, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12015, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12016, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12017, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12018, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":12019, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12020, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12021, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.51416015625, + 22.7293758392334 + ], + "min":[ + -43.58984375, + 5.7220458984375e-05, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":12022, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":12023, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":12024, + "componentType":5126, + "count":226, + "max":[ + 146.6844024658203, + 281.0282287597656, + 131.18060302734375 + ], + "min":[ + -146.6806640625, + -1.52587890625e-05, + -131.18035888671875 + ], + "type":"VEC3" + }, + { + "bufferView":12025, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":12026, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12027, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12028, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12029, + "componentType":5126, + "count":596, + "max":[ + 162.38604736328125, + 196.222412109375, + 148.5520782470703 + ], + "min":[ + -162.3836212158203, + -0.000213623046875, + -148.55209350585938 + ], + "type":"VEC3" + }, + { + "bufferView":12030, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":12031, + "componentType":5126, + "count":24, + "max":[ + 252.0450439453125, + 180.07655334472656, + 240.94830322265625 + ], + "min":[ + -252.0450439453125, + -3.814697265625e-06, + -240.94830322265625 + ], + "type":"VEC3" + }, + { + "bufferView":12032, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12033, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12034, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":12035, + "componentType":5126, + "count":78, + "max":[ + 144.177734375, + 36.7650146484375, + 34.50543212890625 + ], + "min":[ + -144.1767578125, + 0, + -34.504638671875 + ], + "type":"VEC3" + }, + { + "bufferView":12036, + "componentType":5126, + "count":78, + "type":"VEC3" + }, + { + "bufferView":12037, + "componentType":5126, + "count":78, + "type":"VEC2" + }, + { + "bufferView":12038, + "componentType":5126, + "count":51, + "max":[ + 123.61328125, + 696.755859375, + 366.15283203125 + ], + "min":[ + -123.615234375, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":12039, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":12040, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":12041, + "componentType":5126, + "count":574, + "max":[ + 149.48141479492188, + 156.44998168945312, + 136.61288452148438 + ], + "min":[ + -149.47979736328125, + 1.0324478149414062, + -124.33268737792969 + ], + "type":"VEC3" + }, + { + "bufferView":12042, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":12043, + "componentType":5126, + "count":608, + "max":[ + 141.34466552734375, + 205.99630737304688, + 126.68731689453125 + ], + "min":[ + -148.55227661132812, + 30.09485626220703, + -138.61936950683594 + ], + "type":"VEC3" + }, + { + "bufferView":12044, + "componentType":5126, + "count":608, + "type":"VEC3" + }, + { + "bufferView":12045, + "componentType":5126, + "count":12, + "max":[ + 10.2607421875, + 419.39959716796875, + 443.6836242675781 + ], + "min":[ + -10.259765625, + 7.62939453125e-05, + -443.6855773925781 + ], + "type":"VEC3" + }, + { + "bufferView":12046, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":12047, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":12048, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12049, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12050, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12051, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":12052, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12053, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12054, + "componentType":5126, + "count":576, + "max":[ + 173.11431884765625, + 113.45752716064453, + 180.3126220703125 + ], + "min":[ + -173.1155242919922, + -0.0001678466796875, + -180.31256103515625 + ], + "type":"VEC3" + }, + { + "bufferView":12055, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":12056, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12057, + "componentType":5126, + "count":92, + "max":[ + 824.2412109375, + 141.0703125, + 69.5703125 + ], + "min":[ + -824.24072265625, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":12058, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":12059, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":12060, + "componentType":5126, + "count":50, + "max":[ + 142.32275390625, + 608.2197265625, + 391.736328125 + ], + "min":[ + -142.31982421875, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":12061, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":12062, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":12063, + "componentType":5126, + "count":568, + "max":[ + 206.41366577148438, + 130.6160430908203, + 211.3397216796875 + ], + "min":[ + -199.20542907714844, + 0.8568496704101562, + -211.3401336669922 + ], + "type":"VEC3" + }, + { + "bufferView":12064, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":12065, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12066, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12067, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12068, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12069, + "componentType":5126, + "count":124, + "max":[ + 58.8193359375, + 162.824951171875, + 49.03515625 + ], + "min":[ + -58.822265625, + 6.845703125, + -49.03515625 + ], + "type":"VEC3" + }, + { + "bufferView":12070, + "componentType":5126, + "count":124, + "type":"VEC3" + }, + { + "bufferView":12071, + "componentType":5126, + "count":124, + "type":"VEC2" + }, + { + "bufferView":12072, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 253.74371337890625 + ], + "min":[ + -463.990234375, + -8.255030479631387e-06, + -253.7421875 + ], + "type":"VEC3" + }, + { + "bufferView":12073, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12074, + "componentType":5126, + "count":574, + "max":[ + 206.177734375, + 32.82525634765625, + 206.1773223876953 + ], + "min":[ + -206.17726135253906, + 0.0001068115234375, + -206.17767333984375 + ], + "type":"VEC3" + }, + { + "bufferView":12075, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":12076, + "componentType":5126, + "count":574, + "max":[ + 188.72206115722656, + 194.11349487304688, + 164.4562225341797 + ], + "min":[ + -188.72061157226562, + -4.57763671875e-05, + -164.45632934570312 + ], + "type":"VEC3" + }, + { + "bufferView":12077, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":12078, + "componentType":5126, + "count":16, + "max":[ + 6066.0556640625, + 1203, + 1382.158203125 + ], + "min":[ + -6066.0546875, + 0, + -1382.155517578125 + ], + "type":"VEC3" + }, + { + "bufferView":12079, + "componentType":5126, + "count":16, + "type":"VEC3" + }, + { + "bufferView":12080, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":12081, + "componentType":5126, + "count":338, + "max":[ + 115.14116668701172, + 210.2412567138672, + 69.11630249023438 + ], + "min":[ + -115.14129638671875, + -7.62939453125e-05, + -69.11651611328125 + ], + "type":"VEC3" + }, + { + "bufferView":12082, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":12083, + "componentType":5126, + "count":582, + "max":[ + 169.1017303466797, + 175.93930053710938, + 153.60511779785156 + ], + "min":[ + -169.10015869140625, + 1.1737060546875, + -141.32388305664062 + ], + "type":"VEC3" + }, + { + "bufferView":12084, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":12085, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12086, + "componentType":5126, + "count":24, + "max":[ + 252.0450439453125, + 180.07655334472656, + 240.94830322265625 + ], + "min":[ + -252.0450439453125, + -3.814697265625e-06, + -240.94830322265625 + ], + "type":"VEC3" + }, + { + "bufferView":12087, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12088, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12089, + "componentType":5126, + "count":76, + "max":[ + 278.86700439453125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8667297363281, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":12090, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":12091, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":12092, + "componentType":5126, + "count":184, + "max":[ + 769.70947265625, + 113.194580078125, + 56.596923828125 + ], + "min":[ + -769.7080078125, + 0, + -56.596923828125 + ], + "type":"VEC3" + }, + { + "bufferView":12093, + "componentType":5126, + "count":184, + "type":"VEC3" + }, + { + "bufferView":12094, + "componentType":5126, + "count":184, + "type":"VEC2" + }, + { + "bufferView":12095, + "componentType":5126, + "count":582, + "max":[ + 202.73544311523438, + 207.93344116210938, + 176.59315490722656 + ], + "min":[ + -202.73629760742188, + -4.57763671875e-05, + -176.59327697753906 + ], + "type":"VEC3" + }, + { + "bufferView":12096, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":12097, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92938232421875, + 384.1406555175781 + ], + "min":[ + -245.2333984375, + 0.0001068115234375, + -384.1396789550781 + ], + "type":"VEC3" + }, + { + "bufferView":12098, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":12099, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":12100, + "componentType":5126, + "count":562, + "max":[ + 204.45677185058594, + 211.05848693847656, + 171.94276428222656 + ], + "min":[ + -204.45657348632812, + 1.4281005859375, + -184.22418212890625 + ], + "type":"VEC3" + }, + { + "bufferView":12101, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":12102, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12103, + "componentType":5126, + "count":125, + "max":[ + 7.721337795257568, + 15.442765235900879, + 3.8607194423675537 + ], + "min":[ + -7.721343517303467, + 8.296966552734375e-05, + -3.8606269359588623 + ], + "type":"VEC3" + }, + { + "bufferView":12104, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":12105, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":12106, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51428985595703, + 43.588871002197266 + ], + "min":[ + -22.7265625, + 0.00011444091796875, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":12107, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":12108, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":12109, + "componentType":5126, + "count":228, + "max":[ + 147.0672149658203, + 288.87457275390625, + 115.35121154785156 + ], + "min":[ + -146.29786682128906, + 0.0001220703125, + -115.35125732421875 + ], + "type":"VEC3" + }, + { + "bufferView":12110, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":12111, + "componentType":5126, + "count":24, + "max":[ + 349.0685729980469, + 50.00018310546875, + 584.6641845703125 + ], + "min":[ + -349.0680847167969, + 7.65542354201898e-05, + -584.6641235351562 + ], + "type":"VEC3" + }, + { + "bufferView":12112, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12113, + "componentType":5126, + "count":115, + "max":[ + 5.782175540924072, + 27.783960342407227, + 5.782160758972168 + ], + "min":[ + -5.782073497772217, + 0.0001882332726381719, + -5.782059669494629 + ], + "type":"VEC3" + }, + { + "bufferView":12114, + "componentType":5126, + "count":115, + "type":"VEC3" + }, + { + "bufferView":12115, + "componentType":5126, + "count":115, + "type":"VEC2" + }, + { + "bufferView":12116, + "componentType":5126, + "count":598, + "max":[ + 167.6990203857422, + 32.8253059387207, + 167.69944763183594 + ], + "min":[ + -167.6999969482422, + 3.814697265625e-05, + -167.69956970214844 + ], + "type":"VEC3" + }, + { + "bufferView":12117, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":12118, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12119, + "componentType":5126, + "count":528, + "max":[ + 722.7216796875, + 2637.3974609375, + 19.80296516418457 + ], + "min":[ + -722.7216796875, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":12120, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":12121, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":12122, + "componentType":5126, + "count":224, + "max":[ + 118.7210693359375, + 230.70263671875, + 115.35122680664062 + ], + "min":[ + -118.72067260742188, + -6.103515625e-05, + -115.35127258300781 + ], + "type":"VEC3" + }, + { + "bufferView":12123, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":12124, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":12125, + "componentType":5126, + "count":334, + "max":[ + 170.90625, + 157.00146484375, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.2880859375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":12126, + "componentType":5126, + "count":334, + "type":"VEC3" + }, + { + "bufferView":12127, + "componentType":5126, + "count":334, + "type":"VEC2" + }, + { + "bufferView":12128, + "componentType":5126, + "count":72, + "max":[ + 771.3447875976562, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.34619140625, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":12129, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":12130, + "componentType":5126, + "count":98, + "max":[ + 1.4143263101577759, + 10.517534255981445, + 5.258735656738281 + ], + "min":[ + -1.4143048524856567, + 6.008148193359375e-05, + -5.258738040924072 + ], + "type":"VEC3" + }, + { + "bufferView":12131, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":12132, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":12133, + "componentType":5126, + "count":352, + "max":[ + 115.35122680664062, + 211.42044067382812, + 68.44601440429688 + ], + "min":[ + -115.35122680664062, + 4.1961669921875e-05, + -68.44577026367188 + ], + "type":"VEC3" + }, + { + "bufferView":12134, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":12135, + "componentType":5126, + "count":56, + "max":[ + 238.478515625, + 483.897705078125, + 30.0010986328125 + ], + "min":[ + -238.4794921875, + 0, + -29.9993896484375 + ], + "type":"VEC3" + }, + { + "bufferView":12136, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":12137, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":12138, + "componentType":5126, + "count":120, + "max":[ + 25.64990234375, + 2528.2978515625, + 1386.0146484375 + ], + "min":[ + -25.6494140625, + -0.0001220703125, + -1386.015625 + ], + "type":"VEC3" + }, + { + "bufferView":12139, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":12140, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":12141, + "componentType":5126, + "count":289, + "max":[ + 23.693763732910156, + 267.57562255859375, + 235.9644775390625 + ], + "min":[ + -23.28310775756836, + -3.0517578125e-05, + -235.92684936523438 + ], + "type":"VEC3" + }, + { + "bufferView":12142, + "componentType":5126, + "count":289, + "type":"VEC3" + }, + { + "bufferView":12143, + "componentType":5126, + "count":289, + "type":"VEC2" + }, + { + "bufferView":12144, + "componentType":5126, + "count":76, + "max":[ + 279.1005859375, + 3543.081787109375, + 278.86895751953125 + ], + "min":[ + -279.10284423828125, + 0, + -278.86810302734375 + ], + "type":"VEC3" + }, + { + "bufferView":12145, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":12146, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":12147, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12148, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12149, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12150, + "componentType":5126, + "count":229, + "max":[ + 172.59716796875, + 185.23583984375, + 169.0703125 + ], + "min":[ + -172.596923828125, + 0, + -169.0703125 + ], + "type":"VEC3" + }, + { + "bufferView":12151, + "componentType":5126, + "count":229, + "type":"VEC3" + }, + { + "bufferView":12152, + "componentType":5126, + "count":229, + "type":"VEC2" + }, + { + "bufferView":12153, + "componentType":5126, + "count":574, + "max":[ + 166.2982635498047, + 172.00177001953125, + 145.03713989257812 + ], + "min":[ + -166.29783630371094, + 0.000152587890625, + -145.0371551513672 + ], + "type":"VEC3" + }, + { + "bufferView":12154, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":12155, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12156, + "componentType":5126, + "count":40, + "max":[ + 1.4142957925796509, + 10.517629623413086, + 5.258737564086914 + ], + "min":[ + -1.4143321514129639, + 0.0001544952392578125, + -5.258735179901123 + ], + "type":"VEC3" + }, + { + "bufferView":12157, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":12158, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":12159, + "componentType":5126, + "count":240, + "max":[ + 400.007080078125, + 2203.110595703125, + 91.49455261230469 + ], + "min":[ + -400.009521484375, + -0.0001220703125, + -91.49444580078125 + ], + "type":"VEC3" + }, + { + "bufferView":12160, + "componentType":5126, + "count":240, + "type":"VEC3" + }, + { + "bufferView":12161, + "componentType":5126, + "count":48, + "max":[ + 1412.1160888671875, + 866.85595703125, + 77 + ], + "min":[ + -1412.120361328125, + -3.0517578125e-05, + -77 + ], + "type":"VEC3" + }, + { + "bufferView":12162, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":12163, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":12164, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16455078125, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":12165, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":12166, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":12167, + "componentType":5126, + "count":48, + "max":[ + 127.44287109375, + 625.6328125, + 391.73681640625 + ], + "min":[ + -127.4443359375, + 0, + -391.738525390625 + ], + "type":"VEC3" + }, + { + "bufferView":12168, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":12169, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":12170, + "componentType":5126, + "count":570, + "max":[ + 183.11512756347656, + 188.58531188964844, + 159.60145568847656 + ], + "min":[ + -183.11587524414062, + -0.00018310546875, + -159.6015167236328 + ], + "type":"VEC3" + }, + { + "bufferView":12171, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":12172, + "componentType":5126, + "count":338, + "max":[ + 13.560585021972656, + 230.70252990722656, + 115.35116577148438 + ], + "min":[ + -13.560882568359375, + 3.814697265625e-05, + -115.35131072998047 + ], + "type":"VEC3" + }, + { + "bufferView":12173, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":12174, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":12175, + "componentType":5126, + "count":586, + "max":[ + 183.11512756347656, + 32.82525634765625, + 183.1154022216797 + ], + "min":[ + -183.11587524414062, + 3.0517578125e-05, + -183.11566162109375 + ], + "type":"VEC3" + }, + { + "bufferView":12176, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":12177, + "componentType":5126, + "count":789, + "max":[ + 4.1328125, + 90.58753204345703, + 34.45508575439453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":12178, + "componentType":5126, + "count":789, + "type":"VEC3" + }, + { + "bufferView":12179, + "componentType":5126, + "count":789, + "type":"VEC2" + }, + { + "bufferView":12180, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":12181, + "componentType":5126, + "count":1051, + "max":[ + 125.22607421875, + 76.19921875, + 90.1090087890625 + ], + "min":[ + -125.22607421875, + 0, + -90.109130859375 + ], + "type":"VEC3" + }, + { + "bufferView":12182, + "componentType":5126, + "count":1051, + "type":"VEC3" + }, + { + "bufferView":12183, + "componentType":5126, + "count":1051, + "type":"VEC2" + }, + { + "bufferView":12184, + "componentType":5126, + "count":576, + "max":[ + 148.07859802246094, + 154.03558349609375, + 129.25897216796875 + ], + "min":[ + -148.07968139648438, + -0.0001068115234375, + -129.2591094970703 + ], + "type":"VEC3" + }, + { + "bufferView":12185, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":12186, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12187, + "componentType":5126, + "count":56, + "max":[ + 115.15478515625, + 511.947509765625, + 147.156494140625 + ], + "min":[ + -115.15283203125, + 0, + -147.155517578125 + ], + "type":"VEC3" + }, + { + "bufferView":12188, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":12189, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":12190, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51416778564453, + 43.588871002197266 + ], + "min":[ + -22.7275390625, + -7.62939453125e-06, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":12191, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":12192, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":12193, + "componentType":5126, + "count":587, + "max":[ + 157.43902587890625, + 228.1142578125, + 141.363037109375 + ], + "min":[ + -164.6481170654297, + 33.45482635498047, + -153.29505920410156 + ], + "type":"VEC3" + }, + { + "bufferView":12194, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":12195, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12196, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12197, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12198, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":12199, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12200, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12201, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12202, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12203, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":12204, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12205, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12206, + "componentType":5126, + "count":296, + "max":[ + 1.9772073030471802, + 36.3969841003418, + 18.198516845703125 + ], + "min":[ + -1.9772001504898071, + -7.62939453125e-06, + -18.198471069335938 + ], + "type":"VEC3" + }, + { + "bufferView":12207, + "componentType":5126, + "count":296, + "type":"VEC3" + }, + { + "bufferView":12208, + "componentType":5126, + "count":296, + "type":"VEC2" + }, + { + "bufferView":12209, + "componentType":5126, + "count":580, + "max":[ + 196.22201538085938, + 125.82342529296875, + 204.45651245117188 + ], + "min":[ + -196.22189331054688, + 0.000152587890625, + -204.45687866210938 + ], + "type":"VEC3" + }, + { + "bufferView":12210, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":12211, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12212, + "componentType":5126, + "count":559, + "max":[ + 19.802734375, + 2637.3974609375, + 722.719482421875 + ], + "min":[ + -19.802734375, + 0, + -722.72314453125 + ], + "type":"VEC3" + }, + { + "bufferView":12213, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":12214, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":12215, + "componentType":5126, + "count":323, + "max":[ + 3.8607194423675537, + 15.442765235900879, + 7.721343517303467 + ], + "min":[ + -3.8606269359588623, + 8.296966552734375e-05, + -7.721337795257568 + ], + "type":"VEC3" + }, + { + "bufferView":12216, + "componentType":5126, + "count":323, + "type":"VEC3" + }, + { + "bufferView":12217, + "componentType":5126, + "count":323, + "type":"VEC2" + }, + { + "bufferView":12218, + "componentType":5126, + "count":336, + "max":[ + 13.560523986816406, + 272.65911865234375, + 115.08651733398438 + ], + "min":[ + -13.560836791992188, + 42.48628234863281, + -115.08638000488281 + ], + "type":"VEC3" + }, + { + "bufferView":12219, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":12220, + "componentType":5126, + "count":892, + "max":[ + 25.049793243408203, + 275.93060302734375, + 393.1161193847656 + ], + "min":[ + -25.05181884765625, + -6.103515625e-05, + -393.11614990234375 + ], + "type":"VEC3" + }, + { + "bufferView":12221, + "componentType":5126, + "count":892, + "type":"VEC3" + }, + { + "bufferView":12222, + "componentType":5123, + "count":2376, + "type":"SCALAR" + }, + { + "bufferView":12223, + "componentType":5126, + "count":72, + "max":[ + 22.50006103515625, + 1492.539794921875, + 771.3447875976562 + ], + "min":[ + -22.500253677368164, + 0, + -771.34619140625 + ], + "type":"VEC3" + }, + { + "bufferView":12224, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":12225, + "componentType":5126, + "count":591, + "max":[ + 144.02774047851562, + 209.68280029296875, + 129.13369750976562 + ], + "min":[ + -151.23428344726562, + 30.65483856201172, + -141.06497192382812 + ], + "type":"VEC3" + }, + { + "bufferView":12226, + "componentType":5126, + "count":591, + "type":"VEC3" + }, + { + "bufferView":12227, + "componentType":5126, + "count":12, + "max":[ + 10.2607421875, + 419.39959716796875, + 443.6836242675781 + ], + "min":[ + -10.259765625, + 0.0001678466796875, + -443.6855773925781 + ], + "type":"VEC3" + }, + { + "bufferView":12228, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":12229, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":12230, + "componentType":5126, + "count":92, + "max":[ + 31.27215576171875, + 267.8876953125, + 51.744140625 + ], + "min":[ + -31.22821044921875, + 0, + -51.5830078125 + ], + "type":"VEC3" + }, + { + "bufferView":12231, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":12232, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":12233, + "componentType":5126, + "count":559, + "max":[ + 722.720703125, + 2637.397705078125, + 19.80272102355957 + ], + "min":[ + -722.72265625, + 0, + -19.80333137512207 + ], + "type":"VEC3" + }, + { + "bufferView":12234, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":12235, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":12236, + "componentType":5126, + "count":815, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45752716064453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45630645751953 + ], + "type":"VEC3" + }, + { + "bufferView":12237, + "componentType":5126, + "count":815, + "type":"VEC3" + }, + { + "bufferView":12238, + "componentType":5126, + "count":815, + "type":"VEC2" + }, + { + "bufferView":12239, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51428985595703, + 43.587894439697266 + ], + "min":[ + -22.7265625, + 0.00011444091796875, + -43.590335845947266 + ], + "type":"VEC3" + }, + { + "bufferView":12240, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":12241, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":12242, + "componentType":5126, + "count":1021, + "max":[ + 90.109375, + 254.306640625, + 29.7861328125 + ], + "min":[ + -90.10888671875, + 1.31201171875, + -29.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":12243, + "componentType":5126, + "count":1021, + "type":"VEC3" + }, + { + "bufferView":12244, + "componentType":5126, + "count":1021, + "type":"VEC2" + }, + { + "bufferView":12245, + "componentType":5126, + "count":583, + "max":[ + 175.37606811523438, + 242.85986328125, + 163.07919311523438 + ], + "min":[ + -168.1712188720703, + 35.69525146484375, + -151.14663696289062 + ], + "type":"VEC3" + }, + { + "bufferView":12246, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":12247, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12248, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12249, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12250, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12251, + "componentType":5126, + "count":226, + "max":[ + 146.29783630371094, + 323.5047607421875, + 130.9872589111328 + ], + "min":[ + -147.06719970703125, + 42.47654724121094, + -131.37371826171875 + ], + "type":"VEC3" + }, + { + "bufferView":12252, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":12253, + "componentType":5126, + "count":96, + "max":[ + 73.4791030883789, + 205.1731414794922, + 990.6385498046875 + ], + "min":[ + -73.47884368896484, + 0.000217437744140625, + -990.638427734375 + ], + "type":"VEC3" + }, + { + "bufferView":12254, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":12255, + "componentType":5126, + "count":343, + "max":[ + 171.298828125, + 184.80615234375, + 176.140625 + ], + "min":[ + -171.296875, + 44.45703125, + -176.14111328125 + ], + "type":"VEC3" + }, + { + "bufferView":12256, + "componentType":5126, + "count":343, + "type":"VEC3" + }, + { + "bufferView":12257, + "componentType":5126, + "count":343, + "type":"VEC2" + }, + { + "bufferView":12258, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":12259, + "componentType":5126, + "count":574, + "max":[ + 162.09307861328125, + 32.825321197509766, + 162.09364318847656 + ], + "min":[ + -162.0943145751953, + -7.2479248046875e-05, + -162.09371948242188 + ], + "type":"VEC3" + }, + { + "bufferView":12260, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":12261, + "componentType":5126, + "count":1484, + "max":[ + 838.2880859375, + 3659.476318359375, + 594.32080078125 + ], + "min":[ + -643.9150390625, + 90.819091796875, + -354.1083984375 + ], + "type":"VEC3" + }, + { + "bufferView":12262, + "componentType":5126, + "count":1484, + "type":"VEC3" + }, + { + "bufferView":12263, + "componentType":5126, + "count":1484, + "type":"VEC2" + }, + { + "bufferView":12264, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":12265, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":12266, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12267, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12268, + "componentType":5126, + "count":2917, + "max":[ + 8.997692108154297, + 48.001651763916016, + 23.86931610107422 + ], + "min":[ + -8.997540473937988, + 0.0001125335693359375, + -23.869264602661133 + ], + "type":"VEC3" + }, + { + "bufferView":12269, + "componentType":5126, + "count":2917, + "type":"VEC3" + }, + { + "bufferView":12270, + "componentType":5126, + "count":2917, + "type":"VEC2" + }, + { + "bufferView":12271, + "componentType":5126, + "count":4, + "max":[ + 698.884765625, + 2586.479248046875, + 0.0013247504830360413 + ], + "min":[ + -698.884765625, + 0, + 0.0008725151419639587 + ], + "type":"VEC3" + }, + { + "bufferView":12272, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12273, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12274, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51428985595703, + 43.590213775634766 + ], + "min":[ + -22.7275390625, + 0.00011444091796875, + -43.587894439697266 + ], + "type":"VEC3" + }, + { + "bufferView":12275, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":12276, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":12277, + "componentType":5126, + "count":226, + "max":[ + 146.6844024658203, + 281.0282287597656, + 131.18060302734375 + ], + "min":[ + -146.6806640625, + -1.52587890625e-05, + -131.18035888671875 + ], + "type":"VEC3" + }, + { + "bufferView":12278, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":12279, + "componentType":5126, + "count":576, + "max":[ + 197.86923217773438, + 126.80730438232422, + 206.1773223876953 + ], + "min":[ + -197.8684844970703, + 3.0517578125e-05, + -206.17767333984375 + ], + "type":"VEC3" + }, + { + "bufferView":12280, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":12281, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12282, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12283, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12284, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12285, + "componentType":5126, + "count":560, + "max":[ + 163.4947967529297, + 32.825321197509766, + 163.49508666992188 + ], + "min":[ + -163.4954833984375, + 1.52587890625e-05, + -163.49517822265625 + ], + "type":"VEC3" + }, + { + "bufferView":12286, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":12287, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + 5.7220458984375e-05, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":12288, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":12289, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":12290, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12291, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12292, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12293, + "componentType":5126, + "count":153, + "max":[ + 586.3193359375, + 156.6259765625, + 69.5703125 + ], + "min":[ + -586.31689453125, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":12294, + "componentType":5126, + "count":153, + "type":"VEC3" + }, + { + "bufferView":12295, + "componentType":5126, + "count":153, + "type":"VEC2" + }, + { + "bufferView":12296, + "componentType":5126, + "count":48, + "max":[ + 142.32080078125, + 608.220703125, + 391.737548828125 + ], + "min":[ + -142.32177734375, + 0, + -391.737548828125 + ], + "type":"VEC3" + }, + { + "bufferView":12297, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":12298, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":12299, + "componentType":5126, + "count":648, + "max":[ + 615.01123046875, + 2510.925048828125, + 347.26708984375 + ], + "min":[ + -615.01025390625, + 0, + -347.26513671875 + ], + "type":"VEC3" + }, + { + "bufferView":12300, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":12301, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":12302, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":12303, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12304, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12305, + "componentType":5126, + "count":92, + "max":[ + 22.05126953125, + 77.63671875, + 30.45068359375 + ], + "min":[ + -22.05078125, + -0.00048828125, + -30.449951171875 + ], + "type":"VEC3" + }, + { + "bufferView":12306, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":12307, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":12308, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":12309, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12310, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12311, + "componentType":5126, + "count":587, + "max":[ + 137.32012939453125, + 200.46693420410156, + 123.01852416992188 + ], + "min":[ + -144.529296875, + 29.25487518310547, + -134.95028686523438 + ], + "type":"VEC3" + }, + { + "bufferView":12312, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":12313, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12314, + "componentType":5126, + "count":678, + "max":[ + 824.3388671875, + 1001.807373046875, + 93.05411529541016 + ], + "min":[ + -824.3388671875, + 0, + -93.05069732666016 + ], + "type":"VEC3" + }, + { + "bufferView":12315, + "componentType":5126, + "count":678, + "type":"VEC3" + }, + { + "bufferView":12316, + "componentType":5126, + "count":678, + "type":"VEC2" + }, + { + "bufferView":12317, + "componentType":5126, + "count":336, + "max":[ + 131.32907104492188, + 111.1650390625, + 131.32896423339844 + ], + "min":[ + -131.32864379882812, + 0, + -131.3287353515625 + ], + "type":"VEC3" + }, + { + "bufferView":12318, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":12319, + "componentType":5126, + "count":60, + "max":[ + 6.47288179397583, + 13.693549156188965, + 3.787515163421631 + ], + "min":[ + -6.472886562347412, + -2.978960401378572e-05, + -3.7875568866729736 + ], + "type":"VEC3" + }, + { + "bufferView":12320, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":12321, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":12322, + "componentType":5126, + "count":248, + "max":[ + 173.28125, + 188.23828125, + 169.1005859375 + ], + "min":[ + -173.28125, + 0, + -169.1025390625 + ], + "type":"VEC3" + }, + { + "bufferView":12323, + "componentType":5126, + "count":248, + "type":"VEC3" + }, + { + "bufferView":12324, + "componentType":5126, + "count":248, + "type":"VEC2" + }, + { + "bufferView":12325, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":12326, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12327, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12328, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12329, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12330, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12331, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12332, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":12333, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":12334, + "componentType":5126, + "count":141, + "max":[ + 437.3779296875, + 12069.287109375, + 19.6142578125 + ], + "min":[ + -437.378173828125, + 0.00048828125, + -19.6142578125 + ], + "type":"VEC3" + }, + { + "bufferView":12335, + "componentType":5126, + "count":141, + "type":"VEC3" + }, + { + "bufferView":12336, + "componentType":5126, + "count":141, + "type":"VEC2" + }, + { + "bufferView":12337, + "componentType":5126, + "count":224, + "max":[ + 118.72099304199219, + 272.6591796875, + 115.08639526367188 + ], + "min":[ + -118.72061157226562, + 42.48628234863281, + -115.08648681640625 + ], + "type":"VEC3" + }, + { + "bufferView":12338, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":12339, + "componentType":5126, + "count":338, + "max":[ + 45.85810852050781, + 228.1693115234375, + 115.62022399902344 + ], + "min":[ + -45.85676574707031, + -0.0001068115234375, + -115.62042236328125 + ], + "type":"VEC3" + }, + { + "bufferView":12340, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":12341, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":12342, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12343, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12344, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12345, + "componentType":5126, + "count":4, + "max":[ + 3857.663818359375, + 0.00030517578125, + 4755.38916015625 + ], + "min":[ + -3857.6669921875, + 0, + -4755.388671875 + ], + "type":"VEC3" + }, + { + "bufferView":12346, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12347, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12348, + "componentType":5126, + "count":330, + "max":[ + 170.9052734375, + 157.001953125, + 177.25439453125 + ], + "min":[ + -170.9052734375, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":12349, + "componentType":5126, + "count":330, + "type":"VEC3" + }, + { + "bufferView":12350, + "componentType":5126, + "count":330, + "type":"VEC2" + }, + { + "bufferView":12351, + "componentType":5126, + "count":580, + "max":[ + 150.7314453125, + 218.8985595703125, + 135.24815368652344 + ], + "min":[ + -157.94313049316406, + 32.054840087890625, + -147.18019104003906 + ], + "type":"VEC3" + }, + { + "bufferView":12352, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":12353, + "componentType":5126, + "count":74, + "max":[ + 37.2080078125, + 39.64406967163086, + 155.4697265625 + ], + "min":[ + -37.2060546875, + 1.9073486328125e-05, + -155.466796875 + ], + "type":"VEC3" + }, + { + "bufferView":12354, + "componentType":5126, + "count":74, + "type":"VEC3" + }, + { + "bufferView":12355, + "componentType":5126, + "count":74, + "type":"VEC2" + }, + { + "bufferView":12356, + "componentType":5123, + "count":132, + "type":"SCALAR" + }, + { + "bufferView":12357, + "componentType":5126, + "count":594, + "max":[ + 145.3692626953125, + 211.52615356445312, + 130.35658264160156 + ], + "min":[ + -152.57525634765625, + 30.935142517089844, + -142.28793334960938 + ], + "type":"VEC3" + }, + { + "bufferView":12358, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":12359, + "componentType":5126, + "count":136, + "max":[ + 824.244140625, + 156.626220703125, + 69.5693359375 + ], + "min":[ + -824.23974609375, + 0, + -69.5712890625 + ], + "type":"VEC3" + }, + { + "bufferView":12360, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":12361, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":12362, + "componentType":5126, + "count":349, + "max":[ + 170.4345703125, + 188.554931640625, + 176.20556640625 + ], + "min":[ + -170.4345703125, + 45.297119140625, + -176.20166015625 + ], + "type":"VEC3" + }, + { + "bufferView":12363, + "componentType":5126, + "count":349, + "type":"VEC3" + }, + { + "bufferView":12364, + "componentType":5126, + "count":349, + "type":"VEC2" + }, + { + "bufferView":12365, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":12366, + "componentType":5126, + "count":224, + "max":[ + 118.72061157226562, + 230.17283630371094, + 115.08639526367188 + ], + "min":[ + -118.72100067138672, + -3.814697265625e-05, + -115.08649444580078 + ], + "type":"VEC3" + }, + { + "bufferView":12367, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":12368, + "componentType":5126, + "count":55, + "max":[ + 123.61669921875, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.61181640625, + 0, + -366.1533203125 + ], + "type":"VEC3" + }, + { + "bufferView":12369, + "componentType":5126, + "count":55, + "type":"VEC3" + }, + { + "bufferView":12370, + "componentType":5126, + "count":55, + "type":"VEC2" + }, + { + "bufferView":12371, + "componentType":5126, + "count":76, + "max":[ + 278.8669738769531, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8664245605469, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":12372, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":12373, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":12374, + "componentType":5126, + "count":574, + "max":[ + 148.07968139648438, + 154.0355682373047, + 129.2591552734375 + ], + "min":[ + -148.07859802246094, + -9.918212890625e-05, + -129.25901794433594 + ], + "type":"VEC3" + }, + { + "bufferView":12375, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":12376, + "componentType":5126, + "count":123, + "max":[ + 58.8193359375, + 162.824951171875, + 49.03515625 + ], + "min":[ + -58.822265625, + 6.845703125, + -49.03515625 + ], + "type":"VEC3" + }, + { + "bufferView":12377, + "componentType":5126, + "count":123, + "type":"VEC3" + }, + { + "bufferView":12378, + "componentType":5126, + "count":123, + "type":"VEC2" + }, + { + "bufferView":12379, + "componentType":5126, + "count":584, + "max":[ + 173.30691528320312, + 178.91180419921875, + 151.10560607910156 + ], + "min":[ + -173.3037109375, + 0.00023651123046875, + -151.10565185546875 + ], + "type":"VEC3" + }, + { + "bufferView":12380, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":12381, + "componentType":5126, + "count":324, + "max":[ + 10.6787109375, + 283.877197265625, + 60.74856185913086 + ], + "min":[ + -10.677734375, + -1.52587890625e-05, + -60.75149154663086 + ], + "type":"VEC3" + }, + { + "bufferView":12382, + "componentType":5126, + "count":324, + "type":"VEC3" + }, + { + "bufferView":12383, + "componentType":5126, + "count":324, + "type":"VEC2" + }, + { + "bufferView":12384, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":12385, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":12386, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12387, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12388, + "componentType":5126, + "count":16, + "max":[ + 5489.15185546875, + 1203, + 2030.864990234375 + ], + "min":[ + -5489.150390625, + 0, + -2030.862548828125 + ], + "type":"VEC3" + }, + { + "bufferView":12389, + "componentType":5126, + "count":16, + "type":"VEC3" + }, + { + "bufferView":12390, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":12391, + "componentType":5126, + "count":226, + "max":[ + 115.14118194580078, + 343.64056396484375, + 159.38644409179688 + ], + "min":[ + -115.14126586914062, + 26.062088012695312, + -160.72323608398438 + ], + "type":"VEC3" + }, + { + "bufferView":12392, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":12393, + "componentType":5126, + "count":593, + "max":[ + 232.84765625, + 1686.465576171875, + 223.1953125 + ], + "min":[ + -232.859375, + -0.00121307373046875, + -223.2900390625 + ], + "type":"VEC3" + }, + { + "bufferView":12394, + "componentType":5126, + "count":593, + "type":"VEC3" + }, + { + "bufferView":12395, + "componentType":5126, + "count":593, + "type":"VEC2" + }, + { + "bufferView":12396, + "componentType":5123, + "count":1044, + "type":"SCALAR" + }, + { + "bufferView":12397, + "componentType":5126, + "count":24, + "max":[ + 10.958126068115234, + 361.9337158203125, + 59.810264587402344 + ], + "min":[ + -10.958074569702148, + -9.1552734375e-05, + -59.811214447021484 + ], + "type":"VEC3" + }, + { + "bufferView":12398, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12399, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12400, + "componentType":5126, + "count":76, + "max":[ + 278.86651611328125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8672180175781, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":12401, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":12402, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":12403, + "componentType":5126, + "count":336, + "max":[ + 13.560874938964844, + 230.17283630371094, + 115.0865478515625 + ], + "min":[ + -13.560577392578125, + -1.52587890625e-05, + -115.08636474609375 + ], + "type":"VEC3" + }, + { + "bufferView":12404, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":12405, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12406, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12407, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12408, + "componentType":5126, + "count":562, + "max":[ + 204.45657348632812, + 209.63050842285156, + 178.08338928222656 + ], + "min":[ + -204.45677185058594, + 0.0001220703125, + -178.08355712890625 + ], + "type":"VEC3" + }, + { + "bufferView":12409, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":12410, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92938232421875, + 384.5810852050781 + ], + "min":[ + -244.4677734375, + 0.0001068115234375, + -384.5781555175781 + ], + "type":"VEC3" + }, + { + "bufferView":12411, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":12412, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":12413, + "componentType":5126, + "count":112, + "max":[ + 106.49421691894531, + 381.671142578125, + 171.66390991210938 + ], + "min":[ + -106.49431610107422, + 0, + -171.66293334960938 + ], + "type":"VEC3" + }, + { + "bufferView":12414, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":12415, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51410675048828, + 43.590824127197266 + ], + "min":[ + -22.7265625, + -7.62939453125e-06, + -43.587406158447266 + ], + "type":"VEC3" + }, + { + "bufferView":12416, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":12417, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":12418, + "componentType":5123, + "count":276, + "type":"SCALAR" + }, + { + "bufferView":12419, + "componentType":5126, + "count":592, + "max":[ + 176.10647583007812, + 182.89947509765625, + 159.6731414794922 + ], + "min":[ + -176.10997009277344, + 1.2238845825195312, + -147.392822265625 + ], + "type":"VEC3" + }, + { + "bufferView":12420, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":12421, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12422, + "componentType":5126, + "count":583, + "max":[ + 169.50885009765625, + 244.70289611816406, + 152.36952209472656 + ], + "min":[ + -176.7209930419922, + 35.97492980957031, + -164.30223083496094 + ], + "type":"VEC3" + }, + { + "bufferView":12423, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":12424, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12425, + "componentType":5126, + "count":90, + "max":[ + 40.5191535949707, + 262.99237060546875, + 12.50005054473877 + ], + "min":[ + -40.51918029785156, + 7.82012939453125e-05, + -12.499996185302734 + ], + "type":"VEC3" + }, + { + "bufferView":12426, + "componentType":5126, + "count":90, + "type":"VEC3" + }, + { + "bufferView":12427, + "componentType":5123, + "count":216, + "type":"SCALAR" + }, + { + "bufferView":12428, + "componentType":5126, + "count":336, + "max":[ + 45.858123779296875, + 228.09591674804688, + 115.35120391845703 + ], + "min":[ + -45.85678482055664, + 0.56097412109375, + -115.35125732421875 + ], + "type":"VEC3" + }, + { + "bufferView":12429, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":12430, + "componentType":5126, + "count":24, + "max":[ + 110.00022888183594, + 50.00010681152344, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 7.482406363124028e-05, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":12431, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12432, + "componentType":5126, + "count":71, + "max":[ + 3.7875118255615234, + 13.000020980834961, + 3.74242901802063 + ], + "min":[ + -3.7875607013702393, + -2.3352227799477987e-05, + -3.742408275604248 + ], + "type":"VEC3" + }, + { + "bufferView":12433, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":12434, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":12435, + "componentType":5126, + "count":592, + "max":[ + 166.29783630371094, + 32.8253059387207, + 166.29798889160156 + ], + "min":[ + -166.2982635498047, + 3.814697265625e-05, + -166.29811096191406 + ], + "type":"VEC3" + }, + { + "bufferView":12436, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":12437, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12438, + "componentType":5126, + "count":528, + "max":[ + 722.7216796875, + 2637.3974609375, + 19.80308723449707 + ], + "min":[ + -722.7216796875, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":12439, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":12440, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":12441, + "componentType":5126, + "count":338, + "max":[ + 13.560920715332031, + 230.70245361328125, + 115.3511962890625 + ], + "min":[ + -13.56060791015625, + -5.340576171875e-05, + -115.35127258300781 + ], + "type":"VEC3" + }, + { + "bufferView":12442, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":12443, + "componentType":5126, + "count":331, + "max":[ + 170.90625, + 157.00244140625, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.2890625, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":12444, + "componentType":5126, + "count":331, + "type":"VEC3" + }, + { + "bufferView":12445, + "componentType":5126, + "count":331, + "type":"VEC2" + }, + { + "bufferView":12446, + "componentType":5126, + "count":98, + "max":[ + 1.4143263101577759, + 10.51738452911377, + 5.258735656738281 + ], + "min":[ + -1.4143048524856567, + -9.012222290039062e-05, + -5.258738040924072 + ], + "type":"VEC3" + }, + { + "bufferView":12447, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":12448, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":12449, + "componentType":5126, + "count":56, + "max":[ + 217.04052734375, + 520.125244140625, + 29.7984619140625 + ], + "min":[ + -217.04150390625, + 0.000244140625, + -29.798583984375 + ], + "type":"VEC3" + }, + { + "bufferView":12450, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":12451, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":12452, + "componentType":5126, + "count":112, + "max":[ + 106.49419403076172, + 317.7470703125, + 106.49419403076172 + ], + "min":[ + -106.49427795410156, + 7.62939453125e-05, + -106.49420928955078 + ], + "type":"VEC3" + }, + { + "bufferView":12453, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":12454, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12455, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12456, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12457, + "componentType":5126, + "count":586, + "max":[ + 176.10647583007812, + 181.67581176757812, + 153.53298950195312 + ], + "min":[ + -176.10997009277344, + 0.00022125244140625, + -153.53302001953125 + ], + "type":"VEC3" + }, + { + "bufferView":12458, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":12459, + "componentType":5126, + "count":52, + "max":[ + 161.98095703125, + 658.67578125, + 366.15234375 + ], + "min":[ + -161.97900390625, + 0, + -366.1533203125 + ], + "type":"VEC3" + }, + { + "bufferView":12460, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":12461, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":12462, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12463, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12464, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12465, + "componentType":5126, + "count":284, + "max":[ + 481.304443359375, + 1694.982421875, + 229.26123046875 + ], + "min":[ + -481.30615234375, + 0, + -229.2607421875 + ], + "type":"VEC3" + }, + { + "bufferView":12466, + "componentType":5126, + "count":284, + "type":"VEC3" + }, + { + "bufferView":12467, + "componentType":5126, + "count":284, + "type":"VEC2" + }, + { + "bufferView":12468, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16455078125, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":12469, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":12470, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":12471, + "componentType":5126, + "count":104, + "max":[ + 1192.81396484375, + 3260.187255859375, + 2788.339599609375 + ], + "min":[ + -1192.81640625, + 4.57763671875e-05, + -2788.34130859375 + ], + "type":"VEC3" + }, + { + "bufferView":12472, + "componentType":5126, + "count":104, + "type":"VEC3" + }, + { + "bufferView":12473, + "componentType":5126, + "count":104, + "type":"VEC2" + }, + { + "bufferView":12474, + "componentType":5126, + "count":48, + "max":[ + 123.61376953125, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.615234375, + 0, + -366.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":12475, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":12476, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":12477, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12478, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12479, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12480, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":12481, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12482, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12483, + "componentType":5126, + "count":580, + "max":[ + 146.6774139404297, + 152.6536865234375, + 128.0453338623047 + ], + "min":[ + -146.67794799804688, + 9.918212890625e-05, + -128.04541015625 + ], + "type":"VEC3" + }, + { + "bufferView":12484, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":12485, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12486, + "componentType":5126, + "count":211, + "max":[ + 33.40234375, + 133.60888671875, + 66.80419921875 + ], + "min":[ + -33.402099609375, + 0, + -66.804443359375 + ], + "type":"VEC3" + }, + { + "bufferView":12487, + "componentType":5126, + "count":211, + "type":"VEC3" + }, + { + "bufferView":12488, + "componentType":5126, + "count":211, + "type":"VEC2" + }, + { + "bufferView":12489, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51428985595703, + 43.588871002197266 + ], + "min":[ + -22.7275390625, + 0.00011444091796875, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":12490, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":12491, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":12492, + "componentType":5126, + "count":342, + "max":[ + 170.435546875, + 188.558349609375, + 176.2041015625 + ], + "min":[ + -170.43359375, + 45.296630859375, + -176.203125 + ], + "type":"VEC3" + }, + { + "bufferView":12493, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":12494, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":12495, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":12496, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12497, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12498, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12499, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12500, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12501, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12502, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12503, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12504, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12505, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12506, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12507, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12508, + "componentType":5126, + "count":44, + "max":[ + 4122.3671875, + 340.60888671875, + 4804.2783203125 + ], + "min":[ + -4122.365234375, + 7.62939453125e-05, + -4804.2744140625 + ], + "type":"VEC3" + }, + { + "bufferView":12509, + "componentType":5126, + "count":44, + "type":"VEC3" + }, + { + "bufferView":12510, + "componentType":5126, + "count":44, + "type":"VEC2" + }, + { + "bufferView":12511, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12512, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12513, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12514, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.455322265625, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.000732421875, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":12515, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":12516, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":12517, + "componentType":5126, + "count":1420, + "max":[ + 245.234375, + 367.92938232421875, + 384.1416015625 + ], + "min":[ + -245.232421875, + -6.103515625e-05, + -384.1381530761719 + ], + "type":"VEC3" + }, + { + "bufferView":12518, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":12519, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":12520, + "componentType":5126, + "count":599, + "max":[ + 149.38990783691406, + 217.0555419921875, + 134.02542114257812 + ], + "min":[ + -156.6021270751953, + 31.77496337890625, + -145.95697021484375 + ], + "type":"VEC3" + }, + { + "bufferView":12521, + "componentType":5126, + "count":599, + "type":"VEC3" + }, + { + "bufferView":12522, + "componentType":5126, + "count":224, + "max":[ + 118.72059631347656, + 272.6591491699219, + 115.08651733398438 + ], + "min":[ + -118.72098541259766, + 42.48627471923828, + -115.08641052246094 + ], + "type":"VEC3" + }, + { + "bufferView":12523, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":12524, + "componentType":5126, + "count":72, + "max":[ + 22.50006103515625, + 1492.539794921875, + 771.3447875976562 + ], + "min":[ + -22.500253677368164, + 0, + -771.34619140625 + ], + "type":"VEC3" + }, + { + "bufferView":12525, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":12526, + "componentType":5126, + "count":337, + "max":[ + 170.9033203125, + 157.001953125, + 177.25439453125 + ], + "min":[ + -170.9072265625, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":12527, + "componentType":5126, + "count":337, + "type":"VEC3" + }, + { + "bufferView":12528, + "componentType":5126, + "count":337, + "type":"VEC2" + }, + { + "bufferView":12529, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":12530, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":12531, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12532, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12533, + "componentType":5126, + "count":52, + "max":[ + 238.47998046875, + 483.89794921875, + 30.0006103515625 + ], + "min":[ + -238.478515625, + 0, + -29.9998779296875 + ], + "type":"VEC3" + }, + { + "bufferView":12534, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":12535, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":12536, + "componentType":5126, + "count":559, + "max":[ + 722.720703125, + 2637.3974609375, + 19.80284309387207 + ], + "min":[ + -722.720703125, + 0, + -19.80308723449707 + ], + "type":"VEC3" + }, + { + "bufferView":12537, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":12538, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":12539, + "componentType":5126, + "count":279, + "max":[ + 23.693748474121094, + 267.575927734375, + 235.96359252929688 + ], + "min":[ + -23.28312873840332, + 9.918212890625e-05, + -235.92578125 + ], + "type":"VEC3" + }, + { + "bufferView":12540, + "componentType":5126, + "count":279, + "type":"VEC3" + }, + { + "bufferView":12541, + "componentType":5126, + "count":279, + "type":"VEC2" + }, + { + "bufferView":12542, + "componentType":5126, + "count":825, + "max":[ + 4.130859375, + 90.58740997314453, + 34.45752716064453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45630645751953 + ], + "type":"VEC3" + }, + { + "bufferView":12543, + "componentType":5126, + "count":825, + "type":"VEC3" + }, + { + "bufferView":12544, + "componentType":5126, + "count":825, + "type":"VEC2" + }, + { + "bufferView":12545, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":12546, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51410675048828, + 43.590213775634766 + ], + "min":[ + -22.7265625, + -7.62939453125e-06, + -43.587894439697266 + ], + "type":"VEC3" + }, + { + "bufferView":12547, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":12548, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":12549, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12550, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12551, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12552, + "componentType":5126, + "count":338, + "max":[ + 45.85683059692383, + 271.12921142578125, + 115.62020874023438 + ], + "min":[ + -45.858123779296875, + 42.95985412597656, + -115.62043762207031 + ], + "type":"VEC3" + }, + { + "bufferView":12553, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":12554, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":12555, + "componentType":5126, + "count":24, + "max":[ + 249.3505859375, + 51.298583984375, + 1286.8095703125 + ], + "min":[ + -249.3515625, + 0, + -1286.80859375 + ], + "type":"VEC3" + }, + { + "bufferView":12556, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12557, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12558, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":12559, + "componentType":5126, + "count":96, + "max":[ + 820.9476318359375, + 205.17288208007812, + 73.47870635986328 + ], + "min":[ + -820.9443359375, + 7.62939453125e-06, + -73.47857666015625 + ], + "type":"VEC3" + }, + { + "bufferView":12560, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":12561, + "componentType":5126, + "count":588, + "max":[ + 142.26708984375, + 172.77529907226562, + 130.2075653076172 + ], + "min":[ + -142.26475524902344, + 3.0517578125e-05, + -130.20729064941406 + ], + "type":"VEC3" + }, + { + "bufferView":12562, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":12563, + "componentType":5126, + "count":572, + "max":[ + 187.44895935058594, + 119.34553527832031, + 191.52410888671875 + ], + "min":[ + -180.24105834960938, + 0.7740402221679688, + -191.5244140625 + ], + "type":"VEC3" + }, + { + "bufferView":12564, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":12565, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12566, + "componentType":5126, + "count":24, + "max":[ + 584.6640625, + 50.00004577636719, + 110.00007629394531 + ], + "min":[ + -584.6640625, + 1.390804027323611e-05, + -110.00010681152344 + ], + "type":"VEC3" + }, + { + "bufferView":12567, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12568, + "componentType":5126, + "count":578, + "max":[ + 160.69134521484375, + 32.82542037963867, + 160.6921844482422 + ], + "min":[ + -160.69309997558594, + 6.103515625e-05, + -160.69229125976562 + ], + "type":"VEC3" + }, + { + "bufferView":12569, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":12570, + "componentType":5126, + "count":211, + "max":[ + 33.40234375, + 133.60888671875, + 66.80419921875 + ], + "min":[ + -33.402099609375, + 0, + -66.804443359375 + ], + "type":"VEC3" + }, + { + "bufferView":12571, + "componentType":5126, + "count":211, + "type":"VEC3" + }, + { + "bufferView":12572, + "componentType":5126, + "count":211, + "type":"VEC2" + }, + { + "bufferView":12573, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":12574, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12575, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12576, + "componentType":5126, + "count":336, + "max":[ + 170.43359375, + 188.55810546875, + 176.2041015625 + ], + "min":[ + -170.435546875, + 45.29638671875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":12577, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":12578, + "componentType":5126, + "count":336, + "type":"VEC2" + }, + { + "bufferView":12579, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":12580, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51416778564453, + 43.590213775634766 + ], + "min":[ + -22.7275390625, + -7.62939453125e-06, + -43.587894439697266 + ], + "type":"VEC3" + }, + { + "bufferView":12581, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":12582, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":12583, + "componentType":5126, + "count":338, + "max":[ + 45.85810852050781, + 228.1693115234375, + 115.62022399902344 + ], + "min":[ + -45.85676574707031, + -0.0001068115234375, + -115.62042236328125 + ], + "type":"VEC3" + }, + { + "bufferView":12584, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":12585, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12586, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12587, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12588, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12589, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12590, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12591, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + 0.000118255615234375, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":12592, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":12593, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":12594, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12595, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12596, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12597, + "componentType":5126, + "count":96, + "max":[ + 513.90966796875, + 141.07080078125, + 69.5703125 + ], + "min":[ + -513.9052734375, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":12598, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":12599, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":12600, + "componentType":5126, + "count":176, + "max":[ + 769.70947265625, + 113.194580078125, + 56.59765625 + ], + "min":[ + -769.7080078125, + 6.103515625e-05, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":12601, + "componentType":5126, + "count":176, + "type":"VEC3" + }, + { + "bufferView":12602, + "componentType":5126, + "count":176, + "type":"VEC2" + }, + { + "bufferView":12603, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":12604, + "componentType":5126, + "count":572, + "max":[ + 206.177734375, + 212.76776123046875, + 185.7139129638672 + ], + "min":[ + -206.17726135253906, + 1.440460205078125, + -173.4335174560547 + ], + "type":"VEC3" + }, + { + "bufferView":12605, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":12606, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12607, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12608, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12609, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12610, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":12611, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":12612, + "componentType":5126, + "count":357, + "max":[ + 170.4345703125, + 188.55419921875, + 176.203125 + ], + "min":[ + -170.4345703125, + 45.29638671875, + -176.2041015625 + ], + "type":"VEC3" + }, + { + "bufferView":12613, + "componentType":5126, + "count":357, + "type":"VEC3" + }, + { + "bufferView":12614, + "componentType":5126, + "count":357, + "type":"VEC2" + }, + { + "bufferView":12615, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":12616, + "componentType":5126, + "count":122, + "max":[ + 983.4697265625, + 355.5093688964844, + 983.4719848632812 + ], + "min":[ + -983.4697265625, + 9.1552734375e-05, + -983.4695434570312 + ], + "type":"VEC3" + }, + { + "bufferView":12617, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":12618, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":12619, + "componentType":5126, + "count":224, + "max":[ + 118.7210693359375, + 230.70263671875, + 115.35122680664062 + ], + "min":[ + -118.72067260742188, + -6.103515625e-05, + -115.35127258300781 + ], + "type":"VEC3" + }, + { + "bufferView":12620, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":12621, + "componentType":5126, + "count":275, + "max":[ + 175.05322265625, + 196.21435546875, + 169.10546875 + ], + "min":[ + -175.0537109375, + 0, + -169.1083984375 + ], + "type":"VEC3" + }, + { + "bufferView":12622, + "componentType":5126, + "count":275, + "type":"VEC3" + }, + { + "bufferView":12623, + "componentType":5126, + "count":275, + "type":"VEC2" + }, + { + "bufferView":12624, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":12625, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12626, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12627, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12628, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12629, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12630, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12631, + "componentType":5126, + "count":584, + "max":[ + 174.45654296875, + 210.291015625, + 159.5592803955078 + ], + "min":[ + -174.455810546875, + -0.0001220703125, + -159.55838012695312 + ], + "type":"VEC3" + }, + { + "bufferView":12632, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":12633, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12634, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.58642578125 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.5849609375 + ], + "type":"VEC3" + }, + { + "bufferView":12635, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12636, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12637, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":12638, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12639, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12640, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.514404296875, + 22.7293758392334 + ], + "min":[ + -43.58984375, + -3.814697265625e-06, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":12641, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":12642, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":12643, + "componentType":5126, + "count":594, + "max":[ + 148.05227661132812, + 215.2120819091797, + 132.8024444580078 + ], + "min":[ + -155.25723266601562, + 31.4947509765625, + -144.7340087890625 + ], + "type":"VEC3" + }, + { + "bufferView":12644, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":12645, + "componentType":5126, + "count":340, + "max":[ + 45.85672378540039, + 271.12908935546875, + 115.62039947509766 + ], + "min":[ + -45.85814666748047, + 42.95982360839844, + -115.62028503417969 + ], + "type":"VEC3" + }, + { + "bufferView":12646, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":12647, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12648, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12649, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12650, + "componentType":5126, + "count":147, + "max":[ + 28.80126953125, + 913.683837890625, + 27.666015625 + ], + "min":[ + -28.80126953125, + 0, + -27.6650390625 + ], + "type":"VEC3" + }, + { + "bufferView":12651, + "componentType":5126, + "count":147, + "type":"VEC3" + }, + { + "bufferView":12652, + "componentType":5126, + "count":147, + "type":"VEC2" + }, + { + "bufferView":12653, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":12654, + "componentType":5126, + "count":595, + "max":[ + 152.07296752929688, + 220.74203491210938, + 136.47134399414062 + ], + "min":[ + -159.2841796875, + 32.335121154785156, + -148.4029541015625 + ], + "type":"VEC3" + }, + { + "bufferView":12655, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":12656, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12657, + "componentType":5126, + "count":110, + "max":[ + 27.1103515625, + 95.447021484375, + 37.43653106689453 + ], + "min":[ + -27.1103515625, + -3.814697265625e-06, + -37.43457794189453 + ], + "type":"VEC3" + }, + { + "bufferView":12658, + "componentType":5126, + "count":110, + "type":"VEC3" + }, + { + "bufferView":12659, + "componentType":5126, + "count":110, + "type":"VEC2" + }, + { + "bufferView":12660, + "componentType":5126, + "count":588, + "max":[ + 167.6999969482422, + 174.54714965820312, + 152.39144897460938 + ], + "min":[ + -167.6990203857422, + 1.16363525390625, + -140.11019897460938 + ], + "type":"VEC3" + }, + { + "bufferView":12661, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":12662, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12663, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":12664, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12665, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12666, + "componentType":5126, + "count":566, + "max":[ + 153.6865997314453, + 32.82521057128906, + 153.6849365234375 + ], + "min":[ + -153.68331909179688, + 1.52587890625e-05, + -153.68499755859375 + ], + "type":"VEC3" + }, + { + "bufferView":12667, + "componentType":5126, + "count":566, + "type":"VEC3" + }, + { + "bufferView":12668, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 253.74371337890625 + ], + "min":[ + -463.990234375, + -8.255030479631387e-06, + -253.7421875 + ], + "type":"VEC3" + }, + { + "bufferView":12669, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12670, + "componentType":5126, + "count":224, + "max":[ + 118.7210693359375, + 230.70263671875, + 115.35122680664062 + ], + "min":[ + -118.72067260742188, + -6.103515625e-05, + -115.35127258300781 + ], + "type":"VEC3" + }, + { + "bufferView":12671, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":12672, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":12673, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12674, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12675, + "componentType":5126, + "count":48, + "max":[ + 127.44287109375, + 625.6328125, + 391.736328125 + ], + "min":[ + -127.4404296875, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":12676, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":12677, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":12678, + "componentType":5126, + "count":586, + "max":[ + 162.3860626220703, + 108.34397888183594, + 169.10089111328125 + ], + "min":[ + -162.38360595703125, + 6.103515625e-05, + -169.10105895996094 + ], + "type":"VEC3" + }, + { + "bufferView":12679, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":12680, + "componentType":5126, + "count":566, + "max":[ + 176.10647583007812, + 32.82530975341797, + 176.10813903808594 + ], + "min":[ + -176.10997009277344, + 2.288818359375e-05, + -176.1083221435547 + ], + "type":"VEC3" + }, + { + "bufferView":12681, + "componentType":5126, + "count":566, + "type":"VEC3" + }, + { + "bufferView":12682, + "componentType":5126, + "count":584, + "max":[ + 203.12054443359375, + 128.63369750976562, + 207.8981475830078 + ], + "min":[ + -195.9110107421875, + 0.8424301147460938, + -207.89852905273438 + ], + "type":"VEC3" + }, + { + "bufferView":12683, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":12684, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12685, + "componentType":5126, + "count":366, + "max":[ + 1060.1884765625, + 12554.818359375, + 6043.28955078125 + ], + "min":[ + -1060.185546875, + 0.000278472900390625, + -6043.291015625 + ], + "type":"VEC3" + }, + { + "bufferView":12686, + "componentType":5126, + "count":366, + "type":"VEC3" + }, + { + "bufferView":12687, + "componentType":5126, + "count":366, + "type":"VEC2" + }, + { + "bufferView":12688, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":12689, + "componentType":5126, + "count":129, + "max":[ + 58.8193359375, + 162.824951171875, + 49.0341796875 + ], + "min":[ + -58.822265625, + 6.845703125, + -49.0361328125 + ], + "type":"VEC3" + }, + { + "bufferView":12690, + "componentType":5126, + "count":129, + "type":"VEC3" + }, + { + "bufferView":12691, + "componentType":5126, + "count":129, + "type":"VEC2" + }, + { + "bufferView":12692, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":12693, + "componentType":5126, + "count":594, + "max":[ + 165.069091796875, + 199.34866333007812, + 150.99778747558594 + ], + "min":[ + -165.06565856933594, + -0.0001678466796875, + -150.99826049804688 + ], + "type":"VEC3" + }, + { + "bufferView":12694, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":12695, + "componentType":5126, + "count":80, + "max":[ + 34832.796875, + 14, + 31120.796875 + ], + "min":[ + -34832.796875, + 0, + -31120.796875 + ], + "type":"VEC3" + }, + { + "bufferView":12696, + "componentType":5126, + "count":80, + "type":"VEC3" + }, + { + "bufferView":12697, + "componentType":5126, + "count":80, + "type":"VEC2" + }, + { + "bufferView":12698, + "componentType":5126, + "count":80, + "type":"VEC2" + }, + { + "bufferView":12699, + "componentType":5123, + "count":168, + "type":"SCALAR" + }, + { + "bufferView":12700, + "componentType":5126, + "count":354, + "max":[ + 139.86614990234375, + 261.595458984375, + 138.3525390625 + ], + "min":[ + -139.86798095703125, + 28.966552734375, + -138.351806640625 + ], + "type":"VEC3" + }, + { + "bufferView":12701, + "componentType":5126, + "count":354, + "type":"VEC3" + }, + { + "bufferView":12702, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":12703, + "componentType":5126, + "count":97, + "max":[ + 31.27215576171875, + 267.8876953125, + 51.743408203125 + ], + "min":[ + -31.228271484375, + 0, + -51.583251953125 + ], + "type":"VEC3" + }, + { + "bufferView":12704, + "componentType":5126, + "count":97, + "type":"VEC3" + }, + { + "bufferView":12705, + "componentType":5126, + "count":97, + "type":"VEC2" + }, + { + "bufferView":12706, + "componentType":5126, + "count":76, + "max":[ + 278.86651611328125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8672180175781, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":12707, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":12708, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":12709, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58544921875 + ], + "min":[ + -46.2841796875, + 0, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":12710, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12711, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12712, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12713, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12714, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12715, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.45458984375, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":12716, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":12717, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":12718, + "componentType":5126, + "count":574, + "max":[ + 197.12852478027344, + 202.405517578125, + 171.73837280273438 + ], + "min":[ + -197.13157653808594, + 3.0517578125e-05, + -171.73849487304688 + ], + "type":"VEC3" + }, + { + "bufferView":12719, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":12720, + "componentType":5126, + "count":578, + "max":[ + 195.7303924560547, + 202.38870239257812, + 164.38406372070312 + ], + "min":[ + -195.72679138183594, + 1.3652191162109375, + -176.66537475585938 + ], + "type":"VEC3" + }, + { + "bufferView":12721, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":12722, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12723, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.9293212890625, + 90.005859375 + ], + "min":[ + -433.1201171875, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":12724, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":12725, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":12726, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51428985595703, + 43.590824127197266 + ], + "min":[ + -22.7265625, + 0.00011444091796875, + -43.587406158447266 + ], + "type":"VEC3" + }, + { + "bufferView":12727, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":12728, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":12729, + "componentType":5126, + "count":56, + "max":[ + 238.478515625, + 483.897705078125, + 30.0001220703125 + ], + "min":[ + -238.4794921875, + 0, + -30.0003662109375 + ], + "type":"VEC3" + }, + { + "bufferView":12730, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":12731, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":12732, + "componentType":5126, + "count":48, + "max":[ + 289.0155334472656, + 233.94134521484375, + 11.697266578674316 + ], + "min":[ + -289.0126037597656, + -7.62939453125e-06, + -11.696868896484375 + ], + "type":"VEC3" + }, + { + "bufferView":12733, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":12734, + "componentType":5126, + "count":4, + "max":[ + -0.001953125, + 2586.479248046875, + 698.884521484375 + ], + "min":[ + -0.001953125, + 0, + -698.884521484375 + ], + "type":"VEC3" + }, + { + "bufferView":12735, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12736, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12737, + "componentType":5126, + "count":576, + "max":[ + 184.51686096191406, + 189.9676055908203, + 160.81515502929688 + ], + "min":[ + -184.51705932617188, + 6.103515625e-05, + -160.81521606445312 + ], + "type":"VEC3" + }, + { + "bufferView":12738, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":12739, + "componentType":5126, + "count":340, + "max":[ + 45.85676574707031, + 227.53482055664062, + 115.35122680664062 + ], + "min":[ + -45.858154296875, + -7.62939453125e-06, + -115.35122680664062 + ], + "type":"VEC3" + }, + { + "bufferView":12740, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":12741, + "componentType":5126, + "count":24, + "max":[ + 110.00022888183594, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534164175624028, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":12742, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12743, + "componentType":5126, + "count":71, + "max":[ + 3.7875263690948486, + 13.413311004638672, + 4.245928764343262 + ], + "min":[ + -3.787546396255493, + 0.00010930931603070349, + -4.2459025382995605 + ], + "type":"VEC3" + }, + { + "bufferView":12744, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":12745, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":12746, + "componentType":5126, + "count":600, + "max":[ + 164.89663696289062, + 32.8253059387207, + 164.89654541015625 + ], + "min":[ + -164.8965301513672, + 3.814697265625e-05, + -164.89666748046875 + ], + "type":"VEC3" + }, + { + "bufferView":12747, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":12748, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12749, + "componentType":5126, + "count":648, + "max":[ + 615.010986328125, + 2510.92529296875, + 347.26611328125 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.266357421875 + ], + "type":"VEC3" + }, + { + "bufferView":12750, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":12751, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":12752, + "componentType":5126, + "count":682, + "max":[ + 134.3154296875, + 2974.83349609375, + 130.7236328125 + ], + "min":[ + -134.3154296875, + 0, + -130.72071838378906 + ], + "type":"VEC3" + }, + { + "bufferView":12753, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":12754, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":12755, + "componentType":5126, + "count":336, + "max":[ + 13.560531616210938, + 230.7025146484375, + 115.35121154785156 + ], + "min":[ + -13.560829162597656, + 2.288818359375e-05, + -115.35124969482422 + ], + "type":"VEC3" + }, + { + "bufferView":12756, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":12757, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.456298828125, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.0006103515625, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":12758, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":12759, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":12760, + "componentType":5126, + "count":330, + "max":[ + 170.9052734375, + 157.001953125, + 177.25439453125 + ], + "min":[ + -170.9052734375, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":12761, + "componentType":5126, + "count":330, + "type":"VEC3" + }, + { + "bufferView":12762, + "componentType":5126, + "count":330, + "type":"VEC2" + }, + { + "bufferView":12763, + "componentType":5126, + "count":586, + "max":[ + 155.0883331298828, + 32.825321197509766, + 155.0863800048828 + ], + "min":[ + -155.08447265625, + -7.2479248046875e-05, + -155.08645629882812 + ], + "type":"VEC3" + }, + { + "bufferView":12764, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":12765, + "componentType":5126, + "count":528, + "max":[ + 19.802734375, + 2637.3974609375, + 722.721435546875 + ], + "min":[ + -19.802734375, + 0, + -722.721923828125 + ], + "type":"VEC3" + }, + { + "bufferView":12766, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":12767, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":12768, + "componentType":5126, + "count":591, + "max":[ + 170.85037231445312, + 246.5458984375, + 153.593017578125 + ], + "min":[ + -178.06201171875, + 36.254791259765625, + -165.5247344970703 + ], + "type":"VEC3" + }, + { + "bufferView":12769, + "componentType":5126, + "count":591, + "type":"VEC3" + }, + { + "bufferView":12770, + "componentType":5126, + "count":98, + "max":[ + 1.4143146276474, + 10.51738452911377, + 5.258759021759033 + ], + "min":[ + -1.4143165349960327, + -9.012222290039062e-05, + -5.25871467590332 + ], + "type":"VEC3" + }, + { + "bufferView":12771, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":12772, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":12773, + "componentType":5126, + "count":240, + "max":[ + 172.5966796875, + 185.23486328125, + 169.070556640625 + ], + "min":[ + -172.59716796875, + -0.00048828125, + -169.070556640625 + ], + "type":"VEC3" + }, + { + "bufferView":12774, + "componentType":5126, + "count":240, + "type":"VEC3" + }, + { + "bufferView":12775, + "componentType":5126, + "count":240, + "type":"VEC2" + }, + { + "bufferView":12776, + "componentType":5126, + "count":340, + "max":[ + 115.3511962890625, + 230.70252990722656, + 13.560844421386719 + ], + "min":[ + -115.35124969482422, + 4.57763671875e-05, + -13.560546875 + ], + "type":"VEC3" + }, + { + "bufferView":12777, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":12778, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12779, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12780, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12781, + "componentType":5126, + "count":50, + "max":[ + 142.32275390625, + 608.2197265625, + 391.736328125 + ], + "min":[ + -142.31982421875, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":12782, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":12783, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":12784, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12785, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12786, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12787, + "componentType":5126, + "count":24, + "max":[ + 252.0450439453125, + 180.07655334472656, + 240.94830322265625 + ], + "min":[ + -252.0450439453125, + -3.814697265625e-06, + -240.94830322265625 + ], + "type":"VEC3" + }, + { + "bufferView":12788, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12789, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12790, + "componentType":5126, + "count":122, + "max":[ + 228.908203125, + 55.46875, + 27.736328125 + ], + "min":[ + -228.907958984375, + 0, + -27.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":12791, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":12792, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":12793, + "componentType":5126, + "count":49, + "max":[ + 127.44287109375, + 625.6328125, + 391.73779296875 + ], + "min":[ + -127.4443359375, + 0, + -391.73779296875 + ], + "type":"VEC3" + }, + { + "bufferView":12794, + "componentType":5126, + "count":49, + "type":"VEC3" + }, + { + "bufferView":12795, + "componentType":5126, + "count":49, + "type":"VEC2" + }, + { + "bufferView":12796, + "componentType":5126, + "count":598, + "max":[ + 164.8965301513672, + 32.825321197509766, + 164.89654541015625 + ], + "min":[ + -164.89663696289062, + 1.52587890625e-05, + -164.89666748046875 + ], + "type":"VEC3" + }, + { + "bufferView":12797, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":12798, + "componentType":5126, + "count":670, + "max":[ + 12.50005054473877, + 267.5014343261719, + 78.83106231689453 + ], + "min":[ + -12.500003814697266, + 2.5272369384765625e-05, + -78.83014678955078 + ], + "type":"VEC3" + }, + { + "bufferView":12799, + "componentType":5126, + "count":670, + "type":"VEC3" + }, + { + "bufferView":12800, + "componentType":5123, + "count":1956, + "type":"SCALAR" + }, + { + "bufferView":12801, + "componentType":5126, + "count":72, + "max":[ + 22.50006103515625, + 1492.539794921875, + 771.3447875976562 + ], + "min":[ + -22.500253677368164, + 0, + -771.34619140625 + ], + "type":"VEC3" + }, + { + "bufferView":12802, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":12803, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4549560546875, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.00048828125, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":12804, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":12805, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":12806, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68524169921875 + ], + "min":[ + -15.4755859375, + 0, + -381.68817138671875 + ], + "type":"VEC3" + }, + { + "bufferView":12807, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12808, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12809, + "componentType":5126, + "count":96, + "max":[ + 332.39324951171875, + 1922.780517578125, + 35.13720703125 + ], + "min":[ + -332.39056396484375, + 0, + -35.13653564453125 + ], + "type":"VEC3" + }, + { + "bufferView":12810, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":12811, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12812, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12813, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12814, + "componentType":5126, + "count":76, + "max":[ + 279.1005859375, + 3543.081787109375, + 278.86895751953125 + ], + "min":[ + -279.10284423828125, + 0, + -278.86810302734375 + ], + "type":"VEC3" + }, + { + "bufferView":12815, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":12816, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":12817, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":12818, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12819, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12820, + "componentType":5126, + "count":576, + "max":[ + 211.33865356445312, + 216.41802978515625, + 184.04457092285156 + ], + "min":[ + -211.34117126464844, + -6.103515625e-05, + -184.04437255859375 + ], + "type":"VEC3" + }, + { + "bufferView":12821, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":12822, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12823, + "componentType":5126, + "count":119, + "max":[ + 31.293140411376953, + 15.511151313781738, + 6.502265930175781 + ], + "min":[ + -31.293136596679688, + -6.29425048828125e-05, + -6.502815246582031 + ], + "type":"VEC3" + }, + { + "bufferView":12824, + "componentType":5126, + "count":119, + "type":"VEC3" + }, + { + "bufferView":12825, + "componentType":5126, + "count":119, + "type":"VEC2" + }, + { + "bufferView":12826, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":12827, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51410675048828, + 43.590824127197266 + ], + "min":[ + -22.7275390625, + -7.62939453125e-06, + -43.587406158447266 + ], + "type":"VEC3" + }, + { + "bufferView":12828, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":12829, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":12830, + "componentType":5126, + "count":1384, + "max":[ + 28.8619384765625, + 6.597812652587891, + 27.8330078125 + ], + "min":[ + -28.8597412109375, + 3.814697265625e-06, + -27.832778930664062 + ], + "type":"VEC3" + }, + { + "bufferView":12831, + "componentType":5126, + "count":1384, + "type":"VEC3" + }, + { + "bufferView":12832, + "componentType":5126, + "count":1384, + "type":"VEC2" + }, + { + "bufferView":12833, + "componentType":5123, + "count":4140, + "type":"SCALAR" + }, + { + "bufferView":12834, + "componentType":5126, + "count":1388, + "max":[ + 28.840484619140625, + 6.5977783203125, + 27.99481201171875 + ], + "min":[ + -28.837921142578125, + 0, + -27.995513916015625 + ], + "type":"VEC3" + }, + { + "bufferView":12835, + "componentType":5126, + "count":1388, + "type":"VEC3" + }, + { + "bufferView":12836, + "componentType":5126, + "count":1388, + "type":"VEC2" + }, + { + "bufferView":12837, + "componentType":5123, + "count":4140, + "type":"SCALAR" + }, + { + "bufferView":12838, + "componentType":5126, + "count":1396, + "max":[ + 31.01739501953125, + 6.59844970703125, + 29.33843994140625 + ], + "min":[ + -26.7061767578125, + 0.00067138671875, + -26.294189453125 + ], + "type":"VEC3" + }, + { + "bufferView":12839, + "componentType":5126, + "count":1396, + "type":"VEC3" + }, + { + "bufferView":12840, + "componentType":5126, + "count":1396, + "type":"VEC2" + }, + { + "bufferView":12841, + "componentType":5123, + "count":4140, + "type":"SCALAR" + }, + { + "bufferView":12842, + "componentType":5126, + "count":1390, + "max":[ + 30.22064208984375, + 6.597930908203125, + 31.93023681640625 + ], + "min":[ + -27.5029296875, + 0.000213623046875, + -23.70245361328125 + ], + "type":"VEC3" + }, + { + "bufferView":12843, + "componentType":5126, + "count":1390, + "type":"VEC3" + }, + { + "bufferView":12844, + "componentType":5126, + "count":1390, + "type":"VEC2" + }, + { + "bufferView":12845, + "componentType":5123, + "count":4140, + "type":"SCALAR" + }, + { + "bufferView":12846, + "componentType":5126, + "count":2762, + "max":[ + 19.43243408203125, + 30.70294952392578, + 52.92321014404297 + ], + "min":[ + -19.435302734375, + 7.62939453125e-06, + -52.921905517578125 + ], + "type":"VEC3" + }, + { + "bufferView":12847, + "componentType":5126, + "count":2762, + "type":"VEC3" + }, + { + "bufferView":12848, + "componentType":5126, + "count":2762, + "type":"VEC2" + }, + { + "bufferView":12849, + "componentType":5123, + "count":14112, + "type":"SCALAR" + }, + { + "bufferView":12850, + "componentType":5126, + "count":2762, + "max":[ + 19.70867919921875, + 30.702919006347656, + 52.91432189941406 + ], + "min":[ + -19.71234130859375, + 7.62939453125e-06, + -52.913978576660156 + ], + "type":"VEC3" + }, + { + "bufferView":12851, + "componentType":5126, + "count":2762, + "type":"VEC3" + }, + { + "bufferView":12852, + "componentType":5126, + "count":2762, + "type":"VEC2" + }, + { + "bufferView":12853, + "componentType":5126, + "count":2762, + "max":[ + 19.47027587890625, + 30.703216552734375, + 52.98460388183594 + ], + "min":[ + -19.4339599609375, + 0.000335693359375, + -52.85981750488281 + ], + "type":"VEC3" + }, + { + "bufferView":12854, + "componentType":5126, + "count":2762, + "type":"VEC3" + }, + { + "bufferView":12855, + "componentType":5126, + "count":2762, + "type":"VEC2" + }, + { + "bufferView":12856, + "componentType":5126, + "count":2762, + "max":[ + 19.47021484375, + 30.703216552734375, + 52.984596252441406 + ], + "min":[ + -19.43402099609375, + 0.00030517578125, + -52.859832763671875 + ], + "type":"VEC3" + }, + { + "bufferView":12857, + "componentType":5126, + "count":2762, + "type":"VEC3" + }, + { + "bufferView":12858, + "componentType":5126, + "count":2762, + "type":"VEC2" + }, + { + "bufferView":12859, + "componentType":5126, + "count":972, + "max":[ + 65.6220703125, + 32.17448425292969, + 65.6243667602539 + ], + "min":[ + -65.62579345703125, + 1.52587890625e-05, + -65.62354278564453 + ], + "type":"VEC3" + }, + { + "bufferView":12860, + "componentType":5126, + "count":972, + "type":"VEC3" + }, + { + "bufferView":12861, + "componentType":5126, + "count":972, + "type":"VEC2" + }, + { + "bufferView":12862, + "componentType":5123, + "count":2520, + "type":"SCALAR" + }, + { + "bufferView":12863, + "componentType":5126, + "count":952, + "max":[ + 65.593017578125, + 32.17448043823242, + 65.59302520751953 + ], + "min":[ + -65.59429931640625, + 1.1444091796875e-05, + -65.59435272216797 + ], + "type":"VEC3" + }, + { + "bufferView":12864, + "componentType":5126, + "count":952, + "type":"VEC3" + }, + { + "bufferView":12865, + "componentType":5126, + "count":952, + "type":"VEC2" + }, + { + "bufferView":12866, + "componentType":5123, + "count":2520, + "type":"SCALAR" + }, + { + "bufferView":12867, + "componentType":5126, + "count":944, + "max":[ + 65.6298828125, + 32.17462158203125, + 65.63056182861328 + ], + "min":[ + -65.6297607421875, + 0.00030517578125, + -65.62913513183594 + ], + "type":"VEC3" + }, + { + "bufferView":12868, + "componentType":5126, + "count":944, + "type":"VEC3" + }, + { + "bufferView":12869, + "componentType":5126, + "count":944, + "type":"VEC2" + }, + { + "bufferView":12870, + "componentType":5123, + "count":2520, + "type":"SCALAR" + }, + { + "bufferView":12871, + "componentType":5126, + "count":948, + "max":[ + 65.62982177734375, + 32.17462158203125, + 65.63054656982422 + ], + "min":[ + -65.62982177734375, + 0.00030517578125, + -65.62916564941406 + ], + "type":"VEC3" + }, + { + "bufferView":12872, + "componentType":5126, + "count":948, + "type":"VEC3" + }, + { + "bufferView":12873, + "componentType":5126, + "count":948, + "type":"VEC2" + }, + { + "bufferView":12874, + "componentType":5123, + "count":2520, + "type":"SCALAR" + }, + { + "bufferView":12875, + "componentType":5126, + "count":14696, + "max":[ + 103.91365051269531, + 94.09004211425781, + 103.91366577148438 + ], + "min":[ + -103.9135513305664, + 0.0001068115234375, + -103.91355895996094 + ], + "type":"VEC3" + }, + { + "bufferView":12876, + "componentType":5126, + "count":14696, + "type":"VEC3" + }, + { + "bufferView":12877, + "componentType":5126, + "count":14696, + "type":"VEC2" + }, + { + "bufferView":12878, + "componentType":5123, + "count":85500, + "type":"SCALAR" + }, + { + "bufferView":12879, + "componentType":5126, + "count":801, + "max":[ + 15.115313529968262, + 14.315292358398438, + 15.115386962890625 + ], + "min":[ + -15.115316390991211, + 13.2515869140625, + -15.115331649780273 + ], + "type":"VEC3" + }, + { + "bufferView":12880, + "componentType":5126, + "count":801, + "type":"VEC3" + }, + { + "bufferView":12881, + "componentType":5126, + "count":801, + "type":"VEC2" + }, + { + "bufferView":12882, + "componentType":5123, + "count":4560, + "type":"SCALAR" + }, + { + "bufferView":12883, + "componentType":5126, + "count":14696, + "max":[ + 103.91365051269531, + 94.09004211425781, + 103.91366577148438 + ], + "min":[ + -103.9135513305664, + 0.0001068115234375, + -103.91355895996094 + ], + "type":"VEC3" + }, + { + "bufferView":12884, + "componentType":5126, + "count":14696, + "type":"VEC3" + }, + { + "bufferView":12885, + "componentType":5126, + "count":14696, + "type":"VEC2" + }, + { + "bufferView":12886, + "componentType":5126, + "count":801, + "max":[ + 15.115313529968262, + 14.315292358398438, + 15.115386962890625 + ], + "min":[ + -15.115316390991211, + 13.2515869140625, + -15.115331649780273 + ], + "type":"VEC3" + }, + { + "bufferView":12887, + "componentType":5126, + "count":801, + "type":"VEC3" + }, + { + "bufferView":12888, + "componentType":5126, + "count":801, + "type":"VEC2" + }, + { + "bufferView":12889, + "componentType":5126, + "count":14696, + "max":[ + 103.91352081298828, + 94.08997344970703, + 103.9134521484375 + ], + "min":[ + -103.91368103027344, + 3.0517578125e-05, + -103.91377258300781 + ], + "type":"VEC3" + }, + { + "bufferView":12890, + "componentType":5126, + "count":14696, + "type":"VEC3" + }, + { + "bufferView":12891, + "componentType":5126, + "count":14696, + "type":"VEC2" + }, + { + "bufferView":12892, + "componentType":5126, + "count":801, + "max":[ + 15.115286827087402, + 80.83848571777344, + 15.115177154541016 + ], + "min":[ + -15.11534309387207, + 79.7747802734375, + -15.115541458129883 + ], + "type":"VEC3" + }, + { + "bufferView":12893, + "componentType":5126, + "count":801, + "type":"VEC3" + }, + { + "bufferView":12894, + "componentType":5126, + "count":801, + "type":"VEC2" + }, + { + "bufferView":12895, + "componentType":5126, + "count":14696, + "max":[ + 103.9135513305664, + 94.0899429321289, + 103.9134521484375 + ], + "min":[ + -103.91365051269531, + 0, + -103.91377258300781 + ], + "type":"VEC3" + }, + { + "bufferView":12896, + "componentType":5126, + "count":14696, + "type":"VEC3" + }, + { + "bufferView":12897, + "componentType":5126, + "count":14696, + "type":"VEC2" + }, + { + "bufferView":12898, + "componentType":5126, + "count":801, + "max":[ + 15.115317344665527, + 80.83845520019531, + 15.115177154541016 + ], + "min":[ + -15.115312576293945, + 79.77474975585938, + -15.115541458129883 + ], + "type":"VEC3" + }, + { + "bufferView":12899, + "componentType":5126, + "count":801, + "type":"VEC3" + }, + { + "bufferView":12900, + "componentType":5126, + "count":801, + "type":"VEC2" + }, + { + "bufferView":12901, + "componentType":5126, + "count":1607, + "max":[ + 140.47817993164062, + 103.68038940429688, + 140.407958984375 + ], + "min":[ + -140.46844482421875, + 2.6702880859375e-05, + -140.39849853515625 + ], + "type":"VEC3" + }, + { + "bufferView":12902, + "componentType":5126, + "count":1607, + "type":"VEC3" + }, + { + "bufferView":12903, + "componentType":5126, + "count":1607, + "type":"VEC2" + }, + { + "bufferView":12904, + "componentType":5123, + "count":8160, + "type":"SCALAR" + }, + { + "bufferView":12905, + "componentType":5126, + "count":17510, + "max":[ + 148.90863037109375, + 99.30023193359375, + 148.9027862548828 + ], + "min":[ + -148.90997314453125, + 4.380214691162109, + -148.90325927734375 + ], + "type":"VEC3" + }, + { + "bufferView":12906, + "componentType":5126, + "count":17510, + "type":"VEC3" + }, + { + "bufferView":12907, + "componentType":5126, + "count":17510, + "type":"VEC2" + }, + { + "bufferView":12908, + "componentType":5123, + "count":36720, + "type":"SCALAR" + }, + { + "bufferView":12909, + "componentType":5126, + "count":1590, + "max":[ + 140.4901123046875, + 103.68032836914062, + 140.50062561035156 + ], + "min":[ + -140.49224853515625, + 2.6702880859375e-05, + -140.4752960205078 + ], + "type":"VEC3" + }, + { + "bufferView":12910, + "componentType":5126, + "count":1590, + "type":"VEC3" + }, + { + "bufferView":12911, + "componentType":5126, + "count":1590, + "type":"VEC2" + }, + { + "bufferView":12912, + "componentType":5123, + "count":8160, + "type":"SCALAR" + }, + { + "bufferView":12913, + "componentType":5126, + "count":17516, + "max":[ + 148.91802978515625, + 99.30014038085938, + 148.88914489746094 + ], + "min":[ + -148.9205322265625, + 4.380184173583984, + -148.88841247558594 + ], + "type":"VEC3" + }, + { + "bufferView":12914, + "componentType":5126, + "count":17516, + "type":"VEC3" + }, + { + "bufferView":12915, + "componentType":5126, + "count":17516, + "type":"VEC2" + }, + { + "bufferView":12916, + "componentType":5123, + "count":36720, + "type":"SCALAR" + }, + { + "bufferView":12917, + "componentType":5126, + "count":1292, + "max":[ + 138.84442138671875, + 103.6805419921875, + 138.79014587402344 + ], + "min":[ + -138.8328857421875, + 0.0003662109375, + -138.77809143066406 + ], + "type":"VEC3" + }, + { + "bufferView":12918, + "componentType":5126, + "count":1292, + "type":"VEC3" + }, + { + "bufferView":12919, + "componentType":5126, + "count":1292, + "type":"VEC2" + }, + { + "bufferView":12920, + "componentType":5123, + "count":6528, + "type":"SCALAR" + }, + { + "bufferView":12921, + "componentType":5126, + "count":17825, + "max":[ + 148.90921020507812, + 100.44833374023438, + 148.9037628173828 + ], + "min":[ + -148.90948486328125, + 3.23260498046875, + -148.9022979736328 + ], + "type":"VEC3" + }, + { + "bufferView":12922, + "componentType":5126, + "count":17825, + "type":"VEC3" + }, + { + "bufferView":12923, + "componentType":5126, + "count":17825, + "type":"VEC2" + }, + { + "bufferView":12924, + "componentType":5123, + "count":38352, + "type":"SCALAR" + }, + { + "bufferView":12925, + "componentType":5126, + "count":1292, + "max":[ + 138.84442138671875, + 103.68057250976562, + 138.79014587402344 + ], + "min":[ + -138.8328857421875, + 0.000396728515625, + -138.77809143066406 + ], + "type":"VEC3" + }, + { + "bufferView":12926, + "componentType":5126, + "count":1292, + "type":"VEC3" + }, + { + "bufferView":12927, + "componentType":5126, + "count":1292, + "type":"VEC2" + }, + { + "bufferView":12928, + "componentType":5126, + "count":17830, + "max":[ + 148.90921020507812, + 100.4483642578125, + 148.9037628173828 + ], + "min":[ + -148.909423828125, + 3.232635498046875, + -148.9022979736328 + ], + "type":"VEC3" + }, + { + "bufferView":12929, + "componentType":5126, + "count":17830, + "type":"VEC3" + }, + { + "bufferView":12930, + "componentType":5126, + "count":17830, + "type":"VEC2" + }, + { + "bufferView":12931, + "componentType":5123, + "count":38352, + "type":"SCALAR" + }, + { + "bufferView":12932, + "componentType":5126, + "count":24, + "max":[ + 2288.498291015625, + 1605.7132568359375, + 1111.61572265625 + ], + "min":[ + -2288.4990234375, + -0.000244140625, + -1111.614990234375 + ], + "type":"VEC3" + }, + { + "bufferView":12933, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12934, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":12935, + "componentType":5126, + "count":46, + "max":[ + 366.153076171875, + 658.67578125, + 161.98095703125 + ], + "min":[ + -366.15234375, + 0, + -161.97900390625 + ], + "type":"VEC3" + }, + { + "bufferView":12936, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":12937, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":12938, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12939, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12940, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12941, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12942, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12943, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12944, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12945, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12946, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12947, + "componentType":5126, + "count":559, + "max":[ + 19.802734375, + 2637.3974609375, + 722.7232666015625 + ], + "min":[ + -19.802734375, + 0, + -722.719970703125 + ], + "type":"VEC3" + }, + { + "bufferView":12948, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":12949, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":12950, + "componentType":5126, + "count":586, + "max":[ + 138.66163635253906, + 202.30996704101562, + 124.24146270751953 + ], + "min":[ + -145.87022399902344, + 29.534652709960938, + -136.17333984375 + ], + "type":"VEC3" + }, + { + "bufferView":12951, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":12952, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76666259765625, + 78.58544921875 + ], + "min":[ + -46.2822265625, + 0, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":12953, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12954, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12955, + "componentType":5126, + "count":559, + "max":[ + 224.27151489257812, + 530.1519775390625, + 223.79135131835938 + ], + "min":[ + -224.27151489257812, + 82.56924438476562, + -223.79135131835938 + ], + "type":"VEC3" + }, + { + "bufferView":12956, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":12957, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":12958, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":12959, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12960, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":12961, + "componentType":5126, + "count":238, + "max":[ + 175.0537109375, + 196.214111328125, + 169.1063232421875 + ], + "min":[ + -175.05322265625, + 0, + -169.107421875 + ], + "type":"VEC3" + }, + { + "bufferView":12962, + "componentType":5126, + "count":238, + "type":"VEC3" + }, + { + "bufferView":12963, + "componentType":5126, + "count":238, + "type":"VEC2" + }, + { + "bufferView":12964, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 253.74371337890625 + ], + "min":[ + -463.990234375, + -8.255030479631387e-06, + -253.7421875 + ], + "type":"VEC3" + }, + { + "bufferView":12965, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12966, + "componentType":5126, + "count":98, + "max":[ + 513.90771484375, + 141.07080078125, + 69.5699462890625 + ], + "min":[ + -513.9072265625, + 0, + -69.5701904296875 + ], + "type":"VEC3" + }, + { + "bufferView":12967, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":12968, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":12969, + "componentType":5126, + "count":121, + "max":[ + 31.293132781982422, + 15.511030197143555, + 6.50311279296875 + ], + "min":[ + -31.293148040771484, + 7.152557373046875e-06, + -6.502105712890625 + ], + "type":"VEC3" + }, + { + "bufferView":12970, + "componentType":5126, + "count":121, + "type":"VEC3" + }, + { + "bufferView":12971, + "componentType":5126, + "count":121, + "type":"VEC2" + }, + { + "bufferView":12972, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":12973, + "componentType":5126, + "count":801, + "max":[ + 4.130859375, + 90.58740997314453, + 34.45752716064453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45630645751953 + ], + "type":"VEC3" + }, + { + "bufferView":12974, + "componentType":5126, + "count":801, + "type":"VEC3" + }, + { + "bufferView":12975, + "componentType":5126, + "count":801, + "type":"VEC2" + }, + { + "bufferView":12976, + "componentType":5126, + "count":580, + "max":[ + 194.57476806640625, + 233.73831176757812, + 177.90357971191406 + ], + "min":[ + -194.57534790039062, + -6.103515625e-05, + -177.90357971191406 + ], + "type":"VEC3" + }, + { + "bufferView":12977, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":12978, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12979, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51428985595703, + 43.590213775634766 + ], + "min":[ + -22.7265625, + 0.00011444091796875, + -43.587894439697266 + ], + "type":"VEC3" + }, + { + "bufferView":12980, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":12981, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":12982, + "componentType":5123, + "count":276, + "type":"SCALAR" + }, + { + "bufferView":12983, + "componentType":5126, + "count":572, + "max":[ + 153.6865997314453, + 160.62615966796875, + 140.25399780273438 + ], + "min":[ + -153.68331909179688, + 1.0625991821289062, + -127.97377014160156 + ], + "type":"VEC3" + }, + { + "bufferView":12984, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":12985, + "componentType":5126, + "count":575, + "max":[ + 174.03504943847656, + 112.89473724365234, + 177.5095977783203 + ], + "min":[ + -166.8297119140625, + 0.7155303955078125, + -177.5098114013672 + ], + "type":"VEC3" + }, + { + "bufferView":12986, + "componentType":5126, + "count":575, + "type":"VEC3" + }, + { + "bufferView":12987, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":12988, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":12989, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":12990, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":12991, + "componentType":5126, + "count":592, + "max":[ + 157.0199432373047, + 189.9700927734375, + 143.6602325439453 + ], + "min":[ + -157.01971435546875, + 0.0001373291015625, + -143.66014099121094 + ], + "type":"VEC3" + }, + { + "bufferView":12992, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":12993, + "componentType":5126, + "count":106, + "max":[ + 413.561279296875, + 1876.47607421875, + 27.3134765625 + ], + "min":[ + -413.56103515625, + 0.00103759765625, + -27.3154296875 + ], + "type":"VEC3" + }, + { + "bufferView":12994, + "componentType":5126, + "count":106, + "type":"VEC3" + }, + { + "bufferView":12995, + "componentType":5126, + "count":106, + "type":"VEC2" + }, + { + "bufferView":12996, + "componentType":5123, + "count":204, + "type":"SCALAR" + }, + { + "bufferView":12997, + "componentType":5126, + "count":96, + "max":[ + 820.9476318359375, + 205.17288208007812, + 73.47864532470703 + ], + "min":[ + -820.9443359375, + 7.62939453125e-06, + -73.4786376953125 + ], + "type":"VEC3" + }, + { + "bufferView":12998, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":12999, + "componentType":5126, + "count":574, + "max":[ + 159.28961181640625, + 32.8253173828125, + 159.2907257080078 + ], + "min":[ + -159.29193115234375, + 1.52587890625e-05, + -159.2908477783203 + ], + "type":"VEC3" + }, + { + "bufferView":13000, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":13001, + "componentType":5126, + "count":60, + "max":[ + 2752.00439453125, + 2819.53076171875, + 1066.3984375 + ], + "min":[ + -2752.0029296875, + -0.0001220703125, + -1066.39453125 + ], + "type":"VEC3" + }, + { + "bufferView":13002, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":13003, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":13004, + "componentType":5126, + "count":72, + "max":[ + 866.67041015625, + 1492.539794921875, + 22.500154495239258 + ], + "min":[ + -866.6709594726562, + 0, + -22.500349044799805 + ], + "type":"VEC3" + }, + { + "bufferView":13005, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":13006, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":13007, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13008, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13009, + "componentType":5126, + "count":4, + "max":[ + 698.8828125, + 2586.479248046875, + 0.0015688911080360413 + ], + "min":[ + -698.8828125, + 0, + 0.0009945854544639587 + ], + "type":"VEC3" + }, + { + "bufferView":13010, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13011, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13012, + "componentType":5126, + "count":682, + "max":[ + 130.72265625, + 2974.83349609375, + 134.317138671875 + ], + "min":[ + -130.72265625, + 0, + -134.31373596191406 + ], + "type":"VEC3" + }, + { + "bufferView":13013, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":13014, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":13015, + "componentType":5126, + "count":340, + "max":[ + 45.85672378540039, + 271.12908935546875, + 115.62039947509766 + ], + "min":[ + -45.85814666748047, + 42.95982360839844, + -115.62028503417969 + ], + "type":"VEC3" + }, + { + "bufferView":13016, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":13017, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13018, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13019, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13020, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":13021, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":13022, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":13023, + "componentType":5126, + "count":24, + "max":[ + 46.291542053222656, + 2000, + 46.291542053222656 + ], + "min":[ + -46.291542053222656, + 0, + -46.291542053222656 + ], + "type":"VEC3" + }, + { + "bufferView":13024, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13025, + "componentType":5126, + "count":24, + "max":[ + 292.4480895996094, + 205.86782836914062, + 292.42657470703125 + ], + "min":[ + -292.4480895996094, + 7.62939453125e-05, + -292.4267578125 + ], + "type":"VEC3" + }, + { + "bufferView":13026, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13027, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13028, + "componentType":5126, + "count":164, + "max":[ + 520.65234375, + 14332.2607421875, + 66.3216552734375 + ], + "min":[ + -520.646728515625, + 0.00096893310546875, + -66.3233642578125 + ], + "type":"VEC3" + }, + { + "bufferView":13029, + "componentType":5126, + "count":164, + "type":"VEC3" + }, + { + "bufferView":13030, + "componentType":5126, + "count":164, + "type":"VEC2" + }, + { + "bufferView":13031, + "componentType":5126, + "count":577, + "max":[ + 170.4312744140625, + 112.17939758300781, + 177.5097198486328 + ], + "min":[ + -170.43348693847656, + 0.0001983642578125, + -177.5096893310547 + ], + "type":"VEC3" + }, + { + "bufferView":13032, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":13033, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13034, + "componentType":5126, + "count":24, + "max":[ + 126.07373046875, + 130.123046875, + 27.1943359375 + ], + "min":[ + -126.0732421875, + 0, + -27.193359375 + ], + "type":"VEC3" + }, + { + "bufferView":13035, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13036, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13037, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.5859375 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":13038, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13039, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13040, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13041, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13042, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13043, + "componentType":5126, + "count":71, + "max":[ + 3.7873902320861816, + 13.000020027160645, + 3.742483139038086 + ], + "min":[ + -3.787674903869629, + -2.384185791015625e-05, + -3.7423512935638428 + ], + "type":"VEC3" + }, + { + "bufferView":13044, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":13045, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":13046, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51416015625, + 22.7294979095459 + ], + "min":[ + -43.587890625, + 0.000118255615234375, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":13047, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":13048, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":13049, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":13050, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13051, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13052, + "componentType":5126, + "count":1048, + "max":[ + 125.224609375, + 76.1982421875, + 90.109130859375 + ], + "min":[ + -125.2275390625, + -0.0009765625, + -90.1090087890625 + ], + "type":"VEC3" + }, + { + "bufferView":13053, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":13054, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":13055, + "componentType":5126, + "count":488, + "max":[ + 879.6591796875, + 587.0330810546875, + 879.6592407226562 + ], + "min":[ + -879.6591796875, + 9.1552734375e-05, + -879.6607055664062 + ], + "type":"VEC3" + }, + { + "bufferView":13056, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":13057, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":13058, + "componentType":5126, + "count":586, + "max":[ + 173.30691528320312, + 32.82530975341797, + 173.3052520751953 + ], + "min":[ + -173.3037109375, + 9.1552734375e-05, + -173.30545043945312 + ], + "type":"VEC3" + }, + { + "bufferView":13059, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":13060, + "componentType":5126, + "count":338, + "max":[ + 13.560920715332031, + 230.70245361328125, + 115.3511962890625 + ], + "min":[ + -13.56060791015625, + -5.340576171875e-05, + -115.35127258300781 + ], + "type":"VEC3" + }, + { + "bufferView":13061, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":13062, + "componentType":5126, + "count":136, + "max":[ + 824.2421875, + 156.626220703125, + 69.5693359375 + ], + "min":[ + -824.24169921875, + 0, + -69.5712890625 + ], + "type":"VEC3" + }, + { + "bufferView":13063, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":13064, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":13065, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13066, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13067, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13068, + "componentType":5126, + "count":578, + "max":[ + 155.67843627929688, + 105.14762878417969, + 162.09364318847656 + ], + "min":[ + -155.6787109375, + -0.0002288818359375, + -162.09371948242188 + ], + "type":"VEC3" + }, + { + "bufferView":13069, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":13070, + "componentType":5126, + "count":576, + "max":[ + 181.5825653076172, + 261.29150390625, + 163.37677001953125 + ], + "min":[ + -188.78990173339844, + 38.49510192871094, + -175.30857849121094 + ], + "type":"VEC3" + }, + { + "bufferView":13071, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":13072, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13073, + "componentType":5126, + "count":589, + "max":[ + 151.65383911132812, + 103.22981262207031, + 157.8892822265625 + ], + "min":[ + -151.65567016601562, + -0.0001373291015625, + -157.8893585205078 + ], + "type":"VEC3" + }, + { + "bufferView":13074, + "componentType":5126, + "count":589, + "type":"VEC3" + }, + { + "bufferView":13075, + "componentType":5126, + "count":356, + "max":[ + 171.298828125, + 184.8037109375, + 176.140380859375 + ], + "min":[ + -171.2978515625, + 44.4541015625, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":13076, + "componentType":5126, + "count":356, + "type":"VEC3" + }, + { + "bufferView":13077, + "componentType":5126, + "count":356, + "type":"VEC2" + }, + { + "bufferView":13078, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":13079, + "componentType":5126, + "count":142, + "max":[ + 3.451836347579956, + 18.945335388183594, + 9.47275161743164 + ], + "min":[ + -3.451739549636841, + -0.00011920928955078125, + -9.472702980041504 + ], + "type":"VEC3" + }, + { + "bufferView":13080, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":13081, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":13082, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":13083, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":13084, + "componentType":5126, + "count":682, + "max":[ + 134.31640625, + 2974.83349609375, + 130.72314453125 + ], + "min":[ + -134.31640625, + 0, + -130.72108459472656 + ], + "type":"VEC3" + }, + { + "bufferView":13085, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":13086, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":13087, + "componentType":5126, + "count":228, + "max":[ + 146.30172729492188, + 324.15997314453125, + 131.37342834472656 + ], + "min":[ + -147.06332397460938, + 43.131927490234375, + -130.9874725341797 + ], + "type":"VEC3" + }, + { + "bufferView":13088, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":13089, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":13090, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13091, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13092, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13093, + "componentType":5126, + "count":134, + "max":[ + 37.57861328125, + 75.158203125, + 1709.3642578125 + ], + "min":[ + -37.57958984375, + 0, + -1709.365234375 + ], + "type":"VEC3" + }, + { + "bufferView":13094, + "componentType":5126, + "count":134, + "type":"VEC3" + }, + { + "bufferView":13095, + "componentType":5126, + "count":134, + "type":"VEC2" + }, + { + "bufferView":13096, + "componentType":5126, + "count":592, + "max":[ + 153.41448974609375, + 222.5848846435547, + 137.69430541992188 + ], + "min":[ + -160.6251678466797, + 32.614845275878906, + -149.62600708007812 + ], + "type":"VEC3" + }, + { + "bufferView":13097, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":13098, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13099, + "componentType":5126, + "count":143, + "max":[ + 18.1376953125, + 2298.161376953125, + 18.139448165893555 + ], + "min":[ + -18.138671875, + 0, + -18.138471603393555 + ], + "type":"VEC3" + }, + { + "bufferView":13100, + "componentType":5126, + "count":143, + "type":"VEC3" + }, + { + "bufferView":13101, + "componentType":5126, + "count":143, + "type":"VEC2" + }, + { + "bufferView":13102, + "componentType":5126, + "count":24, + "max":[ + 253.74305725097656, + 50, + 481.6465148925781 + ], + "min":[ + -253.74307250976562, + 0, + -481.64654541015625 + ], + "type":"VEC3" + }, + { + "bufferView":13103, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13104, + "componentType":5126, + "count":325, + "max":[ + 170.90625, + 157.000732421875, + 177.25439453125 + ], + "min":[ + -170.9033203125, + 21.2890625, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":13105, + "componentType":5126, + "count":325, + "type":"VEC3" + }, + { + "bufferView":13106, + "componentType":5126, + "count":325, + "type":"VEC2" + }, + { + "bufferView":13107, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":13108, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13109, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13110, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":13111, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13112, + "componentType":5126, + "count":814, + "max":[ + 4.130859375, + 90.58740997314453, + 34.45850372314453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45459747314453 + ], + "type":"VEC3" + }, + { + "bufferView":13113, + "componentType":5126, + "count":814, + "type":"VEC3" + }, + { + "bufferView":13114, + "componentType":5126, + "count":814, + "type":"VEC2" + }, + { + "bufferView":13115, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":13116, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":13117, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13118, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13119, + "componentType":5126, + "count":24, + "max":[ + 27.19384765625, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":13120, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13121, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13122, + "componentType":5126, + "count":1810, + "max":[ + 6.498470306396484, + 182.74732971191406, + 91.37360382080078 + ], + "min":[ + -6.498557090759277, + 1.52587890625e-05, + -91.37369537353516 + ], + "type":"VEC3" + }, + { + "bufferView":13123, + "componentType":5126, + "count":1810, + "type":"VEC3" + }, + { + "bufferView":13124, + "componentType":5126, + "count":1810, + "type":"VEC2" + }, + { + "bufferView":13125, + "componentType":5126, + "count":916, + "max":[ + 574.3344116210938, + 269.34246826171875, + 12.500112533569336 + ], + "min":[ + -574.3378295898438, + 1.2874603271484375e-05, + -12.500078201293945 + ], + "type":"VEC3" + }, + { + "bufferView":13126, + "componentType":5126, + "count":916, + "type":"VEC3" + }, + { + "bufferView":13127, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":13128, + "componentType":5126, + "count":8111, + "max":[ + 178.8212890625, + 1010.5029296875, + 103.7867431640625 + ], + "min":[ + -178.83203125, + 12.3369140625, + -103.7867431640625 + ], + "type":"VEC3" + }, + { + "bufferView":13129, + "componentType":5126, + "count":8111, + "type":"VEC3" + }, + { + "bufferView":13130, + "componentType":5126, + "count":8111, + "type":"VEC2" + }, + { + "bufferView":13131, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":13132, + "componentType":5126, + "count":325, + "max":[ + 170.9033203125, + 156.999267578125, + 177.25439453125 + ], + "min":[ + -170.90625, + 21.2880859375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":13133, + "componentType":5126, + "count":325, + "type":"VEC3" + }, + { + "bufferView":13134, + "componentType":5126, + "count":325, + "type":"VEC2" + }, + { + "bufferView":13135, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":13136, + "componentType":5126, + "count":48, + "max":[ + 4093.119140625, + 200, + 11669.7265625 + ], + "min":[ + -4093.119140625, + 0, + -11669.724609375 + ], + "type":"VEC3" + }, + { + "bufferView":13137, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":13138, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":13139, + "componentType":5123, + "count":72, + "type":"SCALAR" + }, + { + "bufferView":13140, + "componentType":5126, + "count":112, + "max":[ + 34.85725021362305, + 1878.334228515625, + 483.71826171875 + ], + "min":[ + -34.85725402832031, + 0, + -483.7182922363281 + ], + "type":"VEC3" + }, + { + "bufferView":13141, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":13142, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":13143, + "componentType":5126, + "count":76, + "max":[ + 278.86895751953125, + 3543.081787109375, + 279.10284423828125 + ], + "min":[ + -278.86810302734375, + 0, + -279.1005859375 + ], + "type":"VEC3" + }, + { + "bufferView":13144, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":13145, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":13146, + "componentType":5126, + "count":186, + "max":[ + 769.70947265625, + 113.194580078125, + 56.597412109375 + ], + "min":[ + -769.7080078125, + 0, + -56.596923828125 + ], + "type":"VEC3" + }, + { + "bufferView":13147, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":13148, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":13149, + "componentType":5126, + "count":594, + "max":[ + 151.65382385253906, + 183.7174072265625, + 138.7682342529297 + ], + "min":[ + -151.6556854248047, + 0.000152587890625, + -138.76828002929688 + ], + "type":"VEC3" + }, + { + "bufferView":13150, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":13151, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13152, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13153, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13154, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13155, + "componentType":5126, + "count":226, + "max":[ + 115.14118957519531, + 342.30987548828125, + 159.38693237304688 + ], + "min":[ + -115.14127349853516, + 24.731460571289062, + -160.72265625 + ], + "type":"VEC3" + }, + { + "bufferView":13156, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":13157, + "componentType":5126, + "count":72, + "max":[ + 22.499942779541016, + 1492.539794921875, + 771.346435546875 + ], + "min":[ + -22.5002384185791, + 0.00030517578125, + -771.3448486328125 + ], + "type":"VEC3" + }, + { + "bufferView":13158, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":13159, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92938232421875, + 384.142578125 + ], + "min":[ + -245.2333984375, + 0, + -384.1391296386719 + ], + "type":"VEC3" + }, + { + "bufferView":13160, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":13161, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":13162, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51416778564453, + 43.590824127197266 + ], + "min":[ + -22.7265625, + -7.62939453125e-06, + -43.587406158447266 + ], + "type":"VEC3" + }, + { + "bufferView":13163, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":13164, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":13165, + "componentType":5126, + "count":112, + "max":[ + 116.97066497802734, + 2149.27001953125, + 116.97066497802734 + ], + "min":[ + -116.97066497802734, + 0, + -116.97069549560547 + ], + "type":"VEC3" + }, + { + "bufferView":13166, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":13167, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":13168, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":13169, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":13170, + "componentType":5126, + "count":226, + "max":[ + 146.6806640625, + 288.87420654296875, + 115.35120391845703 + ], + "min":[ + -146.6844482421875, + -6.103515625e-05, + -115.35126495361328 + ], + "type":"VEC3" + }, + { + "bufferView":13171, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":13172, + "componentType":5126, + "count":6808, + "max":[ + 37.94609069824219, + 117.86515808105469, + 219.26202392578125 + ], + "min":[ + -37.94620895385742, + -0.0001678466796875, + -219.26443481445312 + ], + "type":"VEC3" + }, + { + "bufferView":13173, + "componentType":5126, + "count":6808, + "type":"VEC3" + }, + { + "bufferView":13174, + "componentType":5126, + "count":6808, + "type":"VEC2" + }, + { + "bufferView":13175, + "componentType":5123, + "count":21444, + "type":"SCALAR" + }, + { + "bufferView":13176, + "componentType":5126, + "count":560, + "max":[ + 163.4954833984375, + 32.8253059387207, + 163.49508666992188 + ], + "min":[ + -163.4947967529297, + 3.814697265625e-05, + -163.49517822265625 + ], + "type":"VEC3" + }, + { + "bufferView":13177, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":13178, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13179, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13180, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13181, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13182, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + 5.7220458984375e-05, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":13183, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":13184, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":13185, + "componentType":5126, + "count":224, + "max":[ + 118.72061157226562, + 230.70252990722656, + 115.3511962890625 + ], + "min":[ + -118.72098541259766, + 1.52587890625e-05, + -115.35124969482422 + ], + "type":"VEC3" + }, + { + "bufferView":13186, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":13187, + "componentType":5126, + "count":331, + "max":[ + 170.90625, + 157.00390625, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":13188, + "componentType":5126, + "count":331, + "type":"VEC3" + }, + { + "bufferView":13189, + "componentType":5126, + "count":331, + "type":"VEC2" + }, + { + "bufferView":13190, + "componentType":5126, + "count":528, + "max":[ + 19.8037109375, + 2637.3974609375, + 722.720947265625 + ], + "min":[ + -19.8037109375, + 0, + -722.721923828125 + ], + "type":"VEC3" + }, + { + "bufferView":13191, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":13192, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":13193, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92926025390625, + 384.57861328125 + ], + "min":[ + -244.466796875, + -6.103515625e-05, + -384.5820007324219 + ], + "type":"VEC3" + }, + { + "bufferView":13194, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":13195, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":13196, + "componentType":5126, + "count":262, + "max":[ + 174.408203125, + 193.25439453125, + 169.06298828125 + ], + "min":[ + -174.408203125, + 0, + -169.0628662109375 + ], + "type":"VEC3" + }, + { + "bufferView":13197, + "componentType":5126, + "count":262, + "type":"VEC3" + }, + { + "bufferView":13198, + "componentType":5126, + "count":262, + "type":"VEC2" + }, + { + "bufferView":13199, + "componentType":5126, + "count":24, + "max":[ + 349.0685729980469, + 50.00018310546875, + 584.6641845703125 + ], + "min":[ + -349.0680847167969, + 7.65542354201898e-05, + -584.6641235351562 + ], + "type":"VEC3" + }, + { + "bufferView":13200, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13201, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":13202, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13203, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13204, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13205, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13206, + "componentType":5126, + "count":55, + "max":[ + 123.61669921875, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.61181640625, + 0, + -366.1533203125 + ], + "type":"VEC3" + }, + { + "bufferView":13207, + "componentType":5126, + "count":55, + "type":"VEC3" + }, + { + "bufferView":13208, + "componentType":5126, + "count":55, + "type":"VEC2" + }, + { + "bufferView":13209, + "componentType":5126, + "count":170, + "max":[ + 769.70751953125, + 113.194580078125, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0, + -56.5966796875 + ], + "type":"VEC3" + }, + { + "bufferView":13210, + "componentType":5126, + "count":170, + "type":"VEC3" + }, + { + "bufferView":13211, + "componentType":5126, + "count":170, + "type":"VEC2" + }, + { + "bufferView":13212, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13213, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13214, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13215, + "componentType":5126, + "count":4, + "max":[ + 3857.663818359375, + 0.00030517578125, + 4755.388671875 + ], + "min":[ + -3857.6669921875, + 0, + -4755.38916015625 + ], + "type":"VEC3" + }, + { + "bufferView":13216, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13217, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13218, + "componentType":5126, + "count":24, + "max":[ + 29.8388671875, + 320.322265625, + 219.6552734375 + ], + "min":[ + -29.83935546875, + 0, + -219.65625 + ], + "type":"VEC3" + }, + { + "bufferView":13219, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13220, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13221, + "componentType":5126, + "count":595, + "max":[ + 504.455078125, + 2795.482666015625, + 563.22412109375 + ], + "min":[ + -504.443359375, + 9.1552734375e-05, + -563.22412109375 + ], + "type":"VEC3" + }, + { + "bufferView":13222, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":13223, + "componentType":5126, + "count":595, + "type":"VEC2" + }, + { + "bufferView":13224, + "componentType":5123, + "count":1284, + "type":"SCALAR" + }, + { + "bufferView":13225, + "componentType":5126, + "count":48, + "max":[ + 123.61328125, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.615234375, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":13226, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":13227, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":13228, + "componentType":5126, + "count":260, + "max":[ + 3.451836347579956, + 18.945335388183594, + 9.47275161743164 + ], + "min":[ + -3.451739549636841, + -0.00011920928955078125, + -9.472702980041504 + ], + "type":"VEC3" + }, + { + "bufferView":13229, + "componentType":5126, + "count":260, + "type":"VEC3" + }, + { + "bufferView":13230, + "componentType":5126, + "count":260, + "type":"VEC2" + }, + { + "bufferView":13231, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13232, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13233, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13234, + "componentType":5126, + "count":245, + "max":[ + 173.28125, + 188.23828125, + 169.100830078125 + ], + "min":[ + -173.28173828125, + 0, + -169.100830078125 + ], + "type":"VEC3" + }, + { + "bufferView":13235, + "componentType":5126, + "count":245, + "type":"VEC3" + }, + { + "bufferView":13236, + "componentType":5126, + "count":245, + "type":"VEC2" + }, + { + "bufferView":13237, + "componentType":5126, + "count":586, + "max":[ + 159.70298767089844, + 107.06523132324219, + 166.29798889160156 + ], + "min":[ + -159.70166015625, + 0, + -166.29811096191406 + ], + "type":"VEC3" + }, + { + "bufferView":13238, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":13239, + "componentType":5126, + "count":24, + "max":[ + 41.68190002441406, + 304.458251953125, + 700.2705078125 + ], + "min":[ + -41.6810417175293, + 0.0001220703125, + -700.271484375 + ], + "type":"VEC3" + }, + { + "bufferView":13240, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13241, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13242, + "componentType":5126, + "count":574, + "max":[ + 209.6181640625, + 214.72122192382812, + 182.55429077148438 + ], + "min":[ + -209.62005615234375, + 3.0517578125e-05, + -182.5541534423828 + ], + "type":"VEC3" + }, + { + "bufferView":13243, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":13244, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13245, + "componentType":5126, + "count":576, + "max":[ + 157.88787841796875, + 32.825321197509766, + 157.8892822265625 + ], + "min":[ + -157.89076232910156, + 1.52587890625e-05, + -157.8893585205078 + ], + "type":"VEC3" + }, + { + "bufferView":13246, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":13247, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51428985595703, + 43.590824127197266 + ], + "min":[ + -22.7275390625, + 0.00011444091796875, + -43.587406158447266 + ], + "type":"VEC3" + }, + { + "bufferView":13248, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":13249, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":13250, + "componentType":5126, + "count":24, + "max":[ + 110.00022888183594, + 50.00010681152344, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 7.482406363124028e-05, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":13251, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13252, + "componentType":5126, + "count":50, + "max":[ + 391.7373046875, + 608.220703125, + 142.32080078125 + ], + "min":[ + -391.73828125, + 0, + -142.32177734375 + ], + "type":"VEC3" + }, + { + "bufferView":13253, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":13254, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":13255, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":13256, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13257, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13258, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13259, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13260, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13261, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51416778564453, + 43.589359283447266 + ], + "min":[ + -22.7265625, + -7.62939453125e-06, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":13262, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":13263, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":13264, + "componentType":5126, + "count":592, + "max":[ + 153.41448974609375, + 222.5848846435547, + 137.69430541992188 + ], + "min":[ + -160.6251678466797, + 32.614845275878906, + -149.62600708007812 + ], + "type":"VEC3" + }, + { + "bufferView":13265, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":13266, + "componentType":5126, + "count":72, + "max":[ + 2400.223876953125, + 793.4286499023438, + 1981.32177734375 + ], + "min":[ + -2400.22607421875, + 0, + -1981.32275390625 + ], + "type":"VEC3" + }, + { + "bufferView":13267, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":13268, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":13269, + "componentType":5126, + "count":76, + "max":[ + 278.8669738769531, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8664245605469, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":13270, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":13271, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":13272, + "componentType":5126, + "count":162, + "max":[ + 983.470703125, + 355.5093688964844, + 983.4702758789062 + ], + "min":[ + -983.46875, + 9.1552734375e-05, + -983.4712524414062 + ], + "type":"VEC3" + }, + { + "bufferView":13273, + "componentType":5126, + "count":162, + "type":"VEC3" + }, + { + "bufferView":13274, + "componentType":5126, + "count":162, + "type":"VEC2" + }, + { + "bufferView":13275, + "componentType":5126, + "count":590, + "max":[ + 169.0897216796875, + 204.03817749023438, + 154.66688537597656 + ], + "min":[ + -169.09251403808594, + -0.0001373291015625, + -154.66709899902344 + ], + "type":"VEC3" + }, + { + "bufferView":13276, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":13277, + "componentType":5126, + "count":24, + "max":[ + 22.129398345947266, + 728.916259765625, + 187.00445556640625 + ], + "min":[ + -22.129379272460938, + 0.0001220703125, + -187.00550842285156 + ], + "type":"VEC3" + }, + { + "bufferView":13278, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13279, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13280, + "componentType":5126, + "count":556, + "max":[ + 199.93199157714844, + 206.56509399414062, + 180.30613708496094 + ], + "min":[ + -199.93392944335938, + 1.3956451416015625, + -168.0254669189453 + ], + "type":"VEC3" + }, + { + "bufferView":13281, + "componentType":5126, + "count":556, + "type":"VEC3" + }, + { + "bufferView":13282, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13283, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58544921875 + ], + "min":[ + -46.284423828125, + 0, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":13284, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13285, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13286, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13287, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13288, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13289, + "componentType":5126, + "count":582, + "max":[ + 194.5747833251953, + 124.83911895751953, + 202.73583984375 + ], + "min":[ + -194.57533264160156, + -0.000213623046875, + -202.73593139648438 + ], + "type":"VEC3" + }, + { + "bufferView":13290, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":13291, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13292, + "componentType":5126, + "count":602, + "max":[ + 325.56951904296875, + 506.26312255859375, + 332.9397277832031 + ], + "min":[ + -325.5695495605469, + 1.6454315185546875, + -332.93988037109375 + ], + "type":"VEC3" + }, + { + "bufferView":13293, + "componentType":5126, + "count":602, + "type":"VEC3" + }, + { + "bufferView":13294, + "componentType":5126, + "count":232, + "max":[ + 173.279296875, + 188.23828125, + 169.100341796875 + ], + "min":[ + -173.28369140625, + 0, + -169.101318359375 + ], + "type":"VEC3" + }, + { + "bufferView":13295, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":13296, + "componentType":5126, + "count":232, + "type":"VEC2" + }, + { + "bufferView":13297, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":13298, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13299, + "componentType":5126, + "count":112, + "max":[ + 31.29314422607422, + 15.511116027832031, + 6.5032196044921875 + ], + "min":[ + -31.29315757751465, + 9.202957153320312e-05, + -6.5019683837890625 + ], + "type":"VEC3" + }, + { + "bufferView":13300, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":13301, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":13302, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76666259765625, + 78.586181640625 + ], + "min":[ + -46.2822265625, + 0, + -78.5849609375 + ], + "type":"VEC3" + }, + { + "bufferView":13303, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13304, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13305, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":13306, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13307, + "componentType":5126, + "count":54, + "max":[ + 29.798828125, + 520.125, + 217.041015625 + ], + "min":[ + -29.798828125, + 0, + -217.04150390625 + ], + "type":"VEC3" + }, + { + "bufferView":13308, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":13309, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":13310, + "componentType":5126, + "count":578, + "max":[ + 193.23324584960938, + 232.17510986328125, + 176.68057250976562 + ], + "min":[ + -193.23434448242188, + -6.103515625e-05, + -176.68057250976562 + ], + "type":"VEC3" + }, + { + "bufferView":13311, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":13312, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13313, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51416778564453, + 43.590213775634766 + ], + "min":[ + -22.7265625, + -7.62939453125e-06, + -43.587894439697266 + ], + "type":"VEC3" + }, + { + "bufferView":13314, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":13315, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":13316, + "componentType":5126, + "count":578, + "max":[ + 190.123779296875, + 196.82052612304688, + 171.81027221679688 + ], + "min":[ + -190.12181091308594, + 1.3250274658203125, + -159.5295867919922 + ], + "type":"VEC3" + }, + { + "bufferView":13317, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":13318, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13319, + "componentType":5126, + "count":224, + "max":[ + 118.72061157226562, + 230.17283630371094, + 115.08639526367188 + ], + "min":[ + -118.72100067138672, + -3.814697265625e-05, + -115.08649444580078 + ], + "type":"VEC3" + }, + { + "bufferView":13320, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":13321, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13322, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13323, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13324, + "componentType":5126, + "count":92, + "max":[ + 30.450439453125, + 77.6383056640625, + 22.05078125 + ], + "min":[ + -30.4501953125, + 0.0010986328125, + -22.05126953125 + ], + "type":"VEC3" + }, + { + "bufferView":13325, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":13326, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":13327, + "componentType":5123, + "count":204, + "type":"SCALAR" + }, + { + "bufferView":13328, + "componentType":5126, + "count":96, + "max":[ + 212.81607055664062, + 929.9837646484375, + 1136.5745849609375 + ], + "min":[ + -212.81607055664062, + 0.000293731689453125, + -1136.5743408203125 + ], + "type":"VEC3" + }, + { + "bufferView":13329, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":13330, + "componentType":5126, + "count":576, + "max":[ + 157.88787841796875, + 32.825321197509766, + 157.8892822265625 + ], + "min":[ + -157.89076232910156, + 1.52587890625e-05, + -157.8893585205078 + ], + "type":"VEC3" + }, + { + "bufferView":13331, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":13332, + "componentType":5126, + "count":56, + "max":[ + 115.15283203125, + 511.947509765625, + 147.156494140625 + ], + "min":[ + -115.15478515625, + 0, + -147.155517578125 + ], + "type":"VEC3" + }, + { + "bufferView":13333, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":13334, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":13335, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":13336, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13337, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13338, + "componentType":5126, + "count":88, + "max":[ + 58.8118896484375, + 124.20556640625, + 895.806640625 + ], + "min":[ + -58.8109130859375, + 0, + -895.806640625 + ], + "type":"VEC3" + }, + { + "bufferView":13339, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":13340, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":13341, + "componentType":5126, + "count":592, + "max":[ + 167.6999969482422, + 173.38357543945312, + 146.25083923339844 + ], + "min":[ + -167.6990203857422, + 4.57763671875e-05, + -146.2508544921875 + ], + "type":"VEC3" + }, + { + "bufferView":13342, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":13343, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51410675048828, + 43.589359283447266 + ], + "min":[ + -22.7275390625, + -7.62939453125e-06, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":13344, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":13345, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":13346, + "componentType":5126, + "count":228, + "max":[ + 146.30172729492188, + 324.15997314453125, + 131.37319946289062 + ], + "min":[ + -147.06332397460938, + 43.131927490234375, + -130.98770141601562 + ], + "type":"VEC3" + }, + { + "bufferView":13347, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":13348, + "componentType":5126, + "count":586, + "max":[ + 166.40670776367188, + 200.91189575195312, + 152.2213134765625 + ], + "min":[ + -166.41055297851562, + -0.0001678466796875, + -152.2207489013672 + ], + "type":"VEC3" + }, + { + "bufferView":13349, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":13350, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13351, + "componentType":5126, + "count":597, + "max":[ + 144.95013427734375, + 100.0341796875, + 150.8820343017578 + ], + "min":[ + -144.94680786132812, + 0.0001678466796875, + -150.882080078125 + ], + "type":"VEC3" + }, + { + "bufferView":13352, + "componentType":5126, + "count":597, + "type":"VEC3" + }, + { + "bufferView":13353, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13354, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13355, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13356, + "componentType":5126, + "count":574, + "max":[ + 159.28961181640625, + 32.8253173828125, + 159.2907257080078 + ], + "min":[ + -159.29193115234375, + 1.52587890625e-05, + -159.2908477783203 + ], + "type":"VEC3" + }, + { + "bufferView":13357, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":13358, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13359, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13360, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13361, + "componentType":5126, + "count":528, + "max":[ + 722.720703125, + 2637.397705078125, + 19.80198860168457 + ], + "min":[ + -722.724609375, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":13362, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":13363, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":13364, + "componentType":5126, + "count":228, + "max":[ + 105.79638671875, + 2059.5048828125, + 105.79833984375 + ], + "min":[ + -105.798828125, + 0, + -105.801025390625 + ], + "type":"VEC3" + }, + { + "bufferView":13365, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":13366, + "componentType":5126, + "count":228, + "type":"VEC2" + }, + { + "bufferView":13367, + "componentType":5126, + "count":24, + "max":[ + 1464.080078125, + 84.5, + 4828.68359375 + ], + "min":[ + -1464.080078125, + 0, + -4828.68359375 + ], + "type":"VEC3" + }, + { + "bufferView":13368, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13369, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13370, + "componentType":5126, + "count":463, + "max":[ + 186.856201171875, + 259.27752685546875, + 182.409423828125 + ], + "min":[ + -186.8560791015625, + 7.62939453125e-06, + -182.409912109375 + ], + "type":"VEC3" + }, + { + "bufferView":13371, + "componentType":5126, + "count":463, + "type":"VEC3" + }, + { + "bufferView":13372, + "componentType":5126, + "count":463, + "type":"VEC2" + }, + { + "bufferView":13373, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.5859375 + ], + "min":[ + -46.2841796875, + 0, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":13374, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13375, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13376, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.51416015625, + 22.7293758392334 + ], + "min":[ + -43.58984375, + -3.814697265625e-06, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":13377, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":13378, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":13379, + "componentType":5126, + "count":84, + "max":[ + 1104.49609375, + 2852.560791015625, + 29.2441463470459 + ], + "min":[ + -1104.498046875, + 0, + -29.24298667907715 + ], + "type":"VEC3" + }, + { + "bufferView":13380, + "componentType":5126, + "count":84, + "type":"VEC3" + }, + { + "bufferView":13381, + "componentType":5126, + "count":84, + "type":"VEC2" + }, + { + "bufferView":13382, + "componentType":5126, + "count":111, + "max":[ + 3865.394287109375, + 81.21484375, + 40.60791015625 + ], + "min":[ + -3865.39306640625, + 0, + -40.607421875 + ], + "type":"VEC3" + }, + { + "bufferView":13383, + "componentType":5126, + "count":111, + "type":"VEC3" + }, + { + "bufferView":13384, + "componentType":5126, + "count":111, + "type":"VEC2" + }, + { + "bufferView":13385, + "componentType":5126, + "count":345, + "max":[ + 170.435546875, + 188.558349609375, + 176.205078125 + ], + "min":[ + -170.43359375, + 45.296630859375, + -176.20263671875 + ], + "type":"VEC3" + }, + { + "bufferView":13386, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":13387, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":13388, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":13389, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92926025390625, + 384.1394348144531 + ], + "min":[ + -245.2333984375, + 4.57763671875e-05, + -384.1411437988281 + ], + "type":"VEC3" + }, + { + "bufferView":13390, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":13391, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":13392, + "componentType":5126, + "count":92, + "max":[ + 824.2412109375, + 141.0703125, + 69.5703125 + ], + "min":[ + -824.24072265625, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":13393, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":13394, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":13395, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13396, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13397, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13398, + "componentType":5126, + "count":584, + "max":[ + 189.2113494873047, + 227.4858856201172, + 173.01162719726562 + ], + "min":[ + -189.20864868164062, + 4.57763671875e-05, + -173.01150512695312 + ], + "type":"VEC3" + }, + { + "bufferView":13399, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":13400, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13401, + "componentType":5126, + "count":582, + "max":[ + 202.73629760742188, + 207.9334716796875, + 176.59323120117188 + ], + "min":[ + -202.73544311523438, + -6.103515625e-05, + -176.5930938720703 + ], + "type":"VEC3" + }, + { + "bufferView":13402, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":13403, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13404, + "componentType":5126, + "count":575, + "max":[ + 187.448974609375, + 259.44793701171875, + 174.08535766601562 + ], + "min":[ + -180.2410430908203, + 38.21495056152344, + -162.15408325195312 + ], + "type":"VEC3" + }, + { + "bufferView":13405, + "componentType":5126, + "count":575, + "type":"VEC3" + }, + { + "bufferView":13406, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13407, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":13408, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13409, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13410, + "componentType":5126, + "count":810, + "max":[ + 29600, + 34.50028991699219, + 24832 + ], + "min":[ + -29600, + 0, + -24832 + ], + "type":"VEC3" + }, + { + "bufferView":13411, + "componentType":5126, + "count":810, + "type":"VEC3" + }, + { + "bufferView":13412, + "componentType":5126, + "count":810, + "type":"VEC2" + }, + { + "bufferView":13413, + "componentType":5123, + "count":2172, + "type":"SCALAR" + }, + { + "bufferView":13414, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51409912109375, + 22.7294979095459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":13415, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":13416, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":13417, + "componentType":5126, + "count":559, + "max":[ + 223.19976806640625, + 577.9196166992188, + 223.60577392578125 + ], + "min":[ + -223.19972229003906, + 131.63946533203125, + -223.6057586669922 + ], + "type":"VEC3" + }, + { + "bufferView":13418, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":13419, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":13420, + "componentType":5126, + "count":143, + "max":[ + 28.8017578125, + 913.683349609375, + 27.66552734375 + ], + "min":[ + -28.80126953125, + 0, + -27.6650390625 + ], + "type":"VEC3" + }, + { + "bufferView":13421, + "componentType":5126, + "count":143, + "type":"VEC3" + }, + { + "bufferView":13422, + "componentType":5126, + "count":143, + "type":"VEC2" + }, + { + "bufferView":13423, + "componentType":5126, + "count":600, + "max":[ + 154.7560272216797, + 224.42843627929688, + 138.917236328125 + ], + "min":[ + -161.966064453125, + 32.89521026611328, + -150.8489990234375 + ], + "type":"VEC3" + }, + { + "bufferView":13424, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":13425, + "componentType":5126, + "count":572, + "max":[ + 197.13157653808594, + 203.781005859375, + 165.59774780273438 + ], + "min":[ + -197.12852478027344, + 1.375518798828125, + -177.87911987304688 + ], + "type":"VEC3" + }, + { + "bufferView":13426, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":13427, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13428, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13429, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13430, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13431, + "componentType":5126, + "count":820, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45752716064453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":13432, + "componentType":5126, + "count":820, + "type":"VEC3" + }, + { + "bufferView":13433, + "componentType":5126, + "count":820, + "type":"VEC2" + }, + { + "bufferView":13434, + "componentType":5126, + "count":226, + "max":[ + 146.6806182861328, + 281.0281982421875, + 131.18035888671875 + ], + "min":[ + -146.68435668945312, + 3.0517578125e-05, + -131.18060302734375 + ], + "type":"VEC3" + }, + { + "bufferView":13435, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":13436, + "componentType":5126, + "count":336, + "max":[ + 131.32907104492188, + 111.1650390625, + 131.32908630371094 + ], + "min":[ + -131.32864379882812, + 0, + -131.32861328125 + ], + "type":"VEC3" + }, + { + "bufferView":13437, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":13438, + "componentType":5126, + "count":24, + "max":[ + 110.00007629394531, + 50, + 481.6465148925781 + ], + "min":[ + -110.00010681152344, + 0, + -481.6465148925781 + ], + "type":"VEC3" + }, + { + "bufferView":13439, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13440, + "componentType":5126, + "count":590, + "max":[ + 180.31166076660156, + 187.07565307617188, + 163.31439208984375 + ], + "min":[ + -180.3135223388672, + 1.2541046142578125, + -151.03375244140625 + ], + "type":"VEC3" + }, + { + "bufferView":13441, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":13442, + "componentType":5126, + "count":621, + "max":[ + 144.9501190185547, + 175.90155029296875, + 132.65357971191406 + ], + "min":[ + -144.9468231201172, + 0.0001678466796875, + -132.65316772460938 + ], + "type":"VEC3" + }, + { + "bufferView":13443, + "componentType":5126, + "count":621, + "type":"VEC3" + }, + { + "bufferView":13444, + "componentType":5126, + "count":24, + "max":[ + 584.662109375, + 50.00001525878906, + 110.00007629394531 + ], + "min":[ + -584.666015625, + -1.660953785176389e-05, + -110.00010681152344 + ], + "type":"VEC3" + }, + { + "bufferView":13445, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13446, + "componentType":5126, + "count":72, + "max":[ + 866.67041015625, + 1492.539794921875, + 22.500154495239258 + ], + "min":[ + -866.6709594726562, + 0, + -22.500308990478516 + ], + "type":"VEC3" + }, + { + "bufferView":13447, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":13448, + "componentType":5126, + "count":14014, + "max":[ + 1678.4130859375, + 5149.5478515625, + 1341.006591796875 + ], + "min":[ + -1678.4130859375, + 0.000244140625, + -1341.003662109375 + ], + "type":"VEC3" + }, + { + "bufferView":13449, + "componentType":5126, + "count":14014, + "type":"VEC3" + }, + { + "bufferView":13450, + "componentType":5126, + "count":14014, + "type":"VEC2" + }, + { + "bufferView":13451, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":13452, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13453, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13454, + "componentType":5126, + "count":24, + "max":[ + 83.760986328125, + 276.109375, + 88.3438720703125 + ], + "min":[ + -83.76171875, + 0, + -88.34375 + ], + "type":"VEC3" + }, + { + "bufferView":13455, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13456, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13457, + "componentType":5126, + "count":24, + "max":[ + 159.66650390625, + 25.8896484375, + 703.125 + ], + "min":[ + -159.6669921875, + 0, + -703.12451171875 + ], + "type":"VEC3" + }, + { + "bufferView":13458, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13459, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13460, + "componentType":5126, + "count":152, + "max":[ + 586.3173828125, + 156.6259765625, + 69.5703125 + ], + "min":[ + -586.31884765625, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":13461, + "componentType":5126, + "count":152, + "type":"VEC3" + }, + { + "bufferView":13462, + "componentType":5126, + "count":152, + "type":"VEC2" + }, + { + "bufferView":13463, + "componentType":5126, + "count":8252, + "max":[ + 178.826171875, + 1010.5029296875, + 103.7867431640625 + ], + "min":[ + -178.8271484375, + 12.336669921875, + -103.786865234375 + ], + "type":"VEC3" + }, + { + "bufferView":13464, + "componentType":5126, + "count":8252, + "type":"VEC3" + }, + { + "bufferView":13465, + "componentType":5126, + "count":8252, + "type":"VEC2" + }, + { + "bufferView":13466, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":13467, + "componentType":5126, + "count":596, + "max":[ + 162.38604736328125, + 196.222412109375, + 148.55226135253906 + ], + "min":[ + -162.3836212158203, + -0.000213623046875, + -148.55191040039062 + ], + "type":"VEC3" + }, + { + "bufferView":13468, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":13469, + "componentType":5126, + "count":24, + "max":[ + 992, + 103, + 24832 + ], + "min":[ + -992, + 0, + -24832 + ], + "type":"VEC3" + }, + { + "bufferView":13470, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13471, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13472, + "componentType":5126, + "count":648, + "max":[ + 615.01123046875, + 2510.92529296875, + 347.26611328125 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.265625 + ], + "type":"VEC3" + }, + { + "bufferView":13473, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":13474, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":13475, + "componentType":5126, + "count":587, + "max":[ + 157.43902587890625, + 228.1142578125, + 141.363037109375 + ], + "min":[ + -164.6481170654297, + 33.45482635498047, + -153.29505920410156 + ], + "type":"VEC3" + }, + { + "bufferView":13476, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":13477, + "componentType":5126, + "count":150, + "max":[ + 69.5673828125, + 156.62646484375, + 586.3173828125 + ], + "min":[ + -69.5732421875, + 0, + -586.31884765625 + ], + "type":"VEC3" + }, + { + "bufferView":13478, + "componentType":5126, + "count":150, + "type":"VEC3" + }, + { + "bufferView":13479, + "componentType":5126, + "count":150, + "type":"VEC2" + }, + { + "bufferView":13480, + "componentType":5126, + "count":580, + "max":[ + 189.20867919921875, + 121.63380432128906, + 197.12991333007812 + ], + "min":[ + -189.2113494873047, + -9.1552734375e-05, + -197.13023376464844 + ], + "type":"VEC3" + }, + { + "bufferView":13481, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":13482, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13483, + "componentType":5126, + "count":586, + "max":[ + 174.70864868164062, + 181.50741577148438, + 158.45947265625 + ], + "min":[ + -174.70492553710938, + 1.2139205932617188, + -146.17913818359375 + ], + "type":"VEC3" + }, + { + "bufferView":13484, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":13485, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13486, + "componentType":5126, + "count":112, + "max":[ + 31.293148040771484, + 15.51118278503418, + 6.5037689208984375 + ], + "min":[ + -31.29313850402832, + 7.677078247070312e-05, + -6.5018310546875 + ], + "type":"VEC3" + }, + { + "bufferView":13487, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":13488, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":13489, + "componentType":5126, + "count":1048, + "max":[ + 125.224609375, + 76.1982421875, + 90.109130859375 + ], + "min":[ + -125.2275390625, + -0.0009765625, + -90.1090087890625 + ], + "type":"VEC3" + }, + { + "bufferView":13490, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":13491, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":13492, + "componentType":5126, + "count":648, + "max":[ + 615.0107421875, + 2510.925048828125, + 347.26611328125 + ], + "min":[ + -615.01025390625, + 0, + -347.26611328125 + ], + "type":"VEC3" + }, + { + "bufferView":13493, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":13494, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":13495, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13496, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13497, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13498, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13499, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13500, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13501, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92926025390625, + 384.58251953125 + ], + "min":[ + -244.4677734375, + 0, + -384.5790710449219 + ], + "type":"VEC3" + }, + { + "bufferView":13502, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":13503, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":13504, + "componentType":5126, + "count":559, + "max":[ + 19.802734375, + 2637.3974609375, + 722.721435546875 + ], + "min":[ + -19.802734375, + 0, + -722.721923828125 + ], + "type":"VEC3" + }, + { + "bufferView":13505, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":13506, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":13507, + "componentType":5126, + "count":581, + "max":[ + 173.1143035888672, + 208.72775268554688, + 158.3359832763672 + ], + "min":[ + -173.11553955078125, + -0.0001220703125, + -158.33587646484375 + ], + "type":"VEC3" + }, + { + "bufferView":13508, + "componentType":5126, + "count":581, + "type":"VEC3" + }, + { + "bufferView":13509, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":13510, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":13511, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":13512, + "componentType":5126, + "count":72, + "max":[ + 866.67041015625, + 1492.539794921875, + 22.500154495239258 + ], + "min":[ + -866.6709594726562, + 0, + -22.500349044799805 + ], + "type":"VEC3" + }, + { + "bufferView":13513, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":13514, + "componentType":5126, + "count":204, + "max":[ + 33.4022216796875, + 133.60888671875, + 66.80517578125 + ], + "min":[ + -33.4022216796875, + 0, + -66.80322265625 + ], + "type":"VEC3" + }, + { + "bufferView":13515, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":13516, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":13517, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":13518, + "componentType":5126, + "count":559, + "max":[ + 223.19972229003906, + 446.3994140625, + 224.27151489257812 + ], + "min":[ + -223.19969177246094, + 1.52587890625e-05, + -224.27151489257812 + ], + "type":"VEC3" + }, + { + "bufferView":13519, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":13520, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":13521, + "componentType":5126, + "count":2281, + "max":[ + 65.60057067871094, + 185.22500610351562, + 5.788394927978516 + ], + "min":[ + -65.60050964355469, + -3.814697265625e-05, + -5.788308143615723 + ], + "type":"VEC3" + }, + { + "bufferView":13522, + "componentType":5126, + "count":2281, + "type":"VEC3" + }, + { + "bufferView":13523, + "componentType":5126, + "count":2281, + "type":"VEC2" + }, + { + "bufferView":13524, + "componentType":5123, + "count":3930, + "type":"SCALAR" + }, + { + "bufferView":13525, + "componentType":5126, + "count":574, + "max":[ + 162.0943145751953, + 32.8253059387207, + 162.09364318847656 + ], + "min":[ + -162.09307861328125, + -7.2479248046875e-05, + -162.09371948242188 + ], + "type":"VEC3" + }, + { + "bufferView":13526, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":13527, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13528, + "componentType":5126, + "count":807, + "max":[ + 4.1318359375, + 90.58740997314453, + 34.45752716064453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":13529, + "componentType":5126, + "count":807, + "type":"VEC3" + }, + { + "bufferView":13530, + "componentType":5126, + "count":807, + "type":"VEC2" + }, + { + "bufferView":13531, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":13532, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13533, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13534, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13535, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + 0.000118255615234375, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":13536, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":13537, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":13538, + "componentType":5126, + "count":559, + "max":[ + 224.27151489257812, + 448.5429992675781, + 224.27151489257812 + ], + "min":[ + -224.27151489257812, + -3.0517578125e-05, + -224.27151489257812 + ], + "type":"VEC3" + }, + { + "bufferView":13539, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":13540, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":13541, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13542, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13543, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13544, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":13545, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13546, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13547, + "componentType":5126, + "count":578, + "max":[ + 184.51705932617188, + 189.96762084960938, + 160.81517028808594 + ], + "min":[ + -184.51686096191406, + 5.340576171875e-05, + -160.81509399414062 + ], + "type":"VEC3" + }, + { + "bufferView":13548, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":13549, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13550, + "componentType":5126, + "count":352, + "max":[ + 170.90625, + 157.00439453125, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":13551, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":13552, + "componentType":5126, + "count":352, + "type":"VEC2" + }, + { + "bufferView":13553, + "componentType":5126, + "count":24, + "max":[ + 253.74276733398438, + 50, + 703.126953125 + ], + "min":[ + -253.74319458007812, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":13554, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13555, + "componentType":5126, + "count":682, + "max":[ + 130.72265625, + 2974.83349609375, + 134.316162109375 + ], + "min":[ + -130.72265625, + 0, + -134.31568908691406 + ], + "type":"VEC3" + }, + { + "bufferView":13556, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":13557, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":13558, + "componentType":5126, + "count":1660, + "max":[ + 433.12109375, + 367.92919921875, + 90.00634765625 + ], + "min":[ + -433.119140625, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":13559, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":13560, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":13561, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13562, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13563, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13564, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51416778564453, + 43.587894439697266 + ], + "min":[ + -22.7275390625, + -7.62939453125e-06, + -43.590335845947266 + ], + "type":"VEC3" + }, + { + "bufferView":13565, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":13566, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":13567, + "componentType":5126, + "count":342, + "max":[ + 115.3511962890625, + 230.70248413085938, + 13.560577392578125 + ], + "min":[ + -115.35124969482422, + -3.0517578125e-05, + -13.560890197753906 + ], + "type":"VEC3" + }, + { + "bufferView":13568, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":13569, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13570, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13571, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13572, + "componentType":5126, + "count":48, + "max":[ + 127.44287109375, + 625.6328125, + 391.736328125 + ], + "min":[ + -127.4404296875, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":13573, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":13574, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":13575, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13576, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13577, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13578, + "componentType":5126, + "count":147, + "max":[ + 28.80126953125, + 913.683837890625, + 27.66552734375 + ], + "min":[ + -28.80126953125, + 0, + -27.66552734375 + ], + "type":"VEC3" + }, + { + "bufferView":13579, + "componentType":5126, + "count":147, + "type":"VEC3" + }, + { + "bufferView":13580, + "componentType":5126, + "count":147, + "type":"VEC2" + }, + { + "bufferView":13581, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":13582, + "componentType":5126, + "count":573, + "max":[ + 177.13888549804688, + 213.41726684570312, + 162.00450134277344 + ], + "min":[ + -177.13851928710938, + -7.62939453125e-05, + -162.0052032470703 + ], + "type":"VEC3" + }, + { + "bufferView":13583, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":13584, + "componentType":5126, + "count":48, + "max":[ + 127.44287109375, + 625.6328125, + 391.73681640625 + ], + "min":[ + -127.4443359375, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":13585, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":13586, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":13587, + "componentType":5126, + "count":335, + "max":[ + 170.90625, + 157.00244140625, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.2890625, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":13588, + "componentType":5126, + "count":335, + "type":"VEC3" + }, + { + "bufferView":13589, + "componentType":5126, + "count":335, + "type":"VEC2" + }, + { + "bufferView":13590, + "componentType":5126, + "count":484, + "max":[ + 12.50005054473877, + 265.1298828125, + 80.27381134033203 + ], + "min":[ + -12.500011444091797, + 7.82012939453125e-05, + -80.2738265991211 + ], + "type":"VEC3" + }, + { + "bufferView":13591, + "componentType":5126, + "count":484, + "type":"VEC3" + }, + { + "bufferView":13592, + "componentType":5123, + "count":1392, + "type":"SCALAR" + }, + { + "bufferView":13593, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13594, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13595, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13596, + "componentType":5126, + "count":264, + "max":[ + 175.05322265625, + 196.21435546875, + 169.1068115234375 + ], + "min":[ + -175.0537109375, + 0, + -169.10693359375 + ], + "type":"VEC3" + }, + { + "bufferView":13597, + "componentType":5126, + "count":264, + "type":"VEC3" + }, + { + "bufferView":13598, + "componentType":5126, + "count":264, + "type":"VEC2" + }, + { + "bufferView":13599, + "componentType":5126, + "count":239, + "max":[ + 169.070556640625, + 185.2353515625, + 172.595703125 + ], + "min":[ + -169.070556640625, + -0.00048828125, + -172.59814453125 + ], + "type":"VEC3" + }, + { + "bufferView":13600, + "componentType":5126, + "count":239, + "type":"VEC3" + }, + { + "bufferView":13601, + "componentType":5126, + "count":239, + "type":"VEC2" + }, + { + "bufferView":13602, + "componentType":5126, + "count":590, + "max":[ + 207.89772033691406, + 213.02415466308594, + 181.06405639648438 + ], + "min":[ + -207.89891052246094, + -0.0001220703125, + -181.0638885498047 + ], + "type":"VEC3" + }, + { + "bufferView":13603, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":13604, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13605, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51416778564453, + 43.590824127197266 + ], + "min":[ + -22.7275390625, + -7.62939453125e-06, + -43.587406158447266 + ], + "type":"VEC3" + }, + { + "bufferView":13606, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":13607, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":13608, + "componentType":5126, + "count":84, + "max":[ + 1104.49462890625, + 2852.559326171875, + 29.245634078979492 + ], + "min":[ + -1104.49462890625, + 0, + -29.244178771972656 + ], + "type":"VEC3" + }, + { + "bufferView":13609, + "componentType":5126, + "count":84, + "type":"VEC3" + }, + { + "bufferView":13610, + "componentType":5126, + "count":84, + "type":"VEC2" + }, + { + "bufferView":13611, + "componentType":5126, + "count":24, + "max":[ + 110.00022888183594, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534164175624028, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":13612, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13613, + "componentType":5126, + "count":46, + "max":[ + 366.15283203125, + 658.67578125, + 161.97900390625 + ], + "min":[ + -366.15234375, + 0, + -161.98095703125 + ], + "type":"VEC3" + }, + { + "bufferView":13614, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":13615, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":13616, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13617, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13618, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13619, + "componentType":5126, + "count":583, + "max":[ + 169.50885009765625, + 244.70289611816406, + 152.36952209472656 + ], + "min":[ + -176.7209930419922, + 35.97492980957031, + -164.30223083496094 + ], + "type":"VEC3" + }, + { + "bufferView":13620, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":13621, + "componentType":5126, + "count":76, + "max":[ + 279.1028137207031, + 3543.081787109375, + 278.8695983886719 + ], + "min":[ + -279.1002197265625, + 0, + -278.8675842285156 + ], + "type":"VEC3" + }, + { + "bufferView":13622, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":13623, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":13624, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51428985595703, + 43.589359283447266 + ], + "min":[ + -22.7265625, + 0.00011444091796875, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":13625, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":13626, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":13627, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7294979095459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":13628, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":13629, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":13630, + "componentType":5126, + "count":24, + "max":[ + 110.00010681152344, + 50, + 584.662109375 + ], + "min":[ + -110.00007629394531, + 0, + -584.666015625 + ], + "type":"VEC3" + }, + { + "bufferView":13631, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13632, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13633, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13634, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13635, + "componentType":5126, + "count":24, + "max":[ + 110.00022888183594, + 50.00010681152344, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 7.482406363124028e-05, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":13636, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13637, + "componentType":5126, + "count":166, + "max":[ + 769.70751953125, + 113.19482421875, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.597412109375 + ], + "type":"VEC3" + }, + { + "bufferView":13638, + "componentType":5126, + "count":166, + "type":"VEC3" + }, + { + "bufferView":13639, + "componentType":5126, + "count":166, + "type":"VEC2" + }, + { + "bufferView":13640, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":13641, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":13642, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13643, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13644, + "componentType":5126, + "count":230, + "max":[ + 91.49446105957031, + 2020.37548828125, + 646.193115234375 + ], + "min":[ + -91.49473571777344, + 6.103515625e-05, + -589.9326171875 + ], + "type":"VEC3" + }, + { + "bufferView":13645, + "componentType":5126, + "count":230, + "type":"VEC3" + }, + { + "bufferView":13646, + "componentType":5126, + "count":4, + "max":[ + 0, + 2586.479248046875, + 698.884521484375 + ], + "min":[ + 0, + 0, + -698.885009765625 + ], + "type":"VEC3" + }, + { + "bufferView":13647, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13648, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13649, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":13650, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13651, + "componentType":5126, + "count":152, + "max":[ + 586.3173828125, + 156.6259765625, + 69.56982421875 + ], + "min":[ + -586.31884765625, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":13652, + "componentType":5126, + "count":152, + "type":"VEC3" + }, + { + "bufferView":13653, + "componentType":5126, + "count":152, + "type":"VEC2" + }, + { + "bufferView":13654, + "componentType":5126, + "count":195, + "max":[ + 13.25390625, + 75.7955093383789, + 25.5074462890625 + ], + "min":[ + -13.24951171875, + 1.4826422557234764e-05, + -25.4969482421875 + ], + "type":"VEC3" + }, + { + "bufferView":13655, + "componentType":5126, + "count":195, + "type":"VEC3" + }, + { + "bufferView":13656, + "componentType":5126, + "count":195, + "type":"VEC2" + }, + { + "bufferView":13657, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":13658, + "componentType":5126, + "count":582, + "max":[ + 178.4804229736328, + 116.01481628417969, + 185.91830444335938 + ], + "min":[ + -178.47952270507812, + 0.0002288818359375, + -185.9185333251953 + ], + "type":"VEC3" + }, + { + "bufferView":13659, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":13660, + "componentType":5126, + "count":595, + "max":[ + 174.45584106445312, + 114.09710693359375, + 181.7139434814453 + ], + "min":[ + -174.45654296875, + 0.00016021728515625, + -181.71420288085938 + ], + "type":"VEC3" + }, + { + "bufferView":13661, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":13662, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":13663, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13664, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13665, + "componentType":5126, + "count":600, + "max":[ + 152.2848663330078, + 32.825313568115234, + 152.28347778320312 + ], + "min":[ + -152.2821502685547, + 0.00012969970703125, + -152.28353881835938 + ], + "type":"VEC3" + }, + { + "bufferView":13666, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":13667, + "componentType":5126, + "count":576, + "max":[ + 191.89173889160156, + 230.61215209960938, + 175.45761108398438 + ], + "min":[ + -191.89334106445312, + 0.0001220703125, + -175.45761108398438 + ], + "type":"VEC3" + }, + { + "bufferView":13668, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":13669, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13670, + "componentType":5126, + "count":882, + "max":[ + 130.72265625, + 2974.83349609375, + 134.317138671875 + ], + "min":[ + -130.72265625, + 0, + -134.31373596191406 + ], + "type":"VEC3" + }, + { + "bufferView":13671, + "componentType":5126, + "count":882, + "type":"VEC3" + }, + { + "bufferView":13672, + "componentType":5126, + "count":882, + "type":"VEC2" + }, + { + "bufferView":13673, + "componentType":5123, + "count":1308, + "type":"SCALAR" + }, + { + "bufferView":13674, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":13675, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13676, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13677, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13678, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13679, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13680, + "componentType":5126, + "count":12, + "max":[ + 360.8974609375, + 341.145263671875, + 8.34765625 + ], + "min":[ + -360.897216796875, + 0.00103759765625, + -8.34375 + ], + "type":"VEC3" + }, + { + "bufferView":13681, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":13682, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":13683, + "componentType":5123, + "count":18, + "type":"SCALAR" + }, + { + "bufferView":13684, + "componentType":5126, + "count":112, + "max":[ + 1022.581298828125, + 429.54217529296875, + 214.7710723876953 + ], + "min":[ + -1022.5777587890625, + -3.0517578125e-05, + -214.77090454101562 + ], + "type":"VEC3" + }, + { + "bufferView":13685, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":13686, + "componentType":5126, + "count":588, + "max":[ + 156.4861602783203, + 32.8253173828125, + 156.4878387451172 + ], + "min":[ + -156.4895782470703, + 3.4332275390625e-05, + -156.48789978027344 + ], + "type":"VEC3" + }, + { + "bufferView":13687, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":13688, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":13689, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13690, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13691, + "componentType":5126, + "count":24, + "max":[ + 189.2314453125, + 33.60009765625, + 486.48974609375 + ], + "min":[ + -189.2314453125, + -0.00048828125, + -486.489990234375 + ], + "type":"VEC3" + }, + { + "bufferView":13692, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13693, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13694, + "componentType":5126, + "count":24, + "max":[ + 554.65234375, + 38.30810546875, + 215.74468994140625 + ], + "min":[ + -554.6513671875, + 0, + -215.74362182617188 + ], + "type":"VEC3" + }, + { + "bufferView":13695, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13696, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13697, + "componentType":5126, + "count":217, + "max":[ + 33.4022216796875, + 133.60888671875, + 66.80322265625 + ], + "min":[ + -33.4022216796875, + 0, + -66.80517578125 + ], + "type":"VEC3" + }, + { + "bufferView":13698, + "componentType":5126, + "count":217, + "type":"VEC3" + }, + { + "bufferView":13699, + "componentType":5126, + "count":217, + "type":"VEC2" + }, + { + "bufferView":13700, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":13701, + "componentType":5126, + "count":568, + "max":[ + 211.34117126464844, + 217.89578247070312, + 190.1847381591797 + ], + "min":[ + -211.33865356445312, + 1.477752685546875, + -177.90426635742188 + ], + "type":"VEC3" + }, + { + "bufferView":13702, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":13703, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51416778564453, + 43.589359283447266 + ], + "min":[ + -22.7275390625, + -7.62939453125e-06, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":13704, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":13705, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":13706, + "componentType":5126, + "count":559, + "max":[ + 223.19976806640625, + 577.9196166992188, + 223.60577392578125 + ], + "min":[ + -223.19972229003906, + 131.63946533203125, + -223.6057586669922 + ], + "type":"VEC3" + }, + { + "bufferView":13707, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":13708, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":13709, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13710, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13711, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13712, + "componentType":5126, + "count":528, + "max":[ + 722.720703125, + 2637.3974609375, + 19.80198860168457 + ], + "min":[ + -722.72265625, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":13713, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":13714, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":13715, + "componentType":5126, + "count":50, + "max":[ + 142.31884765625, + 608.220703125, + 391.7376403808594 + ], + "min":[ + -142.32373046875, + 0, + -391.7374572753906 + ], + "type":"VEC3" + }, + { + "bufferView":13716, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":13717, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":13718, + "componentType":5126, + "count":177, + "max":[ + 769.70947265625, + 113.194580078125, + 56.59765625 + ], + "min":[ + -769.7080078125, + 0, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":13719, + "componentType":5126, + "count":177, + "type":"VEC3" + }, + { + "bufferView":13720, + "componentType":5126, + "count":177, + "type":"VEC2" + }, + { + "bufferView":13721, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.51416015625, + 22.7293758392334 + ], + "min":[ + -43.58984375, + 0.000118255615234375, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":13722, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":13723, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":13724, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13725, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13726, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13727, + "componentType":5126, + "count":334, + "max":[ + 10.677734375, + 283.877197265625, + 60.75075912475586 + ], + "min":[ + -10.6796875, + -1.52587890625e-05, + -60.74929428100586 + ], + "type":"VEC3" + }, + { + "bufferView":13728, + "componentType":5126, + "count":334, + "type":"VEC3" + }, + { + "bufferView":13729, + "componentType":5126, + "count":334, + "type":"VEC2" + }, + { + "bufferView":13730, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":13731, + "componentType":5126, + "count":71, + "max":[ + 3.7875030040740967, + 13.413309097290039, + 4.245893955230713 + ], + "min":[ + -3.7875640392303467, + 0.000110626220703125, + -4.245933532714844 + ], + "type":"VEC3" + }, + { + "bufferView":13732, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":13733, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":13734, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":13735, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13736, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13737, + "componentType":5126, + "count":7991, + "max":[ + 496.1484375, + 429.9638671875, + 103.787109375 + ], + "min":[ + -496.148681640625, + 0, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":13738, + "componentType":5126, + "count":7991, + "type":"VEC3" + }, + { + "bufferView":13739, + "componentType":5126, + "count":7991, + "type":"VEC2" + }, + { + "bufferView":13740, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92926025390625, + 384.5793762207031 + ], + "min":[ + -244.4677734375, + 4.57763671875e-05, + -384.5820617675781 + ], + "type":"VEC3" + }, + { + "bufferView":13741, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":13742, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":13743, + "componentType":5126, + "count":576, + "max":[ + 156.4861602783203, + 162.32781982421875, + 136.5413055419922 + ], + "min":[ + -156.4895782470703, + 0.00017547607421875, + -136.5412139892578 + ], + "type":"VEC3" + }, + { + "bufferView":13744, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":13745, + "componentType":5126, + "count":574, + "max":[ + 166.2982635498047, + 172.00177001953125, + 145.03713989257812 + ], + "min":[ + -166.29783630371094, + 0.000152587890625, + -145.0371551513672 + ], + "type":"VEC3" + }, + { + "bufferView":13746, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":13747, + "componentType":5126, + "count":56, + "max":[ + 238.478515625, + 483.897705078125, + 30.001953125 + ], + "min":[ + -238.4794921875, + 0, + -29.9990234375 + ], + "type":"VEC3" + }, + { + "bufferView":13748, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":13749, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":13750, + "componentType":5126, + "count":583, + "max":[ + 150.8831329345703, + 157.842041015625, + 137.82684326171875 + ], + "min":[ + -150.88096618652344, + 1.0424041748046875, + -125.54612731933594 + ], + "type":"VEC3" + }, + { + "bufferView":13751, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":13752, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13753, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13754, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13755, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13756, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13757, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13758, + "componentType":5126, + "count":572, + "max":[ + 187.870361328125, + 225.92271423339844, + 171.78866577148438 + ], + "min":[ + -187.86715698242188, + 1.52587890625e-05, + -171.78851318359375 + ], + "type":"VEC3" + }, + { + "bufferView":13759, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":13760, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13761, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13762, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13763, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13764, + "componentType":5126, + "count":1100, + "max":[ + 1840.4571533203125, + 2600, + 2837.56640625 + ], + "min":[ + -1839.8822021484375, + 0, + -2838.59912109375 + ], + "type":"VEC3" + }, + { + "bufferView":13765, + "componentType":5126, + "count":1100, + "type":"VEC3" + }, + { + "bufferView":13766, + "componentType":5123, + "count":2508, + "type":"SCALAR" + }, + { + "bufferView":13767, + "componentType":5126, + "count":110, + "max":[ + 15.704833984375, + 190.963134765625, + 266.5069885253906 + ], + "min":[ + -15.70574951171875, + 0, + -266.50701904296875 + ], + "type":"VEC3" + }, + { + "bufferView":13768, + "componentType":5126, + "count":110, + "type":"VEC3" + }, + { + "bufferView":13769, + "componentType":5126, + "count":110, + "type":"VEC2" + }, + { + "bufferView":13770, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":13771, + "componentType":5126, + "count":557, + "max":[ + 186.1079864501953, + 257.60504150390625, + 172.86231994628906 + ], + "min":[ + -178.89950561523438, + 37.9351806640625, + -160.93115234375 + ], + "type":"VEC3" + }, + { + "bufferView":13772, + "componentType":5126, + "count":557, + "type":"VEC3" + }, + { + "bufferView":13773, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13774, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":13775, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":13776, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51416015625, + 22.7294979095459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":13777, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":13778, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":13779, + "componentType":5126, + "count":238, + "max":[ + 383.69830322265625, + 1951.66748046875, + 575.7847290039062 + ], + "min":[ + -416.318115234375, + 17.53350830078125, + -630.41943359375 + ], + "type":"VEC3" + }, + { + "bufferView":13780, + "componentType":5126, + "count":238, + "type":"VEC3" + }, + { + "bufferView":13781, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":13782, + "componentType":5126, + "count":24, + "max":[ + 35.000003814697266, + 2000, + 35.000003814697266 + ], + "min":[ + -35.000003814697266, + 0, + -35.000003814697266 + ], + "type":"VEC3" + }, + { + "bufferView":13783, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13784, + "componentType":5126, + "count":152, + "max":[ + 28.80078125, + 913.683837890625, + 27.665283203125 + ], + "min":[ + -28.80126953125, + 0, + -27.66552734375 + ], + "type":"VEC3" + }, + { + "bufferView":13785, + "componentType":5126, + "count":152, + "type":"VEC3" + }, + { + "bufferView":13786, + "componentType":5126, + "count":152, + "type":"VEC2" + }, + { + "bufferView":13787, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":13788, + "componentType":5126, + "count":594, + "max":[ + 161.0444793701172, + 194.65914916992188, + 147.32908630371094 + ], + "min":[ + -161.04266357421875, + -0.000213623046875, + -147.32908630371094 + ], + "type":"VEC3" + }, + { + "bufferView":13789, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":13790, + "componentType":5126, + "count":578, + "max":[ + 209.62005615234375, + 214.72119140625, + 182.55419921875 + ], + "min":[ + -209.6181640625, + 6.103515625e-05, + -182.55435180664062 + ], + "type":"VEC3" + }, + { + "bufferView":13791, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":13792, + "componentType":5126, + "count":572, + "max":[ + 148.07968139648438, + 155.0575408935547, + 135.3996124267578 + ], + "min":[ + -148.07859802246094, + 1.021881103515625, + -123.11851501464844 + ], + "type":"VEC3" + }, + { + "bufferView":13793, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":13794, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13795, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13796, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13797, + "componentType":5126, + "count":804, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45752716064453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":13798, + "componentType":5126, + "count":804, + "type":"VEC3" + }, + { + "bufferView":13799, + "componentType":5126, + "count":804, + "type":"VEC2" + }, + { + "bufferView":13800, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13801, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13802, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13803, + "componentType":5126, + "count":24, + "max":[ + 110.00007629394531, + 50, + 481.646484375 + ], + "min":[ + -110.00011444091797, + 0, + -481.6465148925781 + ], + "type":"VEC3" + }, + { + "bufferView":13804, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13805, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":13806, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":13807, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":13808, + "componentType":5126, + "count":480, + "max":[ + 762.228515625, + 1119.944091796875, + 104.78085327148438 + ], + "min":[ + -762.228515625, + 0, + -104.77841186523438 + ], + "type":"VEC3" + }, + { + "bufferView":13809, + "componentType":5126, + "count":480, + "type":"VEC3" + }, + { + "bufferView":13810, + "componentType":5126, + "count":480, + "type":"VEC2" + }, + { + "bufferView":13811, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":13812, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13813, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13814, + "componentType":5126, + "count":254, + "max":[ + 175.0537109375, + 196.214111328125, + 169.107421875 + ], + "min":[ + -175.05322265625, + 0, + -169.107421875 + ], + "type":"VEC3" + }, + { + "bufferView":13815, + "componentType":5126, + "count":254, + "type":"VEC3" + }, + { + "bufferView":13816, + "componentType":5126, + "count":254, + "type":"VEC2" + }, + { + "bufferView":13817, + "componentType":5126, + "count":112, + "max":[ + 116.97066497802734, + 2149.27001953125, + 116.97049713134766 + ], + "min":[ + -116.97066497802734, + 0, + -116.97115325927734 + ], + "type":"VEC3" + }, + { + "bufferView":13818, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":13819, + "componentType":5126, + "count":8514, + "max":[ + 178.599609375, + 1010.52197265625, + 103.78759765625 + ], + "min":[ + -178.6005859375, + 12.3388671875, + -103.78564453125 + ], + "type":"VEC3" + }, + { + "bufferView":13820, + "componentType":5126, + "count":8514, + "type":"VEC3" + }, + { + "bufferView":13821, + "componentType":5126, + "count":8514, + "type":"VEC2" + }, + { + "bufferView":13822, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":13823, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":13824, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13825, + "componentType":5126, + "count":594, + "max":[ + 161.0444793701172, + 194.65914916992188, + 147.3292694091797 + ], + "min":[ + -161.04266357421875, + -0.000213623046875, + -147.3289031982422 + ], + "type":"VEC3" + }, + { + "bufferView":13826, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":13827, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76708984375, + 78.5859375 + ], + "min":[ + -46.2822265625, + 0, + -78.58447265625 + ], + "type":"VEC3" + }, + { + "bufferView":13828, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13829, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13830, + "componentType":5126, + "count":606, + "max":[ + 140.00314331054688, + 204.1534423828125, + 125.46487426757812 + ], + "min":[ + -147.21128845214844, + 29.814956665039062, + -137.3958740234375 + ], + "type":"VEC3" + }, + { + "bufferView":13831, + "componentType":5126, + "count":606, + "type":"VEC3" + }, + { + "bufferView":13832, + "componentType":5126, + "count":112, + "max":[ + 346.1188049316406, + 670.277099609375, + 346.1188659667969 + ], + "min":[ + -346.1188049316406, + 0, + -346.1190185546875 + ], + "type":"VEC3" + }, + { + "bufferView":13833, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":13834, + "componentType":5126, + "count":152, + "max":[ + 28.80078125, + 913.683837890625, + 27.665283203125 + ], + "min":[ + -28.80126953125, + 0, + -27.66552734375 + ], + "type":"VEC3" + }, + { + "bufferView":13835, + "componentType":5126, + "count":152, + "type":"VEC3" + }, + { + "bufferView":13836, + "componentType":5126, + "count":152, + "type":"VEC2" + }, + { + "bufferView":13837, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.5859375 + ], + "min":[ + -46.2841796875, + 0, + -78.585205078125 + ], + "type":"VEC3" + }, + { + "bufferView":13838, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13839, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13840, + "componentType":5126, + "count":579, + "max":[ + 165.06910705566406, + 109.62261962890625, + 171.90379333496094 + ], + "min":[ + -165.06564331054688, + 0.000244140625, + -171.90396118164062 + ], + "type":"VEC3" + }, + { + "bufferView":13841, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":13842, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13843, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13844, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13845, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.9293212890625, + 90.005859375 + ], + "min":[ + -433.1201171875, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":13846, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":13847, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":13848, + "componentType":5126, + "count":559, + "max":[ + 19.802734375, + 2637.3974609375, + 722.720947265625 + ], + "min":[ + -19.8046875, + 0, + -722.721923828125 + ], + "type":"VEC3" + }, + { + "bufferView":13849, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":13850, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":13851, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":13852, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":13853, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":13854, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":13855, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":13856, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":13857, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":13858, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":13859, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":13860, + "componentType":5126, + "count":592, + "max":[ + 179.8218994140625, + 216.54360961914062, + 164.4505157470703 + ], + "min":[ + -179.82052612304688, + 1.52587890625e-05, + -164.4511260986328 + ], + "type":"VEC3" + }, + { + "bufferView":13861, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":13862, + "componentType":5126, + "count":240, + "max":[ + 400.007080078125, + 2203.110595703125, + 91.49455261230469 + ], + "min":[ + -400.009521484375, + -0.0001220703125, + -91.49444580078125 + ], + "type":"VEC3" + }, + { + "bufferView":13863, + "componentType":5126, + "count":240, + "type":"VEC3" + }, + { + "bufferView":13864, + "componentType":5126, + "count":15112, + "max":[ + 128.0606231689453, + 193.06546020507812, + 128.06063842773438 + ], + "min":[ + -128.06065368652344, + -0.00017547607421875, + -128.06065368652344 + ], + "type":"VEC3" + }, + { + "bufferView":13865, + "componentType":5126, + "count":15112, + "type":"VEC3" + }, + { + "bufferView":13866, + "componentType":5126, + "count":15112, + "type":"VEC2" + }, + { + "bufferView":13867, + "componentType":5126, + "count":7724, + "max":[ + 496.306640625, + 427.46484375, + 103.7867431640625 + ], + "min":[ + -496.306396484375, + 0, + -103.786865234375 + ], + "type":"VEC3" + }, + { + "bufferView":13868, + "componentType":5126, + "count":7724, + "type":"VEC3" + }, + { + "bufferView":13869, + "componentType":5126, + "count":7724, + "type":"VEC2" + }, + { + "bufferView":13870, + "componentType":5126, + "count":578, + "max":[ + 160.69309997558594, + 32.825416564941406, + 160.6921844482422 + ], + "min":[ + -160.69134521484375, + 3.814697265625e-05, + -160.69229125976562 + ], + "type":"VEC3" + }, + { + "bufferView":13871, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":13872, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13873, + "componentType":5126, + "count":218, + "max":[ + 33.40234375, + 133.60888671875, + 66.80419921875 + ], + "min":[ + -33.402099609375, + 0, + -66.80419921875 + ], + "type":"VEC3" + }, + { + "bufferView":13874, + "componentType":5126, + "count":218, + "type":"VEC3" + }, + { + "bufferView":13875, + "componentType":5126, + "count":218, + "type":"VEC2" + }, + { + "bufferView":13876, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":13877, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13878, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13879, + "componentType":5126, + "count":568, + "max":[ + 183.11587524414062, + 188.58534240722656, + 159.60147094726562 + ], + "min":[ + -183.11512756347656, + -0.00019073486328125, + -159.60140991210938 + ], + "type":"VEC3" + }, + { + "bufferView":13880, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":13881, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13882, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7293758392334 + ], + "min":[ + -43.5888671875, + 5.7220458984375e-05, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":13883, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":13884, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":13885, + "componentType":5126, + "count":1488, + "max":[ + 831.546875, + 116.2335205078125, + 746.10498046875 + ], + "min":[ + -831.544921875, + 0.000118255615234375, + -746.10205078125 + ], + "type":"VEC3" + }, + { + "bufferView":13886, + "componentType":5126, + "count":1488, + "type":"VEC3" + }, + { + "bufferView":13887, + "componentType":5126, + "count":1488, + "type":"VEC2" + }, + { + "bufferView":13888, + "componentType":5126, + "count":169, + "max":[ + 505.517578125, + 59.56597900390625, + 21.07904052734375 + ], + "min":[ + -505.5205078125, + 0, + -21.07806396484375 + ], + "type":"VEC3" + }, + { + "bufferView":13889, + "componentType":5126, + "count":169, + "type":"VEC3" + }, + { + "bufferView":13890, + "componentType":5126, + "count":169, + "type":"VEC2" + }, + { + "bufferView":13891, + "componentType":5126, + "count":224, + "max":[ + 115.35120391845703, + 230.70249938964844, + 118.72100067138672 + ], + "min":[ + -115.35124969482422, + 3.814697265625e-05, + -118.72059631347656 + ], + "type":"VEC3" + }, + { + "bufferView":13892, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":13893, + "componentType":5126, + "count":24, + "max":[ + 27.19384765625, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":13894, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13895, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13896, + "componentType":5126, + "count":217, + "max":[ + 33.4022216796875, + 133.60888671875, + 66.8046875 + ], + "min":[ + -33.4022216796875, + 0, + -66.8037109375 + ], + "type":"VEC3" + }, + { + "bufferView":13897, + "componentType":5126, + "count":217, + "type":"VEC3" + }, + { + "bufferView":13898, + "componentType":5126, + "count":217, + "type":"VEC2" + }, + { + "bufferView":13899, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":13900, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13901, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13902, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13903, + "componentType":5126, + "count":40, + "max":[ + 1.4143147468566895, + 10.517629623413086, + 5.258714199066162 + ], + "min":[ + -1.4143130779266357, + 0.0001544952392578125, + -5.258758544921875 + ], + "type":"VEC3" + }, + { + "bufferView":13904, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":13905, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":13906, + "componentType":5126, + "count":756, + "max":[ + 136.373779296875, + 174.96986389160156, + 128.96868896484375 + ], + "min":[ + -136.3739013671875, + 1.14251708984375, + -128.861328125 + ], + "type":"VEC3" + }, + { + "bufferView":13907, + "componentType":5126, + "count":756, + "type":"VEC3" + }, + { + "bufferView":13908, + "componentType":5126, + "count":586, + "max":[ + 189.2086639404297, + 227.48583984375, + 173.01158142089844 + ], + "min":[ + -189.21136474609375, + 0.0001068115234375, + -173.01168823242188 + ], + "type":"VEC3" + }, + { + "bufferView":13909, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":13910, + "componentType":5126, + "count":132, + "max":[ + 37.57861328125, + 75.158203125, + 1709.36474609375 + ], + "min":[ + -37.57958984375, + 0, + -1709.36474609375 + ], + "type":"VEC3" + }, + { + "bufferView":13911, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":13912, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":13913, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":13914, + "componentType":5126, + "count":347, + "max":[ + 171.2998046875, + 184.80908203125, + 176.140625 + ], + "min":[ + -171.296875, + 44.4580078125, + -176.1416015625 + ], + "type":"VEC3" + }, + { + "bufferView":13915, + "componentType":5126, + "count":347, + "type":"VEC3" + }, + { + "bufferView":13916, + "componentType":5126, + "count":347, + "type":"VEC2" + }, + { + "bufferView":13917, + "componentType":5126, + "count":24, + "max":[ + 372.879150390625, + 438.132568359375, + 15.266278266906738 + ], + "min":[ + -372.8789367675781, + -6.103515625e-05, + -15.266443252563477 + ], + "type":"VEC3" + }, + { + "bufferView":13918, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13919, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13920, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":13921, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13922, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13923, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13924, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":13925, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":13926, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":13927, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":13928, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13929, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13930, + "componentType":5126, + "count":152, + "max":[ + 586.3154296875, + 156.6259765625, + 69.570068359375 + ], + "min":[ + -586.32080078125, + 0, + -69.570068359375 + ], + "type":"VEC3" + }, + { + "bufferView":13931, + "componentType":5126, + "count":152, + "type":"VEC3" + }, + { + "bufferView":13932, + "componentType":5126, + "count":152, + "type":"VEC2" + }, + { + "bufferView":13933, + "componentType":5126, + "count":576, + "max":[ + 206.17726135253906, + 211.32736206054688, + 179.57376098632812 + ], + "min":[ + -206.177734375, + 0, + -179.57362365722656 + ], + "type":"VEC3" + }, + { + "bufferView":13934, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":13935, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13936, + "componentType":5126, + "count":309, + "max":[ + 10.6787109375, + 283.877197265625, + 60.75100326538086 + ], + "min":[ + -10.6787109375, + -1.52587890625e-05, + -60.74929428100586 + ], + "type":"VEC3" + }, + { + "bufferView":13937, + "componentType":5126, + "count":309, + "type":"VEC3" + }, + { + "bufferView":13938, + "componentType":5126, + "count":309, + "type":"VEC2" + }, + { + "bufferView":13939, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":13940, + "componentType":5126, + "count":24, + "max":[ + 110.00021362304688, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534164175624028, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":13941, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13942, + "componentType":5126, + "count":50, + "max":[ + 391.736328125, + 608.220703125, + 142.32080078125 + ], + "min":[ + -391.73779296875, + 0, + -142.32177734375 + ], + "type":"VEC3" + }, + { + "bufferView":13943, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":13944, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":13945, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13946, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13947, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13948, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":13949, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13950, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13951, + "componentType":5126, + "count":125, + "max":[ + 3.8606996536254883, + 15.442764282226562, + 7.721350193023682 + ], + "min":[ + -3.860643148422241, + 8.249282836914062e-05, + -7.721330165863037 + ], + "type":"VEC3" + }, + { + "bufferView":13952, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":13953, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":13954, + "componentType":5126, + "count":72, + "max":[ + 771.3447875976562, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.34619140625, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":13955, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":13956, + "componentType":5126, + "count":24, + "max":[ + 110.00022888183594, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534164175624028, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":13957, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13958, + "componentType":5126, + "count":578, + "max":[ + 178.90992736816406, + 32.825321197509766, + 178.9111785888672 + ], + "min":[ + -178.91232299804688, + 1.1444091796875e-05, + -178.9111328125 + ], + "type":"VEC3" + }, + { + "bufferView":13959, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":13960, + "componentType":5126, + "count":24, + "max":[ + 13.6923828125, + 34.440673828125, + 2314.281005859375 + ], + "min":[ + -13.6923828125, + -6.103515625e-05, + -2314.28076171875 + ], + "type":"VEC3" + }, + { + "bufferView":13961, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13962, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13963, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":13964, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13965, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13966, + "componentType":5126, + "count":742, + "max":[ + 136.373779296875, + 46.09920883178711, + 136.37379455566406 + ], + "min":[ + -136.37388610839844, + -4.00543212890625e-05, + -136.37380981445312 + ], + "type":"VEC3" + }, + { + "bufferView":13967, + "componentType":5126, + "count":742, + "type":"VEC3" + }, + { + "bufferView":13968, + "componentType":5126, + "count":4, + "max":[ + 0, + 2586.479248046875, + 698.884033203125 + ], + "min":[ + 0, + 0, + -698.885009765625 + ], + "type":"VEC3" + }, + { + "bufferView":13969, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13970, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13971, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":13972, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":13973, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":13974, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":13975, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":13976, + "componentType":5126, + "count":682, + "max":[ + 130.72265625, + 2974.83349609375, + 134.317138671875 + ], + "min":[ + -130.72265625, + 0, + -134.31373596191406 + ], + "type":"VEC3" + }, + { + "bufferView":13977, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":13978, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":13979, + "componentType":5126, + "count":264, + "max":[ + 175.05322265625, + 196.21435546875, + 169.1068115234375 + ], + "min":[ + -175.0537109375, + 0, + -169.10693359375 + ], + "type":"VEC3" + }, + { + "bufferView":13980, + "componentType":5126, + "count":264, + "type":"VEC3" + }, + { + "bufferView":13981, + "componentType":5126, + "count":264, + "type":"VEC2" + }, + { + "bufferView":13982, + "componentType":5126, + "count":172, + "max":[ + 769.70751953125, + 113.19482421875, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.597412109375 + ], + "type":"VEC3" + }, + { + "bufferView":13983, + "componentType":5126, + "count":172, + "type":"VEC3" + }, + { + "bufferView":13984, + "componentType":5126, + "count":172, + "type":"VEC2" + }, + { + "bufferView":13985, + "componentType":5126, + "count":211, + "max":[ + 13.2529296875, + 75.79655456542969, + 25.5074462890625 + ], + "min":[ + -13.25048828125, + 0.00018621631897985935, + -25.4969482421875 + ], + "type":"VEC3" + }, + { + "bufferView":13986, + "componentType":5126, + "count":211, + "type":"VEC3" + }, + { + "bufferView":13987, + "componentType":5126, + "count":211, + "type":"VEC2" + }, + { + "bufferView":13988, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":13989, + "componentType":5126, + "count":574, + "max":[ + 190.55020141601562, + 229.0487518310547, + 174.23463439941406 + ], + "min":[ + -190.55238342285156, + -0.0001068115234375, + -174.23463439941406 + ], + "type":"VEC3" + }, + { + "bufferView":13990, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":13991, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51410675048828, + 43.589359283447266 + ], + "min":[ + -22.7265625, + -7.62939453125e-06, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":13992, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":13993, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":13994, + "componentType":5126, + "count":591, + "max":[ + 142.26708984375, + 172.77529907226562, + 130.2070770263672 + ], + "min":[ + -142.26475524902344, + 3.0517578125e-05, + -130.20777893066406 + ], + "type":"VEC3" + }, + { + "bufferView":13995, + "componentType":5126, + "count":591, + "type":"VEC3" + }, + { + "bufferView":13996, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":13997, + "componentType":5126, + "count":160, + "max":[ + 29.7841796875, + 2198.236572265625, + 21.0791015625 + ], + "min":[ + -29.78125, + -0.00018310546875, + -21.07794189453125 + ], + "type":"VEC3" + }, + { + "bufferView":13998, + "componentType":5126, + "count":160, + "type":"VEC3" + }, + { + "bufferView":13999, + "componentType":5126, + "count":160, + "type":"VEC2" + }, + { + "bufferView":14000, + "componentType":5123, + "count":336, + "type":"SCALAR" + }, + { + "bufferView":14001, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14002, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14003, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14004, + "componentType":5126, + "count":12, + "max":[ + 360.8974609375, + 341.1453857421875, + 8.34716796875 + ], + "min":[ + -360.897216796875, + 0.0010986328125, + -8.34375 + ], + "type":"VEC3" + }, + { + "bufferView":14005, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":14006, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":14007, + "componentType":5126, + "count":586, + "max":[ + 155.0883331298828, + 32.825321197509766, + 155.0863800048828 + ], + "min":[ + -155.08447265625, + -7.2479248046875e-05, + -155.08645629882812 + ], + "type":"VEC3" + }, + { + "bufferView":14008, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":14009, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14010, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14011, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14012, + "componentType":5126, + "count":865, + "max":[ + 7.779110908508301, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778773307800293, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":14013, + "componentType":5126, + "count":865, + "type":"VEC3" + }, + { + "bufferView":14014, + "componentType":5126, + "count":865, + "type":"VEC2" + }, + { + "bufferView":14015, + "componentType":5126, + "count":690, + "max":[ + 150.83132934570312, + 174.3048095703125, + 143.72177124023438 + ], + "min":[ + -150.83401489257812, + 1.52587890625e-05, + -143.72178649902344 + ], + "type":"VEC3" + }, + { + "bufferView":14016, + "componentType":5126, + "count":690, + "type":"VEC3" + }, + { + "bufferView":14017, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51428985595703, + 43.589359283447266 + ], + "min":[ + -22.7275390625, + 0.00011444091796875, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":14018, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":14019, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":14020, + "componentType":5126, + "count":236, + "max":[ + 383.69830322265625, + 1951.66748046875, + 575.7845458984375 + ], + "min":[ + -416.318115234375, + 17.533493041992188, + -630.4196166992188 + ], + "type":"VEC3" + }, + { + "bufferView":14021, + "componentType":5126, + "count":236, + "type":"VEC3" + }, + { + "bufferView":14022, + "componentType":5126, + "count":584, + "max":[ + 188.78990173339844, + 120.010009765625, + 192.92555236816406 + ], + "min":[ + -181.5825653076172, + 0.7802200317382812, + -192.9258575439453 + ], + "type":"VEC3" + }, + { + "bufferView":14023, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":14024, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14025, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14026, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14027, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14028, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51409912109375, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":14029, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":14030, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":14031, + "componentType":5126, + "count":24, + "max":[ + 13.6923828125, + 34.440673828125, + 2314.281005859375 + ], + "min":[ + -13.6923828125, + -6.103515625e-05, + -2314.28076171875 + ], + "type":"VEC3" + }, + { + "bufferView":14032, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14033, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14034, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.51416015625, + 22.7293758392334 + ], + "min":[ + -43.58984375, + -3.814697265625e-06, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":14035, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":14036, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":14037, + "componentType":5126, + "count":578, + "max":[ + 160.69134521484375, + 166.47369384765625, + 140.18238830566406 + ], + "min":[ + -160.69309997558594, + 6.866455078125e-05, + -140.18231201171875 + ], + "type":"VEC3" + }, + { + "bufferView":14038, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":14039, + "componentType":5126, + "count":309, + "max":[ + 10.6796875, + 283.877197265625, + 60.75100326538086 + ], + "min":[ + -10.677734375, + -1.52587890625e-05, + -60.74929428100586 + ], + "type":"VEC3" + }, + { + "bufferView":14040, + "componentType":5126, + "count":309, + "type":"VEC3" + }, + { + "bufferView":14041, + "componentType":5126, + "count":309, + "type":"VEC2" + }, + { + "bufferView":14042, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":14043, + "componentType":5126, + "count":576, + "max":[ + 193.23324584960938, + 232.17510986328125, + 176.68064880371094 + ], + "min":[ + -193.23434448242188, + -6.103515625e-05, + -176.6804962158203 + ], + "type":"VEC3" + }, + { + "bufferView":14044, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":14045, + "componentType":5126, + "count":7986, + "max":[ + 103.78759765625, + 429.9638671875, + 496.1484375 + ], + "min":[ + -103.78662109375, + 0, + -496.148681640625 + ], + "type":"VEC3" + }, + { + "bufferView":14046, + "componentType":5126, + "count":7986, + "type":"VEC3" + }, + { + "bufferView":14047, + "componentType":5126, + "count":7986, + "type":"VEC2" + }, + { + "bufferView":14048, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":14049, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14050, + "componentType":5126, + "count":96, + "max":[ + 599.9990234375, + 143.7607421875, + 3331.830078125 + ], + "min":[ + -599.9991455078125, + -1.52587890625e-05, + -3331.830810546875 + ], + "type":"VEC3" + }, + { + "bufferView":14051, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":14052, + "componentType":5126, + "count":7804, + "max":[ + 496.304931640625, + 427.4638671875, + 103.786865234375 + ], + "min":[ + -496.308349609375, + 0, + -103.786865234375 + ], + "type":"VEC3" + }, + { + "bufferView":14053, + "componentType":5126, + "count":7804, + "type":"VEC3" + }, + { + "bufferView":14054, + "componentType":5126, + "count":7804, + "type":"VEC2" + }, + { + "bufferView":14055, + "componentType":5126, + "count":56, + "max":[ + 29.798583984375, + 520.124755859375, + 217.04052734375 + ], + "min":[ + -29.7984619140625, + -0.000244140625, + -217.04150390625 + ], + "type":"VEC3" + }, + { + "bufferView":14056, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":14057, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":14058, + "componentType":5126, + "count":582, + "max":[ + 155.0883331298828, + 160.94541931152344, + 135.32760620117188 + ], + "min":[ + -155.08447265625, + -0.00011444091796875, + -135.32757568359375 + ], + "type":"VEC3" + }, + { + "bufferView":14059, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":14060, + "componentType":5126, + "count":54, + "max":[ + 217.04052734375, + 520.125244140625, + 29.798828125 + ], + "min":[ + -217.04150390625, + 0.000244140625, + -29.798828125 + ], + "type":"VEC3" + }, + { + "bufferView":14061, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":14062, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":14063, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14064, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14065, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14066, + "componentType":5126, + "count":584, + "max":[ + 185.91859436035156, + 191.34945678710938, + 162.02882385253906 + ], + "min":[ + -185.9182586669922, + -0.0001373291015625, + -162.0288848876953 + ], + "type":"VEC3" + }, + { + "bufferView":14067, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":14068, + "componentType":5126, + "count":580, + "max":[ + 186.5293426513672, + 224.35952758789062, + 170.5657501220703 + ], + "min":[ + -186.52561950683594, + 0, + -170.56549072265625 + ], + "type":"VEC3" + }, + { + "bufferView":14069, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":14070, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14071, + "componentType":5126, + "count":134, + "max":[ + 1732.0361328125, + 51, + 3083.627197265625 + ], + "min":[ + -1732.037353515625, + 0, + -3084.572021484375 + ], + "type":"VEC3" + }, + { + "bufferView":14072, + "componentType":5126, + "count":134, + "type":"VEC3" + }, + { + "bufferView":14073, + "componentType":5123, + "count":336, + "type":"SCALAR" + }, + { + "bufferView":14074, + "componentType":5126, + "count":1043, + "max":[ + 125.220703125, + 76.1982421875, + 90.109375 + ], + "min":[ + -125.2314453125, + -0.0009765625, + -90.10888671875 + ], + "type":"VEC3" + }, + { + "bufferView":14075, + "componentType":5126, + "count":1043, + "type":"VEC3" + }, + { + "bufferView":14076, + "componentType":5126, + "count":1043, + "type":"VEC2" + }, + { + "bufferView":14077, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":14078, + "componentType":5126, + "count":595, + "max":[ + 152.07296752929688, + 220.74203491210938, + 136.47134399414062 + ], + "min":[ + -159.2841796875, + 32.335121154785156, + -148.4029541015625 + ], + "type":"VEC3" + }, + { + "bufferView":14079, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":14080, + "componentType":5126, + "count":571, + "max":[ + 184.7669677734375, + 255.76202392578125, + 171.63931274414062 + ], + "min":[ + -177.5579833984375, + 37.6552734375, + -159.70816040039062 + ], + "type":"VEC3" + }, + { + "bufferView":14081, + "componentType":5126, + "count":571, + "type":"VEC3" + }, + { + "bufferView":14082, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":14083, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14084, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14085, + "componentType":5126, + "count":136, + "max":[ + 242.8515625, + 131.9609375, + 239.70703125 + ], + "min":[ + -242.8525390625, + 0, + -239.705078125 + ], + "type":"VEC3" + }, + { + "bufferView":14086, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":14087, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":14088, + "componentType":5126, + "count":687, + "max":[ + 150.83139038085938, + 239.3956298828125, + 147.66839599609375 + ], + "min":[ + -150.83389282226562, + -4.57763671875e-05, + -147.66836547851562 + ], + "type":"VEC3" + }, + { + "bufferView":14089, + "componentType":5126, + "count":687, + "type":"VEC3" + }, + { + "bufferView":14090, + "componentType":5126, + "count":648, + "max":[ + 615.010986328125, + 2510.92529296875, + 347.26513671875 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.267333984375 + ], + "type":"VEC3" + }, + { + "bufferView":14091, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":14092, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":14093, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14094, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14095, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14096, + "componentType":5126, + "count":791, + "max":[ + 4.1328125, + 90.58740997314453, + 34.45752716064453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":14097, + "componentType":5126, + "count":791, + "type":"VEC3" + }, + { + "bufferView":14098, + "componentType":5126, + "count":791, + "type":"VEC2" + }, + { + "bufferView":14099, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":14100, + "componentType":5126, + "count":24, + "max":[ + 182.0390625, + 29.517658233642578, + 3245.603759765625 + ], + "min":[ + -182.03515625, + -7.915496826171875e-05, + -3245.60009765625 + ], + "type":"VEC3" + }, + { + "bufferView":14101, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14102, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14103, + "componentType":5126, + "count":350, + "max":[ + 115.35122680664062, + 211.42044067382812, + 68.44589233398438 + ], + "min":[ + -115.35122680664062, + 4.1961669921875e-05, + -68.44589233398438 + ], + "type":"VEC3" + }, + { + "bufferView":14104, + "componentType":5126, + "count":350, + "type":"VEC3" + }, + { + "bufferView":14105, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":14106, + "componentType":5126, + "count":512, + "max":[ + 4.95068359375, + 1.635217308998108, + 1.7053052186965942 + ], + "min":[ + -4.950676441192627, + 1.208491563796997, + -1.7454898357391357 + ], + "type":"VEC3" + }, + { + "bufferView":14107, + "componentType":5126, + "count":512, + "type":"VEC3" + }, + { + "bufferView":14108, + "componentType":5126, + "count":512, + "type":"VEC2" + }, + { + "bufferView":14109, + "componentType":5123, + "count":2688, + "type":"SCALAR" + }, + { + "bufferView":14110, + "componentType":5126, + "count":512, + "max":[ + 4.950679779052734, + 0.42672598361968994, + 1.724837303161621 + ], + "min":[ + -4.95067834854126, + 6.079673767089844e-06, + -1.7259553670883179 + ], + "type":"VEC3" + }, + { + "bufferView":14111, + "componentType":5126, + "count":512, + "type":"VEC3" + }, + { + "bufferView":14112, + "componentType":5126, + "count":512, + "type":"VEC2" + }, + { + "bufferView":14113, + "componentType":5126, + "count":512, + "max":[ + 4.95068359375, + 1.635217308998108, + 1.7053052186965942 + ], + "min":[ + -4.950676441192627, + 1.208491563796997, + -1.7454898357391357 + ], + "type":"VEC3" + }, + { + "bufferView":14114, + "componentType":5126, + "count":512, + "type":"VEC3" + }, + { + "bufferView":14115, + "componentType":5126, + "count":512, + "type":"VEC2" + }, + { + "bufferView":14116, + "componentType":5126, + "count":512, + "max":[ + 4.950679779052734, + 0.42672598361968994, + 1.724837303161621 + ], + "min":[ + -4.95067834854126, + 6.079673767089844e-06, + -1.7259553670883179 + ], + "type":"VEC3" + }, + { + "bufferView":14117, + "componentType":5126, + "count":512, + "type":"VEC3" + }, + { + "bufferView":14118, + "componentType":5126, + "count":512, + "type":"VEC2" + }, + { + "bufferView":14119, + "componentType":5126, + "count":585, + "max":[ + 9.718250274658203, + 14.869293212890625, + 25.615428924560547 + ], + "min":[ + -9.721172332763672, + -1.52587890625e-05, + -25.613576889038086 + ], + "type":"VEC3" + }, + { + "bufferView":14120, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":14121, + "componentType":5126, + "count":585, + "type":"VEC2" + }, + { + "bufferView":14122, + "componentType":5123, + "count":3480, + "type":"SCALAR" + }, + { + "bufferView":14123, + "componentType":5126, + "count":585, + "max":[ + 9.741539001464844, + 14.869354248046875, + 25.599483489990234 + ], + "min":[ + -9.697891235351562, + 3.814697265625e-05, + -25.629531860351562 + ], + "type":"VEC3" + }, + { + "bufferView":14124, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":14125, + "componentType":5126, + "count":585, + "type":"VEC2" + }, + { + "bufferView":14126, + "componentType":5126, + "count":585, + "max":[ + 9.718250274658203, + 14.869293212890625, + 25.615428924560547 + ], + "min":[ + -9.721172332763672, + -1.52587890625e-05, + -25.613576889038086 + ], + "type":"VEC3" + }, + { + "bufferView":14127, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":14128, + "componentType":5126, + "count":585, + "type":"VEC2" + }, + { + "bufferView":14129, + "componentType":5126, + "count":585, + "max":[ + 9.741539001464844, + 14.869354248046875, + 25.599483489990234 + ], + "min":[ + -9.697891235351562, + 3.814697265625e-05, + -25.629531860351562 + ], + "type":"VEC3" + }, + { + "bufferView":14130, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":14131, + "componentType":5126, + "count":585, + "type":"VEC2" + }, + { + "bufferView":14132, + "componentType":5126, + "count":1680, + "max":[ + 31.249467849731445, + 10.91186809539795, + 30.41402244567871 + ], + "min":[ + -31.249467849731445, + 1.239776611328125e-05, + -30.414030075073242 + ], + "type":"VEC3" + }, + { + "bufferView":14133, + "componentType":5126, + "count":1680, + "type":"VEC3" + }, + { + "bufferView":14134, + "componentType":5126, + "count":1680, + "type":"VEC2" + }, + { + "bufferView":14135, + "componentType":5123, + "count":4680, + "type":"SCALAR" + }, + { + "bufferView":14136, + "componentType":5126, + "count":1000, + "max":[ + 12.917414665222168, + 13.883748054504395, + 11.023289680480957 + ], + "min":[ + -12.875394821166992, + 11.042394638061523, + -13.06185245513916 + ], + "type":"VEC3" + }, + { + "bufferView":14137, + "componentType":5126, + "count":1000, + "type":"VEC3" + }, + { + "bufferView":14138, + "componentType":5126, + "count":1000, + "type":"VEC2" + }, + { + "bufferView":14139, + "componentType":5123, + "count":4140, + "type":"SCALAR" + }, + { + "bufferView":14140, + "componentType":5126, + "count":1680, + "max":[ + 31.249469757080078, + 13.883745193481445, + 30.414018630981445 + ], + "min":[ + -31.249467849731445, + 2.971891403198242, + -30.41402244567871 + ], + "type":"VEC3" + }, + { + "bufferView":14141, + "componentType":5126, + "count":1680, + "type":"VEC3" + }, + { + "bufferView":14142, + "componentType":5126, + "count":1680, + "type":"VEC2" + }, + { + "bufferView":14143, + "componentType":5123, + "count":4680, + "type":"SCALAR" + }, + { + "bufferView":14144, + "componentType":5126, + "count":1000, + "max":[ + 12.917401313781738, + 2.8413619995117188, + 11.023265838623047 + ], + "min":[ + -12.875407218933105, + 9.5367431640625e-06, + -13.061867713928223 + ], + "type":"VEC3" + }, + { + "bufferView":14145, + "componentType":5126, + "count":1000, + "type":"VEC3" + }, + { + "bufferView":14146, + "componentType":5126, + "count":1000, + "type":"VEC2" + }, + { + "bufferView":14147, + "componentType":5123, + "count":4140, + "type":"SCALAR" + }, + { + "bufferView":14148, + "componentType":5126, + "count":2040, + "max":[ + 31.249467849731445, + 15.258790969848633, + 30.41402244567871 + ], + "min":[ + -31.24947166442871, + 1.239776611328125e-05, + -30.414033889770508 + ], + "type":"VEC3" + }, + { + "bufferView":14149, + "componentType":5126, + "count":2040, + "type":"VEC3" + }, + { + "bufferView":14150, + "componentType":5126, + "count":2040, + "type":"VEC2" + }, + { + "bufferView":14151, + "componentType":5123, + "count":5760, + "type":"SCALAR" + }, + { + "bufferView":14152, + "componentType":5126, + "count":1000, + "max":[ + 12.917414665222168, + 18.230670928955078, + 11.023289680480957 + ], + "min":[ + -12.875394821166992, + 15.389317512512207, + -13.06185245513916 + ], + "type":"VEC3" + }, + { + "bufferView":14153, + "componentType":5126, + "count":1000, + "type":"VEC3" + }, + { + "bufferView":14154, + "componentType":5126, + "count":1000, + "type":"VEC2" + }, + { + "bufferView":14155, + "componentType":5126, + "count":2040, + "max":[ + 31.24947166442871, + 18.230669021606445, + 30.41402244567871 + ], + "min":[ + -31.249467849731445, + 2.971891403198242, + -30.41402244567871 + ], + "type":"VEC3" + }, + { + "bufferView":14156, + "componentType":5126, + "count":2040, + "type":"VEC3" + }, + { + "bufferView":14157, + "componentType":5126, + "count":2040, + "type":"VEC2" + }, + { + "bufferView":14158, + "componentType":5123, + "count":5760, + "type":"SCALAR" + }, + { + "bufferView":14159, + "componentType":5126, + "count":1000, + "max":[ + 12.917401313781738, + 2.8413619995117188, + 11.023265838623047 + ], + "min":[ + -12.875407218933105, + 9.5367431640625e-06, + -13.061867713928223 + ], + "type":"VEC3" + }, + { + "bufferView":14160, + "componentType":5126, + "count":1000, + "type":"VEC3" + }, + { + "bufferView":14161, + "componentType":5126, + "count":1000, + "type":"VEC2" + }, + { + "bufferView":14162, + "componentType":5126, + "count":12405, + "max":[ + 50.20328903198242, + 44.67840576171875, + 48.97440719604492 + ], + "min":[ + -50.20329284667969, + 5.7220458984375e-06, + -48.97605895996094 + ], + "type":"VEC3" + }, + { + "bufferView":14163, + "componentType":5126, + "count":12405, + "type":"VEC3" + }, + { + "bufferView":14164, + "componentType":5126, + "count":12405, + "type":"VEC2" + }, + { + "bufferView":14165, + "componentType":5123, + "count":70410, + "type":"SCALAR" + }, + { + "bufferView":14166, + "componentType":5126, + "count":12405, + "max":[ + 50.203311920166016, + 44.67852783203125, + 48.974388122558594 + ], + "min":[ + -50.203269958496094, + -3.814697265625e-06, + -48.976078033447266 + ], + "type":"VEC3" + }, + { + "bufferView":14167, + "componentType":5126, + "count":12405, + "type":"VEC3" + }, + { + "bufferView":14168, + "componentType":5126, + "count":12405, + "type":"VEC2" + }, + { + "bufferView":14169, + "componentType":5126, + "count":12405, + "max":[ + 50.20328903198242, + 44.67840576171875, + 48.97440719604492 + ], + "min":[ + -50.20329284667969, + 5.7220458984375e-06, + -48.97605895996094 + ], + "type":"VEC3" + }, + { + "bufferView":14170, + "componentType":5126, + "count":12405, + "type":"VEC3" + }, + { + "bufferView":14171, + "componentType":5126, + "count":12405, + "type":"VEC2" + }, + { + "bufferView":14172, + "componentType":5126, + "count":12405, + "max":[ + 50.203311920166016, + 44.67852783203125, + 48.974388122558594 + ], + "min":[ + -50.203269958496094, + -3.814697265625e-06, + -48.976078033447266 + ], + "type":"VEC3" + }, + { + "bufferView":14173, + "componentType":5126, + "count":12405, + "type":"VEC3" + }, + { + "bufferView":14174, + "componentType":5126, + "count":12405, + "type":"VEC2" + }, + { + "bufferView":14175, + "componentType":5126, + "count":431, + "max":[ + 12.785737991333008, + 2.713195323944092, + 12.05865478515625 + ], + "min":[ + -12.785738945007324, + -6.198883056640625e-06, + -12.058913230895996 + ], + "type":"VEC3" + }, + { + "bufferView":14176, + "componentType":5126, + "count":431, + "type":"VEC3" + }, + { + "bufferView":14177, + "componentType":5126, + "count":431, + "type":"VEC2" + }, + { + "bufferView":14178, + "componentType":5123, + "count":1995, + "type":"SCALAR" + }, + { + "bufferView":14179, + "componentType":5126, + "count":120, + "max":[ + 5.863466262817383, + 2.5618605613708496, + 6.698294162750244 + ], + "min":[ + -5.863468647003174, + 2.4062509536743164, + -4.692599773406982 + ], + "type":"VEC3" + }, + { + "bufferView":14180, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":14181, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":14182, + "componentType":5123, + "count":450, + "type":"SCALAR" + }, + { + "bufferView":14183, + "componentType":5126, + "count":431, + "max":[ + 12.785733222961426, + 2.7132184505462646, + 12.058659553527832 + ], + "min":[ + -12.785743713378906, + 5.960464477539062e-07, + -12.058911323547363 + ], + "type":"VEC3" + }, + { + "bufferView":14184, + "componentType":5126, + "count":431, + "type":"VEC3" + }, + { + "bufferView":14185, + "componentType":5126, + "count":431, + "type":"VEC2" + }, + { + "bufferView":14186, + "componentType":5126, + "count":120, + "max":[ + 5.863465309143066, + 0.3069525361061096, + 6.698294639587402 + ], + "min":[ + -5.86346960067749, + 0.15132832527160645, + -4.692599296569824 + ], + "type":"VEC3" + }, + { + "bufferView":14187, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":14188, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":14189, + "componentType":5126, + "count":120, + "max":[ + 5.863466262817383, + 2.5618605613708496, + 6.698294162750244 + ], + "min":[ + -5.863468647003174, + 2.4062509536743164, + -4.692599773406982 + ], + "type":"VEC3" + }, + { + "bufferView":14190, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":14191, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":14192, + "componentType":5126, + "count":431, + "max":[ + 12.785737991333008, + 2.713195323944092, + 12.05865478515625 + ], + "min":[ + -12.785738945007324, + -6.198883056640625e-06, + -12.058913230895996 + ], + "type":"VEC3" + }, + { + "bufferView":14193, + "componentType":5126, + "count":431, + "type":"VEC3" + }, + { + "bufferView":14194, + "componentType":5126, + "count":431, + "type":"VEC2" + }, + { + "bufferView":14195, + "componentType":5126, + "count":431, + "max":[ + 12.785733222961426, + 2.7132184505462646, + 12.058659553527832 + ], + "min":[ + -12.785743713378906, + 5.960464477539062e-07, + -12.058911323547363 + ], + "type":"VEC3" + }, + { + "bufferView":14196, + "componentType":5126, + "count":431, + "type":"VEC3" + }, + { + "bufferView":14197, + "componentType":5126, + "count":431, + "type":"VEC2" + }, + { + "bufferView":14198, + "componentType":5126, + "count":120, + "max":[ + 5.863465309143066, + 0.3069525361061096, + 6.698294639587402 + ], + "min":[ + -5.86346960067749, + 0.15132832527160645, + -4.692599296569824 + ], + "type":"VEC3" + }, + { + "bufferView":14199, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":14200, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":14201, + "componentType":5126, + "count":21624, + "max":[ + 62.308719635009766, + 46.68699645996094, + 60.64299011230469 + ], + "min":[ + -62.30903625488281, + 2.86102294921875e-05, + -60.642730712890625 + ], + "type":"VEC3" + }, + { + "bufferView":14202, + "componentType":5126, + "count":21624, + "type":"VEC3" + }, + { + "bufferView":14203, + "componentType":5126, + "count":21624, + "type":"VEC2" + }, + { + "bufferView":14204, + "componentType":5123, + "count":56832, + "type":"SCALAR" + }, + { + "bufferView":14205, + "componentType":5126, + "count":21627, + "max":[ + 62.308746337890625, + 46.686988830566406, + 60.64300537109375 + ], + "min":[ + -62.309024810791016, + 0, + -60.642730712890625 + ], + "type":"VEC3" + }, + { + "bufferView":14206, + "componentType":5126, + "count":21627, + "type":"VEC3" + }, + { + "bufferView":14207, + "componentType":5126, + "count":21627, + "type":"VEC2" + }, + { + "bufferView":14208, + "componentType":5123, + "count":56832, + "type":"SCALAR" + }, + { + "bufferView":14209, + "componentType":5126, + "count":21624, + "max":[ + 62.308719635009766, + 46.68699645996094, + 60.64299011230469 + ], + "min":[ + -62.30903625488281, + 2.86102294921875e-05, + -60.642730712890625 + ], + "type":"VEC3" + }, + { + "bufferView":14210, + "componentType":5126, + "count":21624, + "type":"VEC3" + }, + { + "bufferView":14211, + "componentType":5126, + "count":21624, + "type":"VEC2" + }, + { + "bufferView":14212, + "componentType":5126, + "count":21627, + "max":[ + 62.308746337890625, + 46.686988830566406, + 60.64300537109375 + ], + "min":[ + -62.309024810791016, + 0, + -60.642730712890625 + ], + "type":"VEC3" + }, + { + "bufferView":14213, + "componentType":5126, + "count":21627, + "type":"VEC3" + }, + { + "bufferView":14214, + "componentType":5126, + "count":21627, + "type":"VEC2" + }, + { + "bufferView":14215, + "componentType":5126, + "count":24, + "max":[ + 2321.118408203125, + 1253.48681640625, + 1050.01416015625 + ], + "min":[ + -2321.117431640625, + 0, + -1050.0133056640625 + ], + "type":"VEC3" + }, + { + "bufferView":14216, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14217, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":14218, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":14219, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14220, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14221, + "componentType":5126, + "count":52, + "max":[ + 238.478515625, + 483.89794921875, + 30.0009765625 + ], + "min":[ + -238.47998046875, + 0, + -30 + ], + "type":"VEC3" + }, + { + "bufferView":14222, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":14223, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":14224, + "componentType":5126, + "count":584, + "max":[ + 194.5747833251953, + 124.83911895751953, + 202.7357177734375 + ], + "min":[ + -194.57533264160156, + -0.000213623046875, + -202.73605346679688 + ], + "type":"VEC3" + }, + { + "bufferView":14225, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":14226, + "componentType":5126, + "count":574, + "max":[ + 146.67794799804688, + 152.65367126464844, + 128.0454559326172 + ], + "min":[ + -146.6774139404297, + 0.0001068115234375, + -128.04537963867188 + ], + "type":"VEC3" + }, + { + "bufferView":14227, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":14228, + "componentType":5126, + "count":96, + "max":[ + 747.4671630859375, + 205.17288208007812, + 73.47864532470703 + ], + "min":[ + -747.468994140625, + 2.6702880859375e-05, + -73.4786376953125 + ], + "type":"VEC3" + }, + { + "bufferView":14229, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":14230, + "componentType":5126, + "count":8544, + "max":[ + 178.6015625, + 1010.521484375, + 103.78759765625 + ], + "min":[ + -178.595703125, + 12.3388671875, + -103.78564453125 + ], + "type":"VEC3" + }, + { + "bufferView":14231, + "componentType":5126, + "count":8544, + "type":"VEC3" + }, + { + "bufferView":14232, + "componentType":5126, + "count":8544, + "type":"VEC2" + }, + { + "bufferView":14233, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":14234, + "componentType":5126, + "count":586, + "max":[ + 176.10647583007812, + 181.67581176757812, + 153.53298950195312 + ], + "min":[ + -176.10997009277344, + 0.00022125244140625, + -153.53302001953125 + ], + "type":"VEC3" + }, + { + "bufferView":14235, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":14236, + "componentType":5126, + "count":8039, + "max":[ + 180.1181640625, + 1010.39501953125, + 103.787109375 + ], + "min":[ + -180.12109375, + 12.32470703125, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":14237, + "componentType":5126, + "count":8039, + "type":"VEC3" + }, + { + "bufferView":14238, + "componentType":5126, + "count":8039, + "type":"VEC2" + }, + { + "bufferView":14239, + "componentType":5126, + "count":590, + "max":[ + 194.32896423339844, + 199.64170837402344, + 169.31101989746094 + ], + "min":[ + -194.32528686523438, + 0.00019073486328125, + -169.3110809326172 + ], + "type":"VEC3" + }, + { + "bufferView":14240, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":14241, + "componentType":5126, + "count":609, + "max":[ + 143.6085968017578, + 174.33847045898438, + 131.43057250976562 + ], + "min":[ + -143.6058349609375, + 4.57763671875e-05, + -131.43023681640625 + ], + "type":"VEC3" + }, + { + "bufferView":14242, + "componentType":5126, + "count":609, + "type":"VEC3" + }, + { + "bufferView":14243, + "componentType":5126, + "count":559, + "max":[ + 223.19967651367188, + 446.2801208496094, + 223.6057891845703 + ], + "min":[ + -223.19964599609375, + 0.0001373291015625, + -223.60580444335938 + ], + "type":"VEC3" + }, + { + "bufferView":14244, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":14245, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":14246, + "componentType":5126, + "count":589, + "max":[ + 137.32012939453125, + 200.46693420410156, + 123.01901245117188 + ], + "min":[ + -144.529296875, + 29.25487518310547, + -134.94979858398438 + ], + "type":"VEC3" + }, + { + "bufferView":14247, + "componentType":5126, + "count":589, + "type":"VEC3" + }, + { + "bufferView":14248, + "componentType":5126, + "count":112, + "max":[ + 193.0012664794922, + 2188.1689453125, + 193.0012664794922 + ], + "min":[ + -193.0012664794922, + 0, + -193.0013427734375 + ], + "type":"VEC3" + }, + { + "bufferView":14249, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":14250, + "componentType":5126, + "count":648, + "max":[ + 615.010986328125, + 2510.92529296875, + 347.266357421875 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.26611328125 + ], + "type":"VEC3" + }, + { + "bufferView":14251, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":14252, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":14253, + "componentType":5126, + "count":230, + "max":[ + 91.49446105957031, + 2020.37548828125, + 646.193115234375 + ], + "min":[ + -91.49473571777344, + 6.103515625e-05, + -589.9326171875 + ], + "type":"VEC3" + }, + { + "bufferView":14254, + "componentType":5126, + "count":230, + "type":"VEC3" + }, + { + "bufferView":14255, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14256, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14257, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14258, + "componentType":5126, + "count":53, + "max":[ + 366.15283203125, + 696.755859375, + 123.615234375 + ], + "min":[ + -366.15283203125, + 0, + -123.61328125 + ], + "type":"VEC3" + }, + { + "bufferView":14259, + "componentType":5126, + "count":53, + "type":"VEC3" + }, + { + "bufferView":14260, + "componentType":5126, + "count":53, + "type":"VEC2" + }, + { + "bufferView":14261, + "componentType":5126, + "count":584, + "max":[ + 186.525634765625, + 224.35946655273438, + 170.5655975341797 + ], + "min":[ + -186.52935791015625, + 6.103515625e-05, + -170.56582641601562 + ], + "type":"VEC3" + }, + { + "bufferView":14262, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":14263, + "componentType":5126, + "count":275, + "max":[ + 175.05322265625, + 196.21435546875, + 169.10546875 + ], + "min":[ + -175.0537109375, + 0, + -169.1083984375 + ], + "type":"VEC3" + }, + { + "bufferView":14264, + "componentType":5126, + "count":275, + "type":"VEC3" + }, + { + "bufferView":14265, + "componentType":5126, + "count":275, + "type":"VEC2" + }, + { + "bufferView":14266, + "componentType":5126, + "count":882, + "max":[ + 130.72265625, + 2974.83349609375, + 134.316162109375 + ], + "min":[ + -130.72265625, + 0, + -134.31568908691406 + ], + "type":"VEC3" + }, + { + "bufferView":14267, + "componentType":5126, + "count":882, + "type":"VEC3" + }, + { + "bufferView":14268, + "componentType":5126, + "count":882, + "type":"VEC2" + }, + { + "bufferView":14269, + "componentType":5126, + "count":584, + "max":[ + 173.30691528320312, + 180.11541748046875, + 157.2457733154297 + ], + "min":[ + -173.3037109375, + 1.2038650512695312, + -144.9654541015625 + ], + "type":"VEC3" + }, + { + "bufferView":14270, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":14271, + "componentType":5126, + "count":4, + "max":[ + 698.884765625, + 2586.479248046875, + 0.0021792426705360413 + ], + "min":[ + -698.8828125, + 0, + 0.0017270073294639587 + ], + "type":"VEC3" + }, + { + "bufferView":14272, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14273, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14274, + "componentType":5126, + "count":192, + "max":[ + 22.73046875, + 2370.382568359375, + 32.115028381347656 + ], + "min":[ + -22.728515625, + 0, + -32.116004943847656 + ], + "type":"VEC3" + }, + { + "bufferView":14275, + "componentType":5126, + "count":192, + "type":"VEC3" + }, + { + "bufferView":14276, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":14277, + "componentType":5123, + "count":336, + "type":"SCALAR" + }, + { + "bufferView":14278, + "componentType":5126, + "count":60, + "max":[ + 3.7875120639801025, + 13.693793296813965, + 6.47288179397583 + ], + "min":[ + -3.787554979324341, + 0.00021409988403320312, + -6.472884178161621 + ], + "type":"VEC3" + }, + { + "bufferView":14279, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":14280, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":14281, + "componentType":5126, + "count":748, + "max":[ + 136.373779296875, + 174.96987915039062, + 128.9683074951172 + ], + "min":[ + -136.3739013671875, + 1.1425247192382812, + -128.86170959472656 + ], + "type":"VEC3" + }, + { + "bufferView":14282, + "componentType":5126, + "count":748, + "type":"VEC3" + }, + { + "bufferView":14283, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":14284, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":14285, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14286, + "componentType":5126, + "count":120, + "max":[ + 2752.00439453125, + 2819.530517578125, + 711.5361328125 + ], + "min":[ + -2752.0029296875, + -0.0001220703125, + -711.53515625 + ], + "type":"VEC3" + }, + { + "bufferView":14287, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":14288, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":14289, + "componentType":5126, + "count":574, + "max":[ + 159.29193115234375, + 32.8253059387207, + 159.2907257080078 + ], + "min":[ + -159.28961181640625, + 3.814697265625e-05, + -159.2908477783203 + ], + "type":"VEC3" + }, + { + "bufferView":14290, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":14291, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14292, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14293, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14294, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14295, + "componentType":5126, + "count":682, + "max":[ + 134.31640625, + 2974.83349609375, + 130.721435546875 + ], + "min":[ + -134.31640625, + 0, + -130.72096252441406 + ], + "type":"VEC3" + }, + { + "bufferView":14296, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":14297, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":14298, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14299, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14300, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14301, + "componentType":5126, + "count":588, + "max":[ + 181.71473693847656, + 187.20358276367188, + 158.3877716064453 + ], + "min":[ + -181.71339416503906, + -3.814697265625e-05, + -158.38772583007812 + ], + "type":"VEC3" + }, + { + "bufferView":14302, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":14303, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14304, + "componentType":5126, + "count":338, + "max":[ + 170.9052734375, + 156.9990234375, + 177.25439453125 + ], + "min":[ + -170.9052734375, + 21.2880859375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":14305, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":14306, + "componentType":5126, + "count":338, + "type":"VEC2" + }, + { + "bufferView":14307, + "componentType":5126, + "count":112, + "max":[ + 407.1002502441406, + 295.57421875, + 407.10205078125 + ], + "min":[ + -407.1002502441406, + 0, + -407.0983581542969 + ], + "type":"VEC3" + }, + { + "bufferView":14308, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":14309, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":14310, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14311, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14312, + "componentType":5126, + "count":122, + "max":[ + 20.428955078125, + 104.244140625, + 52.125 + ], + "min":[ + -20.4296875, + 0, + -52.1220703125 + ], + "type":"VEC3" + }, + { + "bufferView":14313, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":14314, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":14315, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 253.74371337890625 + ], + "min":[ + -463.990234375, + -8.255030479631387e-06, + -253.7421875 + ], + "type":"VEC3" + }, + { + "bufferView":14316, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14317, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14318, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14319, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14320, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":14321, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":14322, + "componentType":5126, + "count":52, + "max":[ + 161.98095703125, + 658.67578125, + 366.15234375 + ], + "min":[ + -161.97900390625, + 0, + -366.1533203125 + ], + "type":"VEC3" + }, + { + "bufferView":14323, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":14324, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":14325, + "componentType":5126, + "count":143, + "max":[ + 28.8017578125, + 913.683349609375, + 27.6650390625 + ], + "min":[ + -28.80126953125, + 0, + -27.66552734375 + ], + "type":"VEC3" + }, + { + "bufferView":14326, + "componentType":5126, + "count":143, + "type":"VEC3" + }, + { + "bufferView":14327, + "componentType":5126, + "count":143, + "type":"VEC2" + }, + { + "bufferView":14328, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":14329, + "componentType":5126, + "count":355, + "max":[ + 171.2998046875, + 184.8037109375, + 176.140625 + ], + "min":[ + -171.296875, + 44.4560546875, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":14330, + "componentType":5126, + "count":355, + "type":"VEC3" + }, + { + "bufferView":14331, + "componentType":5126, + "count":355, + "type":"VEC2" + }, + { + "bufferView":14332, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":14333, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14334, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14335, + "componentType":5126, + "count":98, + "max":[ + 513.90576171875, + 141.07080078125, + 69.570068359375 + ], + "min":[ + -513.9091796875, + 0, + -69.570068359375 + ], + "type":"VEC3" + }, + { + "bufferView":14336, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":14337, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":14338, + "componentType":5123, + "count":204, + "type":"SCALAR" + }, + { + "bufferView":14339, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":14340, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14341, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14342, + "componentType":5126, + "count":112, + "max":[ + 101.75885009765625, + 150.655517578125, + 75.3271484375 + ], + "min":[ + -101.759033203125, + -0.0003662109375, + -75.32763671875 + ], + "type":"VEC3" + }, + { + "bufferView":14343, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":14344, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":14345, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":14346, + "componentType":5126, + "count":584, + "max":[ + 185.9182586669922, + 191.34947204589844, + 162.02883911132812 + ], + "min":[ + -185.91859436035156, + -0.00014495849609375, + -162.02877807617188 + ], + "type":"VEC3" + }, + { + "bufferView":14347, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":14348, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14349, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":14350, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14351, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14352, + "componentType":5126, + "count":600, + "max":[ + 152.2848663330078, + 32.825313568115234, + 152.28347778320312 + ], + "min":[ + -152.2821502685547, + 0.00012969970703125, + -152.28353881835938 + ], + "type":"VEC3" + }, + { + "bufferView":14353, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":14354, + "componentType":5126, + "count":343, + "max":[ + 171.298828125, + 184.80615234375, + 176.140625 + ], + "min":[ + -171.296875, + 44.45703125, + -176.14111328125 + ], + "type":"VEC3" + }, + { + "bufferView":14355, + "componentType":5126, + "count":343, + "type":"VEC3" + }, + { + "bufferView":14356, + "componentType":5126, + "count":343, + "type":"VEC2" + }, + { + "bufferView":14357, + "componentType":5126, + "count":334, + "max":[ + 10.67822265625, + 283.877197265625, + 60.74856185913086 + ], + "min":[ + -10.67822265625, + -1.52587890625e-05, + -60.75149154663086 + ], + "type":"VEC3" + }, + { + "bufferView":14358, + "componentType":5126, + "count":334, + "type":"VEC3" + }, + { + "bufferView":14359, + "componentType":5126, + "count":334, + "type":"VEC2" + }, + { + "bufferView":14360, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":14361, + "componentType":5126, + "count":72, + "max":[ + 866.67041015625, + 1492.539794921875, + 22.500154495239258 + ], + "min":[ + -866.6709594726562, + 0, + -22.500308990478516 + ], + "type":"VEC3" + }, + { + "bufferView":14362, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":14363, + "componentType":5126, + "count":3152, + "max":[ + 6080.0009765625, + 2819.53076171875, + 1562.47998046875 + ], + "min":[ + -6080, + -0.0001220703125, + -1562.47802734375 + ], + "type":"VEC3" + }, + { + "bufferView":14364, + "componentType":5126, + "count":3152, + "type":"VEC3" + }, + { + "bufferView":14365, + "componentType":5126, + "count":3152, + "type":"VEC2" + }, + { + "bufferView":14366, + "componentType":5123, + "count":5472, + "type":"SCALAR" + }, + { + "bufferView":14367, + "componentType":5126, + "count":50, + "max":[ + 366.15283203125, + 658.67578125, + 161.97900390625 + ], + "min":[ + -366.15283203125, + 0, + -161.98095703125 + ], + "type":"VEC3" + }, + { + "bufferView":14368, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":14369, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":14370, + "componentType":5126, + "count":125, + "max":[ + 3.8606996536254883, + 15.442764282226562, + 7.721350193023682 + ], + "min":[ + -3.860643148422241, + 8.249282836914062e-05, + -7.721330165863037 + ], + "type":"VEC3" + }, + { + "bufferView":14371, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":14372, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":14373, + "componentType":5126, + "count":1420, + "max":[ + 244.46875, + 367.92938232421875, + 384.5793762207031 + ], + "min":[ + -244.466796875, + 0.0001068115234375, + -384.5820617675781 + ], + "type":"VEC3" + }, + { + "bufferView":14374, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":14375, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":14376, + "componentType":5126, + "count":72, + "max":[ + 771.3447875976562, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.34619140625, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":14377, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":14378, + "componentType":5126, + "count":168, + "max":[ + 54934.49609375, + 24.990116119384766, + 44918.49609375 + ], + "min":[ + -54934.49609375, + 0.00011730194091796875, + -44918.49609375 + ], + "type":"VEC3" + }, + { + "bufferView":14379, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":14380, + "componentType":5126, + "count":560, + "max":[ + 177.50819396972656, + 32.82530975341797, + 177.5097198486328 + ], + "min":[ + -177.5111541748047, + 8.0108642578125e-05, + -177.5096893310547 + ], + "type":"VEC3" + }, + { + "bufferView":14381, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":14382, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14383, + "componentType":5126, + "count":323, + "max":[ + 3.8607020378112793, + 15.442765235900879, + 7.72133207321167 + ], + "min":[ + -3.8606443405151367, + 8.296966552734375e-05, + -7.721349239349365 + ], + "type":"VEC3" + }, + { + "bufferView":14384, + "componentType":5126, + "count":323, + "type":"VEC3" + }, + { + "bufferView":14385, + "componentType":5126, + "count":323, + "type":"VEC2" + }, + { + "bufferView":14386, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":14387, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14388, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14389, + "componentType":5126, + "count":556, + "max":[ + 199.93199157714844, + 206.56509399414062, + 180.30648803710938 + ], + "min":[ + -199.93392944335938, + 1.395660400390625, + -168.02511596679688 + ], + "type":"VEC3" + }, + { + "bufferView":14390, + "componentType":5126, + "count":556, + "type":"VEC3" + }, + { + "bufferView":14391, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14392, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":14393, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14394, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14395, + "componentType":5126, + "count":112, + "max":[ + 106.49419403076172, + 317.7470703125, + 106.49419403076172 + ], + "min":[ + -106.49427795410156, + 7.62939453125e-05, + -106.49420928955078 + ], + "type":"VEC3" + }, + { + "bufferView":14396, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":14397, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.456298828125, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.00048828125, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":14398, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":14399, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":14400, + "componentType":5126, + "count":231, + "max":[ + 172.59521484375, + 185.23583984375, + 169.0704345703125 + ], + "min":[ + -172.598876953125, + 0, + -169.070556640625 + ], + "type":"VEC3" + }, + { + "bufferView":14401, + "componentType":5126, + "count":231, + "type":"VEC3" + }, + { + "bufferView":14402, + "componentType":5126, + "count":231, + "type":"VEC2" + }, + { + "bufferView":14403, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":14404, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":14405, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14406, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14407, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14408, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14409, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14410, + "componentType":5126, + "count":208, + "max":[ + 33.40234375, + 133.60888671875, + 66.80419921875 + ], + "min":[ + -33.402099609375, + 0, + -66.80419921875 + ], + "type":"VEC3" + }, + { + "bufferView":14411, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":14412, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":14413, + "componentType":5126, + "count":212, + "max":[ + 13.25390625, + 75.79581451416016, + 25.5072021484375 + ], + "min":[ + -13.2509765625, + 0.00018272490706294775, + -25.4969482421875 + ], + "type":"VEC3" + }, + { + "bufferView":14414, + "componentType":5126, + "count":212, + "type":"VEC3" + }, + { + "bufferView":14415, + "componentType":5126, + "count":212, + "type":"VEC2" + }, + { + "bufferView":14416, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":14417, + "componentType":5126, + "count":208, + "max":[ + 33.4022216796875, + 133.60888671875, + 66.80419921875 + ], + "min":[ + -33.4022216796875, + 0, + -66.80419921875 + ], + "type":"VEC3" + }, + { + "bufferView":14418, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":14419, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":14420, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":14421, + "componentType":5126, + "count":586, + "max":[ + 189.2086639404297, + 227.48583984375, + 173.01162719726562 + ], + "min":[ + -189.21136474609375, + 0.0001068115234375, + -173.01162719726562 + ], + "type":"VEC3" + }, + { + "bufferView":14422, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":14423, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14424, + "componentType":5126, + "count":560, + "max":[ + 192.92724609375, + 199.60464477539062, + 174.2375030517578 + ], + "min":[ + -192.9241180419922, + 1.3451309204101562, + -161.95716857910156 + ], + "type":"VEC3" + }, + { + "bufferView":14425, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":14426, + "componentType":5126, + "count":92, + "max":[ + 34.716796875, + 88.51513671875, + 25.14129638671875 + ], + "min":[ + -34.716796875, + 0, + -25.14013671875 + ], + "type":"VEC3" + }, + { + "bufferView":14427, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":14428, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":14429, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14430, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14431, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14432, + "componentType":5126, + "count":186, + "max":[ + 769.70703125, + 113.194580078125, + 56.59716796875 + ], + "min":[ + -769.71044921875, + 6.103515625e-05, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":14433, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":14434, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":14435, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":14436, + "componentType":5126, + "count":12, + "max":[ + 360.8974609375, + 341.145263671875, + 8.3466796875 + ], + "min":[ + -360.897216796875, + 0.0009765625, + -8.34423828125 + ], + "type":"VEC3" + }, + { + "bufferView":14437, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":14438, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":14439, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":14440, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":14441, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":14442, + "componentType":5126, + "count":136, + "max":[ + 239.7059326171875, + 131.9609375, + 242.8515625 + ], + "min":[ + -239.7059326171875, + 0, + -242.8525390625 + ], + "type":"VEC3" + }, + { + "bufferView":14443, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":14444, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":14445, + "componentType":5126, + "count":52, + "max":[ + 142.31884765625, + 608.220703125, + 391.7375183105469 + ], + "min":[ + -142.32373046875, + 0, + -391.7375793457031 + ], + "type":"VEC3" + }, + { + "bufferView":14446, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":14447, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":14448, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":14449, + "componentType":5126, + "count":602, + "max":[ + 159.70297241210938, + 193.0960693359375, + 146.10626220703125 + ], + "min":[ + -159.70167541503906, + -0.0002288818359375, + -146.10597229003906 + ], + "type":"VEC3" + }, + { + "bufferView":14450, + "componentType":5126, + "count":602, + "type":"VEC3" + }, + { + "bufferView":14451, + "componentType":5126, + "count":323, + "max":[ + 3.8607020378112793, + 15.442765235900879, + 7.72133207321167 + ], + "min":[ + -3.8606443405151367, + 8.296966552734375e-05, + -7.721349239349365 + ], + "type":"VEC3" + }, + { + "bufferView":14452, + "componentType":5126, + "count":323, + "type":"VEC3" + }, + { + "bufferView":14453, + "componentType":5126, + "count":323, + "type":"VEC2" + }, + { + "bufferView":14454, + "componentType":5126, + "count":566, + "max":[ + 153.6865997314453, + 32.82521057128906, + 153.6849365234375 + ], + "min":[ + -153.68331909179688, + 1.52587890625e-05, + -153.68499755859375 + ], + "type":"VEC3" + }, + { + "bufferView":14455, + "componentType":5126, + "count":566, + "type":"VEC3" + }, + { + "bufferView":14456, + "componentType":5126, + "count":24, + "max":[ + 584.6641235351562, + 50.00006103515625, + 253.7422637939453 + ], + "min":[ + -584.6640625, + -1.660953785176389e-05, + -253.74383544921875 + ], + "type":"VEC3" + }, + { + "bufferView":14457, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14458, + "componentType":5126, + "count":579, + "max":[ + 167.33013916015625, + 231.80068969726562, + 155.74110412597656 + ], + "min":[ + -160.12210083007812, + 34.01496887207031, + -143.80902099609375 + ], + "type":"VEC3" + }, + { + "bufferView":14459, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":14460, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14461, + "componentType":5126, + "count":118, + "max":[ + 31.290645599365234, + 15.510940551757812, + 6.1126251220703125 + ], + "min":[ + -31.290639877319336, + -1.430511474609375e-06, + -6.112091064453125 + ], + "type":"VEC3" + }, + { + "bufferView":14462, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":14463, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":14464, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51410675048828, + 43.588871002197266 + ], + "min":[ + -22.7275390625, + -7.62939453125e-06, + -43.589359283447266 + ], + "type":"VEC3" + }, + { + "bufferView":14465, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":14466, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":14467, + "componentType":5126, + "count":76, + "max":[ + 278.8669738769531, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8664245605469, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":14468, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":14469, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":14470, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14471, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14472, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14473, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":14474, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":14475, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":14476, + "componentType":5126, + "count":24, + "max":[ + 13.6923828125, + 40.78076171875, + 2279.094970703125 + ], + "min":[ + -13.69189453125, + 0, + -2279.09619140625 + ], + "type":"VEC3" + }, + { + "bufferView":14477, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14478, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14479, + "componentType":5126, + "count":56, + "max":[ + 217.041015625, + 520.125, + 29.79638671875 + ], + "min":[ + -217.04150390625, + 0, + -29.8006591796875 + ], + "type":"VEC3" + }, + { + "bufferView":14480, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":14481, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":14482, + "componentType":5126, + "count":528, + "max":[ + 722.72265625, + 2637.3974609375, + 19.80259895324707 + ], + "min":[ + -722.720703125, + 0, + -19.80333137512207 + ], + "type":"VEC3" + }, + { + "bufferView":14483, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":14484, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":14485, + "componentType":5126, + "count":588, + "max":[ + 185.91859436035156, + 192.64437866210938, + 168.1689910888672 + ], + "min":[ + -185.9182586669922, + 1.2948150634765625, + -155.888671875 + ], + "type":"VEC3" + }, + { + "bufferView":14486, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":14487, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14488, + "componentType":5126, + "count":127, + "max":[ + 40.60498046875, + 81.2109375, + 5725.87646484375 + ], + "min":[ + -40.60546875, + 0, + -5725.875 + ], + "type":"VEC3" + }, + { + "bufferView":14489, + "componentType":5126, + "count":127, + "type":"VEC3" + }, + { + "bufferView":14490, + "componentType":5126, + "count":127, + "type":"VEC2" + }, + { + "bufferView":14491, + "componentType":5126, + "count":590, + "max":[ + 159.28961181640625, + 165.0919189453125, + 138.96868896484375 + ], + "min":[ + -159.29193115234375, + 0.0001678466796875, + -138.96868896484375 + ], + "type":"VEC3" + }, + { + "bufferView":14492, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":14493, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14494, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14495, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14496, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14497, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14498, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14499, + "componentType":5126, + "count":8046, + "max":[ + 180.119140625, + 1010.39404296875, + 103.787109375 + ], + "min":[ + -180.12109375, + 12.32373046875, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":14500, + "componentType":5126, + "count":8046, + "type":"VEC3" + }, + { + "bufferView":14501, + "componentType":5126, + "count":8046, + "type":"VEC2" + }, + { + "bufferView":14502, + "componentType":5126, + "count":568, + "max":[ + 153.6865997314453, + 159.56365966796875, + 134.11392211914062 + ], + "min":[ + -153.68331909179688, + 8.392333984375e-05, + -134.11387634277344 + ], + "type":"VEC3" + }, + { + "bufferView":14503, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":14504, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14505, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14506, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14507, + "componentType":5126, + "count":577, + "max":[ + 185.1844482421875, + 222.79638671875, + 169.3427734375 + ], + "min":[ + -185.18800354003906, + -4.57763671875e-05, + -169.34246826171875 + ], + "type":"VEC3" + }, + { + "bufferView":14508, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":14509, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14510, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":14511, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14512, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14513, + "componentType":5126, + "count":7799, + "max":[ + 496.306884765625, + 427.46484375, + 103.7867431640625 + ], + "min":[ + -496.306396484375, + 0, + -103.7867431640625 + ], + "type":"VEC3" + }, + { + "bufferView":14514, + "componentType":5126, + "count":7799, + "type":"VEC3" + }, + { + "bufferView":14515, + "componentType":5126, + "count":7799, + "type":"VEC2" + }, + { + "bufferView":14516, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":14517, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14518, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14519, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58642578125 + ], + "min":[ + -46.2841796875, + 0, + -78.5849609375 + ], + "type":"VEC3" + }, + { + "bufferView":14520, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14521, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14522, + "componentType":5126, + "count":578, + "max":[ + 173.1155242919922, + 208.72781372070312, + 158.33628845214844 + ], + "min":[ + -173.11428833007812, + -0.0001983642578125, + -158.3353729248047 + ], + "type":"VEC3" + }, + { + "bufferView":14523, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":14524, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14525, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":14526, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":14527, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92926025390625, + 384.578857421875 + ], + "min":[ + -244.466796875, + 0, + -384.5805358886719 + ], + "type":"VEC3" + }, + { + "bufferView":14528, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":14529, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":14530, + "componentType":5126, + "count":580, + "max":[ + 183.4259796142578, + 253.9185791015625, + 170.41632080078125 + ], + "min":[ + -176.2164306640625, + 37.37504577636719, + -158.4853057861328 + ], + "type":"VEC3" + }, + { + "bufferView":14531, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":14532, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14533, + "componentType":5126, + "count":24, + "max":[ + 350, + 1016.5, + 350 + ], + "min":[ + -350, + 0, + -350 + ], + "type":"VEC3" + }, + { + "bufferView":14534, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14535, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14536, + "componentType":5126, + "count":136, + "max":[ + 80.153076171875, + 126.6884765625, + 49.03466796875 + ], + "min":[ + -80.153076171875, + 0, + -49.03564453125 + ], + "type":"VEC3" + }, + { + "bufferView":14537, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":14538, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":14539, + "componentType":5126, + "count":750, + "max":[ + 136.78468322753906, + 189.921142578125, + 129.50819396972656 + ], + "min":[ + -136.78651428222656, + -4.57763671875e-05, + -129.5082244873047 + ], + "type":"VEC3" + }, + { + "bufferView":14540, + "componentType":5126, + "count":750, + "type":"VEC3" + }, + { + "bufferView":14541, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":14542, + "componentType":5126, + "count":52, + "max":[ + 161.98095703125, + 658.67578125, + 366.15283203125 + ], + "min":[ + -161.97900390625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":14543, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":14544, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":14545, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":14546, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14547, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14548, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14549, + "componentType":5126, + "count":806, + "max":[ + 4.1328125, + 90.58740997314453, + 34.45752716064453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":14550, + "componentType":5126, + "count":806, + "type":"VEC3" + }, + { + "bufferView":14551, + "componentType":5126, + "count":806, + "type":"VEC2" + }, + { + "bufferView":14552, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":14553, + "componentType":5126, + "count":678, + "max":[ + 799.0390625, + 1068.857421875, + 103.86904907226562 + ], + "min":[ + -799.0390625, + 0, + -103.86807250976562 + ], + "type":"VEC3" + }, + { + "bufferView":14554, + "componentType":5126, + "count":678, + "type":"VEC3" + }, + { + "bufferView":14555, + "componentType":5126, + "count":678, + "type":"VEC2" + }, + { + "bufferView":14556, + "componentType":5126, + "count":168, + "max":[ + 769.70751953125, + 113.19482421875, + 56.59619140625 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.59765625 + ], + "type":"VEC3" + }, + { + "bufferView":14557, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":14558, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":14559, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":14560, + "componentType":5126, + "count":112, + "max":[ + 147.9810333251953, + 402.919921875, + 170.0755615234375 + ], + "min":[ + -147.9833221435547, + 20.407958984375, + -170.0752716064453 + ], + "type":"VEC3" + }, + { + "bufferView":14561, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":14562, + "componentType":5126, + "count":720, + "max":[ + 36.197998046875, + 520.969482421875, + 260.4848937988281 + ], + "min":[ + -36.197998046875, + -0.0003662109375, + -260.4848937988281 + ], + "type":"VEC3" + }, + { + "bufferView":14563, + "componentType":5126, + "count":720, + "type":"VEC3" + }, + { + "bufferView":14564, + "componentType":5126, + "count":580, + "max":[ + 174.70864868164062, + 32.82521057128906, + 174.7067108154297 + ], + "min":[ + -174.70492553710938, + 2.6702880859375e-05, + -174.70689392089844 + ], + "type":"VEC3" + }, + { + "bufferView":14565, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":14566, + "componentType":5126, + "count":230, + "max":[ + 174.40771484375, + 193.254638671875, + 169.0625 + ], + "min":[ + -174.408203125, + 0, + -169.0634765625 + ], + "type":"VEC3" + }, + { + "bufferView":14567, + "componentType":5126, + "count":230, + "type":"VEC3" + }, + { + "bufferView":14568, + "componentType":5126, + "count":230, + "type":"VEC2" + }, + { + "bufferView":14569, + "componentType":5126, + "count":596, + "max":[ + 161.04449462890625, + 107.70491027832031, + 167.69944763183594 + ], + "min":[ + -161.0426483154297, + 0.00022125244140625, + -167.69956970214844 + ], + "type":"VEC3" + }, + { + "bufferView":14570, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":14571, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":14572, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":14573, + "componentType":5126, + "count":8025, + "max":[ + 180.119140625, + 1010.39501953125, + 103.7861328125 + ], + "min":[ + -180.12109375, + 12.32470703125, + -103.7880859375 + ], + "type":"VEC3" + }, + { + "bufferView":14574, + "componentType":5126, + "count":8025, + "type":"VEC3" + }, + { + "bufferView":14575, + "componentType":5126, + "count":8025, + "type":"VEC2" + }, + { + "bufferView":14576, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":14577, + "componentType":5126, + "count":578, + "max":[ + 194.57476806640625, + 233.73831176757812, + 177.90367126464844 + ], + "min":[ + -194.57534790039062, + -6.103515625e-05, + -177.9034881591797 + ], + "type":"VEC3" + }, + { + "bufferView":14578, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":14579, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 463.990234375 + ], + "min":[ + -110.0000228881836, + 0, + -463.990234375 + ], + "type":"VEC3" + }, + { + "bufferView":14580, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14581, + "componentType":5126, + "count":592, + "max":[ + 140.9255828857422, + 171.21202087402344, + 128.9844970703125 + ], + "min":[ + -140.92384338378906, + 3.0517578125e-05, + -128.984375 + ], + "type":"VEC3" + }, + { + "bufferView":14582, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":14583, + "componentType":5126, + "count":244, + "max":[ + 400.0077209472656, + 1934.1334228515625, + 603.1022338867188 + ], + "min":[ + -400.009521484375, + 0.0001678466796875, + -603.1015625 + ], + "type":"VEC3" + }, + { + "bufferView":14584, + "componentType":5126, + "count":244, + "type":"VEC3" + }, + { + "bufferView":14585, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":14586, + "componentType":5126, + "count":590, + "max":[ + 138.66163635253906, + 202.30996704101562, + 124.24098205566406 + ], + "min":[ + -145.87022399902344, + 29.534652709960938, + -136.173828125 + ], + "type":"VEC3" + }, + { + "bufferView":14587, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":14588, + "componentType":5126, + "count":98, + "max":[ + 1.4143263101577759, + 10.51738452911377, + 5.258735656738281 + ], + "min":[ + -1.4143048524856567, + -9.012222290039062e-05, + -5.258738040924072 + ], + "type":"VEC3" + }, + { + "bufferView":14589, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":14590, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":14591, + "componentType":5126, + "count":112, + "max":[ + 160, + 2500, + 160 + ], + "min":[ + -160, + 0, + -160 + ], + "type":"VEC3" + }, + { + "bufferView":14592, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":14593, + "componentType":5126, + "count":168, + "max":[ + 769.70751953125, + 113.194580078125, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0, + -56.597412109375 + ], + "type":"VEC3" + }, + { + "bufferView":14594, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":14595, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":14596, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14597, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14598, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14599, + "componentType":5126, + "count":54, + "max":[ + 366.1533203125, + 696.755859375, + 123.615234375 + ], + "min":[ + -366.15234375, + 0, + -123.61328125 + ], + "type":"VEC3" + }, + { + "bufferView":14600, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":14601, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":14602, + "componentType":5126, + "count":60, + "max":[ + 3.787552833557129, + 14.031469345092773, + 5.548464298248291 + ], + "min":[ + -3.7875144481658936, + -3.2901763916015625e-05, + -5.548455715179443 + ], + "type":"VEC3" + }, + { + "bufferView":14603, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":14604, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":14605, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7293758392334 + ], + "min":[ + -43.587890625, + 5.7220458984375e-05, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":14606, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":14607, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":14608, + "componentType":5126, + "count":586, + "max":[ + 191.5229949951172, + 32.8251953125, + 191.52410888671875 + ], + "min":[ + -191.5255126953125, + 3.814697265625e-05, + -191.5244140625 + ], + "type":"VEC3" + }, + { + "bufferView":14609, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":14610, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14611, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":14612, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14613, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14614, + "componentType":5126, + "count":186, + "max":[ + 22.73046875, + 2370.382568359375, + 32.116981506347656 + ], + "min":[ + -22.728515625, + 0, + -32.113075256347656 + ], + "type":"VEC3" + }, + { + "bufferView":14615, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":14616, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":14617, + "componentType":5123, + "count":336, + "type":"SCALAR" + }, + { + "bufferView":14618, + "componentType":5126, + "count":60, + "max":[ + 3.787522315979004, + 14.031469345092773, + 5.548464298248291 + ], + "min":[ + -3.7875449657440186, + -3.2901763916015625e-05, + -5.548455715179443 + ], + "type":"VEC3" + }, + { + "bufferView":14619, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":14620, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":14621, + "componentType":5126, + "count":112, + "max":[ + 106.49421691894531, + 381.671142578125, + 171.66342163085938 + ], + "min":[ + -106.49431610107422, + 1.52587890625e-05, + -171.66342163085938 + ], + "type":"VEC3" + }, + { + "bufferView":14622, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":14623, + "componentType":5126, + "count":560, + "max":[ + 147.62930297851562, + 101.31221008300781, + 153.6849365234375 + ], + "min":[ + -147.63272094726562, + -4.57763671875e-05, + -153.68499755859375 + ], + "type":"VEC3" + }, + { + "bufferView":14624, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":14625, + "componentType":5126, + "count":586, + "max":[ + 199.82737731933594, + 276.4566345214844, + 185.37115478515625 + ], + "min":[ + -192.6165313720703, + 40.79902648925781, + -173.43923950195312 + ], + "type":"VEC3" + }, + { + "bufferView":14626, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":14627, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14628, + "componentType":5126, + "count":574, + "max":[ + 157.89076232910156, + 32.8253059387207, + 157.8892822265625 + ], + "min":[ + -157.88787841796875, + 3.814697265625e-05, + -157.8893585205078 + ], + "type":"VEC3" + }, + { + "bufferView":14629, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":14630, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14631, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14632, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14633, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14634, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14635, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14636, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14637, + "componentType":5126, + "count":588, + "max":[ + 180.3135223388672, + 185.82174682617188, + 157.17405700683594 + ], + "min":[ + -180.31166076660156, + 0.00016021728515625, + -157.1740264892578 + ], + "type":"VEC3" + }, + { + "bufferView":14638, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":14639, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14640, + "componentType":5126, + "count":337, + "max":[ + 170.90625, + 157.00390625, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":14641, + "componentType":5126, + "count":337, + "type":"VEC3" + }, + { + "bufferView":14642, + "componentType":5126, + "count":337, + "type":"VEC2" + }, + { + "bufferView":14643, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92938232421875, + 384.5793762207031 + ], + "min":[ + -244.4677734375, + 4.57763671875e-05, + -384.5820617675781 + ], + "type":"VEC3" + }, + { + "bufferView":14644, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":14645, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":14646, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":14647, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14648, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14649, + "componentType":5126, + "count":24, + "max":[ + 110.00011444091797, + 50, + 584.662109375 + ], + "min":[ + -110.00007629394531, + 0, + -584.666015625 + ], + "type":"VEC3" + }, + { + "bufferView":14650, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14651, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68524169921875 + ], + "min":[ + -15.4755859375, + 0, + -381.68817138671875 + ], + "type":"VEC3" + }, + { + "bufferView":14652, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14653, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14654, + "componentType":5126, + "count":50, + "max":[ + 142.32275390625, + 608.2197265625, + 391.736328125 + ], + "min":[ + -142.31982421875, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":14655, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":14656, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":14657, + "componentType":5126, + "count":587, + "max":[ + 137.32012939453125, + 200.46693420410156, + 123.01852416992188 + ], + "min":[ + -144.529296875, + 29.25487518310547, + -134.95028686523438 + ], + "type":"VEC3" + }, + { + "bufferView":14658, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":14659, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14660, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14661, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14662, + "componentType":5126, + "count":152, + "max":[ + 28.80078125, + 913.683837890625, + 27.665283203125 + ], + "min":[ + -28.80126953125, + 0, + -27.66552734375 + ], + "type":"VEC3" + }, + { + "bufferView":14663, + "componentType":5126, + "count":152, + "type":"VEC3" + }, + { + "bufferView":14664, + "componentType":5126, + "count":152, + "type":"VEC2" + }, + { + "bufferView":14665, + "componentType":5126, + "count":168, + "max":[ + 29.924560546875, + 1132.8153076171875, + 29.9249267578125 + ], + "min":[ + -29.92431640625, + 0, + -29.9241943359375 + ], + "type":"VEC3" + }, + { + "bufferView":14666, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":14667, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":14668, + "componentType":5126, + "count":346, + "max":[ + 171.298828125, + 184.80419921875, + 176.140625 + ], + "min":[ + -171.296875, + 44.45703125, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":14669, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":14670, + "componentType":5126, + "count":346, + "type":"VEC2" + }, + { + "bufferView":14671, + "componentType":5126, + "count":1392, + "max":[ + 12.50003719329834, + 362.87994384765625, + 512.4300537109375 + ], + "min":[ + -12.500016212463379, + -1.2874603271484375e-05, + -512.4300537109375 + ], + "type":"VEC3" + }, + { + "bufferView":14672, + "componentType":5126, + "count":1392, + "type":"VEC3" + }, + { + "bufferView":14673, + "componentType":5126, + "count":206, + "max":[ + 386.787109375, + 773.5765991210938, + 81.216796875 + ], + "min":[ + -386.7900390625, + -6.103515625e-05, + -81.2158203125 + ], + "type":"VEC3" + }, + { + "bufferView":14674, + "componentType":5126, + "count":206, + "type":"VEC3" + }, + { + "bufferView":14675, + "componentType":5126, + "count":206, + "type":"VEC2" + }, + { + "bufferView":14676, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14677, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14678, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14679, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":14680, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":14681, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":14682, + "componentType":5126, + "count":168, + "max":[ + 54934.49609375, + 24.990116119384766, + 44918.49609375 + ], + "min":[ + -54934.49609375, + 0.00011730194091796875, + -44918.49609375 + ], + "type":"VEC3" + }, + { + "bufferView":14683, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":14684, + "componentType":5126, + "count":96, + "max":[ + 332.39263916015625, + 70.273681640625, + 704.2724609375 + ], + "min":[ + -332.3908996582031, + 0, + -704.27197265625 + ], + "type":"VEC3" + }, + { + "bufferView":14685, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":14686, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":14687, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14688, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14689, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":14690, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":14691, + "componentType":5126, + "count":114, + "max":[ + 31.29315185546875, + 15.511141777038574, + 6.5030059814453125 + ], + "min":[ + -31.293134689331055, + 3.6716461181640625e-05, + -6.5020751953125 + ], + "type":"VEC3" + }, + { + "bufferView":14692, + "componentType":5126, + "count":114, + "type":"VEC3" + }, + { + "bufferView":14693, + "componentType":5126, + "count":114, + "type":"VEC2" + }, + { + "bufferView":14694, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":14695, + "componentType":5126, + "count":315, + "max":[ + 10.67822265625, + 283.877197265625, + 60.75100326538086 + ], + "min":[ + -10.67822265625, + -1.52587890625e-05, + -60.74905014038086 + ], + "type":"VEC3" + }, + { + "bufferView":14696, + "componentType":5126, + "count":315, + "type":"VEC3" + }, + { + "bufferView":14697, + "componentType":5126, + "count":315, + "type":"VEC2" + }, + { + "bufferView":14698, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":14699, + "componentType":5126, + "count":72, + "max":[ + 866.67041015625, + 1492.539794921875, + 22.500154495239258 + ], + "min":[ + -866.6709594726562, + 0, + -22.500349044799805 + ], + "type":"VEC3" + }, + { + "bufferView":14700, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":14701, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":14702, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":14703, + "componentType":5126, + "count":52, + "max":[ + 391.73828125, + 608.220703125, + 142.32080078125 + ], + "min":[ + -391.7373046875, + 0, + -142.32177734375 + ], + "type":"VEC3" + }, + { + "bufferView":14704, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":14705, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":14706, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":14707, + "componentType":5126, + "count":618, + "max":[ + 56.700828552246094, + 172.07469177246094, + 23.86005401611328 + ], + "min":[ + -56.70075988769531, + 7.62939453125e-05, + -23.860050201416016 + ], + "type":"VEC3" + }, + { + "bufferView":14708, + "componentType":5126, + "count":618, + "type":"VEC3" + }, + { + "bufferView":14709, + "componentType":5126, + "count":618, + "type":"VEC2" + }, + { + "bufferView":14710, + "componentType":5126, + "count":1420, + "max":[ + 433.12109375, + 367.9293212890625, + 90.004150390625 + ], + "min":[ + -433.119140625, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":14711, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":14712, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":14713, + "componentType":5126, + "count":4, + "max":[ + 698.884765625, + 2586.479248046875, + 0.0010806098580360413 + ], + "min":[ + -698.884765625, + 0, + 0.0006283745169639587 + ], + "type":"VEC3" + }, + { + "bufferView":14714, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14715, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14716, + "componentType":5126, + "count":6522, + "max":[ + 128.0606231689453, + 193.06546020507812, + 128.06063842773438 + ], + "min":[ + -128.06065368652344, + -0.00017547607421875, + -128.06065368652344 + ], + "type":"VEC3" + }, + { + "bufferView":14717, + "componentType":5126, + "count":6522, + "type":"VEC3" + }, + { + "bufferView":14718, + "componentType":5126, + "count":6522, + "type":"VEC2" + }, + { + "bufferView":14719, + "componentType":5126, + "count":564, + "max":[ + 176.10647583007812, + 32.82530975341797, + 176.10826110839844 + ], + "min":[ + -176.10997009277344, + 2.288818359375e-05, + -176.1082000732422 + ], + "type":"VEC3" + }, + { + "bufferView":14720, + "componentType":5126, + "count":564, + "type":"VEC3" + }, + { + "bufferView":14721, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14722, + "componentType":5126, + "count":1086, + "max":[ + 56.700801849365234, + 172.07467651367188, + 23.860069274902344 + ], + "min":[ + -56.70079803466797, + 6.866455078125e-05, + -23.86005401611328 + ], + "type":"VEC3" + }, + { + "bufferView":14723, + "componentType":5126, + "count":1086, + "type":"VEC3" + }, + { + "bufferView":14724, + "componentType":5126, + "count":1086, + "type":"VEC2" + }, + { + "bufferView":14725, + "componentType":5126, + "count":574, + "max":[ + 146.67794799804688, + 152.65367126464844, + 128.0454559326172 + ], + "min":[ + -146.6774139404297, + 0.0001068115234375, + -128.04537963867188 + ], + "type":"VEC3" + }, + { + "bufferView":14726, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":14727, + "componentType":5126, + "count":571, + "max":[ + 181.1634521484375, + 218.10679626464844, + 165.6735382080078 + ], + "min":[ + -181.16151428222656, + 0, + -165.67401123046875 + ], + "type":"VEC3" + }, + { + "bufferView":14728, + "componentType":5126, + "count":571, + "type":"VEC3" + }, + { + "bufferView":14729, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":14730, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14731, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14732, + "componentType":5126, + "count":340, + "max":[ + 115.3511962890625, + 230.70252990722656, + 13.560844421386719 + ], + "min":[ + -115.35124969482422, + 4.57763671875e-05, + -13.560546875 + ], + "type":"VEC3" + }, + { + "bufferView":14733, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":14734, + "componentType":5126, + "count":76, + "max":[ + 278.86651611328125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8672180175781, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":14735, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":14736, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":14737, + "componentType":5126, + "count":4, + "max":[ + 698.884765625, + 2586.479248046875, + 0.0021792426705360413 + ], + "min":[ + -698.884765625, + 0, + 0.0017270073294639587 + ], + "type":"VEC3" + }, + { + "bufferView":14738, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14739, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14740, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":14741, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14742, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14743, + "componentType":5126, + "count":601, + "max":[ + 146.71078491210938, + 213.36920166015625, + 131.57958984375 + ], + "min":[ + -153.9162139892578, + 31.214935302734375, + -143.51089477539062 + ], + "type":"VEC3" + }, + { + "bufferView":14744, + "componentType":5126, + "count":601, + "type":"VEC3" + }, + { + "bufferView":14745, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14746, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14747, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14748, + "componentType":5126, + "count":574, + "max":[ + 187.86717224121094, + 225.92266845703125, + 171.78868103027344 + ], + "min":[ + -187.87037658691406, + 7.62939453125e-05, + -171.78868103027344 + ], + "type":"VEC3" + }, + { + "bufferView":14749, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":14750, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14751, + "componentType":5126, + "count":122, + "max":[ + 16.8212890625, + 2131.26025390625, + 16.82171630859375 + ], + "min":[ + -16.8212890625, + -0.00030517578125, + -16.820556640625 + ], + "type":"VEC3" + }, + { + "bufferView":14752, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":14753, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":14754, + "componentType":5126, + "count":596, + "max":[ + 165.98907470703125, + 229.95770263671875, + 154.51803588867188 + ], + "min":[ + -158.78057861328125, + 33.73515319824219, + -142.58609008789062 + ], + "type":"VEC3" + }, + { + "bufferView":14755, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":14756, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14757, + "componentType":5126, + "count":582, + "max":[ + 201.33372497558594, + 32.82526779174805, + 201.33425903320312 + ], + "min":[ + -201.3351287841797, + 9.1552734375e-05, + -201.33462524414062 + ], + "type":"VEC3" + }, + { + "bufferView":14758, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":14759, + "componentType":5126, + "count":355, + "max":[ + 170.435546875, + 188.55517578125, + 176.2041015625 + ], + "min":[ + -170.43359375, + 45.29736328125, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":14760, + "componentType":5126, + "count":355, + "type":"VEC3" + }, + { + "bufferView":14761, + "componentType":5126, + "count":355, + "type":"VEC2" + }, + { + "bufferView":14762, + "componentType":5126, + "count":588, + "max":[ + 172.69406127929688, + 112.24990844726562, + 176.10813903808594 + ], + "min":[ + -165.48817443847656, + 0.7097244262695312, + -176.1083221435547 + ], + "type":"VEC3" + }, + { + "bufferView":14763, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":14764, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14765, + "componentType":5126, + "count":582, + "max":[ + 171.77279663085938, + 112.81846618652344, + 178.9110565185547 + ], + "min":[ + -171.77450561523438, + 4.57763671875e-05, + -178.9112548828125 + ], + "type":"VEC3" + }, + { + "bufferView":14766, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":14767, + "componentType":5126, + "count":648, + "max":[ + 615.01025390625, + 2510.925048828125, + 347.26513671875 + ], + "min":[ + -615.01171875, + 0, + -347.2666015625 + ], + "type":"VEC3" + }, + { + "bufferView":14768, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":14769, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":14770, + "componentType":5126, + "count":12, + "max":[ + 360.8974609375, + 341.1453857421875, + 8.34716796875 + ], + "min":[ + -360.897216796875, + 0.0010986328125, + -8.34423828125 + ], + "type":"VEC3" + }, + { + "bufferView":14771, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":14772, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":14773, + "componentType":5126, + "count":233, + "max":[ + 169.070556640625, + 185.23583984375, + 172.59716796875 + ], + "min":[ + -169.0704345703125, + 0, + -172.596923828125 + ], + "type":"VEC3" + }, + { + "bufferView":14774, + "componentType":5126, + "count":233, + "type":"VEC3" + }, + { + "bufferView":14775, + "componentType":5126, + "count":233, + "type":"VEC2" + }, + { + "bufferView":14776, + "componentType":5126, + "count":1086, + "max":[ + 56.700801849365234, + 172.07467651367188, + 23.860069274902344 + ], + "min":[ + -56.70079803466797, + 6.866455078125e-05, + -23.86005401611328 + ], + "type":"VEC3" + }, + { + "bufferView":14777, + "componentType":5126, + "count":1086, + "type":"VEC3" + }, + { + "bufferView":14778, + "componentType":5126, + "count":1086, + "type":"VEC2" + }, + { + "bufferView":14779, + "componentType":5126, + "count":600, + "max":[ + 152.2848663330078, + 32.825313568115234, + 152.28347778320312 + ], + "min":[ + -152.2821502685547, + 0.00012969970703125, + -152.28353881835938 + ], + "type":"VEC3" + }, + { + "bufferView":14780, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":14781, + "componentType":5126, + "count":285, + "max":[ + 23.607620239257812, + 267.57562255859375, + 221.6019744873047 + ], + "min":[ + -23.222036361694336, + -7.62939453125e-06, + -221.56423950195312 + ], + "type":"VEC3" + }, + { + "bufferView":14782, + "componentType":5126, + "count":285, + "type":"VEC3" + }, + { + "bufferView":14783, + "componentType":5126, + "count":285, + "type":"VEC2" + }, + { + "bufferView":14784, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51428985595703, + 43.588871002197266 + ], + "min":[ + -22.7275390625, + 0.00011444091796875, + -43.589359283447266 + ], + "type":"VEC3" + }, + { + "bufferView":14785, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":14786, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":14787, + "componentType":5126, + "count":570, + "max":[ + 186.1079864501953, + 118.70060729980469, + 190.12266540527344 + ], + "min":[ + -178.89952087402344, + 0.7683029174804688, + -190.1229248046875 + ], + "type":"VEC3" + }, + { + "bufferView":14788, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":14789, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14790, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14791, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14792, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14793, + "componentType":5126, + "count":113, + "max":[ + 86.3843994140625, + 4362.8408203125, + 86.38427734375 + ], + "min":[ + -86.3843994140625, + -0.0001220703125, + -86.38427734375 + ], + "type":"VEC3" + }, + { + "bufferView":14794, + "componentType":5126, + "count":113, + "type":"VEC3" + }, + { + "bufferView":14795, + "componentType":5126, + "count":113, + "type":"VEC2" + }, + { + "bufferView":14796, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14797, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14798, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14799, + "componentType":5126, + "count":582, + "max":[ + 169.08973693847656, + 111.53993225097656, + 176.10826110839844 + ], + "min":[ + -169.09249877929688, + -0.00023651123046875, + -176.1082000732422 + ], + "type":"VEC3" + }, + { + "bufferView":14800, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":14801, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14802, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92926025390625, + 384.5786437988281 + ], + "min":[ + -244.466796875, + 4.57763671875e-05, + -384.5815734863281 + ], + "type":"VEC3" + }, + { + "bufferView":14803, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":14804, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":14805, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.5849609375 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.58642578125 + ], + "type":"VEC3" + }, + { + "bufferView":14806, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14807, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14808, + "componentType":5126, + "count":24, + "max":[ + 126.0732421875, + 130.123046875, + 27.19384765625 + ], + "min":[ + -126.0732421875, + 0, + -27.193359375 + ], + "type":"VEC3" + }, + { + "bufferView":14809, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14810, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14811, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14812, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14813, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14814, + "componentType":5126, + "count":682, + "max":[ + 134.31640625, + 2974.83349609375, + 130.7232666015625 + ], + "min":[ + -134.3125, + 0, + -130.72096252441406 + ], + "type":"VEC3" + }, + { + "bufferView":14815, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":14816, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":14817, + "componentType":5126, + "count":586, + "max":[ + 157.88787841796875, + 163.70953369140625, + 137.75498962402344 + ], + "min":[ + -157.89076232910156, + -0.0001220703125, + -137.7549591064453 + ], + "type":"VEC3" + }, + { + "bufferView":14818, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":14819, + "componentType":5126, + "count":583, + "max":[ + 178.48040771484375, + 214.98049926757812, + 163.22799682617188 + ], + "min":[ + -178.4795379638672, + 0, + -163.22769165039062 + ], + "type":"VEC3" + }, + { + "bufferView":14820, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":14821, + "componentType":5126, + "count":305, + "max":[ + 10.6787109375, + 283.877197265625, + 60.75100326538086 + ], + "min":[ + -10.677734375, + -1.52587890625e-05, + -60.74905014038086 + ], + "type":"VEC3" + }, + { + "bufferView":14822, + "componentType":5126, + "count":305, + "type":"VEC3" + }, + { + "bufferView":14823, + "componentType":5126, + "count":305, + "type":"VEC2" + }, + { + "bufferView":14824, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":14825, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14826, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14827, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14828, + "componentType":5126, + "count":8039, + "max":[ + 180.1181640625, + 1010.39501953125, + 103.787109375 + ], + "min":[ + -180.12109375, + 12.32470703125, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":14829, + "componentType":5126, + "count":8039, + "type":"VEC3" + }, + { + "bufferView":14830, + "componentType":5126, + "count":8039, + "type":"VEC2" + }, + { + "bufferView":14831, + "componentType":5126, + "count":574, + "max":[ + 152.2848663330078, + 158.18145751953125, + 132.9002227783203 + ], + "min":[ + -152.2821502685547, + -0.00020599365234375, + -132.90011596679688 + ], + "type":"VEC3" + }, + { + "bufferView":14832, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":14833, + "componentType":5126, + "count":344, + "max":[ + 170.435546875, + 188.558349609375, + 176.20556640625 + ], + "min":[ + -170.43359375, + 45.296630859375, + -176.20166015625 + ], + "type":"VEC3" + }, + { + "bufferView":14834, + "componentType":5126, + "count":344, + "type":"VEC3" + }, + { + "bufferView":14835, + "componentType":5126, + "count":344, + "type":"VEC2" + }, + { + "bufferView":14836, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":14837, + "componentType":5126, + "count":572, + "max":[ + 148.07968139648438, + 155.0575408935547, + 135.3996124267578 + ], + "min":[ + -148.07859802246094, + 1.021881103515625, + -123.11851501464844 + ], + "type":"VEC3" + }, + { + "bufferView":14838, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":14839, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14840, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14841, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14842, + "componentType":5126, + "count":573, + "max":[ + 183.84349060058594, + 221.23318481445312, + 168.11984252929688 + ], + "min":[ + -183.84649658203125, + 1.52587890625e-05, + -168.1194610595703 + ], + "type":"VEC3" + }, + { + "bufferView":14843, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":14844, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14845, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":14846, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14847, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14848, + "componentType":5126, + "count":577, + "max":[ + 154.3369140625, + 104.50856018066406, + 160.6921844482422 + ], + "min":[ + -154.33766174316406, + 0.00014495849609375, + -160.69229125976562 + ], + "type":"VEC3" + }, + { + "bufferView":14849, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":14850, + "componentType":5126, + "count":592, + "max":[ + 193.23326110839844, + 124.03791046142578, + 201.33425903320312 + ], + "min":[ + -193.2343292236328, + -8.392333984375e-05, + -201.33462524414062 + ], + "type":"VEC3" + }, + { + "bufferView":14851, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":14852, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14853, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":14854, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":14855, + "componentType":5126, + "count":598, + "max":[ + 150.31234741210938, + 102.59085083007812, + 156.4878387451172 + ], + "min":[ + -150.31463623046875, + 0.00012969970703125, + -156.48789978027344 + ], + "type":"VEC3" + }, + { + "bufferView":14856, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":14857, + "componentType":5126, + "count":4, + "max":[ + 698.8828125, + 2586.4794921875, + 0.0012026801705360413 + ], + "min":[ + -698.884765625, + 0, + 0.0006283745169639587 + ], + "type":"VEC3" + }, + { + "bufferView":14858, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14859, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14860, + "componentType":5126, + "count":587, + "max":[ + 182.08499145507812, + 252.07566833496094, + 169.19329833984375 + ], + "min":[ + -174.87493896484375, + 37.095245361328125, + -157.26234436035156 + ], + "type":"VEC3" + }, + { + "bufferView":14861, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":14862, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14863, + "componentType":5126, + "count":128, + "max":[ + 58.8193359375, + 162.824951171875, + 49.03466796875 + ], + "min":[ + -58.822265625, + 6.845703125, + -49.03564453125 + ], + "type":"VEC3" + }, + { + "bufferView":14864, + "componentType":5126, + "count":128, + "type":"VEC3" + }, + { + "bufferView":14865, + "componentType":5126, + "count":128, + "type":"VEC2" + }, + { + "bufferView":14866, + "componentType":5126, + "count":112, + "max":[ + 147.98110961914062, + 382.51190185546875, + 170.07537841796875 + ], + "min":[ + -147.98336791992188, + 4.57763671875e-05, + -170.07540893554688 + ], + "type":"VEC3" + }, + { + "bufferView":14867, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":14868, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14869, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14870, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14871, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":14872, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14873, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14874, + "componentType":5126, + "count":332, + "max":[ + 170.90625, + 157.00439453125, + 177.25439453125 + ], + "min":[ + -170.9033203125, + 21.289306640625, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":14875, + "componentType":5126, + "count":332, + "type":"VEC3" + }, + { + "bufferView":14876, + "componentType":5126, + "count":332, + "type":"VEC2" + }, + { + "bufferView":14877, + "componentType":5126, + "count":586, + "max":[ + 162.3860626220703, + 108.34397888183594, + 169.10089111328125 + ], + "min":[ + -162.38360595703125, + 6.103515625e-05, + -169.10105895996094 + ], + "type":"VEC3" + }, + { + "bufferView":14878, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":14879, + "componentType":5126, + "count":228, + "max":[ + 115.14118957519531, + 317.5784912109375, + 160.0547637939453 + ], + "min":[ + -115.14126586914062, + 0.0001373291015625, + -160.0548858642578 + ], + "type":"VEC3" + }, + { + "bufferView":14880, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":14881, + "componentType":5126, + "count":823, + "max":[ + 4.130859375, + 90.58753204345703, + 34.45703887939453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":14882, + "componentType":5126, + "count":823, + "type":"VEC3" + }, + { + "bufferView":14883, + "componentType":5126, + "count":823, + "type":"VEC2" + }, + { + "bufferView":14884, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":14885, + "componentType":5126, + "count":865, + "max":[ + 7.779087543487549, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778796672821045, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":14886, + "componentType":5126, + "count":865, + "type":"VEC3" + }, + { + "bufferView":14887, + "componentType":5126, + "count":865, + "type":"VEC2" + }, + { + "bufferView":14888, + "componentType":5126, + "count":338, + "max":[ + 115.14120483398438, + 235.95407104492188, + 69.11639404296875 + ], + "min":[ + -115.14122772216797, + 25.712726593017578, + -69.11636352539062 + ], + "type":"VEC3" + }, + { + "bufferView":14889, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":14890, + "componentType":5126, + "count":229, + "max":[ + 172.59716796875, + 185.23583984375, + 169.0703125 + ], + "min":[ + -172.596923828125, + 0, + -169.0703125 + ], + "type":"VEC3" + }, + { + "bufferView":14891, + "componentType":5126, + "count":229, + "type":"VEC3" + }, + { + "bufferView":14892, + "componentType":5126, + "count":229, + "type":"VEC2" + }, + { + "bufferView":14893, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":14894, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":14895, + "componentType":5126, + "count":8040, + "max":[ + 180.1181640625, + 1010.39501953125, + 103.7861328125 + ], + "min":[ + -180.12109375, + 12.32470703125, + -103.7880859375 + ], + "type":"VEC3" + }, + { + "bufferView":14896, + "componentType":5126, + "count":8040, + "type":"VEC3" + }, + { + "bufferView":14897, + "componentType":5126, + "count":8040, + "type":"VEC2" + }, + { + "bufferView":14898, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":14899, + "componentType":5126, + "count":570, + "max":[ + 187.32032775878906, + 32.82526779174805, + 187.3198699951172 + ], + "min":[ + -187.31944274902344, + 1.1444091796875e-05, + -187.3199005126953 + ], + "type":"VEC3" + }, + { + "bufferView":14900, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":14901, + "componentType":5126, + "count":588, + "max":[ + 142.26708984375, + 172.77529907226562, + 130.2075653076172 + ], + "min":[ + -142.26475524902344, + 3.0517578125e-05, + -130.20729064941406 + ], + "type":"VEC3" + }, + { + "bufferView":14902, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":14903, + "componentType":5126, + "count":648, + "max":[ + 615.01025390625, + 2510.925048828125, + 347.265625 + ], + "min":[ + -615.01171875, + 0, + -347.26611328125 + ], + "type":"VEC3" + }, + { + "bufferView":14904, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":14905, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":14906, + "componentType":5126, + "count":98, + "max":[ + 1.4143146276474, + 10.51738452911377, + 5.258759021759033 + ], + "min":[ + -1.4143165349960327, + -9.012222290039062e-05, + -5.25871467590332 + ], + "type":"VEC3" + }, + { + "bufferView":14907, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":14908, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":14909, + "componentType":5126, + "count":112, + "max":[ + 133.31993103027344, + 49.08277893066406, + 133.3199462890625 + ], + "min":[ + -133.31993103027344, + 3.0517578125e-05, + -133.3199920654297 + ], + "type":"VEC3" + }, + { + "bufferView":14910, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":14911, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":14912, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76666259765625, + 78.58447265625 + ], + "min":[ + -46.2822265625, + 0, + -78.586669921875 + ], + "type":"VEC3" + }, + { + "bufferView":14913, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14914, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14915, + "componentType":5126, + "count":76, + "max":[ + 278.8669738769531, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8664245605469, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":14916, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":14917, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":14918, + "componentType":5126, + "count":280, + "max":[ + 2496, + 100, + 2496 + ], + "min":[ + -2496, + 0, + -2496 + ], + "type":"VEC3" + }, + { + "bufferView":14919, + "componentType":5126, + "count":280, + "type":"VEC3" + }, + { + "bufferView":14920, + "componentType":5126, + "count":280, + "type":"VEC2" + }, + { + "bufferView":14921, + "componentType":5123, + "count":804, + "type":"SCALAR" + }, + { + "bufferView":14922, + "componentType":5126, + "count":791, + "max":[ + 4.130859375, + 90.58740997314453, + 34.45752716064453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":14923, + "componentType":5126, + "count":791, + "type":"VEC3" + }, + { + "bufferView":14924, + "componentType":5126, + "count":791, + "type":"VEC2" + }, + { + "bufferView":14925, + "componentType":5126, + "count":580, + "max":[ + 152.2821502685547, + 158.18148803710938, + 132.90008544921875 + ], + "min":[ + -152.2848663330078, + -0.000213623046875, + -132.9001922607422 + ], + "type":"VEC3" + }, + { + "bufferView":14926, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":14927, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14928, + "componentType":5126, + "count":576, + "max":[ + 191.89173889160156, + 230.61215209960938, + 175.45767211914062 + ], + "min":[ + -191.89334106445312, + 0.0001220703125, + -175.4575653076172 + ], + "type":"VEC3" + }, + { + "bufferView":14929, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":14930, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14931, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14932, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14933, + "componentType":5126, + "count":340, + "max":[ + 115.14122009277344, + 235.95401000976562, + 69.11585998535156 + ], + "min":[ + -115.14122009277344, + 25.712646484375, + -69.11674499511719 + ], + "type":"VEC3" + }, + { + "bufferView":14934, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":14935, + "componentType":5126, + "count":24, + "max":[ + 584.662109375, + 50.00004577636719, + 110.00007629394531 + ], + "min":[ + -584.666015625, + 1.390804027323611e-05, + -110.00010681152344 + ], + "type":"VEC3" + }, + { + "bufferView":14936, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14937, + "componentType":5126, + "count":142, + "max":[ + 3.4517822265625, + 18.94533348083496, + 9.472748756408691 + ], + "min":[ + -3.451784133911133, + -0.00011920928955078125, + -9.472702026367188 + ], + "type":"VEC3" + }, + { + "bufferView":14938, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":14939, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":14940, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7293758392334 + ], + "min":[ + -43.587890625, + 0.000118255615234375, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":14941, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":14942, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":14943, + "componentType":5126, + "count":1156, + "max":[ + 65.60057067871094, + 185.22500610351562, + 5.788394927978516 + ], + "min":[ + -65.60050964355469, + -3.814697265625e-05, + -5.788308143615723 + ], + "type":"VEC3" + }, + { + "bufferView":14944, + "componentType":5126, + "count":1156, + "type":"VEC3" + }, + { + "bufferView":14945, + "componentType":5126, + "count":1156, + "type":"VEC2" + }, + { + "bufferView":14946, + "componentType":5123, + "count":3930, + "type":"SCALAR" + }, + { + "bufferView":14947, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":14948, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":14949, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":14950, + "componentType":5126, + "count":142, + "max":[ + 3.45184326171875, + 18.94533348083496, + 9.472748756408691 + ], + "min":[ + -3.451723098754883, + -0.00011920928955078125, + -9.472702026367188 + ], + "type":"VEC3" + }, + { + "bufferView":14951, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":14952, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":14953, + "componentType":5126, + "count":584, + "max":[ + 198.18081665039062, + 274.1933288574219, + 183.86944580078125 + ], + "min":[ + -190.9693145751953, + 40.45503234863281, + -171.93765258789062 + ], + "type":"VEC3" + }, + { + "bufferView":14954, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":14955, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14956, + "componentType":5126, + "count":586, + "max":[ + 156.4895782470703, + 32.8253059387207, + 156.4878387451172 + ], + "min":[ + -156.4861602783203, + 3.814697265625e-05, + -156.48789978027344 + ], + "type":"VEC3" + }, + { + "bufferView":14957, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":14958, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14959, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14960, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14961, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14962, + "componentType":5126, + "count":742, + "max":[ + 136.373779296875, + 46.09920883178711, + 136.37379455566406 + ], + "min":[ + -136.37388610839844, + -4.00543212890625e-05, + -136.37380981445312 + ], + "type":"VEC3" + }, + { + "bufferView":14963, + "componentType":5126, + "count":742, + "type":"VEC3" + }, + { + "bufferView":14964, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14965, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14966, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14967, + "componentType":5126, + "count":597, + "max":[ + 144.95013427734375, + 100.0341796875, + 150.8820343017578 + ], + "min":[ + -144.94680786132812, + 0.0001678466796875, + -150.882080078125 + ], + "type":"VEC3" + }, + { + "bufferView":14968, + "componentType":5126, + "count":597, + "type":"VEC3" + }, + { + "bufferView":14969, + "componentType":5126, + "count":60, + "max":[ + 3.787522315979004, + 14.031469345092773, + 5.548464298248291 + ], + "min":[ + -3.7875449657440186, + -3.2901763916015625e-05, + -5.548455715179443 + ], + "type":"VEC3" + }, + { + "bufferView":14970, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":14971, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":14972, + "componentType":5126, + "count":578, + "max":[ + 178.91232299804688, + 184.439453125, + 155.96035766601562 + ], + "min":[ + -178.90992736816406, + -0.00012969970703125, + -155.9603271484375 + ], + "type":"VEC3" + }, + { + "bufferView":14973, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":14974, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":14975, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":14976, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14977, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14978, + "componentType":5126, + "count":24, + "max":[ + 110.00023651123047, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534163448028266, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":14979, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14980, + "componentType":5126, + "count":76, + "max":[ + 279.10015869140625, + 3543.081787109375, + 278.8695068359375 + ], + "min":[ + -279.1027526855469, + 0, + -278.8675842285156 + ], + "type":"VEC3" + }, + { + "bufferView":14981, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":14982, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":14983, + "componentType":5126, + "count":811, + "max":[ + 4.130859375, + 90.58753204345703, + 34.45508575439453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":14984, + "componentType":5126, + "count":811, + "type":"VEC3" + }, + { + "bufferView":14985, + "componentType":5126, + "count":811, + "type":"VEC2" + }, + { + "bufferView":14986, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":14987, + "componentType":5126, + "count":865, + "max":[ + 7.779087543487549, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778796672821045, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":14988, + "componentType":5126, + "count":865, + "type":"VEC3" + }, + { + "bufferView":14989, + "componentType":5126, + "count":865, + "type":"VEC2" + }, + { + "bufferView":14990, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76708984375, + 78.58544921875 + ], + "min":[ + -46.2822265625, + 0, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":14991, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14992, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":14993, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":14994, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":14995, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":14996, + "componentType":5126, + "count":648, + "max":[ + 615.010986328125, + 2510.92529296875, + 347.26611328125 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.266357421875 + ], + "type":"VEC3" + }, + { + "bufferView":14997, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":14998, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":14999, + "componentType":5126, + "count":199, + "max":[ + 41.33154296875, + 82.662109375, + 2288.80078125 + ], + "min":[ + -41.33349609375, + 0.00048828125, + -2288.800048828125 + ], + "type":"VEC3" + }, + { + "bufferView":15000, + "componentType":5126, + "count":199, + "type":"VEC3" + }, + { + "bufferView":15001, + "componentType":5126, + "count":199, + "type":"VEC2" + }, + { + "bufferView":15002, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":15003, + "componentType":5126, + "count":578, + "max":[ + 190.123779296875, + 196.82052612304688, + 171.8101043701172 + ], + "min":[ + -190.12181091308594, + 1.3250274658203125, + -159.52975463867188 + ], + "type":"VEC3" + }, + { + "bufferView":15004, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":15005, + "componentType":5126, + "count":595, + "max":[ + 152.07296752929688, + 220.74203491210938, + 136.47134399414062 + ], + "min":[ + -159.2841796875, + 32.335121154785156, + -148.4029541015625 + ], + "type":"VEC3" + }, + { + "bufferView":15006, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":15007, + "componentType":5126, + "count":351, + "max":[ + 171.2998046875, + 184.80810546875, + 176.140625 + ], + "min":[ + -171.296875, + 44.45654296875, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":15008, + "componentType":5126, + "count":351, + "type":"VEC3" + }, + { + "bufferView":15009, + "componentType":5126, + "count":351, + "type":"VEC2" + }, + { + "bufferView":15010, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15011, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15012, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15013, + "componentType":5126, + "count":24, + "max":[ + 253.74276733398438, + 50, + 703.126953125 + ], + "min":[ + -253.74319458007812, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":15014, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15015, + "componentType":5126, + "count":578, + "max":[ + 175.79733276367188, + 211.85409545898438, + 160.7818603515625 + ], + "min":[ + -175.79751586914062, + 1.52587890625e-05, + -160.7818603515625 + ], + "type":"VEC3" + }, + { + "bufferView":15016, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":15017, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15018, + "componentType":5126, + "count":226, + "max":[ + 118.72099304199219, + 230.7025146484375, + 115.35121154785156 + ], + "min":[ + -118.72061157226562, + 3.0517578125e-05, + -115.35125732421875 + ], + "type":"VEC3" + }, + { + "bufferView":15019, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":15020, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":15021, + "componentType":5126, + "count":303, + "max":[ + 10.67822265625, + 283.877197265625, + 60.75051498413086 + ], + "min":[ + -10.67822265625, + -1.52587890625e-05, + -60.74953842163086 + ], + "type":"VEC3" + }, + { + "bufferView":15022, + "componentType":5126, + "count":303, + "type":"VEC3" + }, + { + "bufferView":15023, + "componentType":5126, + "count":303, + "type":"VEC2" + }, + { + "bufferView":15024, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":15025, + "componentType":5126, + "count":46, + "max":[ + 366.15283203125, + 658.67578125, + 161.97900390625 + ], + "min":[ + -366.15283203125, + 0, + -161.98095703125 + ], + "type":"VEC3" + }, + { + "bufferView":15026, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":15027, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":15028, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15029, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15030, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15031, + "componentType":5126, + "count":50, + "max":[ + 142.32275390625, + 608.220703125, + 391.73681640625 + ], + "min":[ + -142.31982421875, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":15032, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":15033, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":15034, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":15035, + "componentType":5126, + "count":559, + "max":[ + 19.802734375, + 2637.3974609375, + 722.721923828125 + ], + "min":[ + -19.802734375, + 0, + -722.721435546875 + ], + "type":"VEC3" + }, + { + "bufferView":15036, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":15037, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":15038, + "componentType":5126, + "count":1420, + "max":[ + 245.234375, + 367.92938232421875, + 384.140625 + ], + "min":[ + -245.232421875, + 0, + -384.1410827636719 + ], + "type":"VEC3" + }, + { + "bufferView":15039, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":15040, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":15041, + "componentType":5126, + "count":600, + "max":[ + 154.7560272216797, + 224.42843627929688, + 138.917236328125 + ], + "min":[ + -161.966064453125, + 32.89521026611328, + -150.8489990234375 + ], + "type":"VEC3" + }, + { + "bufferView":15042, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":15043, + "componentType":5126, + "count":112, + "max":[ + 206.1422119140625, + 149.6708984375, + 206.1431427001953 + ], + "min":[ + -206.1422119140625, + 0.001953125, + -206.14126586914062 + ], + "type":"VEC3" + }, + { + "bufferView":15044, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":15045, + "componentType":5126, + "count":60, + "max":[ + 3.7875118255615234, + 13.000020980834961, + 3.74242901802063 + ], + "min":[ + -3.7875607013702393, + -2.3352227799477987e-05, + -3.742408275604248 + ], + "type":"VEC3" + }, + { + "bufferView":15046, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":15047, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":15048, + "componentType":5126, + "count":591, + "max":[ + 167.74822998046875, + 202.47500610351562, + 153.44390869140625 + ], + "min":[ + -167.75157165527344, + -0.0001373291015625, + -153.4441680908203 + ], + "type":"VEC3" + }, + { + "bufferView":15049, + "componentType":5126, + "count":591, + "type":"VEC3" + }, + { + "bufferView":15050, + "componentType":5126, + "count":73, + "max":[ + 1657.5760498046875, + 1983.967529296875, + 2338.062255859375 + ], + "min":[ + -1657.575927734375, + -0.0002288818359375, + -2338.061279296875 + ], + "type":"VEC3" + }, + { + "bufferView":15051, + "componentType":5126, + "count":73, + "type":"VEC3" + }, + { + "bufferView":15052, + "componentType":5126, + "count":73, + "type":"VEC2" + }, + { + "bufferView":15053, + "componentType":5126, + "count":580, + "max":[ + 174.70864868164062, + 32.82521057128906, + 174.7068328857422 + ], + "min":[ + -174.70492553710938, + 2.6702880859375e-05, + -174.70677185058594 + ], + "type":"VEC3" + }, + { + "bufferView":15054, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":15055, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15056, + "componentType":5126, + "count":50, + "max":[ + 142.32080078125, + 608.220703125, + 391.73779296875 + ], + "min":[ + -142.32177734375, + 0, + -391.73779296875 + ], + "type":"VEC3" + }, + { + "bufferView":15057, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":15058, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":15059, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":15060, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15061, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15062, + "componentType":5126, + "count":336, + "max":[ + 45.85673904418945, + 228.16928100585938, + 115.62042236328125 + ], + "min":[ + -45.85807800292969, + -6.103515625e-05, + -115.62029266357422 + ], + "type":"VEC3" + }, + { + "bufferView":15063, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":15064, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":15065, + "componentType":5126, + "count":4, + "max":[ + 698.884765625, + 2586.479248046875, + 0.00022611767053604126 + ], + "min":[ + -698.88671875, + 0, + -0.00022611767053604126 + ], + "type":"VEC3" + }, + { + "bufferView":15066, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15067, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15068, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":15069, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15070, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15071, + "componentType":5126, + "count":97, + "max":[ + 31.27215576171875, + 267.8876953125, + 51.7431640625 + ], + "min":[ + -31.228271484375, + 0, + -51.58349609375 + ], + "type":"VEC3" + }, + { + "bufferView":15072, + "componentType":5126, + "count":97, + "type":"VEC3" + }, + { + "bufferView":15073, + "componentType":5126, + "count":97, + "type":"VEC2" + }, + { + "bufferView":15074, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76708984375, + 78.586181640625 + ], + "min":[ + -46.2822265625, + 0, + -78.5849609375 + ], + "type":"VEC3" + }, + { + "bufferView":15075, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15076, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15077, + "componentType":5126, + "count":72, + "max":[ + 22.50006103515625, + 1492.539794921875, + 771.3447875976562 + ], + "min":[ + -22.500253677368164, + 0, + -771.34619140625 + ], + "type":"VEC3" + }, + { + "bufferView":15078, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":15079, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15080, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15081, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15082, + "componentType":5126, + "count":262, + "max":[ + 169.0634765625, + 193.25537109375, + 174.408203125 + ], + "min":[ + -169.0625, + 0.00048828125, + -174.408203125 + ], + "type":"VEC3" + }, + { + "bufferView":15083, + "componentType":5126, + "count":262, + "type":"VEC3" + }, + { + "bufferView":15084, + "componentType":5126, + "count":262, + "type":"VEC2" + }, + { + "bufferView":15085, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":15086, + "componentType":5126, + "count":92, + "max":[ + 34.716796875, + 88.515625, + 25.14129638671875 + ], + "min":[ + -34.716796875, + 0.000244140625, + -25.14013671875 + ], + "type":"VEC3" + }, + { + "bufferView":15087, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":15088, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":15089, + "componentType":5126, + "count":570, + "max":[ + 191.5255126953125, + 198.21255493164062, + 173.02392578125 + ], + "min":[ + -191.5229949951172, + 1.3350982666015625, + -160.74334716796875 + ], + "type":"VEC3" + }, + { + "bufferView":15090, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":15091, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15092, + "componentType":5126, + "count":24, + "max":[ + 10.958126068115234, + 361.9337158203125, + 59.810508728027344 + ], + "min":[ + -10.958074569702148, + -9.1552734375e-05, + -59.810970306396484 + ], + "type":"VEC3" + }, + { + "bufferView":15093, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15094, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15095, + "componentType":5126, + "count":559, + "max":[ + 224.27151489257812, + 447.5828857421875, + 223.7913818359375 + ], + "min":[ + -224.27151489257812, + 0.0001068115234375, + -223.79139709472656 + ], + "type":"VEC3" + }, + { + "bufferView":15096, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":15097, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":15098, + "componentType":5126, + "count":68, + "max":[ + 126.45947265625, + 32.2489013671875, + 30.265625 + ], + "min":[ + -126.459716796875, + 0.0010986328125, + -30.26416015625 + ], + "type":"VEC3" + }, + { + "bufferView":15099, + "componentType":5126, + "count":68, + "type":"VEC3" + }, + { + "bufferView":15100, + "componentType":5126, + "count":68, + "type":"VEC2" + }, + { + "bufferView":15101, + "componentType":5123, + "count":132, + "type":"SCALAR" + }, + { + "bufferView":15102, + "componentType":5126, + "count":167, + "max":[ + 57.79645919799805, + 61.74176025390625, + 45.56758499145508 + ], + "min":[ + -57.79677200317383, + 5.340576171875e-05, + -45.56761169433594 + ], + "type":"VEC3" + }, + { + "bufferView":15103, + "componentType":5126, + "count":167, + "type":"VEC3" + }, + { + "bufferView":15104, + "componentType":5126, + "count":167, + "type":"VEC2" + }, + { + "bufferView":15105, + "componentType":5126, + "count":573, + "max":[ + 150.8831329345703, + 32.8253173828125, + 150.8820343017578 + ], + "min":[ + -150.88096618652344, + 1.52587890625e-05, + -150.882080078125 + ], + "type":"VEC3" + }, + { + "bufferView":15106, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":15107, + "componentType":5126, + "count":119, + "max":[ + 31.290660858154297, + 15.511075973510742, + 6.11236572265625 + ], + "min":[ + -31.290639877319336, + -1.430511474609375e-06, + -6.1124725341796875 + ], + "type":"VEC3" + }, + { + "bufferView":15108, + "componentType":5126, + "count":119, + "type":"VEC3" + }, + { + "bufferView":15109, + "componentType":5126, + "count":119, + "type":"VEC2" + }, + { + "bufferView":15110, + "componentType":5126, + "count":598, + "max":[ + 165.069091796875, + 199.34866333007812, + 150.99827575683594 + ], + "min":[ + -165.06565856933594, + -0.0001678466796875, + -150.99777221679688 + ], + "type":"VEC3" + }, + { + "bufferView":15111, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":15112, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15113, + "componentType":5126, + "count":76, + "max":[ + 278.86810302734375, + 3543.081787109375, + 279.1005859375 + ], + "min":[ + -278.86895751953125, + 0, + -279.10284423828125 + ], + "type":"VEC3" + }, + { + "bufferView":15114, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":15115, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":15116, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15117, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15118, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15119, + "componentType":5126, + "count":592, + "max":[ + 143.60861206054688, + 99.39439392089844, + 149.48057556152344 + ], + "min":[ + -143.60581970214844, + -6.103515625e-05, + -149.48060607910156 + ], + "type":"VEC3" + }, + { + "bufferView":15120, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":15121, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15122, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15123, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15124, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15125, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15126, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15127, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.51422119140625, + 22.7297420501709 + ], + "min":[ + -43.58984375, + 5.7220458984375e-05, + -22.725955963134766 + ], + "type":"VEC3" + }, + { + "bufferView":15128, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":15129, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":15130, + "componentType":5126, + "count":576, + "max":[ + 156.4861602783203, + 162.32781982421875, + 136.5413055419922 + ], + "min":[ + -156.4895782470703, + 0.00017547607421875, + -136.5412139892578 + ], + "type":"VEC3" + }, + { + "bufferView":15131, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":15132, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15133, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15134, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15135, + "componentType":5126, + "count":488, + "max":[ + 879.6591796875, + 587.032958984375, + 879.6616821289062 + ], + "min":[ + -879.6591796875, + -3.0517578125e-05, + -879.6587524414062 + ], + "type":"VEC3" + }, + { + "bufferView":15136, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":15137, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":15138, + "componentType":5126, + "count":326, + "max":[ + 170.90625, + 157.0029296875, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.2890625, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":15139, + "componentType":5126, + "count":326, + "type":"VEC3" + }, + { + "bufferView":15140, + "componentType":5126, + "count":326, + "type":"VEC2" + }, + { + "bufferView":15141, + "componentType":5126, + "count":581, + "max":[ + 150.8831329345703, + 156.79954528808594, + 131.68653869628906 + ], + "min":[ + -150.88096618652344, + -0.0001068115234375, + -131.68649291992188 + ], + "type":"VEC3" + }, + { + "bufferView":15142, + "componentType":5126, + "count":581, + "type":"VEC3" + }, + { + "bufferView":15143, + "componentType":5126, + "count":24, + "max":[ + 584.6640625, + 50.00001525878906, + 110.00007629394531 + ], + "min":[ + -584.6640625, + -1.660953785176389e-05, + -110.0001220703125 + ], + "type":"VEC3" + }, + { + "bufferView":15144, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15145, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.5140380859375, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":15146, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":15147, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":15148, + "componentType":5126, + "count":588, + "max":[ + 146.67794799804688, + 153.6654052734375, + 134.18597412109375 + ], + "min":[ + -146.6774139404297, + 1.0118560791015625, + -121.90481567382812 + ], + "type":"VEC3" + }, + { + "bufferView":15149, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":15150, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15151, + "componentType":5126, + "count":342, + "max":[ + 170.4345703125, + 188.55615234375, + 176.20361328125 + ], + "min":[ + -170.4345703125, + 45.29638671875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":15152, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":15153, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":15154, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15155, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15156, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15157, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7259578704834 + ], + "min":[ + -43.58984375, + 5.7220458984375e-05, + -22.729740142822266 + ], + "type":"VEC3" + }, + { + "bufferView":15158, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":15159, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":15160, + "componentType":5126, + "count":322, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":15161, + "componentType":5126, + "count":322, + "type":"VEC3" + }, + { + "bufferView":15162, + "componentType":5126, + "count":322, + "type":"VEC2" + }, + { + "bufferView":15163, + "componentType":5126, + "count":563, + "max":[ + 182.50253295898438, + 219.67007446289062, + 166.8969268798828 + ], + "min":[ + -182.5049591064453, + 3.0517578125e-05, + -166.89642333984375 + ], + "type":"VEC3" + }, + { + "bufferView":15164, + "componentType":5126, + "count":563, + "type":"VEC3" + }, + { + "bufferView":15165, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15166, + "componentType":5126, + "count":720, + "max":[ + 36.197998046875, + 520.969482421875, + 260.4848937988281 + ], + "min":[ + -36.197998046875, + -0.0003662109375, + -260.4848937988281 + ], + "type":"VEC3" + }, + { + "bufferView":15167, + "componentType":5126, + "count":720, + "type":"VEC3" + }, + { + "bufferView":15168, + "componentType":5126, + "count":584, + "max":[ + 201.1636962890625, + 128.77523803710938, + 209.6189422607422 + ], + "min":[ + -201.16160583496094, + 3.0517578125e-05, + -209.6193084716797 + ], + "type":"VEC3" + }, + { + "bufferView":15169, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":15170, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":15171, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15172, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15173, + "componentType":5126, + "count":573, + "max":[ + 180.7439727783203, + 250.232177734375, + 167.97125244140625 + ], + "min":[ + -173.53341674804688, + 36.81488037109375, + -156.0384063720703 + ], + "type":"VEC3" + }, + { + "bufferView":15174, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":15175, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15176, + "componentType":5126, + "count":210, + "max":[ + 1342.826171875, + 1646.6240234375, + 7.03369140625 + ], + "min":[ + -1342.828125, + 0, + -7.033203125 + ], + "type":"VEC3" + }, + { + "bufferView":15177, + "componentType":5126, + "count":210, + "type":"VEC3" + }, + { + "bufferView":15178, + "componentType":5126, + "count":210, + "type":"VEC2" + }, + { + "bufferView":15179, + "componentType":5126, + "count":587, + "max":[ + 164.1466827392578, + 237.33001708984375, + 147.47784423828125 + ], + "min":[ + -171.35311889648438, + 34.85478973388672, + -159.41018676757812 + ], + "type":"VEC3" + }, + { + "bufferView":15180, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":15181, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15182, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15183, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15184, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15185, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":15186, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":15187, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":15188, + "componentType":5126, + "count":224, + "max":[ + 118.7210693359375, + 230.70263671875, + 115.35122680664062 + ], + "min":[ + -118.72067260742188, + -6.103515625e-05, + -115.35127258300781 + ], + "type":"VEC3" + }, + { + "bufferView":15189, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":15190, + "componentType":5126, + "count":24, + "max":[ + 584.662109375, + 50.00001525878906, + 110.00007629394531 + ], + "min":[ + -584.666015625, + -1.6609539670753293e-05, + -110.0000991821289 + ], + "type":"VEC3" + }, + { + "bufferView":15191, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15192, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51410675048828, + 43.587894439697266 + ], + "min":[ + -22.7275390625, + -7.62939453125e-06, + -43.590335845947266 + ], + "type":"VEC3" + }, + { + "bufferView":15193, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":15194, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":15195, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":15196, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15197, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15198, + "componentType":5126, + "count":682, + "max":[ + 134.31640625, + 2974.83349609375, + 130.721435546875 + ], + "min":[ + -134.31640625, + 0, + -130.72096252441406 + ], + "type":"VEC3" + }, + { + "bufferView":15199, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":15200, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":15201, + "componentType":5126, + "count":247, + "max":[ + 172.5966796875, + 185.23486328125, + 169.0712890625 + ], + "min":[ + -172.59716796875, + -0.00048828125, + -169.0693359375 + ], + "type":"VEC3" + }, + { + "bufferView":15202, + "componentType":5126, + "count":247, + "type":"VEC3" + }, + { + "bufferView":15203, + "componentType":5126, + "count":247, + "type":"VEC2" + }, + { + "bufferView":15204, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15205, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15206, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15207, + "componentType":5126, + "count":96, + "max":[ + 73.4791030883789, + 205.1731414794922, + 990.6383056640625 + ], + "min":[ + -73.47884368896484, + 0.000217437744140625, + -990.638671875 + ], + "type":"VEC3" + }, + { + "bufferView":15208, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":15209, + "componentType":5126, + "count":578, + "max":[ + 188.72206115722656, + 32.82521057128906, + 188.72132873535156 + ], + "min":[ + -188.72061157226562, + 6.866455078125e-05, + -188.72134399414062 + ], + "type":"VEC3" + }, + { + "bufferView":15210, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":15211, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15212, + "componentType":5126, + "count":602, + "max":[ + 159.70297241210938, + 193.0960693359375, + 146.10626220703125 + ], + "min":[ + -159.70167541503906, + -0.0002288818359375, + -146.10597229003906 + ], + "type":"VEC3" + }, + { + "bufferView":15213, + "componentType":5126, + "count":602, + "type":"VEC3" + }, + { + "bufferView":15214, + "componentType":5126, + "count":180, + "max":[ + 769.70703125, + 113.194580078125, + 56.59619140625 + ], + "min":[ + -769.71044921875, + 6.103515625e-05, + -56.5966796875 + ], + "type":"VEC3" + }, + { + "bufferView":15215, + "componentType":5126, + "count":180, + "type":"VEC3" + }, + { + "bufferView":15216, + "componentType":5126, + "count":180, + "type":"VEC2" + }, + { + "bufferView":15217, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":15218, + "componentType":5126, + "count":806, + "max":[ + 1.9772133827209473, + 36.3969841003418, + 18.19847297668457 + ], + "min":[ + -1.9772028923034668, + -7.62939453125e-06, + -18.198514938354492 + ], + "type":"VEC3" + }, + { + "bufferView":15219, + "componentType":5126, + "count":806, + "type":"VEC3" + }, + { + "bufferView":15220, + "componentType":5126, + "count":806, + "type":"VEC2" + }, + { + "bufferView":15221, + "componentType":5126, + "count":350, + "max":[ + 131.32887268066406, + 224.239990234375, + 138.1865234375 + ], + "min":[ + -131.32884216308594, + 3.361328125, + -138.1868896484375 + ], + "type":"VEC3" + }, + { + "bufferView":15222, + "componentType":5126, + "count":350, + "type":"VEC3" + }, + { + "bufferView":15223, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":15224, + "componentType":5126, + "count":584, + "max":[ + 187.8671875, + 120.83259582519531, + 195.7284698486328 + ], + "min":[ + -187.870361328125, + 9.918212890625e-05, + -195.7287139892578 + ], + "type":"VEC3" + }, + { + "bufferView":15225, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":15226, + "componentType":5126, + "count":112, + "max":[ + 101.05545806884766, + 73.49066162109375, + 101.05546569824219 + ], + "min":[ + -101.05545806884766, + 3.0517578125e-05, + -101.05547332763672 + ], + "type":"VEC3" + }, + { + "bufferView":15227, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":15228, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":15229, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15230, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15231, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15232, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15233, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15234, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15235, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15236, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15237, + "componentType":5126, + "count":88, + "max":[ + 58.8111572265625, + 124.20556640625, + 674.18505859375 + ], + "min":[ + -58.8118896484375, + 0, + -674.18359375 + ], + "type":"VEC3" + }, + { + "bufferView":15238, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":15239, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":15240, + "componentType":5126, + "count":1053, + "max":[ + 90.109375, + 76.19921875, + 125.22607421875 + ], + "min":[ + -90.10888671875, + 0, + -125.22607421875 + ], + "type":"VEC3" + }, + { + "bufferView":15241, + "componentType":5126, + "count":1053, + "type":"VEC3" + }, + { + "bufferView":15242, + "componentType":5126, + "count":1053, + "type":"VEC2" + }, + { + "bufferView":15243, + "componentType":5126, + "count":98, + "max":[ + 1.4143263101577759, + 10.517534255981445, + 5.258735656738281 + ], + "min":[ + -1.4143048524856567, + 6.008148193359375e-05, + -5.258738040924072 + ], + "type":"VEC3" + }, + { + "bufferView":15244, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":15245, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":15246, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":15247, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":15248, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":15249, + "componentType":5126, + "count":106, + "max":[ + 33.5791015625, + 2306.921630859375, + 508.42852783203125 + ], + "min":[ + -33.5791015625, + 0, + -508.42950439453125 + ], + "type":"VEC3" + }, + { + "bufferView":15250, + "componentType":5126, + "count":106, + "type":"VEC3" + }, + { + "bufferView":15251, + "componentType":5126, + "count":106, + "type":"VEC2" + }, + { + "bufferView":15252, + "componentType":5123, + "count":204, + "type":"SCALAR" + }, + { + "bufferView":15253, + "componentType":5126, + "count":60, + "max":[ + 3.7875256538391113, + 13.693792343139648, + 6.472907543182373 + ], + "min":[ + -3.7875406742095947, + 0.00021409988403320312, + -6.4728617668151855 + ], + "type":"VEC3" + }, + { + "bufferView":15254, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":15255, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":15256, + "componentType":5126, + "count":120, + "max":[ + 25.64990234375, + 2528.2978515625, + 1386.0146484375 + ], + "min":[ + -25.6494140625, + -0.0001220703125, + -1386.015625 + ], + "type":"VEC3" + }, + { + "bufferView":15257, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":15258, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":15259, + "componentType":5126, + "count":56, + "max":[ + 217.04052734375, + 520.125244140625, + 29.7984619140625 + ], + "min":[ + -217.04150390625, + 0.000244140625, + -29.798583984375 + ], + "type":"VEC3" + }, + { + "bufferView":15260, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":15261, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":15262, + "componentType":5126, + "count":152, + "max":[ + 503.900390625, + 59.56591796875, + 21.07904052734375 + ], + "min":[ + -503.9013671875, + 0, + -21.07806396484375 + ], + "type":"VEC3" + }, + { + "bufferView":15263, + "componentType":5126, + "count":152, + "type":"VEC3" + }, + { + "bufferView":15264, + "componentType":5126, + "count":152, + "type":"VEC2" + }, + { + "bufferView":15265, + "componentType":5126, + "count":648, + "max":[ + 615.01123046875, + 2510.92529296875, + 347.265625 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.266357421875 + ], + "type":"VEC3" + }, + { + "bufferView":15266, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":15267, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":15268, + "componentType":5126, + "count":288, + "max":[ + 10875.154296875, + 916.592529296875, + 2551.54833984375 + ], + "min":[ + -10875.15625, + 0.00042724609375, + -2551.54736328125 + ], + "type":"VEC3" + }, + { + "bufferView":15269, + "componentType":5126, + "count":288, + "type":"VEC3" + }, + { + "bufferView":15270, + "componentType":5123, + "count":1572, + "type":"SCALAR" + }, + { + "bufferView":15271, + "componentType":5126, + "count":345, + "max":[ + 171.298828125, + 184.8037109375, + 176.140625 + ], + "min":[ + -171.2978515625, + 44.4560546875, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":15272, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":15273, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":15274, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":15275, + "componentType":5126, + "count":690, + "max":[ + 150.83132934570312, + 174.3048095703125, + 143.72177124023438 + ], + "min":[ + -150.83401489257812, + 1.52587890625e-05, + -143.72178649902344 + ], + "type":"VEC3" + }, + { + "bufferView":15276, + "componentType":5126, + "count":690, + "type":"VEC3" + }, + { + "bufferView":15277, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68743896484375 + ], + "min":[ + -15.4755859375, + 0, + -381.68572998046875 + ], + "type":"VEC3" + }, + { + "bufferView":15278, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15279, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15280, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15281, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15282, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15283, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15284, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15285, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15286, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15287, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15288, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15289, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":15290, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15291, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15292, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15293, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15294, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15295, + "componentType":5126, + "count":576, + "max":[ + 177.5111541748047, + 183.05770874023438, + 154.74668884277344 + ], + "min":[ + -177.50819396972656, + 0.00011444091796875, + -154.74664306640625 + ], + "type":"VEC3" + }, + { + "bufferView":15296, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":15297, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15298, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 703.126953125 + ], + "min":[ + -110.00003814697266, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":15299, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15300, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51409912109375, + 22.7294979095459 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":15301, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":15302, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":15303, + "componentType":5126, + "count":76, + "max":[ + 279.0987243652344, + 3543.081787109375, + 278.8664855957031 + ], + "min":[ + -279.1011047363281, + 0, + -278.86700439453125 + ], + "type":"VEC3" + }, + { + "bufferView":15304, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":15305, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":15306, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15307, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15308, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15309, + "componentType":5126, + "count":112, + "max":[ + 346.1188049316406, + 203.4981689453125, + 346.1188659667969 + ], + "min":[ + -346.1188049316406, + 0, + -346.1190490722656 + ], + "type":"VEC3" + }, + { + "bufferView":15310, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":15311, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15312, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15313, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15314, + "componentType":5126, + "count":578, + "max":[ + 175.79733276367188, + 211.85409545898438, + 160.78147888183594 + ], + "min":[ + -175.79751586914062, + 1.52587890625e-05, + -160.78224182128906 + ], + "type":"VEC3" + }, + { + "bufferView":15315, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":15316, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15317, + "componentType":5126, + "count":7724, + "max":[ + 496.306640625, + 427.46484375, + 103.7867431640625 + ], + "min":[ + -496.306396484375, + 0, + -103.786865234375 + ], + "type":"VEC3" + }, + { + "bufferView":15318, + "componentType":5126, + "count":7724, + "type":"VEC3" + }, + { + "bufferView":15319, + "componentType":5126, + "count":7724, + "type":"VEC2" + }, + { + "bufferView":15320, + "componentType":5126, + "count":168, + "max":[ + 29.924560546875, + 1132.8153076171875, + 29.9249267578125 + ], + "min":[ + -29.92431640625, + 0, + -29.9241943359375 + ], + "type":"VEC3" + }, + { + "bufferView":15321, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":15322, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":15323, + "componentType":5126, + "count":232, + "max":[ + 169.06298828125, + 193.254638671875, + 174.40771484375 + ], + "min":[ + -169.0628662109375, + 0, + -174.408203125 + ], + "type":"VEC3" + }, + { + "bufferView":15324, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":15325, + "componentType":5126, + "count":232, + "type":"VEC2" + }, + { + "bufferView":15326, + "componentType":5126, + "count":24, + "max":[ + 746.8922729492188, + 296.20343017578125, + 764.0326538085938 + ], + "min":[ + -746.892578125, + 4.57763671875e-05, + -764.0325317382812 + ], + "type":"VEC3" + }, + { + "bufferView":15327, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15328, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15329, + "componentType":5126, + "count":329, + "max":[ + 170.90625, + 156.9990234375, + 177.25439453125 + ], + "min":[ + -170.9033203125, + 21.287841796875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":15330, + "componentType":5126, + "count":329, + "type":"VEC3" + }, + { + "bufferView":15331, + "componentType":5126, + "count":329, + "type":"VEC2" + }, + { + "bufferView":15332, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15333, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15334, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15335, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 703.126953125 + ], + "min":[ + -110.00003814697266, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":15336, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15337, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":15338, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15339, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15340, + "componentType":5126, + "count":343, + "max":[ + 10.67822265625, + 283.877197265625, + 60.75051498413086 + ], + "min":[ + -10.67822265625, + -1.52587890625e-05, + -60.74953842163086 + ], + "type":"VEC3" + }, + { + "bufferView":15341, + "componentType":5126, + "count":343, + "type":"VEC3" + }, + { + "bufferView":15342, + "componentType":5126, + "count":343, + "type":"VEC2" + }, + { + "bufferView":15343, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":15344, + "componentType":5126, + "count":52, + "max":[ + 366.1533203125, + 658.67578125, + 161.97900390625 + ], + "min":[ + -366.15234375, + 0, + -161.98095703125 + ], + "type":"VEC3" + }, + { + "bufferView":15345, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":15346, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":15347, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":15348, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":15349, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":15350, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":15351, + "componentType":5126, + "count":52, + "max":[ + 161.98095703125, + 658.67578125, + 366.15283203125 + ], + "min":[ + -161.97900390625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":15352, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":15353, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":15354, + "componentType":5126, + "count":618, + "max":[ + 56.700748443603516, + 172.07470703125, + 23.860042572021484 + ], + "min":[ + -56.70082092285156, + 5.340576171875e-05, + -23.860008239746094 + ], + "type":"VEC3" + }, + { + "bufferView":15355, + "componentType":5126, + "count":618, + "type":"VEC3" + }, + { + "bufferView":15356, + "componentType":5126, + "count":618, + "type":"VEC2" + }, + { + "bufferView":15357, + "componentType":5126, + "count":1420, + "max":[ + 244.466796875, + 367.92926025390625, + 384.578857421875 + ], + "min":[ + -244.46875, + 0, + -384.5805358886719 + ], + "type":"VEC3" + }, + { + "bufferView":15358, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":15359, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":15360, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15361, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15362, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15363, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15364, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15365, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15366, + "componentType":5126, + "count":60, + "max":[ + 3.7875263690948486, + 13.413311004638672, + 4.245928764343262 + ], + "min":[ + -3.787546396255493, + 0.00010930931603070349, + -4.2459025382995605 + ], + "type":"VEC3" + }, + { + "bufferView":15367, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":15368, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":15369, + "componentType":5126, + "count":586, + "max":[ + 173.30691528320312, + 32.82530975341797, + 173.3053741455078 + ], + "min":[ + -173.3037109375, + 9.1552734375e-05, + -173.30532836914062 + ], + "type":"VEC3" + }, + { + "bufferView":15370, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":15371, + "componentType":5126, + "count":50, + "max":[ + 142.32080078125, + 608.220703125, + 391.73681640625 + ], + "min":[ + -142.32177734375, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":15372, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":15373, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":15374, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":15375, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15376, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15377, + "componentType":5126, + "count":76, + "max":[ + 278.86651611328125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8672180175781, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":15378, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":15379, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":15380, + "componentType":5126, + "count":52, + "max":[ + 161.97900390625, + 658.67578125, + 366.15234375 + ], + "min":[ + -161.98095703125, + 0, + -366.1533203125 + ], + "type":"VEC3" + }, + { + "bufferView":15381, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":15382, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":15383, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":15384, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":15385, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15386, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15387, + "componentType":5126, + "count":338, + "max":[ + 170.435546875, + 188.55615234375, + 176.2041015625 + ], + "min":[ + -170.4345703125, + 45.29638671875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":15388, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":15389, + "componentType":5126, + "count":338, + "type":"VEC2" + }, + { + "bufferView":15390, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":15391, + "componentType":5126, + "count":56, + "max":[ + 115.15478515625, + 511.947509765625, + 147.15673828125 + ], + "min":[ + -115.15283203125, + 0, + -147.15576171875 + ], + "type":"VEC3" + }, + { + "bufferView":15392, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":15393, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":15394, + "componentType":5126, + "count":112, + "max":[ + 34.857242584228516, + 1878.334228515625, + 483.718017578125 + ], + "min":[ + -34.857261657714844, + 0, + -483.7185363769531 + ], + "type":"VEC3" + }, + { + "bufferView":15395, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":15396, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":15397, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92926025390625, + 384.58251953125 + ], + "min":[ + -244.4677734375, + -6.103515625e-05, + -384.5790710449219 + ], + "type":"VEC3" + }, + { + "bufferView":15398, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":15399, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":15400, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15401, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15402, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15403, + "componentType":5126, + "count":577, + "max":[ + 185.18801879882812, + 222.7963409423828, + 169.34271240234375 + ], + "min":[ + -185.1844482421875, + 3.0517578125e-05, + -169.34271240234375 + ], + "type":"VEC3" + }, + { + "bufferView":15404, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":15405, + "componentType":5126, + "count":78, + "max":[ + 144.1767578125, + 36.7650146484375, + 34.50543212890625 + ], + "min":[ + -144.177734375, + 0, + -34.504638671875 + ], + "type":"VEC3" + }, + { + "bufferView":15406, + "componentType":5126, + "count":78, + "type":"VEC3" + }, + { + "bufferView":15407, + "componentType":5126, + "count":78, + "type":"VEC2" + }, + { + "bufferView":15408, + "componentType":5126, + "count":92, + "max":[ + 30.450439453125, + 77.63818359375, + 22.0498046875 + ], + "min":[ + -30.4501953125, + 0.0009765625, + -22.052734375 + ], + "type":"VEC3" + }, + { + "bufferView":15409, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":15410, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":15411, + "componentType":5126, + "count":581, + "max":[ + 150.8831329345703, + 156.79954528808594, + 131.68653869628906 + ], + "min":[ + -150.88096618652344, + -0.0001068115234375, + -131.68649291992188 + ], + "type":"VEC3" + }, + { + "bufferView":15412, + "componentType":5126, + "count":581, + "type":"VEC3" + }, + { + "bufferView":15413, + "componentType":5126, + "count":1086, + "max":[ + 56.700870513916016, + 172.07470703125, + 23.860031127929688 + ], + "min":[ + -56.700721740722656, + 5.340576171875e-05, + -23.86003875732422 + ], + "type":"VEC3" + }, + { + "bufferView":15414, + "componentType":5126, + "count":1086, + "type":"VEC3" + }, + { + "bufferView":15415, + "componentType":5126, + "count":1086, + "type":"VEC2" + }, + { + "bufferView":15416, + "componentType":5126, + "count":227, + "max":[ + 7.85205078125, + 248.992431640625, + 53.28515625 + ], + "min":[ + -7.853515625, + 0.0001220703125, + -53.2841796875 + ], + "type":"VEC3" + }, + { + "bufferView":15417, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":15418, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":15419, + "componentType":5126, + "count":122, + "max":[ + 31.2906494140625, + 15.511200904846191, + 6.112579345703125 + ], + "min":[ + -31.29065704345703, + -1.239776611328125e-05, + -6.11273193359375 + ], + "type":"VEC3" + }, + { + "bufferView":15420, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":15421, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":15422, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":15423, + "componentType":5126, + "count":528, + "max":[ + 722.720703125, + 2637.3974609375, + 19.80296516418457 + ], + "min":[ + -722.72265625, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":15424, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":15425, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":15426, + "componentType":5126, + "count":586, + "max":[ + 170.50344848632812, + 177.3312530517578, + 154.81838989257812 + ], + "min":[ + -170.50135803222656, + 1.1837539672851562, + -142.53807067871094 + ], + "type":"VEC3" + }, + { + "bufferView":15427, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":15428, + "componentType":5126, + "count":60, + "max":[ + 3.7875099182128906, + 13.000264167785645, + 3.742408275604248 + ], + "min":[ + -3.7875568866729736, + 0.00022077560424804688, + -3.742424249649048 + ], + "type":"VEC3" + }, + { + "bufferView":15429, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":15430, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":15431, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":15432, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15433, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15434, + "componentType":5126, + "count":1023, + "max":[ + 29.78515625, + 254.306640625, + 90.10888671875 + ], + "min":[ + -29.787109375, + 1.31201171875, + -90.109375 + ], + "type":"VEC3" + }, + { + "bufferView":15435, + "componentType":5126, + "count":1023, + "type":"VEC3" + }, + { + "bufferView":15436, + "componentType":5126, + "count":1023, + "type":"VEC2" + }, + { + "bufferView":15437, + "componentType":5126, + "count":76, + "max":[ + 278.8669738769531, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8664245605469, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":15438, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":15439, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":15440, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15441, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15442, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15443, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.2841796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.2841796875 + ], + "type":"VEC3" + }, + { + "bufferView":15444, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":15445, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":15446, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.51416015625, + 22.7297420501709 + ], + "min":[ + -43.58984375, + -3.814697265625e-06, + -22.725955963134766 + ], + "type":"VEC3" + }, + { + "bufferView":15447, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":15448, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":15449, + "componentType":5126, + "count":582, + "max":[ + 155.0883331298828, + 160.94541931152344, + 135.32760620117188 + ], + "min":[ + -155.08447265625, + -0.00011444091796875, + -135.32757568359375 + ], + "type":"VEC3" + }, + { + "bufferView":15450, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":15451, + "componentType":5126, + "count":1020, + "max":[ + 831.5458984375, + 116.2335205078125, + 746.10498046875 + ], + "min":[ + -831.5458984375, + 0.000118255615234375, + -746.10205078125 + ], + "type":"VEC3" + }, + { + "bufferView":15452, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":15453, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":15454, + "componentType":5126, + "count":338, + "max":[ + 170.90625, + 157.00341796875, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":15455, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":15456, + "componentType":5126, + "count":338, + "type":"VEC2" + }, + { + "bufferView":15457, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":15458, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15459, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15460, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15461, + "componentType":5126, + "count":574, + "max":[ + 149.48141479492188, + 155.41775512695312, + 130.4728546142578 + ], + "min":[ + -149.47979736328125, + 0.00019073486328125, + -130.47276306152344 + ], + "type":"VEC3" + }, + { + "bufferView":15462, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":15463, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51409912109375, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":15464, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":15465, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":15466, + "componentType":5126, + "count":96, + "max":[ + 212.81607055664062, + 929.9837646484375, + 1136.57470703125 + ], + "min":[ + -212.81607055664062, + 0.000293731689453125, + -1136.57421875 + ], + "type":"VEC3" + }, + { + "bufferView":15467, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":15468, + "componentType":5126, + "count":596, + "max":[ + 164.8965301513672, + 170.61959838867188, + 143.82345581054688 + ], + "min":[ + -164.89663696289062, + -0.00014495849609375, + -143.8234100341797 + ], + "type":"VEC3" + }, + { + "bufferView":15469, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":15470, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15471, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15472, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15473, + "componentType":5126, + "count":342, + "max":[ + 170.435546875, + 188.55615234375, + 176.20361328125 + ], + "min":[ + -170.43359375, + 45.29638671875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":15474, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":15475, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":15476, + "componentType":5126, + "count":567, + "max":[ + 181.16151428222656, + 218.10684204101562, + 165.67393493652344 + ], + "min":[ + -181.16343688964844, + -7.62939453125e-05, + -165.67343139648438 + ], + "type":"VEC3" + }, + { + "bufferView":15477, + "componentType":5126, + "count":567, + "type":"VEC3" + }, + { + "bufferView":15478, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15479, + "componentType":5126, + "count":720, + "max":[ + 36.197998046875, + 520.969482421875, + 260.4848937988281 + ], + "min":[ + -36.197998046875, + -0.0003662109375, + -260.4848937988281 + ], + "type":"VEC3" + }, + { + "bufferView":15480, + "componentType":5126, + "count":720, + "type":"VEC3" + }, + { + "bufferView":15481, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15482, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15483, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15484, + "componentType":5126, + "count":72, + "max":[ + 22.50006103515625, + 1492.539794921875, + 771.3447875976562 + ], + "min":[ + -22.500253677368164, + 0, + -771.34619140625 + ], + "type":"VEC3" + }, + { + "bufferView":15485, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":15486, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":15487, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":15488, + "componentType":5126, + "count":570, + "max":[ + 202.81088256835938, + 243.335205078125, + 185.41188049316406 + ], + "min":[ + -202.80821228027344, + 6.103515625e-05, + -185.411865234375 + ], + "type":"VEC3" + }, + { + "bufferView":15489, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":15490, + "componentType":5126, + "count":113, + "max":[ + 24.390625, + 122.79886627197266, + 61.5888671875 + ], + "min":[ + -24.40625, + -0.001220703125, + -61.587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15491, + "componentType":5126, + "count":113, + "type":"VEC3" + }, + { + "bufferView":15492, + "componentType":5126, + "count":113, + "type":"VEC2" + }, + { + "bufferView":15493, + "componentType":5123, + "count":144, + "type":"SCALAR" + }, + { + "bufferView":15494, + "componentType":5126, + "count":576, + "max":[ + 179.40296936035156, + 248.3892059326172, + 166.74822998046875 + ], + "min":[ + -172.19186401367188, + 36.535186767578125, + -154.8154296875 + ], + "type":"VEC3" + }, + { + "bufferView":15495, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":15496, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15497, + "componentType":5126, + "count":7739, + "max":[ + 496.304931640625, + 427.4638671875, + 103.786865234375 + ], + "min":[ + -496.30810546875, + -0.0009765625, + -103.7869873046875 + ], + "type":"VEC3" + }, + { + "bufferView":15498, + "componentType":5126, + "count":7739, + "type":"VEC3" + }, + { + "bufferView":15499, + "componentType":5126, + "count":7739, + "type":"VEC2" + }, + { + "bufferView":15500, + "componentType":5126, + "count":120, + "max":[ + 299.458984375, + 2819.530517578125, + 1401.2998046875 + ], + "min":[ + -299.4609375, + -0.0001220703125, + -1401.302734375 + ], + "type":"VEC3" + }, + { + "bufferView":15501, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":15502, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":15503, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":15504, + "componentType":5126, + "count":128, + "max":[ + 14.75390625, + 1869.349365234375, + 14.754638671875 + ], + "min":[ + -14.75390625, + -0.00054931640625, + -14.753173828125 + ], + "type":"VEC3" + }, + { + "bufferView":15505, + "componentType":5126, + "count":128, + "type":"VEC3" + }, + { + "bufferView":15506, + "componentType":5126, + "count":128, + "type":"VEC2" + }, + { + "bufferView":15507, + "componentType":5126, + "count":4, + "max":[ + 171.00390625, + 901.5740966796875, + 1.3798828125 + ], + "min":[ + -171.01953125, + -0.00128173828125, + -1.37890625 + ], + "type":"VEC3" + }, + { + "bufferView":15508, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15509, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15510, + "componentType":5126, + "count":611, + "max":[ + 143.6085968017578, + 174.33847045898438, + 131.43038940429688 + ], + "min":[ + -143.6058349609375, + 4.57763671875e-05, + -131.430419921875 + ], + "type":"VEC3" + }, + { + "bufferView":15511, + "componentType":5126, + "count":611, + "type":"VEC3" + }, + { + "bufferView":15512, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15513, + "componentType":5126, + "count":580, + "max":[ + 146.67794799804688, + 153.6654052734375, + 134.18548583984375 + ], + "min":[ + -146.6774139404297, + 1.0118484497070312, + -121.90530395507812 + ], + "type":"VEC3" + }, + { + "bufferView":15514, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":15515, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15516, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15517, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15518, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15519, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15520, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15521, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15522, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15523, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15524, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.073486328125 + ], + "type":"VEC3" + }, + { + "bufferView":15525, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15526, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15527, + "componentType":5126, + "count":135, + "max":[ + 14.75341796875, + 1869.35009765625, + 14.755126953125 + ], + "min":[ + -14.75537109375, + 6.103515625e-05, + -14.752685546875 + ], + "type":"VEC3" + }, + { + "bufferView":15528, + "componentType":5126, + "count":135, + "type":"VEC3" + }, + { + "bufferView":15529, + "componentType":5126, + "count":135, + "type":"VEC2" + }, + { + "bufferView":15530, + "componentType":5126, + "count":816, + "max":[ + 4.130859375, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45801544189453 + ], + "type":"VEC3" + }, + { + "bufferView":15531, + "componentType":5126, + "count":816, + "type":"VEC3" + }, + { + "bufferView":15532, + "componentType":5126, + "count":816, + "type":"VEC2" + }, + { + "bufferView":15533, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":15534, + "componentType":5126, + "count":248, + "max":[ + 173.28125, + 188.23828125, + 169.1005859375 + ], + "min":[ + -173.28125, + 0, + -169.1025390625 + ], + "type":"VEC3" + }, + { + "bufferView":15535, + "componentType":5126, + "count":248, + "type":"VEC3" + }, + { + "bufferView":15536, + "componentType":5126, + "count":248, + "type":"VEC2" + }, + { + "bufferView":15537, + "componentType":5126, + "count":56, + "max":[ + 217.04248046875, + 520.125244140625, + 29.7989501953125 + ], + "min":[ + -217.03955078125, + 0.000244140625, + -29.798095703125 + ], + "type":"VEC3" + }, + { + "bufferView":15538, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":15539, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":15540, + "componentType":5126, + "count":1020, + "max":[ + 831.546875, + 116.2335205078125, + 746.10498046875 + ], + "min":[ + -831.544921875, + 0.000118255615234375, + -746.10205078125 + ], + "type":"VEC3" + }, + { + "bufferView":15541, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":15542, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":15543, + "componentType":5126, + "count":96, + "max":[ + 820.9476318359375, + 205.17288208007812, + 73.47864532470703 + ], + "min":[ + -820.9443359375, + 7.62939453125e-06, + -73.4786376953125 + ], + "type":"VEC3" + }, + { + "bufferView":15544, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":15545, + "componentType":5126, + "count":72, + "max":[ + 22.50006103515625, + 1492.539794921875, + 771.3447875976562 + ], + "min":[ + -22.500253677368164, + 0, + -771.34619140625 + ], + "type":"VEC3" + }, + { + "bufferView":15546, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":15547, + "componentType":5126, + "count":590, + "max":[ + 190.123779296875, + 32.82526779174805, + 190.12278747558594 + ], + "min":[ + -190.12181091308594, + 6.866455078125e-05, + -190.122802734375 + ], + "type":"VEC3" + }, + { + "bufferView":15548, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":15549, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15550, + "componentType":5126, + "count":76, + "max":[ + 278.8667297363281, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8666687011719, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":15551, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":15552, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":15553, + "componentType":5126, + "count":559, + "max":[ + 722.720703125, + 2637.3974609375, + 19.80259895324707 + ], + "min":[ + -722.72265625, + 0, + -19.80333137512207 + ], + "type":"VEC3" + }, + { + "bufferView":15554, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":15555, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":15556, + "componentType":5126, + "count":1810, + "max":[ + 91.37366485595703, + 182.74732971191406, + 6.498554229736328 + ], + "min":[ + -91.3736343383789, + 1.52587890625e-05, + -6.498502731323242 + ], + "type":"VEC3" + }, + { + "bufferView":15557, + "componentType":5126, + "count":1810, + "type":"VEC3" + }, + { + "bufferView":15558, + "componentType":5126, + "count":1810, + "type":"VEC2" + }, + { + "bufferView":15559, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.58544921875 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":15560, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15561, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15562, + "componentType":5126, + "count":592, + "max":[ + 153.41448974609375, + 222.5848846435547, + 137.69430541992188 + ], + "min":[ + -160.6251678466797, + 32.614845275878906, + -149.62600708007812 + ], + "type":"VEC3" + }, + { + "bufferView":15563, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":15564, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15565, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15566, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15567, + "componentType":5126, + "count":112, + "max":[ + 101.05545806884766, + 73.49069213867188, + 101.05546569824219 + ], + "min":[ + -101.05545806884766, + 6.103515625e-05, + -101.05547332763672 + ], + "type":"VEC3" + }, + { + "bufferView":15568, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":15569, + "componentType":5126, + "count":204, + "max":[ + 2404.19970703125, + 2528.2978515625, + 25.6484375 + ], + "min":[ + -2404.199462890625, + -0.0001220703125, + -25.650390625 + ], + "type":"VEC3" + }, + { + "bufferView":15570, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":15571, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":15572, + "componentType":5123, + "count":306, + "type":"SCALAR" + }, + { + "bufferView":15573, + "componentType":5126, + "count":168, + "max":[ + 29.924560546875, + 1132.8153076171875, + 29.9259033203125 + ], + "min":[ + -29.92431640625, + 0, + -29.9232177734375 + ], + "type":"VEC3" + }, + { + "bufferView":15574, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":15575, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":15576, + "componentType":5126, + "count":88, + "max":[ + 50.1396484375, + 851.928955078125, + 52.947265625 + ], + "min":[ + -50.139892578125, + 0, + -52.94677734375 + ], + "type":"VEC3" + }, + { + "bufferView":15577, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":15578, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":15579, + "componentType":5126, + "count":347, + "max":[ + 170.435546875, + 188.557861328125, + 176.20458984375 + ], + "min":[ + -170.43359375, + 45.296142578125, + -176.203125 + ], + "type":"VEC3" + }, + { + "bufferView":15580, + "componentType":5126, + "count":347, + "type":"VEC3" + }, + { + "bufferView":15581, + "componentType":5126, + "count":347, + "type":"VEC2" + }, + { + "bufferView":15582, + "componentType":5126, + "count":98, + "max":[ + 1.4143263101577759, + 10.51738452911377, + 5.258735656738281 + ], + "min":[ + -1.4143048524856567, + -9.012222290039062e-05, + -5.258738040924072 + ], + "type":"VEC3" + }, + { + "bufferView":15583, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":15584, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":15585, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28369140625 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":15586, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":15587, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":15588, + "componentType":5126, + "count":1050, + "max":[ + 90.1090087890625, + 76.19921875, + 125.22607421875 + ], + "min":[ + -90.109130859375, + 0, + -125.22607421875 + ], + "type":"VEC3" + }, + { + "bufferView":15589, + "componentType":5126, + "count":1050, + "type":"VEC3" + }, + { + "bufferView":15590, + "componentType":5126, + "count":1050, + "type":"VEC2" + }, + { + "bufferView":15591, + "componentType":5126, + "count":582, + "max":[ + 196.22201538085938, + 125.82342529296875, + 204.45675659179688 + ], + "min":[ + -196.22189331054688, + 0.000152587890625, + -204.45663452148438 + ], + "type":"VEC3" + }, + { + "bufferView":15592, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":15593, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15594, + "componentType":5126, + "count":1420, + "max":[ + 244.46875, + 367.92938232421875, + 384.5810852050781 + ], + "min":[ + -244.466796875, + 0.0001068115234375, + -384.5781555175781 + ], + "type":"VEC3" + }, + { + "bufferView":15595, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":15596, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":15597, + "componentType":5126, + "count":583, + "max":[ + 173.1143035888672, + 208.72775268554688, + 158.3354949951172 + ], + "min":[ + -173.11553955078125, + -0.0001220703125, + -158.33636474609375 + ], + "type":"VEC3" + }, + { + "bufferView":15598, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":15599, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15600, + "componentType":5126, + "count":4, + "max":[ + 698.8857421875, + 2586.479248046875, + 0.00022611767053604126 + ], + "min":[ + -698.8857421875, + 0, + -0.00022611767053604126 + ], + "type":"VEC3" + }, + { + "bufferView":15601, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15602, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15603, + "componentType":5126, + "count":260, + "max":[ + 3.4517245292663574, + 18.945335388183594, + 9.472704887390137 + ], + "min":[ + -3.4518513679504395, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":15604, + "componentType":5126, + "count":260, + "type":"VEC3" + }, + { + "bufferView":15605, + "componentType":5126, + "count":260, + "type":"VEC2" + }, + { + "bufferView":15606, + "componentType":5126, + "count":578, + "max":[ + 195.49490356445312, + 270.50714111328125, + 181.42344665527344 + ], + "min":[ + -188.29017639160156, + 39.895172119140625, + -169.49172973632812 + ], + "type":"VEC3" + }, + { + "bufferView":15607, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":15608, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15609, + "componentType":5126, + "count":8102, + "max":[ + 496.147216796875, + 429.9619140625, + 103.787109375 + ], + "min":[ + -496.14990234375, + 0, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":15610, + "componentType":5126, + "count":8102, + "type":"VEC3" + }, + { + "bufferView":15611, + "componentType":5126, + "count":8102, + "type":"VEC2" + }, + { + "bufferView":15612, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":15613, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15614, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15615, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15616, + "componentType":5126, + "count":596, + "max":[ + 148.97080993652344, + 180.591064453125, + 136.32229614257812 + ], + "min":[ + -148.9737091064453, + 0.0001220703125, + -136.322265625 + ], + "type":"VEC3" + }, + { + "bufferView":15617, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":15618, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15619, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15620, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15621, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15622, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15623, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15624, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15625, + "componentType":5126, + "count":590, + "max":[ + 176.10997009277344, + 181.67584228515625, + 153.53297424316406 + ], + "min":[ + -176.10647583007812, + 0.000213623046875, + -153.53294372558594 + ], + "type":"VEC3" + }, + { + "bufferView":15626, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":15627, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7294979095459 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":15628, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":15629, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":15630, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":15631, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":15632, + "componentType":5126, + "count":160, + "max":[ + 29.7822265625, + 2198.236572265625, + 21.0791015625 + ], + "min":[ + -29.783203125, + -0.00018310546875, + -21.07794189453125 + ], + "type":"VEC3" + }, + { + "bufferView":15633, + "componentType":5126, + "count":160, + "type":"VEC3" + }, + { + "bufferView":15634, + "componentType":5126, + "count":160, + "type":"VEC2" + }, + { + "bufferView":15635, + "componentType":5126, + "count":76, + "max":[ + 279.0987243652344, + 3543.081787109375, + 278.8664855957031 + ], + "min":[ + -279.1011047363281, + 0, + -278.86700439453125 + ], + "type":"VEC3" + }, + { + "bufferView":15636, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":15637, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":15638, + "componentType":5126, + "count":798, + "max":[ + 4.130859375, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":15639, + "componentType":5126, + "count":798, + "type":"VEC3" + }, + { + "bufferView":15640, + "componentType":5126, + "count":798, + "type":"VEC2" + }, + { + "bufferView":15641, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":15642, + "componentType":5126, + "count":178, + "max":[ + 769.70947265625, + 113.194580078125, + 56.5966796875 + ], + "min":[ + -769.7080078125, + 0, + -56.59765625 + ], + "type":"VEC3" + }, + { + "bufferView":15643, + "componentType":5126, + "count":178, + "type":"VEC3" + }, + { + "bufferView":15644, + "componentType":5126, + "count":178, + "type":"VEC2" + }, + { + "bufferView":15645, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":15646, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":15647, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":15648, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15649, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15650, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15651, + "componentType":5126, + "count":296, + "max":[ + 1.9772073030471802, + 36.3969841003418, + 18.198516845703125 + ], + "min":[ + -1.9772001504898071, + -7.62939453125e-06, + -18.198471069335938 + ], + "type":"VEC3" + }, + { + "bufferView":15652, + "componentType":5126, + "count":296, + "type":"VEC3" + }, + { + "bufferView":15653, + "componentType":5126, + "count":296, + "type":"VEC2" + }, + { + "bufferView":15654, + "componentType":5126, + "count":112, + "max":[ + 315.52044677734375, + 28059.064453125, + 315.5213317871094 + ], + "min":[ + -315.52044677734375, + 0, + -315.51953125 + ], + "type":"VEC3" + }, + { + "bufferView":15655, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":15656, + "componentType":5126, + "count":345, + "max":[ + 171.298828125, + 184.8037109375, + 176.140625 + ], + "min":[ + -171.2978515625, + 44.4560546875, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":15657, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":15658, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":15659, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15660, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15661, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15662, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 703.126953125 + ], + "min":[ + -110.00003814697266, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":15663, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15664, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":15665, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15666, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15667, + "componentType":5126, + "count":308, + "max":[ + 10.67822265625, + 283.877197265625, + 60.75002670288086 + ], + "min":[ + -10.67822265625, + -1.52587890625e-05, + -60.75002670288086 + ], + "type":"VEC3" + }, + { + "bufferView":15668, + "componentType":5126, + "count":308, + "type":"VEC3" + }, + { + "bufferView":15669, + "componentType":5126, + "count":308, + "type":"VEC2" + }, + { + "bufferView":15670, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":15671, + "componentType":5126, + "count":51, + "max":[ + 391.7373046875, + 608.2197265625, + 142.32080078125 + ], + "min":[ + -391.7373046875, + 0, + -142.32177734375 + ], + "type":"VEC3" + }, + { + "bufferView":15672, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":15673, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":15674, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":15675, + "componentType":5126, + "count":44, + "max":[ + 4122.365234375, + 340.60888671875, + 4804.2783203125 + ], + "min":[ + -4122.3671875, + 7.62939453125e-05, + -4804.2744140625 + ], + "type":"VEC3" + }, + { + "bufferView":15676, + "componentType":5126, + "count":44, + "type":"VEC3" + }, + { + "bufferView":15677, + "componentType":5126, + "count":44, + "type":"VEC2" + }, + { + "bufferView":15678, + "componentType":5126, + "count":53, + "max":[ + 142.32275390625, + 608.220703125, + 391.7373046875 + ], + "min":[ + -142.31982421875, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":15679, + "componentType":5126, + "count":53, + "type":"VEC3" + }, + { + "bufferView":15680, + "componentType":5126, + "count":53, + "type":"VEC2" + }, + { + "bufferView":15681, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":15682, + "componentType":5126, + "count":204, + "max":[ + 22.728515625, + 61.51410675048828, + 43.588871002197266 + ], + "min":[ + -22.7265625, + -7.62939453125e-06, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":15683, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":15684, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":15685, + "componentType":5126, + "count":1420, + "max":[ + 433.119140625, + 367.9293212890625, + 90.004150390625 + ], + "min":[ + -433.12109375, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":15686, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":15687, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":15688, + "componentType":5126, + "count":1156, + "max":[ + 65.60057067871094, + 185.22500610351562, + 5.788394927978516 + ], + "min":[ + -65.60050964355469, + -3.814697265625e-05, + -5.788308143615723 + ], + "type":"VEC3" + }, + { + "bufferView":15689, + "componentType":5126, + "count":1156, + "type":"VEC3" + }, + { + "bufferView":15690, + "componentType":5126, + "count":1156, + "type":"VEC2" + }, + { + "bufferView":15691, + "componentType":5126, + "count":604, + "max":[ + 171.90518188476562, + 32.825321197509766, + 171.90391540527344 + ], + "min":[ + -171.9025421142578, + 2.288818359375e-05, + -171.90383911132812 + ], + "type":"VEC3" + }, + { + "bufferView":15692, + "componentType":5126, + "count":604, + "type":"VEC3" + }, + { + "bufferView":15693, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15694, + "componentType":5126, + "count":24, + "max":[ + 110.00022888183594, + 50.00010681152344, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 7.482406363124028e-05, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":15695, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15696, + "componentType":5126, + "count":585, + "max":[ + 174.45582580566406, + 210.29098510742188, + 159.55894470214844 + ], + "min":[ + -174.45655822753906, + -6.103515625e-05, + -159.55886840820312 + ], + "type":"VEC3" + }, + { + "bufferView":15697, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":15698, + "componentType":5126, + "count":76, + "max":[ + 278.86651611328125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8672180175781, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":15699, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":15700, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":15701, + "componentType":5126, + "count":4, + "max":[ + 698.884765625, + 2586.4794921875, + 0.00022611767053604126 + ], + "min":[ + -698.884765625, + 0, + -0.00022611767053604126 + ], + "type":"VEC3" + }, + { + "bufferView":15702, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15703, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15704, + "componentType":5126, + "count":8031, + "max":[ + 103.78759765625, + 1010.39501953125, + 180.119140625 + ], + "min":[ + -103.78662109375, + 12.32421875, + -180.1201171875 + ], + "type":"VEC3" + }, + { + "bufferView":15705, + "componentType":5126, + "count":8031, + "type":"VEC3" + }, + { + "bufferView":15706, + "componentType":5126, + "count":8031, + "type":"VEC2" + }, + { + "bufferView":15707, + "componentType":5126, + "count":562, + "max":[ + 187.32032775878906, + 194.036376953125, + 169.38320922851562 + ], + "min":[ + -187.31944274902344, + 1.30487060546875, + -157.1018829345703 + ], + "type":"VEC3" + }, + { + "bufferView":15708, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":15709, + "componentType":5126, + "count":608, + "max":[ + 141.34466552734375, + 205.99630737304688, + 126.68780517578125 + ], + "min":[ + -148.55227661132812, + 30.09485626220703, + -138.61888122558594 + ], + "type":"VEC3" + }, + { + "bufferView":15710, + "componentType":5126, + "count":608, + "type":"VEC3" + }, + { + "bufferView":15711, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":15712, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15713, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15714, + "componentType":5126, + "count":2690, + "max":[ + 128.19970703125, + 421.52587890625, + 128.19921875 + ], + "min":[ + -128.19921875, + 0, + -128.19921875 + ], + "type":"VEC3" + }, + { + "bufferView":15715, + "componentType":5126, + "count":2690, + "type":"VEC3" + }, + { + "bufferView":15716, + "componentType":5126, + "count":2690, + "type":"VEC2" + }, + { + "bufferView":15717, + "componentType":5126, + "count":1329, + "max":[ + 4857.8447265625, + 790.028564453125, + 49.9814453125 + ], + "min":[ + -4857.8466796875, + -0.000244140625, + -49.9814453125 + ], + "type":"VEC3" + }, + { + "bufferView":15718, + "componentType":5126, + "count":1329, + "type":"VEC3" + }, + { + "bufferView":15719, + "componentType":5126, + "count":1329, + "type":"VEC2" + }, + { + "bufferView":15720, + "componentType":5123, + "count":2520, + "type":"SCALAR" + }, + { + "bufferView":15721, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.92919921875, + 90.005859375 + ], + "min":[ + -433.1201171875, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":15722, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":15723, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":15724, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15725, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15726, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15727, + "componentType":5126, + "count":576, + "max":[ + 183.8465118408203, + 221.23312377929688, + 168.11972045898438 + ], + "min":[ + -183.843505859375, + 7.62939453125e-05, + -168.11972045898438 + ], + "type":"VEC3" + }, + { + "bufferView":15728, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":15729, + "componentType":5126, + "count":136, + "max":[ + 242.853515625, + 131.9609375, + 239.7060546875 + ], + "min":[ + -242.8505859375, + 0, + -239.7060546875 + ], + "type":"VEC3" + }, + { + "bufferView":15730, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":15731, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":15732, + "componentType":5126, + "count":24, + "max":[ + 554.65234375, + 38.30810546875, + 215.74468994140625 + ], + "min":[ + -554.6513671875, + 0, + -215.74362182617188 + ], + "type":"VEC3" + }, + { + "bufferView":15733, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15734, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15735, + "componentType":5126, + "count":226, + "max":[ + 115.14118194580078, + 343.64056396484375, + 159.38693237304688 + ], + "min":[ + -115.14126586914062, + 26.06207275390625, + -160.72274780273438 + ], + "type":"VEC3" + }, + { + "bufferView":15736, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":15737, + "componentType":5126, + "count":4802, + "max":[ + 91.3736801147461, + 182.74732971191406, + 6.498479843139648 + ], + "min":[ + -91.37361907958984, + 1.5562191038043238e-05, + -6.498486042022705 + ], + "type":"VEC3" + }, + { + "bufferView":15738, + "componentType":5126, + "count":4802, + "type":"VEC3" + }, + { + "bufferView":15739, + "componentType":5126, + "count":4802, + "type":"VEC2" + }, + { + "bufferView":15740, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":15741, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":15742, + "componentType":5126, + "count":260, + "max":[ + 3.451836347579956, + 18.945335388183594, + 9.47275161743164 + ], + "min":[ + -3.451739549636841, + -0.00011920928955078125, + -9.472702980041504 + ], + "type":"VEC3" + }, + { + "bufferView":15743, + "componentType":5126, + "count":260, + "type":"VEC3" + }, + { + "bufferView":15744, + "componentType":5126, + "count":260, + "type":"VEC2" + }, + { + "bufferView":15745, + "componentType":5126, + "count":94, + "max":[ + 31.27215576171875, + 267.8876953125, + 51.744140625 + ], + "min":[ + -31.22821044921875, + 0, + -51.582275390625 + ], + "type":"VEC3" + }, + { + "bufferView":15746, + "componentType":5126, + "count":94, + "type":"VEC3" + }, + { + "bufferView":15747, + "componentType":5126, + "count":94, + "type":"VEC2" + }, + { + "bufferView":15748, + "componentType":5126, + "count":748, + "max":[ + 136.78469848632812, + 121.51294708251953, + 136.37379455566406 + ], + "min":[ + -136.78652954101562, + 0.000118255615234375, + -136.37380981445312 + ], + "type":"VEC3" + }, + { + "bufferView":15749, + "componentType":5126, + "count":748, + "type":"VEC3" + }, + { + "bufferView":15750, + "componentType":5126, + "count":580, + "max":[ + 169.1017303466797, + 175.93930053710938, + 153.60462951660156 + ], + "min":[ + -169.10015869140625, + 1.1737060546875, + -141.32437133789062 + ], + "type":"VEC3" + }, + { + "bufferView":15751, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":15752, + "componentType":5126, + "count":594, + "max":[ + 148.05227661132812, + 215.2120819091797, + 132.80218505859375 + ], + "min":[ + -155.25723266601562, + 31.4947509765625, + -144.73426818847656 + ], + "type":"VEC3" + }, + { + "bufferView":15753, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":15754, + "componentType":5126, + "count":48, + "max":[ + 11.698833465576172, + 233.9414520263672, + 289.0145263671875 + ], + "min":[ + -11.695405006408691, + 7.62939453125e-06, + -289.01361083984375 + ], + "type":"VEC3" + }, + { + "bufferView":15755, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":15756, + "componentType":5126, + "count":584, + "max":[ + 182.08499145507812, + 116.76531219482422, + 185.91830444335938 + ], + "min":[ + -174.8749542236328, + 0.7507095336914062, + -185.9185333251953 + ], + "type":"VEC3" + }, + { + "bufferView":15757, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":15758, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15759, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15760, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15761, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15762, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.5140380859375, + 22.7297420501709 + ], + "min":[ + -43.58984375, + -3.814697265625e-06, + -22.725955963134766 + ], + "type":"VEC3" + }, + { + "bufferView":15763, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":15764, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":15765, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":15766, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15767, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15768, + "componentType":5126, + "count":568, + "max":[ + 153.6865997314453, + 159.56365966796875, + 134.11392211914062 + ], + "min":[ + -153.68331909179688, + 8.392333984375e-05, + -134.11387634277344 + ], + "type":"VEC3" + }, + { + "bufferView":15769, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":15770, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.92919921875, + 90.00634765625 + ], + "min":[ + -433.1201171875, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":15771, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":15772, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":15773, + "componentType":5126, + "count":576, + "max":[ + 191.89173889160156, + 230.61215209960938, + 175.45767211914062 + ], + "min":[ + -191.89334106445312, + 0.0001220703125, + -175.4575653076172 + ], + "type":"VEC3" + }, + { + "bufferView":15774, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":15775, + "componentType":5126, + "count":7788, + "max":[ + 103.786865234375, + 427.46484375, + 496.30615234375 + ], + "min":[ + -103.7867431640625, + 0, + -496.30712890625 + ], + "type":"VEC3" + }, + { + "bufferView":15776, + "componentType":5126, + "count":7788, + "type":"VEC3" + }, + { + "bufferView":15777, + "componentType":5126, + "count":7788, + "type":"VEC2" + }, + { + "bufferView":15778, + "componentType":5126, + "count":352, + "max":[ + 139.8673095703125, + 232.628662109375, + 138.3525390625 + ], + "min":[ + -139.8668212890625, + 0, + -138.3519287109375 + ], + "type":"VEC3" + }, + { + "bufferView":15779, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":15780, + "componentType":5126, + "count":590, + "max":[ + 167.6999969482422, + 174.54714965820312, + 152.39117431640625 + ], + "min":[ + -167.6990203857422, + 1.1636428833007812, + -140.1104736328125 + ], + "type":"VEC3" + }, + { + "bufferView":15781, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":15782, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15783, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15784, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15785, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15786, + "componentType":5126, + "count":574, + "max":[ + 148.07968139648438, + 154.0355682373047, + 129.2591552734375 + ], + "min":[ + -148.07859802246094, + -9.918212890625e-05, + -129.25901794433594 + ], + "type":"VEC3" + }, + { + "bufferView":15787, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":15788, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15789, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15790, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15791, + "componentType":5126, + "count":352, + "max":[ + 170.4345703125, + 188.5546875, + 176.20361328125 + ], + "min":[ + -170.4345703125, + 45.296875, + -176.2041015625 + ], + "type":"VEC3" + }, + { + "bufferView":15792, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":15793, + "componentType":5126, + "count":352, + "type":"VEC2" + }, + { + "bufferView":15794, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":15795, + "componentType":5126, + "count":588, + "max":[ + 179.8205108642578, + 216.54367065429688, + 164.4510498046875 + ], + "min":[ + -179.8218994140625, + -6.103515625e-05, + -164.450439453125 + ], + "type":"VEC3" + }, + { + "bufferView":15796, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":15797, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15798, + "componentType":5126, + "count":112, + "max":[ + 1022.5776977539062, + 429.5421447753906, + 214.77090454101562 + ], + "min":[ + -1022.5814819335938, + -0.0003204345703125, + -214.77090454101562 + ], + "type":"VEC3" + }, + { + "bufferView":15799, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":15800, + "componentType":5126, + "count":72, + "max":[ + 22.50006103515625, + 1492.539794921875, + 771.3447875976562 + ], + "min":[ + -22.500253677368164, + 0, + -771.34619140625 + ], + "type":"VEC3" + }, + { + "bufferView":15801, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":15802, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":15803, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15804, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15805, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15806, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15807, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15808, + "componentType":5126, + "count":584, + "max":[ + 201.16368103027344, + 241.4158477783203, + 183.9102325439453 + ], + "min":[ + -201.16162109375, + 7.62939453125e-05, + -183.9102325439453 + ], + "type":"VEC3" + }, + { + "bufferView":15809, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":15810, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15811, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":15812, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":15813, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":15814, + "componentType":5126, + "count":587, + "max":[ + 178.06201171875, + 246.54580688476562, + 165.52523803710938 + ], + "min":[ + -170.85035705566406, + 36.25483703613281, + -153.592529296875 + ], + "type":"VEC3" + }, + { + "bufferView":15815, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":15816, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15817, + "componentType":5126, + "count":582, + "max":[ + 198.53025817871094, + 203.7875518798828, + 172.95205688476562 + ], + "min":[ + -198.53277587890625, + 6.866455078125e-05, + -172.95220947265625 + ], + "type":"VEC3" + }, + { + "bufferView":15818, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":15819, + "componentType":5126, + "count":1048, + "max":[ + 125.224609375, + 76.1982421875, + 90.109130859375 + ], + "min":[ + -125.2275390625, + -0.0009765625, + -90.1090087890625 + ], + "type":"VEC3" + }, + { + "bufferView":15820, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":15821, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":15822, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.51416015625, + 22.7293758392334 + ], + "min":[ + -43.58984375, + 0.000118255615234375, + -22.726322174072266 + ], + "type":"VEC3" + }, + { + "bufferView":15823, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":15824, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":15825, + "componentType":5126, + "count":24, + "max":[ + 584.6640625, + 50.00001525878906, + 110.00007629394531 + ], + "min":[ + -584.6640625, + -1.6609539670753293e-05, + -110.0000991821289 + ], + "type":"VEC3" + }, + { + "bufferView":15826, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15827, + "componentType":5126, + "count":24, + "max":[ + 249.3515625, + 2528.29833984375, + 25.65087890625 + ], + "min":[ + -249.3515625, + 0, + -25.64794921875 + ], + "type":"VEC3" + }, + { + "bufferView":15828, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15829, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15830, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":15831, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15832, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15833, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15834, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51416015625, + 22.7294979095459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":15835, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":15836, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":15837, + "componentType":5126, + "count":572, + "max":[ + 199.20542907714844, + 285.5093078613281, + 179.4456787109375 + ], + "min":[ + -206.41366577148438, + 42.17408752441406, + -191.37799072265625 + ], + "type":"VEC3" + }, + { + "bufferView":15838, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":15839, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15840, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15841, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15842, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15843, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15844, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15845, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.07330322265625 + ], + "min":[ + -27.193359375, + 0, + -126.07342529296875 + ], + "type":"VEC3" + }, + { + "bufferView":15846, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15847, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15848, + "componentType":5126, + "count":92, + "max":[ + 22.05126953125, + 77.6373291015625, + 30.45068359375 + ], + "min":[ + -22.05078125, + 0.0001220703125, + -30.449951171875 + ], + "type":"VEC3" + }, + { + "bufferView":15849, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":15850, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":15851, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51428985595703, + 43.587894439697266 + ], + "min":[ + -22.7275390625, + 0.00011444091796875, + -43.590335845947266 + ], + "type":"VEC3" + }, + { + "bufferView":15852, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":15853, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":15854, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15855, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15856, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15857, + "componentType":5126, + "count":136, + "max":[ + 80.153076171875, + 126.6884765625, + 49.03466796875 + ], + "min":[ + -80.153076171875, + 0, + -49.03564453125 + ], + "type":"VEC3" + }, + { + "bufferView":15858, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":15859, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":15860, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15861, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15862, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15863, + "componentType":5126, + "count":96, + "max":[ + 820.9476318359375, + 205.17288208007812, + 73.47864532470703 + ], + "min":[ + -820.9443359375, + 7.62939453125e-06, + -73.4786376953125 + ], + "type":"VEC3" + }, + { + "bufferView":15864, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":15865, + "componentType":5126, + "count":598, + "max":[ + 164.6481170654297, + 228.1141815185547, + 153.29507446289062 + ], + "min":[ + -157.4390106201172, + 33.45487976074219, + -141.36306762695312 + ], + "type":"VEC3" + }, + { + "bufferView":15866, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":15867, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15868, + "componentType":5126, + "count":574, + "max":[ + 177.50819396972656, + 183.0576934814453, + 154.74668884277344 + ], + "min":[ + -177.5111541748047, + 0.0001220703125, + -154.74673461914062 + ], + "type":"VEC3" + }, + { + "bufferView":15869, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":15870, + "componentType":5126, + "count":293, + "max":[ + 10.6787109375, + 283.877197265625, + 60.75051498413086 + ], + "min":[ + -10.677734375, + -1.52587890625e-05, + -60.74953842163086 + ], + "type":"VEC3" + }, + { + "bufferView":15871, + "componentType":5126, + "count":293, + "type":"VEC3" + }, + { + "bufferView":15872, + "componentType":5126, + "count":293, + "type":"VEC2" + }, + { + "bufferView":15873, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":15874, + "componentType":5126, + "count":572, + "max":[ + 211.34117126464844, + 32.82524871826172, + 211.3399658203125 + ], + "min":[ + -211.33865356445312, + 0.00011444091796875, + -211.3398895263672 + ], + "type":"VEC3" + }, + { + "bufferView":15875, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":15876, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15877, + "componentType":5126, + "count":226, + "max":[ + 115.14122009277344, + 317.57855224609375, + 160.0547332763672 + ], + "min":[ + -115.14129638671875, + -6.103515625e-05, + -160.05490112304688 + ], + "type":"VEC3" + }, + { + "bufferView":15878, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":15879, + "componentType":5126, + "count":56, + "max":[ + 217.04052734375, + 520.125244140625, + 29.7984619140625 + ], + "min":[ + -217.04150390625, + 0.000244140625, + -29.798583984375 + ], + "type":"VEC3" + }, + { + "bufferView":15880, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":15881, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":15882, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92938232421875, + 384.1391906738281 + ], + "min":[ + -245.2333984375, + 0.0001678466796875, + -384.1406555175781 + ], + "type":"VEC3" + }, + { + "bufferView":15883, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":15884, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":15885, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58544921875 + ], + "min":[ + -46.2841796875, + 0, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":15886, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15887, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15888, + "componentType":5126, + "count":71, + "max":[ + 3.7875242233276367, + 14.031471252441406, + 5.5484700202941895 + ], + "min":[ + -3.787548780441284, + -3.199544153176248e-05, + -5.548454284667969 + ], + "type":"VEC3" + }, + { + "bufferView":15889, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":15890, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":15891, + "componentType":5126, + "count":112, + "max":[ + 133.31993103027344, + 49.08274841308594, + 133.3199462890625 + ], + "min":[ + -133.31993103027344, + 0, + -133.3199920654297 + ], + "type":"VEC3" + }, + { + "bufferView":15892, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":15893, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":15894, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15895, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15896, + "componentType":5126, + "count":88, + "max":[ + 50.1396484375, + 105.89306640625, + 891.34228515625 + ], + "min":[ + -50.139892578125, + 0, + -891.34228515625 + ], + "type":"VEC3" + }, + { + "bufferView":15897, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":15898, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":15899, + "componentType":5126, + "count":580, + "max":[ + 197.86849975585938, + 237.5772705078125, + 180.9066162109375 + ], + "min":[ + -197.86920166015625, + 7.62939453125e-05, + -180.90699768066406 + ], + "type":"VEC3" + }, + { + "bufferView":15900, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":15901, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15902, + "componentType":5126, + "count":577, + "max":[ + 185.18801879882812, + 222.7963409423828, + 169.34255981445312 + ], + "min":[ + -185.1844482421875, + 3.0517578125e-05, + -169.34286499023438 + ], + "type":"VEC3" + }, + { + "bufferView":15903, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":15904, + "componentType":5126, + "count":576, + "max":[ + 171.90518188476562, + 178.72332763671875, + 156.03204345703125 + ], + "min":[ + -171.9025421142578, + 1.1937255859375, + -143.7517547607422 + ], + "type":"VEC3" + }, + { + "bufferView":15905, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":15906, + "componentType":5126, + "count":98, + "max":[ + 1.4143146276474, + 10.51738452911377, + 5.258759021759033 + ], + "min":[ + -1.4143165349960327, + -9.012222290039062e-05, + -5.25871467590332 + ], + "type":"VEC3" + }, + { + "bufferView":15907, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":15908, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":15909, + "componentType":5126, + "count":587, + "max":[ + 166.8297119140625, + 241.0164794921875, + 149.92369079589844 + ], + "min":[ + -174.03504943847656, + 35.41490936279297, + -161.8561553955078 + ], + "type":"VEC3" + }, + { + "bufferView":15910, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":15911, + "componentType":5126, + "count":591, + "max":[ + 156.09751892089844, + 226.27139282226562, + 140.14010620117188 + ], + "min":[ + -163.30712890625, + 33.175025939941406, + -152.07205200195312 + ], + "type":"VEC3" + }, + { + "bufferView":15912, + "componentType":5126, + "count":591, + "type":"VEC3" + }, + { + "bufferView":15913, + "componentType":5126, + "count":570, + "max":[ + 153.68331909179688, + 160.6261444091797, + 127.97328186035156 + ], + "min":[ + -153.6865997314453, + 1.0625762939453125, + -140.2545166015625 + ], + "type":"VEC3" + }, + { + "bufferView":15914, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":15915, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15916, + "componentType":5126, + "count":168, + "max":[ + 769.70751953125, + 113.19482421875, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.597412109375 + ], + "type":"VEC3" + }, + { + "bufferView":15917, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":15918, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":15919, + "componentType":5126, + "count":573, + "max":[ + 171.7727813720703, + 207.16458129882812, + 157.11343383789062 + ], + "min":[ + -171.77452087402344, + -9.1552734375e-05, + -157.1124725341797 + ], + "type":"VEC3" + }, + { + "bufferView":15920, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":15921, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15922, + "componentType":5126, + "count":8098, + "max":[ + 496.1484375, + 429.962890625, + 103.787109375 + ], + "min":[ + -496.148681640625, + 0, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":15923, + "componentType":5126, + "count":8098, + "type":"VEC3" + }, + { + "bufferView":15924, + "componentType":5126, + "count":8098, + "type":"VEC2" + }, + { + "bufferView":15925, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15926, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15927, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15928, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":15929, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15930, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15931, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15932, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15933, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15934, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":15935, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15936, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15937, + "componentType":5126, + "count":584, + "max":[ + 173.3037109375, + 178.9118194580078, + 151.10560607910156 + ], + "min":[ + -173.30691528320312, + 0.0002288818359375, + -151.10556030273438 + ], + "type":"VEC3" + }, + { + "bufferView":15938, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":15939, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15940, + "componentType":5126, + "count":550, + "max":[ + 199.93199157714844, + 206.56509399414062, + 180.30599975585938 + ], + "min":[ + -199.93392944335938, + 1.395660400390625, + -168.02560424804688 + ], + "type":"VEC3" + }, + { + "bufferView":15941, + "componentType":5126, + "count":550, + "type":"VEC3" + }, + { + "bufferView":15942, + "componentType":5126, + "count":332, + "max":[ + 171.296875, + 184.8037109375, + 176.140380859375 + ], + "min":[ + -171.2998046875, + 44.45458984375, + -176.141845703125 + ], + "type":"VEC3" + }, + { + "bufferView":15943, + "componentType":5126, + "count":332, + "type":"VEC3" + }, + { + "bufferView":15944, + "componentType":5126, + "count":332, + "type":"VEC2" + }, + { + "bufferView":15945, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":15946, + "componentType":5126, + "count":561, + "max":[ + 182.50497436523438, + 219.67001342773438, + 166.89675903320312 + ], + "min":[ + -182.50253295898438, + 9.1552734375e-05, + -166.89675903320312 + ], + "type":"VEC3" + }, + { + "bufferView":15947, + "componentType":5126, + "count":561, + "type":"VEC3" + }, + { + "bufferView":15948, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":15949, + "componentType":5126, + "count":76, + "max":[ + 279.10015869140625, + 3543.081787109375, + 278.8695068359375 + ], + "min":[ + -279.1027526855469, + 0, + -278.8675842285156 + ], + "type":"VEC3" + }, + { + "bufferView":15950, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":15951, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":15952, + "componentType":5126, + "count":60, + "max":[ + 3.787405490875244, + 13.693549156188965, + 6.47286319732666 + ], + "min":[ + -3.787666082382202, + -2.956390380859375e-05, + -6.472907543182373 + ], + "type":"VEC3" + }, + { + "bufferView":15953, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":15954, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":15955, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":15956, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":15957, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":15958, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":15959, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":15960, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15961, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15962, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15963, + "componentType":5126, + "count":224, + "max":[ + 115.35126495361328, + 230.7025146484375, + 118.72099304199219 + ], + "min":[ + -115.3512191772461, + 3.0517578125e-05, + -118.72059631347656 + ], + "type":"VEC3" + }, + { + "bufferView":15964, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":15965, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":15966, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":15967, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15968, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15969, + "componentType":5126, + "count":588, + "max":[ + 185.91859436035156, + 192.64437866210938, + 168.1689910888672 + ], + "min":[ + -185.9182586669922, + 1.2948150634765625, + -155.888671875 + ], + "type":"VEC3" + }, + { + "bufferView":15970, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":15971, + "componentType":5126, + "count":51, + "max":[ + 123.61328125, + 696.755859375, + 366.15283203125 + ], + "min":[ + -123.615234375, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":15972, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":15973, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":15974, + "componentType":5126, + "count":112, + "max":[ + 206.1422119140625, + 149.6708984375, + 206.1431427001953 + ], + "min":[ + -206.1422119140625, + 0.001953125, + -206.14126586914062 + ], + "type":"VEC3" + }, + { + "bufferView":15975, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":15976, + "componentType":5126, + "count":337, + "max":[ + 171.298828125, + 184.80322265625, + 176.140380859375 + ], + "min":[ + -171.296875, + 44.455810546875, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":15977, + "componentType":5126, + "count":337, + "type":"VEC3" + }, + { + "bufferView":15978, + "componentType":5126, + "count":337, + "type":"VEC2" + }, + { + "bufferView":15979, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":15980, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":15981, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":15982, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":15983, + "componentType":5126, + "count":1810, + "max":[ + 91.37361907958984, + 182.74708557128906, + 6.498456954956055 + ], + "min":[ + -91.3736801147461, + -0.0002288818359375, + -6.498532295227051 + ], + "type":"VEC3" + }, + { + "bufferView":15984, + "componentType":5126, + "count":1810, + "type":"VEC3" + }, + { + "bufferView":15985, + "componentType":5126, + "count":1810, + "type":"VEC2" + }, + { + "bufferView":15986, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 703.126953125 + ], + "min":[ + -110.00003814697266, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":15987, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15988, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.456298828125, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.0006103515625, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":15989, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":15990, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":15991, + "componentType":5126, + "count":108, + "max":[ + 101.75885772705078, + 150.655517578125, + 75.32763671875 + ], + "min":[ + -101.759033203125, + -0.0003662109375, + -75.328125 + ], + "type":"VEC3" + }, + { + "bufferView":15992, + "componentType":5126, + "count":108, + "type":"VEC3" + }, + { + "bufferView":15993, + "componentType":5126, + "count":108, + "type":"VEC2" + }, + { + "bufferView":15994, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":15995, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":15996, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":15997, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15998, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":15999, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16000, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16001, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":16002, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":16003, + "componentType":5126, + "count":343, + "max":[ + 170.43359375, + 188.55810546875, + 176.2041015625 + ], + "min":[ + -170.435546875, + 45.29638671875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":16004, + "componentType":5126, + "count":343, + "type":"VEC3" + }, + { + "bufferView":16005, + "componentType":5126, + "count":343, + "type":"VEC2" + }, + { + "bufferView":16006, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":16007, + "componentType":5126, + "count":528, + "max":[ + 19.8046875, + 2637.3974609375, + 722.7232666015625 + ], + "min":[ + -19.80078125, + 0, + -722.719970703125 + ], + "type":"VEC3" + }, + { + "bufferView":16008, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":16009, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":16010, + "componentType":5126, + "count":49, + "max":[ + 161.98095703125, + 658.67578125, + 366.15283203125 + ], + "min":[ + -161.97900390625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":16011, + "componentType":5126, + "count":49, + "type":"VEC3" + }, + { + "bufferView":16012, + "componentType":5126, + "count":49, + "type":"VEC2" + }, + { + "bufferView":16013, + "componentType":5126, + "count":1810, + "max":[ + 91.37361907958984, + 182.74708557128906, + 6.498456954956055 + ], + "min":[ + -91.3736801147461, + -0.0002288818359375, + -6.498532295227051 + ], + "type":"VEC3" + }, + { + "bufferView":16014, + "componentType":5126, + "count":1810, + "type":"VEC3" + }, + { + "bufferView":16015, + "componentType":5126, + "count":1810, + "type":"VEC2" + }, + { + "bufferView":16016, + "componentType":5126, + "count":1020, + "max":[ + 831.546875, + 116.23333740234375, + 746.101806640625 + ], + "min":[ + -831.544921875, + 5.7220458984375e-05, + -746.103271484375 + ], + "type":"VEC3" + }, + { + "bufferView":16017, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":16018, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":16019, + "componentType":5126, + "count":572, + "max":[ + 187.86717224121094, + 225.92266845703125, + 171.78860473632812 + ], + "min":[ + -187.87037658691406, + 7.62939453125e-05, + -171.78875732421875 + ], + "type":"VEC3" + }, + { + "bufferView":16020, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":16021, + "componentType":5126, + "count":580, + "max":[ + 170.50344848632812, + 32.82521057128906, + 170.50245666503906 + ], + "min":[ + -170.50135803222656, + 1.52587890625e-05, + -170.50238037109375 + ], + "type":"VEC3" + }, + { + "bufferView":16022, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":16023, + "componentType":5126, + "count":52, + "max":[ + 161.97900390625, + 658.67578125, + 366.15283203125 + ], + "min":[ + -161.98095703125, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":16024, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":16025, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":16026, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.58544921875 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":16027, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16028, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16029, + "componentType":5126, + "count":1420, + "max":[ + 433.119140625, + 367.929443359375, + 90.00634765625 + ], + "min":[ + -433.12109375, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":16030, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":16031, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":16032, + "componentType":5126, + "count":24, + "max":[ + 110.00022888183594, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534164175624028, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":16033, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16034, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51428985595703, + 43.588871002197266 + ], + "min":[ + -22.728515625, + 0.00011444091796875, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":16035, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":16036, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":16037, + "componentType":5126, + "count":76, + "max":[ + 278.86651611328125, + 3543.081787109375, + 279.10101318359375 + ], + "min":[ + -278.8672180175781, + 0, + -279.0985412597656 + ], + "type":"VEC3" + }, + { + "bufferView":16038, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":16039, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":16040, + "componentType":5126, + "count":815, + "max":[ + 4.130859375, + 90.58753204345703, + 34.45508575439453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45801544189453 + ], + "type":"VEC3" + }, + { + "bufferView":16041, + "componentType":5126, + "count":815, + "type":"VEC3" + }, + { + "bufferView":16042, + "componentType":5126, + "count":815, + "type":"VEC2" + }, + { + "bufferView":16043, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":16044, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":16045, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16046, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16047, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16048, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16049, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16050, + "componentType":5126, + "count":56, + "max":[ + 115.15478515625, + 511.947509765625, + 147.15625 + ], + "min":[ + -115.15283203125, + 0, + -147.15625 + ], + "type":"VEC3" + }, + { + "bufferView":16051, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":16052, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":16053, + "componentType":5126, + "count":1020, + "max":[ + 831.5458984375, + 116.2335205078125, + 746.10400390625 + ], + "min":[ + -831.5458984375, + 0.000118255615234375, + -746.1015625 + ], + "type":"VEC3" + }, + { + "bufferView":16054, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":16055, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":16056, + "componentType":5126, + "count":8099, + "max":[ + 103.78759765625, + 429.962890625, + 496.1484375 + ], + "min":[ + -103.78662109375, + 0.0009765625, + -496.148681640625 + ], + "type":"VEC3" + }, + { + "bufferView":16057, + "componentType":5126, + "count":8099, + "type":"VEC3" + }, + { + "bufferView":16058, + "componentType":5126, + "count":8099, + "type":"VEC2" + }, + { + "bufferView":16059, + "componentType":5126, + "count":136, + "max":[ + 242.8515625, + 131.9609375, + 239.7059326171875 + ], + "min":[ + -242.8525390625, + 0, + -239.7059326171875 + ], + "type":"VEC3" + }, + { + "bufferView":16060, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":16061, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":16062, + "componentType":5126, + "count":572, + "max":[ + 199.20542907714844, + 285.5093078613281, + 179.4456787109375 + ], + "min":[ + -206.41366577148438, + 42.17408752441406, + -191.37799072265625 + ], + "type":"VEC3" + }, + { + "bufferView":16063, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":16064, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92926025390625, + 384.5810852050781 + ], + "min":[ + -244.4677734375, + 4.57763671875e-05, + -384.5781555175781 + ], + "type":"VEC3" + }, + { + "bufferView":16065, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":16066, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":16067, + "componentType":5126, + "count":588, + "max":[ + 140.9255828857422, + 171.21202087402344, + 128.98443603515625 + ], + "min":[ + -140.92384338378906, + 3.0517578125e-05, + -128.98443603515625 + ], + "type":"VEC3" + }, + { + "bufferView":16068, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":16069, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16070, + "componentType":5126, + "count":589, + "max":[ + 151.65383911132812, + 103.22981262207031, + 157.8892822265625 + ], + "min":[ + -151.65567016601562, + -0.0001373291015625, + -157.8893585205078 + ], + "type":"VEC3" + }, + { + "bufferView":16071, + "componentType":5126, + "count":589, + "type":"VEC3" + }, + { + "bufferView":16072, + "componentType":5126, + "count":595, + "max":[ + 152.995361328125, + 185.28057861328125, + 139.99119567871094 + ], + "min":[ + -152.99667358398438, + 9.1552734375e-05, + -139.99127197265625 + ], + "type":"VEC3" + }, + { + "bufferView":16073, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":16074, + "componentType":5126, + "count":260, + "max":[ + 3.4517245292663574, + 18.945335388183594, + 9.472704887390137 + ], + "min":[ + -3.4518513679504395, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":16075, + "componentType":5126, + "count":260, + "type":"VEC3" + }, + { + "bufferView":16076, + "componentType":5126, + "count":260, + "type":"VEC2" + }, + { + "bufferView":16077, + "componentType":5126, + "count":566, + "max":[ + 184.7669677734375, + 118.0556640625, + 188.72120666503906 + ], + "min":[ + -177.55799865722656, + 0.7625503540039062, + -188.72146606445312 + ], + "type":"VEC3" + }, + { + "bufferView":16078, + "componentType":5126, + "count":566, + "type":"VEC3" + }, + { + "bufferView":16079, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16080, + "componentType":5126, + "count":564, + "max":[ + 192.92724609375, + 32.82526779174805, + 192.92555236816406 + ], + "min":[ + -192.9241180419922, + 6.4849853515625e-05, + -192.9258575439453 + ], + "type":"VEC3" + }, + { + "bufferView":16081, + "componentType":5126, + "count":564, + "type":"VEC3" + }, + { + "bufferView":16082, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16083, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16084, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16085, + "componentType":5126, + "count":352, + "max":[ + 139.86614990234375, + 261.595458984375, + 138.3526611328125 + ], + "min":[ + -139.86798095703125, + 28.966552734375, + -138.3516845703125 + ], + "type":"VEC3" + }, + { + "bufferView":16086, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":16087, + "componentType":5126, + "count":24, + "max":[ + 584.6640625, + 50.00004577636719, + 110.00007629394531 + ], + "min":[ + -584.6640625, + 1.390804027323611e-05, + -110.00010681152344 + ], + "type":"VEC3" + }, + { + "bufferView":16088, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16089, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":16090, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":16091, + "componentType":5126, + "count":180, + "max":[ + 13.2529296875, + 75.79545593261719, + 25.506103515625 + ], + "min":[ + -13.25048828125, + 2.5339191779494286e-05, + -25.4976806640625 + ], + "type":"VEC3" + }, + { + "bufferView":16092, + "componentType":5126, + "count":180, + "type":"VEC3" + }, + { + "bufferView":16093, + "componentType":5126, + "count":180, + "type":"VEC2" + }, + { + "bufferView":16094, + "componentType":5126, + "count":60, + "max":[ + 3.7875425815582275, + 13.693793296813965, + 6.47288179397583 + ], + "min":[ + -3.787524461746216, + 0.00021409988403320312, + -6.472884178161621 + ], + "type":"VEC3" + }, + { + "bufferView":16095, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":16096, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":16097, + "componentType":5126, + "count":590, + "max":[ + 167.6999969482422, + 174.54714965820312, + 152.39096069335938 + ], + "min":[ + -167.6990203857422, + 1.1636428833007812, + -140.11068725585938 + ], + "type":"VEC3" + }, + { + "bufferView":16098, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":16099, + "componentType":5126, + "count":76, + "max":[ + 278.8675842285156, + 3543.081787109375, + 279.10015869140625 + ], + "min":[ + -278.8695068359375, + 0, + -279.1027526855469 + ], + "type":"VEC3" + }, + { + "bufferView":16100, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":16101, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":16102, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16103, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16104, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16105, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16106, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16107, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16108, + "componentType":5126, + "count":88, + "max":[ + 50.1396484375, + 860.975830078125, + 52.9462890625 + ], + "min":[ + -50.139892578125, + 0, + -52.9462890625 + ], + "type":"VEC3" + }, + { + "bufferView":16109, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":16110, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":16111, + "componentType":5126, + "count":245, + "max":[ + 172.5966796875, + 185.23486328125, + 169.0703125 + ], + "min":[ + -172.59716796875, + -0.00048828125, + -169.0703125 + ], + "type":"VEC3" + }, + { + "bufferView":16112, + "componentType":5126, + "count":245, + "type":"VEC3" + }, + { + "bufferView":16113, + "componentType":5126, + "count":245, + "type":"VEC2" + }, + { + "bufferView":16114, + "componentType":5126, + "count":112, + "max":[ + 119.38790893554688, + 86.68017578125, + 119.38746643066406 + ], + "min":[ + -119.38790893554688, + -0.0009765625, + -119.38833618164062 + ], + "type":"VEC3" + }, + { + "bufferView":16115, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":16116, + "componentType":5126, + "count":576, + "max":[ + 184.51686096191406, + 191.2522735595703, + 166.95533752441406 + ], + "min":[ + -184.51705932617188, + 1.2847518920898438, + -154.67498779296875 + ], + "type":"VEC3" + }, + { + "bufferView":16117, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":16118, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16119, + "componentType":5126, + "count":574, + "max":[ + 152.2848663330078, + 158.18145751953125, + 132.9002227783203 + ], + "min":[ + -152.2821502685547, + -0.00020599365234375, + -132.90011596679688 + ], + "type":"VEC3" + }, + { + "bufferView":16120, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":16121, + "componentType":5126, + "count":24, + "max":[ + 27.19384765625, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":16122, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16123, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16124, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92926025390625, + 384.57861328125 + ], + "min":[ + -244.4677734375, + -6.103515625e-05, + -384.5820007324219 + ], + "type":"VEC3" + }, + { + "bufferView":16125, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":16126, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":16127, + "componentType":5126, + "count":865, + "max":[ + 7.779110908508301, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778773307800293, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":16128, + "componentType":5126, + "count":865, + "type":"VEC3" + }, + { + "bufferView":16129, + "componentType":5126, + "count":865, + "type":"VEC2" + }, + { + "bufferView":16130, + "componentType":5126, + "count":44, + "max":[ + 1716.635986328125, + 167.624267578125, + 2415.3642578125 + ], + "min":[ + -1716.6361083984375, + -0.00054168701171875, + -2415.36328125 + ], + "type":"VEC3" + }, + { + "bufferView":16131, + "componentType":5126, + "count":44, + "type":"VEC3" + }, + { + "bufferView":16132, + "componentType":5126, + "count":44, + "type":"VEC2" + }, + { + "bufferView":16133, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16134, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16135, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16136, + "componentType":5126, + "count":574, + "max":[ + 146.67794799804688, + 152.65367126464844, + 128.0454559326172 + ], + "min":[ + -146.6774139404297, + 0.0001068115234375, + -128.04537963867188 + ], + "type":"VEC3" + }, + { + "bufferView":16137, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":16138, + "componentType":5126, + "count":584, + "max":[ + 207.89891052246094, + 214.47723388671875, + 187.2047119140625 + ], + "min":[ + -207.89772033691406, + 1.453033447265625, + -174.9232940673828 + ], + "type":"VEC3" + }, + { + "bufferView":16139, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":16140, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16141, + "componentType":5126, + "count":342, + "max":[ + 170.435546875, + 188.558349609375, + 176.2041015625 + ], + "min":[ + -170.4345703125, + 45.296630859375, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":16142, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":16143, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":16144, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":16145, + "componentType":5126, + "count":582, + "max":[ + 178.47952270507812, + 214.9805450439453, + 163.22808837890625 + ], + "min":[ + -178.4803924560547, + -6.103515625e-05, + -163.2274169921875 + ], + "type":"VEC3" + }, + { + "bufferView":16146, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":16147, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16148, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16149, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16150, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16151, + "componentType":5126, + "count":96, + "max":[ + 34.85273742675781, + 1448.2874755859375, + 704.272216796875 + ], + "min":[ + -34.85561752319336, + 0, + -704.2723388671875 + ], + "type":"VEC3" + }, + { + "bufferView":16152, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":16153, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":16154, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16155, + "componentType":5126, + "count":24, + "max":[ + 350, + 1016.5, + 350 + ], + "min":[ + -350, + 0, + -350 + ], + "type":"VEC3" + }, + { + "bufferView":16156, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16157, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16158, + "componentType":5126, + "count":579, + "max":[ + 171.77450561523438, + 207.1646270751953, + 157.1123809814453 + ], + "min":[ + -171.77276611328125, + -0.000152587890625, + -157.11334228515625 + ], + "type":"VEC3" + }, + { + "bufferView":16159, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":16160, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16161, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16162, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16163, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16164, + "componentType":5126, + "count":580, + "max":[ + 199.51646423339844, + 239.4965362548828, + 182.4085693359375 + ], + "min":[ + -199.51507568359375, + 9.1552734375e-05, + -182.4085693359375 + ], + "type":"VEC3" + }, + { + "bufferView":16165, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":16166, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16167, + "componentType":5126, + "count":176, + "max":[ + 769.70703125, + 113.194580078125, + 56.59765625 + ], + "min":[ + -769.71044921875, + 0, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":16168, + "componentType":5126, + "count":176, + "type":"VEC3" + }, + { + "bufferView":16169, + "componentType":5126, + "count":176, + "type":"VEC2" + }, + { + "bufferView":16170, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":16171, + "componentType":5126, + "count":1660, + "max":[ + 433.12109375, + 367.9293212890625, + 90.004150390625 + ], + "min":[ + -433.119140625, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":16172, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":16173, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":16174, + "componentType":5126, + "count":559, + "max":[ + 2.095486640930176, + 14.731964111328125, + 7.36604642868042 + ], + "min":[ + -2.0954651832580566, + -8.249282836914062e-05, + -7.3659987449646 + ], + "type":"VEC3" + }, + { + "bufferView":16175, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":16176, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":16177, + "componentType":5126, + "count":581, + "max":[ + 176.7209930419922, + 244.7028045654297, + 164.30226135253906 + ], + "min":[ + -169.5088348388672, + 35.9749755859375, + -152.3695526123047 + ], + "type":"VEC3" + }, + { + "bufferView":16178, + "componentType":5126, + "count":581, + "type":"VEC3" + }, + { + "bufferView":16179, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16180, + "componentType":5126, + "count":112, + "max":[ + 106.49421691894531, + 381.671142578125, + 171.66390991210938 + ], + "min":[ + -106.49431610107422, + 0, + -171.66293334960938 + ], + "type":"VEC3" + }, + { + "bufferView":16181, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":16182, + "componentType":5126, + "count":76, + "max":[ + 279.1028137207031, + 3543.081787109375, + 278.8695983886719 + ], + "min":[ + -279.1002197265625, + 0, + -278.8675842285156 + ], + "type":"VEC3" + }, + { + "bufferView":16183, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":16184, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":16185, + "componentType":5126, + "count":8098, + "max":[ + 496.1484375, + 429.962890625, + 103.787109375 + ], + "min":[ + -496.148681640625, + 0, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":16186, + "componentType":5126, + "count":8098, + "type":"VEC3" + }, + { + "bufferView":16187, + "componentType":5126, + "count":8098, + "type":"VEC2" + }, + { + "bufferView":16188, + "componentType":5126, + "count":24, + "max":[ + 249.3505859375, + 2528.2978515625, + 25.6494140625 + ], + "min":[ + -249.3515625, + 0, + -25.6494140625 + ], + "type":"VEC3" + }, + { + "bufferView":16189, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16190, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16191, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16192, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16193, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16194, + "componentType":5126, + "count":582, + "max":[ + 197.5582275390625, + 283.2462158203125, + 177.94407653808594 + ], + "min":[ + -204.76707458496094, + 41.83033752441406, + -189.8762969970703 + ], + "type":"VEC3" + }, + { + "bufferView":16195, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":16196, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16197, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16198, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16199, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.0733642578125 + ], + "min":[ + -27.193359375, + 0, + -126.07333374023438 + ], + "type":"VEC3" + }, + { + "bufferView":16200, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16201, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16202, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.14453125, + 360.898193359375 + ], + "min":[ + -8.345703125, + 0.0001220703125, + -360.896484375 + ], + "type":"VEC3" + }, + { + "bufferView":16203, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":16204, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":16205, + "componentType":5126, + "count":340, + "max":[ + 45.856773376464844, + 228.16909790039062, + 115.62029266357422 + ], + "min":[ + -45.858154296875, + -7.62939453125e-05, + -115.62040710449219 + ], + "type":"VEC3" + }, + { + "bufferView":16206, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":16207, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16208, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16209, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16210, + "componentType":5126, + "count":582, + "max":[ + 186.525634765625, + 224.35946655273438, + 170.56570434570312 + ], + "min":[ + -186.52935791015625, + 6.103515625e-05, + -170.56570434570312 + ], + "type":"VEC3" + }, + { + "bufferView":16211, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":16212, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16213, + "componentType":5126, + "count":586, + "max":[ + 155.0883331298828, + 32.825321197509766, + 155.0863800048828 + ], + "min":[ + -155.08447265625, + -7.2479248046875e-05, + -155.08645629882812 + ], + "type":"VEC3" + }, + { + "bufferView":16214, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":16215, + "componentType":5126, + "count":136, + "max":[ + 824.2421875, + 156.626220703125, + 69.5703125 + ], + "min":[ + -824.24169921875, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":16216, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":16217, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":16218, + "componentType":5126, + "count":811, + "max":[ + 4.130859375, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45801544189453 + ], + "type":"VEC3" + }, + { + "bufferView":16219, + "componentType":5126, + "count":811, + "type":"VEC3" + }, + { + "bufferView":16220, + "componentType":5126, + "count":811, + "type":"VEC2" + }, + { + "bufferView":16221, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":16222, + "componentType":5126, + "count":590, + "max":[ + 194.32896423339844, + 199.64170837402344, + 169.31101989746094 + ], + "min":[ + -194.32528686523438, + 0.00019073486328125, + -169.3110809326172 + ], + "type":"VEC3" + }, + { + "bufferView":16223, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":16224, + "componentType":5126, + "count":584, + "max":[ + 209.62005615234375, + 32.82524871826172, + 209.6191864013672 + ], + "min":[ + -209.6181640625, + 0.000110626220703125, + -209.6190643310547 + ], + "type":"VEC3" + }, + { + "bufferView":16225, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":16226, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16227, + "componentType":5126, + "count":574, + "max":[ + 180.31166076660156, + 32.82526397705078, + 180.3125 + ], + "min":[ + -180.3135223388672, + -4.1961669921875e-05, + -180.31268310546875 + ], + "type":"VEC3" + }, + { + "bufferView":16228, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":16229, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92938232421875, + 384.5786437988281 + ], + "min":[ + -244.4677734375, + 4.57763671875e-05, + -384.5815734863281 + ], + "type":"VEC3" + }, + { + "bufferView":16230, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":16231, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":16232, + "componentType":5126, + "count":179, + "max":[ + 769.70703125, + 113.194580078125, + 56.59619140625 + ], + "min":[ + -769.71044921875, + 0, + -56.5966796875 + ], + "type":"VEC3" + }, + { + "bufferView":16233, + "componentType":5126, + "count":179, + "type":"VEC3" + }, + { + "bufferView":16234, + "componentType":5126, + "count":179, + "type":"VEC2" + }, + { + "bufferView":16235, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":16236, + "componentType":5126, + "count":71, + "max":[ + 3.7875146865844727, + 13.693550109863281, + 6.472888469696045 + ], + "min":[ + -3.7875587940216064, + -2.9292161343619227e-05, + -6.472880840301514 + ], + "type":"VEC3" + }, + { + "bufferView":16237, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":16238, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":16239, + "componentType":5126, + "count":112, + "max":[ + 157.82748413085938, + 29.47576904296875, + 157.82748413085938 + ], + "min":[ + -157.82748413085938, + -7.62939453125e-05, + -157.82754516601562 + ], + "type":"VEC3" + }, + { + "bufferView":16240, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":16241, + "componentType":5126, + "count":586, + "max":[ + 169.1017303466797, + 32.82521057128906, + 169.10101318359375 + ], + "min":[ + -169.10015869140625, + 3.814697265625e-05, + -169.10093688964844 + ], + "type":"VEC3" + }, + { + "bufferView":16242, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":16243, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16244, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":16245, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16246, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16247, + "componentType":5126, + "count":24, + "max":[ + 189.2314453125, + 33.60009765625, + 486.48974609375 + ], + "min":[ + -189.2314453125, + -0.00048828125, + -486.489990234375 + ], + "type":"VEC3" + }, + { + "bufferView":16248, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16249, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16250, + "componentType":5126, + "count":16, + "max":[ + 2718.68896484375, + 1203, + 7129.9921875 + ], + "min":[ + -2718.68896484375, + 0, + -7129.9931640625 + ], + "type":"VEC3" + }, + { + "bufferView":16251, + "componentType":5126, + "count":16, + "type":"VEC3" + }, + { + "bufferView":16252, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":16253, + "componentType":5126, + "count":24, + "max":[ + 253.74386596679688, + 50, + 584.666015625 + ], + "min":[ + -253.7422637939453, + -8.255030479631387e-06, + -584.6621704101562 + ], + "type":"VEC3" + }, + { + "bufferView":16254, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16255, + "componentType":5126, + "count":60, + "max":[ + 3.7875256538391113, + 13.693792343139648, + 6.472907543182373 + ], + "min":[ + -3.7875406742095947, + 0.00021409988403320312, + -6.4728617668151855 + ], + "type":"VEC3" + }, + { + "bufferView":16256, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":16257, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":16258, + "componentType":5126, + "count":559, + "max":[ + 2.095487594604492, + 14.731964111328125, + 7.3659987449646 + ], + "min":[ + -2.0954642295837402, + -8.249282836914062e-05, + -7.3660454750061035 + ], + "type":"VEC3" + }, + { + "bufferView":16259, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":16260, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":16261, + "componentType":5126, + "count":806, + "max":[ + 1.9772133827209473, + 36.3969841003418, + 18.19847297668457 + ], + "min":[ + -1.9772028923034668, + -7.62939453125e-06, + -18.198514938354492 + ], + "type":"VEC3" + }, + { + "bufferView":16262, + "componentType":5126, + "count":806, + "type":"VEC3" + }, + { + "bufferView":16263, + "componentType":5126, + "count":806, + "type":"VEC2" + }, + { + "bufferView":16264, + "componentType":5126, + "count":12, + "max":[ + 10.26025390625, + 419.39959716796875, + 443.6836242675781 + ], + "min":[ + -10.26025390625, + 0.0001678466796875, + -443.6855773925781 + ], + "type":"VEC3" + }, + { + "bufferView":16265, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":16266, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":16267, + "componentType":5126, + "count":559, + "max":[ + 2.095487594604492, + 14.731964111328125, + 7.3659987449646 + ], + "min":[ + -2.0954642295837402, + -8.249282836914062e-05, + -7.3660454750061035 + ], + "type":"VEC3" + }, + { + "bufferView":16268, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":16269, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":16270, + "componentType":5126, + "count":40, + "max":[ + 1.4143263101577759, + 10.517534255981445, + 5.258735656738281 + ], + "min":[ + -1.4143048524856567, + 6.008148193359375e-05, + -5.258738040924072 + ], + "type":"VEC3" + }, + { + "bufferView":16271, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":16272, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":16273, + "componentType":5126, + "count":590, + "max":[ + 192.8129119873047, + 266.82073974609375, + 178.9773712158203 + ], + "min":[ + -185.60711669921875, + 39.3350830078125, + -167.04586791992188 + ], + "type":"VEC3" + }, + { + "bufferView":16274, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":16275, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16276, + "componentType":5126, + "count":7991, + "max":[ + 496.1484375, + 429.9638671875, + 103.787109375 + ], + "min":[ + -496.148681640625, + 0, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":16277, + "componentType":5126, + "count":7991, + "type":"VEC3" + }, + { + "bufferView":16278, + "componentType":5126, + "count":7991, + "type":"VEC2" + }, + { + "bufferView":16279, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16280, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16281, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16282, + "componentType":5126, + "count":24, + "max":[ + 159.6669921875, + 25.890380859375, + 6691.4453125 + ], + "min":[ + -159.666015625, + 0.000732421875, + -6691.44482421875 + ], + "type":"VEC3" + }, + { + "bufferView":16283, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16284, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16285, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16286, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16287, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16288, + "componentType":5126, + "count":576, + "max":[ + 171.9025421142578, + 177.5294952392578, + 149.8918914794922 + ], + "min":[ + -171.90518188476562, + -0.0001678466796875, + -149.89187622070312 + ], + "type":"VEC3" + }, + { + "bufferView":16289, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":16290, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16291, + "componentType":5126, + "count":578, + "max":[ + 178.90992736816406, + 32.825321197509766, + 178.9110565185547 + ], + "min":[ + -178.91232299804688, + 1.1444091796875e-05, + -178.9112548828125 + ], + "type":"VEC3" + }, + { + "bufferView":16292, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":16293, + "componentType":5126, + "count":918, + "max":[ + 879.66015625, + 587.032958984375, + 879.6616821289062 + ], + "min":[ + -879.658203125, + -3.0517578125e-05, + -879.6587524414062 + ], + "type":"VEC3" + }, + { + "bufferView":16294, + "componentType":5126, + "count":918, + "type":"VEC3" + }, + { + "bufferView":16295, + "componentType":5126, + "count":918, + "type":"VEC2" + }, + { + "bufferView":16296, + "componentType":5123, + "count":1440, + "type":"SCALAR" + }, + { + "bufferView":16297, + "componentType":5126, + "count":577, + "max":[ + 168.17123413085938, + 242.8599395751953, + 151.1468505859375 + ], + "min":[ + -175.37606811523438, + 35.69518280029297, + -163.0789794921875 + ], + "type":"VEC3" + }, + { + "bufferView":16298, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":16299, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16300, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":16301, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":16302, + "componentType":5126, + "count":72, + "max":[ + 771.3447875976562, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.34619140625, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":16303, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":16304, + "componentType":5126, + "count":76, + "max":[ + 279.0987243652344, + 3543.081787109375, + 278.8664855957031 + ], + "min":[ + -279.1011047363281, + 0, + -278.86700439453125 + ], + "type":"VEC3" + }, + { + "bufferView":16305, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":16306, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":16307, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68670654296875 + ], + "min":[ + -15.4755859375, + 0, + -381.68621826171875 + ], + "type":"VEC3" + }, + { + "bufferView":16308, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16309, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16310, + "componentType":5126, + "count":583, + "max":[ + 190.5502166748047, + 122.43497467041016, + 198.53135681152344 + ], + "min":[ + -190.5523681640625, + -0.000244140625, + -198.53167724609375 + ], + "type":"VEC3" + }, + { + "bufferView":16311, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":16312, + "componentType":5126, + "count":576, + "max":[ + 184.51686096191406, + 191.2522735595703, + 166.95533752441406 + ], + "min":[ + -184.51705932617188, + 1.2847518920898438, + -154.67498779296875 + ], + "type":"VEC3" + }, + { + "bufferView":16313, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":16314, + "componentType":5126, + "count":50, + "max":[ + 127.44287109375, + 625.6328125, + 391.7373046875 + ], + "min":[ + -127.4443359375, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":16315, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":16316, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":16317, + "componentType":5126, + "count":748, + "max":[ + 136.37388610839844, + 174.9698944091797, + 128.8613739013672 + ], + "min":[ + -136.373779296875, + 1.1425018310546875, + -128.9687042236328 + ], + "type":"VEC3" + }, + { + "bufferView":16318, + "componentType":5126, + "count":748, + "type":"VEC3" + }, + { + "bufferView":16319, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":16320, + "componentType":5126, + "count":348, + "max":[ + 171.2998046875, + 184.80810546875, + 176.140625 + ], + "min":[ + -171.296875, + 44.456787109375, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":16321, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":16322, + "componentType":5126, + "count":348, + "type":"VEC2" + }, + { + "bufferView":16323, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":16324, + "componentType":5126, + "count":458, + "max":[ + 124.61407470703125, + 172.9116973876953, + 121.648193359375 + ], + "min":[ + -124.614013671875, + -1.52587890625e-05, + -121.649658203125 + ], + "type":"VEC3" + }, + { + "bufferView":16325, + "componentType":5126, + "count":458, + "type":"VEC3" + }, + { + "bufferView":16326, + "componentType":5126, + "count":458, + "type":"VEC2" + }, + { + "bufferView":16327, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":16328, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16329, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16330, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.2841796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.2841796875 + ], + "type":"VEC3" + }, + { + "bufferView":16331, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":16332, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":16333, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16334, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16335, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16336, + "componentType":5126, + "count":24, + "max":[ + 6.648465633392334, + 281.2873840332031, + 28.82053565979004 + ], + "min":[ + -6.647258281707764, + -3.0517578125e-05, + -28.820537567138672 + ], + "type":"VEC3" + }, + { + "bufferView":16337, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16338, + "componentType":5126, + "count":4, + "max":[ + 3857.665771484375, + 0.00030517578125, + 4755.3896484375 + ], + "min":[ + -3857.6650390625, + 0, + -4755.38818359375 + ], + "type":"VEC3" + }, + { + "bufferView":16339, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16340, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16341, + "componentType":5126, + "count":82, + "max":[ + 5.782173156738281, + 27.783470153808594, + 5.7820587158203125 + ], + "min":[ + -5.782069683074951, + -0.0002994537353515625, + -5.782153129577637 + ], + "type":"VEC3" + }, + { + "bufferView":16342, + "componentType":5126, + "count":82, + "type":"VEC3" + }, + { + "bufferView":16343, + "componentType":5126, + "count":82, + "type":"VEC2" + }, + { + "bufferView":16344, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 703.126953125 + ], + "min":[ + -110.00003814697266, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":16345, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16346, + "componentType":5126, + "count":812, + "max":[ + 4.1318359375, + 90.58740997314453, + 34.45703887939453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":16347, + "componentType":5126, + "count":812, + "type":"VEC3" + }, + { + "bufferView":16348, + "componentType":5126, + "count":812, + "type":"VEC2" + }, + { + "bufferView":16349, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":16350, + "componentType":5126, + "count":192, + "max":[ + 22.728515625, + 2370.382568359375, + 32.115028381347656 + ], + "min":[ + -22.73046875, + 0, + -32.116004943847656 + ], + "type":"VEC3" + }, + { + "bufferView":16351, + "componentType":5126, + "count":192, + "type":"VEC3" + }, + { + "bufferView":16352, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":16353, + "componentType":5126, + "count":559, + "max":[ + 223.19967651367188, + 446.2801208496094, + 223.6057891845703 + ], + "min":[ + -223.19964599609375, + 0.0001373291015625, + -223.60580444335938 + ], + "type":"VEC3" + }, + { + "bufferView":16354, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":16355, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":16356, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":16357, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16358, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16359, + "componentType":5126, + "count":1489, + "max":[ + 838.28857421875, + 3659.47607421875, + 594.32177734375 + ], + "min":[ + -643.9140625, + 90.819091796875, + -354.107421875 + ], + "type":"VEC3" + }, + { + "bufferView":16360, + "componentType":5126, + "count":1489, + "type":"VEC3" + }, + { + "bufferView":16361, + "componentType":5126, + "count":1489, + "type":"VEC2" + }, + { + "bufferView":16362, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":16363, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16364, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16365, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16366, + "componentType":5126, + "count":122, + "max":[ + 983.46875, + 355.5093688964844, + 983.4702758789062 + ], + "min":[ + -983.470703125, + 9.1552734375e-05, + -983.4712524414062 + ], + "type":"VEC3" + }, + { + "bufferView":16367, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":16368, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":16369, + "componentType":5126, + "count":52, + "max":[ + 161.98095703125, + 658.67578125, + 366.15234375 + ], + "min":[ + -161.97900390625, + 0, + -366.1533203125 + ], + "type":"VEC3" + }, + { + "bufferView":16370, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":16371, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":16372, + "componentType":5126, + "count":338, + "max":[ + 45.85810852050781, + 228.1693115234375, + 115.62022399902344 + ], + "min":[ + -45.85676574707031, + -0.0001068115234375, + -115.62042236328125 + ], + "type":"VEC3" + }, + { + "bufferView":16373, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":16374, + "componentType":5126, + "count":488, + "max":[ + 879.658203125, + 587.0330810546875, + 879.6616821289062 + ], + "min":[ + -879.66015625, + 9.1552734375e-05, + -879.6587524414062 + ], + "type":"VEC3" + }, + { + "bufferView":16375, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":16376, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":16377, + "componentType":5126, + "count":1043, + "max":[ + 125.22607421875, + 76.19921875, + 90.10888671875 + ], + "min":[ + -125.22607421875, + 0, + -90.109375 + ], + "type":"VEC3" + }, + { + "bufferView":16378, + "componentType":5126, + "count":1043, + "type":"VEC3" + }, + { + "bufferView":16379, + "componentType":5126, + "count":1043, + "type":"VEC2" + }, + { + "bufferView":16380, + "componentType":5126, + "count":672, + "max":[ + 6.751345634460449, + 2490.57568359375, + 7014.0732421875 + ], + "min":[ + -6.751345634460449, + 0, + -7014.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":16381, + "componentType":5126, + "count":672, + "type":"VEC3" + }, + { + "bufferView":16382, + "componentType":5126, + "count":672, + "type":"VEC2" + }, + { + "bufferView":16383, + "componentType":5123, + "count":1656, + "type":"SCALAR" + }, + { + "bufferView":16384, + "componentType":5126, + "count":584, + "max":[ + 186.525634765625, + 224.35946655273438, + 170.5655975341797 + ], + "min":[ + -186.52935791015625, + 6.103515625e-05, + -170.56582641601562 + ], + "type":"VEC3" + }, + { + "bufferView":16385, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":16386, + "componentType":5126, + "count":598, + "max":[ + 149.38990783691406, + 217.05551147460938, + 134.02517700195312 + ], + "min":[ + -156.6021270751953, + 31.774948120117188, + -145.9572296142578 + ], + "type":"VEC3" + }, + { + "bufferView":16387, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":16388, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16389, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 463.990234375 + ], + "min":[ + -110.0000228881836, + 0, + -463.990234375 + ], + "type":"VEC3" + }, + { + "bufferView":16390, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16391, + "componentType":5126, + "count":52, + "max":[ + 238.48046875, + 483.89794921875, + 30 + ], + "min":[ + -238.47802734375, + 0, + -30.0009765625 + ], + "type":"VEC3" + }, + { + "bufferView":16392, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":16393, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":16394, + "componentType":5126, + "count":592, + "max":[ + 179.8218994140625, + 216.54360961914062, + 164.4510040283203 + ], + "min":[ + -179.82052612304688, + 1.52587890625e-05, + -164.4506378173828 + ], + "type":"VEC3" + }, + { + "bufferView":16395, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":16396, + "componentType":5126, + "count":24, + "max":[ + 110.00021362304688, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534164175624028, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":16397, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16398, + "componentType":5126, + "count":574, + "max":[ + 162.09307861328125, + 32.825321197509766, + 162.09364318847656 + ], + "min":[ + -162.0943145751953, + -7.2479248046875e-05, + -162.09371948242188 + ], + "type":"VEC3" + }, + { + "bufferView":16399, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":16400, + "componentType":5126, + "count":248, + "max":[ + 416.3180847167969, + 1951.6678466796875, + 630.4185180664062 + ], + "min":[ + -383.6985778808594, + 17.533554077148438, + -575.7841796875 + ], + "type":"VEC3" + }, + { + "bufferView":16401, + "componentType":5126, + "count":248, + "type":"VEC3" + }, + { + "bufferView":16402, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":16403, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":16404, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16405, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16406, + "componentType":5126, + "count":1330, + "max":[ + 4857.84619140625, + 790.025634765625, + 49.982421875 + ], + "min":[ + -4857.84765625, + 0, + -49.98291015625 + ], + "type":"VEC3" + }, + { + "bufferView":16407, + "componentType":5126, + "count":1330, + "type":"VEC3" + }, + { + "bufferView":16408, + "componentType":5126, + "count":1330, + "type":"VEC2" + }, + { + "bufferView":16409, + "componentType":5126, + "count":488, + "max":[ + 879.6591796875, + 587.032958984375, + 879.6582641601562 + ], + "min":[ + -879.6591796875, + -3.0517578125e-05, + -879.6621704101562 + ], + "type":"VEC3" + }, + { + "bufferView":16410, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":16411, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":16412, + "componentType":5126, + "count":595, + "max":[ + 155.6784210205078, + 188.40704345703125, + 142.43716430664062 + ], + "min":[ + -155.67872619628906, + 0.0001983642578125, + -142.43719482421875 + ], + "type":"VEC3" + }, + { + "bufferView":16413, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":16414, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16415, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16416, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16417, + "componentType":5126, + "count":233, + "max":[ + 172.59716796875, + 185.23583984375, + 169.0704345703125 + ], + "min":[ + -172.596923828125, + 0, + -169.070556640625 + ], + "type":"VEC3" + }, + { + "bufferView":16418, + "componentType":5126, + "count":233, + "type":"VEC3" + }, + { + "bufferView":16419, + "componentType":5126, + "count":233, + "type":"VEC2" + }, + { + "bufferView":16420, + "componentType":5126, + "count":582, + "max":[ + 197.5582275390625, + 283.2462158203125, + 177.94407653808594 + ], + "min":[ + -204.76707458496094, + 41.83033752441406, + -189.8762969970703 + ], + "type":"VEC3" + }, + { + "bufferView":16421, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":16422, + "componentType":5126, + "count":562, + "max":[ + 199.93199157714844, + 32.82524108886719, + 199.9328155517578 + ], + "min":[ + -199.93392944335938, + 8.7738037109375e-05, + -199.93313598632812 + ], + "type":"VEC3" + }, + { + "bufferView":16423, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":16424, + "componentType":5126, + "count":76, + "max":[ + 278.8675231933594, + 3543.081787109375, + 279.1027526855469 + ], + "min":[ + -278.8695068359375, + 0, + -279.10015869140625 + ], + "type":"VEC3" + }, + { + "bufferView":16425, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":16426, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":16427, + "componentType":5126, + "count":594, + "max":[ + 151.65382385253906, + 183.7174072265625, + 138.7682342529297 + ], + "min":[ + -151.6556854248047, + 0.000152587890625, + -138.76828002929688 + ], + "type":"VEC3" + }, + { + "bufferView":16428, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":16429, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16430, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16431, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16432, + "componentType":5126, + "count":577, + "max":[ + 170.4312744140625, + 112.17939758300781, + 177.5095977783203 + ], + "min":[ + -170.43348693847656, + 0.0001983642578125, + -177.5098114013672 + ], + "type":"VEC3" + }, + { + "bufferView":16433, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":16434, + "componentType":5126, + "count":578, + "max":[ + 171.90518188476562, + 178.72332763671875, + 156.03225708007812 + ], + "min":[ + -171.9025421142578, + 1.1937179565429688, + -143.7515411376953 + ], + "type":"VEC3" + }, + { + "bufferView":16435, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":16436, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16437, + "componentType":5126, + "count":202, + "max":[ + 156.1572265625, + 12554.818359375, + 1060.18505859375 + ], + "min":[ + -156.1632080078125, + 0.000152587890625, + -1060.1884765625 + ], + "type":"VEC3" + }, + { + "bufferView":16438, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":16439, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":16440, + "componentType":5126, + "count":580, + "max":[ + 162.09307861328125, + 167.85537719726562, + 141.3960723876953 + ], + "min":[ + -162.0943145751953, + -0.0001373291015625, + -141.39605712890625 + ], + "type":"VEC3" + }, + { + "bufferView":16441, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":16442, + "componentType":5126, + "count":226, + "max":[ + 146.6844024658203, + 281.0282287597656, + 131.18060302734375 + ], + "min":[ + -146.6806640625, + -1.52587890625e-05, + -131.18035888671875 + ], + "type":"VEC3" + }, + { + "bufferView":16443, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":16444, + "componentType":5126, + "count":115, + "max":[ + 5.782175540924072, + 27.783960342407227, + 5.782160758972168 + ], + "min":[ + -5.782073497772217, + 0.0001882332726381719, + -5.782059669494629 + ], + "type":"VEC3" + }, + { + "bufferView":16445, + "componentType":5126, + "count":115, + "type":"VEC3" + }, + { + "bufferView":16446, + "componentType":5126, + "count":115, + "type":"VEC2" + }, + { + "bufferView":16447, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":16448, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16449, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16450, + "componentType":5126, + "count":210, + "max":[ + 13.25341796875, + 75.79608154296875, + 25.5062255859375 + ], + "min":[ + -13.25, + 0.00020866189152002335, + -25.4976806640625 + ], + "type":"VEC3" + }, + { + "bufferView":16451, + "componentType":5126, + "count":210, + "type":"VEC3" + }, + { + "bufferView":16452, + "componentType":5126, + "count":210, + "type":"VEC2" + }, + { + "bufferView":16453, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":16454, + "componentType":5126, + "count":586, + "max":[ + 174.70864868164062, + 181.50741577148438, + 158.45947265625 + ], + "min":[ + -174.70492553710938, + 1.2139205932617188, + -146.17913818359375 + ], + "type":"VEC3" + }, + { + "bufferView":16455, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":16456, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":16457, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16458, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16459, + "componentType":5126, + "count":592, + "max":[ + 179.40296936035156, + 115.4754409790039, + 183.1154022216797 + ], + "min":[ + -172.19187927246094, + 0.7393112182617188, + -183.11566162109375 + ], + "type":"VEC3" + }, + { + "bufferView":16460, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":16461, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16462, + "componentType":5126, + "count":90, + "max":[ + 63.2647705078125, + 120.08056640625, + 818.852783203125 + ], + "min":[ + -63.265380859375, + -0.000244140625, + -818.85302734375 + ], + "type":"VEC3" + }, + { + "bufferView":16463, + "componentType":5126, + "count":90, + "type":"VEC3" + }, + { + "bufferView":16464, + "componentType":5126, + "count":90, + "type":"VEC2" + }, + { + "bufferView":16465, + "componentType":5126, + "count":24, + "max":[ + 83.760986328125, + 276.109375, + 88.3438720703125 + ], + "min":[ + -83.76171875, + 0, + -88.34375 + ], + "type":"VEC3" + }, + { + "bufferView":16466, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16467, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16468, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":16469, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16470, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16471, + "componentType":5126, + "count":568, + "max":[ + 149.48141479492188, + 32.8253173828125, + 149.48057556152344 + ], + "min":[ + -149.47979736328125, + -4.9591064453125e-05, + -149.48060607910156 + ], + "type":"VEC3" + }, + { + "bufferView":16472, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":16473, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16474, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16475, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16476, + "componentType":5126, + "count":1660, + "max":[ + 433.12109375, + 367.92919921875, + 90.00634765625 + ], + "min":[ + -433.119140625, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":16477, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":16478, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":16479, + "componentType":5126, + "count":76, + "max":[ + 279.0987243652344, + 3543.081787109375, + 278.8667297363281 + ], + "min":[ + -279.1011047363281, + 0, + -278.86676025390625 + ], + "type":"VEC3" + }, + { + "bufferView":16480, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":16481, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":16482, + "componentType":5126, + "count":586, + "max":[ + 167.7482452392578, + 110.9007568359375, + 174.7068328857422 + ], + "min":[ + -167.75155639648438, + 3.0517578125e-05, + -174.70677185058594 + ], + "type":"VEC3" + }, + { + "bufferView":16483, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":16484, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16485, + "componentType":5126, + "count":127, + "max":[ + 3859.009521484375, + 81.2109375, + 40.60498046875 + ], + "min":[ + -3859.01416015625, + 0, + -40.60498046875 + ], + "type":"VEC3" + }, + { + "bufferView":16486, + "componentType":5126, + "count":127, + "type":"VEC3" + }, + { + "bufferView":16487, + "componentType":5126, + "count":127, + "type":"VEC2" + }, + { + "bufferView":16488, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16489, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16490, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16491, + "componentType":5126, + "count":581, + "max":[ + 150.8831329345703, + 156.79954528808594, + 131.68653869628906 + ], + "min":[ + -150.88096618652344, + -0.0001068115234375, + -131.68649291992188 + ], + "type":"VEC3" + }, + { + "bufferView":16492, + "componentType":5126, + "count":581, + "type":"VEC3" + }, + { + "bufferView":16493, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92926025390625, + 384.1416015625 + ], + "min":[ + -245.2333984375, + -6.103515625e-05, + -384.1381530761719 + ], + "type":"VEC3" + }, + { + "bufferView":16494, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":16495, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":16496, + "componentType":5126, + "count":106, + "max":[ + 27.31396484375, + 1876.475341796875, + 413.562255859375 + ], + "min":[ + -27.3154296875, + 0.000244140625, + -413.56005859375 + ], + "type":"VEC3" + }, + { + "bufferView":16497, + "componentType":5126, + "count":106, + "type":"VEC3" + }, + { + "bufferView":16498, + "componentType":5126, + "count":106, + "type":"VEC2" + }, + { + "bufferView":16499, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16500, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16501, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16502, + "componentType":5126, + "count":584, + "max":[ + 185.91859436035156, + 191.34945678710938, + 162.02882385253906 + ], + "min":[ + -185.9182586669922, + -0.0001373291015625, + -162.0288848876953 + ], + "type":"VEC3" + }, + { + "bufferView":16503, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":16504, + "componentType":5126, + "count":134, + "max":[ + 40.60595703125, + 81.2099609375, + 7759.267578125 + ], + "min":[ + -40.60546875, + 0, + -7759.2685546875 + ], + "type":"VEC3" + }, + { + "bufferView":16505, + "componentType":5126, + "count":134, + "type":"VEC3" + }, + { + "bufferView":16506, + "componentType":5126, + "count":134, + "type":"VEC2" + }, + { + "bufferView":16507, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":16508, + "componentType":5126, + "count":568, + "max":[ + 206.177734375, + 212.7677764892578, + 185.7144012451172 + ], + "min":[ + -206.17726135253906, + 1.4404754638671875, + -173.4330291748047 + ], + "type":"VEC3" + }, + { + "bufferView":16509, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":16510, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16511, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":16512, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16513, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16514, + "componentType":5126, + "count":572, + "max":[ + 152.99537658691406, + 103.86900329589844, + 159.2907257080078 + ], + "min":[ + -152.9966583251953, + -7.62939453125e-05, + -159.2908477783203 + ], + "type":"VEC3" + }, + { + "bufferView":16515, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":16516, + "componentType":5126, + "count":563, + "max":[ + 178.89952087402344, + 257.6051025390625, + 160.930908203125 + ], + "min":[ + -186.1079864501953, + 37.93511962890625, + -172.86253356933594 + ], + "type":"VEC3" + }, + { + "bufferView":16517, + "componentType":5126, + "count":563, + "type":"VEC3" + }, + { + "bufferView":16518, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16519, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":16520, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16521, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16522, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16523, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16524, + "componentType":5126, + "count":587, + "max":[ + 148.9708251953125, + 101.9517822265625, + 155.0863800048828 + ], + "min":[ + -148.97369384765625, + 7.62939453125e-05, + -155.08645629882812 + ], + "type":"VEC3" + }, + { + "bufferView":16525, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":16526, + "componentType":5126, + "count":106, + "max":[ + 33.5791015625, + 2306.921630859375, + 508.42852783203125 + ], + "min":[ + -33.5791015625, + 0, + -508.42950439453125 + ], + "type":"VEC3" + }, + { + "bufferView":16527, + "componentType":5126, + "count":106, + "type":"VEC3" + }, + { + "bufferView":16528, + "componentType":5126, + "count":106, + "type":"VEC2" + }, + { + "bufferView":16529, + "componentType":5126, + "count":24, + "max":[ + 350, + 1016.5, + 350 + ], + "min":[ + -350, + 0, + -350 + ], + "type":"VEC3" + }, + { + "bufferView":16530, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16531, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16532, + "componentType":5126, + "count":4, + "max":[ + 698.884765625, + 2586.479248046875, + 0.0013247504830360413 + ], + "min":[ + -698.884765625, + 0, + 0.0008725151419639587 + ], + "type":"VEC3" + }, + { + "bufferView":16533, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16534, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16535, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16536, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16537, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16538, + "componentType":5126, + "count":580, + "max":[ + 197.86923217773438, + 237.57696533203125, + 180.90689086914062 + ], + "min":[ + -197.86849975585938, + -9.1552734375e-05, + -180.90689086914062 + ], + "type":"VEC3" + }, + { + "bufferView":16539, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":16540, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16541, + "componentType":5126, + "count":585, + "max":[ + 170.43125915527344, + 205.60140991210938, + 155.88986206054688 + ], + "min":[ + -170.43350219726562, + -9.1552734375e-05, + -155.89002990722656 + ], + "type":"VEC3" + }, + { + "bufferView":16542, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":16543, + "componentType":5126, + "count":570, + "max":[ + 191.5255126953125, + 198.21255493164062, + 173.0242919921875 + ], + "min":[ + -191.5229949951172, + 1.3351058959960938, + -160.74298095703125 + ], + "type":"VEC3" + }, + { + "bufferView":16544, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":16545, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16546, + "componentType":5126, + "count":7991, + "max":[ + 496.1484375, + 429.9638671875, + 103.787109375 + ], + "min":[ + -496.148681640625, + 0, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":16547, + "componentType":5126, + "count":7991, + "type":"VEC3" + }, + { + "bufferView":16548, + "componentType":5126, + "count":7991, + "type":"VEC2" + }, + { + "bufferView":16549, + "componentType":5126, + "count":108, + "max":[ + 25.6494140625, + 2502.00830078125, + 1256.998046875 + ], + "min":[ + -25.6494140625, + -0.00018310546875, + -1257.001953125 + ], + "type":"VEC3" + }, + { + "bufferView":16550, + "componentType":5126, + "count":108, + "type":"VEC3" + }, + { + "bufferView":16551, + "componentType":5126, + "count":108, + "type":"VEC2" + }, + { + "bufferView":16552, + "componentType":5123, + "count":162, + "type":"SCALAR" + }, + { + "bufferView":16553, + "componentType":5126, + "count":72, + "max":[ + 771.3452758789062, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.345703125, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":16554, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":16555, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16556, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16557, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16558, + "componentType":5126, + "count":329, + "max":[ + 170.9052734375, + 157.003173828125, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.2880859375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":16559, + "componentType":5126, + "count":329, + "type":"VEC3" + }, + { + "bufferView":16560, + "componentType":5126, + "count":329, + "type":"VEC2" + }, + { + "bufferView":16561, + "componentType":5126, + "count":189, + "max":[ + 13.25341796875, + 75.79529571533203, + 23.9544677734375 + ], + "min":[ + -13.2509765625, + 4.2061321437358856e-05, + -23.9471435546875 + ], + "type":"VEC3" + }, + { + "bufferView":16562, + "componentType":5126, + "count":189, + "type":"VEC3" + }, + { + "bufferView":16563, + "componentType":5126, + "count":189, + "type":"VEC2" + }, + { + "bufferView":16564, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":16565, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16566, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16567, + "componentType":5126, + "count":580, + "max":[ + 190.123779296875, + 195.49533081054688, + 165.669921875 + ], + "min":[ + -190.12181091308594, + -0.0001983642578125, + -165.6699981689453 + ], + "type":"VEC3" + }, + { + "bufferView":16568, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":16569, + "componentType":5126, + "count":125, + "max":[ + 3.8606557846069336, + 15.442764282226562, + 7.721338748931885 + ], + "min":[ + -3.860687017440796, + 8.249282836914062e-05, + -7.721341609954834 + ], + "type":"VEC3" + }, + { + "bufferView":16570, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":16571, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":16572, + "componentType":5126, + "count":224, + "max":[ + 146.6806640625, + 281.02813720703125, + 131.18055725097656 + ], + "min":[ + -146.68443298339844, + 9.1552734375e-05, + -131.1803436279297 + ], + "type":"VEC3" + }, + { + "bufferView":16573, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":16574, + "componentType":5126, + "count":566, + "max":[ + 192.9241180419922, + 32.825252532958984, + 192.92555236816406 + ], + "min":[ + -192.92724609375, + 9.5367431640625e-05, + -192.9258575439453 + ], + "type":"VEC3" + }, + { + "bufferView":16575, + "componentType":5126, + "count":566, + "type":"VEC3" + }, + { + "bufferView":16576, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16577, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16578, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16579, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16580, + "componentType":5126, + "count":1152, + "max":[ + 5.7883076667785645, + 185.22500610351562, + 65.60057067871094 + ], + "min":[ + -5.788393974304199, + -3.814697265625e-05, + -65.60050964355469 + ], + "type":"VEC3" + }, + { + "bufferView":16581, + "componentType":5126, + "count":1152, + "type":"VEC3" + }, + { + "bufferView":16582, + "componentType":5126, + "count":1152, + "type":"VEC2" + }, + { + "bufferView":16583, + "componentType":5123, + "count":3930, + "type":"SCALAR" + }, + { + "bufferView":16584, + "componentType":5126, + "count":580, + "max":[ + 195.72679138183594, + 201.02346801757812, + 170.52468872070312 + ], + "min":[ + -195.7303924560547, + -1.52587890625e-05, + -170.52474975585938 + ], + "type":"VEC3" + }, + { + "bufferView":16585, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":16586, + "componentType":5126, + "count":46, + "max":[ + 366.15283203125, + 658.67578125, + 161.98095703125 + ], + "min":[ + -366.15283203125, + 0, + -161.97900390625 + ], + "type":"VEC3" + }, + { + "bufferView":16587, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":16588, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":16589, + "componentType":5126, + "count":572, + "max":[ + 207.89891052246094, + 32.82524871826172, + 207.8983917236328 + ], + "min":[ + -207.89772033691406, + 0.0001068115234375, + -207.89828491210938 + ], + "type":"VEC3" + }, + { + "bufferView":16590, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":16591, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16592, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.929443359375, + 90.00634765625 + ], + "min":[ + -433.1201171875, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":16593, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":16594, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":16595, + "componentType":5126, + "count":71, + "max":[ + 3.7875235080718994, + 14.031469345092773, + 5.54845666885376 + ], + "min":[ + -3.7875478267669678, + -3.2901763916015625e-05, + -5.548463821411133 + ], + "type":"VEC3" + }, + { + "bufferView":16596, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":16597, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":16598, + "componentType":5126, + "count":112, + "max":[ + 124.18560028076172, + 1281.280517578125, + 124.18560791015625 + ], + "min":[ + -124.18560028076172, + -6.103515625e-05, + -124.18560791015625 + ], + "type":"VEC3" + }, + { + "bufferView":16599, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":16600, + "componentType":5126, + "count":594, + "max":[ + 151.65567016601562, + 183.7174530029297, + 138.76821899414062 + ], + "min":[ + -151.65382385253906, + 9.1552734375e-05, + -138.76815795898438 + ], + "type":"VEC3" + }, + { + "bufferView":16601, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":16602, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16603, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":16604, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16605, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16606, + "componentType":5126, + "count":348, + "max":[ + 171.298828125, + 184.80859375, + 176.1416015625 + ], + "min":[ + -171.296875, + 44.45703125, + -176.140380859375 + ], + "type":"VEC3" + }, + { + "bufferView":16607, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":16608, + "componentType":5126, + "count":348, + "type":"VEC2" + }, + { + "bufferView":16609, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":16610, + "componentType":5126, + "count":559, + "max":[ + 224.27151489257812, + 448.5429992675781, + 224.27151489257812 + ], + "min":[ + -224.27151489257812, + -3.0517578125e-05, + -224.27151489257812 + ], + "type":"VEC3" + }, + { + "bufferView":16611, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":16612, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":16613, + "componentType":5126, + "count":338, + "max":[ + 45.85808563232422, + 271.1289978027344, + 115.62043762207031 + ], + "min":[ + -45.85676956176758, + 42.95967102050781, + -115.62026977539062 + ], + "type":"VEC3" + }, + { + "bufferView":16614, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":16615, + "componentType":5126, + "count":1326, + "max":[ + 4857.84619140625, + 790.025634765625, + 49.983154296875 + ], + "min":[ + -4857.84765625, + 0, + -49.982177734375 + ], + "type":"VEC3" + }, + { + "bufferView":16616, + "componentType":5126, + "count":1326, + "type":"VEC3" + }, + { + "bufferView":16617, + "componentType":5126, + "count":1326, + "type":"VEC2" + }, + { + "bufferView":16618, + "componentType":5123, + "count":2520, + "type":"SCALAR" + }, + { + "bufferView":16619, + "componentType":5126, + "count":24, + "max":[ + 110.00011444091797, + 50, + 584.662109375 + ], + "min":[ + -110.00007629394531, + 0, + -584.666015625 + ], + "type":"VEC3" + }, + { + "bufferView":16620, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16621, + "componentType":5126, + "count":581, + "max":[ + 194.57534790039062, + 233.73861694335938, + 177.9033966064453 + ], + "min":[ + -194.5747528076172, + 0.0001220703125, + -177.90357971191406 + ], + "type":"VEC3" + }, + { + "bufferView":16622, + "componentType":5126, + "count":581, + "type":"VEC3" + }, + { + "bufferView":16623, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16624, + "componentType":5126, + "count":7799, + "max":[ + 496.306884765625, + 427.46484375, + 103.7867431640625 + ], + "min":[ + -496.306396484375, + 0, + -103.7867431640625 + ], + "type":"VEC3" + }, + { + "bufferView":16625, + "componentType":5126, + "count":7799, + "type":"VEC3" + }, + { + "bufferView":16626, + "componentType":5126, + "count":7799, + "type":"VEC2" + }, + { + "bufferView":16627, + "componentType":5126, + "count":1248, + "max":[ + 104.1713638305664, + 104.17131042480469, + 104.17139434814453 + ], + "min":[ + -104.1714096069336, + -8.392333984375e-05, + -104.17137908935547 + ], + "type":"VEC3" + }, + { + "bufferView":16628, + "componentType":5126, + "count":1248, + "type":"VEC3" + }, + { + "bufferView":16629, + "componentType":5126, + "count":1248, + "type":"VEC2" + }, + { + "bufferView":16630, + "componentType":5126, + "count":582, + "max":[ + 150.88096618652344, + 157.84201049804688, + 125.54590606689453 + ], + "min":[ + -150.8831329345703, + 1.0423660278320312, + -137.82711791992188 + ], + "type":"VEC3" + }, + { + "bufferView":16631, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":16632, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16633, + "componentType":5126, + "count":342, + "max":[ + 13.56085205078125, + 272.6591796875, + 115.08643341064453 + ], + "min":[ + -13.560539245605469, + 42.486289978027344, + -115.08647155761719 + ], + "type":"VEC3" + }, + { + "bufferView":16634, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":16635, + "componentType":5126, + "count":40, + "max":[ + 1.4143263101577759, + 10.51738452911377, + 5.258735656738281 + ], + "min":[ + -1.4143048524856567, + -9.012222290039062e-05, + -5.258738040924072 + ], + "type":"VEC3" + }, + { + "bufferView":16636, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":16637, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":16638, + "componentType":5126, + "count":570, + "max":[ + 191.47193908691406, + 264.9775390625, + 177.75440979003906 + ], + "min":[ + -184.26560974121094, + 39.05503845214844, + -165.8229217529297 + ], + "type":"VEC3" + }, + { + "bufferView":16639, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":16640, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16641, + "componentType":5126, + "count":7794, + "max":[ + 496.304931640625, + 427.4638671875, + 103.787353515625 + ], + "min":[ + -496.308349609375, + 0, + -103.786376953125 + ], + "type":"VEC3" + }, + { + "bufferView":16642, + "componentType":5126, + "count":7794, + "type":"VEC3" + }, + { + "bufferView":16643, + "componentType":5126, + "count":7794, + "type":"VEC2" + }, + { + "bufferView":16644, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":16645, + "componentType":5126, + "count":813, + "max":[ + 4.1328125, + 90.58753204345703, + 34.45508575439453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45801544189453 + ], + "type":"VEC3" + }, + { + "bufferView":16646, + "componentType":5126, + "count":813, + "type":"VEC3" + }, + { + "bufferView":16647, + "componentType":5126, + "count":813, + "type":"VEC2" + }, + { + "bufferView":16648, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":16649, + "componentType":5126, + "count":648, + "max":[ + 615.0107421875, + 2510.925048828125, + 347.265625 + ], + "min":[ + -615.01025390625, + 0, + -347.26611328125 + ], + "type":"VEC3" + }, + { + "bufferView":16650, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":16651, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":16652, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16653, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16654, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16655, + "componentType":5126, + "count":528, + "max":[ + 722.72265625, + 2637.3974609375, + 19.80198860168457 + ], + "min":[ + -722.72265625, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":16656, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":16657, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":16658, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16659, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16660, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16661, + "componentType":5126, + "count":142, + "max":[ + 3.45172119140625, + 18.94533348083496, + 9.472748756408691 + ], + "min":[ + -3.451845169067383, + -0.00011920928955078125, + -9.472702026367188 + ], + "type":"VEC3" + }, + { + "bufferView":16662, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":16663, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":16664, + "componentType":5126, + "count":51, + "max":[ + 366.15283203125, + 696.755859375, + 123.615234375 + ], + "min":[ + -366.15283203125, + 0, + -123.61328125 + ], + "type":"VEC3" + }, + { + "bufferView":16665, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":16666, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":16667, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92938232421875, + 384.1391906738281 + ], + "min":[ + -245.232421875, + 0.0001678466796875, + -384.1406555175781 + ], + "type":"VEC3" + }, + { + "bufferView":16668, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":16669, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":16670, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":16671, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16672, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16673, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16674, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16675, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16676, + "componentType":5126, + "count":76, + "max":[ + 279.0987243652344, + 3543.081787109375, + 278.8664855957031 + ], + "min":[ + -279.1011047363281, + 0, + -278.86700439453125 + ], + "type":"VEC3" + }, + { + "bufferView":16677, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":16678, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":16679, + "componentType":5126, + "count":24, + "max":[ + 349.0685729980469, + 50.00018310546875, + 584.6641845703125 + ], + "min":[ + -349.0680847167969, + 7.65542354201898e-05, + -584.6641235351562 + ], + "type":"VEC3" + }, + { + "bufferView":16680, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16681, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16682, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16683, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16684, + "componentType":5126, + "count":580, + "max":[ + 189.20867919921875, + 121.63380432128906, + 197.12991333007812 + ], + "min":[ + -189.2113494873047, + -9.1552734375e-05, + -197.13023376464844 + ], + "type":"VEC3" + }, + { + "bufferView":16685, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":16686, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28369140625 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":16687, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":16688, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":16689, + "componentType":5126, + "count":167, + "max":[ + 769.70751953125, + 113.19482421875, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.5966796875 + ], + "type":"VEC3" + }, + { + "bufferView":16690, + "componentType":5126, + "count":167, + "type":"VEC3" + }, + { + "bufferView":16691, + "componentType":5126, + "count":167, + "type":"VEC2" + }, + { + "bufferView":16692, + "componentType":5126, + "count":572, + "max":[ + 183.11512756347656, + 189.8602294921875, + 165.7416229248047 + ], + "min":[ + -183.11587524414062, + 1.2747421264648438, + -153.46128845214844 + ], + "type":"VEC3" + }, + { + "bufferView":16693, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":16694, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16695, + "componentType":5126, + "count":96, + "max":[ + 73.4791030883789, + 205.1731414794922, + 990.6383056640625 + ], + "min":[ + -73.47884368896484, + 0.000217437744140625, + -990.638671875 + ], + "type":"VEC3" + }, + { + "bufferView":16696, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":16697, + "componentType":5126, + "count":692, + "max":[ + 11508.994140625, + 699.9999389648438, + 6511.982421875 + ], + "min":[ + -11508.9912109375, + -3600.00244140625, + -6507.40771484375 + ], + "type":"VEC3" + }, + { + "bufferView":16698, + "componentType":5126, + "count":692, + "type":"VEC3" + }, + { + "bufferView":16699, + "componentType":5126, + "count":692, + "type":"VEC2" + }, + { + "bufferView":16700, + "componentType":5123, + "count":1548, + "type":"SCALAR" + }, + { + "bufferView":16701, + "componentType":5126, + "count":576, + "max":[ + 9232.537109375, + -1000.0025634765625, + 5808 + ], + "min":[ + -9232.53515625, + -3400.00244140625, + -5808.01953125 + ], + "type":"VEC3" + }, + { + "bufferView":16702, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":16703, + "componentType":5126, + "count":576, + "type":"VEC2" + }, + { + "bufferView":16704, + "componentType":5123, + "count":1080, + "type":"SCALAR" + }, + { + "bufferView":16705, + "componentType":5126, + "count":48, + "max":[ + 11210.0771484375, + -3400.00244140625, + 6250.07763671875 + ], + "min":[ + -11210.0732421875, + -3600.00244140625, + -6250.07763671875 + ], + "type":"VEC3" + }, + { + "bufferView":16706, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":16707, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":16708, + "componentType":5123, + "count":96, + "type":"SCALAR" + }, + { + "bufferView":16709, + "componentType":5126, + "count":192, + "max":[ + 9232.5322265625, + -1000.0025634765625, + 5798 + ], + "min":[ + -9232.5302734375, + -3400.00244140625, + -5798.01953125 + ], + "type":"VEC3" + }, + { + "bufferView":16710, + "componentType":5126, + "count":192, + "type":"VEC3" + }, + { + "bufferView":16711, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":16712, + "componentType":5123, + "count":288, + "type":"SCALAR" + }, + { + "bufferView":16713, + "componentType":5126, + "count":24, + "max":[ + 10187.037109375, + 3000.001220703125, + 5268.619140625 + ], + "min":[ + -10187.001953125, + 700.00048828125, + -5268.634765625 + ], + "type":"VEC3" + }, + { + "bufferView":16714, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16715, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16716, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":16717, + "componentType":5126, + "count":53, + "max":[ + 123.61328125, + 696.755859375, + 366.15283203125 + ], + "min":[ + -123.615234375, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":16718, + "componentType":5126, + "count":53, + "type":"VEC3" + }, + { + "bufferView":16719, + "componentType":5126, + "count":53, + "type":"VEC2" + }, + { + "bufferView":16720, + "componentType":5126, + "count":570, + "max":[ + 191.5255126953125, + 198.21255493164062, + 173.0238037109375 + ], + "min":[ + -191.5229949951172, + 1.3351058959960938, + -160.74346923828125 + ], + "type":"VEC3" + }, + { + "bufferView":16721, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":16722, + "componentType":5126, + "count":112, + "max":[ + 106.49429321289062, + 381.67120361328125, + 171.66299438476562 + ], + "min":[ + -106.49420166015625, + -3.0517578125e-05, + -171.6639404296875 + ], + "type":"VEC3" + }, + { + "bufferView":16723, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":16724, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92938232421875, + 384.5793762207031 + ], + "min":[ + -244.466796875, + 4.57763671875e-05, + -384.5820617675781 + ], + "type":"VEC3" + }, + { + "bufferView":16725, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":16726, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":16727, + "componentType":5126, + "count":240, + "max":[ + 416.3180847167969, + 2203.11083984375, + 91.49449920654297 + ], + "min":[ + -383.6984558105469, + 0.0001220703125, + -91.49444580078125 + ], + "type":"VEC3" + }, + { + "bufferView":16728, + "componentType":5126, + "count":240, + "type":"VEC3" + }, + { + "bufferView":16729, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":16730, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16731, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16732, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16733, + "componentType":5126, + "count":4, + "max":[ + 698.884765625, + 2586.479248046875, + 0.00022611767053604126 + ], + "min":[ + -698.88671875, + 0, + -0.00022611767053604126 + ], + "type":"VEC3" + }, + { + "bufferView":16734, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16735, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16736, + "componentType":5126, + "count":60, + "max":[ + 3.7875099182128906, + 13.000264167785645, + 3.742408275604248 + ], + "min":[ + -3.7875568866729736, + 0.00022077560424804688, + -3.742424249649048 + ], + "type":"VEC3" + }, + { + "bufferView":16737, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":16738, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":16739, + "componentType":5126, + "count":72, + "max":[ + 771.3452758789062, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.345703125, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":16740, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":16741, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16742, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16743, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16744, + "componentType":5126, + "count":186, + "max":[ + 22.728515625, + 2370.382568359375, + 32.116981506347656 + ], + "min":[ + -22.73046875, + 0, + -32.113075256347656 + ], + "type":"VEC3" + }, + { + "bufferView":16745, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":16746, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":16747, + "componentType":5126, + "count":244, + "max":[ + 400.0077209472656, + 1934.1334228515625, + 603.1017456054688 + ], + "min":[ + -400.009521484375, + 0.0001678466796875, + -603.10205078125 + ], + "type":"VEC3" + }, + { + "bufferView":16748, + "componentType":5126, + "count":244, + "type":"VEC3" + }, + { + "bufferView":16749, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":16750, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16751, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16752, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16753, + "componentType":5126, + "count":343, + "max":[ + 170.435546875, + 188.556640625, + 176.20361328125 + ], + "min":[ + -170.43359375, + 45.296875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":16754, + "componentType":5126, + "count":343, + "type":"VEC3" + }, + { + "bufferView":16755, + "componentType":5126, + "count":343, + "type":"VEC2" + }, + { + "bufferView":16756, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":16757, + "componentType":5126, + "count":96, + "max":[ + 600, + 143.7607421875, + 3331.830078125 + ], + "min":[ + -599.9981689453125, + -1.52587890625e-05, + -3331.830810546875 + ], + "type":"VEC3" + }, + { + "bufferView":16758, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":16759, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16760, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16761, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16762, + "componentType":5126, + "count":50, + "max":[ + 142.32275390625, + 608.2197265625, + 391.736328125 + ], + "min":[ + -142.31982421875, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":16763, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":16764, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":16765, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":16766, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":16767, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":16768, + "componentType":5126, + "count":564, + "max":[ + 192.92724609375, + 32.82526779174805, + 192.92555236816406 + ], + "min":[ + -192.9241180419922, + 6.4849853515625e-05, + -192.9258575439453 + ], + "type":"VEC3" + }, + { + "bufferView":16769, + "componentType":5126, + "count":564, + "type":"VEC3" + }, + { + "bufferView":16770, + "componentType":5126, + "count":1524, + "max":[ + 811.2451171875, + 3669.329345703125, + 385.11572265625 + ], + "min":[ + -612.765625, + 88.931640625, + -605.776611328125 + ], + "type":"VEC3" + }, + { + "bufferView":16771, + "componentType":5126, + "count":1524, + "type":"VEC3" + }, + { + "bufferView":16772, + "componentType":5126, + "count":1524, + "type":"VEC2" + }, + { + "bufferView":16773, + "componentType":5126, + "count":801, + "max":[ + 4.1318359375, + 90.58740997314453, + 34.45752716064453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45630645751953 + ], + "type":"VEC3" + }, + { + "bufferView":16774, + "componentType":5126, + "count":801, + "type":"VEC3" + }, + { + "bufferView":16775, + "componentType":5126, + "count":801, + "type":"VEC2" + }, + { + "bufferView":16776, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":16777, + "componentType":5126, + "count":560, + "max":[ + 163.4947967529297, + 32.825321197509766, + 163.49508666992188 + ], + "min":[ + -163.4954833984375, + 1.52587890625e-05, + -163.49517822265625 + ], + "type":"VEC3" + }, + { + "bufferView":16778, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":16779, + "componentType":5126, + "count":76, + "max":[ + 278.8669738769531, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8664245605469, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":16780, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":16781, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":16782, + "componentType":5126, + "count":24, + "max":[ + 2748.22509765625, + 201.5, + 7164.2216796875 + ], + "min":[ + -2748.225341796875, + 0, + -7164.22314453125 + ], + "type":"VEC3" + }, + { + "bufferView":16783, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16784, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16785, + "componentType":5126, + "count":40, + "max":[ + 1.4143264293670654, + 10.517629623413086, + 5.258737564086914 + ], + "min":[ + -1.4143013954162598, + 0.0001544952392578125, + -5.258735179901123 + ], + "type":"VEC3" + }, + { + "bufferView":16786, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":16787, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":16788, + "componentType":5126, + "count":788, + "max":[ + 4.130859375, + 90.58753204345703, + 34.45508575439453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":16789, + "componentType":5126, + "count":788, + "type":"VEC3" + }, + { + "bufferView":16790, + "componentType":5126, + "count":788, + "type":"VEC2" + }, + { + "bufferView":16791, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":16792, + "componentType":5126, + "count":241, + "max":[ + 169.0703125, + 185.2353515625, + 172.5966796875 + ], + "min":[ + -169.0703125, + -0.00048828125, + -172.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":16793, + "componentType":5126, + "count":241, + "type":"VEC3" + }, + { + "bufferView":16794, + "componentType":5126, + "count":241, + "type":"VEC2" + }, + { + "bufferView":16795, + "componentType":5126, + "count":596, + "max":[ + 167.6999969482422, + 32.825321197509766, + 167.69956970214844 + ], + "min":[ + -167.6990203857422, + 1.52587890625e-05, + -167.69944763183594 + ], + "type":"VEC3" + }, + { + "bufferView":16796, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":16797, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16798, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":16799, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16800, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16801, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16802, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16803, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16804, + "componentType":5126, + "count":690, + "max":[ + 150.83401489257812, + 175.0211181640625, + 143.72177124023438 + ], + "min":[ + -150.83132934570312, + 0.7163238525390625, + -143.72178649902344 + ], + "type":"VEC3" + }, + { + "bufferView":16805, + "componentType":5126, + "count":690, + "type":"VEC3" + }, + { + "bufferView":16806, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":16807, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":16808, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16809, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16810, + "componentType":5126, + "count":24, + "max":[ + 110.00007629394531, + 50, + 481.6465148925781 + ], + "min":[ + -110.0000991821289, + 0, + -481.6465148925781 + ], + "type":"VEC3" + }, + { + "bufferView":16811, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16812, + "componentType":5126, + "count":166, + "max":[ + 769.70751953125, + 113.19482421875, + 56.596435546875 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.59814453125 + ], + "type":"VEC3" + }, + { + "bufferView":16813, + "componentType":5126, + "count":166, + "type":"VEC3" + }, + { + "bufferView":16814, + "componentType":5126, + "count":166, + "type":"VEC2" + }, + { + "bufferView":16815, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":16816, + "componentType":5126, + "count":72, + "max":[ + 22.50006103515625, + 1492.539794921875, + 771.3447875976562 + ], + "min":[ + -22.500253677368164, + 0, + -771.34619140625 + ], + "type":"VEC3" + }, + { + "bufferView":16817, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":16818, + "componentType":5126, + "count":592, + "max":[ + 157.0199432373047, + 189.9700927734375, + 143.6602325439453 + ], + "min":[ + -157.01971435546875, + 0.0001373291015625, + -143.66014099121094 + ], + "type":"VEC3" + }, + { + "bufferView":16819, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":16820, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16821, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16822, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16823, + "componentType":5126, + "count":232, + "max":[ + 174.40771484375, + 193.254638671875, + 169.062744140625 + ], + "min":[ + -174.408203125, + 0, + -169.06298828125 + ], + "type":"VEC3" + }, + { + "bufferView":16824, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":16825, + "componentType":5126, + "count":232, + "type":"VEC2" + }, + { + "bufferView":16826, + "componentType":5126, + "count":560, + "max":[ + 192.92724609375, + 199.60464477539062, + 174.23765563964844 + ], + "min":[ + -192.9241180419922, + 1.3451385498046875, + -161.95701599121094 + ], + "type":"VEC3" + }, + { + "bufferView":16827, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":16828, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16829, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16830, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16831, + "componentType":5126, + "count":24, + "max":[ + 46.2841796875, + 147.76666259765625, + 78.58544921875 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":16832, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16833, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16834, + "componentType":5126, + "count":346, + "max":[ + 115.35118865966797, + 212.38772583007812, + 68.44580078125 + ], + "min":[ + -115.35128021240234, + 0.9673385620117188, + -68.44600677490234 + ], + "type":"VEC3" + }, + { + "bufferView":16835, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":16836, + "componentType":5126, + "count":458, + "max":[ + 124.61407470703125, + 172.9116973876953, + 121.649169921875 + ], + "min":[ + -124.614013671875, + -1.52587890625e-05, + -121.648681640625 + ], + "type":"VEC3" + }, + { + "bufferView":16837, + "componentType":5126, + "count":458, + "type":"VEC3" + }, + { + "bufferView":16838, + "componentType":5126, + "count":458, + "type":"VEC2" + }, + { + "bufferView":16839, + "componentType":5126, + "count":338, + "max":[ + 45.85810852050781, + 228.1693115234375, + 115.62022399902344 + ], + "min":[ + -45.85676574707031, + -0.0001068115234375, + -115.62042236328125 + ], + "type":"VEC3" + }, + { + "bufferView":16840, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":16841, + "componentType":5126, + "count":15112, + "max":[ + 128.0606231689453, + 193.06546020507812, + 128.06063842773438 + ], + "min":[ + -128.06065368652344, + -0.00017547607421875, + -128.06065368652344 + ], + "type":"VEC3" + }, + { + "bufferView":16842, + "componentType":5126, + "count":15112, + "type":"VEC3" + }, + { + "bufferView":16843, + "componentType":5126, + "count":15112, + "type":"VEC2" + }, + { + "bufferView":16844, + "componentType":5126, + "count":577, + "max":[ + 194.1539306640625, + 268.6639404296875, + 180.20040893554688 + ], + "min":[ + -186.94863891601562, + 39.615142822265625, + -168.268798828125 + ], + "type":"VEC3" + }, + { + "bufferView":16845, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":16846, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16847, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":16848, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":16849, + "componentType":5126, + "count":210, + "max":[ + 13.2529296875, + 75.79594421386719, + 25.506103515625 + ], + "min":[ + -13.2509765625, + 0.00019535725004971027, + -25.4976806640625 + ], + "type":"VEC3" + }, + { + "bufferView":16850, + "componentType":5126, + "count":210, + "type":"VEC3" + }, + { + "bufferView":16851, + "componentType":5126, + "count":210, + "type":"VEC2" + }, + { + "bufferView":16852, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":16853, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":16854, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16855, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16856, + "componentType":5126, + "count":579, + "max":[ + 163.72756958007812, + 197.78558349609375, + 149.77532958984375 + ], + "min":[ + -163.72467041015625, + -0.00018310546875, + -149.7748260498047 + ], + "type":"VEC3" + }, + { + "bufferView":16857, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":16858, + "componentType":5126, + "count":599, + "max":[ + 178.06201171875, + 114.83002471923828, + 181.7139434814453 + ], + "min":[ + -170.85037231445312, + 0.7330703735351562, + -181.71420288085938 + ], + "type":"VEC3" + }, + { + "bufferView":16859, + "componentType":5126, + "count":599, + "type":"VEC3" + }, + { + "bufferView":16860, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16861, + "componentType":5126, + "count":596, + "max":[ + 142.26710510253906, + 98.75543212890625, + 148.07913208007812 + ], + "min":[ + -142.26473999023438, + 0.0001068115234375, + -148.0791473388672 + ], + "type":"VEC3" + }, + { + "bufferView":16862, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":16863, + "componentType":5126, + "count":574, + "max":[ + 177.5111541748047, + 184.2915802001953, + 148.60606384277344 + ], + "min":[ + -177.50819396972656, + 1.2340087890625, + -160.88735961914062 + ], + "type":"VEC3" + }, + { + "bufferView":16864, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":16865, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16866, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4549560546875, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.00048828125, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":16867, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":16868, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":16869, + "componentType":5126, + "count":52, + "max":[ + 30.0029296875, + 483.89794921875, + 238.47802734375 + ], + "min":[ + -29.998046875, + 0, + -238.48046875 + ], + "type":"VEC3" + }, + { + "bufferView":16870, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":16871, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":16872, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16873, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16874, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16875, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16876, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16877, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16878, + "componentType":5126, + "count":574, + "max":[ + 149.48141479492188, + 155.41775512695312, + 130.4728546142578 + ], + "min":[ + -149.47979736328125, + 0.00019073486328125, + -130.47276306152344 + ], + "type":"VEC3" + }, + { + "bufferView":16879, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":16880, + "componentType":5126, + "count":562, + "max":[ + 187.32032775878906, + 194.036376953125, + 169.38272094726562 + ], + "min":[ + -187.31944274902344, + 1.3048629760742188, + -157.1023712158203 + ], + "type":"VEC3" + }, + { + "bufferView":16881, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":16882, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16883, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.92919921875, + 90.00634765625 + ], + "min":[ + -433.1201171875, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":16884, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":16885, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":16886, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16887, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16888, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16889, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16890, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16891, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16892, + "componentType":5126, + "count":588, + "max":[ + 185.91859436035156, + 192.64437866210938, + 168.1694793701172 + ], + "min":[ + -185.9182586669922, + 1.2947998046875, + -155.88818359375 + ], + "type":"VEC3" + }, + { + "bufferView":16893, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":16894, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16895, + "componentType":5126, + "count":580, + "max":[ + 174.70864868164062, + 180.29354858398438, + 152.31930541992188 + ], + "min":[ + -174.70492553710938, + 3.0517578125e-05, + -152.31935119628906 + ], + "type":"VEC3" + }, + { + "bufferView":16896, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":16897, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.5142822265625, + 22.7259578704834 + ], + "min":[ + -43.58984375, + 0.000118255615234375, + -22.729740142822266 + ], + "type":"VEC3" + }, + { + "bufferView":16898, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":16899, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":16900, + "componentType":5126, + "count":40, + "max":[ + 1.4143147468566895, + 10.517629623413086, + 5.258714199066162 + ], + "min":[ + -1.4143130779266357, + 0.0001544952392578125, + -5.258758544921875 + ], + "type":"VEC3" + }, + { + "bufferView":16901, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":16902, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":16903, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.5140380859375, + 22.7260799407959 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.729618072509766 + ], + "type":"VEC3" + }, + { + "bufferView":16904, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":16905, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":16906, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":16907, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16908, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16909, + "componentType":5126, + "count":224, + "max":[ + 118.72059631347656, + 272.6591491699219, + 115.08651733398438 + ], + "min":[ + -118.72098541259766, + 42.48627471923828, + -115.08641052246094 + ], + "type":"VEC3" + }, + { + "bufferView":16910, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":16911, + "componentType":5126, + "count":24, + "max":[ + 350, + 1016.5, + 350 + ], + "min":[ + -350, + 0, + -350 + ], + "type":"VEC3" + }, + { + "bufferView":16912, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16913, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16914, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16915, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16916, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16917, + "componentType":5126, + "count":588, + "max":[ + 196.2220001220703, + 235.65760803222656, + 179.40521240234375 + ], + "min":[ + -196.22190856933594, + -6.103515625e-05, + -179.40521240234375 + ], + "type":"VEC3" + }, + { + "bufferView":16918, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":16919, + "componentType":5126, + "count":548, + "max":[ + 7.779110908508301, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778773307800293, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":16920, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":16921, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":16922, + "componentType":5126, + "count":7804, + "max":[ + 496.304931640625, + 427.4638671875, + 103.786865234375 + ], + "min":[ + -496.308349609375, + 0, + -103.786865234375 + ], + "type":"VEC3" + }, + { + "bufferView":16923, + "componentType":5126, + "count":7804, + "type":"VEC3" + }, + { + "bufferView":16924, + "componentType":5126, + "count":7804, + "type":"VEC2" + }, + { + "bufferView":16925, + "componentType":5126, + "count":72, + "max":[ + 771.3452758789062, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.345703125, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":16926, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":16927, + "componentType":5126, + "count":1489, + "max":[ + 838.28857421875, + 3659.47607421875, + 594.32177734375 + ], + "min":[ + -643.9140625, + 90.819091796875, + -354.107421875 + ], + "type":"VEC3" + }, + { + "bufferView":16928, + "componentType":5126, + "count":1489, + "type":"VEC3" + }, + { + "bufferView":16929, + "componentType":5126, + "count":1489, + "type":"VEC2" + }, + { + "bufferView":16930, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16931, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16932, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16933, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":16934, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16935, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16936, + "componentType":5126, + "count":584, + "max":[ + 201.16162109375, + 241.41592407226562, + 183.90985107421875 + ], + "min":[ + -201.16366577148438, + 0, + -183.910400390625 + ], + "type":"VEC3" + }, + { + "bufferView":16937, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":16938, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16939, + "componentType":5126, + "count":24, + "max":[ + 6.647254943847656, + 281.2873840332031, + 28.820560455322266 + ], + "min":[ + -6.648461818695068, + -3.0517578125e-05, + -28.820560455322266 + ], + "type":"VEC3" + }, + { + "bufferView":16940, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16941, + "componentType":5126, + "count":24, + "max":[ + 27.19384765625, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":16942, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16943, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16944, + "componentType":5126, + "count":578, + "max":[ + 162.80516052246094, + 235.48712158203125, + 146.25491333007812 + ], + "min":[ + -170.01210021972656, + 34.57499694824219, + -158.18710327148438 + ], + "type":"VEC3" + }, + { + "bufferView":16945, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":16946, + "componentType":5126, + "count":340, + "max":[ + 45.858154296875, + 271.1290588378906, + 115.62026977539062 + ], + "min":[ + -45.85676956176758, + 42.95988464355469, + -115.62040710449219 + ], + "type":"VEC3" + }, + { + "bufferView":16947, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":16948, + "componentType":5126, + "count":338, + "max":[ + 13.560920715332031, + 230.70245361328125, + 115.3511962890625 + ], + "min":[ + -13.56060791015625, + -5.340576171875e-05, + -115.35127258300781 + ], + "type":"VEC3" + }, + { + "bufferView":16949, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":16950, + "componentType":5126, + "count":201, + "max":[ + 13.25439453125, + 75.79572296142578, + 23.9542236328125 + ], + "min":[ + -13.25048828125, + 9.736733045428991e-05, + -23.9468994140625 + ], + "type":"VEC3" + }, + { + "bufferView":16951, + "componentType":5126, + "count":201, + "type":"VEC3" + }, + { + "bufferView":16952, + "componentType":5126, + "count":201, + "type":"VEC2" + }, + { + "bufferView":16953, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":16954, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16955, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":16956, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":16957, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16958, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16959, + "componentType":5126, + "count":40, + "max":[ + 1.4143147468566895, + 10.517535209655762, + 5.258714199066162 + ], + "min":[ + -1.4143130779266357, + 6.0558319091796875e-05, + -5.258758544921875 + ], + "type":"VEC3" + }, + { + "bufferView":16960, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":16961, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":16962, + "componentType":5126, + "count":559, + "max":[ + 223.19967651367188, + 446.2801208496094, + 223.6057891845703 + ], + "min":[ + -223.19964599609375, + 0.0001373291015625, + -223.60580444335938 + ], + "type":"VEC3" + }, + { + "bufferView":16963, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":16964, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":16965, + "componentType":5126, + "count":574, + "max":[ + 148.07968139648438, + 154.0355682373047, + 129.2591552734375 + ], + "min":[ + -148.07859802246094, + -9.918212890625e-05, + -129.25901794433594 + ], + "type":"VEC3" + }, + { + "bufferView":16966, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":16967, + "componentType":5126, + "count":565, + "max":[ + 182.50497436523438, + 219.67001342773438, + 166.8965301513672 + ], + "min":[ + -182.50253295898438, + 9.1552734375e-05, + -166.89700317382812 + ], + "type":"VEC3" + }, + { + "bufferView":16968, + "componentType":5126, + "count":565, + "type":"VEC3" + }, + { + "bufferView":16969, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16970, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16971, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16972, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16973, + "componentType":5126, + "count":582, + "max":[ + 202.80819702148438, + 243.3352508544922, + 185.41143798828125 + ], + "min":[ + -202.8108673095703, + -1.52587890625e-05, + -185.41209411621094 + ], + "type":"VEC3" + }, + { + "bufferView":16974, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":16975, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16976, + "componentType":5126, + "count":52, + "max":[ + 366.1533203125, + 658.67578125, + 161.98095703125 + ], + "min":[ + -366.15234375, + 0, + -161.97900390625 + ], + "type":"VEC3" + }, + { + "bufferView":16977, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":16978, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":16979, + "componentType":5126, + "count":578, + "max":[ + 206.177734375, + 32.82525634765625, + 206.1774444580078 + ], + "min":[ + -206.17726135253906, + 0.0001068115234375, + -206.17755126953125 + ], + "type":"VEC3" + }, + { + "bufferView":16980, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":16981, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":16982, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92938232421875, + 384.1416015625 + ], + "min":[ + -245.2333984375, + -6.103515625e-05, + -384.1381530761719 + ], + "type":"VEC3" + }, + { + "bufferView":16983, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":16984, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":16985, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":16986, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16987, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":16988, + "componentType":5126, + "count":548, + "max":[ + 7.779110908508301, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778773307800293, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":16989, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":16990, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":16991, + "componentType":5126, + "count":580, + "max":[ + 184.51686096191406, + 32.82521057128906, + 184.51686096191406 + ], + "min":[ + -184.51705932617188, + 6.866455078125e-05, + -184.51707458496094 + ], + "type":"VEC3" + }, + { + "bufferView":16992, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":16993, + "componentType":5126, + "count":260, + "max":[ + 3.4517245292663574, + 18.945335388183594, + 9.472704887390137 + ], + "min":[ + -3.4518513679504395, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":16994, + "componentType":5126, + "count":260, + "type":"VEC3" + }, + { + "bufferView":16995, + "componentType":5126, + "count":260, + "type":"VEC2" + }, + { + "bufferView":16996, + "componentType":5126, + "count":579, + "max":[ + 186.52565002441406, + 120.03093719482422, + 194.32701110839844 + ], + "min":[ + -186.5293426513672, + -0.0002288818359375, + -194.3273162841797 + ], + "type":"VEC3" + }, + { + "bufferView":16997, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":16998, + "componentType":5126, + "count":224, + "max":[ + 118.72061157226562, + 230.1728515625, + 115.08641052246094 + ], + "min":[ + -118.72099304199219, + -5.340576171875e-05, + -115.08650970458984 + ], + "type":"VEC3" + }, + { + "bufferView":16999, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":17000, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":17001, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17002, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17003, + "componentType":5126, + "count":7991, + "max":[ + 496.1484375, + 429.9638671875, + 103.787109375 + ], + "min":[ + -496.148681640625, + 0, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":17004, + "componentType":5126, + "count":7991, + "type":"VEC3" + }, + { + "bufferView":17005, + "componentType":5126, + "count":7991, + "type":"VEC2" + }, + { + "bufferView":17006, + "componentType":5126, + "count":224, + "max":[ + 115.14118194580078, + 230.28256225585938, + 118.72077178955078 + ], + "min":[ + -115.1412582397461, + 8.392333984375e-05, + -118.72087097167969 + ], + "type":"VEC3" + }, + { + "bufferView":17007, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":17008, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17009, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17010, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17011, + "componentType":5126, + "count":76, + "max":[ + 279.10015869140625, + 3543.081787109375, + 278.8685302734375 + ], + "min":[ + -279.1027526855469, + 0, + -278.8685607910156 + ], + "type":"VEC3" + }, + { + "bufferView":17012, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":17013, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":17014, + "componentType":5126, + "count":548, + "max":[ + 7.778923988342285, + 21.312030792236328, + 10.655908584594727 + ], + "min":[ + -7.778950214385986, + 0.00021648406982421875, + -10.65590763092041 + ], + "type":"VEC3" + }, + { + "bufferView":17015, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":17016, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":17017, + "componentType":5126, + "count":54, + "max":[ + 217.04150390625, + 520.125, + 29.798828125 + ], + "min":[ + -217.04150390625, + 0, + -29.798828125 + ], + "type":"VEC3" + }, + { + "bufferView":17018, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":17019, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":17020, + "componentType":5126, + "count":1049, + "max":[ + 125.22607421875, + 76.19921875, + 90.1087646484375 + ], + "min":[ + -125.22607421875, + 0, + -90.109375 + ], + "type":"VEC3" + }, + { + "bufferView":17021, + "componentType":5126, + "count":1049, + "type":"VEC3" + }, + { + "bufferView":17022, + "componentType":5126, + "count":1049, + "type":"VEC2" + }, + { + "bufferView":17023, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":17024, + "componentType":5126, + "count":71, + "max":[ + 3.7875242233276367, + 14.031471252441406, + 5.5484700202941895 + ], + "min":[ + -3.787548780441284, + -3.199544153176248e-05, + -5.548454284667969 + ], + "type":"VEC3" + }, + { + "bufferView":17025, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":17026, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":17027, + "componentType":5126, + "count":576, + "max":[ + 149.47979736328125, + 156.44998168945312, + 124.33222961425781 + ], + "min":[ + -149.48141479492188, + 1.0324172973632812, + -136.61338806152344 + ], + "type":"VEC3" + }, + { + "bufferView":17028, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":17029, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17030, + "componentType":5126, + "count":188, + "max":[ + 769.70703125, + 113.194580078125, + 56.59814453125 + ], + "min":[ + -769.71044921875, + 6.103515625e-05, + -56.59619140625 + ], + "type":"VEC3" + }, + { + "bufferView":17031, + "componentType":5126, + "count":188, + "type":"VEC3" + }, + { + "bufferView":17032, + "componentType":5126, + "count":188, + "type":"VEC2" + }, + { + "bufferView":17033, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":17034, + "componentType":5126, + "count":336, + "max":[ + 13.560546875, + 230.1728515625, + 115.08642578125 + ], + "min":[ + -13.560844421386719, + -3.814697265625e-05, + -115.08648681640625 + ], + "type":"VEC3" + }, + { + "bufferView":17035, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":17036, + "componentType":5126, + "count":40, + "max":[ + 1.4143146276474, + 10.51738452911377, + 5.258759021759033 + ], + "min":[ + -1.4143165349960327, + -9.012222290039062e-05, + -5.25871467590332 + ], + "type":"VEC3" + }, + { + "bufferView":17037, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":17038, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":17039, + "componentType":5126, + "count":585, + "max":[ + 190.1309051513672, + 263.13433837890625, + 176.5313720703125 + ], + "min":[ + -182.92408752441406, + 38.774993896484375, + -164.59999084472656 + ], + "type":"VEC3" + }, + { + "bufferView":17040, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":17041, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17042, + "componentType":5126, + "count":240, + "max":[ + 172.5966796875, + 185.23486328125, + 169.070556640625 + ], + "min":[ + -172.59716796875, + -0.00048828125, + -169.070556640625 + ], + "type":"VEC3" + }, + { + "bufferView":17043, + "componentType":5126, + "count":240, + "type":"VEC3" + }, + { + "bufferView":17044, + "componentType":5126, + "count":240, + "type":"VEC2" + }, + { + "bufferView":17045, + "componentType":5126, + "count":165, + "max":[ + 769.70751953125, + 113.194580078125, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0, + -56.597412109375 + ], + "type":"VEC3" + }, + { + "bufferView":17046, + "componentType":5126, + "count":165, + "type":"VEC3" + }, + { + "bufferView":17047, + "componentType":5126, + "count":165, + "type":"VEC2" + }, + { + "bufferView":17048, + "componentType":5126, + "count":8046, + "max":[ + 180.119140625, + 1010.39404296875, + 103.787109375 + ], + "min":[ + -180.12109375, + 12.32373046875, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":17049, + "componentType":5126, + "count":8046, + "type":"VEC3" + }, + { + "bufferView":17050, + "componentType":5126, + "count":8046, + "type":"VEC2" + }, + { + "bufferView":17051, + "componentType":5126, + "count":1420, + "max":[ + 245.232421875, + 367.92938232421875, + 384.1406555175781 + ], + "min":[ + -245.234375, + 0.0001678466796875, + -384.1396789550781 + ], + "type":"VEC3" + }, + { + "bufferView":17052, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":17053, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":17054, + "componentType":5126, + "count":826, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45752716064453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45630645751953 + ], + "type":"VEC3" + }, + { + "bufferView":17055, + "componentType":5126, + "count":826, + "type":"VEC3" + }, + { + "bufferView":17056, + "componentType":5126, + "count":826, + "type":"VEC2" + }, + { + "bufferView":17057, + "componentType":5126, + "count":337, + "max":[ + 171.298828125, + 184.80322265625, + 176.140380859375 + ], + "min":[ + -171.296875, + 44.455810546875, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":17058, + "componentType":5126, + "count":337, + "type":"VEC3" + }, + { + "bufferView":17059, + "componentType":5126, + "count":337, + "type":"VEC2" + }, + { + "bufferView":17060, + "componentType":5126, + "count":824, + "max":[ + 4.1328125, + 90.58753204345703, + 34.45703887939453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":17061, + "componentType":5126, + "count":824, + "type":"VEC3" + }, + { + "bufferView":17062, + "componentType":5126, + "count":824, + "type":"VEC2" + }, + { + "bufferView":17063, + "componentType":5126, + "count":748, + "max":[ + 136.78469848632812, + 121.51294708251953, + 136.37379455566406 + ], + "min":[ + -136.78652954101562, + 0.000118255615234375, + -136.37380981445312 + ], + "type":"VEC3" + }, + { + "bufferView":17064, + "componentType":5126, + "count":748, + "type":"VEC3" + }, + { + "bufferView":17065, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17066, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17067, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17068, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17069, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17070, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17071, + "componentType":5126, + "count":1420, + "max":[ + 245.232421875, + 367.92938232421875, + 384.1394348144531 + ], + "min":[ + -245.234375, + 0.0001678466796875, + -384.1411437988281 + ], + "type":"VEC3" + }, + { + "bufferView":17072, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":17073, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":17074, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17075, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17076, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17077, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92938232421875, + 384.5786437988281 + ], + "min":[ + -244.466796875, + 4.57763671875e-05, + -384.5815734863281 + ], + "type":"VEC3" + }, + { + "bufferView":17078, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":17079, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":17080, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":17081, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17082, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17083, + "componentType":5126, + "count":265, + "max":[ + 174.40869140625, + 193.25439453125, + 169.0625 + ], + "min":[ + -174.408203125, + 0, + -169.0634765625 + ], + "type":"VEC3" + }, + { + "bufferView":17084, + "componentType":5126, + "count":265, + "type":"VEC3" + }, + { + "bufferView":17085, + "componentType":5126, + "count":265, + "type":"VEC2" + }, + { + "bufferView":17086, + "componentType":5126, + "count":76, + "max":[ + 279.0987243652344, + 3543.081787109375, + 278.8664855957031 + ], + "min":[ + -279.1011047363281, + 0, + -278.86700439453125 + ], + "type":"VEC3" + }, + { + "bufferView":17087, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":17088, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":17089, + "componentType":5126, + "count":807, + "max":[ + 4.130859375, + 90.58753204345703, + 34.45850372314453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45459747314453 + ], + "type":"VEC3" + }, + { + "bufferView":17090, + "componentType":5126, + "count":807, + "type":"VEC3" + }, + { + "bufferView":17091, + "componentType":5126, + "count":807, + "type":"VEC2" + }, + { + "bufferView":17092, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":17093, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.585693359375 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":17094, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17095, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17096, + "componentType":5126, + "count":112, + "max":[ + 126.77018737792969, + 222.64730834960938, + 126.77018737792969 + ], + "min":[ + -126.77018737792969, + 0, + -126.7702865600586 + ], + "type":"VEC3" + }, + { + "bufferView":17097, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":17098, + "componentType":5126, + "count":584, + "max":[ + 187.8671875, + 120.83259582519531, + 195.7284698486328 + ], + "min":[ + -187.870361328125, + 9.918212890625e-05, + -195.7287139892578 + ], + "type":"VEC3" + }, + { + "bufferView":17099, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":17100, + "componentType":5126, + "count":142, + "max":[ + 3.4518332481384277, + 18.94533348083496, + 9.472701072692871 + ], + "min":[ + -3.451733350753784, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":17101, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":17102, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":17103, + "componentType":5126, + "count":582, + "max":[ + 181.71339416503906, + 188.46771240234375, + 164.5279541015625 + ], + "min":[ + -181.71473693847656, + 1.2641525268554688, + -152.24758911132812 + ], + "type":"VEC3" + }, + { + "bufferView":17104, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":17105, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17106, + "componentType":5126, + "count":24, + "max":[ + 29.8388671875, + 320.322265625, + 219.6552734375 + ], + "min":[ + -29.83935546875, + 0, + -219.65625 + ], + "type":"VEC3" + }, + { + "bufferView":17107, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17108, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17109, + "componentType":5126, + "count":586, + "max":[ + 174.45582580566406, + 210.29098510742188, + 159.55845642089844 + ], + "min":[ + -174.45655822753906, + -6.103515625e-05, + -159.55935668945312 + ], + "type":"VEC3" + }, + { + "bufferView":17110, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":17111, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17112, + "componentType":5126, + "count":54, + "max":[ + 123.61328125, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.615234375, + 0, + -366.1533203125 + ], + "type":"VEC3" + }, + { + "bufferView":17113, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":17114, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":17115, + "componentType":5126, + "count":233, + "max":[ + 169.100830078125, + 188.23828125, + 173.28125 + ], + "min":[ + -169.100830078125, + 0, + -173.28173828125 + ], + "type":"VEC3" + }, + { + "bufferView":17116, + "componentType":5126, + "count":233, + "type":"VEC3" + }, + { + "bufferView":17117, + "componentType":5126, + "count":233, + "type":"VEC2" + }, + { + "bufferView":17118, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17119, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17120, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17121, + "componentType":5126, + "count":346, + "max":[ + 115.3511962890625, + 212.38766479492188, + 68.44591522216797 + ], + "min":[ + -115.35124969482422, + 0.9671478271484375, + -68.44576263427734 + ], + "type":"VEC3" + }, + { + "bufferView":17122, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":17123, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":17124, + "componentType":5126, + "count":60, + "max":[ + 2752.0029296875, + 2819.531005859375, + 1436.7666015625 + ], + "min":[ + -2752.0029296875, + 0, + -1436.763671875 + ], + "type":"VEC3" + }, + { + "bufferView":17125, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":17126, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":17127, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17128, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17129, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17130, + "componentType":5126, + "count":60, + "max":[ + 3.7875242233276367, + 13.413311004638672, + 4.2459025382995605 + ], + "min":[ + -3.7875430583953857, + 0.00010967254638671875, + -4.24592399597168 + ], + "type":"VEC3" + }, + { + "bufferView":17131, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":17132, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":17133, + "componentType":5126, + "count":308, + "max":[ + 10.6787109375, + 283.877197265625, + 60.75002670288086 + ], + "min":[ + -10.677734375, + -1.52587890625e-05, + -60.75002670288086 + ], + "type":"VEC3" + }, + { + "bufferView":17134, + "componentType":5126, + "count":308, + "type":"VEC3" + }, + { + "bufferView":17135, + "componentType":5126, + "count":308, + "type":"VEC2" + }, + { + "bufferView":17136, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":17137, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":17138, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17139, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17140, + "componentType":5126, + "count":586, + "max":[ + 146.29168701171875, + 100.67314147949219, + 152.28347778320312 + ], + "min":[ + -146.2877960205078, + 0.00011444091796875, + -152.28353881835938 + ], + "type":"VEC3" + }, + { + "bufferView":17141, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":17142, + "componentType":5126, + "count":690, + "max":[ + 150.83132934570312, + 174.3048095703125, + 143.72177124023438 + ], + "min":[ + -150.83401489257812, + 1.52587890625e-05, + -143.72178649902344 + ], + "type":"VEC3" + }, + { + "bufferView":17143, + "componentType":5126, + "count":690, + "type":"VEC3" + }, + { + "bufferView":17144, + "componentType":5126, + "count":347, + "max":[ + 170.435546875, + 188.558349609375, + 176.2041015625 + ], + "min":[ + -170.4345703125, + 45.296630859375, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":17145, + "componentType":5126, + "count":347, + "type":"VEC3" + }, + { + "bufferView":17146, + "componentType":5126, + "count":347, + "type":"VEC2" + }, + { + "bufferView":17147, + "componentType":5126, + "count":24, + "max":[ + 516.6132202148438, + 50, + 3248.447265625 + ], + "min":[ + -516.6114501953125, + -7.62939453125e-06, + -3248.444091796875 + ], + "type":"VEC3" + }, + { + "bufferView":17148, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17149, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28369140625 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":17150, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":17151, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":17152, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17153, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17154, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17155, + "componentType":5126, + "count":44, + "max":[ + 127.44677734375, + 625.6328125, + 391.7376403808594 + ], + "min":[ + -127.4404296875, + 0, + -391.7374572753906 + ], + "type":"VEC3" + }, + { + "bufferView":17156, + "componentType":5126, + "count":44, + "type":"VEC3" + }, + { + "bufferView":17157, + "componentType":5126, + "count":44, + "type":"VEC2" + }, + { + "bufferView":17158, + "componentType":5126, + "count":76, + "max":[ + 279.0987243652344, + 3543.081787109375, + 278.8664855957031 + ], + "min":[ + -279.1011047363281, + 0, + -278.86700439453125 + ], + "type":"VEC3" + }, + { + "bufferView":17159, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":17160, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":17161, + "componentType":5126, + "count":1420, + "max":[ + 244.46875, + 367.92926025390625, + 384.5786437988281 + ], + "min":[ + -244.466796875, + 4.57763671875e-05, + -384.5815734863281 + ], + "type":"VEC3" + }, + { + "bufferView":17162, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":17163, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":17164, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17165, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17166, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17167, + "componentType":5126, + "count":580, + "max":[ + 166.29783630371094, + 173.15509033203125, + 138.89651489257812 + ], + "min":[ + -166.2982635498047, + 1.153472900390625, + -151.1777801513672 + ], + "type":"VEC3" + }, + { + "bufferView":17168, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":17169, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17170, + "componentType":5126, + "count":172, + "max":[ + 22.7294921875, + 64.23074340820312, + 545.1064453125 + ], + "min":[ + -22.7294921875, + 0.000148773193359375, + -545.107421875 + ], + "type":"VEC3" + }, + { + "bufferView":17171, + "componentType":5126, + "count":172, + "type":"VEC3" + }, + { + "bufferView":17172, + "componentType":5126, + "count":172, + "type":"VEC2" + }, + { + "bufferView":17173, + "componentType":5126, + "count":40, + "max":[ + 1.4143147468566895, + 10.517629623413086, + 5.258714199066162 + ], + "min":[ + -1.4143130779266357, + 0.0001544952392578125, + -5.258758544921875 + ], + "type":"VEC3" + }, + { + "bufferView":17174, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":17175, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":17176, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17177, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17178, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17179, + "componentType":5126, + "count":52, + "max":[ + 142.32080078125, + 608.220703125, + 391.7373046875 + ], + "min":[ + -142.32177734375, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":17180, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":17181, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":17182, + "componentType":5126, + "count":608, + "max":[ + 141.34466552734375, + 205.99630737304688, + 126.68731689453125 + ], + "min":[ + -148.55227661132812, + 30.09485626220703, + -138.61936950683594 + ], + "type":"VEC3" + }, + { + "bufferView":17183, + "componentType":5126, + "count":608, + "type":"VEC3" + }, + { + "bufferView":17184, + "componentType":5126, + "count":750, + "max":[ + 136.81777954101562, + 122.35498046875, + 136.37379455566406 + ], + "min":[ + -136.75344848632812, + 0.8421707153320312, + -136.37380981445312 + ], + "type":"VEC3" + }, + { + "bufferView":17185, + "componentType":5126, + "count":750, + "type":"VEC3" + }, + { + "bufferView":17186, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":17187, + "componentType":5126, + "count":12, + "max":[ + 411.4619140625, + 388.941162109375, + 9.51611328125 + ], + "min":[ + -411.4638671875, + 0, + -9.5142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":17188, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":17189, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":17190, + "componentType":5126, + "count":105, + "max":[ + 86.38427734375, + 4344.65771484375, + 86.384033203125 + ], + "min":[ + -86.3843994140625, + -0.0001373291015625, + -86.384521484375 + ], + "type":"VEC3" + }, + { + "bufferView":17191, + "componentType":5126, + "count":105, + "type":"VEC3" + }, + { + "bufferView":17192, + "componentType":5126, + "count":105, + "type":"VEC2" + }, + { + "bufferView":17193, + "componentType":5126, + "count":228, + "max":[ + 115.35124206542969, + 317.20355224609375, + 159.17068481445312 + ], + "min":[ + -115.35128021240234, + -6.103515625e-05, + -160.49081420898438 + ], + "type":"VEC3" + }, + { + "bufferView":17194, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":17195, + "componentType":5126, + "count":4, + "max":[ + 698.884765625, + 2586.479248046875, + 0.0014468207955360413 + ], + "min":[ + -698.8828125, + 0, + 0.0009945854544639587 + ], + "type":"VEC3" + }, + { + "bufferView":17196, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17197, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17198, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92938232421875, + 384.5810852050781 + ], + "min":[ + -244.4677734375, + 4.57763671875e-05, + -384.5781555175781 + ], + "type":"VEC3" + }, + { + "bufferView":17199, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":17200, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":17201, + "componentType":5126, + "count":603, + "max":[ + 158.36148071289062, + 191.53338623046875, + 144.88320922851562 + ], + "min":[ + -158.360595703125, + 0.0002288818359375, + -144.88308715820312 + ], + "type":"VEC3" + }, + { + "bufferView":17202, + "componentType":5126, + "count":603, + "type":"VEC3" + }, + { + "bufferView":17203, + "componentType":5126, + "count":119, + "max":[ + 49.03564453125, + 162.82470703125, + 58.8193359375 + ], + "min":[ + -49.03466796875, + 6.845458984375, + -58.822265625 + ], + "type":"VEC3" + }, + { + "bufferView":17204, + "componentType":5126, + "count":119, + "type":"VEC3" + }, + { + "bufferView":17205, + "componentType":5126, + "count":119, + "type":"VEC2" + }, + { + "bufferView":17206, + "componentType":5126, + "count":232, + "max":[ + 173.28125, + 188.23828125, + 169.100830078125 + ], + "min":[ + -173.28173828125, + 0, + -169.100830078125 + ], + "type":"VEC3" + }, + { + "bufferView":17207, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":17208, + "componentType":5126, + "count":232, + "type":"VEC2" + }, + { + "bufferView":17209, + "componentType":5126, + "count":580, + "max":[ + 173.11431884765625, + 113.45752716064453, + 180.3125 + ], + "min":[ + -173.1155242919922, + -0.0001678466796875, + -180.31268310546875 + ], + "type":"VEC3" + }, + { + "bufferView":17210, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":17211, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17212, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17213, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17214, + "componentType":5126, + "count":350, + "max":[ + 170.4345703125, + 188.55810546875, + 176.20361328125 + ], + "min":[ + -170.4345703125, + 45.29638671875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":17215, + "componentType":5126, + "count":350, + "type":"VEC3" + }, + { + "bufferView":17216, + "componentType":5126, + "count":350, + "type":"VEC2" + }, + { + "bufferView":17217, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":17218, + "componentType":5126, + "count":340, + "max":[ + 45.85672378540039, + 271.12908935546875, + 115.62039947509766 + ], + "min":[ + -45.85814666748047, + 42.95982360839844, + -115.62028503417969 + ], + "type":"VEC3" + }, + { + "bufferView":17219, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":17220, + "componentType":5126, + "count":122, + "max":[ + 20.429443359375, + 104.244140625, + 52.123046875 + ], + "min":[ + -20.42919921875, + 0, + -52.1240234375 + ], + "type":"VEC3" + }, + { + "bufferView":17221, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":17222, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":17223, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":17224, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17225, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17226, + "componentType":5126, + "count":24, + "max":[ + 10.958148956298828, + 361.93402099609375, + 59.81034851074219 + ], + "min":[ + -10.95809555053711, + 0.0001220703125, + -59.81049346923828 + ], + "type":"VEC3" + }, + { + "bufferView":17227, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17228, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17229, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17230, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17231, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17232, + "componentType":5126, + "count":590, + "max":[ + 207.89891052246094, + 214.47726440429688, + 187.2042236328125 + ], + "min":[ + -207.89772033691406, + 1.4530487060546875, + -174.9237823486328 + ], + "type":"VEC3" + }, + { + "bufferView":17233, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":17234, + "componentType":5126, + "count":60, + "max":[ + 3.7875242233276367, + 13.413311004638672, + 4.2459025382995605 + ], + "min":[ + -3.7875430583953857, + 0.00010967254638671875, + -4.24592399597168 + ], + "type":"VEC3" + }, + { + "bufferView":17235, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":17236, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":17237, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":17238, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17239, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17240, + "componentType":5126, + "count":1043, + "max":[ + 125.22607421875, + 76.19921875, + 90.10888671875 + ], + "min":[ + -125.22607421875, + 0, + -90.109375 + ], + "type":"VEC3" + }, + { + "bufferView":17241, + "componentType":5126, + "count":1043, + "type":"VEC3" + }, + { + "bufferView":17242, + "componentType":5126, + "count":1043, + "type":"VEC2" + }, + { + "bufferView":17243, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28369140625 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":17244, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":17245, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":17246, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":17247, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17248, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17249, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17250, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17251, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17252, + "componentType":5126, + "count":548, + "max":[ + 7.779110908508301, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778773307800293, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":17253, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":17254, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":17255, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92926025390625, + 384.5786437988281 + ], + "min":[ + -244.4677734375, + 4.57763671875e-05, + -384.5815734863281 + ], + "type":"VEC3" + }, + { + "bufferView":17256, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":17257, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":17258, + "componentType":5126, + "count":92, + "max":[ + 22.05029296875, + 77.637451171875, + 30.450927734375 + ], + "min":[ + -22.0517578125, + 0.000244140625, + -30.44970703125 + ], + "type":"VEC3" + }, + { + "bufferView":17259, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":17260, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":17261, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17262, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17263, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17264, + "componentType":5126, + "count":112, + "max":[ + 1022.581298828125, + 429.54217529296875, + 214.7710723876953 + ], + "min":[ + -1022.5777587890625, + -3.0517578125e-05, + -214.77090454101562 + ], + "type":"VEC3" + }, + { + "bufferView":17265, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":17266, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17267, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17268, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17269, + "componentType":5126, + "count":580, + "max":[ + 184.51686096191406, + 191.25228881835938, + 166.95582580566406 + ], + "min":[ + -184.51705932617188, + 1.284759521484375, + -154.67449951171875 + ], + "type":"VEC3" + }, + { + "bufferView":17270, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":17271, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17272, + "componentType":5126, + "count":570, + "max":[ + 163.4947967529297, + 169.23770141601562, + 142.60977172851562 + ], + "min":[ + -163.4954833984375, + 0.00016021728515625, + -142.6097412109375 + ], + "type":"VEC3" + }, + { + "bufferView":17273, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":17274, + "componentType":5126, + "count":618, + "max":[ + 56.700870513916016, + 172.07470703125, + 23.860031127929688 + ], + "min":[ + -56.700721740722656, + 5.340576171875e-05, + -23.86003875732422 + ], + "type":"VEC3" + }, + { + "bufferView":17275, + "componentType":5126, + "count":618, + "type":"VEC3" + }, + { + "bufferView":17276, + "componentType":5126, + "count":618, + "type":"VEC2" + }, + { + "bufferView":17277, + "componentType":5126, + "count":96, + "max":[ + 747.4671630859375, + 205.17288208007812, + 73.47864532470703 + ], + "min":[ + -747.468994140625, + 2.6702880859375e-05, + -73.4786376953125 + ], + "type":"VEC3" + }, + { + "bufferView":17278, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":17279, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.456298828125, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.00048828125, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":17280, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":17281, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":17282, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":17283, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":17284, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17285, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17286, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17287, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":17288, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17289, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17290, + "componentType":5126, + "count":24, + "max":[ + 350, + 1016.5, + 350 + ], + "min":[ + -350, + 0, + -350 + ], + "type":"VEC3" + }, + { + "bufferView":17291, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17292, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17293, + "componentType":5126, + "count":488, + "max":[ + 879.658203125, + 587.0332641601562, + 879.6592407226562 + ], + "min":[ + -879.66015625, + 3.0517578125e-05, + -879.6607055664062 + ], + "type":"VEC3" + }, + { + "bufferView":17294, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":17295, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":17296, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17297, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17298, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17299, + "componentType":5126, + "count":8046, + "max":[ + 180.119140625, + 1010.39404296875, + 103.787109375 + ], + "min":[ + -180.12109375, + 12.32373046875, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":17300, + "componentType":5126, + "count":8046, + "type":"VEC3" + }, + { + "bufferView":17301, + "componentType":5126, + "count":8046, + "type":"VEC2" + }, + { + "bufferView":17302, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17303, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17304, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17305, + "componentType":5126, + "count":6, + "max":[ + 1.328125, + 1061.56201171875, + 165.3671875 + ], + "min":[ + -1.32421875, + -0.001232147216796875, + -165.365234375 + ], + "type":"VEC3" + }, + { + "bufferView":17306, + "componentType":5126, + "count":6, + "type":"VEC3" + }, + { + "bufferView":17307, + "componentType":5126, + "count":6, + "type":"VEC2" + }, + { + "bufferView":17308, + "componentType":5123, + "count":12, + "type":"SCALAR" + }, + { + "bufferView":17309, + "componentType":5126, + "count":584, + "max":[ + 194.5747833251953, + 124.83911895751953, + 202.7357177734375 + ], + "min":[ + -194.57533264160156, + -0.000213623046875, + -202.73605346679688 + ], + "type":"VEC3" + }, + { + "bufferView":17310, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":17311, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 703.126953125 + ], + "min":[ + -110.00003814697266, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":17312, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17313, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17314, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17315, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17316, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":17317, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17318, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17319, + "componentType":5126, + "count":145, + "max":[ + 40.60107421875, + 81.2109375, + 7119.0556640625 + ], + "min":[ + -40.609375, + 0, + -7119.056640625 + ], + "type":"VEC3" + }, + { + "bufferView":17320, + "componentType":5126, + "count":145, + "type":"VEC3" + }, + { + "bufferView":17321, + "componentType":5126, + "count":145, + "type":"VEC2" + }, + { + "bufferView":17322, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":17323, + "componentType":5126, + "count":354, + "max":[ + 170.4345703125, + 188.55419921875, + 176.2041015625 + ], + "min":[ + -170.4345703125, + 45.29638671875, + -176.203125 + ], + "type":"VEC3" + }, + { + "bufferView":17324, + "componentType":5126, + "count":354, + "type":"VEC3" + }, + { + "bufferView":17325, + "componentType":5126, + "count":354, + "type":"VEC2" + }, + { + "bufferView":17326, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":17327, + "componentType":5126, + "count":206, + "max":[ + 13.25341796875, + 75.79608917236328, + 23.95458984375 + ], + "min":[ + -13.251953125, + -3.265915438532829e-05, + -23.9471435546875 + ], + "type":"VEC3" + }, + { + "bufferView":17328, + "componentType":5126, + "count":206, + "type":"VEC3" + }, + { + "bufferView":17329, + "componentType":5126, + "count":206, + "type":"VEC2" + }, + { + "bufferView":17330, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":17331, + "componentType":5126, + "count":548, + "max":[ + 7.778923988342285, + 21.312030792236328, + 10.655908584594727 + ], + "min":[ + -7.778950214385986, + 0.00021648406982421875, + -10.65590763092041 + ], + "type":"VEC3" + }, + { + "bufferView":17332, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":17333, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":17334, + "componentType":5126, + "count":244, + "max":[ + 400.0077209472656, + 1934.1334228515625, + 603.1017456054688 + ], + "min":[ + -400.009521484375, + 0.0001678466796875, + -603.10205078125 + ], + "type":"VEC3" + }, + { + "bufferView":17335, + "componentType":5126, + "count":244, + "type":"VEC3" + }, + { + "bufferView":17336, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17337, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17338, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17339, + "componentType":5126, + "count":143, + "max":[ + 18.13818359375, + 2298.161376953125, + 18.139448165893555 + ], + "min":[ + -18.13818359375, + 0, + -18.138471603393555 + ], + "type":"VEC3" + }, + { + "bufferView":17340, + "componentType":5126, + "count":143, + "type":"VEC3" + }, + { + "bufferView":17341, + "componentType":5126, + "count":143, + "type":"VEC2" + }, + { + "bufferView":17342, + "componentType":5126, + "count":51, + "max":[ + 391.7373046875, + 608.2197265625, + 142.32275390625 + ], + "min":[ + -391.7373046875, + 0, + -142.31982421875 + ], + "type":"VEC3" + }, + { + "bufferView":17343, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":17344, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":17345, + "componentType":5126, + "count":72, + "max":[ + 22.50006103515625, + 1492.539794921875, + 771.3447875976562 + ], + "min":[ + -22.500253677368164, + 0, + -771.34619140625 + ], + "type":"VEC3" + }, + { + "bufferView":17346, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":17347, + "componentType":5126, + "count":245, + "max":[ + 172.5966796875, + 185.23486328125, + 169.0703125 + ], + "min":[ + -172.59716796875, + -0.00048828125, + -169.0703125 + ], + "type":"VEC3" + }, + { + "bufferView":17348, + "componentType":5126, + "count":245, + "type":"VEC3" + }, + { + "bufferView":17349, + "componentType":5126, + "count":245, + "type":"VEC2" + }, + { + "bufferView":17350, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92938232421875, + 384.57861328125 + ], + "min":[ + -244.4677734375, + 6.103515625e-05, + -384.5820007324219 + ], + "type":"VEC3" + }, + { + "bufferView":17351, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":17352, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":17353, + "componentType":5126, + "count":142, + "max":[ + 3.451836347579956, + 18.945335388183594, + 9.47275161743164 + ], + "min":[ + -3.451739549636841, + -0.00011920928955078125, + -9.472702980041504 + ], + "type":"VEC3" + }, + { + "bufferView":17354, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":17355, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":17356, + "componentType":5126, + "count":1810, + "max":[ + 91.37364959716797, + 182.74708557128906, + 6.498456954956055 + ], + "min":[ + -91.37364959716797, + -0.0002288818359375, + -6.498532295227051 + ], + "type":"VEC3" + }, + { + "bufferView":17357, + "componentType":5126, + "count":1810, + "type":"VEC3" + }, + { + "bufferView":17358, + "componentType":5126, + "count":1810, + "type":"VEC2" + }, + { + "bufferView":17359, + "componentType":5126, + "count":71, + "max":[ + 3.787405490875244, + 13.693549156188965, + 6.47286319732666 + ], + "min":[ + -3.787666082382202, + -2.956390380859375e-05, + -6.472907543182373 + ], + "type":"VEC3" + }, + { + "bufferView":17360, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":17361, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":17362, + "componentType":5126, + "count":4, + "max":[ + -0.001953125, + 2586.479248046875, + 698.885986328125 + ], + "min":[ + -0.001953125, + 0, + -698.8828125 + ], + "type":"VEC3" + }, + { + "bufferView":17363, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17364, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17365, + "componentType":5126, + "count":16, + "max":[ + 4093.119140625, + 0.00035858154296875, + 4951.87841796875 + ], + "min":[ + -4093.119140625, + 0, + -4951.876953125 + ], + "type":"VEC3" + }, + { + "bufferView":17366, + "componentType":5126, + "count":16, + "type":"VEC3" + }, + { + "bufferView":17367, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":17368, + "componentType":5126, + "count":108, + "max":[ + 25.64990234375, + 2528.2978515625, + 1254.11279296875 + ], + "min":[ + -25.649658203125, + -0.0001220703125, + -1254.1162109375 + ], + "type":"VEC3" + }, + { + "bufferView":17369, + "componentType":5126, + "count":108, + "type":"VEC3" + }, + { + "bufferView":17370, + "componentType":5126, + "count":108, + "type":"VEC2" + }, + { + "bufferView":17371, + "componentType":5126, + "count":76, + "max":[ + 279.0987243652344, + 3543.081787109375, + 278.8667297363281 + ], + "min":[ + -279.1011047363281, + 0, + -278.86676025390625 + ], + "type":"VEC3" + }, + { + "bufferView":17372, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":17373, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":17374, + "componentType":5126, + "count":24, + "max":[ + 110.00011444091797, + 50, + 584.662109375 + ], + "min":[ + -110.00007629394531, + 0, + -584.666015625 + ], + "type":"VEC3" + }, + { + "bufferView":17375, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17376, + "componentType":5126, + "count":12, + "max":[ + 411.4619140625, + 388.941162109375, + 9.51611328125 + ], + "min":[ + -411.4638671875, + 0, + -9.5142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":17377, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":17378, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":17379, + "componentType":5126, + "count":8288, + "max":[ + 496.33447265625, + 427.025390625, + 103.7861328125 + ], + "min":[ + -496.334716796875, + 0, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":17380, + "componentType":5126, + "count":8288, + "type":"VEC3" + }, + { + "bufferView":17381, + "componentType":5126, + "count":8288, + "type":"VEC2" + }, + { + "bufferView":17382, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":17383, + "componentType":5126, + "count":71, + "max":[ + 3.7875146865844727, + 13.693550109863281, + 6.472888469696045 + ], + "min":[ + -3.7875587940216064, + -2.9292161343619227e-05, + -6.472880840301514 + ], + "type":"VEC3" + }, + { + "bufferView":17384, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":17385, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":17386, + "componentType":5126, + "count":572, + "max":[ + 148.07859802246094, + 155.05752563476562, + 123.1185302734375 + ], + "min":[ + -148.07968139648438, + 1.0218658447265625, + -135.39964294433594 + ], + "type":"VEC3" + }, + { + "bufferView":17387, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":17388, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17389, + "componentType":5126, + "count":1053, + "max":[ + 90.109375, + 76.19921875, + 125.22607421875 + ], + "min":[ + -90.10888671875, + 0, + -125.22607421875 + ], + "type":"VEC3" + }, + { + "bufferView":17390, + "componentType":5126, + "count":1053, + "type":"VEC3" + }, + { + "bufferView":17391, + "componentType":5126, + "count":1053, + "type":"VEC2" + }, + { + "bufferView":17392, + "componentType":5126, + "count":224, + "max":[ + 118.72061157226562, + 230.17283630371094, + 115.08639526367188 + ], + "min":[ + -118.72100067138672, + -3.814697265625e-05, + -115.08649444580078 + ], + "type":"VEC3" + }, + { + "bufferView":17393, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":17394, + "componentType":5126, + "count":1420, + "max":[ + 433.12109375, + 367.9293212890625, + 90.005859375 + ], + "min":[ + -433.119140625, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":17395, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":17396, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":17397, + "componentType":5126, + "count":296, + "max":[ + 1.9772133827209473, + 36.3969841003418, + 18.19847297668457 + ], + "min":[ + -1.9772028923034668, + -7.62939453125e-06, + -18.198514938354492 + ], + "type":"VEC3" + }, + { + "bufferView":17398, + "componentType":5126, + "count":296, + "type":"VEC3" + }, + { + "bufferView":17399, + "componentType":5126, + "count":296, + "type":"VEC2" + }, + { + "bufferView":17400, + "componentType":5126, + "count":581, + "max":[ + 188.78990173339844, + 261.29144287109375, + 175.308349609375 + ], + "min":[ + -181.58255004882812, + 38.49516296386719, + -163.37701416015625 + ], + "type":"VEC3" + }, + { + "bufferView":17401, + "componentType":5126, + "count":581, + "type":"VEC3" + }, + { + "bufferView":17402, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17403, + "componentType":5126, + "count":8120, + "max":[ + 178.826171875, + 1010.5029296875, + 103.7867431640625 + ], + "min":[ + -178.8271484375, + 12.3369140625, + -103.7867431640625 + ], + "type":"VEC3" + }, + { + "bufferView":17404, + "componentType":5126, + "count":8120, + "type":"VEC3" + }, + { + "bufferView":17405, + "componentType":5126, + "count":8120, + "type":"VEC2" + }, + { + "bufferView":17406, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":17407, + "componentType":5126, + "count":8039, + "max":[ + 180.1181640625, + 1010.39501953125, + 103.787109375 + ], + "min":[ + -180.12109375, + 12.32470703125, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":17408, + "componentType":5126, + "count":8039, + "type":"VEC3" + }, + { + "bufferView":17409, + "componentType":5126, + "count":8039, + "type":"VEC2" + }, + { + "bufferView":17410, + "componentType":5126, + "count":811, + "max":[ + 4.1328125, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45801544189453 + ], + "type":"VEC3" + }, + { + "bufferView":17411, + "componentType":5126, + "count":811, + "type":"VEC3" + }, + { + "bufferView":17412, + "componentType":5126, + "count":811, + "type":"VEC2" + }, + { + "bufferView":17413, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17414, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17415, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17416, + "componentType":5126, + "count":189, + "max":[ + 13.25341796875, + 75.79529571533203, + 23.9549560546875 + ], + "min":[ + -13.2509765625, + 4.2061321437358856e-05, + -23.9466552734375 + ], + "type":"VEC3" + }, + { + "bufferView":17417, + "componentType":5126, + "count":189, + "type":"VEC3" + }, + { + "bufferView":17418, + "componentType":5126, + "count":189, + "type":"VEC2" + }, + { + "bufferView":17419, + "componentType":5126, + "count":1660, + "max":[ + 433.12109375, + 367.929443359375, + 90.00634765625 + ], + "min":[ + -433.119140625, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":17420, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":17421, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":17422, + "componentType":5126, + "count":224, + "max":[ + 115.1412124633789, + 258.98175048828125, + 118.72059631347656 + ], + "min":[ + -115.14129638671875, + 28.69927978515625, + -118.72099304199219 + ], + "type":"VEC3" + }, + { + "bufferView":17423, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":17424, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":17425, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":17426, + "componentType":5126, + "count":122, + "max":[ + 16.8212890625, + 2131.26025390625, + 16.82171630859375 + ], + "min":[ + -16.8212890625, + -0.00030517578125, + -16.820556640625 + ], + "type":"VEC3" + }, + { + "bufferView":17427, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":17428, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":17429, + "componentType":5126, + "count":76, + "max":[ + 279.0987243652344, + 3543.081787109375, + 278.8669738769531 + ], + "min":[ + -279.1011047363281, + 0, + -278.86651611328125 + ], + "type":"VEC3" + }, + { + "bufferView":17430, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":17431, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":17432, + "componentType":5126, + "count":618, + "max":[ + 56.700801849365234, + 172.07467651367188, + 23.860069274902344 + ], + "min":[ + -56.70079803466797, + 6.866455078125e-05, + -23.86005401611328 + ], + "type":"VEC3" + }, + { + "bufferView":17433, + "componentType":5126, + "count":618, + "type":"VEC3" + }, + { + "bufferView":17434, + "componentType":5126, + "count":618, + "type":"VEC2" + }, + { + "bufferView":17435, + "componentType":5126, + "count":648, + "max":[ + 615.01123046875, + 2510.925048828125, + 347.26611328125 + ], + "min":[ + -615.01025390625, + 0, + -347.26611328125 + ], + "type":"VEC3" + }, + { + "bufferView":17436, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":17437, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":17438, + "componentType":5126, + "count":588, + "max":[ + 194.32896423339844, + 200.99668884277344, + 175.45135498046875 + ], + "min":[ + -194.32528686523438, + 1.355194091796875, + -163.1707000732422 + ], + "type":"VEC3" + }, + { + "bufferView":17439, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":17440, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17441, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":17442, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":17443, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":17444, + "componentType":5126, + "count":51, + "max":[ + 123.61328125, + 696.755859375, + 366.15185546875 + ], + "min":[ + -123.615234375, + 0, + -366.15380859375 + ], + "type":"VEC3" + }, + { + "bufferView":17445, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":17446, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":17447, + "componentType":5126, + "count":1420, + "max":[ + 245.232421875, + 367.92926025390625, + 384.1391906738281 + ], + "min":[ + -245.234375, + 4.57763671875e-05, + -384.1406555175781 + ], + "type":"VEC3" + }, + { + "bufferView":17448, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":17449, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":17450, + "componentType":5126, + "count":288, + "max":[ + 12512.609375, + 916.6832885742188, + 293.04132080078125 + ], + "min":[ + -12512.6064453125, + 6.103515625e-05, + -293.040283203125 + ], + "type":"VEC3" + }, + { + "bufferView":17451, + "componentType":5126, + "count":288, + "type":"VEC3" + }, + { + "bufferView":17452, + "componentType":5126, + "count":350, + "max":[ + 115.35118865966797, + 212.3876495361328, + 68.44575500488281 + ], + "min":[ + -115.35128021240234, + 0.967132568359375, + -68.44590759277344 + ], + "type":"VEC3" + }, + { + "bufferView":17453, + "componentType":5126, + "count":350, + "type":"VEC3" + }, + { + "bufferView":17454, + "componentType":5126, + "count":590, + "max":[ + 180.31166076660156, + 187.0756378173828, + 163.31422424316406 + ], + "min":[ + -180.3135223388672, + 1.2540969848632812, + -151.03392028808594 + ], + "type":"VEC3" + }, + { + "bufferView":17455, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":17456, + "componentType":5126, + "count":48, + "max":[ + 127.44091796875, + 625.6328125, + 391.736328125 + ], + "min":[ + -127.4423828125, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":17457, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":17458, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":17459, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17460, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17461, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17462, + "componentType":5126, + "count":232, + "max":[ + 115.3512954711914, + 317.20355224609375, + 159.83087158203125 + ], + "min":[ + -115.35122680664062, + 0, + -159.83078002929688 + ], + "type":"VEC3" + }, + { + "bufferView":17463, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":17464, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":17465, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17466, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17467, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17468, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":17469, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17470, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17471, + "componentType":5126, + "count":4062, + "max":[ + 37.94614028930664, + 117.86515808105469, + 219.26441955566406 + ], + "min":[ + -37.9461555480957, + -0.00017547607421875, + -219.26199340820312 + ], + "type":"VEC3" + }, + { + "bufferView":17472, + "componentType":5126, + "count":4062, + "type":"VEC3" + }, + { + "bufferView":17473, + "componentType":5126, + "count":4062, + "type":"VEC2" + }, + { + "bufferView":17474, + "componentType":5126, + "count":106, + "max":[ + 33.5791015625, + 2306.921630859375, + 508.42852783203125 + ], + "min":[ + -33.5791015625, + 0, + -508.42950439453125 + ], + "type":"VEC3" + }, + { + "bufferView":17475, + "componentType":5126, + "count":106, + "type":"VEC3" + }, + { + "bufferView":17476, + "componentType":5126, + "count":106, + "type":"VEC2" + }, + { + "bufferView":17477, + "componentType":5126, + "count":8010, + "max":[ + 496.14697265625, + 429.962890625, + 103.78564453125 + ], + "min":[ + -496.14990234375, + -0.0009765625, + -103.7890625 + ], + "type":"VEC3" + }, + { + "bufferView":17478, + "componentType":5126, + "count":8010, + "type":"VEC3" + }, + { + "bufferView":17479, + "componentType":5126, + "count":8010, + "type":"VEC2" + }, + { + "bufferView":17480, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":17481, + "componentType":5126, + "count":597, + "max":[ + 144.95013427734375, + 100.0341796875, + 150.8820343017578 + ], + "min":[ + -144.94680786132812, + 0.0001678466796875, + -150.882080078125 + ], + "type":"VEC3" + }, + { + "bufferView":17482, + "componentType":5126, + "count":597, + "type":"VEC3" + }, + { + "bufferView":17483, + "componentType":5126, + "count":748, + "max":[ + 136.78469848632812, + 121.51294708251953, + 136.37379455566406 + ], + "min":[ + -136.78652954101562, + 0.000118255615234375, + -136.37380981445312 + ], + "type":"VEC3" + }, + { + "bufferView":17484, + "componentType":5126, + "count":748, + "type":"VEC3" + }, + { + "bufferView":17485, + "componentType":5126, + "count":348, + "max":[ + 170.435546875, + 188.557861328125, + 176.2041015625 + ], + "min":[ + -170.43359375, + 45.296142578125, + -176.203125 + ], + "type":"VEC3" + }, + { + "bufferView":17486, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":17487, + "componentType":5126, + "count":348, + "type":"VEC2" + }, + { + "bufferView":17488, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":17489, + "componentType":5126, + "count":574, + "max":[ + 162.09307861328125, + 32.825321197509766, + 162.09364318847656 + ], + "min":[ + -162.0943145751953, + -7.2479248046875e-05, + -162.09371948242188 + ], + "type":"VEC3" + }, + { + "bufferView":17490, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":17491, + "componentType":5126, + "count":16, + "max":[ + 1184.47216796875, + 1203, + 5328.560546875 + ], + "min":[ + -1184.4716796875, + 0, + -5328.5576171875 + ], + "type":"VEC3" + }, + { + "bufferView":17492, + "componentType":5126, + "count":16, + "type":"VEC3" + }, + { + "bufferView":17493, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":17494, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17495, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17496, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17497, + "componentType":5126, + "count":51, + "max":[ + 123.61669921875, + 696.755859375, + 366.15264892578125 + ], + "min":[ + -123.61181640625, + 0, + -366.15325927734375 + ], + "type":"VEC3" + }, + { + "bufferView":17498, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":17499, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":17500, + "componentType":5126, + "count":590, + "max":[ + 164.89663696289062, + 171.76266479492188, + 137.68283081054688 + ], + "min":[ + -164.8965301513672, + 1.1429214477539062, + -149.9640350341797 + ], + "type":"VEC3" + }, + { + "bufferView":17501, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":17502, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17503, + "componentType":5126, + "count":565, + "max":[ + 182.50497436523438, + 219.67001342773438, + 166.8965301513672 + ], + "min":[ + -182.50253295898438, + 9.1552734375e-05, + -166.89700317382812 + ], + "type":"VEC3" + }, + { + "bufferView":17504, + "componentType":5126, + "count":565, + "type":"VEC3" + }, + { + "bufferView":17505, + "componentType":5126, + "count":24, + "max":[ + 516.6112670898438, + 50, + 3248.447265625 + ], + "min":[ + -516.6134033203125, + -7.62939453125e-06, + -3248.444091796875 + ], + "type":"VEC3" + }, + { + "bufferView":17506, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17507, + "componentType":5126, + "count":49, + "max":[ + 161.97900390625, + 658.67578125, + 366.15283203125 + ], + "min":[ + -161.98095703125, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":17508, + "componentType":5126, + "count":49, + "type":"VEC3" + }, + { + "bufferView":17509, + "componentType":5126, + "count":49, + "type":"VEC2" + }, + { + "bufferView":17510, + "componentType":5126, + "count":120, + "max":[ + 2752.00341796875, + 2819.531005859375, + 2516.54052734375 + ], + "min":[ + -2752.001953125, + -0.0001220703125, + -2516.541015625 + ], + "type":"VEC3" + }, + { + "bufferView":17511, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":17512, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":17513, + "componentType":5126, + "count":112, + "max":[ + 147.98330688476562, + 365.85076904296875, + 106.49419403076172 + ], + "min":[ + -147.98101806640625, + -1.52587890625e-05, + -106.49420928955078 + ], + "type":"VEC3" + }, + { + "bufferView":17514, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":17515, + "componentType":5126, + "count":572, + "max":[ + 188.72206115722656, + 195.42843627929688, + 170.596923828125 + ], + "min":[ + -188.72061157226562, + 1.3149185180664062, + -158.31556701660156 + ], + "type":"VEC3" + }, + { + "bufferView":17516, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":17517, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17518, + "componentType":5126, + "count":586, + "max":[ + 165.06564331054688, + 199.3487091064453, + 150.99769592285156 + ], + "min":[ + -165.06907653808594, + -0.00023651123046875, + -150.99818420410156 + ], + "type":"VEC3" + }, + { + "bufferView":17519, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":17520, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17521, + "componentType":5126, + "count":8099, + "max":[ + 103.78759765625, + 429.962890625, + 496.1484375 + ], + "min":[ + -103.78662109375, + 0.0009765625, + -496.148681640625 + ], + "type":"VEC3" + }, + { + "bufferView":17522, + "componentType":5126, + "count":8099, + "type":"VEC3" + }, + { + "bufferView":17523, + "componentType":5126, + "count":8099, + "type":"VEC2" + }, + { + "bufferView":17524, + "componentType":5126, + "count":202, + "max":[ + 322.19677734375, + 464.7861328125, + 22.96337890625 + ], + "min":[ + -322.1982421875, + 0, + -22.96337890625 + ], + "type":"VEC3" + }, + { + "bufferView":17525, + "componentType":5126, + "count":202, + "type":"VEC3" + }, + { + "bufferView":17526, + "componentType":5126, + "count":202, + "type":"VEC2" + }, + { + "bufferView":17527, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51416778564453, + 43.589359283447266 + ], + "min":[ + -22.728515625, + -7.62939453125e-06, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":17528, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":17529, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":17530, + "componentType":5126, + "count":113, + "max":[ + 31.293128967285156, + 15.51094913482666, + 6.5019989013671875 + ], + "min":[ + -31.293140411376953, + 8.869171142578125e-05, + -6.5030975341796875 + ], + "type":"VEC3" + }, + { + "bufferView":17531, + "componentType":5126, + "count":113, + "type":"VEC3" + }, + { + "bufferView":17532, + "componentType":5126, + "count":113, + "type":"VEC2" + }, + { + "bufferView":17533, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":17534, + "componentType":5126, + "count":167, + "max":[ + 57.79645919799805, + 61.74176025390625, + 45.56758499145508 + ], + "min":[ + -57.79677200317383, + 5.340576171875e-05, + -45.56761169433594 + ], + "type":"VEC3" + }, + { + "bufferView":17535, + "componentType":5126, + "count":167, + "type":"VEC3" + }, + { + "bufferView":17536, + "componentType":5126, + "count":167, + "type":"VEC2" + }, + { + "bufferView":17537, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.929443359375, + 90.005859375 + ], + "min":[ + -433.1201171875, + 0, + -90.0039291381836 + ], + "type":"VEC3" + }, + { + "bufferView":17538, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":17539, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":17540, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17541, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17542, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17543, + "componentType":5126, + "count":594, + "max":[ + 151.65382385253906, + 183.7174072265625, + 138.7682342529297 + ], + "min":[ + -151.6556854248047, + 0.000152587890625, + -138.76828002929688 + ], + "type":"VEC3" + }, + { + "bufferView":17544, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":17545, + "componentType":5126, + "count":136, + "max":[ + 49.03564453125, + 126.6884765625, + 80.153076171875 + ], + "min":[ + -49.03466796875, + 0, + -80.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":17546, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":17547, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":17548, + "componentType":5126, + "count":568, + "max":[ + 149.48141479492188, + 32.8253173828125, + 149.48057556152344 + ], + "min":[ + -149.47979736328125, + -4.9591064453125e-05, + -149.48060607910156 + ], + "type":"VEC3" + }, + { + "bufferView":17549, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":17550, + "componentType":5126, + "count":238, + "max":[ + 175.0537109375, + 196.214111328125, + 169.1068115234375 + ], + "min":[ + -175.05322265625, + 0, + -169.10693359375 + ], + "type":"VEC3" + }, + { + "bufferView":17551, + "componentType":5126, + "count":238, + "type":"VEC3" + }, + { + "bufferView":17552, + "componentType":5126, + "count":238, + "type":"VEC2" + }, + { + "bufferView":17553, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17554, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17555, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17556, + "componentType":5126, + "count":590, + "max":[ + 163.7275848388672, + 108.98304748535156, + 170.50233459472656 + ], + "min":[ + -163.7246551513672, + 1.52587890625e-05, + -170.50250244140625 + ], + "type":"VEC3" + }, + { + "bufferView":17557, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":17558, + "componentType":5126, + "count":226, + "max":[ + 146.30172729492188, + 324.15997314453125, + 131.37368774414062 + ], + "min":[ + -147.06332397460938, + 43.131927490234375, + -130.98721313476562 + ], + "type":"VEC3" + }, + { + "bufferView":17559, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":17560, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":17561, + "componentType":5126, + "count":590, + "max":[ + 166.2982635498047, + 32.825321197509766, + 166.29811096191406 + ], + "min":[ + -166.29783630371094, + 1.52587890625e-05, + -166.29798889160156 + ], + "type":"VEC3" + }, + { + "bufferView":17562, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":17563, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17564, + "componentType":5126, + "count":323, + "max":[ + 3.8607194423675537, + 15.442765235900879, + 7.721343517303467 + ], + "min":[ + -3.8606269359588623, + 8.296966552734375e-05, + -7.721337795257568 + ], + "type":"VEC3" + }, + { + "bufferView":17565, + "componentType":5126, + "count":323, + "type":"VEC3" + }, + { + "bufferView":17566, + "componentType":5126, + "count":323, + "type":"VEC2" + }, + { + "bufferView":17567, + "componentType":5126, + "count":566, + "max":[ + 211.33865356445312, + 217.8957977294922, + 177.90380859375 + ], + "min":[ + -211.34117126464844, + 1.4777374267578125, + -190.1852569580078 + ], + "type":"VEC3" + }, + { + "bufferView":17568, + "componentType":5126, + "count":566, + "type":"VEC3" + }, + { + "bufferView":17569, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17570, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":17571, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":17572, + "componentType":5126, + "count":112, + "max":[ + 147.98106384277344, + 365.8507995605469, + 106.49419403076172 + ], + "min":[ + -147.98333740234375, + -3.0517578125e-05, + -106.49420166015625 + ], + "type":"VEC3" + }, + { + "bufferView":17573, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":17574, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":17575, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17576, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17577, + "componentType":5126, + "count":136, + "max":[ + 80.153076171875, + 126.6884765625, + 49.03466796875 + ], + "min":[ + -80.153076171875, + 0, + -49.03564453125 + ], + "type":"VEC3" + }, + { + "bufferView":17578, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":17579, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":17580, + "componentType":5126, + "count":572, + "max":[ + 187.86717224121094, + 225.92266845703125, + 171.78860473632812 + ], + "min":[ + -187.87037658691406, + 7.62939453125e-05, + -171.78875732421875 + ], + "type":"VEC3" + }, + { + "bufferView":17581, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":17582, + "componentType":5126, + "count":588, + "max":[ + 180.3135223388672, + 187.07562255859375, + 151.033447265625 + ], + "min":[ + -180.31166076660156, + 1.2540664672851562, + -163.31472778320312 + ], + "type":"VEC3" + }, + { + "bufferView":17583, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":17584, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17585, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17586, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17587, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17588, + "componentType":5126, + "count":125, + "max":[ + 3.8607194423675537, + 15.442765235900879, + 7.721343517303467 + ], + "min":[ + -3.8606269359588623, + 8.296966552734375e-05, + -7.721337795257568 + ], + "type":"VEC3" + }, + { + "bufferView":17589, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":17590, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":17591, + "componentType":5126, + "count":333, + "max":[ + 10.6787109375, + 283.877197265625, + 60.75051498413086 + ], + "min":[ + -10.677734375, + -1.52587890625e-05, + -60.74953842163086 + ], + "type":"VEC3" + }, + { + "bufferView":17592, + "componentType":5126, + "count":333, + "type":"VEC3" + }, + { + "bufferView":17593, + "componentType":5126, + "count":333, + "type":"VEC2" + }, + { + "bufferView":17594, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":17595, + "componentType":5126, + "count":574, + "max":[ + 190.55020141601562, + 229.0487518310547, + 174.23463439941406 + ], + "min":[ + -190.55238342285156, + -0.0001068115234375, + -174.23463439941406 + ], + "type":"VEC3" + }, + { + "bufferView":17596, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":17597, + "componentType":5126, + "count":7749, + "max":[ + 103.786865234375, + 427.46484375, + 496.30615234375 + ], + "min":[ + -103.786865234375, + 0, + -496.30712890625 + ], + "type":"VEC3" + }, + { + "bufferView":17598, + "componentType":5126, + "count":7749, + "type":"VEC3" + }, + { + "bufferView":17599, + "componentType":5126, + "count":7749, + "type":"VEC2" + }, + { + "bufferView":17600, + "componentType":5126, + "count":226, + "max":[ + 147.06719970703125, + 323.5045166015625, + 131.37322998046875 + ], + "min":[ + -146.29783630371094, + 42.476348876953125, + -130.9877471923828 + ], + "type":"VEC3" + }, + { + "bufferView":17601, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":17602, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17603, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17604, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17605, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17606, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17607, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17608, + "componentType":5126, + "count":574, + "max":[ + 183.11512756347656, + 189.8602294921875, + 165.7421112060547 + ], + "min":[ + -183.11587524414062, + 1.274749755859375, + -153.46080017089844 + ], + "type":"VEC3" + }, + { + "bufferView":17609, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":17610, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":17611, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":17612, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":17613, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":17614, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17615, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17616, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17617, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17618, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17619, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17620, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17621, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17622, + "componentType":5126, + "count":562, + "max":[ + 199.93199157714844, + 205.16958618164062, + 174.16575622558594 + ], + "min":[ + -199.93392944335938, + 0.00011444091796875, + -174.16587829589844 + ], + "type":"VEC3" + }, + { + "bufferView":17623, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":17624, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17625, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17626, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17627, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":17628, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17629, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17630, + "componentType":5126, + "count":24, + "max":[ + 253.74276733398438, + 50, + 463.990234375 + ], + "min":[ + -253.74319458007812, + -8.255030479631387e-06, + -463.9902648925781 + ], + "type":"VEC3" + }, + { + "bufferView":17631, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17632, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17633, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17634, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17635, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":17636, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17637, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17638, + "componentType":5126, + "count":582, + "max":[ + 190.9693145751953, + 274.19342041015625, + 171.9376220703125 + ], + "min":[ + -198.18081665039062, + 40.454986572265625, + -183.86944580078125 + ], + "type":"VEC3" + }, + { + "bufferView":17639, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":17640, + "componentType":5126, + "count":342, + "max":[ + 170.435546875, + 188.55810546875, + 176.20361328125 + ], + "min":[ + -170.43359375, + 45.29638671875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":17641, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":17642, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":17643, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":17644, + "componentType":5126, + "count":24, + "max":[ + 10.93478012084961, + 361.93450927734375, + 56.17132568359375 + ], + "min":[ + -10.93482780456543, + 9.918212890625e-05, + -56.170494079589844 + ], + "type":"VEC3" + }, + { + "bufferView":17645, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17646, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17647, + "componentType":5126, + "count":125, + "max":[ + 3.8606557846069336, + 15.442764282226562, + 7.721338748931885 + ], + "min":[ + -3.860687017440796, + 8.249282836914062e-05, + -7.721341609954834 + ], + "type":"VEC3" + }, + { + "bufferView":17648, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":17649, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":17650, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17651, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17652, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17653, + "componentType":5126, + "count":92, + "max":[ + 22.05078125, + 77.63677978515625, + 30.45068359375 + ], + "min":[ + -22.05126953125, + -0.00042724609375, + -30.449951171875 + ], + "type":"VEC3" + }, + { + "bufferView":17654, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":17655, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":17656, + "componentType":5126, + "count":8287, + "max":[ + 496.33447265625, + 427.025390625, + 103.78564453125 + ], + "min":[ + -496.334716796875, + 0, + -103.78759765625 + ], + "type":"VEC3" + }, + { + "bufferView":17657, + "componentType":5126, + "count":8287, + "type":"VEC3" + }, + { + "bufferView":17658, + "componentType":5126, + "count":8287, + "type":"VEC2" + }, + { + "bufferView":17659, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":17660, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17661, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17662, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17663, + "componentType":5126, + "count":580, + "max":[ + 174.70864868164062, + 180.29354858398438, + 152.31930541992188 + ], + "min":[ + -174.70492553710938, + 3.0517578125e-05, + -152.31935119628906 + ], + "type":"VEC3" + }, + { + "bufferView":17664, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":17665, + "componentType":5126, + "count":49, + "max":[ + 391.7373046875, + 625.6328125, + 127.44482421875 + ], + "min":[ + -391.73779296875, + 0, + -127.4423828125 + ], + "type":"VEC3" + }, + { + "bufferView":17666, + "componentType":5126, + "count":49, + "type":"VEC3" + }, + { + "bufferView":17667, + "componentType":5126, + "count":49, + "type":"VEC2" + }, + { + "bufferView":17668, + "componentType":5126, + "count":590, + "max":[ + 202.73544311523438, + 32.82524108886719, + 202.73583984375 + ], + "min":[ + -202.73629760742188, + 9.918212890625e-05, + -202.73593139648438 + ], + "type":"VEC3" + }, + { + "bufferView":17669, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":17670, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17671, + "componentType":5126, + "count":560, + "max":[ + 192.92724609375, + 199.60464477539062, + 174.2375030517578 + ], + "min":[ + -192.9241180419922, + 1.3451309204101562, + -161.95716857910156 + ], + "type":"VEC3" + }, + { + "bufferView":17672, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":17673, + "componentType":5126, + "count":1420, + "max":[ + 433.1201171875, + 367.929443359375, + 90.00634765625 + ], + "min":[ + -433.1201171875, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":17674, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":17675, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":17676, + "componentType":5126, + "count":125, + "max":[ + 3.8607194423675537, + 15.442765235900879, + 7.721343517303467 + ], + "min":[ + -3.8606269359588623, + 8.296966552734375e-05, + -7.721337795257568 + ], + "type":"VEC3" + }, + { + "bufferView":17677, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":17678, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":17679, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17680, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17681, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17682, + "componentType":5126, + "count":586, + "max":[ + 199.5164794921875, + 127.7911605834961, + 207.8981475830078 + ], + "min":[ + -199.51507568359375, + -9.1552734375e-05, + -207.89852905273438 + ], + "type":"VEC3" + }, + { + "bufferView":17683, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":17684, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17685, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":17686, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17687, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17688, + "componentType":5126, + "count":56, + "max":[ + 115.15283203125, + 511.947509765625, + 147.15576171875 + ], + "min":[ + -115.15478515625, + 0, + -147.15673828125 + ], + "type":"VEC3" + }, + { + "bufferView":17689, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":17690, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":17691, + "componentType":5126, + "count":76, + "max":[ + 279.0987243652344, + 3543.081787109375, + 278.8669738769531 + ], + "min":[ + -279.1011047363281, + 0, + -278.86651611328125 + ], + "type":"VEC3" + }, + { + "bufferView":17692, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":17693, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":17694, + "componentType":5126, + "count":108, + "max":[ + 101.75885772705078, + 150.655517578125, + 75.3271484375 + ], + "min":[ + -101.759033203125, + -0.0003662109375, + -75.32861328125 + ], + "type":"VEC3" + }, + { + "bufferView":17695, + "componentType":5126, + "count":108, + "type":"VEC3" + }, + { + "bufferView":17696, + "componentType":5126, + "count":108, + "type":"VEC2" + }, + { + "bufferView":17697, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":17698, + "componentType":5126, + "count":576, + "max":[ + 183.8465118408203, + 221.23312377929688, + 168.11953735351562 + ], + "min":[ + -183.843505859375, + 7.62939453125e-05, + -168.1199188232422 + ], + "type":"VEC3" + }, + { + "bufferView":17699, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":17700, + "componentType":5126, + "count":8186, + "max":[ + 496.334228515625, + 427.0224609375, + 103.78662109375 + ], + "min":[ + -496.333984375, + 0, + -103.78662109375 + ], + "type":"VEC3" + }, + { + "bufferView":17701, + "componentType":5126, + "count":8186, + "type":"VEC3" + }, + { + "bufferView":17702, + "componentType":5126, + "count":8186, + "type":"VEC2" + }, + { + "bufferView":17703, + "componentType":5126, + "count":71, + "max":[ + 3.7875235080718994, + 14.031469345092773, + 5.54845666885376 + ], + "min":[ + -3.7875478267669678, + -3.2901763916015625e-05, + -5.548463821411133 + ], + "type":"VEC3" + }, + { + "bufferView":17704, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":17705, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":17706, + "componentType":5126, + "count":598, + "max":[ + 149.38990783691406, + 217.05551147460938, + 134.02517700195312 + ], + "min":[ + -156.6021270751953, + 31.774948120117188, + -145.9572296142578 + ], + "type":"VEC3" + }, + { + "bufferView":17707, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":17708, + "componentType":5126, + "count":576, + "max":[ + 146.6774139404297, + 153.66586303710938, + 121.90483093261719 + ], + "min":[ + -146.67794799804688, + 1.0123062133789062, + -134.18600463867188 + ], + "type":"VEC3" + }, + { + "bufferView":17709, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":17710, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17711, + "componentType":5126, + "count":74, + "max":[ + 37.20703125, + 39.64406967163086, + 155.4697265625 + ], + "min":[ + -37.20703125, + 1.9073486328125e-05, + -155.466796875 + ], + "type":"VEC3" + }, + { + "bufferView":17712, + "componentType":5126, + "count":74, + "type":"VEC3" + }, + { + "bufferView":17713, + "componentType":5126, + "count":74, + "type":"VEC2" + }, + { + "bufferView":17714, + "componentType":5123, + "count":132, + "type":"SCALAR" + }, + { + "bufferView":17715, + "componentType":5126, + "count":528, + "max":[ + 722.720703125, + 2637.3974609375, + 19.80308723449707 + ], + "min":[ + -722.72265625, + 0, + -19.80296516418457 + ], + "type":"VEC3" + }, + { + "bufferView":17716, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":17717, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":17718, + "componentType":5126, + "count":450, + "max":[ + 104.1713638305664, + 104.17131042480469, + 104.17139434814453 + ], + "min":[ + -104.1714096069336, + -8.392333984375e-05, + -104.17137908935547 + ], + "type":"VEC3" + }, + { + "bufferView":17719, + "componentType":5126, + "count":450, + "type":"VEC3" + }, + { + "bufferView":17720, + "componentType":5126, + "count":450, + "type":"VEC2" + }, + { + "bufferView":17721, + "componentType":5126, + "count":1023, + "max":[ + 29.78515625, + 254.306640625, + 90.10888671875 + ], + "min":[ + -29.787109375, + 1.31201171875, + -90.109375 + ], + "type":"VEC3" + }, + { + "bufferView":17722, + "componentType":5126, + "count":1023, + "type":"VEC3" + }, + { + "bufferView":17723, + "componentType":5126, + "count":1023, + "type":"VEC2" + }, + { + "bufferView":17724, + "componentType":5126, + "count":815, + "max":[ + 4.1328125, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45801544189453 + ], + "type":"VEC3" + }, + { + "bufferView":17725, + "componentType":5126, + "count":815, + "type":"VEC3" + }, + { + "bufferView":17726, + "componentType":5126, + "count":815, + "type":"VEC2" + }, + { + "bufferView":17727, + "componentType":5126, + "count":72, + "max":[ + 866.67041015625, + 1492.539794921875, + 22.500154495239258 + ], + "min":[ + -866.6709594726562, + 0, + -22.500308990478516 + ], + "type":"VEC3" + }, + { + "bufferView":17728, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":17729, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17730, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17731, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17732, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":17733, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17734, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17735, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92938232421875, + 384.1416015625 + ], + "min":[ + -245.232421875, + -6.103515625e-05, + -384.1381530761719 + ], + "type":"VEC3" + }, + { + "bufferView":17736, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":17737, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":17738, + "componentType":5126, + "count":559, + "max":[ + 224.27151489257812, + 448.5429992675781, + 224.27151489257812 + ], + "min":[ + -224.27151489257812, + -3.0517578125e-05, + -224.27151489257812 + ], + "type":"VEC3" + }, + { + "bufferView":17739, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":17740, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":17741, + "componentType":5126, + "count":336, + "max":[ + 115.14118194580078, + 258.98150634765625, + 13.560531616210938 + ], + "min":[ + -115.14129638671875, + 28.69904327392578, + -13.560844421386719 + ], + "type":"VEC3" + }, + { + "bufferView":17742, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":17743, + "componentType":5126, + "count":571, + "max":[ + 181.1634521484375, + 218.10679626464844, + 165.67376708984375 + ], + "min":[ + -181.16151428222656, + 0, + -165.67376708984375 + ], + "type":"VEC3" + }, + { + "bufferView":17744, + "componentType":5126, + "count":571, + "type":"VEC3" + }, + { + "bufferView":17745, + "componentType":5126, + "count":96, + "max":[ + 513.90771484375, + 141.07080078125, + 69.5703125 + ], + "min":[ + -513.9072265625, + 0, + -69.5703125 + ], + "type":"VEC3" + }, + { + "bufferView":17746, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":17747, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":17748, + "componentType":5126, + "count":76, + "max":[ + 279.10015869140625, + 3543.081787109375, + 278.8685302734375 + ], + "min":[ + -279.1027526855469, + 0, + -278.8685607910156 + ], + "type":"VEC3" + }, + { + "bufferView":17749, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":17750, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":17751, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":17752, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":17753, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":17754, + "componentType":5126, + "count":60, + "max":[ + 3.7873902320861816, + 13.000020027160645, + 3.742483139038086 + ], + "min":[ + -3.787674903869629, + -2.384185791015625e-05, + -3.7423512935638428 + ], + "type":"VEC3" + }, + { + "bufferView":17755, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":17756, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":17757, + "componentType":5126, + "count":336, + "max":[ + 131.32864379882812, + 111.1650390625, + 131.3292236328125 + ], + "min":[ + -131.32907104492188, + 0, + -131.32846069335938 + ], + "type":"VEC3" + }, + { + "bufferView":17758, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":17759, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":17760, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":17761, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17762, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17763, + "componentType":5126, + "count":234, + "max":[ + 115.35121154785156, + 317.20355224609375, + 159.83065795898438 + ], + "min":[ + -115.35128021240234, + -7.62939453125e-05, + -159.8308563232422 + ], + "type":"VEC3" + }, + { + "bufferView":17764, + "componentType":5126, + "count":234, + "type":"VEC3" + }, + { + "bufferView":17765, + "componentType":5126, + "count":586, + "max":[ + 185.1880340576172, + 119.22972106933594, + 192.92555236816406 + ], + "min":[ + -185.18443298339844, + -4.57763671875e-05, + -192.9258575439453 + ], + "type":"VEC3" + }, + { + "bufferView":17766, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":17767, + "componentType":5126, + "count":156, + "max":[ + 28556.630859375, + 1217.7703857421875, + 34.48623275756836 + ], + "min":[ + -28556.630859375, + 0.0001220703125, + -34.486351013183594 + ], + "type":"VEC3" + }, + { + "bufferView":17768, + "componentType":5126, + "count":156, + "type":"VEC3" + }, + { + "bufferView":17769, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":17770, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17771, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17772, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17773, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17774, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17775, + "componentType":5126, + "count":112, + "max":[ + 110.76513671875, + 80.421875, + 110.76465606689453 + ], + "min":[ + -110.76513671875, + 0.0009765625, + -110.76560974121094 + ], + "type":"VEC3" + }, + { + "bufferView":17776, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":17777, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":17778, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":17779, + "componentType":5126, + "count":1153, + "max":[ + 65.60057830810547, + 185.22500610351562, + 5.788296699523926 + ], + "min":[ + -65.6004867553711, + -3.0517578125e-05, + -5.788368225097656 + ], + "type":"VEC3" + }, + { + "bufferView":17780, + "componentType":5126, + "count":1153, + "type":"VEC3" + }, + { + "bufferView":17781, + "componentType":5126, + "count":1153, + "type":"VEC2" + }, + { + "bufferView":17782, + "componentType":5126, + "count":574, + "max":[ + 188.72206115722656, + 194.11349487304688, + 164.4562225341797 + ], + "min":[ + -188.72061157226562, + -4.57763671875e-05, + -164.45632934570312 + ], + "type":"VEC3" + }, + { + "bufferView":17783, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":17784, + "componentType":5126, + "count":592, + "max":[ + 143.60861206054688, + 99.39439392089844, + 149.48057556152344 + ], + "min":[ + -143.60581970214844, + -6.103515625e-05, + -149.48060607910156 + ], + "type":"VEC3" + }, + { + "bufferView":17785, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":17786, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":17787, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17788, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17789, + "componentType":5126, + "count":348, + "max":[ + 170.435546875, + 188.55615234375, + 176.20361328125 + ], + "min":[ + -170.43359375, + 45.29638671875, + -176.2041015625 + ], + "type":"VEC3" + }, + { + "bufferView":17790, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":17791, + "componentType":5126, + "count":348, + "type":"VEC2" + }, + { + "bufferView":17792, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":17793, + "componentType":5126, + "count":696, + "max":[ + 1091.2265625, + 286.9413757324219, + 393.34423828125 + ], + "min":[ + -1091.2265625, + 6.103515625e-05, + -393.3408508300781 + ], + "type":"VEC3" + }, + { + "bufferView":17794, + "componentType":5126, + "count":696, + "type":"VEC3" + }, + { + "bufferView":17795, + "componentType":5126, + "count":696, + "type":"VEC2" + }, + { + "bufferView":17796, + "componentType":5123, + "count":696, + "type":"SCALAR" + }, + { + "bufferView":17797, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17798, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17799, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17800, + "componentType":5126, + "count":51, + "max":[ + 127.44677734375, + 625.6328125, + 391.7376708984375 + ], + "min":[ + -127.4404296875, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":17801, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":17802, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":17803, + "componentType":5126, + "count":570, + "max":[ + 163.4954833984375, + 170.37049865722656, + 136.46914672851562 + ], + "min":[ + -163.4947967529297, + 1.132965087890625, + -148.7503662109375 + ], + "type":"VEC3" + }, + { + "bufferView":17804, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":17805, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17806, + "componentType":5126, + "count":16, + "max":[ + 1184.47021484375, + 1203, + 5328.560546875 + ], + "min":[ + -1184.4736328125, + 0, + -5328.5576171875 + ], + "type":"VEC3" + }, + { + "bufferView":17807, + "componentType":5126, + "count":16, + "type":"VEC3" + }, + { + "bufferView":17808, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":17809, + "componentType":5126, + "count":579, + "max":[ + 173.1143035888672, + 208.72775268554688, + 158.3359375 + ], + "min":[ + -173.11553955078125, + -0.0001220703125, + -158.33592224121094 + ], + "type":"VEC3" + }, + { + "bufferView":17810, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":17811, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17812, + "componentType":5126, + "count":226, + "max":[ + 146.30172729492188, + 324.15997314453125, + 131.37368774414062 + ], + "min":[ + -147.06332397460938, + 43.131927490234375, + -130.98721313476562 + ], + "type":"VEC3" + }, + { + "bufferView":17813, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":17814, + "componentType":5126, + "count":198, + "max":[ + 22.7275390625, + 61.51416778564453, + 43.588871002197266 + ], + "min":[ + -22.7275390625, + -7.62939453125e-06, + -43.589359283447266 + ], + "type":"VEC3" + }, + { + "bufferView":17815, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":17816, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":17817, + "componentType":5126, + "count":798, + "max":[ + 4.1328125, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":17818, + "componentType":5126, + "count":798, + "type":"VEC3" + }, + { + "bufferView":17819, + "componentType":5126, + "count":798, + "type":"VEC2" + }, + { + "bufferView":17820, + "componentType":5126, + "count":187, + "max":[ + 769.70947265625, + 113.194580078125, + 56.59814453125 + ], + "min":[ + -769.7080078125, + 6.103515625e-05, + -56.59619140625 + ], + "type":"VEC3" + }, + { + "bufferView":17821, + "componentType":5126, + "count":187, + "type":"VEC3" + }, + { + "bufferView":17822, + "componentType":5126, + "count":187, + "type":"VEC2" + }, + { + "bufferView":17823, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":17824, + "componentType":5126, + "count":1020, + "max":[ + 831.546875, + 116.2333984375, + 746.10498046875 + ], + "min":[ + -831.544921875, + 0.000118255615234375, + -746.10205078125 + ], + "type":"VEC3" + }, + { + "bufferView":17825, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":17826, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":17827, + "componentType":5126, + "count":579, + "max":[ + 163.72467041015625, + 197.7861328125, + 149.77476501464844 + ], + "min":[ + -163.72755432128906, + 0.00023651123046875, + -149.77523803710938 + ], + "type":"VEC3" + }, + { + "bufferView":17828, + "componentType":5126, + "count":579, + "type":"VEC3" + }, + { + "bufferView":17829, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17830, + "componentType":5126, + "count":585, + "max":[ + 178.48040771484375, + 214.98049926757812, + 163.22784423828125 + ], + "min":[ + -178.4795379638672, + 0, + -163.22784423828125 + ], + "type":"VEC3" + }, + { + "bufferView":17831, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":17832, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17833, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":17834, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17835, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17836, + "componentType":5126, + "count":326, + "max":[ + 170.9052734375, + 157.004150390625, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":17837, + "componentType":5126, + "count":326, + "type":"VEC3" + }, + { + "bufferView":17838, + "componentType":5126, + "count":326, + "type":"VEC2" + }, + { + "bufferView":17839, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":17840, + "componentType":5126, + "count":4, + "max":[ + 0.0001068115234375, + 144.50997924804688, + 1.2866668701171875 + ], + "min":[ + 6.103515625e-05, + -1.52587890625e-05, + -1.2867050170898438 + ], + "type":"VEC3" + }, + { + "bufferView":17841, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17842, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17843, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92938232421875, + 384.1416015625 + ], + "min":[ + -245.2333984375, + -6.103515625e-05, + -384.1391296386719 + ], + "type":"VEC3" + }, + { + "bufferView":17844, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":17845, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":17846, + "componentType":5126, + "count":568, + "max":[ + 202.81089782714844, + 129.75909423828125, + 211.3397216796875 + ], + "min":[ + -202.80819702148438, + -7.62939453125e-05, + -211.3401336669922 + ], + "type":"VEC3" + }, + { + "bufferView":17847, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":17848, + "componentType":5126, + "count":76, + "max":[ + 279.1010437011719, + 3543.081787109375, + 278.8667907714844 + ], + "min":[ + -279.0986328125, + 0, + -278.8666687011719 + ], + "type":"VEC3" + }, + { + "bufferView":17849, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":17850, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":17851, + "componentType":5126, + "count":136, + "max":[ + 824.2421875, + 156.626220703125, + 69.5711669921875 + ], + "min":[ + -824.24169921875, + 0, + -69.5684814453125 + ], + "type":"VEC3" + }, + { + "bufferView":17852, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":17853, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":17854, + "componentType":5126, + "count":231, + "max":[ + 174.40771484375, + 193.254638671875, + 169.0634765625 + ], + "min":[ + -174.408203125, + 0, + -169.0625 + ], + "type":"VEC3" + }, + { + "bufferView":17855, + "componentType":5126, + "count":231, + "type":"VEC3" + }, + { + "bufferView":17856, + "componentType":5126, + "count":231, + "type":"VEC2" + }, + { + "bufferView":17857, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17858, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17859, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17860, + "componentType":5126, + "count":348, + "max":[ + 170.43359375, + 188.555908203125, + 176.205078125 + ], + "min":[ + -170.4365234375, + 45.296142578125, + -176.2021484375 + ], + "type":"VEC3" + }, + { + "bufferView":17861, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":17862, + "componentType":5126, + "count":348, + "type":"VEC2" + }, + { + "bufferView":17863, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":17864, + "componentType":5126, + "count":598, + "max":[ + 150.31234741210938, + 102.59085083007812, + 156.4878387451172 + ], + "min":[ + -150.31463623046875, + 0.00012969970703125, + -156.48789978027344 + ], + "type":"VEC3" + }, + { + "bufferView":17865, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":17866, + "componentType":5126, + "count":590, + "max":[ + 183.4259796142578, + 117.41024017333984, + 187.3197479248047 + ], + "min":[ + -176.21644592285156, + 0.7563095092773438, + -187.3200225830078 + ], + "type":"VEC3" + }, + { + "bufferView":17867, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":17868, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17869, + "componentType":5126, + "count":598, + "max":[ + 158.7805938720703, + 229.95777893066406, + 142.5860595703125 + ], + "min":[ + -165.98907470703125, + 33.735084533691406, + -154.51805114746094 + ], + "type":"VEC3" + }, + { + "bufferView":17870, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":17871, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17872, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17873, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17874, + "componentType":5126, + "count":559, + "max":[ + 223.19976806640625, + 577.9196166992188, + 223.60577392578125 + ], + "min":[ + -223.19972229003906, + 131.63946533203125, + -223.6057586669922 + ], + "type":"VEC3" + }, + { + "bufferView":17875, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":17876, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":17877, + "componentType":5126, + "count":24, + "max":[ + 584.6640625, + 50.00001525878906, + 110.00007629394531 + ], + "min":[ + -584.6640625, + -1.660953785176389e-05, + -110.0001220703125 + ], + "type":"VEC3" + }, + { + "bufferView":17878, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17879, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":17880, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17881, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17882, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":17883, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17884, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17885, + "componentType":5126, + "count":648, + "max":[ + 615.0107421875, + 2510.925048828125, + 347.265869140625 + ], + "min":[ + -615.01025390625, + 0, + -347.266357421875 + ], + "type":"VEC3" + }, + { + "bufferView":17886, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":17887, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":17888, + "componentType":5126, + "count":7724, + "max":[ + 496.306640625, + 427.46484375, + 103.7867431640625 + ], + "min":[ + -496.306396484375, + 0, + -103.786865234375 + ], + "type":"VEC3" + }, + { + "bufferView":17889, + "componentType":5126, + "count":7724, + "type":"VEC3" + }, + { + "bufferView":17890, + "componentType":5126, + "count":7724, + "type":"VEC2" + }, + { + "bufferView":17891, + "componentType":5126, + "count":592, + "max":[ + 181.71473693847656, + 188.4677276611328, + 152.2471466064453 + ], + "min":[ + -181.71339416503906, + 1.2641372680664062, + -164.5284423828125 + ], + "type":"VEC3" + }, + { + "bufferView":17892, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":17893, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17894, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17895, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17896, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17897, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.2841796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.2841796875 + ], + "type":"VEC3" + }, + { + "bufferView":17898, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":17899, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":17900, + "componentType":5126, + "count":88, + "max":[ + 50.1396484375, + 105.89306640625, + 891.34228515625 + ], + "min":[ + -50.139892578125, + 0, + -891.34228515625 + ], + "type":"VEC3" + }, + { + "bufferView":17901, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":17902, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":17903, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":17904, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17905, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17906, + "componentType":5126, + "count":112, + "max":[ + 165.65061950683594, + 120.271484375, + 165.650390625 + ], + "min":[ + -165.65061950683594, + 0.0009765625, + -165.6508331298828 + ], + "type":"VEC3" + }, + { + "bufferView":17907, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":17908, + "componentType":5126, + "count":247, + "max":[ + 173.28125, + 188.23828125, + 169.1015625 + ], + "min":[ + -173.28125, + 0, + -169.1015625 + ], + "type":"VEC3" + }, + { + "bufferView":17909, + "componentType":5126, + "count":247, + "type":"VEC3" + }, + { + "bufferView":17910, + "componentType":5126, + "count":247, + "type":"VEC2" + }, + { + "bufferView":17911, + "componentType":5126, + "count":122, + "max":[ + 983.4697265625, + 355.5093688964844, + 983.4702758789062 + ], + "min":[ + -983.4697265625, + 9.1552734375e-05, + -983.4712524414062 + ], + "type":"VEC3" + }, + { + "bufferView":17912, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":17913, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":17914, + "componentType":5126, + "count":572, + "max":[ + 183.11512756347656, + 189.8602294921875, + 165.7416229248047 + ], + "min":[ + -183.11587524414062, + 1.2747421264648438, + -153.46128845214844 + ], + "type":"VEC3" + }, + { + "bufferView":17915, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":17916, + "componentType":5126, + "count":1048, + "max":[ + 125.224609375, + 76.1982421875, + 90.109130859375 + ], + "min":[ + -125.2275390625, + -0.0009765625, + -90.1090087890625 + ], + "type":"VEC3" + }, + { + "bufferView":17917, + "componentType":5126, + "count":1048, + "type":"VEC3" + }, + { + "bufferView":17918, + "componentType":5126, + "count":1048, + "type":"VEC2" + }, + { + "bufferView":17919, + "componentType":5126, + "count":276, + "max":[ + 175.05322265625, + 196.21435546875, + 169.1064453125 + ], + "min":[ + -175.0537109375, + 0, + -169.107421875 + ], + "type":"VEC3" + }, + { + "bufferView":17920, + "componentType":5126, + "count":276, + "type":"VEC3" + }, + { + "bufferView":17921, + "componentType":5126, + "count":276, + "type":"VEC2" + }, + { + "bufferView":17922, + "componentType":5126, + "count":119, + "max":[ + 40.60498046875, + 81.208984375, + 5725.87548828125 + ], + "min":[ + -40.60546875, + 0, + -5725.87548828125 + ], + "type":"VEC3" + }, + { + "bufferView":17923, + "componentType":5126, + "count":119, + "type":"VEC3" + }, + { + "bufferView":17924, + "componentType":5126, + "count":119, + "type":"VEC2" + }, + { + "bufferView":17925, + "componentType":5126, + "count":288, + "max":[ + 12512.609375, + 916.6832885742188, + 293.04034423828125 + ], + "min":[ + -12512.6064453125, + 6.103515625e-05, + -293.041259765625 + ], + "type":"VEC3" + }, + { + "bufferView":17926, + "componentType":5126, + "count":288, + "type":"VEC3" + }, + { + "bufferView":17927, + "componentType":5126, + "count":98, + "max":[ + 35.91145324707031, + 822, + 73.0061264038086 + ], + "min":[ + -35.9130973815918, + -2.842963658622466e-05, + -73.00641632080078 + ], + "type":"VEC3" + }, + { + "bufferView":17928, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":17929, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17930, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17931, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17932, + "componentType":5126, + "count":227, + "max":[ + 7.85205078125, + 248.992431640625, + 53.2841796875 + ], + "min":[ + -7.853515625, + 0.0001220703125, + -53.2841796875 + ], + "type":"VEC3" + }, + { + "bufferView":17933, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":17934, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":17935, + "componentType":5126, + "count":232, + "max":[ + 173.28125, + 188.23828125, + 169.100830078125 + ], + "min":[ + -173.28173828125, + 0, + -169.100830078125 + ], + "type":"VEC3" + }, + { + "bufferView":17936, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":17937, + "componentType":5126, + "count":232, + "type":"VEC2" + }, + { + "bufferView":17938, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17939, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17940, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17941, + "componentType":5126, + "count":50, + "max":[ + 142.32275390625, + 608.220703125, + 391.7373046875 + ], + "min":[ + -142.31982421875, + 0, + -391.738037109375 + ], + "type":"VEC3" + }, + { + "bufferView":17942, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":17943, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":17944, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":17945, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17946, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17947, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17948, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17949, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17950, + "componentType":5126, + "count":24, + "max":[ + 13.6904296875, + 34.440673828125, + 2314.281005859375 + ], + "min":[ + -13.6943359375, + -6.103515625e-05, + -2314.28076171875 + ], + "type":"VEC3" + }, + { + "bufferView":17951, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17952, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17953, + "componentType":5126, + "count":585, + "max":[ + 170.43348693847656, + 205.60145568847656, + 155.8894805908203 + ], + "min":[ + -170.43125915527344, + -0.000152587890625, + -155.89027404785156 + ], + "type":"VEC3" + }, + { + "bufferView":17954, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":17955, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17956, + "componentType":5126, + "count":40, + "max":[ + 1.4143146276474, + 10.517534255981445, + 5.258759021759033 + ], + "min":[ + -1.4143165349960327, + 6.008148193359375e-05, + -5.25871467590332 + ], + "type":"VEC3" + }, + { + "bufferView":17957, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":17958, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":17959, + "componentType":5126, + "count":112, + "max":[ + 147.98110961914062, + 382.51190185546875, + 170.07525634765625 + ], + "min":[ + -147.98336791992188, + 4.57763671875e-05, + -170.07553100585938 + ], + "type":"VEC3" + }, + { + "bufferView":17960, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":17961, + "componentType":5126, + "count":578, + "max":[ + 166.2982635498047, + 173.15460205078125, + 151.17727661132812 + ], + "min":[ + -166.29783630371094, + 1.1530075073242188, + -138.89698791503906 + ], + "type":"VEC3" + }, + { + "bufferView":17962, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":17963, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.45458984375, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":17964, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":17965, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":17966, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17967, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17968, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17969, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17970, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17971, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17972, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 463.990234375 + ], + "min":[ + -110.0000228881836, + 0, + -463.990234375 + ], + "type":"VEC3" + }, + { + "bufferView":17973, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17974, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17975, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17976, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17977, + "componentType":5126, + "count":588, + "max":[ + 189.62779235839844, + 272.3504638671875, + 170.71463012695312 + ], + "min":[ + -196.83981323242188, + 40.17518615722656, + -182.64645385742188 + ], + "type":"VEC3" + }, + { + "bufferView":17978, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":17979, + "componentType":5126, + "count":346, + "max":[ + 170.435546875, + 188.558349609375, + 176.20361328125 + ], + "min":[ + -170.43359375, + 45.296630859375, + -176.2041015625 + ], + "type":"VEC3" + }, + { + "bufferView":17980, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":17981, + "componentType":5126, + "count":346, + "type":"VEC2" + }, + { + "bufferView":17982, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":17983, + "componentType":5126, + "count":112, + "max":[ + 34.615074157714844, + 1878.334228515625, + 445.77923583984375 + ], + "min":[ + -34.61507797241211, + -0.0001220703125, + -445.7789306640625 + ], + "type":"VEC3" + }, + { + "bufferView":17984, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":17985, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":17986, + "componentType":5126, + "count":142, + "max":[ + 3.4517722129821777, + 18.94533348083496, + 9.472701072692871 + ], + "min":[ + -3.451794385910034, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":17987, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":17988, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":17989, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":17990, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":17991, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17992, + "componentType":5126, + "count":96, + "max":[ + 820.9443359375, + 205.1725616455078, + 73.4787826538086 + ], + "min":[ + -820.9476318359375, + -5.7220458984375e-05, + -73.47869110107422 + ], + "type":"VEC3" + }, + { + "bufferView":17993, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":17994, + "componentType":5126, + "count":602, + "max":[ + 171.90518188476562, + 32.825321197509766, + 171.90379333496094 + ], + "min":[ + -171.9025421142578, + 2.288818359375e-05, + -171.90396118164062 + ], + "type":"VEC3" + }, + { + "bufferView":17995, + "componentType":5126, + "count":602, + "type":"VEC3" + }, + { + "bufferView":17996, + "componentType":5126, + "count":596, + "max":[ + 325.56951904296875, + 506.26312255859375, + 332.9398193359375 + ], + "min":[ + -325.5695495605469, + 1.6454315185546875, + -332.9398193359375 + ], + "type":"VEC3" + }, + { + "bufferView":17997, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":17998, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":17999, + "componentType":5126, + "count":76, + "max":[ + 279.1005859375, + 3543.081787109375, + 278.86895751953125 + ], + "min":[ + -279.10284423828125, + 0, + -278.86810302734375 + ], + "type":"VEC3" + }, + { + "bufferView":18000, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":18001, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":18002, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18003, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18004, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18005, + "componentType":5126, + "count":48, + "max":[ + 366.153076171875, + 696.755859375, + 123.615234375 + ], + "min":[ + -366.15234375, + 0, + -123.61328125 + ], + "type":"VEC3" + }, + { + "bufferView":18006, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":18007, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":18008, + "componentType":5126, + "count":1020, + "max":[ + 831.5458984375, + 116.2333984375, + 746.10498046875 + ], + "min":[ + -831.5458984375, + 0.000118255615234375, + -746.10205078125 + ], + "type":"VEC3" + }, + { + "bufferView":18009, + "componentType":5126, + "count":1020, + "type":"VEC3" + }, + { + "bufferView":18010, + "componentType":5126, + "count":1020, + "type":"VEC2" + }, + { + "bufferView":18011, + "componentType":5126, + "count":594, + "max":[ + 145.3692626953125, + 211.52615356445312, + 130.35658264160156 + ], + "min":[ + -152.57525634765625, + 30.935142517089844, + -142.28793334960938 + ], + "type":"VEC3" + }, + { + "bufferView":18012, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":18013, + "componentType":5126, + "count":570, + "max":[ + 153.68331909179688, + 159.5636749267578, + 134.1138458251953 + ], + "min":[ + -153.6865997314453, + 7.62939453125e-05, + -134.11387634277344 + ], + "type":"VEC3" + }, + { + "bufferView":18014, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":18015, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18016, + "componentType":5126, + "count":576, + "max":[ + 197.86923217773438, + 126.80730438232422, + 206.1773223876953 + ], + "min":[ + -197.8684844970703, + 3.0517578125e-05, + -206.17767333984375 + ], + "type":"VEC3" + }, + { + "bufferView":18017, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":18018, + "componentType":5126, + "count":342, + "max":[ + 115.14114379882812, + 210.2413787841797, + 69.11632537841797 + ], + "min":[ + -115.1412582397461, + 7.62939453125e-05, + -69.11637115478516 + ], + "type":"VEC3" + }, + { + "bufferView":18019, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":18020, + "componentType":5126, + "count":1330, + "max":[ + 4857.8447265625, + 790.029052734375, + 49.9814453125 + ], + "min":[ + -4857.8466796875, + 0.000244140625, + -49.9814453125 + ], + "type":"VEC3" + }, + { + "bufferView":18021, + "componentType":5126, + "count":1330, + "type":"VEC3" + }, + { + "bufferView":18022, + "componentType":5126, + "count":1330, + "type":"VEC2" + }, + { + "bufferView":18023, + "componentType":5123, + "count":2520, + "type":"SCALAR" + }, + { + "bufferView":18024, + "componentType":5126, + "count":594, + "max":[ + 181.71339416503906, + 187.2035675048828, + 158.3877716064453 + ], + "min":[ + -181.71473693847656, + -2.288818359375e-05, + -158.3878173828125 + ], + "type":"VEC3" + }, + { + "bufferView":18025, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":18026, + "componentType":5126, + "count":576, + "max":[ + 201.4739532470703, + 127.64276885986328, + 206.1773223876953 + ], + "min":[ + -194.26376342773438, + 0.8354721069335938, + -206.17767333984375 + ], + "type":"VEC3" + }, + { + "bufferView":18027, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":18028, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18029, + "componentType":5126, + "count":76, + "max":[ + 279.10015869140625, + 3543.081787109375, + 278.8685302734375 + ], + "min":[ + -279.1027526855469, + 0, + -278.8685607910156 + ], + "type":"VEC3" + }, + { + "bufferView":18030, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":18031, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":18032, + "componentType":5126, + "count":112, + "max":[ + 101.75885009765625, + 150.655517578125, + 75.32666015625 + ], + "min":[ + -101.759033203125, + -0.0003662109375, + -75.328125 + ], + "type":"VEC3" + }, + { + "bufferView":18033, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":18034, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":18035, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":18036, + "componentType":5126, + "count":280, + "max":[ + 2747.823486328125, + 84.5, + 2747.823486328125 + ], + "min":[ + -2747.823486328125, + 0, + -2747.823486328125 + ], + "type":"VEC3" + }, + { + "bufferView":18037, + "componentType":5126, + "count":280, + "type":"VEC3" + }, + { + "bufferView":18038, + "componentType":5126, + "count":280, + "type":"VEC2" + }, + { + "bufferView":18039, + "componentType":5123, + "count":804, + "type":"SCALAR" + }, + { + "bufferView":18040, + "componentType":5126, + "count":180, + "max":[ + 769.70947265625, + 113.194580078125, + 56.59619140625 + ], + "min":[ + -769.7080078125, + 0, + -56.5966796875 + ], + "type":"VEC3" + }, + { + "bufferView":18041, + "componentType":5126, + "count":180, + "type":"VEC3" + }, + { + "bufferView":18042, + "componentType":5126, + "count":180, + "type":"VEC2" + }, + { + "bufferView":18043, + "componentType":5126, + "count":56, + "max":[ + 115.15478515625, + 511.947509765625, + 147.15625 + ], + "min":[ + -115.15283203125, + 0, + -147.15576171875 + ], + "type":"VEC3" + }, + { + "bufferView":18044, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":18045, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":18046, + "componentType":5126, + "count":1248, + "max":[ + 104.1713638305664, + 104.17131042480469, + 104.17139434814453 + ], + "min":[ + -104.1714096069336, + -8.392333984375e-05, + -104.17137908935547 + ], + "type":"VEC3" + }, + { + "bufferView":18047, + "componentType":5126, + "count":1248, + "type":"VEC3" + }, + { + "bufferView":18048, + "componentType":5126, + "count":1248, + "type":"VEC2" + }, + { + "bufferView":18049, + "componentType":5126, + "count":60, + "max":[ + 3.787543535232544, + 13.000019073486328, + 3.74235200881958 + ], + "min":[ + -3.7875211238861084, + -2.4318695068359375e-05, + -3.7424826622009277 + ], + "type":"VEC3" + }, + { + "bufferView":18050, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":18051, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":18052, + "componentType":5126, + "count":1021, + "max":[ + 125.22607421875, + 76.19921875, + 90.1083984375 + ], + "min":[ + -125.22607421875, + 0, + -90.109375 + ], + "type":"VEC3" + }, + { + "bufferView":18053, + "componentType":5126, + "count":1021, + "type":"VEC3" + }, + { + "bufferView":18054, + "componentType":5126, + "count":1021, + "type":"VEC2" + }, + { + "bufferView":18055, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":18056, + "componentType":5126, + "count":584, + "max":[ + 185.9182586669922, + 192.64437866210938, + 155.88819885253906 + ], + "min":[ + -185.91859436035156, + 1.2947845458984375, + -168.1695098876953 + ], + "type":"VEC3" + }, + { + "bufferView":18057, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":18058, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18059, + "componentType":5126, + "count":110, + "max":[ + 27.1103515625, + 95.447021484375, + 37.43653106689453 + ], + "min":[ + -27.1103515625, + -3.814697265625e-06, + -37.43457794189453 + ], + "type":"VEC3" + }, + { + "bufferView":18060, + "componentType":5126, + "count":110, + "type":"VEC3" + }, + { + "bufferView":18061, + "componentType":5126, + "count":110, + "type":"VEC2" + }, + { + "bufferView":18062, + "componentType":5126, + "count":60, + "max":[ + 3.7875242233276367, + 14.031471252441406, + 5.5484700202941895 + ], + "min":[ + -3.787548780441284, + -3.199544153176248e-05, + -5.548454284667969 + ], + "type":"VEC3" + }, + { + "bufferView":18063, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":18064, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":18065, + "componentType":5126, + "count":1043, + "max":[ + 125.22607421875, + 76.19921875, + 90.10888671875 + ], + "min":[ + -125.22607421875, + 0, + -90.109375 + ], + "type":"VEC3" + }, + { + "bufferView":18066, + "componentType":5126, + "count":1043, + "type":"VEC3" + }, + { + "bufferView":18067, + "componentType":5126, + "count":1043, + "type":"VEC2" + }, + { + "bufferView":18068, + "componentType":5126, + "count":24, + "max":[ + 15.474609375, + 2142.8671875, + 381.68865966796875 + ], + "min":[ + -15.4755859375, + 0, + -381.68524169921875 + ], + "type":"VEC3" + }, + { + "bufferView":18069, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18070, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18071, + "componentType":5126, + "count":572, + "max":[ + 197.12852478027344, + 203.781005859375, + 177.87908935546875 + ], + "min":[ + -197.13157653808594, + 1.37554931640625, + -165.59771728515625 + ], + "type":"VEC3" + }, + { + "bufferView":18072, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":18073, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18074, + "componentType":5126, + "count":696, + "max":[ + 1091.2265625, + 286.9413757324219, + 393.34423828125 + ], + "min":[ + -1091.2265625, + 6.103515625e-05, + -393.3408508300781 + ], + "type":"VEC3" + }, + { + "bufferView":18075, + "componentType":5126, + "count":696, + "type":"VEC3" + }, + { + "bufferView":18076, + "componentType":5126, + "count":696, + "type":"VEC2" + }, + { + "bufferView":18077, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.455322265625, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.000732421875, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":18078, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":18079, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":18080, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92938232421875, + 384.57861328125 + ], + "min":[ + -244.466796875, + 6.103515625e-05, + -384.5820007324219 + ], + "type":"VEC3" + }, + { + "bufferView":18081, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":18082, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":18083, + "componentType":5126, + "count":585, + "max":[ + 166.8297119140625, + 241.0164794921875, + 149.9239501953125 + ], + "min":[ + -174.03504943847656, + 35.41490936279297, + -161.85589599609375 + ], + "type":"VEC3" + }, + { + "bufferView":18084, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":18085, + "componentType":5126, + "count":224, + "max":[ + 115.14118194580078, + 230.28256225585938, + 118.72101593017578 + ], + "min":[ + -115.1412582397461, + 8.392333984375e-05, + -118.72062683105469 + ], + "type":"VEC3" + }, + { + "bufferView":18086, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":18087, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":18088, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18089, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18090, + "componentType":5126, + "count":152, + "max":[ + 586.3173828125, + 156.6259765625, + 69.5693359375 + ], + "min":[ + -586.31884765625, + 0, + -69.5712890625 + ], + "type":"VEC3" + }, + { + "bufferView":18091, + "componentType":5126, + "count":152, + "type":"VEC3" + }, + { + "bufferView":18092, + "componentType":5126, + "count":152, + "type":"VEC2" + }, + { + "bufferView":18093, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4549560546875, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.00048828125, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":18094, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":18095, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":18096, + "componentType":5126, + "count":577, + "max":[ + 183.84652709960938, + 118.57159423828125, + 191.52410888671875 + ], + "min":[ + -183.84349060058594, + 0.00011444091796875, + -191.5244140625 + ], + "type":"VEC3" + }, + { + "bufferView":18097, + "componentType":5126, + "count":577, + "type":"VEC3" + }, + { + "bufferView":18098, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18099, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18100, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18101, + "componentType":5126, + "count":156, + "max":[ + 28556.630859375, + 1217.7703857421875, + 34.48623275756836 + ], + "min":[ + -28556.630859375, + 0.0001220703125, + -34.486351013183594 + ], + "type":"VEC3" + }, + { + "bufferView":18102, + "componentType":5126, + "count":156, + "type":"VEC3" + }, + { + "bufferView":18103, + "componentType":5126, + "count":578, + "max":[ + 177.50819396972656, + 184.29156494140625, + 160.88685607910156 + ], + "min":[ + -177.5111541748047, + 1.2340316772460938, + -148.6065216064453 + ], + "type":"VEC3" + }, + { + "bufferView":18104, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":18105, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.07373046875 + ], + "min":[ + -27.193359375, + 0, + -126.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":18106, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18107, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18108, + "componentType":5126, + "count":24, + "max":[ + 10.958148956298828, + 361.93402099609375, + 59.81034851074219 + ], + "min":[ + -10.95809555053711, + 0.0001220703125, + -59.81049346923828 + ], + "type":"VEC3" + }, + { + "bufferView":18109, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18110, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18111, + "componentType":5126, + "count":60, + "max":[ + 3.7875242233276367, + 14.031471252441406, + 5.5484700202941895 + ], + "min":[ + -3.787548780441284, + -3.199544153176248e-05, + -5.548454284667969 + ], + "type":"VEC3" + }, + { + "bufferView":18112, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":18113, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":18114, + "componentType":5126, + "count":104, + "max":[ + 57.39837646484375, + 3360.316650390625, + 57.399169921875 + ], + "min":[ + -57.39813232421875, + -3.814697265625e-05, + -57.3974609375 + ], + "type":"VEC3" + }, + { + "bufferView":18115, + "componentType":5126, + "count":104, + "type":"VEC3" + }, + { + "bufferView":18116, + "componentType":5126, + "count":104, + "type":"VEC2" + }, + { + "bufferView":18117, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":18118, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18119, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18120, + "componentType":5126, + "count":147, + "max":[ + 28.79931640625, + 913.683837890625, + 27.666015625 + ], + "min":[ + -28.80322265625, + 0, + -27.6650390625 + ], + "type":"VEC3" + }, + { + "bufferView":18121, + "componentType":5126, + "count":147, + "type":"VEC3" + }, + { + "bufferView":18122, + "componentType":5126, + "count":147, + "type":"VEC2" + }, + { + "bufferView":18123, + "componentType":5126, + "count":112, + "max":[ + 257.9972839355469, + 187.3193359375, + 257.9945373535156 + ], + "min":[ + -257.9972839355469, + 0.0009765625, + -258 + ], + "type":"VEC3" + }, + { + "bufferView":18124, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":18125, + "componentType":5126, + "count":96, + "max":[ + 34.85572814941406, + 1922.780517578125, + 633.9985961914062 + ], + "min":[ + -34.85291290283203, + 0, + -633.9986572265625 + ], + "type":"VEC3" + }, + { + "bufferView":18126, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":18127, + "componentType":5126, + "count":574, + "max":[ + 207.89891052246094, + 32.82524871826172, + 207.8981475830078 + ], + "min":[ + -207.89772033691406, + 0.0001068115234375, + -207.89852905273438 + ], + "type":"VEC3" + }, + { + "bufferView":18128, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":18129, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":18130, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18131, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18132, + "componentType":5126, + "count":348, + "max":[ + 115.35123443603516, + 211.42062377929688, + 68.4458999633789 + ], + "min":[ + -115.3512191772461, + 9.1552734375e-05, + -68.44573974609375 + ], + "type":"VEC3" + }, + { + "bufferView":18133, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":18134, + "componentType":5126, + "count":95, + "max":[ + 27.1103515625, + 95.4468994140625, + 37.43750762939453 + ], + "min":[ + -27.1103515625, + -3.814697265625e-06, + -37.43360137939453 + ], + "type":"VEC3" + }, + { + "bufferView":18135, + "componentType":5126, + "count":95, + "type":"VEC3" + }, + { + "bufferView":18136, + "componentType":5126, + "count":95, + "type":"VEC2" + }, + { + "bufferView":18137, + "componentType":5126, + "count":596, + "max":[ + 142.26710510253906, + 98.75543212890625, + 148.07913208007812 + ], + "min":[ + -142.26473999023438, + 0.0001068115234375, + -148.0791473388672 + ], + "type":"VEC3" + }, + { + "bufferView":18138, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":18139, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":18140, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18141, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18142, + "componentType":5126, + "count":350, + "max":[ + 170.435546875, + 188.5556640625, + 176.20361328125 + ], + "min":[ + -170.43359375, + 45.2958984375, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":18143, + "componentType":5126, + "count":350, + "type":"VEC3" + }, + { + "bufferView":18144, + "componentType":5126, + "count":350, + "type":"VEC2" + }, + { + "bufferView":18145, + "componentType":5126, + "count":696, + "max":[ + 1091.2265625, + 286.94140625, + 86.86620330810547 + ], + "min":[ + -1091.2265625, + 1.52587890625e-05, + -86.86327362060547 + ], + "type":"VEC3" + }, + { + "bufferView":18146, + "componentType":5126, + "count":696, + "type":"VEC3" + }, + { + "bufferView":18147, + "componentType":5126, + "count":696, + "type":"VEC2" + }, + { + "bufferView":18148, + "componentType":5123, + "count":696, + "type":"SCALAR" + }, + { + "bufferView":18149, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18150, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18151, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18152, + "componentType":5126, + "count":580, + "max":[ + 162.0943145751953, + 168.97842407226562, + 135.25543212890625 + ], + "min":[ + -162.09307861328125, + 1.1229019165039062, + -147.53668212890625 + ], + "type":"VEC3" + }, + { + "bufferView":18153, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":18154, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18155, + "componentType":5126, + "count":586, + "max":[ + 207.89891052246094, + 213.0241241455078, + 181.06394958496094 + ], + "min":[ + -207.89772033691406, + -0.0001068115234375, + -181.06411743164062 + ], + "type":"VEC3" + }, + { + "bufferView":18156, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":18157, + "componentType":5126, + "count":196, + "max":[ + 1200.74560546875, + 3214.572998046875, + 5340.66455078125 + ], + "min":[ + -1200.74560546875, + 0, + -5340.6669921875 + ], + "type":"VEC3" + }, + { + "bufferView":18158, + "componentType":5126, + "count":196, + "type":"VEC3" + }, + { + "bufferView":18159, + "componentType":5126, + "count":196, + "type":"VEC2" + }, + { + "bufferView":18160, + "componentType":5123, + "count":390, + "type":"SCALAR" + }, + { + "bufferView":18161, + "componentType":5126, + "count":696, + "max":[ + 1091.224609375, + 286.9413757324219, + 393.34423828125 + ], + "min":[ + -1091.228515625, + 6.103515625e-05, + -393.3408508300781 + ], + "type":"VEC3" + }, + { + "bufferView":18162, + "componentType":5126, + "count":696, + "type":"VEC3" + }, + { + "bufferView":18163, + "componentType":5126, + "count":696, + "type":"VEC2" + }, + { + "bufferView":18164, + "componentType":5126, + "count":573, + "max":[ + 173.53343200683594, + 250.23223876953125, + 156.03887939453125 + ], + "min":[ + -180.7439727783203, + 36.81480407714844, + -167.97076416015625 + ], + "type":"VEC3" + }, + { + "bufferView":18165, + "componentType":5126, + "count":573, + "type":"VEC3" + }, + { + "bufferView":18166, + "componentType":5126, + "count":76, + "max":[ + 278.8729553222656, + 3543.081787109375, + 279.1054382324219 + ], + "min":[ + -278.8734436035156, + 0, + -279.1072998046875 + ], + "type":"VEC3" + }, + { + "bufferView":18167, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":18168, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":18169, + "componentType":5126, + "count":580, + "max":[ + 174.70864868164062, + 180.29354858398438, + 152.31930541992188 + ], + "min":[ + -174.70492553710938, + 3.0517578125e-05, + -152.31935119628906 + ], + "type":"VEC3" + }, + { + "bufferView":18170, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":18171, + "componentType":5126, + "count":60, + "max":[ + 3.787513017654419, + 13.000263214111328, + 3.74235200881958 + ], + "min":[ + -3.7875516414642334, + 0.00021982192993164062, + -3.7424826622009277 + ], + "type":"VEC3" + }, + { + "bufferView":18172, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":18173, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":18174, + "componentType":5126, + "count":797, + "max":[ + 4.1328125, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":18175, + "componentType":5126, + "count":797, + "type":"VEC3" + }, + { + "bufferView":18176, + "componentType":5126, + "count":797, + "type":"VEC2" + }, + { + "bufferView":18177, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":18178, + "componentType":5126, + "count":599, + "max":[ + 162.3836212158203, + 196.2229461669922, + 148.55184936523438 + ], + "min":[ + -162.3860321044922, + 0.000213623046875, + -148.5521697998047 + ], + "type":"VEC3" + }, + { + "bufferView":18179, + "componentType":5126, + "count":599, + "type":"VEC3" + }, + { + "bufferView":18180, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18181, + "componentType":5126, + "count":592, + "max":[ + 193.23326110839844, + 124.03791046142578, + 201.33425903320312 + ], + "min":[ + -193.2343292236328, + -8.392333984375e-05, + -201.33462524414062 + ], + "type":"VEC3" + }, + { + "bufferView":18182, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":18183, + "componentType":5126, + "count":343, + "max":[ + 170.904296875, + 156.999267578125, + 177.25439453125 + ], + "min":[ + -170.90625, + 21.2880859375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":18184, + "componentType":5126, + "count":343, + "type":"VEC3" + }, + { + "bufferView":18185, + "componentType":5126, + "count":343, + "type":"VEC2" + }, + { + "bufferView":18186, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":18187, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92938232421875, + 384.58251953125 + ], + "min":[ + -244.4677734375, + 6.103515625e-05, + -384.5790710449219 + ], + "type":"VEC3" + }, + { + "bufferView":18188, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":18189, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":18190, + "componentType":5126, + "count":584, + "max":[ + 201.1636962890625, + 128.77523803710938, + 209.6189422607422 + ], + "min":[ + -201.16160583496094, + 3.0517578125e-05, + -209.6193084716797 + ], + "type":"VEC3" + }, + { + "bufferView":18191, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":18192, + "componentType":5126, + "count":92, + "max":[ + 824.2412109375, + 141.0703125, + 69.56982421875 + ], + "min":[ + -824.24072265625, + 0, + -69.570068359375 + ], + "type":"VEC3" + }, + { + "bufferView":18193, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":18194, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":18195, + "componentType":5126, + "count":574, + "max":[ + 211.34117126464844, + 217.89578247070312, + 190.1852264404297 + ], + "min":[ + -211.33865356445312, + 1.477752685546875, + -177.90377807617188 + ], + "type":"VEC3" + }, + { + "bufferView":18196, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":18197, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18198, + "componentType":5126, + "count":76, + "max":[ + 278.8694763183594, + 3543.081787109375, + 279.1027526855469 + ], + "min":[ + -278.8675537109375, + 0, + -279.10015869140625 + ], + "type":"VEC3" + }, + { + "bufferView":18199, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":18200, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":18201, + "componentType":5126, + "count":598, + "max":[ + 198.53025817871094, + 32.825233459472656, + 198.53135681152344 + ], + "min":[ + -198.53277587890625, + 6.4849853515625e-05, + -198.53167724609375 + ], + "type":"VEC3" + }, + { + "bufferView":18202, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":18203, + "componentType":5126, + "count":568, + "max":[ + 202.81089782714844, + 129.75909423828125, + 211.3397216796875 + ], + "min":[ + -202.80819702148438, + -7.62939453125e-05, + -211.3401336669922 + ], + "type":"VEC3" + }, + { + "bufferView":18204, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":18205, + "componentType":5126, + "count":581, + "max":[ + 170.01210021972656, + 110.95944213867188, + 173.3052520751953 + ], + "min":[ + -162.80516052246094, + 0.6979293823242188, + -173.30545043945312 + ], + "type":"VEC3" + }, + { + "bufferView":18206, + "componentType":5126, + "count":581, + "type":"VEC3" + }, + { + "bufferView":18207, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18208, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18209, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18210, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18211, + "componentType":5126, + "count":584, + "max":[ + 169.08973693847656, + 111.53993225097656, + 176.10813903808594 + ], + "min":[ + -169.09249877929688, + -0.00023651123046875, + -176.1083221435547 + ], + "type":"VEC3" + }, + { + "bufferView":18212, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":18213, + "componentType":5126, + "count":590, + "max":[ + 170.50344848632812, + 177.3312530517578, + 154.81857299804688 + ], + "min":[ + -170.50135803222656, + 1.1837539672851562, + -142.5378875732422 + ], + "type":"VEC3" + }, + { + "bufferView":18214, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":18215, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18216, + "componentType":5126, + "count":349, + "max":[ + 170.43359375, + 188.55810546875, + 176.2041015625 + ], + "min":[ + -170.435546875, + 45.29638671875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":18217, + "componentType":5126, + "count":349, + "type":"VEC3" + }, + { + "bufferView":18218, + "componentType":5126, + "count":349, + "type":"VEC2" + }, + { + "bufferView":18219, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":18220, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92938232421875, + 384.1396484375 + ], + "min":[ + -245.2333984375, + -6.103515625e-05, + -384.1410827636719 + ], + "type":"VEC3" + }, + { + "bufferView":18221, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":18222, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":18223, + "componentType":5126, + "count":60, + "max":[ + 3.7875120639801025, + 13.693793296813965, + 6.47288179397583 + ], + "min":[ + -3.787554979324341, + 0.00021409988403320312, + -6.472884178161621 + ], + "type":"VEC3" + }, + { + "bufferView":18224, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":18225, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":18226, + "componentType":5126, + "count":236, + "max":[ + 383.69830322265625, + 1951.66748046875, + 575.7845458984375 + ], + "min":[ + -416.318115234375, + 17.533493041992188, + -630.4196166992188 + ], + "type":"VEC3" + }, + { + "bufferView":18227, + "componentType":5126, + "count":236, + "type":"VEC3" + }, + { + "bufferView":18228, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":18229, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18230, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18231, + "componentType":5126, + "count":123, + "max":[ + 17.0291748046875, + 3492.663330078125, + 17.026214599609375 + ], + "min":[ + -17.0255126953125, + 0, + -17.027130126953125 + ], + "type":"VEC3" + }, + { + "bufferView":18232, + "componentType":5126, + "count":123, + "type":"VEC3" + }, + { + "bufferView":18233, + "componentType":5126, + "count":123, + "type":"VEC2" + }, + { + "bufferView":18234, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":18235, + "componentType":5126, + "count":342, + "max":[ + 170.904296875, + 157.00146484375, + 177.25439453125 + ], + "min":[ + -170.90625, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":18236, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":18237, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":18238, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":18239, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":18240, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18241, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18242, + "componentType":5126, + "count":7799, + "max":[ + 496.306884765625, + 427.46484375, + 103.7867431640625 + ], + "min":[ + -496.306396484375, + 0, + -103.7867431640625 + ], + "type":"VEC3" + }, + { + "bufferView":18243, + "componentType":5126, + "count":7799, + "type":"VEC3" + }, + { + "bufferView":18244, + "componentType":5126, + "count":7799, + "type":"VEC2" + }, + { + "bufferView":18245, + "componentType":5126, + "count":570, + "max":[ + 183.11587524414062, + 189.86021423339844, + 153.46083068847656 + ], + "min":[ + -183.11512756347656, + 1.27471923828125, + -165.7421417236328 + ], + "type":"VEC3" + }, + { + "bufferView":18246, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":18247, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18248, + "componentType":5126, + "count":212, + "max":[ + 33.4022216796875, + 133.60888671875, + 66.80419921875 + ], + "min":[ + -33.4022216796875, + 0, + -66.804443359375 + ], + "type":"VEC3" + }, + { + "bufferView":18249, + "componentType":5126, + "count":212, + "type":"VEC3" + }, + { + "bufferView":18250, + "componentType":5126, + "count":212, + "type":"VEC2" + }, + { + "bufferView":18251, + "componentType":5126, + "count":158, + "max":[ + 437.3779296875, + 12069.2890625, + 19.6142578125 + ], + "min":[ + -437.3779296875, + 0.000640869140625, + -19.6142578125 + ], + "type":"VEC3" + }, + { + "bufferView":18252, + "componentType":5126, + "count":158, + "type":"VEC3" + }, + { + "bufferView":18253, + "componentType":5126, + "count":158, + "type":"VEC2" + }, + { + "bufferView":18254, + "componentType":5126, + "count":3266, + "max":[ + 6080, + 2819.53076171875, + 1562.47998046875 + ], + "min":[ + -6080.0009765625, + -0.0001220703125, + -1562.47802734375 + ], + "type":"VEC3" + }, + { + "bufferView":18255, + "componentType":5126, + "count":3266, + "type":"VEC3" + }, + { + "bufferView":18256, + "componentType":5126, + "count":3266, + "type":"VEC2" + }, + { + "bufferView":18257, + "componentType":5123, + "count":5472, + "type":"SCALAR" + }, + { + "bufferView":18258, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18259, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18260, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18261, + "componentType":5126, + "count":568, + "max":[ + 148.07968139648438, + 32.825321197509766, + 148.07913208007812 + ], + "min":[ + -148.07859802246094, + 0.00012969970703125, + -148.0791473388672 + ], + "type":"VEC3" + }, + { + "bufferView":18262, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":18263, + "componentType":5126, + "count":585, + "max":[ + 166.40672302246094, + 110.26168823242188, + 173.3053741455078 + ], + "min":[ + -166.41053771972656, + 0.00018310546875, + -173.30532836914062 + ], + "type":"VEC3" + }, + { + "bufferView":18264, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":18265, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18266, + "componentType":5126, + "count":588, + "max":[ + 173.3037109375, + 180.11541748046875, + 144.96498107910156 + ], + "min":[ + -173.30691528320312, + 1.2038421630859375, + -157.24627685546875 + ], + "type":"VEC3" + }, + { + "bufferView":18267, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":18268, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18269, + "componentType":5126, + "count":548, + "max":[ + 7.779087543487549, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778796672821045, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":18270, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":18271, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":18272, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51416015625, + 22.7294979095459 + ], + "min":[ + -43.587890625, + 5.7220458984375e-05, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":18273, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":18274, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":18275, + "componentType":5126, + "count":135, + "max":[ + 2919.06103515625, + 81.212890625, + 40.60498046875 + ], + "min":[ + -2919.05810546875, + 0, + -40.60498046875 + ], + "type":"VEC3" + }, + { + "bufferView":18276, + "componentType":5126, + "count":135, + "type":"VEC3" + }, + { + "bufferView":18277, + "componentType":5126, + "count":135, + "type":"VEC2" + }, + { + "bufferView":18278, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18279, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18280, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18281, + "componentType":5126, + "count":432, + "max":[ + 6.750767230987549, + 245.5279541015625, + 6516.54052734375 + ], + "min":[ + -6.750643730163574, + 0, + -6516.54052734375 + ], + "type":"VEC3" + }, + { + "bufferView":18282, + "componentType":5126, + "count":432, + "type":"VEC3" + }, + { + "bufferView":18283, + "componentType":5126, + "count":432, + "type":"VEC2" + }, + { + "bufferView":18284, + "componentType":5126, + "count":12, + "max":[ + 8.34521484375, + 341.14453125, + 360.8974609375 + ], + "min":[ + -8.345703125, + 0.0001220703125, + -360.897216796875 + ], + "type":"VEC3" + }, + { + "bufferView":18285, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":18286, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":18287, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18288, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18289, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18290, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18291, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18292, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18293, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":18294, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18295, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18296, + "componentType":5126, + "count":46, + "max":[ + 161.97705078125, + 658.67578125, + 366.15283203125 + ], + "min":[ + -161.982421875, + 0, + -366.152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18297, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":18298, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":18299, + "componentType":5126, + "count":815, + "max":[ + 4.1318359375, + 90.58740997314453, + 34.45655059814453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":18300, + "componentType":5126, + "count":815, + "type":"VEC3" + }, + { + "bufferView":18301, + "componentType":5126, + "count":815, + "type":"VEC2" + }, + { + "bufferView":18302, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":18303, + "componentType":5126, + "count":589, + "max":[ + 151.65383911132812, + 103.22981262207031, + 157.8892822265625 + ], + "min":[ + -151.65567016601562, + -0.0001373291015625, + -157.8893585205078 + ], + "type":"VEC3" + }, + { + "bufferView":18304, + "componentType":5126, + "count":589, + "type":"VEC3" + }, + { + "bufferView":18305, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76666259765625, + 78.5859375 + ], + "min":[ + -46.2822265625, + 0, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":18306, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18307, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18308, + "componentType":5126, + "count":1378, + "max":[ + 2.9830322265625, + 52.34271240234375, + 25.690048217773438 + ], + "min":[ + -2.98004150390625, + 3.15435791015625, + -23.75457763671875 + ], + "type":"VEC3" + }, + { + "bufferView":18309, + "componentType":5126, + "count":1378, + "type":"VEC3" + }, + { + "bufferView":18310, + "componentType":5126, + "count":1378, + "type":"VEC2" + }, + { + "bufferView":18311, + "componentType":5123, + "count":4140, + "type":"SCALAR" + }, + { + "bufferView":18312, + "componentType":5126, + "count":1368, + "max":[ + 2.983306884765625, + 49.1883544921875, + 24.723236083984375 + ], + "min":[ + -2.97979736328125, + 0, + -24.721405029296875 + ], + "type":"VEC3" + }, + { + "bufferView":18313, + "componentType":5126, + "count":1368, + "type":"VEC3" + }, + { + "bufferView":18314, + "componentType":5126, + "count":1368, + "type":"VEC2" + }, + { + "bufferView":18315, + "componentType":5123, + "count":4140, + "type":"SCALAR" + }, + { + "bufferView":18316, + "componentType":5126, + "count":1378, + "max":[ + 2.9830322265625, + 52.34271240234375, + 25.690048217773438 + ], + "min":[ + -2.98004150390625, + 3.15435791015625, + -23.75457763671875 + ], + "type":"VEC3" + }, + { + "bufferView":18317, + "componentType":5126, + "count":1378, + "type":"VEC3" + }, + { + "bufferView":18318, + "componentType":5126, + "count":1378, + "type":"VEC2" + }, + { + "bufferView":18319, + "componentType":5126, + "count":1368, + "max":[ + 2.983306884765625, + 49.1883544921875, + 24.723236083984375 + ], + "min":[ + -2.97979736328125, + 0, + -24.721405029296875 + ], + "type":"VEC3" + }, + { + "bufferView":18320, + "componentType":5126, + "count":1368, + "type":"VEC3" + }, + { + "bufferView":18321, + "componentType":5126, + "count":1368, + "type":"VEC2" + }, + { + "bufferView":18322, + "componentType":5126, + "count":3073, + "max":[ + 13.876007080078125, + 43.4703369140625, + 48.59199523925781 + ], + "min":[ + -13.873626708984375, + 3.38214111328125, + -45.967742919921875 + ], + "type":"VEC3" + }, + { + "bufferView":18323, + "componentType":5126, + "count":3073, + "type":"VEC3" + }, + { + "bufferView":18324, + "componentType":5126, + "count":3073, + "type":"VEC2" + }, + { + "bufferView":18325, + "componentType":5123, + "count":14112, + "type":"SCALAR" + }, + { + "bufferView":18326, + "componentType":5126, + "count":3073, + "max":[ + 13.87432861328125, + 40.08807373046875, + 47.27940368652344 + ], + "min":[ + -13.87530517578125, + 0, + -47.28033447265625 + ], + "type":"VEC3" + }, + { + "bufferView":18327, + "componentType":5126, + "count":3073, + "type":"VEC3" + }, + { + "bufferView":18328, + "componentType":5126, + "count":3073, + "type":"VEC2" + }, + { + "bufferView":18329, + "componentType":5126, + "count":3073, + "max":[ + 13.876007080078125, + 43.4703369140625, + 48.59199523925781 + ], + "min":[ + -13.873626708984375, + 3.38214111328125, + -45.967742919921875 + ], + "type":"VEC3" + }, + { + "bufferView":18330, + "componentType":5126, + "count":3073, + "type":"VEC3" + }, + { + "bufferView":18331, + "componentType":5126, + "count":3073, + "type":"VEC2" + }, + { + "bufferView":18332, + "componentType":5126, + "count":3073, + "max":[ + 13.87432861328125, + 40.08807373046875, + 47.27940368652344 + ], + "min":[ + -13.87530517578125, + 0, + -47.28033447265625 + ], + "type":"VEC3" + }, + { + "bufferView":18333, + "componentType":5126, + "count":3073, + "type":"VEC3" + }, + { + "bufferView":18334, + "componentType":5126, + "count":3073, + "type":"VEC2" + }, + { + "bufferView":18335, + "componentType":5126, + "count":652, + "max":[ + 10.5693359375, + 127.72836303710938, + 59.24986267089844 + ], + "min":[ + -10.566192626953125, + 9.23028564453125, + -59.24822998046875 + ], + "type":"VEC3" + }, + { + "bufferView":18336, + "componentType":5126, + "count":652, + "type":"VEC3" + }, + { + "bufferView":18337, + "componentType":5126, + "count":652, + "type":"VEC2" + }, + { + "bufferView":18338, + "componentType":5123, + "count":1800, + "type":"SCALAR" + }, + { + "bufferView":18339, + "componentType":5126, + "count":646, + "max":[ + 10.566802978515625, + 118.498046875, + 59.24974060058594 + ], + "min":[ + -10.568756103515625, + 0, + -59.24835205078125 + ], + "type":"VEC3" + }, + { + "bufferView":18340, + "componentType":5126, + "count":646, + "type":"VEC3" + }, + { + "bufferView":18341, + "componentType":5126, + "count":646, + "type":"VEC2" + }, + { + "bufferView":18342, + "componentType":5123, + "count":1800, + "type":"SCALAR" + }, + { + "bufferView":18343, + "componentType":5126, + "count":918, + "max":[ + 14.538055419921875, + 127.72845458984375, + 59.2498779296875 + ], + "min":[ + -14.54144287109375, + 9.230377197265625, + -59.24821472167969 + ], + "type":"VEC3" + }, + { + "bufferView":18344, + "componentType":5126, + "count":918, + "type":"VEC3" + }, + { + "bufferView":18345, + "componentType":5126, + "count":918, + "type":"VEC2" + }, + { + "bufferView":18346, + "componentType":5123, + "count":2520, + "type":"SCALAR" + }, + { + "bufferView":18347, + "componentType":5126, + "count":910, + "max":[ + 14.538116455078125, + 118.498046875, + 59.249755859375 + ], + "min":[ + -14.541412353515625, + 0, + -59.24835205078125 + ], + "type":"VEC3" + }, + { + "bufferView":18348, + "componentType":5126, + "count":910, + "type":"VEC3" + }, + { + "bufferView":18349, + "componentType":5126, + "count":910, + "type":"VEC2" + }, + { + "bufferView":18350, + "componentType":5123, + "count":2520, + "type":"SCALAR" + }, + { + "bufferView":18351, + "componentType":5126, + "count":10576, + "max":[ + 39.582359313964844, + 201.8338623046875, + 88.99633026123047 + ], + "min":[ + -39.580745697021484, + 23.663223266601562, + -89.09780883789062 + ], + "type":"VEC3" + }, + { + "bufferView":18352, + "componentType":5126, + "count":10576, + "type":"VEC3" + }, + { + "bufferView":18353, + "componentType":5126, + "count":10576, + "type":"VEC2" + }, + { + "bufferView":18354, + "componentType":5123, + "count":61560, + "type":"SCALAR" + }, + { + "bufferView":18355, + "componentType":5126, + "count":10576, + "max":[ + 39.58056640625, + 178.17066955566406, + 89.04724884033203 + ], + "min":[ + -39.582374572753906, + 1.52587890625e-05, + -89.0471420288086 + ], + "type":"VEC3" + }, + { + "bufferView":18356, + "componentType":5126, + "count":10576, + "type":"VEC3" + }, + { + "bufferView":18357, + "componentType":5126, + "count":10576, + "type":"VEC2" + }, + { + "bufferView":18358, + "componentType":5126, + "count":10576, + "max":[ + 39.582359313964844, + 201.83384704589844, + 88.99632263183594 + ], + "min":[ + -39.580745697021484, + 23.6632080078125, + -89.09781646728516 + ], + "type":"VEC3" + }, + { + "bufferView":18359, + "componentType":5126, + "count":10576, + "type":"VEC3" + }, + { + "bufferView":18360, + "componentType":5126, + "count":10576, + "type":"VEC2" + }, + { + "bufferView":18361, + "componentType":5126, + "count":10576, + "max":[ + 39.58056640625, + 178.17063903808594, + 89.04724884033203 + ], + "min":[ + -39.582374572753906, + -1.52587890625e-05, + -89.0471420288086 + ], + "type":"VEC3" + }, + { + "bufferView":18362, + "componentType":5126, + "count":10576, + "type":"VEC3" + }, + { + "bufferView":18363, + "componentType":5126, + "count":10576, + "type":"VEC2" + }, + { + "bufferView":18364, + "componentType":5126, + "count":1127, + "max":[ + 1.06396484375, + 22.161449432373047, + 9.0330171585083 + ], + "min":[ + -1.1585693359375, + 1.3664436340332031, + -9.093647003173828 + ], + "type":"VEC3" + }, + { + "bufferView":18365, + "componentType":5126, + "count":1127, + "type":"VEC3" + }, + { + "bufferView":18366, + "componentType":5126, + "count":1127, + "type":"VEC2" + }, + { + "bufferView":18367, + "componentType":5123, + "count":6360, + "type":"SCALAR" + }, + { + "bufferView":18368, + "componentType":5126, + "count":1127, + "max":[ + 1.1115731000900269, + 20.795001983642578, + 9.063824653625488 + ], + "min":[ + -1.11090087890625, + -9.5367431640625e-07, + -9.062835693359375 + ], + "type":"VEC3" + }, + { + "bufferView":18369, + "componentType":5126, + "count":1127, + "type":"VEC3" + }, + { + "bufferView":18370, + "componentType":5126, + "count":1127, + "type":"VEC2" + }, + { + "bufferView":18371, + "componentType":5126, + "count":1127, + "max":[ + 1.06396484375, + 22.161418914794922, + 9.0330171585083 + ], + "min":[ + -1.1585693359375, + 1.3664131164550781, + -9.093647003173828 + ], + "type":"VEC3" + }, + { + "bufferView":18372, + "componentType":5126, + "count":1127, + "type":"VEC3" + }, + { + "bufferView":18373, + "componentType":5126, + "count":1127, + "type":"VEC2" + }, + { + "bufferView":18374, + "componentType":5126, + "count":1127, + "max":[ + 1.1115731000900269, + 20.795001983642578, + 9.063824653625488 + ], + "min":[ + -1.11090087890625, + -9.5367431640625e-07, + -9.062835693359375 + ], + "type":"VEC3" + }, + { + "bufferView":18375, + "componentType":5126, + "count":1127, + "type":"VEC3" + }, + { + "bufferView":18376, + "componentType":5126, + "count":1127, + "type":"VEC2" + }, + { + "bufferView":18377, + "componentType":5126, + "count":18778, + "max":[ + 46.85188293457031, + 258.18304443359375, + 129.08816528320312 + ], + "min":[ + -46.8553466796875, + 0, + -129.08682250976562 + ], + "type":"VEC3" + }, + { + "bufferView":18378, + "componentType":5126, + "count":18778, + "type":"VEC3" + }, + { + "bufferView":18379, + "componentType":5126, + "count":18778, + "type":"VEC2" + }, + { + "bufferView":18380, + "componentType":5123, + "count":44880, + "type":"SCALAR" + }, + { + "bufferView":18381, + "componentType":5126, + "count":18753, + "max":[ + 46.852020263671875, + 277.3739929199219, + 129.09017944335938 + ], + "min":[ + -46.85505676269531, + 19.190948486328125, + -129.0848388671875 + ], + "type":"VEC3" + }, + { + "bufferView":18382, + "componentType":5126, + "count":18753, + "type":"VEC3" + }, + { + "bufferView":18383, + "componentType":5126, + "count":18753, + "type":"VEC2" + }, + { + "bufferView":18384, + "componentType":5123, + "count":44880, + "type":"SCALAR" + }, + { + "bufferView":18385, + "componentType":5126, + "count":18754, + "max":[ + 46.852020263671875, + 277.37396240234375, + 129.09017944335938 + ], + "min":[ + -46.85505676269531, + 19.19091796875, + -129.0848388671875 + ], + "type":"VEC3" + }, + { + "bufferView":18386, + "componentType":5126, + "count":18754, + "type":"VEC3" + }, + { + "bufferView":18387, + "componentType":5126, + "count":18754, + "type":"VEC2" + }, + { + "bufferView":18388, + "componentType":5123, + "count":44880, + "type":"SCALAR" + }, + { + "bufferView":18389, + "componentType":5126, + "count":18778, + "max":[ + 46.85188293457031, + 258.18304443359375, + 129.08816528320312 + ], + "min":[ + -46.8553466796875, + 0, + -129.08682250976562 + ], + "type":"VEC3" + }, + { + "bufferView":18390, + "componentType":5126, + "count":18778, + "type":"VEC3" + }, + { + "bufferView":18391, + "componentType":5126, + "count":18778, + "type":"VEC2" + }, + { + "bufferView":18392, + "componentType":5126, + "count":24, + "max":[ + 2246.478759765625, + 2191.3134765625, + 987.1652221679688 + ], + "min":[ + -2246.4814453125, + 0.0001220703125, + -987.1649169921875 + ], + "type":"VEC3" + }, + { + "bufferView":18393, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18394, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":18395, + "componentType":5126, + "count":596, + "max":[ + 164.8965301513672, + 171.76266479492188, + 149.96351623535156 + ], + "min":[ + -164.89663696289062, + 1.1429519653320312, + -137.6833038330078 + ], + "type":"VEC3" + }, + { + "bufferView":18396, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":18397, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.2841796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.2841796875 + ], + "type":"VEC3" + }, + { + "bufferView":18398, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":18399, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":18400, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18401, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18402, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18403, + "componentType":5126, + "count":50, + "max":[ + 142.32080078125, + 608.220703125, + 391.73779296875 + ], + "min":[ + -142.32177734375, + 0, + -391.73779296875 + ], + "type":"VEC3" + }, + { + "bufferView":18404, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":18405, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":18406, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 463.990234375 + ], + "min":[ + -110.0000228881836, + 0, + -463.990234375 + ], + "type":"VEC3" + }, + { + "bufferView":18407, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18408, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18409, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18410, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18411, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":18412, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18413, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18414, + "componentType":5126, + "count":326, + "max":[ + 170.9052734375, + 157.003662109375, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":18415, + "componentType":5126, + "count":326, + "type":"VEC3" + }, + { + "bufferView":18416, + "componentType":5126, + "count":326, + "type":"VEC2" + }, + { + "bufferView":18417, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":18418, + "componentType":5126, + "count":348, + "max":[ + 170.435546875, + 188.5546875, + 176.2041015625 + ], + "min":[ + -170.4345703125, + 45.296875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":18419, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":18420, + "componentType":5126, + "count":348, + "type":"VEC2" + }, + { + "bufferView":18421, + "componentType":5126, + "count":117, + "max":[ + 31.290630340576172, + 15.511119842529297, + 6.1124725341796875 + ], + "min":[ + -31.290611267089844, + 4.1484832763671875e-05, + -6.1118927001953125 + ], + "type":"VEC3" + }, + { + "bufferView":18422, + "componentType":5126, + "count":117, + "type":"VEC3" + }, + { + "bufferView":18423, + "componentType":5126, + "count":117, + "type":"VEC2" + }, + { + "bufferView":18424, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":18425, + "componentType":5126, + "count":586, + "max":[ + 159.70298767089844, + 107.06523132324219, + 166.29798889160156 + ], + "min":[ + -159.70166015625, + 0, + -166.29811096191406 + ], + "type":"VEC3" + }, + { + "bufferView":18426, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":18427, + "componentType":5126, + "count":548, + "max":[ + 7.778931140899658, + 21.312030792236328, + 10.655908584594727 + ], + "min":[ + -7.778943061828613, + 0.00021648406982421875, + -10.65590763092041 + ], + "type":"VEC3" + }, + { + "bufferView":18428, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":18429, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":18430, + "componentType":5126, + "count":576, + "max":[ + 191.5255126953125, + 196.87759399414062, + 166.8836212158203 + ], + "min":[ + -191.5229949951172, + 0.00011444091796875, + -166.88369750976562 + ], + "type":"VEC3" + }, + { + "bufferView":18431, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":18432, + "componentType":5126, + "count":260, + "max":[ + 3.4517245292663574, + 18.945335388183594, + 9.472704887390137 + ], + "min":[ + -3.4518513679504395, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":18433, + "componentType":5126, + "count":260, + "type":"VEC3" + }, + { + "bufferView":18434, + "componentType":5126, + "count":260, + "type":"VEC2" + }, + { + "bufferView":18435, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18436, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18437, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18438, + "componentType":5126, + "count":6522, + "max":[ + 128.06065368652344, + 193.06546020507812, + 128.0606231689453 + ], + "min":[ + -128.06063842773438, + -0.00017547607421875, + -128.06065368652344 + ], + "type":"VEC3" + }, + { + "bufferView":18439, + "componentType":5126, + "count":6522, + "type":"VEC3" + }, + { + "bufferView":18440, + "componentType":5126, + "count":6522, + "type":"VEC2" + }, + { + "bufferView":18441, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18442, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18443, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18444, + "componentType":5126, + "count":791, + "max":[ + 4.1318359375, + 90.58740997314453, + 34.45752716064453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45606231689453 + ], + "type":"VEC3" + }, + { + "bufferView":18445, + "componentType":5126, + "count":791, + "type":"VEC3" + }, + { + "bufferView":18446, + "componentType":5126, + "count":791, + "type":"VEC2" + }, + { + "bufferView":18447, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":18448, + "componentType":5126, + "count":49, + "max":[ + 391.7373046875, + 625.6328125, + 127.44482421875 + ], + "min":[ + -391.73828125, + 0, + -127.4423828125 + ], + "type":"VEC3" + }, + { + "bufferView":18449, + "componentType":5126, + "count":49, + "type":"VEC3" + }, + { + "bufferView":18450, + "componentType":5126, + "count":49, + "type":"VEC2" + }, + { + "bufferView":18451, + "componentType":5126, + "count":488, + "max":[ + 879.6591796875, + 587.0332641601562, + 879.6616821289062 + ], + "min":[ + -879.6591796875, + 3.0517578125e-05, + -879.6587524414062 + ], + "type":"VEC3" + }, + { + "bufferView":18452, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":18453, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":18454, + "componentType":5126, + "count":548, + "max":[ + 7.779110908508301, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778773307800293, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":18455, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":18456, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":18457, + "componentType":5126, + "count":580, + "max":[ + 196.22201538085938, + 125.82342529296875, + 204.45651245117188 + ], + "min":[ + -196.22189331054688, + 0.000152587890625, + -204.45687866210938 + ], + "type":"VEC3" + }, + { + "bufferView":18458, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":18459, + "componentType":5126, + "count":1420, + "max":[ + 245.232421875, + 367.92938232421875, + 384.1394348144531 + ], + "min":[ + -245.234375, + 0.0001068115234375, + -384.1411437988281 + ], + "type":"VEC3" + }, + { + "bufferView":18460, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":18461, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":18462, + "componentType":5126, + "count":576, + "max":[ + 190.5523681640625, + 229.04904174804688, + 174.23455810546875 + ], + "min":[ + -190.55018615722656, + 6.103515625e-05, + -174.23452758789062 + ], + "type":"VEC3" + }, + { + "bufferView":18463, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":18464, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18465, + "componentType":5126, + "count":76, + "max":[ + 278.8669738769531, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8664245605469, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":18466, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":18467, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":18468, + "componentType":5126, + "count":586, + "max":[ + 199.5164794921875, + 127.7911605834961, + 207.8981475830078 + ], + "min":[ + -199.51507568359375, + -9.1552734375e-05, + -207.89852905273438 + ], + "type":"VEC3" + }, + { + "bufferView":18469, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":18470, + "componentType":5126, + "count":162, + "max":[ + 22.7294921875, + 64.23062133789062, + 543.3623046875 + ], + "min":[ + -22.7294921875, + 9.5367431640625e-05, + -543.3623046875 + ], + "type":"VEC3" + }, + { + "bufferView":18471, + "componentType":5126, + "count":162, + "type":"VEC3" + }, + { + "bufferView":18472, + "componentType":5126, + "count":162, + "type":"VEC2" + }, + { + "bufferView":18473, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68743896484375 + ], + "min":[ + -15.4755859375, + 0, + -381.68572998046875 + ], + "type":"VEC3" + }, + { + "bufferView":18474, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18475, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18476, + "componentType":5126, + "count":570, + "max":[ + 325.56951904296875, + 210.5471954345703, + 325.56951904296875 + ], + "min":[ + -325.56951904296875, + 0, + -325.56951904296875 + ], + "type":"VEC3" + }, + { + "bufferView":18477, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":18478, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18479, + "componentType":5126, + "count":340, + "max":[ + 45.856773376464844, + 228.16909790039062, + 115.62029266357422 + ], + "min":[ + -45.858154296875, + -7.62939453125e-05, + -115.62040710449219 + ], + "type":"VEC3" + }, + { + "bufferView":18480, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":18481, + "componentType":5126, + "count":584, + "max":[ + 180.31166076660156, + 185.82171630859375, + 157.174072265625 + ], + "min":[ + -180.3135223388672, + 0.0001678466796875, + -157.17410278320312 + ], + "type":"VEC3" + }, + { + "bufferView":18482, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":18483, + "componentType":5126, + "count":76, + "max":[ + 279.0987243652344, + 3543.081787109375, + 278.8664855957031 + ], + "min":[ + -279.1011047363281, + 0, + -278.86700439453125 + ], + "type":"VEC3" + }, + { + "bufferView":18484, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":18485, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":18486, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18487, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18488, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18489, + "componentType":5126, + "count":7991, + "max":[ + 496.1484375, + 429.9638671875, + 103.787109375 + ], + "min":[ + -496.148681640625, + 0, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":18490, + "componentType":5126, + "count":7991, + "type":"VEC3" + }, + { + "bufferView":18491, + "componentType":5126, + "count":7991, + "type":"VEC2" + }, + { + "bufferView":18492, + "componentType":5126, + "count":584, + "max":[ + 174.70492553710938, + 181.50741577148438, + 146.17868041992188 + ], + "min":[ + -174.70864868164062, + 1.213897705078125, + -158.45997619628906 + ], + "type":"VEC3" + }, + { + "bufferView":18493, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":18494, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18495, + "componentType":5126, + "count":60, + "max":[ + 3.7875146865844727, + 13.693550109863281, + 6.472888469696045 + ], + "min":[ + -3.7875587940216064, + -2.9292161343619227e-05, + -6.472880840301514 + ], + "type":"VEC3" + }, + { + "bufferView":18496, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":18497, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":18498, + "componentType":5126, + "count":139, + "max":[ + 80.151611328125, + 126.6884765625, + 49.03564453125 + ], + "min":[ + -80.154541015625, + 0, + -49.03466796875 + ], + "type":"VEC3" + }, + { + "bufferView":18499, + "componentType":5126, + "count":139, + "type":"VEC3" + }, + { + "bufferView":18500, + "componentType":5126, + "count":139, + "type":"VEC2" + }, + { + "bufferView":18501, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":18502, + "componentType":5126, + "count":584, + "max":[ + 173.30691528320312, + 178.91180419921875, + 151.10560607910156 + ], + "min":[ + -173.3037109375, + 0.00023651123046875, + -151.10565185546875 + ], + "type":"VEC3" + }, + { + "bufferView":18503, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":18504, + "componentType":5126, + "count":819, + "max":[ + 4.1328125, + 90.58753204345703, + 34.45703887939453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":18505, + "componentType":5126, + "count":819, + "type":"VEC3" + }, + { + "bufferView":18506, + "componentType":5126, + "count":819, + "type":"VEC2" + }, + { + "bufferView":18507, + "componentType":5126, + "count":136, + "max":[ + 242.85546875, + 131.9609375, + 239.7059326171875 + ], + "min":[ + -242.8486328125, + 0, + -239.7059326171875 + ], + "type":"VEC3" + }, + { + "bufferView":18508, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":18509, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":18510, + "componentType":5126, + "count":582, + "max":[ + 198.53025817871094, + 205.17303466796875, + 179.09280395507812 + ], + "min":[ + -198.53277587890625, + 1.3855972290039062, + -166.8114013671875 + ], + "type":"VEC3" + }, + { + "bufferView":18511, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":18512, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18513, + "componentType":5126, + "count":60, + "max":[ + 3.7874035835266113, + 13.693792343139648, + 6.472907543182373 + ], + "min":[ + -3.7876627445220947, + 0.00021409988403320312, + -6.4728617668151855 + ], + "type":"VEC3" + }, + { + "bufferView":18514, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":18515, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":18516, + "componentType":5126, + "count":4, + "max":[ + 0, + 2586.479248046875, + 698.885986328125 + ], + "min":[ + 0, + 0, + -698.8828125 + ], + "type":"VEC3" + }, + { + "bufferView":18517, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18518, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18519, + "componentType":5126, + "count":1660, + "max":[ + 433.12109375, + 367.929443359375, + 90.00634765625 + ], + "min":[ + -433.119140625, + 0, + -90.0034408569336 + ], + "type":"VEC3" + }, + { + "bufferView":18520, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":18521, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":18522, + "componentType":5126, + "count":340, + "max":[ + 139.86639404296875, + 178.644775390625, + 131.32904052734375 + ], + "min":[ + -139.86773681640625, + 0, + -131.3286590576172 + ], + "type":"VEC3" + }, + { + "bufferView":18523, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":18524, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":18525, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":18526, + "componentType":5126, + "count":24, + "max":[ + 110.00022888183594, + 50.00010681152344, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 7.482406363124028e-05, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":18527, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18528, + "componentType":5126, + "count":590, + "max":[ + 163.7275848388672, + 108.98304748535156, + 170.50245666503906 + ], + "min":[ + -163.7246551513672, + 1.52587890625e-05, + -170.50238037109375 + ], + "type":"VEC3" + }, + { + "bufferView":18529, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":18530, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18531, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18532, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18533, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18534, + "componentType":5126, + "count":648, + "max":[ + 615.01123046875, + 2510.92529296875, + 347.26611328125 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.265625 + ], + "type":"VEC3" + }, + { + "bufferView":18535, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":18536, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":18537, + "componentType":5126, + "count":592, + "max":[ + 176.10647583007812, + 182.89947509765625, + 159.6731414794922 + ], + "min":[ + -176.10997009277344, + 1.2238845825195312, + -147.392822265625 + ], + "type":"VEC3" + }, + { + "bufferView":18538, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":18539, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18540, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18541, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18542, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18543, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18544, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18545, + "componentType":5126, + "count":96, + "max":[ + 820.9476318359375, + 205.17288208007812, + 73.47864532470703 + ], + "min":[ + -820.9443359375, + 7.62939453125e-06, + -73.4786376953125 + ], + "type":"VEC3" + }, + { + "bufferView":18546, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":18547, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.07373046875 + ], + "type":"VEC3" + }, + { + "bufferView":18548, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18549, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18550, + "componentType":5126, + "count":2718, + "max":[ + 128.19970703125, + 421.52587890625, + 128.199462890625 + ], + "min":[ + -128.19921875, + 0, + -128.198974609375 + ], + "type":"VEC3" + }, + { + "bufferView":18551, + "componentType":5126, + "count":2718, + "type":"VEC3" + }, + { + "bufferView":18552, + "componentType":5126, + "count":2718, + "type":"VEC2" + }, + { + "bufferView":18553, + "componentType":5123, + "count":4800, + "type":"SCALAR" + }, + { + "bufferView":18554, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18555, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18556, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18557, + "componentType":5126, + "count":1660, + "max":[ + 433.12109375, + 367.929443359375, + 90.004150390625 + ], + "min":[ + -433.119140625, + 0, + -90.0056381225586 + ], + "type":"VEC3" + }, + { + "bufferView":18558, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":18559, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":18560, + "componentType":5126, + "count":760, + "max":[ + 136.37388610839844, + 173.82730102539062, + 128.91494750976562 + ], + "min":[ + -136.373779296875, + -5.340576171875e-05, + -128.9150390625 + ], + "type":"VEC3" + }, + { + "bufferView":18561, + "componentType":5126, + "count":760, + "type":"VEC3" + }, + { + "bufferView":18562, + "componentType":5123, + "count":1332, + "type":"SCALAR" + }, + { + "bufferView":18563, + "componentType":5126, + "count":60, + "max":[ + 3.7875146865844727, + 13.693550109863281, + 6.472888469696045 + ], + "min":[ + -3.7875587940216064, + -2.9292161343619227e-05, + -6.472880840301514 + ], + "type":"VEC3" + }, + { + "bufferView":18564, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":18565, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":18566, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":18567, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18568, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18569, + "componentType":5126, + "count":98, + "max":[ + 1.4143263101577759, + 10.517534255981445, + 5.258735656738281 + ], + "min":[ + -1.4143048524856567, + 6.008148193359375e-05, + -5.258738040924072 + ], + "type":"VEC3" + }, + { + "bufferView":18570, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":18571, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":18572, + "componentType":5126, + "count":60, + "max":[ + 3.742408514022827, + 13.000020027160645, + 3.7875118255615234 + ], + "min":[ + -3.742426633834839, + -2.3113885617931373e-05, + -3.7875590324401855 + ], + "type":"VEC3" + }, + { + "bufferView":18573, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":18574, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":18575, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18576, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18577, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18578, + "componentType":5126, + "count":12, + "max":[ + 10.2607421875, + 419.39959716796875, + 443.6836242675781 + ], + "min":[ + -10.259765625, + 0.0001678466796875, + -443.6855773925781 + ], + "type":"VEC3" + }, + { + "bufferView":18579, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":18580, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":18581, + "componentType":5126, + "count":574, + "max":[ + 140.92559814453125, + 98.11587524414062, + 146.67767333984375 + ], + "min":[ + -140.923828125, + -0.0002288818359375, + -146.6776885986328 + ], + "type":"VEC3" + }, + { + "bufferView":18582, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":18583, + "componentType":5126, + "count":349, + "max":[ + 170.4345703125, + 188.5556640625, + 176.2041015625 + ], + "min":[ + -170.4345703125, + 45.29638671875, + -176.203125 + ], + "type":"VEC3" + }, + { + "bufferView":18584, + "componentType":5126, + "count":349, + "type":"VEC3" + }, + { + "bufferView":18585, + "componentType":5126, + "count":349, + "type":"VEC2" + }, + { + "bufferView":18586, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":18587, + "componentType":5126, + "count":690, + "max":[ + 1091.2265625, + 286.94140625, + 96.4296646118164 + ], + "min":[ + -1091.2265625, + -1.52587890625e-05, + -96.43164825439453 + ], + "type":"VEC3" + }, + { + "bufferView":18588, + "componentType":5126, + "count":690, + "type":"VEC3" + }, + { + "bufferView":18589, + "componentType":5126, + "count":690, + "type":"VEC2" + }, + { + "bufferView":18590, + "componentType":5123, + "count":690, + "type":"SCALAR" + }, + { + "bufferView":18591, + "componentType":5126, + "count":4, + "max":[ + 161.0859375, + 904.087158203125, + 1.2161650374764577e-05 + ], + "min":[ + -161.0859375, + 0, + -1.2161650374764577e-05 + ], + "type":"VEC3" + }, + { + "bufferView":18592, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18593, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18594, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + 0.000118255615234375, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":18595, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":18596, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":18597, + "componentType":5126, + "count":578, + "max":[ + 160.69309997558594, + 167.58648681640625, + 134.04176330566406 + ], + "min":[ + -160.69134521484375, + 1.1128616333007812, + -146.32293701171875 + ], + "type":"VEC3" + }, + { + "bufferView":18598, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":18599, + "componentType":5126, + "count":76, + "max":[ + 278.8669738769531, + 3543.081787109375, + 279.09869384765625 + ], + "min":[ + -278.8664245605469, + 0, + -279.10107421875 + ], + "type":"VEC3" + }, + { + "bufferView":18600, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":18601, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":18602, + "componentType":5126, + "count":353, + "max":[ + 170.4345703125, + 188.55419921875, + 176.20361328125 + ], + "min":[ + -170.4345703125, + 45.29638671875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":18603, + "componentType":5126, + "count":353, + "type":"VEC3" + }, + { + "bufferView":18604, + "componentType":5126, + "count":353, + "type":"VEC2" + }, + { + "bufferView":18605, + "componentType":5126, + "count":578, + "max":[ + 206.177734375, + 211.3273468017578, + 179.5736846923828 + ], + "min":[ + -206.17726135253906, + 1.52587890625e-05, + -179.57379150390625 + ], + "type":"VEC3" + }, + { + "bufferView":18606, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":18607, + "componentType":5126, + "count":193, + "max":[ + 22.7294921875, + 2370.382568359375, + 32.115028381347656 + ], + "min":[ + -22.7294921875, + 0, + -32.116004943847656 + ], + "type":"VEC3" + }, + { + "bufferView":18608, + "componentType":5126, + "count":193, + "type":"VEC3" + }, + { + "bufferView":18609, + "componentType":5126, + "count":193, + "type":"VEC2" + }, + { + "bufferView":18610, + "componentType":5123, + "count":336, + "type":"SCALAR" + }, + { + "bufferView":18611, + "componentType":5126, + "count":578, + "max":[ + 209.62005615234375, + 216.1865234375, + 188.6944580078125 + ], + "min":[ + -209.6181640625, + 1.4654083251953125, + -176.41403198242188 + ], + "type":"VEC3" + }, + { + "bufferView":18612, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":18613, + "componentType":5126, + "count":694, + "max":[ + 1091.228515625, + 286.94140625, + 86.86620330810547 + ], + "min":[ + -1091.224609375, + 1.52587890625e-05, + -86.86327362060547 + ], + "type":"VEC3" + }, + { + "bufferView":18614, + "componentType":5126, + "count":694, + "type":"VEC3" + }, + { + "bufferView":18615, + "componentType":5126, + "count":694, + "type":"VEC2" + }, + { + "bufferView":18616, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":18617, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18618, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18619, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68670654296875 + ], + "min":[ + -15.4755859375, + 0, + -381.68621826171875 + ], + "type":"VEC3" + }, + { + "bufferView":18620, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18621, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18622, + "componentType":5126, + "count":560, + "max":[ + 2696.006591796875, + 150, + 2696.006591796875 + ], + "min":[ + -2696.006591796875, + 0, + -2696.006591796875 + ], + "type":"VEC3" + }, + { + "bufferView":18623, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":18624, + "componentType":5126, + "count":560, + "type":"VEC2" + }, + { + "bufferView":18625, + "componentType":5123, + "count":1632, + "type":"SCALAR" + }, + { + "bufferView":18626, + "componentType":5126, + "count":586, + "max":[ + 161.0426483154297, + 194.65966796875, + 147.3288116455078 + ], + "min":[ + -161.0444793701172, + 0.00020599365234375, + -147.32919311523438 + ], + "type":"VEC3" + }, + { + "bufferView":18627, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":18628, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18629, + "componentType":5126, + "count":576, + "max":[ + 150.7314453125, + 218.8985595703125, + 135.2484130859375 + ], + "min":[ + -157.94313049316406, + 32.054840087890625, + -147.179931640625 + ], + "type":"VEC3" + }, + { + "bufferView":18630, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":18631, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18632, + "componentType":5126, + "count":24, + "max":[ + 13.6923828125, + 34.440673828125, + 2314.281005859375 + ], + "min":[ + -13.6923828125, + -6.103515625e-05, + -2314.28076171875 + ], + "type":"VEC3" + }, + { + "bufferView":18633, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18634, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18635, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92938232421875, + 384.1406555175781 + ], + "min":[ + -245.2333984375, + 0.0001678466796875, + -384.1396789550781 + ], + "type":"VEC3" + }, + { + "bufferView":18636, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":18637, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":18638, + "componentType":5126, + "count":586, + "max":[ + 199.5164794921875, + 127.7911605834961, + 207.8981475830078 + ], + "min":[ + -199.51507568359375, + -9.1552734375e-05, + -207.89852905273438 + ], + "type":"VEC3" + }, + { + "bufferView":18639, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":18640, + "componentType":5126, + "count":1810, + "max":[ + 91.37369537353516, + 182.74732971191406, + 6.498554229736328 + ], + "min":[ + -91.37360382080078, + 1.52587890625e-05, + -6.498502731323242 + ], + "type":"VEC3" + }, + { + "bufferView":18641, + "componentType":5126, + "count":1810, + "type":"VEC3" + }, + { + "bufferView":18642, + "componentType":5126, + "count":1810, + "type":"VEC2" + }, + { + "bufferView":18643, + "componentType":5126, + "count":250, + "max":[ + 169.1015625, + 188.23828125, + 173.28125 + ], + "min":[ + -169.1015625, + 0, + -173.28173828125 + ], + "type":"VEC3" + }, + { + "bufferView":18644, + "componentType":5126, + "count":250, + "type":"VEC3" + }, + { + "bufferView":18645, + "componentType":5126, + "count":250, + "type":"VEC2" + }, + { + "bufferView":18646, + "componentType":5126, + "count":56, + "max":[ + 238.478515625, + 483.897705078125, + 30.0010986328125 + ], + "min":[ + -238.4794921875, + 0, + -29.9993896484375 + ], + "type":"VEC3" + }, + { + "bufferView":18647, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":18648, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":18649, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18650, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18651, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18652, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":18653, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":18654, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":18655, + "componentType":5126, + "count":687, + "max":[ + 150.83139038085938, + 239.3956298828125, + 147.66812133789062 + ], + "min":[ + -150.83389282226562, + -4.57763671875e-05, + -147.66864013671875 + ], + "type":"VEC3" + }, + { + "bufferView":18656, + "componentType":5126, + "count":687, + "type":"VEC3" + }, + { + "bufferView":18657, + "componentType":5126, + "count":104, + "max":[ + 1192.81396484375, + 3260.187255859375, + 2788.340087890625 + ], + "min":[ + -1192.81640625, + 4.57763671875e-05, + -2788.3408203125 + ], + "type":"VEC3" + }, + { + "bufferView":18658, + "componentType":5126, + "count":104, + "type":"VEC3" + }, + { + "bufferView":18659, + "componentType":5126, + "count":104, + "type":"VEC2" + }, + { + "bufferView":18660, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":18661, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":18662, + "componentType":5126, + "count":351, + "max":[ + 170.904296875, + 157.00439453125, + 177.25439453125 + ], + "min":[ + -170.90625, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":18663, + "componentType":5126, + "count":351, + "type":"VEC3" + }, + { + "bufferView":18664, + "componentType":5126, + "count":351, + "type":"VEC2" + }, + { + "bufferView":18665, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":18666, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":18667, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18668, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18669, + "componentType":5126, + "count":1051, + "max":[ + 125.22607421875, + 76.19921875, + 90.1090087890625 + ], + "min":[ + -125.22607421875, + 0, + -90.109130859375 + ], + "type":"VEC3" + }, + { + "bufferView":18670, + "componentType":5126, + "count":1051, + "type":"VEC3" + }, + { + "bufferView":18671, + "componentType":5126, + "count":1051, + "type":"VEC2" + }, + { + "bufferView":18672, + "componentType":5126, + "count":596, + "max":[ + 162.38604736328125, + 196.222412109375, + 148.55226135253906 + ], + "min":[ + -162.3836212158203, + -0.000213623046875, + -148.55191040039062 + ], + "type":"VEC3" + }, + { + "bufferView":18673, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":18674, + "componentType":5126, + "count":7793, + "max":[ + 103.786865234375, + 427.46484375, + 496.30810546875 + ], + "min":[ + -103.7867431640625, + 0, + -496.30517578125 + ], + "type":"VEC3" + }, + { + "bufferView":18675, + "componentType":5126, + "count":7793, + "type":"VEC3" + }, + { + "bufferView":18676, + "componentType":5126, + "count":7793, + "type":"VEC2" + }, + { + "bufferView":18677, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":18678, + "componentType":5126, + "count":574, + "max":[ + 140.92559814453125, + 98.11587524414062, + 146.67767333984375 + ], + "min":[ + -140.923828125, + -0.0002288818359375, + -146.6776885986328 + ], + "type":"VEC3" + }, + { + "bufferView":18679, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":18680, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18681, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18682, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18683, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18684, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18685, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18686, + "componentType":5126, + "count":548, + "max":[ + 7.779087543487549, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778796672821045, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":18687, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":18688, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":18689, + "componentType":5126, + "count":582, + "max":[ + 198.53025817871094, + 205.1730499267578, + 179.09231567382812 + ], + "min":[ + -198.53277587890625, + 1.3856048583984375, + -166.8118896484375 + ], + "type":"VEC3" + }, + { + "bufferView":18690, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":18691, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51416015625, + 22.7294979095459 + ], + "min":[ + -43.587890625, + 0.000118255615234375, + -22.726200103759766 + ], + "type":"VEC3" + }, + { + "bufferView":18692, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":18693, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":18694, + "componentType":5126, + "count":672, + "max":[ + 6.751345634460449, + 2490.57568359375, + 7014.0732421875 + ], + "min":[ + -6.751345634460449, + 0, + -7014.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":18695, + "componentType":5126, + "count":672, + "type":"VEC3" + }, + { + "bufferView":18696, + "componentType":5126, + "count":672, + "type":"VEC2" + }, + { + "bufferView":18697, + "componentType":5126, + "count":72, + "max":[ + 771.3452758789062, + 1492.539794921875, + 22.500139236450195 + ], + "min":[ + -771.345703125, + 0, + -22.500242233276367 + ], + "type":"VEC3" + }, + { + "bufferView":18698, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":18699, + "componentType":5126, + "count":168, + "max":[ + 29.924560546875, + 1132.8153076171875, + 29.9249267578125 + ], + "min":[ + -29.92431640625, + 0, + -29.9241943359375 + ], + "type":"VEC3" + }, + { + "bufferView":18700, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":18701, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":18702, + "componentType":5126, + "count":192, + "max":[ + 1200.74609375, + 3214.572998046875, + 5340.66455078125 + ], + "min":[ + -1200.7451171875, + 0, + -5340.6669921875 + ], + "type":"VEC3" + }, + { + "bufferView":18703, + "componentType":5126, + "count":192, + "type":"VEC3" + }, + { + "bufferView":18704, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":18705, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18706, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18707, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18708, + "componentType":5126, + "count":76, + "max":[ + 279.1010437011719, + 3543.081787109375, + 278.8670349121094 + ], + "min":[ + -279.0986328125, + 0, + -278.8664245605469 + ], + "type":"VEC3" + }, + { + "bufferView":18709, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":18710, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":18711, + "componentType":5126, + "count":592, + "max":[ + 167.6999969482422, + 173.38357543945312, + 146.25083923339844 + ], + "min":[ + -167.6990203857422, + 4.57763671875e-05, + -146.2508544921875 + ], + "type":"VEC3" + }, + { + "bufferView":18712, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":18713, + "componentType":5126, + "count":186, + "max":[ + 43.58984375, + 61.51416015625, + 22.7259578704834 + ], + "min":[ + -43.58984375, + -3.814697265625e-06, + -22.729740142822266 + ], + "type":"VEC3" + }, + { + "bufferView":18714, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":18715, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":18716, + "componentType":5126, + "count":296, + "max":[ + 1.9772073030471802, + 36.3969841003418, + 18.198516845703125 + ], + "min":[ + -1.9772001504898071, + -7.62939453125e-06, + -18.198471069335938 + ], + "type":"VEC3" + }, + { + "bufferView":18717, + "componentType":5126, + "count":296, + "type":"VEC3" + }, + { + "bufferView":18718, + "componentType":5126, + "count":296, + "type":"VEC2" + }, + { + "bufferView":18719, + "componentType":5126, + "count":146, + "max":[ + 43.591796875, + 61.51416015625, + 22.7259578704834 + ], + "min":[ + -43.587890625, + 5.7220458984375e-05, + -22.729740142822266 + ], + "type":"VEC3" + }, + { + "bufferView":18720, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":18721, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":18722, + "componentType":5126, + "count":50, + "max":[ + 142.32275390625, + 608.220703125, + 391.73779296875 + ], + "min":[ + -142.31982421875, + 0, + -391.73779296875 + ], + "type":"VEC3" + }, + { + "bufferView":18723, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":18724, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":18725, + "componentType":5126, + "count":1810, + "max":[ + 91.37369537353516, + 182.74732971191406, + 6.498554229736328 + ], + "min":[ + -91.37360382080078, + 1.52587890625e-05, + -6.498502731323242 + ], + "type":"VEC3" + }, + { + "bufferView":18726, + "componentType":5126, + "count":1810, + "type":"VEC3" + }, + { + "bufferView":18727, + "componentType":5126, + "count":1810, + "type":"VEC2" + }, + { + "bufferView":18728, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76666259765625, + 78.5859375 + ], + "min":[ + -46.2822265625, + 0, + -78.58447265625 + ], + "type":"VEC3" + }, + { + "bufferView":18729, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18730, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18731, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18732, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18733, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18734, + "componentType":5126, + "count":574, + "max":[ + 163.4947967529297, + 170.37051391601562, + 148.75033569335938 + ], + "min":[ + -163.4954833984375, + 1.13299560546875, + -136.4691162109375 + ], + "type":"VEC3" + }, + { + "bufferView":18735, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":18736, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18737, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18738, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18739, + "componentType":5126, + "count":118, + "max":[ + 31.293136596679688, + 15.511151313781738, + 6.50274658203125 + ], + "min":[ + -31.293140411376953, + -6.29425048828125e-05, + -6.5023345947265625 + ], + "type":"VEC3" + }, + { + "bufferView":18740, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":18741, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":18742, + "componentType":5126, + "count":50, + "max":[ + 142.32080078125, + 608.220703125, + 391.73681640625 + ], + "min":[ + -142.32177734375, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":18743, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":18744, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":18745, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 463.990234375 + ], + "min":[ + -110.0000228881836, + 0, + -463.990234375 + ], + "type":"VEC3" + }, + { + "bufferView":18746, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18747, + "componentType":5126, + "count":227, + "max":[ + 7.85205078125, + 248.992431640625, + 53.2841796875 + ], + "min":[ + -7.853515625, + 0.0001220703125, + -53.28515625 + ], + "type":"VEC3" + }, + { + "bufferView":18748, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":18749, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":18750, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18751, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18752, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18753, + "componentType":5126, + "count":583, + "max":[ + 165.48817443847656, + 239.1734619140625, + 148.70101928710938 + ], + "min":[ + -172.69406127929688, + 35.13507080078125, + -160.63290405273438 + ], + "type":"VEC3" + }, + { + "bufferView":18754, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":18755, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.0733642578125 + ], + "min":[ + -27.193359375, + 0, + -126.07333374023438 + ], + "type":"VEC3" + }, + { + "bufferView":18756, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18757, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18758, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":18759, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18760, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18761, + "componentType":5126, + "count":588, + "max":[ + 161.46363830566406, + 233.64410400390625, + 145.03192138671875 + ], + "min":[ + -168.67111206054688, + 34.295196533203125, + -156.9640655517578 + ], + "type":"VEC3" + }, + { + "bufferView":18762, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":18763, + "componentType":5126, + "count":580, + "max":[ + 199.51507568359375, + 239.49659729003906, + 182.4082489013672 + ], + "min":[ + -199.51644897460938, + 1.52587890625e-05, + -182.40870666503906 + ], + "type":"VEC3" + }, + { + "bufferView":18764, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":18765, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18766, + "componentType":5126, + "count":96, + "max":[ + 367.24530029296875, + 70.2738037109375, + 704.2724609375 + ], + "min":[ + -367.2463684082031, + 0.0001220703125, + -704.2720947265625 + ], + "type":"VEC3" + }, + { + "bufferView":18767, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":18768, + "componentType":5126, + "count":132, + "max":[ + 40.60595703125, + 81.2099609375, + 7759.267578125 + ], + "min":[ + -40.60546875, + 0, + -7759.26904296875 + ], + "type":"VEC3" + }, + { + "bufferView":18769, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":18770, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":18771, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":18772, + "componentType":5126, + "count":224, + "max":[ + 147.0633544921875, + 324.15997314453125, + 130.98719787597656 + ], + "min":[ + -146.3017578125, + 43.13194274902344, + -131.3737030029297 + ], + "type":"VEC3" + }, + { + "bufferView":18773, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":18774, + "componentType":5126, + "count":336, + "max":[ + 13.560531616210938, + 230.7025146484375, + 115.35121154785156 + ], + "min":[ + -13.560829162597656, + 2.288818359375e-05, + -115.35124969482422 + ], + "type":"VEC3" + }, + { + "bufferView":18775, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":18776, + "componentType":5126, + "count":344, + "max":[ + 170.435546875, + 188.5546875, + 176.20361328125 + ], + "min":[ + -170.43359375, + 45.296875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":18777, + "componentType":5126, + "count":344, + "type":"VEC3" + }, + { + "bufferView":18778, + "componentType":5126, + "count":344, + "type":"VEC2" + }, + { + "bufferView":18779, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":18780, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":18781, + "componentType":5126, + "count":548, + "max":[ + 7.778931140899658, + 21.312030792236328, + 10.655908584594727 + ], + "min":[ + -7.778943061828613, + 0.00021648406982421875, + -10.65590763092041 + ], + "type":"VEC3" + }, + { + "bufferView":18782, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":18783, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":18784, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18785, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18786, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18787, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":18788, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18789, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18790, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18791, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18792, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18793, + "componentType":5126, + "count":48, + "max":[ + 366.15283203125, + 696.755859375, + 123.615234375 + ], + "min":[ + -366.15234375, + 0, + -123.61328125 + ], + "type":"VEC3" + }, + { + "bufferView":18794, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":18795, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":18796, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92938232421875, + 384.1391906738281 + ], + "min":[ + -245.2333984375, + 0.0001068115234375, + -384.1406555175781 + ], + "type":"VEC3" + }, + { + "bufferView":18797, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":18798, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":18799, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":18800, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":18801, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":18802, + "componentType":5126, + "count":125, + "max":[ + 3.8607194423675537, + 15.442765235900879, + 7.721343517303467 + ], + "min":[ + -3.8606269359588623, + 8.296966552734375e-05, + -7.721337795257568 + ], + "type":"VEC3" + }, + { + "bufferView":18803, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":18804, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":18805, + "componentType":5126, + "count":582, + "max":[ + 185.91859436035156, + 32.82526779174805, + 185.91830444335938 + ], + "min":[ + -185.9182586669922, + 6.866455078125e-05, + -185.9185333251953 + ], + "type":"VEC3" + }, + { + "bufferView":18806, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":18807, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92938232421875, + 384.5810852050781 + ], + "min":[ + -244.466796875, + 4.57763671875e-05, + -384.5781555175781 + ], + "type":"VEC3" + }, + { + "bufferView":18808, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":18809, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":18810, + "componentType":5126, + "count":570, + "max":[ + 188.72206115722656, + 195.42843627929688, + 170.596435546875 + ], + "min":[ + -188.72061157226562, + 1.314910888671875, + -158.31605529785156 + ], + "type":"VEC3" + }, + { + "bufferView":18811, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":18812, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18813, + "componentType":5126, + "count":338, + "max":[ + 13.560539245605469, + 230.17282104492188, + 115.08641815185547 + ], + "min":[ + -13.560836791992188, + -5.340576171875e-05, + -115.08650207519531 + ], + "type":"VEC3" + }, + { + "bufferView":18814, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":18815, + "componentType":5123, + "count":660, + "type":"SCALAR" + }, + { + "bufferView":18816, + "componentType":5126, + "count":586, + "max":[ + 185.1880340576172, + 119.22972106933594, + 192.92555236816406 + ], + "min":[ + -185.18443298339844, + -4.57763671875e-05, + -192.9258575439453 + ], + "type":"VEC3" + }, + { + "bufferView":18817, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":18818, + "componentType":5126, + "count":7804, + "max":[ + 496.304931640625, + 427.4638671875, + 103.786865234375 + ], + "min":[ + -496.308349609375, + 0, + -103.786865234375 + ], + "type":"VEC3" + }, + { + "bufferView":18819, + "componentType":5126, + "count":7804, + "type":"VEC3" + }, + { + "bufferView":18820, + "componentType":5126, + "count":7804, + "type":"VEC2" + }, + { + "bufferView":18821, + "componentType":5126, + "count":56, + "max":[ + 115.15283203125, + 511.947509765625, + 147.15673828125 + ], + "min":[ + -115.15478515625, + 0, + -147.15576171875 + ], + "type":"VEC3" + }, + { + "bufferView":18822, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":18823, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":18824, + "componentType":5126, + "count":76, + "max":[ + 279.0987243652344, + 3543.081787109375, + 278.8664855957031 + ], + "min":[ + -279.1011047363281, + 0, + -278.86700439453125 + ], + "type":"VEC3" + }, + { + "bufferView":18825, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":18826, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":18827, + "componentType":5126, + "count":72, + "max":[ + 866.67041015625, + 1492.539794921875, + 22.500154495239258 + ], + "min":[ + -866.6709594726562, + 0, + -22.500308990478516 + ], + "type":"VEC3" + }, + { + "bufferView":18828, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":18829, + "componentType":5126, + "count":1660, + "max":[ + 244.46875, + 367.92926025390625, + 384.578857421875 + ], + "min":[ + -244.466796875, + -6.103515625e-05, + -384.5805358886719 + ], + "type":"VEC3" + }, + { + "bufferView":18830, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":18831, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":18832, + "componentType":5126, + "count":8098, + "max":[ + 496.1484375, + 429.962890625, + 103.787109375 + ], + "min":[ + -496.148681640625, + 0, + -103.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":18833, + "componentType":5126, + "count":8098, + "type":"VEC3" + }, + { + "bufferView":18834, + "componentType":5126, + "count":8098, + "type":"VEC2" + }, + { + "bufferView":18835, + "componentType":5126, + "count":588, + "max":[ + 191.5255126953125, + 32.82521057128906, + 191.52410888671875 + ], + "min":[ + -191.5229949951172, + 1.1444091796875e-05, + -191.5244140625 + ], + "type":"VEC3" + }, + { + "bufferView":18836, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":18837, + "componentType":5126, + "count":586, + "max":[ + 167.6990203857422, + 174.54714965820312, + 140.11021423339844 + ], + "min":[ + -167.6999969482422, + 1.1636123657226562, + -152.3914794921875 + ], + "type":"VEC3" + }, + { + "bufferView":18838, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":18839, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18840, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18841, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18842, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18843, + "componentType":5126, + "count":108, + "max":[ + 1274.9716796875, + 2502.0087890625, + 25.650390625 + ], + "min":[ + -1274.97119140625, + -6.103515625e-05, + -25.650390625 + ], + "type":"VEC3" + }, + { + "bufferView":18844, + "componentType":5126, + "count":108, + "type":"VEC3" + }, + { + "bufferView":18845, + "componentType":5126, + "count":108, + "type":"VEC2" + }, + { + "bufferView":18846, + "componentType":5126, + "count":60, + "max":[ + 3.7875235080718994, + 14.031469345092773, + 5.54845666885376 + ], + "min":[ + -3.7875478267669678, + -3.2901763916015625e-05, + -5.548463821411133 + ], + "type":"VEC3" + }, + { + "bufferView":18847, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":18848, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":18849, + "componentType":5126, + "count":262, + "max":[ + 174.408203125, + 193.25439453125, + 169.06298828125 + ], + "min":[ + -174.408203125, + 0, + -169.0628662109375 + ], + "type":"VEC3" + }, + { + "bufferView":18850, + "componentType":5126, + "count":262, + "type":"VEC3" + }, + { + "bufferView":18851, + "componentType":5126, + "count":262, + "type":"VEC2" + }, + { + "bufferView":18852, + "componentType":5126, + "count":574, + "max":[ + 155.0883331298828, + 162.0181884765625, + 141.46817016601562 + ], + "min":[ + -155.08447265625, + 1.072662353515625, + -129.1869659423828 + ], + "type":"VEC3" + }, + { + "bufferView":18853, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":18854, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18855, + "componentType":5126, + "count":288, + "max":[ + 10872.201171875, + 916.694091796875, + 1300.4503173828125 + ], + "min":[ + -10872.2021484375, + 0.00067138671875, + -1300.4501953125 + ], + "type":"VEC3" + }, + { + "bufferView":18856, + "componentType":5126, + "count":288, + "type":"VEC3" + }, + { + "bufferView":18857, + "componentType":5126, + "count":348, + "max":[ + 171.2998046875, + 184.80810546875, + 176.140625 + ], + "min":[ + -171.296875, + 44.456787109375, + -176.141357421875 + ], + "type":"VEC3" + }, + { + "bufferView":18858, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":18859, + "componentType":5126, + "count":348, + "type":"VEC2" + }, + { + "bufferView":18860, + "componentType":5126, + "count":1420, + "max":[ + 244.46875, + 367.92938232421875, + 384.5810852050781 + ], + "min":[ + -244.466796875, + 4.57763671875e-05, + -384.5781555175781 + ], + "type":"VEC3" + }, + { + "bufferView":18861, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":18862, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":18863, + "componentType":5126, + "count":811, + "max":[ + 4.1328125, + 90.58753204345703, + 34.45703887939453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":18864, + "componentType":5126, + "count":811, + "type":"VEC3" + }, + { + "bufferView":18865, + "componentType":5126, + "count":811, + "type":"VEC2" + }, + { + "bufferView":18866, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":18867, + "componentType":5126, + "count":4, + "max":[ + 698.8857421875, + 2586.479248046875, + 0.00022611767053604126 + ], + "min":[ + -698.8857421875, + 0, + -0.00022611767053604126 + ], + "type":"VEC3" + }, + { + "bufferView":18868, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18869, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18870, + "componentType":5126, + "count":96, + "max":[ + 212.81607055664062, + 929.9837646484375, + 1136.57421875 + ], + "min":[ + -212.81607055664062, + 0.000293731689453125, + -1136.57470703125 + ], + "type":"VEC3" + }, + { + "bufferView":18871, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":18872, + "componentType":5126, + "count":1022, + "max":[ + 125.22607421875, + 76.19921875, + 90.10888671875 + ], + "min":[ + -125.22607421875, + 0, + -90.10888671875 + ], + "type":"VEC3" + }, + { + "bufferView":18873, + "componentType":5126, + "count":1022, + "type":"VEC3" + }, + { + "bufferView":18874, + "componentType":5126, + "count":1022, + "type":"VEC2" + }, + { + "bufferView":18875, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18876, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18877, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18878, + "componentType":5126, + "count":1420, + "max":[ + 244.46875, + 367.92938232421875, + 384.5793762207031 + ], + "min":[ + -244.466796875, + 4.57763671875e-05, + -384.5820617675781 + ], + "type":"VEC3" + }, + { + "bufferView":18879, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":18880, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":18881, + "componentType":5126, + "count":4, + "max":[ + 0, + 2586.479248046875, + 698.8837890625 + ], + "min":[ + 0, + 0, + -698.885009765625 + ], + "type":"VEC3" + }, + { + "bufferView":18882, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18883, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18884, + "componentType":5126, + "count":1488, + "max":[ + 831.546875, + 116.2333984375, + 746.10498046875 + ], + "min":[ + -831.544921875, + 0.000118255615234375, + -746.10205078125 + ], + "type":"VEC3" + }, + { + "bufferView":18885, + "componentType":5126, + "count":1488, + "type":"VEC3" + }, + { + "bufferView":18886, + "componentType":5126, + "count":1488, + "type":"VEC2" + }, + { + "bufferView":18887, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 703.126953125 + ], + "min":[ + -110.00003814697266, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":18888, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18889, + "componentType":5126, + "count":228, + "max":[ + 147.0672149658203, + 288.87457275390625, + 115.35121154785156 + ], + "min":[ + -146.29786682128906, + 0.0001220703125, + -115.35125732421875 + ], + "type":"VEC3" + }, + { + "bufferView":18890, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":18891, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18892, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18893, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18894, + "componentType":5126, + "count":48, + "max":[ + 127.44287109375, + 625.6328125, + 391.737548828125 + ], + "min":[ + -127.4443359375, + 0, + -391.737548828125 + ], + "type":"VEC3" + }, + { + "bufferView":18895, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":18896, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":18897, + "componentType":5126, + "count":92, + "max":[ + 22.05078125, + 77.63677978515625, + 30.45068359375 + ], + "min":[ + -22.05126953125, + -0.00042724609375, + -30.449951171875 + ], + "type":"VEC3" + }, + { + "bufferView":18898, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":18899, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":18900, + "componentType":5126, + "count":350, + "max":[ + 171.298828125, + 184.80859375, + 176.140625 + ], + "min":[ + -171.296875, + 44.45703125, + -176.1416015625 + ], + "type":"VEC3" + }, + { + "bufferView":18901, + "componentType":5126, + "count":350, + "type":"VEC3" + }, + { + "bufferView":18902, + "componentType":5126, + "count":350, + "type":"VEC2" + }, + { + "bufferView":18903, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":18904, + "componentType":5126, + "count":162, + "max":[ + 20.428955078125, + 104.244140625, + 52.123046875 + ], + "min":[ + -20.4296875, + 0, + -52.1240234375 + ], + "type":"VEC3" + }, + { + "bufferView":18905, + "componentType":5126, + "count":162, + "type":"VEC3" + }, + { + "bufferView":18906, + "componentType":5126, + "count":162, + "type":"VEC2" + }, + { + "bufferView":18907, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18908, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18909, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18910, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.073974609375 + ], + "min":[ + -27.193359375, + 0, + -126.072998046875 + ], + "type":"VEC3" + }, + { + "bufferView":18911, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18912, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18913, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18914, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18915, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18916, + "componentType":5126, + "count":112, + "max":[ + 34.857215881347656, + 1878.33447265625, + 483.718017578125 + ], + "min":[ + -34.857261657714844, + 0.0001220703125, + -483.7181701660156 + ], + "type":"VEC3" + }, + { + "bufferView":18917, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":18918, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":18919, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":18920, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18921, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18922, + "componentType":5126, + "count":60, + "max":[ + 3.7875235080718994, + 14.031469345092773, + 5.54845666885376 + ], + "min":[ + -3.7875478267669678, + -3.2901763916015625e-05, + -5.548463821411133 + ], + "type":"VEC3" + }, + { + "bufferView":18923, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":18924, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":18925, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":18926, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":18927, + "componentType":5126, + "count":60, + "max":[ + 4.2459025382995605, + 13.413310050964355, + 3.7875266075134277 + ], + "min":[ + -4.245926380157471, + 0.00010944684618152678, + -3.7875447273254395 + ], + "type":"VEC3" + }, + { + "bufferView":18928, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":18929, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":18930, + "componentType":5126, + "count":12, + "max":[ + 10.2607421875, + 419.39984130859375, + 443.6836242675781 + ], + "min":[ + -10.259765625, + 0.0001678466796875, + -443.6855773925781 + ], + "type":"VEC3" + }, + { + "bufferView":18931, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":18932, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":18933, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76708984375, + 78.58642578125 + ], + "min":[ + -46.2822265625, + 0, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":18934, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18935, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18936, + "componentType":5126, + "count":584, + "max":[ + 166.2982635498047, + 173.15460205078125, + 151.17776489257812 + ], + "min":[ + -166.29783630371094, + 1.1529998779296875, + -138.89649963378906 + ], + "type":"VEC3" + }, + { + "bufferView":18937, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":18938, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18939, + "componentType":5126, + "count":345, + "max":[ + 170.435546875, + 188.558349609375, + 176.20361328125 + ], + "min":[ + -170.43359375, + 45.296630859375, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":18940, + "componentType":5126, + "count":345, + "type":"VEC3" + }, + { + "bufferView":18941, + "componentType":5126, + "count":345, + "type":"VEC2" + }, + { + "bufferView":18942, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":18943, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18944, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18945, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":18946, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18947, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18948, + "componentType":5126, + "count":576, + "max":[ + 191.5255126953125, + 196.87759399414062, + 166.8836212158203 + ], + "min":[ + -191.5229949951172, + 0.00011444091796875, + -166.88369750976562 + ], + "type":"VEC3" + }, + { + "bufferView":18949, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":18950, + "componentType":5126, + "count":594, + "max":[ + 159.29193115234375, + 166.19444274902344, + 132.82806396484375 + ], + "min":[ + -159.28961181640625, + 1.1026992797851562, + -145.10931396484375 + ], + "type":"VEC3" + }, + { + "bufferView":18951, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":18952, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18953, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18954, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18955, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18956, + "componentType":5126, + "count":574, + "max":[ + 171.90518188476562, + 177.52947998046875, + 149.89190673828125 + ], + "min":[ + -171.9025421142578, + -0.000152587890625, + -149.89193725585938 + ], + "type":"VEC3" + }, + { + "bufferView":18957, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":18958, + "componentType":5126, + "count":186, + "max":[ + 22.7294921875, + 2370.382568359375, + 32.116981506347656 + ], + "min":[ + -22.7294921875, + 0, + -32.113075256347656 + ], + "type":"VEC3" + }, + { + "bufferView":18959, + "componentType":5126, + "count":186, + "type":"VEC3" + }, + { + "bufferView":18960, + "componentType":5126, + "count":186, + "type":"VEC2" + }, + { + "bufferView":18961, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18962, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18963, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18964, + "componentType":5126, + "count":688, + "max":[ + 1091.228515625, + 286.94140625, + 96.4296646118164 + ], + "min":[ + -1091.224609375, + -1.52587890625e-05, + -96.43164825439453 + ], + "type":"VEC3" + }, + { + "bufferView":18965, + "componentType":5126, + "count":688, + "type":"VEC3" + }, + { + "bufferView":18966, + "componentType":5126, + "count":688, + "type":"VEC2" + }, + { + "bufferView":18967, + "componentType":5126, + "count":796, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45850372314453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45459747314453 + ], + "type":"VEC3" + }, + { + "bufferView":18968, + "componentType":5126, + "count":796, + "type":"VEC3" + }, + { + "bufferView":18969, + "componentType":5126, + "count":796, + "type":"VEC2" + }, + { + "bufferView":18970, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18971, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18972, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18973, + "componentType":5126, + "count":601, + "max":[ + 143.60581970214844, + 174.3385009765625, + 131.4306640625 + ], + "min":[ + -143.60858154296875, + -1.52587890625e-05, + -131.42999267578125 + ], + "type":"VEC3" + }, + { + "bufferView":18974, + "componentType":5126, + "count":601, + "type":"VEC3" + }, + { + "bufferView":18975, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":18976, + "componentType":5126, + "count":12, + "max":[ + 411.4619140625, + 388.941162109375, + 9.51611328125 + ], + "min":[ + -411.4638671875, + 0, + -9.5142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":18977, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":18978, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":18979, + "componentType":5126, + "count":332, + "max":[ + 170.9033203125, + 157.001708984375, + 177.25439453125 + ], + "min":[ + -170.90625, + 21.288330078125, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":18980, + "componentType":5126, + "count":332, + "type":"VEC3" + }, + { + "bufferView":18981, + "componentType":5126, + "count":332, + "type":"VEC2" + }, + { + "bufferView":18982, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":18983, + "componentType":5126, + "count":352, + "max":[ + 131.3284912109375, + 224.240234375, + 138.18701171875 + ], + "min":[ + -131.32923889160156, + 3.361572265625, + -138.1864013671875 + ], + "type":"VEC3" + }, + { + "bufferView":18984, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":18985, + "componentType":5126, + "count":4, + "max":[ + 698.880859375, + 2586.479248046875, + 0.0015688911080360413 + ], + "min":[ + -698.884765625, + 0, + 0.0009945854544639587 + ], + "type":"VEC3" + }, + { + "bufferView":18986, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18987, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18988, + "componentType":5126, + "count":576, + "max":[ + 197.86923217773438, + 126.80730438232422, + 206.1773223876953 + ], + "min":[ + -197.8684844970703, + 3.0517578125e-05, + -206.17767333984375 + ], + "type":"VEC3" + }, + { + "bufferView":18989, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":18990, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18991, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18992, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18993, + "componentType":5126, + "count":339, + "max":[ + 170.4345703125, + 188.555419921875, + 176.20361328125 + ], + "min":[ + -170.435546875, + 45.296142578125, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":18994, + "componentType":5126, + "count":339, + "type":"VEC3" + }, + { + "bufferView":18995, + "componentType":5126, + "count":339, + "type":"VEC2" + }, + { + "bufferView":18996, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":18997, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":18998, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":18999, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19000, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":19001, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19002, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19003, + "componentType":5126, + "count":282, + "max":[ + 23.164794921875, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16455078125, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":19004, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":19005, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":19006, + "componentType":5126, + "count":60, + "max":[ + 2752.00439453125, + 2819.53076171875, + 1066.3984375 + ], + "min":[ + -2752.0029296875, + -0.0001220703125, + -1066.39453125 + ], + "type":"VEC3" + }, + { + "bufferView":19007, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":19008, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":19009, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":19010, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":19011, + "componentType":5126, + "count":7749, + "max":[ + 103.786865234375, + 427.46484375, + 496.30615234375 + ], + "min":[ + -103.786865234375, + 0, + -496.30712890625 + ], + "type":"VEC3" + }, + { + "bufferView":19012, + "componentType":5126, + "count":7749, + "type":"VEC3" + }, + { + "bufferView":19013, + "componentType":5126, + "count":7749, + "type":"VEC2" + }, + { + "bufferView":19014, + "componentType":5126, + "count":564, + "max":[ + 204.45657348632812, + 211.0584716796875, + 184.22364807128906 + ], + "min":[ + -204.45677185058594, + 1.4281158447265625, + -171.9432373046875 + ], + "type":"VEC3" + }, + { + "bufferView":19015, + "componentType":5126, + "count":564, + "type":"VEC3" + }, + { + "bufferView":19016, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68621826171875 + ], + "min":[ + -15.4755859375, + 0, + -381.68670654296875 + ], + "type":"VEC3" + }, + { + "bufferView":19017, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19018, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19019, + "componentType":5126, + "count":682, + "max":[ + 134.31640625, + 2974.83349609375, + 130.7236328125 + ], + "min":[ + -134.314453125, + 0, + -130.72071838378906 + ], + "type":"VEC3" + }, + { + "bufferView":19020, + "componentType":5126, + "count":682, + "type":"VEC3" + }, + { + "bufferView":19021, + "componentType":5126, + "count":682, + "type":"VEC2" + }, + { + "bufferView":19022, + "componentType":5126, + "count":4062, + "max":[ + 37.94614028930664, + 117.86515808105469, + 219.26246643066406 + ], + "min":[ + -37.9461555480957, + -0.00017547607421875, + -219.26394653320312 + ], + "type":"VEC3" + }, + { + "bufferView":19023, + "componentType":5126, + "count":4062, + "type":"VEC3" + }, + { + "bufferView":19024, + "componentType":5126, + "count":4062, + "type":"VEC2" + }, + { + "bufferView":19025, + "componentType":5126, + "count":34, + "max":[ + 2889.6533203125, + 320.1450500488281, + 7353.00048828125 + ], + "min":[ + -2889.6533203125, + -0.00012969970703125, + -7352.99951171875 + ], + "type":"VEC3" + }, + { + "bufferView":19026, + "componentType":5126, + "count":34, + "type":"VEC3" + }, + { + "bufferView":19027, + "componentType":5126, + "count":34, + "type":"VEC2" + }, + { + "bufferView":19028, + "componentType":5126, + "count":8287, + "max":[ + 496.33447265625, + 427.025390625, + 103.78564453125 + ], + "min":[ + -496.334716796875, + 0, + -103.78759765625 + ], + "type":"VEC3" + }, + { + "bufferView":19029, + "componentType":5126, + "count":8287, + "type":"VEC3" + }, + { + "bufferView":19030, + "componentType":5126, + "count":8287, + "type":"VEC2" + }, + { + "bufferView":19031, + "componentType":5126, + "count":342, + "max":[ + 171.298828125, + 184.806640625, + 176.14111328125 + ], + "min":[ + -171.296875, + 44.45703125, + -176.140869140625 + ], + "type":"VEC3" + }, + { + "bufferView":19032, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":19033, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":19034, + "componentType":5126, + "count":568, + "max":[ + 188.72061157226562, + 195.42843627929688, + 158.3155975341797 + ], + "min":[ + -188.72206115722656, + 1.3148880004882812, + -170.59695434570312 + ], + "type":"VEC3" + }, + { + "bufferView":19035, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":19036, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19037, + "componentType":5126, + "count":348, + "max":[ + 171.2958984375, + 184.8056640625, + 176.13916015625 + ], + "min":[ + -171.2998046875, + 44.45458984375, + -176.142578125 + ], + "type":"VEC3" + }, + { + "bufferView":19038, + "componentType":5126, + "count":348, + "type":"VEC3" + }, + { + "bufferView":19039, + "componentType":5126, + "count":348, + "type":"VEC2" + }, + { + "bufferView":19040, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":19041, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19042, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19043, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19044, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19045, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19046, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19047, + "componentType":5126, + "count":142, + "max":[ + 3.4517245292663574, + 18.945335388183594, + 9.472704887390137 + ], + "min":[ + -3.4518513679504395, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":19048, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":19049, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":19050, + "componentType":5126, + "count":24, + "max":[ + 2748.22509765625, + 201.5, + 7164.2216796875 + ], + "min":[ + -2748.225341796875, + 0, + -7164.22314453125 + ], + "type":"VEC3" + }, + { + "bufferView":19051, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19052, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19053, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28369140625 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":19054, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":19055, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":19056, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 463.990234375 + ], + "min":[ + -110.0000228881836, + 0, + -463.990234375 + ], + "type":"VEC3" + }, + { + "bufferView":19057, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19058, + "componentType":5126, + "count":210, + "max":[ + 1342.826171875, + 1646.6240234375, + 7.033203125 + ], + "min":[ + -1342.828125, + 0, + -7.03369140625 + ], + "type":"VEC3" + }, + { + "bufferView":19059, + "componentType":5126, + "count":210, + "type":"VEC3" + }, + { + "bufferView":19060, + "componentType":5126, + "count":210, + "type":"VEC2" + }, + { + "bufferView":19061, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":19062, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19063, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19064, + "componentType":5126, + "count":266, + "max":[ + 383.94287109375, + 1066.085205078125, + 229.2611083984375 + ], + "min":[ + -383.9423828125, + 0, + -229.260498046875 + ], + "type":"VEC3" + }, + { + "bufferView":19065, + "componentType":5126, + "count":266, + "type":"VEC3" + }, + { + "bufferView":19066, + "componentType":5126, + "count":266, + "type":"VEC2" + }, + { + "bufferView":19067, + "componentType":5123, + "count":564, + "type":"SCALAR" + }, + { + "bufferView":19068, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19069, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19070, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19071, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.45458984375, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":19072, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":19073, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":19074, + "componentType":5126, + "count":450, + "max":[ + 104.17137908935547, + 104.17129516601562, + 104.17137908935547 + ], + "min":[ + -104.17139434814453, + -8.392333984375e-05, + -104.17137908935547 + ], + "type":"VEC3" + }, + { + "bufferView":19075, + "componentType":5126, + "count":450, + "type":"VEC3" + }, + { + "bufferView":19076, + "componentType":5126, + "count":450, + "type":"VEC2" + }, + { + "bufferView":19077, + "componentType":5126, + "count":46, + "max":[ + 161.98095703125, + 658.67578125, + 366.15234375 + ], + "min":[ + -161.97900390625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":19078, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":19079, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":19080, + "componentType":5126, + "count":98, + "max":[ + 1.4143146276474, + 10.517534255981445, + 5.258759021759033 + ], + "min":[ + -1.4143165349960327, + 6.008148193359375e-05, + -5.25871467590332 + ], + "type":"VEC3" + }, + { + "bufferView":19081, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":19082, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":19083, + "componentType":5126, + "count":169, + "max":[ + 769.70751953125, + 113.194580078125, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0, + -56.59765625 + ], + "type":"VEC3" + }, + { + "bufferView":19084, + "componentType":5126, + "count":169, + "type":"VEC3" + }, + { + "bufferView":19085, + "componentType":5126, + "count":169, + "type":"VEC2" + }, + { + "bufferView":19086, + "componentType":5126, + "count":580, + "max":[ + 162.09307861328125, + 168.9784393310547, + 147.53616333007812 + ], + "min":[ + -162.0943145751953, + 1.1229324340820312, + -135.2559051513672 + ], + "type":"VEC3" + }, + { + "bufferView":19087, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":19088, + "componentType":5126, + "count":352, + "max":[ + 171.2998046875, + 184.8046875, + 176.14111328125 + ], + "min":[ + -171.296875, + 44.45751953125, + -176.14111328125 + ], + "type":"VEC3" + }, + { + "bufferView":19089, + "componentType":5126, + "count":352, + "type":"VEC3" + }, + { + "bufferView":19090, + "componentType":5126, + "count":352, + "type":"VEC2" + }, + { + "bufferView":19091, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":19092, + "componentType":5126, + "count":592, + "max":[ + 153.41448974609375, + 222.5848846435547, + 137.69430541992188 + ], + "min":[ + -160.6251678466797, + 32.614845275878906, + -149.62600708007812 + ], + "type":"VEC3" + }, + { + "bufferView":19093, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":19094, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19095, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19096, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19097, + "componentType":5126, + "count":6, + "max":[ + 1.3203125, + 1061.56201171875, + 165.3642578125 + ], + "min":[ + -1.3203125, + -0.0012302398681640625, + -165.365234375 + ], + "type":"VEC3" + }, + { + "bufferView":19098, + "componentType":5126, + "count":6, + "type":"VEC3" + }, + { + "bufferView":19099, + "componentType":5126, + "count":6, + "type":"VEC2" + }, + { + "bufferView":19100, + "componentType":5123, + "count":12, + "type":"SCALAR" + }, + { + "bufferView":19101, + "componentType":5126, + "count":592, + "max":[ + 193.23326110839844, + 124.03791046142578, + 201.33425903320312 + ], + "min":[ + -193.2343292236328, + -8.392333984375e-05, + -201.33462524414062 + ], + "type":"VEC3" + }, + { + "bufferView":19102, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":19103, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 463.990234375 + ], + "min":[ + -110.0000228881836, + 0, + -463.990234375 + ], + "type":"VEC3" + }, + { + "bufferView":19104, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19105, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":19106, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":19107, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":19108, + "componentType":5126, + "count":164, + "max":[ + 520.6484375, + 14332.2607421875, + 66.3231201171875 + ], + "min":[ + -520.650634765625, + 0.00096893310546875, + -66.3218994140625 + ], + "type":"VEC3" + }, + { + "bufferView":19109, + "componentType":5126, + "count":164, + "type":"VEC3" + }, + { + "bufferView":19110, + "componentType":5126, + "count":164, + "type":"VEC2" + }, + { + "bufferView":19111, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.07330322265625 + ], + "min":[ + -27.193359375, + 0, + -126.07342529296875 + ], + "type":"VEC3" + }, + { + "bufferView":19112, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19113, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19114, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":19115, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19116, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19117, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19118, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19119, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19120, + "componentType":5126, + "count":339, + "max":[ + 170.435546875, + 188.55859375, + 176.2041015625 + ], + "min":[ + -170.43359375, + 45.296875, + -176.203125 + ], + "type":"VEC3" + }, + { + "bufferView":19121, + "componentType":5126, + "count":339, + "type":"VEC3" + }, + { + "bufferView":19122, + "componentType":5126, + "count":339, + "type":"VEC2" + }, + { + "bufferView":19123, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":19124, + "componentType":5126, + "count":142, + "max":[ + 3.4517822265625, + 18.94533348083496, + 9.472748756408691 + ], + "min":[ + -3.451784133911133, + -0.00011920928955078125, + -9.472702026367188 + ], + "type":"VEC3" + }, + { + "bufferView":19125, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":19126, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":19127, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19128, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19129, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19130, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":19131, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19132, + "componentType":5126, + "count":48, + "max":[ + 391.736328125, + 625.6328125, + 127.44482421875 + ], + "min":[ + -391.73779296875, + 0, + -127.4423828125 + ], + "type":"VEC3" + }, + { + "bufferView":19133, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":19134, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":19135, + "componentType":5126, + "count":49, + "max":[ + 391.7373046875, + 625.6328125, + 127.44482421875 + ], + "min":[ + -391.73779296875, + 0, + -127.4423828125 + ], + "type":"VEC3" + }, + { + "bufferView":19136, + "componentType":5126, + "count":49, + "type":"VEC3" + }, + { + "bufferView":19137, + "componentType":5126, + "count":49, + "type":"VEC2" + }, + { + "bufferView":19138, + "componentType":5126, + "count":142, + "max":[ + 3.451836347579956, + 18.945335388183594, + 9.47275161743164 + ], + "min":[ + -3.451739549636841, + -0.00011920928955078125, + -9.472702980041504 + ], + "type":"VEC3" + }, + { + "bufferView":19139, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":19140, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":19141, + "componentType":5126, + "count":82, + "max":[ + 5.782142639160156, + 27.783714294433594, + 5.7820587158203125 + ], + "min":[ + -5.782100200653076, + -5.53131103515625e-05, + -5.782153129577637 + ], + "type":"VEC3" + }, + { + "bufferView":19142, + "componentType":5126, + "count":82, + "type":"VEC3" + }, + { + "bufferView":19143, + "componentType":5126, + "count":82, + "type":"VEC2" + }, + { + "bufferView":19144, + "componentType":5126, + "count":335, + "max":[ + 171.298828125, + 184.80712890625, + 176.140625 + ], + "min":[ + -171.2978515625, + 44.4580078125, + -176.1416015625 + ], + "type":"VEC3" + }, + { + "bufferView":19145, + "componentType":5126, + "count":335, + "type":"VEC3" + }, + { + "bufferView":19146, + "componentType":5126, + "count":335, + "type":"VEC2" + }, + { + "bufferView":19147, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":19148, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19149, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19150, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19151, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19152, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19153, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19154, + "componentType":5126, + "count":204, + "max":[ + 2404.19970703125, + 51.298583984375, + 1286.8076171875 + ], + "min":[ + -2404.199462890625, + 0, + -1286.810546875 + ], + "type":"VEC3" + }, + { + "bufferView":19155, + "componentType":5126, + "count":204, + "type":"VEC3" + }, + { + "bufferView":19156, + "componentType":5126, + "count":204, + "type":"VEC2" + }, + { + "bufferView":19157, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":19158, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19159, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19160, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":19161, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19162, + "componentType":5126, + "count":76, + "max":[ + 279.0987243652344, + 3543.081787109375, + 278.8664855957031 + ], + "min":[ + -279.1011047363281, + 0, + -278.86700439453125 + ], + "type":"VEC3" + }, + { + "bufferView":19163, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":19164, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":19165, + "componentType":5126, + "count":7799, + "max":[ + 496.306884765625, + 427.46484375, + 103.7867431640625 + ], + "min":[ + -496.306396484375, + 0, + -103.7867431640625 + ], + "type":"VEC3" + }, + { + "bufferView":19166, + "componentType":5126, + "count":7799, + "type":"VEC3" + }, + { + "bufferView":19167, + "componentType":5126, + "count":7799, + "type":"VEC2" + }, + { + "bufferView":19168, + "componentType":5126, + "count":12, + "max":[ + 411.4619140625, + 388.941162109375, + 9.51611328125 + ], + "min":[ + -411.4638671875, + 0, + -9.5142822265625 + ], + "type":"VEC3" + }, + { + "bufferView":19169, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":19170, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":19171, + "componentType":5126, + "count":1043, + "max":[ + 125.22607421875, + 76.19921875, + 90.10888671875 + ], + "min":[ + -125.22607421875, + 0, + -90.109375 + ], + "type":"VEC3" + }, + { + "bufferView":19172, + "componentType":5126, + "count":1043, + "type":"VEC3" + }, + { + "bufferView":19173, + "componentType":5126, + "count":1043, + "type":"VEC2" + }, + { + "bufferView":19174, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28369140625 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":19175, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":19176, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":19177, + "componentType":5126, + "count":1021, + "max":[ + 90.109375, + 254.306640625, + 29.7861328125 + ], + "min":[ + -90.10888671875, + 1.31201171875, + -29.787109375 + ], + "type":"VEC3" + }, + { + "bufferView":19178, + "componentType":5126, + "count":1021, + "type":"VEC3" + }, + { + "bufferView":19179, + "componentType":5126, + "count":1021, + "type":"VEC2" + }, + { + "bufferView":19180, + "componentType":5126, + "count":592, + "max":[ + 193.23326110839844, + 124.03791046142578, + 201.33450317382812 + ], + "min":[ + -193.2343292236328, + -8.392333984375e-05, + -201.33438110351562 + ], + "type":"VEC3" + }, + { + "bufferView":19181, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":19182, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19183, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19184, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19185, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19186, + "componentType":5126, + "count":1420, + "max":[ + 245.234375, + 367.92938232421875, + 384.142578125 + ], + "min":[ + -245.232421875, + 0, + -384.1391296386719 + ], + "type":"VEC3" + }, + { + "bufferView":19187, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":19188, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":19189, + "componentType":5126, + "count":4, + "max":[ + 698.884765625, + 2586.4794921875, + 0.00022611767053604126 + ], + "min":[ + -698.884765625, + 0, + -0.00022611767053604126 + ], + "type":"VEC3" + }, + { + "bufferView":19190, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19191, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19192, + "componentType":5126, + "count":142, + "max":[ + 3.4517245292663574, + 18.945335388183594, + 9.472704887390137 + ], + "min":[ + -3.4518513679504395, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":19193, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":19194, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":19195, + "componentType":5126, + "count":8252, + "max":[ + 178.826171875, + 1010.5029296875, + 103.7867431640625 + ], + "min":[ + -178.8271484375, + 12.336669921875, + -103.786865234375 + ], + "type":"VEC3" + }, + { + "bufferView":19196, + "componentType":5126, + "count":8252, + "type":"VEC3" + }, + { + "bufferView":19197, + "componentType":5126, + "count":8252, + "type":"VEC2" + }, + { + "bufferView":19198, + "componentType":5126, + "count":812, + "max":[ + 4.1328125, + 90.58740997314453, + 34.45703887939453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":19199, + "componentType":5126, + "count":812, + "type":"VEC3" + }, + { + "bufferView":19200, + "componentType":5126, + "count":812, + "type":"VEC2" + }, + { + "bufferView":19201, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":19202, + "componentType":5126, + "count":570, + "max":[ + 201.33372497558594, + 207.9571990966797, + 181.52020263671875 + ], + "min":[ + -201.3351287841797, + 1.4057235717773438, + -169.23880004882812 + ], + "type":"VEC3" + }, + { + "bufferView":19203, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":19204, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19205, + "componentType":5126, + "count":4, + "max":[ + 0, + 2586.479248046875, + 698.884521484375 + ], + "min":[ + 0, + 0, + -698.884521484375 + ], + "type":"VEC3" + }, + { + "bufferView":19206, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19207, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19208, + "componentType":5126, + "count":918, + "max":[ + 879.66015625, + 587.0332641601562, + 879.6616821289062 + ], + "min":[ + -879.658203125, + 3.0517578125e-05, + -879.6587524414062 + ], + "type":"VEC3" + }, + { + "bufferView":19209, + "componentType":5126, + "count":918, + "type":"VEC3" + }, + { + "bufferView":19210, + "componentType":5126, + "count":918, + "type":"VEC2" + }, + { + "bufferView":19211, + "componentType":5123, + "count":1440, + "type":"SCALAR" + }, + { + "bufferView":19212, + "componentType":5126, + "count":24, + "max":[ + 516.6122436523438, + 50, + 7084.615234375 + ], + "min":[ + -516.6124877929688, + -7.62939453125e-06, + -7084.6162109375 + ], + "type":"VEC3" + }, + { + "bufferView":19213, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19214, + "componentType":5126, + "count":336, + "max":[ + 45.858123779296875, + 228.09591674804688, + 115.35120391845703 + ], + "min":[ + -45.85678482055664, + 0.56097412109375, + -115.35125732421875 + ], + "type":"VEC3" + }, + { + "bufferView":19215, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":19216, + "componentType":5126, + "count":92, + "max":[ + 34.716796875, + 88.51513671875, + 25.14129638671875 + ], + "min":[ + -34.716796875, + 0, + -25.14013671875 + ], + "type":"VEC3" + }, + { + "bufferView":19217, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":19218, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":19219, + "componentType":5126, + "count":176, + "max":[ + 769.70947265625, + 113.194580078125, + 56.59765625 + ], + "min":[ + -769.7080078125, + 6.103515625e-05, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":19220, + "componentType":5126, + "count":176, + "type":"VEC3" + }, + { + "bufferView":19221, + "componentType":5126, + "count":176, + "type":"VEC2" + }, + { + "bufferView":19222, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":19223, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":19224, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":19225, + "componentType":5126, + "count":582, + "max":[ + 195.72679138183594, + 202.38870239257812, + 176.66502380371094 + ], + "min":[ + -195.7303924560547, + 1.365234375, + -164.3843536376953 + ], + "type":"VEC3" + }, + { + "bufferView":19226, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":19227, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19228, + "componentType":5126, + "count":136, + "max":[ + 824.2421875, + 156.626220703125, + 69.5697021484375 + ], + "min":[ + -824.24169921875, + 0, + -69.5699462890625 + ], + "type":"VEC3" + }, + { + "bufferView":19229, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":19230, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":19231, + "componentType":5126, + "count":60, + "max":[ + 3.78755259513855, + 14.031469345092773, + 5.548454284667969 + ], + "min":[ + -3.7875146865844727, + -3.24249267578125e-05, + -5.548465728759766 + ], + "type":"VEC3" + }, + { + "bufferView":19232, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":19233, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":19234, + "componentType":5126, + "count":232, + "max":[ + 115.35120391845703, + 317.20355224609375, + 159.8307647705078 + ], + "min":[ + -115.35127258300781, + 3.0517578125e-05, + -159.83084106445312 + ], + "type":"VEC3" + }, + { + "bufferView":19235, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":19236, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19237, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19238, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19239, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19240, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19241, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19242, + "componentType":5126, + "count":142, + "max":[ + 3.4517245292663574, + 18.945335388183594, + 9.472704887390137 + ], + "min":[ + -3.4518513679504395, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":19243, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":19244, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":19245, + "componentType":5126, + "count":570, + "max":[ + 325.56951904296875, + 210.5472412109375, + 325.56951904296875 + ], + "min":[ + -325.56951904296875, + -4.842902490054257e-05, + -325.5695495605469 + ], + "type":"VEC3" + }, + { + "bufferView":19246, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":19247, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":19248, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19249, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19250, + "componentType":5126, + "count":4062, + "max":[ + 219.26443481445312, + 117.86515808105469, + 37.94609832763672 + ], + "min":[ + -219.26202392578125, + -0.0001678466796875, + -37.94620132446289 + ], + "type":"VEC3" + }, + { + "bufferView":19251, + "componentType":5126, + "count":4062, + "type":"VEC3" + }, + { + "bufferView":19252, + "componentType":5126, + "count":4062, + "type":"VEC2" + }, + { + "bufferView":19253, + "componentType":5123, + "count":21444, + "type":"SCALAR" + }, + { + "bufferView":19254, + "componentType":5126, + "count":8101, + "max":[ + 496.147216796875, + 429.9619140625, + 103.78759765625 + ], + "min":[ + -496.14990234375, + 0, + -103.78662109375 + ], + "type":"VEC3" + }, + { + "bufferView":19255, + "componentType":5126, + "count":8101, + "type":"VEC3" + }, + { + "bufferView":19256, + "componentType":5126, + "count":8101, + "type":"VEC2" + }, + { + "bufferView":19257, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":19258, + "componentType":5126, + "count":596, + "max":[ + 164.8965301513672, + 171.76266479492188, + 149.96400451660156 + ], + "min":[ + -164.89663696289062, + 1.1429595947265625, + -137.6828155517578 + ], + "type":"VEC3" + }, + { + "bufferView":19259, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":19260, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19261, + "componentType":5126, + "count":572, + "max":[ + 206.177734375, + 212.76776123046875, + 185.7139129638672 + ], + "min":[ + -206.17726135253906, + 1.440460205078125, + -173.4335174560547 + ], + "type":"VEC3" + }, + { + "bufferView":19262, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":19263, + "componentType":5126, + "count":336, + "max":[ + 170.435546875, + 188.558349609375, + 176.2041015625 + ], + "min":[ + -170.43359375, + 45.296630859375, + -176.203125 + ], + "type":"VEC3" + }, + { + "bufferView":19264, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":19265, + "componentType":5126, + "count":336, + "type":"VEC2" + }, + { + "bufferView":19266, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":19267, + "componentType":5126, + "count":336, + "max":[ + 131.32907104492188, + 111.1650390625, + 131.32896423339844 + ], + "min":[ + -131.32864379882812, + 0, + -131.3287353515625 + ], + "type":"VEC3" + }, + { + "bufferView":19268, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":19269, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":19270, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19271, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19272, + "componentType":5126, + "count":580, + "max":[ + 157.89076232910156, + 164.8022918701172, + 131.61434936523438 + ], + "min":[ + -157.88787841796875, + 1.0926437377929688, + -143.89559936523438 + ], + "type":"VEC3" + }, + { + "bufferView":19273, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":19274, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19275, + "componentType":5126, + "count":584, + "max":[ + 173.30691528320312, + 178.91180419921875, + 151.10560607910156 + ], + "min":[ + -173.3037109375, + 0.00023651123046875, + -151.10565185546875 + ], + "type":"VEC3" + }, + { + "bufferView":19276, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":19277, + "componentType":5126, + "count":318, + "max":[ + 10.67822265625, + 283.877197265625, + 60.75002670288086 + ], + "min":[ + -10.67822265625, + -1.52587890625e-05, + -60.75002670288086 + ], + "type":"VEC3" + }, + { + "bufferView":19278, + "componentType":5126, + "count":318, + "type":"VEC3" + }, + { + "bufferView":19279, + "componentType":5126, + "count":318, + "type":"VEC2" + }, + { + "bufferView":19280, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":19281, + "componentType":5126, + "count":342, + "max":[ + 171.296875, + 184.8056640625, + 176.140380859375 + ], + "min":[ + -171.298828125, + 44.4541015625, + -176.1416015625 + ], + "type":"VEC3" + }, + { + "bufferView":19282, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":19283, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":19284, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":19285, + "componentType":5126, + "count":588, + "max":[ + 940.453125, + 1055.2056884765625, + 881.7671508789062 + ], + "min":[ + -940.453125, + 0.0003662109375, + -881.7666625976562 + ], + "type":"VEC3" + }, + { + "bufferView":19286, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":19287, + "componentType":5126, + "count":588, + "type":"VEC2" + }, + { + "bufferView":19288, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76666259765625, + 78.5859375 + ], + "min":[ + -46.2822265625, + 0, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":19289, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19290, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19291, + "componentType":5126, + "count":807, + "max":[ + 4.1328125, + 90.58753204345703, + 34.45850372314453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45459747314453 + ], + "type":"VEC3" + }, + { + "bufferView":19292, + "componentType":5126, + "count":807, + "type":"VEC3" + }, + { + "bufferView":19293, + "componentType":5126, + "count":807, + "type":"VEC2" + }, + { + "bufferView":19294, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":19295, + "componentType":5126, + "count":180, + "max":[ + 13.2529296875, + 75.79545593261719, + 25.50537109375 + ], + "min":[ + -13.25048828125, + 2.5339191779494286e-05, + -25.4984130859375 + ], + "type":"VEC3" + }, + { + "bufferView":19296, + "componentType":5126, + "count":180, + "type":"VEC3" + }, + { + "bufferView":19297, + "componentType":5126, + "count":180, + "type":"VEC2" + }, + { + "bufferView":19298, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19299, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19300, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19301, + "componentType":5126, + "count":595, + "max":[ + 152.995361328125, + 185.28057861328125, + 139.99119567871094 + ], + "min":[ + -152.99667358398438, + 9.1552734375e-05, + -139.99127197265625 + ], + "type":"VEC3" + }, + { + "bufferView":19302, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":19303, + "componentType":5126, + "count":1952, + "max":[ + 2.095486640930176, + 14.731964111328125, + 7.36604642868042 + ], + "min":[ + -2.0954651832580566, + -8.249282836914062e-05, + -7.3659987449646 + ], + "type":"VEC3" + }, + { + "bufferView":19304, + "componentType":5126, + "count":1952, + "type":"VEC3" + }, + { + "bufferView":19305, + "componentType":5126, + "count":1952, + "type":"VEC2" + }, + { + "bufferView":19306, + "componentType":5126, + "count":585, + "max":[ + 140.92384338378906, + 171.21206665039062, + 128.98480224609375 + ], + "min":[ + -140.92556762695312, + -3.0517578125e-05, + -128.9839324951172 + ], + "type":"VEC3" + }, + { + "bufferView":19307, + "componentType":5126, + "count":585, + "type":"VEC3" + }, + { + "bufferView":19308, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19309, + "componentType":5126, + "count":580, + "max":[ + 190.123779296875, + 196.82052612304688, + 171.8105926513672 + ], + "min":[ + -190.12181091308594, + 1.32501220703125, + -159.52926635742188 + ], + "type":"VEC3" + }, + { + "bufferView":19310, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":19311, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19312, + "componentType":5126, + "count":595, + "max":[ + 152.07296752929688, + 220.74203491210938, + 136.47134399414062 + ], + "min":[ + -159.2841796875, + 32.335121154785156, + -148.4029541015625 + ], + "type":"VEC3" + }, + { + "bufferView":19313, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":19314, + "componentType":5126, + "count":198, + "max":[ + 22.7265625, + 61.51428985595703, + 43.589359283447266 + ], + "min":[ + -22.728515625, + 0.00011444091796875, + -43.588871002197266 + ], + "type":"VEC3" + }, + { + "bufferView":19315, + "componentType":5126, + "count":198, + "type":"VEC3" + }, + { + "bufferView":19316, + "componentType":5126, + "count":198, + "type":"VEC2" + }, + { + "bufferView":19317, + "componentType":5126, + "count":618, + "max":[ + 56.700870513916016, + 172.07470703125, + 23.860031127929688 + ], + "min":[ + -56.700721740722656, + 5.340576171875e-05, + -23.86003875732422 + ], + "type":"VEC3" + }, + { + "bufferView":19318, + "componentType":5126, + "count":618, + "type":"VEC3" + }, + { + "bufferView":19319, + "componentType":5126, + "count":618, + "type":"VEC2" + }, + { + "bufferView":19320, + "componentType":5126, + "count":335, + "max":[ + 170.904296875, + 157.00244140625, + 177.25439453125 + ], + "min":[ + -170.90625, + 21.2890625, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":19321, + "componentType":5126, + "count":335, + "type":"VEC3" + }, + { + "bufferView":19322, + "componentType":5126, + "count":335, + "type":"VEC2" + }, + { + "bufferView":19323, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":19324, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19325, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19326, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19327, + "componentType":5126, + "count":580, + "max":[ + 196.22201538085938, + 125.82342529296875, + 204.45651245117188 + ], + "min":[ + -196.22189331054688, + 0.000152587890625, + -204.45687866210938 + ], + "type":"VEC3" + }, + { + "bufferView":19328, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":19329, + "componentType":5126, + "count":140, + "max":[ + 57.79645919799805, + 61.74176025390625, + 45.56758499145508 + ], + "min":[ + -57.79677200317383, + 5.340576171875e-05, + -45.56761169433594 + ], + "type":"VEC3" + }, + { + "bufferView":19330, + "componentType":5126, + "count":140, + "type":"VEC3" + }, + { + "bufferView":19331, + "componentType":5126, + "count":140, + "type":"VEC2" + }, + { + "bufferView":19332, + "componentType":5123, + "count":324, + "type":"SCALAR" + }, + { + "bufferView":19333, + "componentType":5126, + "count":582, + "max":[ + 197.86923217773438, + 237.57696533203125, + 180.9071044921875 + ], + "min":[ + -197.86849975585938, + -9.1552734375e-05, + -180.9066925048828 + ], + "type":"VEC3" + }, + { + "bufferView":19334, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":19335, + "componentType":5126, + "count":341, + "max":[ + 170.4345703125, + 188.555908203125, + 176.2041015625 + ], + "min":[ + -170.4345703125, + 45.296142578125, + -176.203125 + ], + "type":"VEC3" + }, + { + "bufferView":19336, + "componentType":5126, + "count":341, + "type":"VEC3" + }, + { + "bufferView":19337, + "componentType":5126, + "count":341, + "type":"VEC2" + }, + { + "bufferView":19338, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":19339, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19340, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19341, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19342, + "componentType":5126, + "count":71, + "max":[ + 3.7875118255615234, + 13.000020980834961, + 3.74242901802063 + ], + "min":[ + -3.7875607013702393, + -2.3352227799477987e-05, + -3.742408275604248 + ], + "type":"VEC3" + }, + { + "bufferView":19343, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":19344, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":19345, + "componentType":5126, + "count":586, + "max":[ + 162.3860626220703, + 108.34397888183594, + 169.10089111328125 + ], + "min":[ + -162.38360595703125, + 6.103515625e-05, + -169.10105895996094 + ], + "type":"VEC3" + }, + { + "bufferView":19346, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":19347, + "componentType":5126, + "count":722, + "max":[ + 36.19775390625, + 520.9698486328125, + 260.485107421875 + ], + "min":[ + -36.1982421875, + -3.0517578125e-05, + -260.48468017578125 + ], + "type":"VEC3" + }, + { + "bufferView":19348, + "componentType":5126, + "count":722, + "type":"VEC3" + }, + { + "bufferView":19349, + "componentType":5126, + "count":598, + "max":[ + 164.8965301513672, + 32.825321197509766, + 164.89666748046875 + ], + "min":[ + -164.89663696289062, + 1.52587890625e-05, + -164.89654541015625 + ], + "type":"VEC3" + }, + { + "bufferView":19350, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":19351, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19352, + "componentType":5126, + "count":98, + "max":[ + 1.4143146276474, + 10.517534255981445, + 5.258759021759033 + ], + "min":[ + -1.4143165349960327, + 6.008148193359375e-05, + -5.25871467590332 + ], + "type":"VEC3" + }, + { + "bufferView":19353, + "componentType":5126, + "count":98, + "type":"VEC3" + }, + { + "bufferView":19354, + "componentType":5126, + "count":98, + "type":"VEC2" + }, + { + "bufferView":19355, + "componentType":5126, + "count":562, + "max":[ + 187.32032775878906, + 194.036376953125, + 169.38272094726562 + ], + "min":[ + -187.31944274902344, + 1.3048629760742188, + -157.1023712158203 + ], + "type":"VEC3" + }, + { + "bufferView":19356, + "componentType":5126, + "count":562, + "type":"VEC3" + }, + { + "bufferView":19357, + "componentType":5126, + "count":336, + "max":[ + 115.14120483398438, + 230.28253173828125, + 13.560859680175781 + ], + "min":[ + -115.14124298095703, + 8.392333984375e-05, + -13.560562133789062 + ], + "type":"VEC3" + }, + { + "bufferView":19358, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":19359, + "componentType":5126, + "count":331, + "max":[ + 170.904296875, + 157.00390625, + 177.25439453125 + ], + "min":[ + -170.90625, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":19360, + "componentType":5126, + "count":331, + "type":"VEC3" + }, + { + "bufferView":19361, + "componentType":5126, + "count":331, + "type":"VEC2" + }, + { + "bufferView":19362, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":19363, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":19364, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19365, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19366, + "componentType":5126, + "count":8173, + "max":[ + 496.334228515625, + 427.0224609375, + 103.78564453125 + ], + "min":[ + -496.333984375, + 0, + -103.78759765625 + ], + "type":"VEC3" + }, + { + "bufferView":19367, + "componentType":5126, + "count":8173, + "type":"VEC3" + }, + { + "bufferView":19368, + "componentType":5126, + "count":8173, + "type":"VEC2" + }, + { + "bufferView":19369, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":19370, + "componentType":5126, + "count":556, + "max":[ + 187.31944274902344, + 194.036376953125, + 157.10189819335938 + ], + "min":[ + -187.32032775878906, + 1.304840087890625, + -169.3832244873047 + ], + "type":"VEC3" + }, + { + "bufferView":19371, + "componentType":5126, + "count":556, + "type":"VEC3" + }, + { + "bufferView":19372, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19373, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19374, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19375, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19376, + "componentType":5126, + "count":125, + "max":[ + 3.8607020378112793, + 15.442765235900879, + 7.72133207321167 + ], + "min":[ + -3.8606443405151367, + 8.296966552734375e-05, + -7.721349239349365 + ], + "type":"VEC3" + }, + { + "bufferView":19377, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":19378, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":19379, + "componentType":5126, + "count":432, + "max":[ + 6.750767230987549, + 245.5279541015625, + 6516.54052734375 + ], + "min":[ + -6.750643730163574, + 0, + -6516.54052734375 + ], + "type":"VEC3" + }, + { + "bufferView":19380, + "componentType":5126, + "count":432, + "type":"VEC3" + }, + { + "bufferView":19381, + "componentType":5126, + "count":432, + "type":"VEC2" + }, + { + "bufferView":19382, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":19383, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19384, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19385, + "componentType":5126, + "count":586, + "max":[ + 189.2086639404297, + 227.48583984375, + 173.01158142089844 + ], + "min":[ + -189.21136474609375, + 0.0001068115234375, + -173.01168823242188 + ], + "type":"VEC3" + }, + { + "bufferView":19386, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":19387, + "componentType":5126, + "count":8031, + "max":[ + 103.78759765625, + 1010.39501953125, + 180.119140625 + ], + "min":[ + -103.78662109375, + 12.32421875, + -180.1201171875 + ], + "type":"VEC3" + }, + { + "bufferView":19388, + "componentType":5126, + "count":8031, + "type":"VEC3" + }, + { + "bufferView":19389, + "componentType":5126, + "count":8031, + "type":"VEC2" + }, + { + "bufferView":19390, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":19391, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19392, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19393, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19394, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19395, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19396, + "componentType":5126, + "count":227, + "max":[ + 7.85205078125, + 248.992431640625, + 53.28369140625 + ], + "min":[ + -7.853515625, + 0.0001220703125, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":19397, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":19398, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":19399, + "componentType":5126, + "count":24, + "max":[ + 159.66650390625, + 25.8896484375, + 703.125 + ], + "min":[ + -159.6669921875, + 0, + -703.12451171875 + ], + "type":"VEC3" + }, + { + "bufferView":19400, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19401, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19402, + "componentType":5126, + "count":50, + "max":[ + 142.32275390625, + 608.220703125, + 391.73681640625 + ], + "min":[ + -142.31982421875, + 0, + -391.7373046875 + ], + "type":"VEC3" + }, + { + "bufferView":19403, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":19404, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":19405, + "componentType":5126, + "count":865, + "max":[ + 7.779110908508301, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778773307800293, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":19406, + "componentType":5126, + "count":865, + "type":"VEC3" + }, + { + "bufferView":19407, + "componentType":5126, + "count":865, + "type":"VEC2" + }, + { + "bufferView":19408, + "componentType":5126, + "count":159, + "max":[ + 769.70751953125, + 113.194580078125, + 56.5966796875 + ], + "min":[ + -769.709228515625, + 0, + -56.59716796875 + ], + "type":"VEC3" + }, + { + "bufferView":19409, + "componentType":5126, + "count":159, + "type":"VEC3" + }, + { + "bufferView":19410, + "componentType":5126, + "count":159, + "type":"VEC2" + }, + { + "bufferView":19411, + "componentType":5126, + "count":76, + "max":[ + 279.1028137207031, + 3543.081787109375, + 278.86810302734375 + ], + "min":[ + -279.1005859375, + 0, + -278.8689270019531 + ], + "type":"VEC3" + }, + { + "bufferView":19412, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":19413, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":19414, + "componentType":5126, + "count":582, + "max":[ + 160.69134521484375, + 167.5865020751953, + 146.3229217529297 + ], + "min":[ + -160.69309997558594, + 1.112884521484375, + -134.041748046875 + ], + "type":"VEC3" + }, + { + "bufferView":19415, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":19416, + "componentType":5126, + "count":52, + "max":[ + 238.48193359375, + 483.89794921875, + 30.0009765625 + ], + "min":[ + -238.4765625, + 0, + -30 + ], + "type":"VEC3" + }, + { + "bufferView":19417, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":19418, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":19419, + "componentType":5126, + "count":4062, + "max":[ + 37.946109771728516, + 117.86540222167969, + 219.26246643066406 + ], + "min":[ + -37.94618606567383, + 6.866455078125e-05, + -219.26394653320312 + ], + "type":"VEC3" + }, + { + "bufferView":19420, + "componentType":5126, + "count":4062, + "type":"VEC3" + }, + { + "bufferView":19421, + "componentType":5126, + "count":4062, + "type":"VEC2" + }, + { + "bufferView":19422, + "componentType":5126, + "count":600, + "max":[ + 154.7560272216797, + 224.42843627929688, + 138.917236328125 + ], + "min":[ + -161.966064453125, + 32.89521026611328, + -150.8489990234375 + ], + "type":"VEC3" + }, + { + "bufferView":19423, + "componentType":5126, + "count":600, + "type":"VEC3" + }, + { + "bufferView":19424, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19425, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19426, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19427, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":19428, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":19429, + "componentType":5126, + "count":52, + "max":[ + 142.32080078125, + 608.220703125, + 391.7373046875 + ], + "min":[ + -142.32177734375, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":19430, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":19431, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":19432, + "componentType":5126, + "count":72, + "max":[ + 771.3452758789062, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.345703125, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":19433, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":19434, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76708984375, + 78.58447265625 + ], + "min":[ + -46.2841796875, + 0, + -78.586669921875 + ], + "type":"VEC3" + }, + { + "bufferView":19435, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19436, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19437, + "componentType":5126, + "count":580, + "max":[ + 178.90992736816406, + 185.68356323242188, + 162.10052490234375 + ], + "min":[ + -178.91232299804688, + 1.2440414428710938, + -149.82022094726562 + ], + "type":"VEC3" + }, + { + "bufferView":19438, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":19439, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":19440, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19441, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19442, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19443, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19444, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19445, + "componentType":5126, + "count":1492, + "max":[ + 831.5908203125, + 3651.483642578125, + 381.83837890625 + ], + "min":[ + -635.6494140625, + 40.05810546875, + -381.83837890625 + ], + "type":"VEC3" + }, + { + "bufferView":19446, + "componentType":5126, + "count":1492, + "type":"VEC3" + }, + { + "bufferView":19447, + "componentType":5126, + "count":1492, + "type":"VEC2" + }, + { + "bufferView":19448, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":19449, + "componentType":5126, + "count":125, + "max":[ + 3.8606691360473633, + 15.442764282226562, + 7.721350193023682 + ], + "min":[ + -3.860673666000366, + 8.249282836914062e-05, + -7.721330165863037 + ], + "type":"VEC3" + }, + { + "bufferView":19450, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":19451, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":19452, + "componentType":5126, + "count":7788, + "max":[ + 103.786865234375, + 427.46484375, + 496.30615234375 + ], + "min":[ + -103.7867431640625, + 0, + -496.30712890625 + ], + "type":"VEC3" + }, + { + "bufferView":19453, + "componentType":5126, + "count":7788, + "type":"VEC3" + }, + { + "bufferView":19454, + "componentType":5126, + "count":7788, + "type":"VEC2" + }, + { + "bufferView":19455, + "componentType":5126, + "count":8173, + "max":[ + 496.334228515625, + 427.0224609375, + 103.78564453125 + ], + "min":[ + -496.333984375, + 0, + -103.78759765625 + ], + "type":"VEC3" + }, + { + "bufferView":19456, + "componentType":5126, + "count":8173, + "type":"VEC3" + }, + { + "bufferView":19457, + "componentType":5126, + "count":8173, + "type":"VEC2" + }, + { + "bufferView":19458, + "componentType":5126, + "count":12, + "max":[ + 8.345703125, + 341.14361572265625, + 360.897216796875 + ], + "min":[ + -8.34521484375, + -0.00054931640625, + -360.8974609375 + ], + "type":"VEC3" + }, + { + "bufferView":19459, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":19460, + "componentType":5126, + "count":12, + "type":"VEC2" + }, + { + "bufferView":19461, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19462, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19463, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19464, + "componentType":5126, + "count":586, + "max":[ + 157.88787841796875, + 163.70953369140625, + 137.75498962402344 + ], + "min":[ + -157.89076232910156, + -0.0001220703125, + -137.7549591064453 + ], + "type":"VEC3" + }, + { + "bufferView":19465, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":19466, + "componentType":5126, + "count":578, + "max":[ + 178.91232299804688, + 32.8253059387207, + 178.9110565185547 + ], + "min":[ + -178.90992736816406, + 3.814697265625e-05, + -178.9112548828125 + ], + "type":"VEC3" + }, + { + "bufferView":19467, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":19468, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19469, + "componentType":5126, + "count":140, + "max":[ + 57.79645919799805, + 61.74176025390625, + 45.56758499145508 + ], + "min":[ + -57.79677200317383, + 5.340576171875e-05, + -45.56761169433594 + ], + "type":"VEC3" + }, + { + "bufferView":19470, + "componentType":5126, + "count":140, + "type":"VEC3" + }, + { + "bufferView":19471, + "componentType":5126, + "count":140, + "type":"VEC2" + }, + { + "bufferView":19472, + "componentType":5126, + "count":584, + "max":[ + 185.9182586669922, + 32.825252532958984, + 185.91830444335938 + ], + "min":[ + -185.91859436035156, + 9.5367431640625e-05, + -185.9185333251953 + ], + "type":"VEC3" + }, + { + "bufferView":19473, + "componentType":5126, + "count":584, + "type":"VEC3" + }, + { + "bufferView":19474, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19475, + "componentType":5126, + "count":548, + "max":[ + 7.779087543487549, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778796672821045, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":19476, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":19477, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":19478, + "componentType":5126, + "count":350, + "max":[ + 171.298828125, + 184.80859375, + 176.140380859375 + ], + "min":[ + -171.296875, + 44.45703125, + -176.1416015625 + ], + "type":"VEC3" + }, + { + "bufferView":19479, + "componentType":5126, + "count":350, + "type":"VEC3" + }, + { + "bufferView":19480, + "componentType":5126, + "count":350, + "type":"VEC2" + }, + { + "bufferView":19481, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":19482, + "componentType":5126, + "count":568, + "max":[ + 191.89175415039062, + 123.23667907714844, + 199.9328155517578 + ], + "min":[ + -191.89332580566406, + 9.1552734375e-05, + -199.93313598632812 + ], + "type":"VEC3" + }, + { + "bufferView":19483, + "componentType":5126, + "count":568, + "type":"VEC3" + }, + { + "bufferView":19484, + "componentType":5126, + "count":576, + "max":[ + 150.7314453125, + 218.8985595703125, + 135.2484130859375 + ], + "min":[ + -157.94313049316406, + 32.054840087890625, + -147.179931640625 + ], + "type":"VEC3" + }, + { + "bufferView":19485, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":19486, + "componentType":5126, + "count":24, + "max":[ + 253.74305725097656, + 50, + 481.6465148925781 + ], + "min":[ + -253.74307250976562, + 0, + -481.64654541015625 + ], + "type":"VEC3" + }, + { + "bufferView":19487, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19488, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":19489, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19490, + "componentType":5126, + "count":76, + "max":[ + 279.10015869140625, + 3543.081787109375, + 278.8695068359375 + ], + "min":[ + -279.1027526855469, + 0, + -278.8675842285156 + ], + "type":"VEC3" + }, + { + "bufferView":19491, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":19492, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":19493, + "componentType":5126, + "count":166, + "max":[ + 769.70751953125, + 113.19482421875, + 56.5966796875 + ], + "min":[ + -769.709228515625, + 0.000244140625, + -56.59814453125 + ], + "type":"VEC3" + }, + { + "bufferView":19494, + "componentType":5126, + "count":166, + "type":"VEC3" + }, + { + "bufferView":19495, + "componentType":5126, + "count":166, + "type":"VEC2" + }, + { + "bufferView":19496, + "componentType":5126, + "count":48, + "max":[ + 142.31884765625, + 608.220703125, + 391.737548828125 + ], + "min":[ + -142.32373046875, + 0, + -391.7374267578125 + ], + "type":"VEC3" + }, + { + "bufferView":19497, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":19498, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":19499, + "componentType":5126, + "count":48, + "max":[ + 127.44287109375, + 625.6328125, + 391.73583984375 + ], + "min":[ + -127.4443359375, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":19500, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":19501, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":19502, + "componentType":5126, + "count":48, + "max":[ + 756.610107421875, + 2198.73388671875, + 58.382816314697266 + ], + "min":[ + -756.6087036132812, + 0, + -58.38306427001953 + ], + "type":"VEC3" + }, + { + "bufferView":19503, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":19504, + "componentType":5126, + "count":565, + "max":[ + 182.50497436523438, + 219.67001342773438, + 166.8965301513672 + ], + "min":[ + -182.50253295898438, + 9.1552734375e-05, + -166.89700317382812 + ], + "type":"VEC3" + }, + { + "bufferView":19505, + "componentType":5126, + "count":565, + "type":"VEC3" + }, + { + "bufferView":19506, + "componentType":5126, + "count":366, + "max":[ + 1060.1865234375, + 12554.818359375, + 6043.28955078125 + ], + "min":[ + -1060.1875, + 0.000278472900390625, + -6043.291015625 + ], + "type":"VEC3" + }, + { + "bufferView":19507, + "componentType":5126, + "count":366, + "type":"VEC3" + }, + { + "bufferView":19508, + "componentType":5126, + "count":366, + "type":"VEC2" + }, + { + "bufferView":19509, + "componentType":5126, + "count":648, + "max":[ + 615.01123046875, + 2510.92529296875, + 347.265625 + ], + "min":[ + -615.011474609375, + -6.103515625e-05, + -347.266357421875 + ], + "type":"VEC3" + }, + { + "bufferView":19510, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":19511, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":19512, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19513, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19514, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19515, + "componentType":5126, + "count":816, + "max":[ + 4.1328125, + 90.58740997314453, + 34.45703887939453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":19516, + "componentType":5126, + "count":816, + "type":"VEC3" + }, + { + "bufferView":19517, + "componentType":5126, + "count":816, + "type":"VEC2" + }, + { + "bufferView":19518, + "componentType":5126, + "count":228, + "max":[ + 105.79638671875, + 2059.5048828125, + 105.79931640625 + ], + "min":[ + -105.798828125, + 0, + -105.800048828125 + ], + "type":"VEC3" + }, + { + "bufferView":19519, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":19520, + "componentType":5126, + "count":228, + "type":"VEC2" + }, + { + "bufferView":19521, + "componentType":5126, + "count":576, + "max":[ + 202.73544311523438, + 209.34921264648438, + 182.73387145996094 + ], + "min":[ + -202.73629760742188, + 1.4157562255859375, + -170.45249938964844 + ], + "type":"VEC3" + }, + { + "bufferView":19522, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":19523, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19524, + "componentType":5126, + "count":8186, + "max":[ + 496.334228515625, + 427.0224609375, + 103.78662109375 + ], + "min":[ + -496.333984375, + 0, + -103.78662109375 + ], + "type":"VEC3" + }, + { + "bufferView":19525, + "componentType":5126, + "count":8186, + "type":"VEC3" + }, + { + "bufferView":19526, + "componentType":5126, + "count":8186, + "type":"VEC2" + }, + { + "bufferView":19527, + "componentType":5126, + "count":4, + "max":[ + 0, + 2586.479248046875, + 698.884033203125 + ], + "min":[ + 0, + 0, + -698.884521484375 + ], + "type":"VEC3" + }, + { + "bufferView":19528, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19529, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19530, + "componentType":5126, + "count":570, + "max":[ + 325.56951904296875, + 210.5472412109375, + 325.56951904296875 + ], + "min":[ + -325.56951904296875, + -4.842902490054257e-05, + -325.5695495605469 + ], + "type":"VEC3" + }, + { + "bufferView":19531, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":19532, + "componentType":5126, + "count":96, + "max":[ + 599.9990234375, + 143.7607421875, + 7168 + ], + "min":[ + -599.9991455078125, + -1.52587890625e-05, + -7168.0009765625 + ], + "type":"VEC3" + }, + { + "bufferView":19533, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":19534, + "componentType":5126, + "count":340, + "max":[ + 45.85676574707031, + 227.53482055664062, + 115.35122680664062 + ], + "min":[ + -45.858154296875, + -7.62939453125e-06, + -115.35122680664062 + ], + "type":"VEC3" + }, + { + "bufferView":19535, + "componentType":5126, + "count":340, + "type":"VEC3" + }, + { + "bufferView":19536, + "componentType":5126, + "count":592, + "max":[ + 179.8218994140625, + 216.54360961914062, + 164.45082092285156 + ], + "min":[ + -179.82052612304688, + 1.52587890625e-05, + -164.45082092285156 + ], + "type":"VEC3" + }, + { + "bufferView":19537, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":19538, + "componentType":5126, + "count":51, + "max":[ + 123.61474609375, + 696.755859375, + 366.15362548828125 + ], + "min":[ + -123.61376953125, + 0, + -366.15228271484375 + ], + "type":"VEC3" + }, + { + "bufferView":19539, + "componentType":5126, + "count":51, + "type":"VEC3" + }, + { + "bufferView":19540, + "componentType":5126, + "count":51, + "type":"VEC2" + }, + { + "bufferView":19541, + "componentType":5126, + "count":60, + "max":[ + 3.7875030040740967, + 13.413309097290039, + 4.245893955230713 + ], + "min":[ + -3.7875640392303467, + 0.000110626220703125, + -4.245933532714844 + ], + "type":"VEC3" + }, + { + "bufferView":19542, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":19543, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":19544, + "componentType":5126, + "count":592, + "max":[ + 155.25723266601562, + 215.2119903564453, + 144.73403930664062 + ], + "min":[ + -148.05226135253906, + 31.494781494140625, + -132.80245971679688 + ], + "type":"VEC3" + }, + { + "bufferView":19545, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":19546, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19547, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":19548, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":19549, + "componentType":5126, + "count":362, + "max":[ + 131.3284912109375, + 220.878662109375, + 138.186279296875 + ], + "min":[ + -131.32923889160156, + 0, + -138.187255859375 + ], + "type":"VEC3" + }, + { + "bufferView":19550, + "componentType":5126, + "count":362, + "type":"VEC3" + }, + { + "bufferView":19551, + "componentType":5126, + "count":224, + "max":[ + 118.72064208984375, + 230.7025146484375, + 115.35128021240234 + ], + "min":[ + -118.72103881835938, + 3.0517578125e-05, + -115.35131072998047 + ], + "type":"VEC3" + }, + { + "bufferView":19552, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":19553, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.58447265625 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.586669921875 + ], + "type":"VEC3" + }, + { + "bufferView":19554, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19555, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19556, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":19557, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19558, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19559, + "componentType":5126, + "count":590, + "max":[ + 165.48817443847656, + 239.1734619140625, + 148.70077514648438 + ], + "min":[ + -172.69406127929688, + 35.13507080078125, + -160.63314819335938 + ], + "type":"VEC3" + }, + { + "bufferView":19560, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":19561, + "componentType":5126, + "count":16, + "max":[ + 1565.17626953125, + 1203, + 2265.6162109375 + ], + "min":[ + -1565.17626953125, + 0, + -2265.615478515625 + ], + "type":"VEC3" + }, + { + "bufferView":19562, + "componentType":5126, + "count":16, + "type":"VEC3" + }, + { + "bufferView":19563, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":19564, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19565, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19566, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19567, + "componentType":5126, + "count":262, + "max":[ + 169.0634765625, + 193.25537109375, + 174.408203125 + ], + "min":[ + -169.0625, + 0.00048828125, + -174.408203125 + ], + "type":"VEC3" + }, + { + "bufferView":19568, + "componentType":5126, + "count":262, + "type":"VEC3" + }, + { + "bufferView":19569, + "componentType":5126, + "count":262, + "type":"VEC2" + }, + { + "bufferView":19570, + "componentType":5126, + "count":648, + "max":[ + 615.01171875, + 2510.925048828125, + 347.26611328125 + ], + "min":[ + -615.01025390625, + 0, + -347.265625 + ], + "type":"VEC3" + }, + { + "bufferView":19571, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":19572, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":19573, + "componentType":5126, + "count":168, + "max":[ + 29.924560546875, + 1132.8153076171875, + 29.9249267578125 + ], + "min":[ + -29.92431640625, + 0, + -29.9241943359375 + ], + "type":"VEC3" + }, + { + "bufferView":19574, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":19575, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":19576, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19577, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19578, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19579, + "componentType":5126, + "count":60, + "max":[ + 3.787405490875244, + 13.693549156188965, + 6.47286319732666 + ], + "min":[ + -3.787666082382202, + -2.956390380859375e-05, + -6.472907543182373 + ], + "type":"VEC3" + }, + { + "bufferView":19580, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":19581, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":19582, + "componentType":5126, + "count":234, + "max":[ + 91.49453735351562, + 2267.8251953125, + 91.49449920654297 + ], + "min":[ + -91.49444580078125, + 9.918212890625e-05, + -91.49444580078125 + ], + "type":"VEC3" + }, + { + "bufferView":19583, + "componentType":5126, + "count":234, + "type":"VEC3" + }, + { + "bufferView":19584, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":19585, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":19586, + "componentType":5126, + "count":24, + "max":[ + 159.6669921875, + 25.890380859375, + 6691.4462890625 + ], + "min":[ + -159.666015625, + 0.000732421875, + -6691.44384765625 + ], + "type":"VEC3" + }, + { + "bufferView":19587, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19588, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19589, + "componentType":5126, + "count":24, + "max":[ + 12.500126838684082, + 537.3468627929688, + 135.7646942138672 + ], + "min":[ + -12.500127792358398, + 6.103515625e-05, + -135.76467895507812 + ], + "type":"VEC3" + }, + { + "bufferView":19590, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19591, + "componentType":5126, + "count":599, + "max":[ + 150.3146514892578, + 182.1543731689453, + 137.54537963867188 + ], + "min":[ + -150.31231689453125, + 8.392333984375e-05, + -137.54502868652344 + ], + "type":"VEC3" + }, + { + "bufferView":19592, + "componentType":5126, + "count":599, + "type":"VEC3" + }, + { + "bufferView":19593, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19594, + "componentType":5126, + "count":118, + "max":[ + 31.293121337890625, + 15.510947227478027, + 6.503257751464844 + ], + "min":[ + -31.29315185546875, + -2.09808349609375e-05, + -6.5023345947265625 + ], + "type":"VEC3" + }, + { + "bufferView":19595, + "componentType":5126, + "count":118, + "type":"VEC3" + }, + { + "bufferView":19596, + "componentType":5126, + "count":118, + "type":"VEC2" + }, + { + "bufferView":19597, + "componentType":5126, + "count":574, + "max":[ + 163.4947967529297, + 170.37051391601562, + 148.75033569335938 + ], + "min":[ + -163.4954833984375, + 1.13299560546875, + -136.4691162109375 + ], + "type":"VEC3" + }, + { + "bufferView":19598, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":19599, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":19600, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19601, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19602, + "componentType":5126, + "count":136, + "max":[ + 69.570556640625, + 156.626220703125, + 824.2421875 + ], + "min":[ + -69.5689697265625, + -0.000244140625, + -824.24169921875 + ], + "type":"VEC3" + }, + { + "bufferView":19603, + "componentType":5126, + "count":136, + "type":"VEC3" + }, + { + "bufferView":19604, + "componentType":5126, + "count":136, + "type":"VEC2" + }, + { + "bufferView":19605, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.456298828125, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.0006103515625, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":19606, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":19607, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":19608, + "componentType":5126, + "count":576, + "max":[ + 156.4895782470703, + 163.41033935546875, + 130.4006805419922 + ], + "min":[ + -156.4861602783203, + 1.0826950073242188, + -142.6818389892578 + ], + "type":"VEC3" + }, + { + "bufferView":19609, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":19610, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19611, + "componentType":5126, + "count":586, + "max":[ + 176.10647583007812, + 181.67581176757812, + 153.53298950195312 + ], + "min":[ + -176.10997009277344, + 0.00022125244140625, + -153.53302001953125 + ], + "type":"VEC3" + }, + { + "bufferView":19612, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":19613, + "componentType":5126, + "count":325, + "max":[ + 171.296875, + 184.80517578125, + 176.140380859375 + ], + "min":[ + -171.2998046875, + 44.4541015625, + -176.141845703125 + ], + "type":"VEC3" + }, + { + "bufferView":19614, + "componentType":5126, + "count":325, + "type":"VEC3" + }, + { + "bufferView":19615, + "componentType":5126, + "count":325, + "type":"VEC2" + }, + { + "bufferView":19616, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":19617, + "componentType":5126, + "count":678, + "max":[ + 843.60546875, + 1001.3758544921875, + 928.7474975585938 + ], + "min":[ + -843.6015625, + 9.1552734375e-05, + -928.7440795898438 + ], + "type":"VEC3" + }, + { + "bufferView":19618, + "componentType":5126, + "count":678, + "type":"VEC3" + }, + { + "bufferView":19619, + "componentType":5126, + "count":678, + "type":"VEC2" + }, + { + "bufferView":19620, + "componentType":5126, + "count":48, + "max":[ + 123.6171875, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.61181640625, + 0, + -366.153076171875 + ], + "type":"VEC3" + }, + { + "bufferView":19621, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":19622, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":19623, + "componentType":5126, + "count":570, + "max":[ + 211.34117126464844, + 32.82524871826172, + 211.3397216796875 + ], + "min":[ + -211.33865356445312, + 0.00011444091796875, + -211.3401336669922 + ], + "type":"VEC3" + }, + { + "bufferView":19624, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":19625, + "componentType":5126, + "count":813, + "max":[ + 4.1328125, + 90.58740997314453, + 34.45850372314453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45459747314453 + ], + "type":"VEC3" + }, + { + "bufferView":19626, + "componentType":5126, + "count":813, + "type":"VEC3" + }, + { + "bufferView":19627, + "componentType":5126, + "count":813, + "type":"VEC2" + }, + { + "bufferView":19628, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":19629, + "componentType":5126, + "count":182, + "max":[ + 769.70947265625, + 113.194580078125, + 56.596923828125 + ], + "min":[ + -769.7080078125, + 6.103515625e-05, + -56.597412109375 + ], + "type":"VEC3" + }, + { + "bufferView":19630, + "componentType":5126, + "count":182, + "type":"VEC3" + }, + { + "bufferView":19631, + "componentType":5126, + "count":182, + "type":"VEC2" + }, + { + "bufferView":19632, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":19633, + "componentType":5126, + "count":488, + "max":[ + 879.658203125, + 587.0332641601562, + 879.6616821289062 + ], + "min":[ + -879.66015625, + 3.0517578125e-05, + -879.6587524414062 + ], + "type":"VEC3" + }, + { + "bufferView":19634, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":19635, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":19636, + "componentType":5126, + "count":593, + "max":[ + 142.2647705078125, + 172.77532958984375, + 130.20773315429688 + ], + "min":[ + -142.26708984375, + -2.288818359375e-05, + -130.20700073242188 + ], + "type":"VEC3" + }, + { + "bufferView":19637, + "componentType":5126, + "count":593, + "type":"VEC3" + }, + { + "bufferView":19638, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19639, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19640, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19641, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19642, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19643, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19644, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19645, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":19646, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19647, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19648, + "componentType":5126, + "count":4802, + "max":[ + 91.3736801147461, + 182.74732971191406, + 6.498479843139648 + ], + "min":[ + -91.37361907958984, + 1.5562191038043238e-05, + -6.498486042022705 + ], + "type":"VEC3" + }, + { + "bufferView":19649, + "componentType":5126, + "count":4802, + "type":"VEC3" + }, + { + "bufferView":19650, + "componentType":5126, + "count":4802, + "type":"VEC2" + }, + { + "bufferView":19651, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19652, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19653, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19654, + "componentType":5126, + "count":60, + "max":[ + 2752.0009765625, + 2819.531005859375, + 1436.7666015625 + ], + "min":[ + -2752.0029296875, + 0, + -1436.763671875 + ], + "type":"VEC3" + }, + { + "bufferView":19655, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":19656, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":19657, + "componentType":5126, + "count":2703, + "max":[ + 128.19970703125, + 421.52587890625, + 128.19873046875 + ], + "min":[ + -128.19921875, + 0, + -128.19921875 + ], + "type":"VEC3" + }, + { + "bufferView":19658, + "componentType":5126, + "count":2703, + "type":"VEC3" + }, + { + "bufferView":19659, + "componentType":5126, + "count":2703, + "type":"VEC2" + }, + { + "bufferView":19660, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19661, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19662, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19663, + "componentType":5126, + "count":1021, + "max":[ + 90.109375, + 254.306640625, + 29.7841796875 + ], + "min":[ + -90.10888671875, + 1.31201171875, + -29.7890625 + ], + "type":"VEC3" + }, + { + "bufferView":19664, + "componentType":5126, + "count":1021, + "type":"VEC3" + }, + { + "bufferView":19665, + "componentType":5126, + "count":1021, + "type":"VEC2" + }, + { + "bufferView":19666, + "componentType":5123, + "count":2400, + "type":"SCALAR" + }, + { + "bufferView":19667, + "componentType":5126, + "count":598, + "max":[ + 159.70297241210938, + 193.0960693359375, + 146.10610961914062 + ], + "min":[ + -159.70167541503906, + -0.0002288818359375, + -146.1061248779297 + ], + "type":"VEC3" + }, + { + "bufferView":19668, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":19669, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19670, + "componentType":5126, + "count":587, + "max":[ + 148.9708251953125, + 101.9517822265625, + 155.0863800048828 + ], + "min":[ + -148.97369384765625, + 7.62939453125e-05, + -155.08645629882812 + ], + "type":"VEC3" + }, + { + "bufferView":19671, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":19672, + "componentType":5126, + "count":46, + "max":[ + 161.97705078125, + 658.67578125, + 366.1527099609375 + ], + "min":[ + -161.98291015625, + 0, + -366.1527404785156 + ], + "type":"VEC3" + }, + { + "bufferView":19673, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":19674, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":19675, + "componentType":5126, + "count":594, + "max":[ + 148.97080993652344, + 180.591064453125, + 136.3221435546875 + ], + "min":[ + -148.9737091064453, + 0.0001220703125, + -136.32241821289062 + ], + "type":"VEC3" + }, + { + "bufferView":19676, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":19677, + "componentType":5126, + "count":488, + "max":[ + 879.6591796875, + 587.0332641601562, + 879.6592407226562 + ], + "min":[ + -879.6591796875, + 3.0517578125e-05, + -879.6607055664062 + ], + "type":"VEC3" + }, + { + "bufferView":19678, + "componentType":5126, + "count":488, + "type":"VEC3" + }, + { + "bufferView":19679, + "componentType":5126, + "count":488, + "type":"VEC2" + }, + { + "bufferView":19680, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19681, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19682, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19683, + "componentType":5126, + "count":71, + "max":[ + 3.7875263690948486, + 13.413311004638672, + 4.245928764343262 + ], + "min":[ + -3.787546396255493, + 0.00010930931603070349, + -4.2459025382995605 + ], + "type":"VEC3" + }, + { + "bufferView":19684, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":19685, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":19686, + "componentType":5126, + "count":347, + "max":[ + 170.9052734375, + 157.00341796875, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":19687, + "componentType":5126, + "count":347, + "type":"VEC3" + }, + { + "bufferView":19688, + "componentType":5126, + "count":347, + "type":"VEC2" + }, + { + "bufferView":19689, + "componentType":5126, + "count":24, + "max":[ + 584.6640625, + 50.00001525878906, + 110.00007629394531 + ], + "min":[ + -584.6640625, + -1.660953785176389e-05, + -110.00010681152344 + ], + "type":"VEC3" + }, + { + "bufferView":19690, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19691, + "componentType":5126, + "count":570, + "max":[ + 188.72206115722656, + 195.42843627929688, + 170.596435546875 + ], + "min":[ + -188.72061157226562, + 1.314910888671875, + -158.31605529785156 + ], + "type":"VEC3" + }, + { + "bufferView":19692, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":19693, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":19694, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":19695, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":19696, + "componentType":5126, + "count":1022, + "max":[ + 125.22607421875, + 76.19921875, + 90.10888671875 + ], + "min":[ + -125.22607421875, + 0, + -90.10888671875 + ], + "type":"VEC3" + }, + { + "bufferView":19697, + "componentType":5126, + "count":1022, + "type":"VEC3" + }, + { + "bufferView":19698, + "componentType":5126, + "count":1022, + "type":"VEC2" + }, + { + "bufferView":19699, + "componentType":5126, + "count":578, + "max":[ + 190.12181091308594, + 196.82052612304688, + 159.529296875 + ], + "min":[ + -190.123779296875, + 1.3249893188476562, + -171.8106231689453 + ], + "type":"VEC3" + }, + { + "bufferView":19700, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":19701, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19702, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19703, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19704, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19705, + "componentType":5126, + "count":227, + "max":[ + 7.853515625, + 248.992919921875, + 53.28466796875 + ], + "min":[ + -7.85205078125, + 0.0006103515625, + -53.28466796875 + ], + "type":"VEC3" + }, + { + "bufferView":19706, + "componentType":5126, + "count":227, + "type":"VEC3" + }, + { + "bufferView":19707, + "componentType":5126, + "count":227, + "type":"VEC2" + }, + { + "bufferView":19708, + "componentType":5126, + "count":125, + "max":[ + 3.8607020378112793, + 15.442765235900879, + 7.72133207321167 + ], + "min":[ + -3.8606443405151367, + 8.296966552734375e-05, + -7.721349239349365 + ], + "type":"VEC3" + }, + { + "bufferView":19709, + "componentType":5126, + "count":125, + "type":"VEC3" + }, + { + "bufferView":19710, + "componentType":5126, + "count":125, + "type":"VEC2" + }, + { + "bufferView":19711, + "componentType":5126, + "count":112, + "max":[ + 101.75885009765625, + 150.65576171875, + 75.328125 + ], + "min":[ + -101.759033203125, + 0, + -75.327392578125 + ], + "type":"VEC3" + }, + { + "bufferView":19712, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":19713, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":19714, + "componentType":5123, + "count":240, + "type":"SCALAR" + }, + { + "bufferView":19715, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":19716, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19717, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19718, + "componentType":5126, + "count":528, + "max":[ + 722.720703125, + 2637.3974609375, + 19.80284309387207 + ], + "min":[ + -722.720703125, + 0, + -19.80308723449707 + ], + "type":"VEC3" + }, + { + "bufferView":19719, + "componentType":5126, + "count":528, + "type":"VEC3" + }, + { + "bufferView":19720, + "componentType":5126, + "count":528, + "type":"VEC2" + }, + { + "bufferView":19721, + "componentType":5126, + "count":168, + "max":[ + 21.169921875, + 1873.388671875, + 21.171875 + ], + "min":[ + -21.173828125, + 0, + -21.172607421875 + ], + "type":"VEC3" + }, + { + "bufferView":19722, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":19723, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":19724, + "componentType":5126, + "count":247, + "max":[ + 173.28125, + 188.23828125, + 169.1015625 + ], + "min":[ + -173.28125, + 0, + -169.1015625 + ], + "type":"VEC3" + }, + { + "bufferView":19725, + "componentType":5126, + "count":247, + "type":"VEC3" + }, + { + "bufferView":19726, + "componentType":5126, + "count":247, + "type":"VEC2" + }, + { + "bufferView":19727, + "componentType":5126, + "count":672, + "max":[ + 6.751345634460449, + 2490.57568359375, + 7014.0732421875 + ], + "min":[ + -6.751345634460449, + 0, + -7014.0732421875 + ], + "type":"VEC3" + }, + { + "bufferView":19728, + "componentType":5126, + "count":672, + "type":"VEC3" + }, + { + "bufferView":19729, + "componentType":5126, + "count":672, + "type":"VEC2" + }, + { + "bufferView":19730, + "componentType":5126, + "count":582, + "max":[ + 181.71339416503906, + 188.46771240234375, + 164.5279541015625 + ], + "min":[ + -181.71473693847656, + 1.2641525268554688, + -152.24758911132812 + ], + "type":"VEC3" + }, + { + "bufferView":19731, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":19732, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":19733, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19734, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19735, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":19736, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19737, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19738, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":19739, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19740, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19741, + "componentType":5126, + "count":24, + "max":[ + 13.57373046875, + 1879.529541015625, + 334.78076171875 + ], + "min":[ + -13.5732421875, + 0, + -334.78125 + ], + "type":"VEC3" + }, + { + "bufferView":19742, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19743, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19744, + "componentType":5126, + "count":687, + "max":[ + 150.83139038085938, + 239.3956298828125, + 147.66860961914062 + ], + "min":[ + -150.83389282226562, + -4.57763671875e-05, + -147.66815185546875 + ], + "type":"VEC3" + }, + { + "bufferView":19745, + "componentType":5126, + "count":687, + "type":"VEC3" + }, + { + "bufferView":19746, + "componentType":5126, + "count":52, + "max":[ + 161.98095703125, + 658.67578125, + 366.15283203125 + ], + "min":[ + -161.97900390625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":19747, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":19748, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":19749, + "componentType":5126, + "count":323, + "max":[ + 3.8607194423675537, + 15.442765235900879, + 7.721343517303467 + ], + "min":[ + -3.8606269359588623, + 8.296966552734375e-05, + -7.721337795257568 + ], + "type":"VEC3" + }, + { + "bufferView":19750, + "componentType":5126, + "count":323, + "type":"VEC3" + }, + { + "bufferView":19751, + "componentType":5126, + "count":323, + "type":"VEC2" + }, + { + "bufferView":19752, + "componentType":5126, + "count":160, + "max":[ + 769.70751953125, + 113.194580078125, + 56.59765625 + ], + "min":[ + -769.709228515625, + 0, + -56.5966796875 + ], + "type":"VEC3" + }, + { + "bufferView":19753, + "componentType":5126, + "count":160, + "type":"VEC3" + }, + { + "bufferView":19754, + "componentType":5126, + "count":160, + "type":"VEC2" + }, + { + "bufferView":19755, + "componentType":5126, + "count":587, + "max":[ + 164.1466827392578, + 237.33001708984375, + 147.47784423828125 + ], + "min":[ + -171.35311889648438, + 34.85478973388672, + -159.41018676757812 + ], + "type":"VEC3" + }, + { + "bufferView":19756, + "componentType":5126, + "count":587, + "type":"VEC3" + }, + { + "bufferView":19757, + "componentType":5126, + "count":583, + "max":[ + 169.09251403808594, + 204.03823852539062, + 154.6665496826172 + ], + "min":[ + -169.08970642089844, + -0.0001983642578125, + -154.66726684570312 + ], + "type":"VEC3" + }, + { + "bufferView":19758, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":19759, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19760, + "componentType":5126, + "count":24, + "max":[ + 13.6904296875, + 40.78076171875, + 2279.094970703125 + ], + "min":[ + -13.69384765625, + 0, + -2279.09619140625 + ], + "type":"VEC3" + }, + { + "bufferView":19761, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19762, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19763, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":19764, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19765, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19766, + "componentType":5126, + "count":586, + "max":[ + 159.28961181640625, + 166.1944580078125, + 145.10879516601562 + ], + "min":[ + -159.29193115234375, + 1.1027374267578125, + -132.8285369873047 + ], + "type":"VEC3" + }, + { + "bufferView":19767, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":19768, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19769, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19770, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19771, + "componentType":5126, + "count":49, + "max":[ + 161.98095703125, + 658.67578125, + 366.15283203125 + ], + "min":[ + -161.97900390625, + 0, + -366.15283203125 + ], + "type":"VEC3" + }, + { + "bufferView":19772, + "componentType":5126, + "count":49, + "type":"VEC3" + }, + { + "bufferView":19773, + "componentType":5126, + "count":49, + "type":"VEC2" + }, + { + "bufferView":19774, + "componentType":5126, + "count":185, + "max":[ + 769.70703125, + 113.194580078125, + 56.59814453125 + ], + "min":[ + -769.71044921875, + 0, + -56.59619140625 + ], + "type":"VEC3" + }, + { + "bufferView":19775, + "componentType":5126, + "count":185, + "type":"VEC3" + }, + { + "bufferView":19776, + "componentType":5126, + "count":185, + "type":"VEC2" + }, + { + "bufferView":19777, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":19778, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.0732421875 + ], + "min":[ + -27.193359375, + 0, + -126.073486328125 + ], + "type":"VEC3" + }, + { + "bufferView":19779, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19780, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19781, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":19782, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19783, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19784, + "componentType":5126, + "count":323, + "max":[ + 3.8607020378112793, + 15.442765235900879, + 7.72133207321167 + ], + "min":[ + -3.8606443405151367, + 8.296966552734375e-05, + -7.721349239349365 + ], + "type":"VEC3" + }, + { + "bufferView":19785, + "componentType":5126, + "count":323, + "type":"VEC3" + }, + { + "bufferView":19786, + "componentType":5126, + "count":323, + "type":"VEC2" + }, + { + "bufferView":19787, + "componentType":5126, + "count":326, + "max":[ + 170.90625, + 157.0029296875, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.2890625, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":19788, + "componentType":5126, + "count":326, + "type":"VEC3" + }, + { + "bufferView":19789, + "componentType":5126, + "count":326, + "type":"VEC2" + }, + { + "bufferView":19790, + "componentType":5126, + "count":54, + "max":[ + 217.04052734375, + 520.125244140625, + 29.798828125 + ], + "min":[ + -217.04150390625, + 0.000244140625, + -29.798828125 + ], + "type":"VEC3" + }, + { + "bufferView":19791, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":19792, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":19793, + "componentType":5126, + "count":228, + "max":[ + 91.49446105957031, + 2020.37548828125, + 646.1930541992188 + ], + "min":[ + -91.49473571777344, + 3.0517578125e-05, + -589.9326782226562 + ], + "type":"VEC3" + }, + { + "bufferView":19794, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":19795, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":19796, + "componentType":5126, + "count":24, + "max":[ + 15.474609375, + 2142.8671875, + 381.68865966796875 + ], + "min":[ + -15.4755859375, + 0, + -381.68524169921875 + ], + "type":"VEC3" + }, + { + "bufferView":19797, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19798, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19799, + "componentType":5126, + "count":815, + "max":[ + 4.1318359375, + 90.58753204345703, + 34.45752716064453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45630645751953 + ], + "type":"VEC3" + }, + { + "bufferView":19800, + "componentType":5126, + "count":815, + "type":"VEC3" + }, + { + "bufferView":19801, + "componentType":5126, + "count":815, + "type":"VEC2" + }, + { + "bufferView":19802, + "componentType":5126, + "count":566, + "max":[ + 187.31944274902344, + 32.825252532958984, + 187.3197479248047 + ], + "min":[ + -187.32032775878906, + 3.814697265625e-05, + -187.3200225830078 + ], + "type":"VEC3" + }, + { + "bufferView":19803, + "componentType":5126, + "count":566, + "type":"VEC3" + }, + { + "bufferView":19804, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19805, + "componentType":5126, + "count":548, + "max":[ + 7.779087543487549, + 21.311786651611328, + 10.655911445617676 + ], + "min":[ + -7.778796672821045, + -2.956390380859375e-05, + -10.655909538269043 + ], + "type":"VEC3" + }, + { + "bufferView":19806, + "componentType":5126, + "count":548, + "type":"VEC3" + }, + { + "bufferView":19807, + "componentType":5126, + "count":548, + "type":"VEC2" + }, + { + "bufferView":19808, + "componentType":5126, + "count":168, + "max":[ + 769.70751953125, + 113.194580078125, + 56.59716796875 + ], + "min":[ + -769.709228515625, + 0, + -56.597412109375 + ], + "type":"VEC3" + }, + { + "bufferView":19809, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":19810, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":19811, + "componentType":5126, + "count":346, + "max":[ + 171.2998046875, + 184.80908203125, + 176.140869140625 + ], + "min":[ + -171.296875, + 44.4580078125, + -176.14111328125 + ], + "type":"VEC3" + }, + { + "bufferView":19812, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":19813, + "componentType":5126, + "count":346, + "type":"VEC2" + }, + { + "bufferView":19814, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":19815, + "componentType":5126, + "count":583, + "max":[ + 190.5502166748047, + 122.43497467041016, + 198.53135681152344 + ], + "min":[ + -190.5523681640625, + -0.000244140625, + -198.53167724609375 + ], + "type":"VEC3" + }, + { + "bufferView":19816, + "componentType":5126, + "count":583, + "type":"VEC3" + }, + { + "bufferView":19817, + "componentType":5126, + "count":24, + "max":[ + 110.00007629394531, + 50, + 481.6465148925781 + ], + "min":[ + -110.00010681152344, + 0, + -481.6465148925781 + ], + "type":"VEC3" + }, + { + "bufferView":19818, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19819, + "componentType":5126, + "count":341, + "max":[ + 170.9052734375, + 156.999267578125, + 177.25439453125 + ], + "min":[ + -170.9052734375, + 21.2880859375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":19820, + "componentType":5126, + "count":341, + "type":"VEC3" + }, + { + "bufferView":19821, + "componentType":5126, + "count":341, + "type":"VEC2" + }, + { + "bufferView":19822, + "componentType":5126, + "count":24, + "max":[ + 463.990234375, + 50, + 110 + ], + "min":[ + -463.990234375, + 0, + -110 + ], + "type":"VEC3" + }, + { + "bufferView":19823, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19824, + "componentType":5126, + "count":24, + "max":[ + 2144.989013671875, + 78.50118255615234, + 6719.9541015625 + ], + "min":[ + -2144.98876953125, + 5.0821981858462095e-06, + -6719.9541015625 + ], + "type":"VEC3" + }, + { + "bufferView":19825, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19826, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19827, + "componentType":5126, + "count":598, + "max":[ + 148.97369384765625, + 180.5911102294922, + 136.32235717773438 + ], + "min":[ + -148.97079467773438, + 5.340576171875e-05, + -136.32205200195312 + ], + "type":"VEC3" + }, + { + "bufferView":19828, + "componentType":5126, + "count":598, + "type":"VEC3" + }, + { + "bufferView":19829, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19830, + "componentType":5126, + "count":580, + "max":[ + 199.82736206054688, + 126.65156555175781, + 204.45651245117188 + ], + "min":[ + -192.61654663085938, + 0.8282699584960938, + -204.45687866210938 + ], + "type":"VEC3" + }, + { + "bufferView":19831, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":19832, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19833, + "componentType":5126, + "count":582, + "max":[ + 202.73629760742188, + 209.34921264648438, + 170.45252990722656 + ], + "min":[ + -202.73544311523438, + 1.4157257080078125, + -182.73390197753906 + ], + "type":"VEC3" + }, + { + "bufferView":19834, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":19835, + "componentType":5126, + "count":60, + "max":[ + 3.7875330448150635, + 13.413309097290039, + 4.24593448638916 + ], + "min":[ + -3.7875311374664307, + 0.000110626220703125, + -4.2458930015563965 + ], + "type":"VEC3" + }, + { + "bufferView":19836, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":19837, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":19838, + "componentType":5126, + "count":586, + "max":[ + 191.5255126953125, + 32.82521057128906, + 191.52423095703125 + ], + "min":[ + -191.5229949951172, + 1.1444091796875e-05, + -191.5242919921875 + ], + "type":"VEC3" + }, + { + "bufferView":19839, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":19840, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19841, + "componentType":5126, + "count":228, + "max":[ + 105.79638671875, + 2059.5048828125, + 105.799560546875 + ], + "min":[ + -105.798828125, + 0, + -105.7998046875 + ], + "type":"VEC3" + }, + { + "bufferView":19842, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":19843, + "componentType":5126, + "count":228, + "type":"VEC2" + }, + { + "bufferView":19844, + "componentType":5126, + "count":142, + "max":[ + 3.4518332481384277, + 18.94533348083496, + 9.472701072692871 + ], + "min":[ + -3.451733350753784, + -0.00011920928955078125, + -9.472749710083008 + ], + "type":"VEC3" + }, + { + "bufferView":19845, + "componentType":5126, + "count":142, + "type":"VEC3" + }, + { + "bufferView":19846, + "componentType":5126, + "count":142, + "type":"VEC2" + }, + { + "bufferView":19847, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19848, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19849, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19850, + "componentType":5126, + "count":226, + "max":[ + 115.14118957519531, + 342.30987548828125, + 159.3865203857422 + ], + "min":[ + -115.14127349853516, + 24.731460571289062, + -160.7230682373047 + ], + "type":"VEC3" + }, + { + "bufferView":19851, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":19852, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":19853, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19854, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19855, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19856, + "componentType":5126, + "count":50, + "max":[ + 142.32275390625, + 608.220703125, + 391.7376403808594 + ], + "min":[ + -142.31982421875, + 0, + -391.7374572753906 + ], + "type":"VEC3" + }, + { + "bufferView":19857, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":19858, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":19859, + "componentType":5126, + "count":574, + "max":[ + 166.2982635498047, + 172.00177001953125, + 145.03713989257812 + ], + "min":[ + -166.29783630371094, + 0.000152587890625, + -145.0371551513672 + ], + "type":"VEC3" + }, + { + "bufferView":19860, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":19861, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.45654296875, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.000732421875, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":19862, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":19863, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":19864, + "componentType":5126, + "count":4, + "max":[ + 0, + 2586.479248046875, + 698.884521484375 + ], + "min":[ + 0, + 0, + -698.885009765625 + ], + "type":"VEC3" + }, + { + "bufferView":19865, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19866, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19867, + "componentType":5126, + "count":24, + "max":[ + 253.74276733398438, + 50, + 703.126953125 + ], + "min":[ + -253.74319458007812, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":19868, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19869, + "componentType":5126, + "count":226, + "max":[ + 146.6806640625, + 288.87420654296875, + 115.35120391845703 + ], + "min":[ + -146.6844482421875, + -6.103515625e-05, + -115.35126495361328 + ], + "type":"VEC3" + }, + { + "bufferView":19870, + "componentType":5126, + "count":226, + "type":"VEC3" + }, + { + "bufferView":19871, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19872, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19873, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19874, + "componentType":5126, + "count":4, + "max":[ + 698.884765625, + 2586.479248046875, + 0.0021792426705360413 + ], + "min":[ + -698.884765625, + 0, + 0.0017270073294639587 + ], + "type":"VEC3" + }, + { + "bufferView":19875, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19876, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19877, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19878, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19879, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19880, + "componentType":5126, + "count":16, + "max":[ + 1565.17626953125, + 1203, + 2265.61572265625 + ], + "min":[ + -1565.17626953125, + 0, + -2265.615966796875 + ], + "type":"VEC3" + }, + { + "bufferView":19881, + "componentType":5126, + "count":16, + "type":"VEC3" + }, + { + "bufferView":19882, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":19883, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19884, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19885, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19886, + "componentType":5126, + "count":178, + "max":[ + 769.70947265625, + 113.194580078125, + 56.59619140625 + ], + "min":[ + -769.7080078125, + 6.103515625e-05, + -56.5966796875 + ], + "type":"VEC3" + }, + { + "bufferView":19887, + "componentType":5126, + "count":178, + "type":"VEC3" + }, + { + "bufferView":19888, + "componentType":5126, + "count":178, + "type":"VEC2" + }, + { + "bufferView":19889, + "componentType":5126, + "count":168, + "max":[ + 29.924560546875, + 1132.8153076171875, + 29.9249267578125 + ], + "min":[ + -29.92431640625, + 0, + -29.9241943359375 + ], + "type":"VEC3" + }, + { + "bufferView":19890, + "componentType":5126, + "count":168, + "type":"VEC3" + }, + { + "bufferView":19891, + "componentType":5126, + "count":168, + "type":"VEC2" + }, + { + "bufferView":19892, + "componentType":5126, + "count":279, + "max":[ + 23.693748474121094, + 267.575927734375, + 235.96456909179688 + ], + "min":[ + -23.28312873840332, + 9.918212890625e-05, + -235.9248046875 + ], + "type":"VEC3" + }, + { + "bufferView":19893, + "componentType":5126, + "count":279, + "type":"VEC3" + }, + { + "bufferView":19894, + "componentType":5126, + "count":279, + "type":"VEC2" + }, + { + "bufferView":19895, + "componentType":5126, + "count":146, + "max":[ + 43.5888671875, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.5888671875, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":19896, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":19897, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":19898, + "componentType":5126, + "count":208, + "max":[ + 33.402587890625, + 133.6083984375, + 66.80419921875 + ], + "min":[ + -33.4019775390625, + 0, + -66.804443359375 + ], + "type":"VEC3" + }, + { + "bufferView":19899, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":19900, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":19901, + "componentType":5126, + "count":60, + "max":[ + 3.7873902320861816, + 13.000020027160645, + 3.742483139038086 + ], + "min":[ + -3.787674903869629, + -2.384185791015625e-05, + -3.7423512935638428 + ], + "type":"VEC3" + }, + { + "bufferView":19902, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":19903, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":19904, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":19905, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19906, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19907, + "componentType":5126, + "count":84, + "max":[ + 25.650390625, + 2502.00634765625, + 1011.18505859375 + ], + "min":[ + -25.6494140625, + -0.0001220703125, + -1011.1865234375 + ], + "type":"VEC3" + }, + { + "bufferView":19908, + "componentType":5126, + "count":84, + "type":"VEC3" + }, + { + "bufferView":19909, + "componentType":5126, + "count":84, + "type":"VEC2" + }, + { + "bufferView":19910, + "componentType":5126, + "count":112, + "max":[ + 317.90423583984375, + 230.814453125, + 317.9056396484375 + ], + "min":[ + -317.90423583984375, + 0, + -317.90277099609375 + ], + "type":"VEC3" + }, + { + "bufferView":19911, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":19912, + "componentType":5126, + "count":96, + "max":[ + 34.85572814941406, + 1922.780517578125, + 633.9985961914062 + ], + "min":[ + -34.85291290283203, + 0, + -633.9986572265625 + ], + "type":"VEC3" + }, + { + "bufferView":19913, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":19914, + "componentType":5126, + "count":756, + "max":[ + 136.373779296875, + 173.8272705078125, + 128.91510009765625 + ], + "min":[ + -136.37388610839844, + -3.0517578125e-05, + -128.91500854492188 + ], + "type":"VEC3" + }, + { + "bufferView":19915, + "componentType":5126, + "count":756, + "type":"VEC3" + }, + { + "bufferView":19916, + "componentType":5126, + "count":24, + "max":[ + 68.3823471069336, + 79, + 68.3823471069336 + ], + "min":[ + -68.3823471069336, + 0, + -68.3823471069336 + ], + "type":"VEC3" + }, + { + "bufferView":19917, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19918, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19919, + "componentType":5126, + "count":232, + "max":[ + 115.35124206542969, + 318.5151062011719, + 159.1707000732422 + ], + "min":[ + -115.35128021240234, + 1.3115692138671875, + -160.49093627929688 + ], + "type":"VEC3" + }, + { + "bufferView":19920, + "componentType":5126, + "count":232, + "type":"VEC3" + }, + { + "bufferView":19921, + "componentType":5126, + "count":24, + "max":[ + 12.500065803527832, + 537.3467407226562, + 135.7646484375 + ], + "min":[ + -12.500066757202148, + -6.103515625e-05, + -135.7646484375 + ], + "type":"VEC3" + }, + { + "bufferView":19922, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19923, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":19924, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":19925, + "componentType":5126, + "count":71, + "max":[ + 3.7875235080718994, + 14.031469345092773, + 5.54845666885376 + ], + "min":[ + -3.7875478267669678, + -3.2901763916015625e-05, + -5.548463821411133 + ], + "type":"VEC3" + }, + { + "bufferView":19926, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":19927, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":19928, + "componentType":5126, + "count":578, + "max":[ + 162.09307861328125, + 168.97842407226562, + 147.53665161132812 + ], + "min":[ + -162.0943145751953, + 1.1229248046875, + -135.2554168701172 + ], + "type":"VEC3" + }, + { + "bufferView":19929, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":19930, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19931, + "componentType":5126, + "count":6808, + "max":[ + 37.94609069824219, + 117.86515808105469, + 219.26202392578125 + ], + "min":[ + -37.94620895385742, + -0.0001678466796875, + -219.26443481445312 + ], + "type":"VEC3" + }, + { + "bufferView":19932, + "componentType":5126, + "count":6808, + "type":"VEC3" + }, + { + "bufferView":19933, + "componentType":5126, + "count":6808, + "type":"VEC2" + }, + { + "bufferView":19934, + "componentType":5126, + "count":55, + "max":[ + 29.9993896484375, + 483.89794921875, + 238.478515625 + ], + "min":[ + -30.0010986328125, + 0, + -238.4794921875 + ], + "type":"VEC3" + }, + { + "bufferView":19935, + "componentType":5126, + "count":55, + "type":"VEC3" + }, + { + "bufferView":19936, + "componentType":5126, + "count":55, + "type":"VEC2" + }, + { + "bufferView":19937, + "componentType":5126, + "count":574, + "max":[ + 155.08447265625, + 162.01815795898438, + 129.18698120117188 + ], + "min":[ + -155.0883331298828, + 1.0726318359375, + -141.46820068359375 + ], + "type":"VEC3" + }, + { + "bufferView":19938, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":19939, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19940, + "componentType":5126, + "count":604, + "max":[ + 161.966064453125, + 224.42835998535156, + 150.8489990234375 + ], + "min":[ + -154.75601196289062, + 32.895263671875, + -138.917236328125 + ], + "type":"VEC3" + }, + { + "bufferView":19941, + "componentType":5126, + "count":604, + "type":"VEC3" + }, + { + "bufferView":19942, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19943, + "componentType":5126, + "count":574, + "max":[ + 177.50819396972656, + 183.0576934814453, + 154.74668884277344 + ], + "min":[ + -177.5111541748047, + 0.0001220703125, + -154.74673461914062 + ], + "type":"VEC3" + }, + { + "bufferView":19944, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":19945, + "componentType":5126, + "count":678, + "max":[ + 824.33984375, + 1001.807373046875, + 93.05411529541016 + ], + "min":[ + -824.337890625, + 0, + -93.05069732666016 + ], + "type":"VEC3" + }, + { + "bufferView":19946, + "componentType":5126, + "count":678, + "type":"VEC3" + }, + { + "bufferView":19947, + "componentType":5126, + "count":678, + "type":"VEC2" + }, + { + "bufferView":19948, + "componentType":5126, + "count":572, + "max":[ + 186.9486541748047, + 268.66400146484375, + 168.26876831054688 + ], + "min":[ + -194.1539306640625, + 39.615081787109375, + -180.20040893554688 + ], + "type":"VEC3" + }, + { + "bufferView":19949, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":19950, + "componentType":5126, + "count":580, + "max":[ + 172.19187927246094, + 248.38929748535156, + 154.8158721923828 + ], + "min":[ + -179.40296936035156, + 36.535125732421875, + -166.7477569580078 + ], + "type":"VEC3" + }, + { + "bufferView":19951, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":19952, + "componentType":5126, + "count":586, + "max":[ + 209.62005615234375, + 32.82524871826172, + 209.6189422607422 + ], + "min":[ + -209.6181640625, + 0.000110626220703125, + -209.6193084716797 + ], + "type":"VEC3" + }, + { + "bufferView":19953, + "componentType":5126, + "count":586, + "type":"VEC3" + }, + { + "bufferView":19954, + "componentType":5126, + "count":803, + "max":[ + 4.1328125, + 90.58740997314453, + 34.45850372314453 + ], + "min":[ + -4.130859375, + -7.62939453125e-06, + -34.45459747314453 + ], + "type":"VEC3" + }, + { + "bufferView":19955, + "componentType":5126, + "count":803, + "type":"VEC3" + }, + { + "bufferView":19956, + "componentType":5126, + "count":803, + "type":"VEC2" + }, + { + "bufferView":19957, + "componentType":5126, + "count":60, + "max":[ + 3.7875025272369385, + 13.413309097290039, + 4.24593448638916 + ], + "min":[ + -3.7875616550445557, + 0.000110626220703125, + -4.2458930015563965 + ], + "type":"VEC3" + }, + { + "bufferView":19958, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":19959, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":19960, + "componentType":5126, + "count":594, + "max":[ + 159.70166015625, + 193.09658813476562, + 146.10589599609375 + ], + "min":[ + -159.7029571533203, + 0.00019073486328125, + -146.10617065429688 + ], + "type":"VEC3" + }, + { + "bufferView":19961, + "componentType":5126, + "count":594, + "type":"VEC3" + }, + { + "bufferView":19962, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19963, + "componentType":5126, + "count":54, + "max":[ + 123.61328125, + 696.755859375, + 366.15234375 + ], + "min":[ + -123.615234375, + 0, + -366.1533203125 + ], + "type":"VEC3" + }, + { + "bufferView":19964, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":19965, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":19966, + "componentType":5126, + "count":169, + "max":[ + 505.51953125, + 59.56597900390625, + 21.07904052734375 + ], + "min":[ + -505.5185546875, + 0, + -21.07806396484375 + ], + "type":"VEC3" + }, + { + "bufferView":19967, + "componentType":5126, + "count":169, + "type":"VEC3" + }, + { + "bufferView":19968, + "componentType":5126, + "count":169, + "type":"VEC2" + }, + { + "bufferView":19969, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":19970, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19971, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19972, + "componentType":5126, + "count":338, + "max":[ + 170.904296875, + 157.00390625, + 177.25439453125 + ], + "min":[ + -170.90625, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":19973, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":19974, + "componentType":5126, + "count":338, + "type":"VEC2" + }, + { + "bufferView":19975, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":19976, + "componentType":5126, + "count":1810, + "max":[ + 91.3736801147461, + 182.74732971191406, + 6.498479843139648 + ], + "min":[ + -91.37361907958984, + 1.5562191038043238e-05, + -6.498486042022705 + ], + "type":"VEC3" + }, + { + "bufferView":19977, + "componentType":5126, + "count":1810, + "type":"VEC3" + }, + { + "bufferView":19978, + "componentType":5126, + "count":1810, + "type":"VEC2" + }, + { + "bufferView":19979, + "componentType":5126, + "count":572, + "max":[ + 197.12852478027344, + 32.82524108886719, + 197.12991333007812 + ], + "min":[ + -197.13157653808594, + 9.5367431640625e-05, + -197.13023376464844 + ], + "type":"VEC3" + }, + { + "bufferView":19980, + "componentType":5126, + "count":572, + "type":"VEC3" + }, + { + "bufferView":19981, + "componentType":5126, + "count":578, + "max":[ + 209.62005615234375, + 216.1865234375, + 188.6949462890625 + ], + "min":[ + -209.6181640625, + 1.4654083251953125, + -176.41354370117188 + ], + "type":"VEC3" + }, + { + "bufferView":19982, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":19983, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19984, + "componentType":5126, + "count":76, + "max":[ + 278.86895751953125, + 3543.081787109375, + 279.10284423828125 + ], + "min":[ + -278.86810302734375, + 0, + -279.1005859375 + ], + "type":"VEC3" + }, + { + "bufferView":19985, + "componentType":5126, + "count":76, + "type":"VEC3" + }, + { + "bufferView":19986, + "componentType":5126, + "count":76, + "type":"VEC2" + }, + { + "bufferView":19987, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":19988, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":19989, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":19990, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":19991, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":19992, + "componentType":5126, + "count":580, + "max":[ + 196.83981323242188, + 272.350341796875, + 182.64645385742188 + ], + "min":[ + -189.62779235839844, + 40.175262451171875, + -170.71466064453125 + ], + "type":"VEC3" + }, + { + "bufferView":19993, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":19994, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":19995, + "componentType":5126, + "count":335, + "max":[ + 170.4345703125, + 188.555419921875, + 176.205078125 + ], + "min":[ + -170.4345703125, + 45.295654296875, + -176.2021484375 + ], + "type":"VEC3" + }, + { + "bufferView":19996, + "componentType":5126, + "count":335, + "type":"VEC3" + }, + { + "bufferView":19997, + "componentType":5126, + "count":335, + "type":"VEC2" + }, + { + "bufferView":19998, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":19999, + "componentType":5126, + "count":1420, + "max":[ + 245.2333984375, + 367.92938232421875, + 384.1394348144531 + ], + "min":[ + -245.2333984375, + 0.0001068115234375, + -384.1411437988281 + ], + "type":"VEC3" + }, + { + "bufferView":20000, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":20001, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":20002, + "componentType":5126, + "count":2281, + "max":[ + 65.60057067871094, + 185.22500610351562, + 5.788394927978516 + ], + "min":[ + -65.60050964355469, + -3.814697265625e-05, + -5.788308143615723 + ], + "type":"VEC3" + }, + { + "bufferView":20003, + "componentType":5126, + "count":2281, + "type":"VEC3" + }, + { + "bufferView":20004, + "componentType":5126, + "count":2281, + "type":"VEC2" + }, + { + "bufferView":20005, + "componentType":5126, + "count":606, + "max":[ + 325.56951904296875, + 504.617919921875, + 332.93994140625 + ], + "min":[ + -325.56951904296875, + 0.0001220703125, + -332.9397888183594 + ], + "type":"VEC3" + }, + { + "bufferView":20006, + "componentType":5126, + "count":606, + "type":"VEC3" + }, + { + "bufferView":20007, + "componentType":5126, + "count":593, + "max":[ + 144.02774047851562, + 209.6828155517578, + 129.13345336914062 + ], + "min":[ + -151.23428344726562, + 30.65485382080078, + -141.06521606445312 + ], + "type":"VEC3" + }, + { + "bufferView":20008, + "componentType":5126, + "count":593, + "type":"VEC3" + }, + { + "bufferView":20009, + "componentType":5126, + "count":578, + "max":[ + 190.123779296875, + 196.82052612304688, + 171.8101043701172 + ], + "min":[ + -190.12181091308594, + 1.3250274658203125, + -159.52975463867188 + ], + "type":"VEC3" + }, + { + "bufferView":20010, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":20011, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":20012, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":20013, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":20014, + "componentType":5126, + "count":7990, + "max":[ + 496.1484375, + 429.9638671875, + 103.78857421875 + ], + "min":[ + -496.148681640625, + 0, + -103.78564453125 + ], + "type":"VEC3" + }, + { + "bufferView":20015, + "componentType":5126, + "count":7990, + "type":"VEC3" + }, + { + "bufferView":20016, + "componentType":5126, + "count":7990, + "type":"VEC2" + }, + { + "bufferView":20017, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":20018, + "componentType":5126, + "count":1488, + "max":[ + 831.546875, + 116.23333740234375, + 746.101806640625 + ], + "min":[ + -831.544921875, + 5.7220458984375e-05, + -746.103271484375 + ], + "type":"VEC3" + }, + { + "bufferView":20019, + "componentType":5126, + "count":1488, + "type":"VEC3" + }, + { + "bufferView":20020, + "componentType":5126, + "count":1488, + "type":"VEC2" + }, + { + "bufferView":20021, + "componentType":5126, + "count":596, + "max":[ + 146.67794799804688, + 32.8252067565918, + 146.67767333984375 + ], + "min":[ + -146.6774139404297, + -4.9591064453125e-05, + -146.6776885986328 + ], + "type":"VEC3" + }, + { + "bufferView":20022, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":20023, + "componentType":5126, + "count":24, + "max":[ + 2188.9541015625, + 1275.6246337890625, + 886.5516357421875 + ], + "min":[ + -2188.954345703125, + -7.999967783689499e-05, + -886.5511474609375 + ], + "type":"VEC3" + }, + { + "bufferView":20024, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20025, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":20026, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":20027, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20028, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20029, + "componentType":5126, + "count":618, + "max":[ + 56.700801849365234, + 172.07467651367188, + 23.860069274902344 + ], + "min":[ + -56.70079803466797, + 6.866455078125e-05, + -23.86005401611328 + ], + "type":"VEC3" + }, + { + "bufferView":20030, + "componentType":5126, + "count":618, + "type":"VEC3" + }, + { + "bufferView":20031, + "componentType":5126, + "count":618, + "type":"VEC2" + }, + { + "bufferView":20032, + "componentType":5126, + "count":4062, + "max":[ + 37.94609069824219, + 117.86515808105469, + 219.26397705078125 + ], + "min":[ + -37.94620895385742, + -0.0001678466796875, + -219.26248168945312 + ], + "type":"VEC3" + }, + { + "bufferView":20033, + "componentType":5126, + "count":4062, + "type":"VEC3" + }, + { + "bufferView":20034, + "componentType":5126, + "count":4062, + "type":"VEC2" + }, + { + "bufferView":20035, + "componentType":5126, + "count":121, + "max":[ + 3859.009033203125, + 81.2099609375, + 40.60498046875 + ], + "min":[ + -3859.01416015625, + 0, + -40.60498046875 + ], + "type":"VEC3" + }, + { + "bufferView":20036, + "componentType":5126, + "count":121, + "type":"VEC3" + }, + { + "bufferView":20037, + "componentType":5126, + "count":121, + "type":"VEC2" + }, + { + "bufferView":20038, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.51409912109375, + 22.7260799407959 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.729618072509766 + ], + "type":"VEC3" + }, + { + "bufferView":20039, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":20040, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":20041, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":20042, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20043, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20044, + "componentType":5126, + "count":24, + "max":[ + 2748.22509765625, + 201.5, + 7164.22216796875 + ], + "min":[ + -2748.225341796875, + 0, + -7164.22265625 + ], + "type":"VEC3" + }, + { + "bufferView":20045, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20046, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":20047, + "componentType":5126, + "count":24, + "max":[ + 500, + 1200, + 500 + ], + "min":[ + -500, + 0, + -500 + ], + "type":"VEC3" + }, + { + "bufferView":20048, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20049, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":20050, + "componentType":5126, + "count":882, + "max":[ + 134.31640625, + 2974.83349609375, + 130.721435546875 + ], + "min":[ + -134.31640625, + 0, + -130.72096252441406 + ], + "type":"VEC3" + }, + { + "bufferView":20051, + "componentType":5126, + "count":882, + "type":"VEC3" + }, + { + "bufferView":20052, + "componentType":5126, + "count":882, + "type":"VEC2" + }, + { + "bufferView":20053, + "componentType":5126, + "count":120, + "max":[ + 34688, + 100, + 30976 + ], + "min":[ + -34688, + 0, + -30976 + ], + "type":"VEC3" + }, + { + "bufferView":20054, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":20055, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":20056, + "componentType":5123, + "count":228, + "type":"SCALAR" + }, + { + "bufferView":20057, + "componentType":5126, + "count":24, + "max":[ + 12.500085830688477, + 1879.52978515625, + 334.7813720703125 + ], + "min":[ + -12.500085830688477, + 6.103515625e-05, + -334.7813720703125 + ], + "type":"VEC3" + }, + { + "bufferView":20058, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20059, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":20060, + "componentType":5126, + "count":750, + "max":[ + 136.78468322753906, + 189.921142578125, + 129.50843811035156 + ], + "min":[ + -136.78651428222656, + -4.57763671875e-05, + -129.5079803466797 + ], + "type":"VEC3" + }, + { + "bufferView":20061, + "componentType":5126, + "count":750, + "type":"VEC3" + }, + { + "bufferView":20062, + "componentType":5126, + "count":53, + "max":[ + 142.32275390625, + 608.220703125, + 391.7373046875 + ], + "min":[ + -142.31982421875, + 0, + -391.73828125 + ], + "type":"VEC3" + }, + { + "bufferView":20063, + "componentType":5126, + "count":53, + "type":"VEC3" + }, + { + "bufferView":20064, + "componentType":5126, + "count":53, + "type":"VEC2" + }, + { + "bufferView":20065, + "componentType":5126, + "count":316, + "max":[ + 1831.75390625, + 2540.00048828125, + 2820.119140625 + ], + "min":[ + -1831.1634521484375, + 0, + -2821.1357421875 + ], + "type":"VEC3" + }, + { + "bufferView":20066, + "componentType":5126, + "count":316, + "type":"VEC3" + }, + { + "bufferView":20067, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":20068, + "componentType":5126, + "count":260, + "max":[ + 3.451836347579956, + 18.945335388183594, + 9.47275161743164 + ], + "min":[ + -3.451739549636841, + -0.00011920928955078125, + -9.472702980041504 + ], + "type":"VEC3" + }, + { + "bufferView":20069, + "componentType":5126, + "count":260, + "type":"VEC3" + }, + { + "bufferView":20070, + "componentType":5126, + "count":260, + "type":"VEC2" + }, + { + "bufferView":20071, + "componentType":5126, + "count":806, + "max":[ + 4.1318359375, + 90.58740997314453, + 34.45655059814453 + ], + "min":[ + -4.1318359375, + -7.62939453125e-06, + -34.45655059814453 + ], + "type":"VEC3" + }, + { + "bufferView":20072, + "componentType":5126, + "count":806, + "type":"VEC3" + }, + { + "bufferView":20073, + "componentType":5126, + "count":806, + "type":"VEC2" + }, + { + "bufferView":20074, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":20075, + "componentType":5126, + "count":72, + "max":[ + 771.3455200195312, + 1492.539794921875, + 22.500383377075195 + ], + "min":[ + -771.345458984375, + 0, + -22.499998092651367 + ], + "type":"VEC3" + }, + { + "bufferView":20076, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":20077, + "componentType":5126, + "count":169, + "max":[ + 769.70751953125, + 113.194580078125, + 56.59619140625 + ], + "min":[ + -769.709228515625, + 0, + -56.59765625 + ], + "type":"VEC3" + }, + { + "bufferView":20078, + "componentType":5126, + "count":169, + "type":"VEC3" + }, + { + "bufferView":20079, + "componentType":5126, + "count":169, + "type":"VEC2" + }, + { + "bufferView":20080, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":20081, + "componentType":5126, + "count":1151, + "max":[ + 65.60054779052734, + 185.22500610351562, + 5.788296699523926 + ], + "min":[ + -65.60051727294922, + -3.0517578125e-05, + -5.788368225097656 + ], + "type":"VEC3" + }, + { + "bufferView":20082, + "componentType":5126, + "count":1151, + "type":"VEC3" + }, + { + "bufferView":20083, + "componentType":5126, + "count":1151, + "type":"VEC2" + }, + { + "bufferView":20084, + "componentType":5123, + "count":3930, + "type":"SCALAR" + }, + { + "bufferView":20085, + "componentType":5126, + "count":582, + "max":[ + 157.88787841796875, + 164.80230712890625, + 143.89556884765625 + ], + "min":[ + -157.89076232910156, + 1.0926666259765625, + -131.61434936523438 + ], + "type":"VEC3" + }, + { + "bufferView":20086, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":20087, + "componentType":5126, + "count":570, + "max":[ + 202.81088256835938, + 243.335205078125, + 185.41221618652344 + ], + "min":[ + -202.80821228027344, + 6.103515625e-05, + -185.41152954101562 + ], + "type":"VEC3" + }, + { + "bufferView":20088, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":20089, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":20090, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":20091, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20092, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20093, + "componentType":5126, + "count":52, + "max":[ + 161.98095703125, + 658.67578125, + 366.15234375 + ], + "min":[ + -161.97900390625, + 0, + -366.1533203125 + ], + "type":"VEC3" + }, + { + "bufferView":20094, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":20095, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":20096, + "componentType":5126, + "count":648, + "max":[ + 615.0107421875, + 2510.925048828125, + 347.265869140625 + ], + "min":[ + -615.01025390625, + 0, + -347.26611328125 + ], + "type":"VEC3" + }, + { + "bufferView":20097, + "componentType":5126, + "count":648, + "type":"VEC3" + }, + { + "bufferView":20098, + "componentType":5126, + "count":648, + "type":"VEC2" + }, + { + "bufferView":20099, + "componentType":5126, + "count":24, + "max":[ + 27.1943359375, + 130.123046875, + 126.074462890625 + ], + "min":[ + -27.193359375, + 0, + -126.072509765625 + ], + "type":"VEC3" + }, + { + "bufferView":20100, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20101, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":20102, + "componentType":5126, + "count":24, + "max":[ + 110.00007629394531, + 50, + 481.646484375 + ], + "min":[ + -110.00011444091797, + 0, + -481.6465148925781 + ], + "type":"VEC3" + }, + { + "bufferView":20103, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20104, + "componentType":5126, + "count":88, + "max":[ + 30.2646484375, + 32.2474365234375, + 126.459716796875 + ], + "min":[ + -30.26513671875, + -0.0003662109375, + -126.45947265625 + ], + "type":"VEC3" + }, + { + "bufferView":20105, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":20106, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":20107, + "componentType":5126, + "count":338, + "max":[ + 170.90625, + 157.00341796875, + 177.25439453125 + ], + "min":[ + -170.904296875, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":20108, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":20109, + "componentType":5126, + "count":338, + "type":"VEC2" + }, + { + "bufferView":20110, + "componentType":5126, + "count":578, + "max":[ + 162.09307861328125, + 168.9784393310547, + 147.536376953125 + ], + "min":[ + -162.0943145751953, + 1.1229324340820312, + -135.2556915283203 + ], + "type":"VEC3" + }, + { + "bufferView":20111, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":20112, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":20113, + "componentType":5126, + "count":588, + "max":[ + 172.69406127929688, + 239.1733856201172, + 160.63316345214844 + ], + "min":[ + -165.4881591796875, + 35.1351318359375, + -148.70079040527344 + ], + "type":"VEC3" + }, + { + "bufferView":20114, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":20115, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":20116, + "componentType":5126, + "count":750, + "max":[ + 136.78468322753906, + 189.921142578125, + 129.50843811035156 + ], + "min":[ + -136.78651428222656, + -4.57763671875e-05, + -129.5079803466797 + ], + "type":"VEC3" + }, + { + "bufferView":20117, + "componentType":5126, + "count":750, + "type":"VEC3" + }, + { + "bufferView":20118, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":20119, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20120, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20121, + "componentType":5126, + "count":224, + "max":[ + 115.14118194580078, + 230.28256225585938, + 118.72101593017578 + ], + "min":[ + -115.1412582397461, + 8.392333984375e-05, + -118.72062683105469 + ], + "type":"VEC3" + }, + { + "bufferView":20122, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":20123, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":20124, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20125, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20126, + "componentType":5126, + "count":574, + "max":[ + 149.48141479492188, + 156.44996643066406, + 136.61337280273438 + ], + "min":[ + -149.47979736328125, + 1.032440185546875, + -124.33219909667969 + ], + "type":"VEC3" + }, + { + "bufferView":20127, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":20128, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":20129, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":20130, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20131, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20132, + "componentType":5126, + "count":580, + "max":[ + 188.72061157226562, + 32.8251953125, + 188.72120666503906 + ], + "min":[ + -188.72206115722656, + 9.5367431640625e-05, + -188.72146606445312 + ], + "type":"VEC3" + }, + { + "bufferView":20133, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":20134, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":20135, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.58544921875 + ], + "min":[ + -46.284423828125, + 0, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":20136, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20137, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":20138, + "componentType":5126, + "count":346, + "max":[ + 171.298828125, + 184.806640625, + 176.140869140625 + ], + "min":[ + -171.296875, + 44.45703125, + -176.14111328125 + ], + "type":"VEC3" + }, + { + "bufferView":20139, + "componentType":5126, + "count":346, + "type":"VEC3" + }, + { + "bufferView":20140, + "componentType":5126, + "count":346, + "type":"VEC2" + }, + { + "bufferView":20141, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":20142, + "componentType":5126, + "count":580, + "max":[ + 189.20867919921875, + 121.63380432128906, + 197.12991333007812 + ], + "min":[ + -189.2113494873047, + -9.1552734375e-05, + -197.13023376464844 + ], + "type":"VEC3" + }, + { + "bufferView":20143, + "componentType":5126, + "count":580, + "type":"VEC3" + }, + { + "bufferView":20144, + "componentType":5126, + "count":146, + "max":[ + 43.58984375, + 61.5140380859375, + 22.7275447845459 + ], + "min":[ + -43.587890625, + -3.814697265625e-06, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":20145, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":20146, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":20147, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68743896484375 + ], + "min":[ + -15.4755859375, + 0, + -381.68572998046875 + ], + "type":"VEC3" + }, + { + "bufferView":20148, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20149, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":20150, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.31640625 + ], + "min":[ + -23.16552734375, + 0, + -115.31640625 + ], + "type":"VEC3" + }, + { + "bufferView":20151, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":20152, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":20153, + "componentType":5126, + "count":95, + "max":[ + 27.1103515625, + 95.4468994140625, + 37.43750762939453 + ], + "min":[ + -27.1103515625, + -3.814697265625e-06, + -37.43360137939453 + ], + "type":"VEC3" + }, + { + "bufferView":20154, + "componentType":5126, + "count":95, + "type":"VEC3" + }, + { + "bufferView":20155, + "componentType":5126, + "count":95, + "type":"VEC2" + }, + { + "bufferView":20156, + "componentType":5126, + "count":24, + "max":[ + 110.00007629394531, + 50, + 481.646484375 + ], + "min":[ + -110.00011444091797, + 0, + -481.6465148925781 + ], + "type":"VEC3" + }, + { + "bufferView":20157, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20158, + "componentType":5126, + "count":230, + "max":[ + 91.49444580078125, + 2267.824951171875, + 91.49467468261719 + ], + "min":[ + -91.49453735351562, + -0.0001678466796875, + -91.49445343017578 + ], + "type":"VEC3" + }, + { + "bufferView":20159, + "componentType":5126, + "count":230, + "type":"VEC3" + }, + { + "bufferView":20160, + "componentType":5123, + "count":492, + "type":"SCALAR" + }, + { + "bufferView":20161, + "componentType":5126, + "count":224, + "max":[ + 146.6806640625, + 281.02813720703125, + 131.18055725097656 + ], + "min":[ + -146.68443298339844, + 9.1552734375e-05, + -131.1803436279297 + ], + "type":"VEC3" + }, + { + "bufferView":20162, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":20163, + "componentType":5126, + "count":72, + "max":[ + 22.50006103515625, + 1492.539794921875, + 771.3447875976562 + ], + "min":[ + -22.500253677368164, + 0, + -771.34619140625 + ], + "type":"VEC3" + }, + { + "bufferView":20164, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":20165, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":20166, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20167, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20168, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":20169, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20170, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20171, + "componentType":5126, + "count":7729, + "max":[ + 496.30859375, + 427.46484375, + 103.7867431640625 + ], + "min":[ + -496.304443359375, + 0, + -103.786865234375 + ], + "type":"VEC3" + }, + { + "bufferView":20172, + "componentType":5126, + "count":7729, + "type":"VEC3" + }, + { + "bufferView":20173, + "componentType":5126, + "count":7729, + "type":"VEC2" + }, + { + "bufferView":20174, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":20175, + "componentType":5126, + "count":24, + "max":[ + 12.500065803527832, + 537.3467407226562, + 135.7646484375 + ], + "min":[ + -12.500066757202148, + -6.103515625e-05, + -135.7646484375 + ], + "type":"VEC3" + }, + { + "bufferView":20176, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20177, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76666259765625, + 78.58544921875 + ], + "min":[ + -46.2822265625, + 0, + -78.585693359375 + ], + "type":"VEC3" + }, + { + "bufferView":20178, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20179, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":20180, + "componentType":5126, + "count":146, + "max":[ + 43.591796875, + 61.51416015625, + 22.7275447845459 + ], + "min":[ + -43.587890625, + 5.7220458984375e-05, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":20181, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":20182, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":20183, + "componentType":5126, + "count":658, + "max":[ + 3.6220703125, + 79.4549560546875, + 30.22216796875 + ], + "min":[ + -3.62353515625, + 0.00048828125, + -30.22216796875 + ], + "type":"VEC3" + }, + { + "bufferView":20184, + "componentType":5126, + "count":658, + "type":"VEC3" + }, + { + "bufferView":20185, + "componentType":5126, + "count":658, + "type":"VEC2" + }, + { + "bufferView":20186, + "componentType":5126, + "count":233, + "max":[ + 172.59716796875, + 185.23583984375, + 169.0704345703125 + ], + "min":[ + -172.596923828125, + 0, + -169.070556640625 + ], + "type":"VEC3" + }, + { + "bufferView":20187, + "componentType":5126, + "count":233, + "type":"VEC3" + }, + { + "bufferView":20188, + "componentType":5126, + "count":233, + "type":"VEC2" + }, + { + "bufferView":20189, + "componentType":5126, + "count":48, + "max":[ + 161.98095703125, + 658.67578125, + 366.1531982421875 + ], + "min":[ + -161.97900390625, + 0, + -366.1527099609375 + ], + "type":"VEC3" + }, + { + "bufferView":20190, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":20191, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":20192, + "componentType":5126, + "count":596, + "max":[ + 164.8965301513672, + 170.61959838867188, + 143.82345581054688 + ], + "min":[ + -164.89663696289062, + -0.00014495849609375, + -143.8234100341797 + ], + "type":"VEC3" + }, + { + "bufferView":20193, + "componentType":5126, + "count":596, + "type":"VEC3" + }, + { + "bufferView":20194, + "componentType":5126, + "count":224, + "max":[ + 115.35120391845703, + 230.70260620117188, + 118.72062683105469 + ], + "min":[ + -115.35124969482422, + -3.814697265625e-05, + -118.72103881835938 + ], + "type":"VEC3" + }, + { + "bufferView":20195, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":20196, + "componentType":5126, + "count":146, + "max":[ + 43.587890625, + 61.51422119140625, + 22.7275447845459 + ], + "min":[ + -43.58984375, + 5.7220458984375e-05, + -22.728519439697266 + ], + "type":"VEC3" + }, + { + "bufferView":20197, + "componentType":5126, + "count":146, + "type":"VEC3" + }, + { + "bufferView":20198, + "componentType":5126, + "count":146, + "type":"VEC2" + }, + { + "bufferView":20199, + "componentType":5126, + "count":60, + "max":[ + 3.78739070892334, + 13.000263214111328, + 3.74235200881958 + ], + "min":[ + -3.7876739501953125, + 0.00021982192993164062, + -3.7424826622009277 + ], + "type":"VEC3" + }, + { + "bufferView":20200, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":20201, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":20202, + "componentType":5126, + "count":24, + "max":[ + 110.0000228881836, + 50, + 703.126953125 + ], + "min":[ + -110.00003814697266, + 0, + -703.126953125 + ], + "type":"VEC3" + }, + { + "bufferView":20203, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20204, + "componentType":5126, + "count":559, + "max":[ + 223.19972229003906, + 446.3994140625, + 224.27151489257812 + ], + "min":[ + -223.19969177246094, + 1.52587890625e-05, + -224.27151489257812 + ], + "type":"VEC3" + }, + { + "bufferView":20205, + "componentType":5126, + "count":559, + "type":"VEC3" + }, + { + "bufferView":20206, + "componentType":5126, + "count":559, + "type":"VEC2" + }, + { + "bufferView":20207, + "componentType":5126, + "count":578, + "max":[ + 163.4954833984375, + 169.2377166748047, + 142.60971069335938 + ], + "min":[ + -163.4947967529297, + 0.000152587890625, + -142.60972595214844 + ], + "type":"VEC3" + }, + { + "bufferView":20208, + "componentType":5126, + "count":578, + "type":"VEC3" + }, + { + "bufferView":20209, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":20210, + "componentType":5126, + "count":24, + "max":[ + 110.00022888183594, + 50.00013732910156, + 584.6641235351562 + ], + "min":[ + -110.0001449584961, + 0.00010534164175624028, + -584.6640625 + ], + "type":"VEC3" + }, + { + "bufferView":20211, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20212, + "componentType":5126, + "count":24, + "max":[ + 46.285888671875, + 147.76708984375, + 78.5859375 + ], + "min":[ + -46.2822265625, + 0, + -78.58544921875 + ], + "type":"VEC3" + }, + { + "bufferView":20213, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20214, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":20215, + "componentType":5126, + "count":16, + "max":[ + 1565.17626953125, + 1203, + 2265.615234375 + ], + "min":[ + -1565.17626953125, + 0, + -2265.616455078125 + ], + "type":"VEC3" + }, + { + "bufferView":20216, + "componentType":5126, + "count":16, + "type":"VEC3" + }, + { + "bufferView":20217, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":20218, + "componentType":5126, + "count":350, + "max":[ + 115.35118865966797, + 212.3876495361328, + 68.44581604003906 + ], + "min":[ + -115.35128021240234, + 0.967132568359375, + -68.44584655761719 + ], + "type":"VEC3" + }, + { + "bufferView":20219, + "componentType":5126, + "count":350, + "type":"VEC3" + }, + { + "bufferView":20220, + "componentType":5126, + "count":96, + "max":[ + 820.9476318359375, + 205.17288208007812, + 73.47864532470703 + ], + "min":[ + -820.9443359375, + 7.62939453125e-06, + -73.4786376953125 + ], + "type":"VEC3" + }, + { + "bufferView":20221, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":20222, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":20223, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20224, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20225, + "componentType":5126, + "count":342, + "max":[ + 170.435546875, + 188.55810546875, + 176.20361328125 + ], + "min":[ + -170.43359375, + 45.29638671875, + -176.20361328125 + ], + "type":"VEC3" + }, + { + "bufferView":20226, + "componentType":5126, + "count":342, + "type":"VEC3" + }, + { + "bufferView":20227, + "componentType":5126, + "count":342, + "type":"VEC2" + }, + { + "bufferView":20228, + "componentType":5126, + "count":24, + "max":[ + 46.28369140625, + 147.76666259765625, + 78.58544921875 + ], + "min":[ + -46.2841796875, + -6.103515625e-05, + -78.5859375 + ], + "type":"VEC3" + }, + { + "bufferView":20229, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20230, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":20231, + "componentType":5126, + "count":590, + "max":[ + 194.32896423339844, + 200.99668884277344, + 175.45120239257812 + ], + "min":[ + -194.32528686523438, + 1.355194091796875, + -163.1708526611328 + ], + "type":"VEC3" + }, + { + "bufferView":20232, + "componentType":5126, + "count":590, + "type":"VEC3" + }, + { + "bufferView":20233, + "componentType":5126, + "count":208, + "max":[ + 41.33154296875, + 82.662109375, + 2288.80029296875 + ], + "min":[ + -41.33154296875, + 0.00048828125, + -2288.80029296875 + ], + "type":"VEC3" + }, + { + "bufferView":20234, + "componentType":5126, + "count":208, + "type":"VEC3" + }, + { + "bufferView":20235, + "componentType":5126, + "count":208, + "type":"VEC2" + }, + { + "bufferView":20236, + "componentType":5123, + "count":360, + "type":"SCALAR" + }, + { + "bufferView":20237, + "componentType":5126, + "count":2690, + "max":[ + 128.19970703125, + 421.52587890625, + 128.19921875 + ], + "min":[ + -128.19921875, + 0, + -128.19921875 + ], + "type":"VEC3" + }, + { + "bufferView":20238, + "componentType":5126, + "count":2690, + "type":"VEC3" + }, + { + "bufferView":20239, + "componentType":5126, + "count":2690, + "type":"VEC2" + }, + { + "bufferView":20240, + "componentType":5126, + "count":1660, + "max":[ + 245.234375, + 367.92938232421875, + 384.1396484375 + ], + "min":[ + -245.232421875, + -6.103515625e-05, + -384.1410827636719 + ], + "type":"VEC3" + }, + { + "bufferView":20241, + "componentType":5126, + "count":1660, + "type":"VEC3" + }, + { + "bufferView":20242, + "componentType":5126, + "count":1660, + "type":"VEC2" + }, + { + "bufferView":20243, + "componentType":5126, + "count":60, + "max":[ + 3.7875030040740967, + 13.413309097290039, + 4.245893955230713 + ], + "min":[ + -3.7875640392303467, + 0.000110626220703125, + -4.245933532714844 + ], + "type":"VEC3" + }, + { + "bufferView":20244, + "componentType":5126, + "count":60, + "type":"VEC3" + }, + { + "bufferView":20245, + "componentType":5126, + "count":60, + "type":"VEC2" + }, + { + "bufferView":20246, + "componentType":5126, + "count":4, + "max":[ + 0, + 2586.479248046875, + 698.884033203125 + ], + "min":[ + 0, + 0, + -698.885009765625 + ], + "type":"VEC3" + }, + { + "bufferView":20247, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20248, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20249, + "componentType":5126, + "count":112, + "max":[ + 106.49421691894531, + 381.6711730957031, + 171.66343688964844 + ], + "min":[ + -106.49431610107422, + 1.52587890625e-05, + -171.66342163085938 + ], + "type":"VEC3" + }, + { + "bufferView":20250, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":20251, + "componentType":5126, + "count":72, + "max":[ + 41.693359375, + 1095.577880859375, + 41.693359375 + ], + "min":[ + -41.693359375, + 0, + -41.69338607788086 + ], + "type":"VEC3" + }, + { + "bufferView":20252, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":20253, + "componentType":5126, + "count":336, + "max":[ + 170.435546875, + 188.556396484375, + 176.20263671875 + ], + "min":[ + -170.4345703125, + 45.296630859375, + -176.205078125 + ], + "type":"VEC3" + }, + { + "bufferView":20254, + "componentType":5126, + "count":336, + "type":"VEC3" + }, + { + "bufferView":20255, + "componentType":5126, + "count":336, + "type":"VEC2" + }, + { + "bufferView":20256, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":20257, + "componentType":5126, + "count":24, + "max":[ + 12.500126838684082, + 537.3468627929688, + 135.7646942138672 + ], + "min":[ + -12.500127792358398, + 6.103515625e-05, + -135.76467895507812 + ], + "type":"VEC3" + }, + { + "bufferView":20258, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20259, + "componentType":5126, + "count":595, + "max":[ + 147.6327362060547, + 179.0280303955078, + 135.0994873046875 + ], + "min":[ + -147.62928771972656, + 4.57763671875e-05, + -135.09910583496094 + ], + "type":"VEC3" + }, + { + "bufferView":20260, + "componentType":5126, + "count":595, + "type":"VEC3" + }, + { + "bufferView":20261, + "componentType":5123, + "count":996, + "type":"SCALAR" + }, + { + "bufferView":20262, + "componentType":5126, + "count":71, + "max":[ + 3.7875242233276367, + 14.031471252441406, + 5.5484700202941895 + ], + "min":[ + -3.787548780441284, + -3.199544153176248e-05, + -5.548454284667969 + ], + "type":"VEC3" + }, + { + "bufferView":20263, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":20264, + "componentType":5126, + "count":71, + "type":"VEC2" + }, + { + "bufferView":20265, + "componentType":5126, + "count":2281, + "max":[ + 65.60057067871094, + 185.22500610351562, + 5.788394927978516 + ], + "min":[ + -65.60050964355469, + -3.814697265625e-05, + -5.788308143615723 + ], + "type":"VEC3" + }, + { + "bufferView":20266, + "componentType":5126, + "count":2281, + "type":"VEC3" + }, + { + "bufferView":20267, + "componentType":5126, + "count":2281, + "type":"VEC2" + }, + { + "bufferView":20268, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":20269, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20270, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20271, + "componentType":5126, + "count":56, + "max":[ + 29.798583984375, + 520.124755859375, + 217.04150390625 + ], + "min":[ + -29.7984619140625, + -0.000244140625, + -217.04052734375 + ], + "type":"VEC3" + }, + { + "bufferView":20272, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":20273, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":20274, + "componentType":5126, + "count":489, + "max":[ + 186.85626220703125, + 259.27752685546875, + 182.41015625 + ], + "min":[ + -186.8560791015625, + 7.62939453125e-06, + -182.40966796875 + ], + "type":"VEC3" + }, + { + "bufferView":20275, + "componentType":5126, + "count":489, + "type":"VEC3" + }, + { + "bufferView":20276, + "componentType":5126, + "count":489, + "type":"VEC2" + }, + { + "bufferView":20277, + "componentType":5126, + "count":574, + "max":[ + 166.2982635498047, + 172.00177001953125, + 145.03713989257812 + ], + "min":[ + -166.29783630371094, + 0.000152587890625, + -145.0371551513672 + ], + "type":"VEC3" + }, + { + "bufferView":20278, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":20279, + "componentType":5126, + "count":799, + "max":[ + 4.13232421875, + 90.58753204345703, + 34.45508575439453 + ], + "min":[ + -4.13232421875, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":20280, + "componentType":5126, + "count":799, + "type":"VEC3" + }, + { + "bufferView":20281, + "componentType":5126, + "count":799, + "type":"VEC2" + }, + { + "bufferView":20282, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":20283, + "componentType":5126, + "count":582, + "max":[ + 178.90992736816406, + 184.43942260742188, + 155.9606170654297 + ], + "min":[ + -178.91232299804688, + -0.00011444091796875, + -155.9601593017578 + ], + "type":"VEC3" + }, + { + "bufferView":20284, + "componentType":5126, + "count":582, + "type":"VEC3" + }, + { + "bufferView":20285, + "componentType":5126, + "count":796, + "max":[ + 4.130859375, + 90.58740997314453, + 34.45508575439453 + ], + "min":[ + -4.1328125, + -7.62939453125e-06, + -34.45850372314453 + ], + "type":"VEC3" + }, + { + "bufferView":20286, + "componentType":5126, + "count":796, + "type":"VEC3" + }, + { + "bufferView":20287, + "componentType":5126, + "count":796, + "type":"VEC2" + }, + { + "bufferView":20288, + "componentType":5123, + "count":1272, + "type":"SCALAR" + }, + { + "bufferView":20289, + "componentType":5126, + "count":350, + "max":[ + 171.296875, + 184.8046875, + 176.14013671875 + ], + "min":[ + -171.298828125, + 44.455078125, + -176.141845703125 + ], + "type":"VEC3" + }, + { + "bufferView":20290, + "componentType":5126, + "count":350, + "type":"VEC3" + }, + { + "bufferView":20291, + "componentType":5126, + "count":350, + "type":"VEC2" + }, + { + "bufferView":20292, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":20293, + "componentType":5126, + "count":122, + "max":[ + 983.46875, + 355.5093688964844, + 983.4719848632812 + ], + "min":[ + -983.470703125, + 9.1552734375e-05, + -983.4695434570312 + ], + "type":"VEC3" + }, + { + "bufferView":20294, + "componentType":5126, + "count":122, + "type":"VEC3" + }, + { + "bufferView":20295, + "componentType":5126, + "count":122, + "type":"VEC2" + }, + { + "bufferView":20296, + "componentType":5126, + "count":50, + "max":[ + 142.32080078125, + 608.220703125, + 391.73779296875 + ], + "min":[ + -142.32177734375, + 0, + -391.737548828125 + ], + "type":"VEC3" + }, + { + "bufferView":20297, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":20298, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":20299, + "componentType":5126, + "count":4, + "max":[ + 151.7263641357422, + 6.464691162109375, + -3.0517578125e-05 + ], + "min":[ + -151.72677612304688, + 6.103515625e-05, + -7.62939453125e-05 + ], + "type":"VEC3" + }, + { + "bufferView":20300, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20301, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20302, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":20303, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20304, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20305, + "componentType":5126, + "count":574, + "max":[ + 207.89891052246094, + 32.82524871826172, + 207.8981475830078 + ], + "min":[ + -207.89772033691406, + 0.0001068115234375, + -207.89852905273438 + ], + "type":"VEC3" + }, + { + "bufferView":20306, + "componentType":5126, + "count":574, + "type":"VEC3" + }, + { + "bufferView":20307, + "componentType":5126, + "count":24, + "max":[ + 15.4755859375, + 2142.8671875, + 381.68621826171875 + ], + "min":[ + -15.4755859375, + 0, + -381.68670654296875 + ], + "type":"VEC3" + }, + { + "bufferView":20308, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20309, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":20310, + "componentType":5126, + "count":120, + "max":[ + 25.64990234375, + 2528.2978515625, + 1386.0146484375 + ], + "min":[ + -25.6494140625, + -0.0001220703125, + -1386.015625 + ], + "type":"VEC3" + }, + { + "bufferView":20311, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":20312, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":20313, + "componentType":5126, + "count":224, + "max":[ + 146.6806640625, + 281.02813720703125, + 131.18043518066406 + ], + "min":[ + -146.68443298339844, + 9.1552734375e-05, + -131.1804656982422 + ], + "type":"VEC3" + }, + { + "bufferView":20314, + "componentType":5126, + "count":224, + "type":"VEC3" + }, + { + "bufferView":20315, + "componentType":5126, + "count":334, + "max":[ + 171.298828125, + 184.80712890625, + 176.1416015625 + ], + "min":[ + -171.2978515625, + 44.4580078125, + -176.140625 + ], + "type":"VEC3" + }, + { + "bufferView":20316, + "componentType":5126, + "count":334, + "type":"VEC3" + }, + { + "bufferView":20317, + "componentType":5126, + "count":334, + "type":"VEC2" + }, + { + "bufferView":20318, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":20319, + "componentType":5126, + "count":4, + "max":[ + 3.150543212890625, + 297.9599304199219, + -9.1552734375e-05 + ], + "min":[ + -3.15069580078125, + -4.57763671875e-05, + -0.0001373291015625 + ], + "type":"VEC3" + }, + { + "bufferView":20320, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20321, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20322, + "componentType":5126, + "count":338, + "max":[ + 170.9052734375, + 156.9990234375, + 177.25439453125 + ], + "min":[ + -170.9052734375, + 21.2880859375, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":20323, + "componentType":5126, + "count":338, + "type":"VEC3" + }, + { + "bufferView":20324, + "componentType":5126, + "count":338, + "type":"VEC2" + }, + { + "bufferView":20325, + "componentType":5126, + "count":72, + "max":[ + 771.345458984375, + 1492.539794921875, + 22.500337600708008 + ], + "min":[ + -771.3455200195312, + 0, + -22.50017738342285 + ], + "type":"VEC3" + }, + { + "bufferView":20326, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":20327, + "componentType":5126, + "count":228, + "max":[ + 105.79638671875, + 2059.5048828125, + 105.7998046875 + ], + "min":[ + -105.798828125, + 0, + -105.798828125 + ], + "type":"VEC3" + }, + { + "bufferView":20328, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":20329, + "componentType":5126, + "count":228, + "type":"VEC2" + }, + { + "bufferView":20330, + "componentType":5126, + "count":274, + "max":[ + 169.107421875, + 196.21435546875, + 175.05322265625 + ], + "min":[ + -169.1064453125, + 0, + -175.0537109375 + ], + "type":"VEC3" + }, + { + "bufferView":20331, + "componentType":5126, + "count":274, + "type":"VEC3" + }, + { + "bufferView":20332, + "componentType":5126, + "count":274, + "type":"VEC2" + }, + { + "bufferView":20333, + "componentType":5126, + "count":1810, + "max":[ + 91.37360382080078, + 182.74732971191406, + 6.498558044433594 + ], + "min":[ + -91.37369537353516, + 1.52587890625e-05, + -6.498471260070801 + ], + "type":"VEC3" + }, + { + "bufferView":20334, + "componentType":5126, + "count":1810, + "type":"VEC3" + }, + { + "bufferView":20335, + "componentType":5126, + "count":1810, + "type":"VEC2" + }, + { + "bufferView":20336, + "componentType":5126, + "count":7986, + "max":[ + 103.78759765625, + 429.9638671875, + 496.1484375 + ], + "min":[ + -103.78662109375, + 0, + -496.148681640625 + ], + "type":"VEC3" + }, + { + "bufferView":20337, + "componentType":5126, + "count":7986, + "type":"VEC3" + }, + { + "bufferView":20338, + "componentType":5126, + "count":7986, + "type":"VEC2" + }, + { + "bufferView":20339, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":20340, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20341, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20342, + "componentType":5126, + "count":1420, + "max":[ + 244.4677734375, + 367.92938232421875, + 384.5793762207031 + ], + "min":[ + -244.4677734375, + 0.0001068115234375, + -384.5820617675781 + ], + "type":"VEC3" + }, + { + "bufferView":20343, + "componentType":5126, + "count":1420, + "type":"VEC3" + }, + { + "bufferView":20344, + "componentType":5126, + "count":1420, + "type":"VEC2" + }, + { + "bufferView":20345, + "componentType":5126, + "count":6808, + "max":[ + 37.94609069824219, + 117.86515808105469, + 219.26397705078125 + ], + "min":[ + -37.94620895385742, + -0.0001678466796875, + -219.26248168945312 + ], + "type":"VEC3" + }, + { + "bufferView":20346, + "componentType":5126, + "count":6808, + "type":"VEC3" + }, + { + "bufferView":20347, + "componentType":5126, + "count":6808, + "type":"VEC2" + }, + { + "bufferView":20348, + "componentType":5126, + "count":205, + "max":[ + 386.787109375, + 773.5765991210938, + 81.21630859375 + ], + "min":[ + -386.7900390625, + -6.103515625e-05, + -81.21630859375 + ], + "type":"VEC3" + }, + { + "bufferView":20349, + "componentType":5126, + "count":205, + "type":"VEC3" + }, + { + "bufferView":20350, + "componentType":5126, + "count":205, + "type":"VEC2" + }, + { + "bufferView":20351, + "componentType":5123, + "count":420, + "type":"SCALAR" + }, + { + "bufferView":20352, + "componentType":5126, + "count":570, + "max":[ + 191.5255126953125, + 198.21255493164062, + 173.0238037109375 + ], + "min":[ + -191.5229949951172, + 1.3351058959960938, + -160.74346923828125 + ], + "type":"VEC3" + }, + { + "bufferView":20353, + "componentType":5126, + "count":570, + "type":"VEC3" + }, + { + "bufferView":20354, + "componentType":5126, + "count":333, + "max":[ + 170.904296875, + 157.001953125, + 177.25439453125 + ], + "min":[ + -170.90625, + 21.28857421875, + -177.25390625 + ], + "type":"VEC3" + }, + { + "bufferView":20355, + "componentType":5126, + "count":333, + "type":"VEC3" + }, + { + "bufferView":20356, + "componentType":5126, + "count":333, + "type":"VEC2" + }, + { + "bufferView":20357, + "componentType":5123, + "count":720, + "type":"SCALAR" + }, + { + "bufferView":20358, + "componentType":5126, + "count":282, + "max":[ + 23.163818359375, + 230.638671875, + 115.3154296875 + ], + "min":[ + -23.16552734375, + 0, + -115.3173828125 + ], + "type":"VEC3" + }, + { + "bufferView":20359, + "componentType":5126, + "count":282, + "type":"VEC3" + }, + { + "bufferView":20360, + "componentType":5126, + "count":282, + "type":"VEC2" + }, + { + "bufferView":20361, + "componentType":5126, + "count":8090, + "max":[ + 496.1484375, + 429.962890625, + 103.78857421875 + ], + "min":[ + -496.148681640625, + 0, + -103.78564453125 + ], + "type":"VEC3" + }, + { + "bufferView":20362, + "componentType":5126, + "count":8090, + "type":"VEC3" + }, + { + "bufferView":20363, + "componentType":5126, + "count":8090, + "type":"VEC2" + }, + { + "bufferView":20364, + "componentType":5123, + "count":16560, + "type":"SCALAR" + }, + { + "bufferView":20365, + "componentType":5126, + "count":4, + "max":[ + 1.2871170043945312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2862548828125, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":20366, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20367, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20368, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":20369, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20370, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20371, + "componentType":5126, + "count":4, + "max":[ + 1.2866287231445312, + 144.50997924804688, + -9.1552734375e-05 + ], + "min":[ + -1.2867431640625, + -2.288818359375e-05, + -0.000152587890625 + ], + "type":"VEC3" + }, + { + "bufferView":20372, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":20373, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":20374, + "componentType":5126, + "count":327, + "max":[ + 111.53087615966797, + 1147.8228759765625, + 166.08595275878906 + ], + "min":[ + -111.53184509277344, + -6.1035148974042386e-05, + -166.0859832763672 + ], + "type":"VEC3" + }, + { + "bufferView":20375, + "componentType":5126, + "count":327, + "type":"VEC3" + }, + { + "bufferView":20376, + "componentType":5126, + "count":327, + "type":"VEC2" + }, + { + "bufferView":20377, + "componentType":5126, + "count":327, + "type":"VEC2" + }, + { + "bufferView":20378, + "componentType":5126, + "count":96, + "max":[ + 118.15005493164062, + 957.5928955078125, + 149.91680908203125 + ], + "min":[ + 106.53060913085938, + 53.104644775390625, + -151.07305908203125 + ], + "type":"VEC3" + }, + { + "bufferView":20379, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":20380, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":20381, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":20382, + "componentType":5126, + "count":327, + "max":[ + 111.53087615966797, + 1147.8228759765625, + 166.08595275878906 + ], + "min":[ + -111.53184509277344, + -6.1035148974042386e-05, + -166.0859832763672 + ], + "type":"VEC3" + }, + { + "bufferView":20383, + "componentType":5126, + "count":327, + "type":"VEC3" + }, + { + "bufferView":20384, + "componentType":5126, + "count":327, + "type":"VEC2" + }, + { + "bufferView":20385, + "componentType":5126, + "count":327, + "type":"VEC2" + }, + { + "bufferView":20386, + "componentType":5126, + "count":96, + "max":[ + 118.15005493164062, + 957.5928955078125, + 149.91680908203125 + ], + "min":[ + 106.53060913085938, + 53.104644775390625, + -151.07305908203125 + ], + "type":"VEC3" + }, + { + "bufferView":20387, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":20388, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":20389, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":20390, + "componentType":5126, + "count":327, + "max":[ + 111.53087615966797, + 1147.8228759765625, + 166.08595275878906 + ], + "min":[ + -111.53184509277344, + -6.1035148974042386e-05, + -166.0859832763672 + ], + "type":"VEC3" + }, + { + "bufferView":20391, + "componentType":5126, + "count":327, + "type":"VEC3" + }, + { + "bufferView":20392, + "componentType":5126, + "count":327, + "type":"VEC2" + }, + { + "bufferView":20393, + "componentType":5126, + "count":327, + "type":"VEC2" + }, + { + "bufferView":20394, + "componentType":5126, + "count":96, + "max":[ + 118.15005493164062, + 957.5928955078125, + 149.91680908203125 + ], + "min":[ + 106.53060913085938, + 53.104644775390625, + -151.07305908203125 + ], + "type":"VEC3" + }, + { + "bufferView":20395, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":20396, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":20397, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":20398, + "componentType":5126, + "count":327, + "max":[ + 111.53087615966797, + 1147.8228759765625, + 166.08595275878906 + ], + "min":[ + -111.53184509277344, + -6.1035148974042386e-05, + -166.0859832763672 + ], + "type":"VEC3" + }, + { + "bufferView":20399, + "componentType":5126, + "count":327, + "type":"VEC3" + }, + { + "bufferView":20400, + "componentType":5126, + "count":327, + "type":"VEC2" + }, + { + "bufferView":20401, + "componentType":5126, + "count":327, + "type":"VEC2" + }, + { + "bufferView":20402, + "componentType":5126, + "count":96, + "max":[ + 118.15005493164062, + 957.5928955078125, + 149.91680908203125 + ], + "min":[ + 106.53060913085938, + 53.104644775390625, + -151.07305908203125 + ], + "type":"VEC3" + }, + { + "bufferView":20403, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":20404, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":20405, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":20406, + "componentType":5126, + "count":327, + "max":[ + 111.53087615966797, + 1147.8228759765625, + 166.08595275878906 + ], + "min":[ + -111.53184509277344, + -6.1035148974042386e-05, + -166.0859832763672 + ], + "type":"VEC3" + }, + { + "bufferView":20407, + "componentType":5126, + "count":327, + "type":"VEC3" + }, + { + "bufferView":20408, + "componentType":5126, + "count":327, + "type":"VEC2" + }, + { + "bufferView":20409, + "componentType":5126, + "count":327, + "type":"VEC2" + }, + { + "bufferView":20410, + "componentType":5126, + "count":96, + "max":[ + 118.15005493164062, + 957.5928955078125, + 149.91680908203125 + ], + "min":[ + 106.53060913085938, + 53.104644775390625, + -151.07305908203125 + ], + "type":"VEC3" + }, + { + "bufferView":20411, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":20412, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":20413, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":20414, + "componentType":5126, + "count":1174, + "max":[ + 167.39842224121094, + 1064.02099609375, + 6975.431640625 + ], + "min":[ + -166.68748474121094, + -0.0010414122371003032, + -2563.286376953125 + ], + "type":"VEC3" + }, + { + "bufferView":20415, + "componentType":5126, + "count":1174, + "type":"VEC3" + }, + { + "bufferView":20416, + "componentType":5126, + "count":1174, + "type":"VEC2" + }, + { + "bufferView":20417, + "componentType":5123, + "count":1764, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":1752, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":1752, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":3504, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":4672, + "target":34963 + }, + { + "buffer":0, + "byteLength":8904, + "byteOffset":5224, + "target":34962 + }, + { + "buffer":0, + "byteLength":8904, + "byteOffset":14128, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":23032, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":25696, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":25984, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":26272, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":26344, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":26392, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":26440, + "target":34962 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":26472, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":26484, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":33492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":40500, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42492, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42540, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":42588, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":42620, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":49508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":56396, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58388, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58676, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":58964, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":59156, + "target":34963 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":59228, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":69608, + "target":34962 + }, + { + "buffer":0, + "byteLength":6920, + "byteOffset":79988, + "target":34962 + }, + { + "buffer":0, + "byteLength":3048, + "byteOffset":86908, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":89956, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90244, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":90532, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":90724, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90796, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":91084, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":91372, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":91564, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":91636, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":91684, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":91732, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":91764, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":98748, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":105732, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":107724, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":114684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":121644, + "target":34963 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":123636, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":124236, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":124836, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":125236, + "target":34963 + }, + { + "buffer":0, + "byteLength":32436, + "byteOffset":125404, + "target":34962 + }, + { + "buffer":0, + "byteLength":32436, + "byteOffset":157840, + "target":34962 + }, + { + "buffer":0, + "byteLength":21624, + "byteOffset":190276, + "target":34962 + }, + { + "buffer":0, + "byteLength":9600, + "byteOffset":211900, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":221500, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":224224, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":226948, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":228764, + "target":34963 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":229868, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":236936, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":244004, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":245996, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":247148, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":248300, + "target":34963 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":248564, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":255440, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":262316, + "target":34963 + }, + { + "buffer":0, + "byteLength":4068, + "byteOffset":264308, + "target":34962 + }, + { + "buffer":0, + "byteLength":4068, + "byteOffset":268376, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":272444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":275156, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":276596, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":277940, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":279284, + "target":34963 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":279932, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":287828, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":295724, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":300988, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":303532, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":303580, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":303628, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":303660, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":306384, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":309108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":310924, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":312028, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":312316, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":312604, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":312796, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":319636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":326476, + "target":34963 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":328468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":335392, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":342316, + "target":34963 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":344308, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":348460, + "target":34962 + }, + { + "buffer":0, + "byteLength":2768, + "byteOffset":352612, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":355380, + "target":34963 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":356820, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":360924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":365028, + "target":34963 + }, + { + "buffer":0, + "byteLength":9912, + "byteOffset":366348, + "target":34962 + }, + { + "buffer":0, + "byteLength":9912, + "byteOffset":376260, + "target":34962 + }, + { + "buffer":0, + "byteLength":6608, + "byteOffset":386172, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":392780, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":395324, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":395372, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":395420, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":395452, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":395740, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":396028, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":396892, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":397756, + "target":34963 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":397996, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":405076, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":412156, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":414148, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":414724, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":415300, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":415684, + "target":34963 + }, + { + "buffer":0, + "byteLength":4212, + "byteOffset":415852, + "target":34962 + }, + { + "buffer":0, + "byteLength":4212, + "byteOffset":420064, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":424276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":427084, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":428524, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":429100, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":429676, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":430060, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":430672, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":431284, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":431692, + "target":34963 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":431860, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":434596, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":437332, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":439156, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":440116, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":457156, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":474196, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":485556, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":490500, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":491076, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":491652, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":492036, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":492204, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":492492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1476, + "byteOffset":492780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1476, + "byteOffset":494256, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":495732, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":496716, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":497196, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":514236, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":531276, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":542636, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":542684, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":542732, + "target":34962 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":542764, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":542776, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":543064, + "target":34962 + }, + { + "buffer":0, + "byteLength":8256, + "byteOffset":543352, + "target":34962 + }, + { + "buffer":0, + "byteLength":8256, + "byteOffset":551608, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":559864, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":562528, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":562672, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":562816, + "target":34962 + }, + { + "buffer":0, + "byteLength":36, + "byteOffset":562912, + "target":34963 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":562948, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":566812, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":570676, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":573252, + "target":34963 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":574212, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":576996, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":579780, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":580764, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":580812, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":580860, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":580892, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":581180, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":581468, + "target":34962 + }, + { + "buffer":0, + "byteLength":3192, + "byteOffset":581660, + "target":34962 + }, + { + "buffer":0, + "byteLength":3192, + "byteOffset":584852, + "target":34962 + }, + { + "buffer":0, + "byteLength":2128, + "byteOffset":588044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1128, + "byteOffset":590172, + "target":34963 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":591300, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":598008, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":604716, + "target":34962 + }, + { + "buffer":0, + "byteLength":5760, + "byteOffset":609188, + "target":34963 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":614948, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":619076, + "target":34962 + }, + { + "buffer":0, + "byteLength":2752, + "byteOffset":623204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":625956, + "target":34963 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":627396, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":634236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":641076, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":643068, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":643980, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":644892, + "target":34962 + }, + { + "buffer":0, + "byteLength":312, + "byteOffset":645500, + "target":34963 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":645812, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":646664, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":647516, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":648084, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":648300, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":648348, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":648396, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":648428, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":648908, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":649388, + "target":34962 + }, + { + "buffer":0, + "byteLength":348, + "byteOffset":649708, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":650056, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":650344, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":650632, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":650824, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":650896, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":650944, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":650992, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":651024, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":658128, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":665232, + "target":34963 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":667224, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":674376, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":681528, + "target":34963 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":683520, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":685536, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":687552, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":688896, + "target":34963 + }, + { + "buffer":0, + "byteLength":18336, + "byteOffset":689616, + "target":34962 + }, + { + "buffer":0, + "byteLength":18336, + "byteOffset":707952, + "target":34962 + }, + { + "buffer":0, + "byteLength":12224, + "byteOffset":726288, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":738512, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":743312, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":750200, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":757088, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":759080, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":759368, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":759656, + "target":34962 + }, + { + "buffer":0, + "byteLength":2220, + "byteOffset":759848, + "target":34962 + }, + { + "buffer":0, + "byteLength":2220, + "byteOffset":762068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1480, + "byteOffset":764288, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":765768, + "target":34963 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":766488, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":773328, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":780168, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":782160, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":782304, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":782448, + "target":34962 + }, + { + "buffer":0, + "byteLength":36, + "byteOffset":782544, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":782580, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":782868, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":783156, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":783204, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":783252, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":783284, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":790292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":797300, + "target":34963 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":799292, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":806000, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":812708, + "target":34962 + }, + { + "buffer":0, + "byteLength":5760, + "byteOffset":817180, + "target":34963 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":822940, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":825628, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":828316, + "target":34963 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":829300, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":830284, + "target":34962 + }, + { + "buffer":0, + "byteLength":656, + "byteOffset":831268, + "target":34962 + }, + { + "buffer":0, + "byteLength":456, + "byteOffset":831924, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":832380, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":832428, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":832476, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":832508, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":849548, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":866588, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":877948, + "target":34963 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":882892, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":883372, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":883852, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":884172, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":884460, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":884748, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":884940, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":885228, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":885516, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":885708, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":897948, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":910188, + "target":34962 + }, + { + "buffer":0, + "byteLength":3060, + "byteOffset":918348, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":921408, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":923160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":924912, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":926080, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":926944, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":927808, + "target":34963 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":928072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":929536, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":931000, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":931976, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":932456, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":932504, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":932552, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":932584, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":932632, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":932680, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":932712, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":933000, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":933288, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":933576, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":933864, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":934008, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":934152, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":934248, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":936480, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":938712, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":940200, + "target":34963 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":940752, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":942072, + "target":34962 + }, + { + "buffer":0, + "byteLength":880, + "byteOffset":943392, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":944272, + "target":34963 + }, + { + "buffer":0, + "byteLength":57624, + "byteOffset":944752, + "target":34962 + }, + { + "buffer":0, + "byteLength":57624, + "byteOffset":1002376, + "target":34962 + }, + { + "buffer":0, + "byteLength":38416, + "byteOffset":1060000, + "target":34962 + }, + { + "buffer":0, + "byteLength":19416, + "byteOffset":1098416, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1117832, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1117880, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":1117928, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":1117960, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":1118584, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":1119208, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":1119624, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":1119792, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":1121544, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":1123296, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":1124464, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":1134844, + "target":34962 + }, + { + "buffer":0, + "byteLength":6920, + "byteOffset":1145224, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":1152144, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":1153008, + "target":34962 + }, + { + "buffer":0, + "byteLength":3924, + "byteOffset":1153872, + "target":34962 + }, + { + "buffer":0, + "byteLength":3924, + "byteOffset":1157796, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":1161720, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":1164336, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":1166952, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":1168032, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":1169184, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":1170336, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":1171104, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1171872, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":1172160, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":1179096, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":1186032, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1188024, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1188072, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":1188120, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":1188152, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":1195088, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":1202024, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1204016, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1204064, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":1204112, + "target":34962 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":1204144, + "target":34963 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":1204156, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":1210972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":1217788, + "target":34963 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":1219780, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":1220308, + "target":34962 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":1220836, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":1221188, + "target":34963 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":1221356, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":1233596, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":1245836, + "target":34962 + }, + { + "buffer":0, + "byteLength":3744, + "byteOffset":1253996, + "target":34963 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":1257740, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":1261964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":1266188, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1267508, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1267556, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":1267604, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":1267636, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":1268284, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":1268932, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":1269364, + "target":34963 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":1269532, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":1276372, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":1283212, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":1285204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":1286548, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":1287892, + "target":34963 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":1288540, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":1291924, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":1295308, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":1297564, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1298524, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1298812, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":1299100, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1299292, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1299580, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":1299868, + "target":34962 + }, + { + "buffer":0, + "byteLength":2064, + "byteOffset":1300060, + "target":34962 + }, + { + "buffer":0, + "byteLength":2064, + "byteOffset":1302124, + "target":34962 + }, + { + "buffer":0, + "byteLength":1376, + "byteOffset":1304188, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":1305564, + "target":34963 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":1306284, + "target":34962 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":1316064, + "target":34962 + }, + { + "buffer":0, + "byteLength":6520, + "byteOffset":1325844, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":1332364, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1334908, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1335196, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":1335484, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1335676, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1335964, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1336252, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1336540, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":1336828, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":1336900, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":1337044, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":1337188, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":1337284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":1339276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1328, + "byteOffset":1341268, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":1342596, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":1343316, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":1343892, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":1344468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":1344852, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":1351620, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":1358388, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1360380, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1360668, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":1360956, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":1361508, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":1362060, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":1362428, + "target":34963 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":1362596, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":1364060, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":1365524, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":1366500, + "target":34963 + }, + { + "buffer":0, + "byteLength":99480, + "byteOffset":1366980, + "target":34962 + }, + { + "buffer":0, + "byteLength":99480, + "byteOffset":1466460, + "target":34962 + }, + { + "buffer":0, + "byteLength":66320, + "byteOffset":1565940, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":1632260, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1665380, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1665428, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":1665476, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":1665508, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":1674508, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":1683508, + "target":34963 + }, + { + "buffer":0, + "byteLength":15996, + "byteOffset":1686172, + "target":34962 + }, + { + "buffer":0, + "byteLength":15996, + "byteOffset":1702168, + "target":34962 + }, + { + "buffer":0, + "byteLength":10664, + "byteOffset":1718164, + "target":34962 + }, + { + "buffer":0, + "byteLength":9720, + "byteOffset":1728828, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1738548, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1738836, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":1739124, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":1739316, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":1746204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":1753092, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1755084, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1755132, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":1755180, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1755212, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1755260, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":1755308, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":1755340, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":1763236, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":1771132, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":1776396, + "target":34963 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":1778940, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":1779552, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":1780164, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":1780572, + "target":34963 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":1780740, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":1787532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":1794324, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":1796316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":1798068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":1799820, + "target":34962 + }, + { + "buffer":0, + "byteLength":15996, + "byteOffset":1800988, + "target":34962 + }, + { + "buffer":0, + "byteLength":15996, + "byteOffset":1816984, + "target":34962 + }, + { + "buffer":0, + "byteLength":10664, + "byteOffset":1832980, + "target":34962 + }, + { + "buffer":0, + "byteLength":9720, + "byteOffset":1843644, + "target":34963 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":1853364, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":1856172, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":1858980, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":1859964, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":1866972, + "target":34962 + }, + { + "buffer":0, + "byteLength":7392, + "byteOffset":1873980, + "target":34962 + }, + { + "buffer":0, + "byteLength":7392, + "byteOffset":1881372, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":1888764, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":1890756, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":1897788, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":1904820, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1906812, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1907100, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":1907388, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":1916052, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":1924716, + "target":34963 + }, + { + "buffer":0, + "byteLength":7272, + "byteOffset":1927380, + "target":34962 + }, + { + "buffer":0, + "byteLength":7272, + "byteOffset":1934652, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":1941924, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1943916, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1943964, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":1944012, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":1944044, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":1950860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":1957676, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1959668, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1959956, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":1960244, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":1960436, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":1967564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":1974692, + "target":34963 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":1976684, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":1977356, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":1978028, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":1978476, + "target":34963 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":1978644, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":1985412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":1992180, + "target":34963 + }, + { + "buffer":0, + "byteLength":1548, + "byteOffset":1994172, + "target":34962 + }, + { + "buffer":0, + "byteLength":1548, + "byteOffset":1995720, + "target":34962 + }, + { + "buffer":0, + "byteLength":1032, + "byteOffset":1997268, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":1998300, + "target":34963 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":1998780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":1999884, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":2000988, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":2001724, + "target":34963 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":2002132, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":2009908, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":2017684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":2022868, + "target":34963 + }, + { + "buffer":0, + "byteLength":1368, + "byteOffset":2024812, + "target":34962 + }, + { + "buffer":0, + "byteLength":1368, + "byteOffset":2026180, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":2027548, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2028460, + "target":34963 + }, + { + "buffer":0, + "byteLength":2532, + "byteOffset":2028748, + "target":34962 + }, + { + "buffer":0, + "byteLength":2532, + "byteOffset":2031280, + "target":34962 + }, + { + "buffer":0, + "byteLength":1688, + "byteOffset":2033812, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":2035500, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2036124, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2036172, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":2036220, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":2036252, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":2040428, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":2044604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":2047388, + "target":34963 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":2048828, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":2056004, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":2063180, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2065172, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2065220, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":2065268, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":2065300, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":2065924, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":2066548, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":2066964, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":2067132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":2068476, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":2069820, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2070468, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2070516, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":2070564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":2070596, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":2072516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1280, + "byteOffset":2074436, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":2075716, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":2076436, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":2093476, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":2110516, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":2121876, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":2126820, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":2133804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":2140788, + "target":34963 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":2142780, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":2143260, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":2143740, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2144060, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2144348, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":2144636, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":2144828, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":2151908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":2158988, + "target":34963 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":2160980, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":2163764, + "target":34962 + }, + { + "buffer":0, + "byteLength":1856, + "byteOffset":2166548, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":2168404, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2169364, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2169652, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":2169940, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":2170132, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":2176852, + "target":34962 + }, + { + "buffer":0, + "byteLength":4480, + "byteOffset":2183572, + "target":34962 + }, + { + "buffer":0, + "byteLength":3264, + "byteOffset":2188052, + "target":34963 + }, + { + "buffer":0, + "byteLength":3336, + "byteOffset":2191316, + "target":34962 + }, + { + "buffer":0, + "byteLength":3336, + "byteOffset":2194652, + "target":34962 + }, + { + "buffer":0, + "byteLength":2224, + "byteOffset":2197988, + "target":34962 + }, + { + "buffer":0, + "byteLength":1128, + "byteOffset":2200212, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2201340, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2201388, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":2201436, + "target":34962 + }, + { + "buffer":0, + "byteLength":8112, + "byteOffset":2201468, + "target":34962 + }, + { + "buffer":0, + "byteLength":8112, + "byteOffset":2209580, + "target":34962 + }, + { + "buffer":0, + "byteLength":5408, + "byteOffset":2217692, + "target":34962 + }, + { + "buffer":0, + "byteLength":2472, + "byteOffset":2223100, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2225572, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2225860, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":2226148, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":2226340, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":2228572, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":2230804, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":2232292, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":2235004, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":2237716, + "target":34963 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":2238700, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":2241820, + "target":34962 + }, + { + "buffer":0, + "byteLength":2080, + "byteOffset":2244940, + "target":34962 + }, + { + "buffer":0, + "byteLength":828, + "byteOffset":2247020, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":2247848, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":2249600, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":2251352, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":2252520, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":2260296, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":2268072, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":2273256, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":2276640, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":2280024, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":2282280, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":2282424, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":2282568, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2282664, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2282712, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":2282760, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":2282792, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":2289776, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":2296760, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":2298752, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":2299616, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":2300480, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":2301092, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":2301704, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":2302112, + "target":34963 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":2302280, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":2306444, + "target":34962 + }, + { + "buffer":0, + "byteLength":2776, + "byteOffset":2310608, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":2313384, + "target":34963 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":2314824, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":2315376, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":2315928, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":2316296, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2316464, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2316752, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":2317040, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":2317232, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":2324324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":2331416, + "target":34963 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":2333408, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":2333888, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":2334368, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2334688, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2334976, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":2335264, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":2342248, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":2349232, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":2351224, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":2351368, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":2351512, + "target":34962 + }, + { + "buffer":0, + "byteLength":12264, + "byteOffset":2351608, + "target":34962 + }, + { + "buffer":0, + "byteLength":12264, + "byteOffset":2363872, + "target":34962 + }, + { + "buffer":0, + "byteLength":8176, + "byteOffset":2376136, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":2384312, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":2389112, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":2396120, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2403128, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2403176, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":2403224, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":2403256, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":2409976, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":2416696, + "target":34963 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":2418688, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":2427352, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":2436016, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":2453056, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":2470096, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":2481456, + "target":34963 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":2486400, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":2494176, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":2501952, + "target":34962 + }, + { + "buffer":0, + "byteLength":3996, + "byteOffset":2507136, + "target":34962 + }, + { + "buffer":0, + "byteLength":3996, + "byteOffset":2511132, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":2515128, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":2517792, + "target":34963 + }, + { + "buffer":0, + "byteLength":9888, + "byteOffset":2519232, + "target":34962 + }, + { + "buffer":0, + "byteLength":9888, + "byteOffset":2529120, + "target":34962 + }, + { + "buffer":0, + "byteLength":6592, + "byteOffset":2539008, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":2545600, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":2548144, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":2549008, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":2549872, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2550112, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2550400, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2550688, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2550976, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":2551264, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":2551456, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":2559232, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":2567008, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":2572192, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":2573824, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":2575456, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":2576544, + "target":34963 + }, + { + "buffer":0, + "byteLength":6852, + "byteOffset":2577024, + "target":34962 + }, + { + "buffer":0, + "byteLength":6852, + "byteOffset":2583876, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":2590728, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2592720, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2593008, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":2593296, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":2593488, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":2594040, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":2594592, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":2594960, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":2595824, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":2596688, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":2597264, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":2597840, + "target":34962 + }, + { + "buffer":0, + "byteLength":1776, + "byteOffset":2598224, + "target":34962 + }, + { + "buffer":0, + "byteLength":1776, + "byteOffset":2600000, + "target":34962 + }, + { + "buffer":0, + "byteLength":1184, + "byteOffset":2601776, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":2602960, + "target":34963 + }, + { + "buffer":0, + "byteLength":12612, + "byteOffset":2603440, + "target":34962 + }, + { + "buffer":0, + "byteLength":12612, + "byteOffset":2616052, + "target":34962 + }, + { + "buffer":0, + "byteLength":8408, + "byteOffset":2628664, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":2637072, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2641872, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2642160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":2642448, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":2643792, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":2645136, + "target":34963 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":2645784, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":2652912, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":2660040, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":2662032, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":2664756, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":2667480, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":2669296, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":2675872, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":2682448, + "target":34962 + }, + { + "buffer":0, + "byteLength":3048, + "byteOffset":2686832, + "target":34963 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":2689880, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":2692568, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2695256, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2695304, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":2695352, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":2695384, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":2698144, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":2700904, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2701888, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2701936, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":2701984, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2702016, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2702304, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":2702592, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":2702784, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":2710560, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":2718336, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":2723520, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":2730720, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":2737920, + "target":34963 + }, + { + "buffer":0, + "byteLength":6420, + "byteOffset":2739912, + "target":34962 + }, + { + "buffer":0, + "byteLength":6420, + "byteOffset":2746332, + "target":34962 + }, + { + "buffer":0, + "byteLength":4280, + "byteOffset":2752752, + "target":34962 + }, + { + "buffer":0, + "byteLength":2352, + "byteOffset":2757032, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":2759384, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":2761136, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":2762888, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":2764056, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":2768208, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":2772360, + "target":34963 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":2773680, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":2777784, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":2781888, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":2784624, + "target":34963 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":2786064, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":2793960, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":2801856, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":2807120, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":2809808, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":2812496, + "target":34963 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":2813480, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":2814332, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":2815184, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2815752, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2815800, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":2815848, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":2815880, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":2816360, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":2816840, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2817160, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":2817208, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":2817256, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2817288, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2817576, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":2817864, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":2818056, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":2819160, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":2820264, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":2821000, + "target":34963 + }, + { + "buffer":0, + "byteLength":3900, + "byteOffset":2821408, + "target":34962 + }, + { + "buffer":0, + "byteLength":3900, + "byteOffset":2825308, + "target":34962 + }, + { + "buffer":0, + "byteLength":2600, + "byteOffset":2829208, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":2831808, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":2833248, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":2834112, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":2834976, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":2842032, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":2849088, + "target":34963 + }, + { + "buffer":0, + "byteLength":12540, + "byteOffset":2851080, + "target":34962 + }, + { + "buffer":0, + "byteLength":12540, + "byteOffset":2863620, + "target":34962 + }, + { + "buffer":0, + "byteLength":8360, + "byteOffset":2876160, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":2884520, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":2889320, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":2906360, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":2923400, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":2934760, + "target":34963 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":2939704, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":2946760, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":2953816, + "target":34963 + }, + { + "buffer":0, + "byteLength":32436, + "byteOffset":2955808, + "target":34962 + }, + { + "buffer":0, + "byteLength":32436, + "byteOffset":2988244, + "target":34962 + }, + { + "buffer":0, + "byteLength":21624, + "byteOffset":3020680, + "target":34962 + }, + { + "buffer":0, + "byteLength":4068, + "byteOffset":3042304, + "target":34962 + }, + { + "buffer":0, + "byteLength":4068, + "byteOffset":3046372, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":3050440, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":3053152, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3054592, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3054640, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":3054688, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3054720, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3054768, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":3054816, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":3054848, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":3062012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3069176, + "target":34963 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":3071168, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":3078008, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3084848, + "target":34963 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":3086840, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":3087488, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":3088136, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":3088568, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":3089912, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3091256, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3091304, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":3091352, + "target":34962 + }, + { + "buffer":0, + "byteLength":1668, + "byteOffset":3091384, + "target":34962 + }, + { + "buffer":0, + "byteLength":1668, + "byteOffset":3093052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1112, + "byteOffset":3094720, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":3095832, + "target":34963 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":3096312, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":3104088, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":3111864, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":3117048, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":3124044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3131040, + "target":34963 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":3133032, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":3139752, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3146472, + "target":34963 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":3148464, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":3149880, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":3151296, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":3152240, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":3152720, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":3159704, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3166688, + "target":34963 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":3168680, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":3169160, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":3169640, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3169960, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3170008, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":3170056, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3170088, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3170376, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":3170664, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":3170856, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":3177792, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3184728, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3186720, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3187008, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":3187296, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":3187488, + "target":34963 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":3187560, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":3189024, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":3190488, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":3191464, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":3194344, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":3197224, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":3199144, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3200104, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3200152, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":3200200, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3200232, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3200280, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":3200328, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3200360, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3200648, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":3200936, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":3201128, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3201200, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3201488, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":3201776, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":3201968, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":3203312, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":3204656, + "target":34963 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":3205304, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":3225224, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":3245144, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":3258424, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":3263368, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":3264232, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":3265096, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":3265336, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":3266488, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":3267640, + "target":34963 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":3268024, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":3270472, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":3272920, + "target":34963 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":3275056, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":3282472, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":3289888, + "target":34962 + }, + { + "buffer":0, + "byteLength":3612, + "byteOffset":3294832, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":3298444, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":3315484, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":3332524, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":3343884, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":3344028, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":3344172, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":3344268, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":3346500, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":3348732, + "target":34962 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":3350220, + "target":34962 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":3354204, + "target":34962 + }, + { + "buffer":0, + "byteLength":2656, + "byteOffset":3358188, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":3360844, + "target":34963 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":3362284, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":3366388, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":3370492, + "target":34963 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":3371812, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":3375688, + "target":34962 + }, + { + "buffer":0, + "byteLength":2584, + "byteOffset":3379564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":3382148, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":3383228, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":3385952, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":3388676, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":3390492, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":3396828, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":3403164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1728, + "byteOffset":3407388, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":3409116, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":3416052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3422988, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3424980, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3425268, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":3425556, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3425748, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3426036, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":3426324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":3426516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":3428220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":3429924, + "target":34962 + }, + { + "buffer":0, + "byteLength":828, + "byteOffset":3431060, + "target":34963 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":3431888, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":3439784, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":3447680, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":3452944, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3455488, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3455536, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":3455584, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":3455616, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":3462672, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3469728, + "target":34963 + }, + { + "buffer":0, + "byteLength":4008, + "byteOffset":3471720, + "target":34962 + }, + { + "buffer":0, + "byteLength":4008, + "byteOffset":3475728, + "target":34962 + }, + { + "buffer":0, + "byteLength":2672, + "byteOffset":3479736, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":3482408, + "target":34963 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":3483848, + "target":34962 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":3487760, + "target":34962 + }, + { + "buffer":0, + "byteLength":2608, + "byteOffset":3491672, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":3494280, + "target":34963 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":3495720, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":3502296, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":3508872, + "target":34962 + }, + { + "buffer":0, + "byteLength":3048, + "byteOffset":3513256, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":3516304, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":3517168, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":3518032, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":3520768, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":3523504, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":3525328, + "target":34963 + }, + { + "buffer":0, + "byteLength":2604, + "byteOffset":3526288, + "target":34962 + }, + { + "buffer":0, + "byteLength":2604, + "byteOffset":3528892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1736, + "byteOffset":3531496, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":3533232, + "target":34963 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":3534192, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":3541068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3547944, + "target":34963 + }, + { + "buffer":0, + "byteLength":7380, + "byteOffset":3549936, + "target":34962 + }, + { + "buffer":0, + "byteLength":7380, + "byteOffset":3557316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3564696, + "target":34963 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":3566688, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":3575352, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":3584016, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":3584880, + "target":34962 + }, + { + "buffer":0, + "byteLength":1908, + "byteOffset":3585744, + "target":34962 + }, + { + "buffer":0, + "byteLength":1908, + "byteOffset":3587652, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":3589560, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":3590832, + "target":34963 + }, + { + "buffer":0, + "byteLength":9612, + "byteOffset":3591552, + "target":34962 + }, + { + "buffer":0, + "byteLength":9612, + "byteOffset":3601164, + "target":34962 + }, + { + "buffer":0, + "byteLength":6408, + "byteOffset":3610776, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":3617184, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":3619728, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":3620592, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":3621456, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":3628368, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3635280, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3637272, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3637560, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":3637848, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":3644856, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3651864, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":3653856, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":3654432, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":3655008, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":3655392, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":3662400, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3669408, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3671400, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3671688, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":3671976, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":3672168, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":3673800, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":3675432, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":3676520, + "target":34963 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":3677168, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":3681200, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":3685232, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":3686552, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":3693512, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3700472, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":3702464, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":3705188, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":3707912, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":3709728, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":3710340, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":3710952, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3711360, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3711648, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":3711936, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":3712128, + "target":34963 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":3712200, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":3732120, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":3752040, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":3765320, + "target":34963 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":3770264, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":3777188, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3784112, + "target":34963 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":3786104, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":3792920, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3799736, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":3801728, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":3802592, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":3803456, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":3806840, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":3810224, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":3812480, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":3814184, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":3815888, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":3817024, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":3817936, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":3818848, + "target":34962 + }, + { + "buffer":0, + "byteLength":312, + "byteOffset":3819456, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":3819768, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":3826800, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3833832, + "target":34963 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":3835824, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":3840048, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":3844272, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3845592, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3845880, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":3846168, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":3846360, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":3848592, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":3850824, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":3852312, + "target":34963 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":3853032, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":3859908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3866784, + "target":34963 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":3868776, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":3875112, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":3881448, + "target":34962 + }, + { + "buffer":0, + "byteLength":1716, + "byteOffset":3885672, + "target":34962 + }, + { + "buffer":0, + "byteLength":1716, + "byteOffset":3887388, + "target":34962 + }, + { + "buffer":0, + "byteLength":1144, + "byteOffset":3889104, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":3890248, + "target":34963 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":3890728, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":3893536, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":3896344, + "target":34963 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":3897328, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":3901432, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":3905536, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":3908272, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3909712, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3910000, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":3910288, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3910480, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3910528, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":3910576, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":3910608, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":3917724, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3924840, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3926832, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3926880, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":3926928, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":3926960, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":3928544, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":3930128, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":3931184, + "target":34963 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":3931664, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":3932720, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":3933776, + "target":34962 + }, + { + "buffer":0, + "byteLength":360, + "byteOffset":3934480, + "target":34963 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":3934840, + "target":34962 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":3938392, + "target":34962 + }, + { + "buffer":0, + "byteLength":2368, + "byteOffset":3941944, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":3944312, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3947192, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":3947240, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":3947288, + "target":34962 + }, + { + "buffer":0, + "byteLength":2052, + "byteOffset":3947320, + "target":34962 + }, + { + "buffer":0, + "byteLength":2052, + "byteOffset":3949372, + "target":34962 + }, + { + "buffer":0, + "byteLength":1368, + "byteOffset":3951424, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":3952792, + "target":34963 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":3953512, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":3954112, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":3954712, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":3955112, + "target":34963 + }, + { + "buffer":0, + "byteLength":3972, + "byteOffset":3955280, + "target":34962 + }, + { + "buffer":0, + "byteLength":3972, + "byteOffset":3959252, + "target":34962 + }, + { + "buffer":0, + "byteLength":2648, + "byteOffset":3963224, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":3965872, + "target":34963 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":3967312, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":3974404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":3981496, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":3983488, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":3990496, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":3997504, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":3998368, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":3999232, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":4006216, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":4013200, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4015192, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4015480, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4015768, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4015960, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4016008, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":4016056, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":4016088, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":4016952, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":4017816, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":4018392, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4018608, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4018896, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4019184, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4019232, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":4019280, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":4019312, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":4021544, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":4023776, + "target":34962 + }, + { + "buffer":0, + "byteLength":3180, + "byteOffset":4025264, + "target":34962 + }, + { + "buffer":0, + "byteLength":3180, + "byteOffset":4028444, + "target":34962 + }, + { + "buffer":0, + "byteLength":2120, + "byteOffset":4031624, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":4033744, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":4034704, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":4036048, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":4037392, + "target":34963 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":4038040, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":4039696, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":4041352, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":4042456, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":4042936, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":4043848, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":4044760, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":4045368, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":4052304, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":4059240, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4061232, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4061280, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":4061328, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":4061360, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":4068464, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":4075568, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4077560, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4077848, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4078136, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":4078328, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":4085072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":4091816, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4093808, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4094096, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4094384, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":4094576, + "target":34963 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":4094648, + "target":34962 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":4098200, + "target":34962 + }, + { + "buffer":0, + "byteLength":2368, + "byteOffset":4101752, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":4104120, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":4107960, + "target":34962 + }, + { + "buffer":0, + "byteLength":2560, + "byteOffset":4111800, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":4114360, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4115440, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4115728, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4116016, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":4116208, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":4123096, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":4129984, + "target":34963 + }, + { + "buffer":0, + "byteLength":3288, + "byteOffset":4131976, + "target":34962 + }, + { + "buffer":0, + "byteLength":3288, + "byteOffset":4135264, + "target":34962 + }, + { + "buffer":0, + "byteLength":2192, + "byteOffset":4138552, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":4140744, + "target":34963 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":4141704, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":4145088, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":4148472, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":4150728, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":4151304, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":4151880, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":4152264, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":4152432, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":4159440, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":4166448, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4168440, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4168488, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":4168536, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":4168568, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":4169432, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4170296, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4170344, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":4170392, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":4170424, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":4190344, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":4210264, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":4223544, + "target":34963 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":4228488, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":4231176, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":4233864, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":4236096, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":4238328, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":4239816, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":4241472, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":4243128, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":4244232, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4244712, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4245000, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4245288, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":4245480, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":4246392, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":4247304, + "target":34962 + }, + { + "buffer":0, + "byteLength":3972, + "byteOffset":4247912, + "target":34962 + }, + { + "buffer":0, + "byteLength":3972, + "byteOffset":4251884, + "target":34962 + }, + { + "buffer":0, + "byteLength":2648, + "byteOffset":4255856, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":4258504, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":4261240, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":4263976, + "target":34963 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":4264960, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":4268836, + "target":34962 + }, + { + "buffer":0, + "byteLength":2584, + "byteOffset":4272712, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":4275296, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":4282340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":4289384, + "target":34963 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":4291376, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":4297712, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":4304048, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":4308272, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":4311656, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":4315040, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4317296, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4317584, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4317872, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":4318064, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":4320848, + "target":34962 + }, + { + "buffer":0, + "byteLength":1856, + "byteOffset":4323632, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4325488, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4325536, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":4325584, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":4325616, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":4332552, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":4339488, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4341480, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4341768, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4342056, + "target":34962 + }, + { + "buffer":0, + "byteLength":3972, + "byteOffset":4342248, + "target":34962 + }, + { + "buffer":0, + "byteLength":3972, + "byteOffset":4346220, + "target":34962 + }, + { + "buffer":0, + "byteLength":2648, + "byteOffset":4350192, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":4352840, + "target":34963 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":4354280, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":4354808, + "target":34962 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":4355336, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":4355688, + "target":34963 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":4355856, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":4363752, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":4371648, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":4376912, + "target":34963 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":4379456, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":4380956, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":4382456, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":4383456, + "target":34963 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":4384536, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":4404456, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":4424376, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":4437656, + "target":34963 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":4442600, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":4449176, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":4455752, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":4460136, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":4462392, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":4469376, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":4476360, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4478352, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4478640, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4478928, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":4479120, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":4486224, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":4493328, + "target":34963 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":4495320, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":4495920, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":4496520, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":4496920, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4497088, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4497376, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4497664, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4497856, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4497904, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":4497952, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4497984, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4498032, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":4498080, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":4498112, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":4499456, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4500800, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4501088, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4501376, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4501568, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4501856, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4502144, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":4502336, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":4509428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":4516520, + "target":34963 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":4518512, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":4522544, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":4526576, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4527896, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4528184, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4528472, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":4528664, + "target":34963 + }, + { + "buffer":0, + "byteLength":4188, + "byteOffset":4528736, + "target":34962 + }, + { + "buffer":0, + "byteLength":4188, + "byteOffset":4532924, + "target":34962 + }, + { + "buffer":0, + "byteLength":2792, + "byteOffset":4537112, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":4539904, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":4541344, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":4541488, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":4541632, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4541728, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4542016, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":4542304, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":4543936, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":4545568, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":4546656, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4547304, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4547592, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4547880, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":4548072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":4549176, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":4550280, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":4551016, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":4551424, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":4558408, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":4565392, + "target":34963 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":4567384, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":4571560, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":4575736, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":4577056, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":4583944, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":4590832, + "target":34963 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":4592824, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":4593424, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":4594024, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":4594424, + "target":34963 + }, + { + "buffer":0, + "byteLength":876, + "byteOffset":4594592, + "target":34962 + }, + { + "buffer":0, + "byteLength":876, + "byteOffset":4595468, + "target":34962 + }, + { + "buffer":0, + "byteLength":584, + "byteOffset":4596344, + "target":34962 + }, + { + "buffer":0, + "byteLength":312, + "byteOffset":4596928, + "target":34963 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":4597240, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":4617160, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":4637080, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":4650360, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":4655304, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":4656168, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":4657032, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":4663368, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":4669704, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":4673928, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":4677312, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":4680696, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":4682952, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":4684452, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":4685952, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":4686952, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":4687864, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":4688776, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4689384, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4689672, + "target":34962 + }, + { + "buffer":0, + "byteLength":15996, + "byteOffset":4689960, + "target":34962 + }, + { + "buffer":0, + "byteLength":15996, + "byteOffset":4705956, + "target":34962 + }, + { + "buffer":0, + "byteLength":10664, + "byteOffset":4721952, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":4732616, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":4735304, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4737992, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4738280, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4738568, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4738760, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4739048, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4739336, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":4739528, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":4746368, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":4753208, + "target":34963 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":4755200, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":4762040, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":4768880, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":4775216, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":4781552, + "target":34962 + }, + { + "buffer":0, + "byteLength":4344, + "byteOffset":4785776, + "target":34962 + }, + { + "buffer":0, + "byteLength":4344, + "byteOffset":4790120, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":4794464, + "target":34963 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":4795784, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":4808024, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":4820264, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":4828424, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":4832528, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":4836632, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":4839368, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4840808, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":4840856, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":4840904, + "target":34962 + }, + { + "buffer":0, + "byteLength":35004, + "byteOffset":4840936, + "target":34962 + }, + { + "buffer":0, + "byteLength":35004, + "byteOffset":4875940, + "target":34962 + }, + { + "buffer":0, + "byteLength":23336, + "byteOffset":4910944, + "target":34962 + }, + { + "buffer":0, + "byteLength":9720, + "byteOffset":4934280, + "target":34963 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":4944000, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":4947840, + "target":34962 + }, + { + "buffer":0, + "byteLength":2560, + "byteOffset":4951680, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":4954240, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":4957024, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":4959808, + "target":34963 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":4960792, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":4967848, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":4974904, + "target":34963 + }, + { + "buffer":0, + "byteLength":5400, + "byteOffset":4976896, + "target":34962 + }, + { + "buffer":0, + "byteLength":5400, + "byteOffset":4982296, + "target":34962 + }, + { + "buffer":0, + "byteLength":3600, + "byteOffset":4987696, + "target":34962 + }, + { + "buffer":0, + "byteLength":4560, + "byteOffset":4991296, + "target":34963 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":4995856, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":4997512, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":4999168, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":5000272, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5000752, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5000800, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":5000848, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":5000880, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":5008656, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":5016432, + "target":34962 + }, + { + "buffer":0, + "byteLength":5556, + "byteOffset":5021616, + "target":34962 + }, + { + "buffer":0, + "byteLength":5556, + "byteOffset":5027172, + "target":34962 + }, + { + "buffer":0, + "byteLength":3704, + "byteOffset":5032728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":5036432, + "target":34963 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":5038424, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":5045576, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":5052728, + "target":34963 + }, + { + "buffer":0, + "byteLength":9540, + "byteOffset":5054720, + "target":34962 + }, + { + "buffer":0, + "byteLength":9540, + "byteOffset":5064260, + "target":34962 + }, + { + "buffer":0, + "byteLength":6360, + "byteOffset":5073800, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":5080160, + "target":34963 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":5082704, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":5083256, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":5083808, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":5084176, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5084344, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5084392, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":5084440, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":5084472, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":5085024, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":5085576, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":5085944, + "target":34963 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":5086112, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":5092856, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":5099600, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5101592, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5101880, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5102168, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":5102360, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":5102912, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":5103464, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":5103832, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":5104420, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":5105008, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":5105400, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5105568, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5105856, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5106144, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5106192, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":5106240, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":5106272, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":5106848, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":5107424, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":5107808, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":5118392, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":5128976, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":5136032, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":5138648, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":5139512, + "target":34962 + }, + { + "buffer":0, + "byteLength":2940, + "byteOffset":5140376, + "target":34962 + }, + { + "buffer":0, + "byteLength":2940, + "byteOffset":5143316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1960, + "byteOffset":5146256, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":5148216, + "target":34963 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":5149176, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":5151192, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":5153208, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":5154552, + "target":34963 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":5155032, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":5156496, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":5157960, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":5158936, + "target":34963 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":5159416, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":5161360, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":5163304, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":5164600, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5165272, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5165320, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":5165368, + "target":34962 + }, + { + "buffer":0, + "byteLength":1884, + "byteOffset":5165400, + "target":34962 + }, + { + "buffer":0, + "byteLength":1884, + "byteOffset":5167284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1256, + "byteOffset":5169168, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":5170424, + "target":34963 + }, + { + "buffer":0, + "byteLength":5400, + "byteOffset":5171144, + "target":34962 + }, + { + "buffer":0, + "byteLength":5400, + "byteOffset":5176544, + "target":34962 + }, + { + "buffer":0, + "byteLength":3600, + "byteOffset":5181944, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5185544, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5185832, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5186120, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":5186312, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5186384, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5186672, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5186960, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5187152, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5187200, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":5187248, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5187280, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5187568, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5187856, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":5188048, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":5191432, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":5194816, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5197072, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5197360, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5197648, + "target":34962 + }, + { + "buffer":0, + "byteLength":10632, + "byteOffset":5197840, + "target":34962 + }, + { + "buffer":0, + "byteLength":10632, + "byteOffset":5208472, + "target":34962 + }, + { + "buffer":0, + "byteLength":7088, + "byteOffset":5219104, + "target":34962 + }, + { + "buffer":0, + "byteLength":4656, + "byteOffset":5226192, + "target":34963 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":5230848, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":5238000, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":5245152, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5247144, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5247192, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":5247240, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":5247272, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":5248184, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":5249096, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5249704, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5249752, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":5249800, + "target":34962 + }, + { + "buffer":0, + "byteLength":660, + "byteOffset":5249832, + "target":34962 + }, + { + "buffer":0, + "byteLength":660, + "byteOffset":5250492, + "target":34962 + }, + { + "buffer":0, + "byteLength":440, + "byteOffset":5251152, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":5251592, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":5251760, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":5252624, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":5253488, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":5255432, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":5257376, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":5258672, + "target":34963 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":5259152, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":5260760, + "target":34962 + }, + { + "buffer":0, + "byteLength":1072, + "byteOffset":5262368, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":5263440, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":5263920, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":5270928, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":5277936, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":5278656, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":5279376, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":5279856, + "target":34963 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":5280072, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":5284296, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":5288520, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":5296704, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":5304888, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":5310344, + "target":34963 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":5312960, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":5316344, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":5319728, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":5321984, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":5328860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":5335736, + "target":34963 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":5337728, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":5340872, + "target":34962 + }, + { + "buffer":0, + "byteLength":2096, + "byteOffset":5344016, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":5346112, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5347072, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5347360, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5347648, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5347696, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":5347744, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5347776, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5348064, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5348352, + "target":34962 + }, + { + "buffer":0, + "byteLength":3960, + "byteOffset":5348544, + "target":34962 + }, + { + "buffer":0, + "byteLength":3960, + "byteOffset":5352504, + "target":34962 + }, + { + "buffer":0, + "byteLength":2640, + "byteOffset":5356464, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":5359104, + "target":34963 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":5360544, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":5361072, + "target":34962 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":5361600, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":5361952, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":5366128, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":5370304, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":5373088, + "target":34963 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":5374528, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":5381656, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":5388784, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5390776, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5390824, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":5390872, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":5390904, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":5392608, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":5394312, + "target":34962 + }, + { + "buffer":0, + "byteLength":828, + "byteOffset":5395448, + "target":34963 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":5396276, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":5402984, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":5409692, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":5414164, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":5421124, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":5428084, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5430076, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5430364, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5430652, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":5430844, + "target":34963 + }, + { + "buffer":0, + "byteLength":7236, + "byteOffset":5430916, + "target":34962 + }, + { + "buffer":0, + "byteLength":7236, + "byteOffset":5438152, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":5445388, + "target":34963 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":5447380, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":5450764, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":5454148, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":5456404, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":5463436, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":5470468, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5472460, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5472508, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":5472556, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":5472588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":5474292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":5475996, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":5477132, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":5485796, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5494460, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5494748, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5495036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5495228, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5495516, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5495804, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":5495996, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":5502812, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":5509628, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":5511620, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":5518628, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":5525636, + "target":34963 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":5527628, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":5530316, + "target":34962 + }, + { + "buffer":0, + "byteLength":9600, + "byteOffset":5533004, + "target":34962 + }, + { + "buffer":0, + "byteLength":9600, + "byteOffset":5542604, + "target":34962 + }, + { + "buffer":0, + "byteLength":6400, + "byteOffset":5552204, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":5558604, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5561148, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5561436, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5561724, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5561916, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5562204, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5562492, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":5562684, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":5563284, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":5563884, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":5564284, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":5571028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":5577772, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":5579764, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":5580484, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":5581204, + "target":34962 + }, + { + "buffer":0, + "byteLength":180, + "byteOffset":5581684, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":5581864, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":5588872, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5595880, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5596168, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5596456, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":5596648, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":5598148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":5599648, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5600648, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5600936, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5601224, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":5601416, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":5618456, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":5635496, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":5646856, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":5647408, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":5647960, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":5648328, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":5656992, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5665656, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5665944, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5666232, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":5666424, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":5686344, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":5706264, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":5719544, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":5736584, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":5753624, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":5764984, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":5772028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":5779072, + "target":34963 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":5781064, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":5783512, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":5785960, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":5787592, + "target":34963 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":5788144, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":5792224, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":5796304, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5797624, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5797912, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5798200, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":5798392, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":5798872, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":5799352, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":5799672, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":5800584, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":5801496, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5802104, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5802392, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5802680, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5802968, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":5803256, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":5807456, + "target":34962 + }, + { + "buffer":0, + "byteLength":2800, + "byteOffset":5811656, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":5814456, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":5815896, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":5816040, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":5816184, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":5816280, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":5822856, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":5829432, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":5833816, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":5837848, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":5841880, + "target":34963 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":5843200, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":5850268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":5857336, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5859328, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5859616, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5859904, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":5860096, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":5867176, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":5874256, + "target":34963 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":5876248, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":5877736, + "target":34962 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":5879224, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":5880216, + "target":34963 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":5880696, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":5887512, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":5894328, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5896320, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":5896368, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":5896416, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":5896448, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":5898200, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":5899952, + "target":34962 + }, + { + "buffer":0, + "byteLength":168168, + "byteOffset":5901120, + "target":34962 + }, + { + "buffer":0, + "byteLength":168168, + "byteOffset":6069288, + "target":34962 + }, + { + "buffer":0, + "byteLength":112112, + "byteOffset":6237456, + "target":34962 + }, + { + "buffer":0, + "byteLength":51744, + "byteOffset":6349568, + "target":34963 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":6401312, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":6405440, + "target":34962 + }, + { + "buffer":0, + "byteLength":2752, + "byteOffset":6409568, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":6412320, + "target":34963 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":6413760, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":6424140, + "target":34962 + }, + { + "buffer":0, + "byteLength":6920, + "byteOffset":6434520, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":6441440, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":6448424, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":6455408, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6457400, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6457688, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":6457976, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":6458168, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":6459224, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":6460280, + "target":34962 + }, + { + "buffer":0, + "byteLength":360, + "byteOffset":6460984, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":6461344, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":6462064, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":6462784, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":6463264, + "target":34963 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":6463480, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":6465112, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":6466744, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":6467832, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":6469260, + "target":34962 + }, + { + "buffer":0, + "byteLength":952, + "byteOffset":6470688, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":6471640, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6472120, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6472168, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":6472216, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6472248, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6472536, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":6472824, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":6473016, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":6474168, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":6475320, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":6476088, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":6476496, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":6477360, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6478224, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6478272, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":6478320, + "target":34962 + }, + { + "buffer":0, + "byteLength":1908, + "byteOffset":6478352, + "target":34962 + }, + { + "buffer":0, + "byteLength":1908, + "byteOffset":6480260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":6482168, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":6483440, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":6484352, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":6485264, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":6485872, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":6486472, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":6487072, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":6487472, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6487640, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6487688, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":6487736, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":6487768, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":6494944, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":6502120, + "target":34963 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":6504112, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":6505744, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":6507376, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":6508464, + "target":34963 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":6508944, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":6510912, + "target":34962 + }, + { + "buffer":0, + "byteLength":1312, + "byteOffset":6512880, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":6514192, + "target":34963 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":6515344, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":6517792, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":6520240, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6522376, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6522664, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":6522952, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":6523144, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":6523720, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":6524296, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":6524680, + "target":34963 + }, + { + "buffer":0, + "byteLength":3960, + "byteOffset":6524848, + "target":34962 + }, + { + "buffer":0, + "byteLength":3960, + "byteOffset":6528808, + "target":34962 + }, + { + "buffer":0, + "byteLength":2640, + "byteOffset":6532768, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":6535408, + "target":34963 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":6536848, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":6538792, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":6540736, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":6542032, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6542704, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6542992, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":6543280, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":6543472, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6543544, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6543592, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":6543640, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":6543672, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":6551448, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":6559224, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":6564408, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":6566640, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":6568872, + "target":34962 + }, + { + "buffer":0, + "byteLength":2964, + "byteOffset":6570360, + "target":34962 + }, + { + "buffer":0, + "byteLength":2964, + "byteOffset":6573324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1976, + "byteOffset":6576288, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":6578264, + "target":34963 + }, + { + "buffer":0, + "byteLength":1140, + "byteOffset":6579224, + "target":34962 + }, + { + "buffer":0, + "byteLength":1140, + "byteOffset":6580364, + "target":34962 + }, + { + "buffer":0, + "byteLength":760, + "byteOffset":6581504, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":6582264, + "target":34963 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":6582672, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":6589548, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6596424, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6596472, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":6596520, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":6596552, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":6603344, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":6610136, + "target":34963 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":6612128, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":6619904, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":6627680, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":6632864, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":6639824, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":6646784, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6648776, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6649064, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":6649352, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6649544, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6649592, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":6649640, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6649672, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6649960, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":6650248, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":6650440, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":6651712, + "target":34962 + }, + { + "buffer":0, + "byteLength":848, + "byteOffset":6652984, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":6653832, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":6654240, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":6655992, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":6657744, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":6658912, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":6660016, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":6661120, + "target":34962 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":6661856, + "target":34962 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":6665840, + "target":34962 + }, + { + "buffer":0, + "byteLength":2656, + "byteOffset":6669824, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":6672480, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":6673824, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":6675168, + "target":34963 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":6675816, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":6679920, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":6684024, + "target":34963 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":6685344, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":6689508, + "target":34962 + }, + { + "buffer":0, + "byteLength":2776, + "byteOffset":6693672, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":6696448, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6697888, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6697936, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":6697984, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":6698016, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":6717936, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":6737856, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":6751136, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":6752000, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":6752864, + "target":34963 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":6753104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":6754544, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":6755984, + "target":34962 + }, + { + "buffer":0, + "byteLength":360, + "byteOffset":6756944, + "target":34963 + }, + { + "buffer":0, + "byteLength":6420, + "byteOffset":6757304, + "target":34962 + }, + { + "buffer":0, + "byteLength":6420, + "byteOffset":6763724, + "target":34962 + }, + { + "buffer":0, + "byteLength":4280, + "byteOffset":6770144, + "target":34962 + }, + { + "buffer":0, + "byteLength":2352, + "byteOffset":6774424, + "target":34963 + }, + { + "buffer":0, + "byteLength":1620, + "byteOffset":6776776, + "target":34962 + }, + { + "buffer":0, + "byteLength":1620, + "byteOffset":6778396, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":6780016, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":6781096, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":6781576, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":6788512, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":6795448, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6797440, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6797728, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":6798016, + "target":34962 + }, + { + "buffer":0, + "byteLength":18288, + "byteOffset":6798208, + "target":34962 + }, + { + "buffer":0, + "byteLength":18288, + "byteOffset":6816496, + "target":34962 + }, + { + "buffer":0, + "byteLength":12192, + "byteOffset":6834784, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":6846976, + "target":34963 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":6851776, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":6854488, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":6857200, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":6858184, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":6859048, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":6859912, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":6861376, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":6862840, + "target":34962 + }, + { + "buffer":0, + "byteLength":2940, + "byteOffset":6863816, + "target":34962 + }, + { + "buffer":0, + "byteLength":2940, + "byteOffset":6866756, + "target":34962 + }, + { + "buffer":0, + "byteLength":1960, + "byteOffset":6869696, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":6871656, + "target":34963 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":6872616, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":6879324, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":6886032, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6890504, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6890552, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":6890600, + "target":34962 + }, + { + "buffer":0, + "byteLength":2028, + "byteOffset":6890632, + "target":34962 + }, + { + "buffer":0, + "byteLength":2028, + "byteOffset":6892660, + "target":34962 + }, + { + "buffer":0, + "byteLength":1352, + "byteOffset":6894688, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":6896040, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6896760, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":6896808, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":6896856, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":6896888, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":6903848, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":6910808, + "target":34963 + }, + { + "buffer":0, + "byteLength":92772, + "byteOffset":6912800, + "target":34962 + }, + { + "buffer":0, + "byteLength":92772, + "byteOffset":7005572, + "target":34962 + }, + { + "buffer":0, + "byteLength":61848, + "byteOffset":7098344, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":7160192, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":7193312, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":7193360, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":7193408, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":7193440, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":7200016, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":7206592, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":7210976, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":7211264, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":7211552, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":7211744, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":7212224, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":7212704, + "target":34962 + }, + { + "buffer":0, + "byteLength":10968, + "byteOffset":7213024, + "target":34962 + }, + { + "buffer":0, + "byteLength":10968, + "byteOffset":7223992, + "target":34962 + }, + { + "buffer":0, + "byteLength":7312, + "byteOffset":7234960, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":7242272, + "target":34963 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":7245152, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":7252328, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":7259504, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":7266224, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":7272944, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":7280048, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":7287152, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":7289144, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":7296104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":7303064, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":7305056, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":7305632, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":7306208, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":7306592, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":7306640, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":7306688, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":7306720, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":7307008, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":7307296, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":7308796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":7310296, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":7311296, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":7313744, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":7316192, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":7317056, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":7317920, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":7319936, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":7321952, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":7323296, + "target":34963 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":7324016, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":7330724, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":7337432, + "target":34962 + }, + { + "buffer":0, + "byteLength":9528, + "byteOffset":7341904, + "target":34962 + }, + { + "buffer":0, + "byteLength":9528, + "byteOffset":7351432, + "target":34962 + }, + { + "buffer":0, + "byteLength":6352, + "byteOffset":7360960, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":7367312, + "target":34963 + }, + { + "buffer":0, + "byteLength":140304, + "byteOffset":7369856, + "target":34962 + }, + { + "buffer":0, + "byteLength":140304, + "byteOffset":7510160, + "target":34962 + }, + { + "buffer":0, + "byteLength":93536, + "byteOffset":7650464, + "target":34962 + }, + { + "buffer":0, + "byteLength":40116, + "byteOffset":7744000, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":7784116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":7785268, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":7786420, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":7787188, + "target":34963 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":7787596, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":7794676, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":7801756, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":7803748, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":7810780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":7817812, + "target":34963 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":7819804, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":7820452, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":7821100, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":7821532, + "target":34963 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":7821700, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":7828696, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":7835692, + "target":34963 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":7837684, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":7844812, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":7851940, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":7853932, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":7860916, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":7867900, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":7869892, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":7870180, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":7870468, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":7870540, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":7870828, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":7871116, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":7871308, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":7891228, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":7911148, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":7924428, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":7927140, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":7929852, + "target":34963 + }, + { + "buffer":0, + "byteLength":9828, + "byteOffset":7930836, + "target":34962 + }, + { + "buffer":0, + "byteLength":9828, + "byteOffset":7940664, + "target":34962 + }, + { + "buffer":0, + "byteLength":6552, + "byteOffset":7950492, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":7957044, + "target":34963 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":7959588, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":7966164, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":7972740, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":7977124, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":7998844, + "target":34962 + }, + { + "buffer":0, + "byteLength":14480, + "byteOffset":8020564, + "target":34962 + }, + { + "buffer":0, + "byteLength":19416, + "byteOffset":8035044, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":8054460, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":8061444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":8068428, + "target":34963 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":8070420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":8071524, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":8072628, + "target":34962 + }, + { + "buffer":0, + "byteLength":96000, + "byteOffset":8073364, + "target":34962 + }, + { + "buffer":0, + "byteLength":96000, + "byteOffset":8169364, + "target":34962 + }, + { + "buffer":0, + "byteLength":64000, + "byteOffset":8265364, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":8329364, + "target":34963 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":8362484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":8364188, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":8365892, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":8367028, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":8371132, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":8375236, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":8375284, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":8375332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1356, + "byteOffset":8375364, + "target":34962 + }, + { + "buffer":0, + "byteLength":1356, + "byteOffset":8376720, + "target":34962 + }, + { + "buffer":0, + "byteLength":904, + "byteOffset":8378076, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":8378980, + "target":34963 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":8379460, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":8386636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":8393812, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":8395804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":8397556, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":8399308, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":8400476, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":8400524, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":8400572, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":8400604, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":8400892, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":8401180, + "target":34962 + }, + { + "buffer":0, + "byteLength":5760, + "byteOffset":8401372, + "target":34962 + }, + { + "buffer":0, + "byteLength":5760, + "byteOffset":8407132, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":8412892, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":8416732, + "target":34963 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":8417692, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":8421856, + "target":34962 + }, + { + "buffer":0, + "byteLength":2776, + "byteOffset":8426020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":8428796, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":8430236, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":8447276, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":8464316, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":8475676, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":8482708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":8489740, + "target":34963 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":8491732, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":8494468, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":8497204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":8499028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":8500084, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":8501140, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":8501844, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":8510508, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":8519172, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":8520036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":8520900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":8522532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":8524164, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":8525252, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":8525300, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":8525348, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":8525380, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":8525668, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":8525956, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":8526148, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":8526436, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":8526724, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":8526916, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":8532772, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":8538628, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":8542532, + "target":34963 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":8545412, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":8545964, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":8546516, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":8546884, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":8547052, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":8547100, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":8547148, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":8547180, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":8549928, + "target":34962 + }, + { + "buffer":0, + "byteLength":1832, + "byteOffset":8552676, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":8554508, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":8555468, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":8555756, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":8556044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":8556236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":8557772, + "target":34962 + }, + { + "buffer":0, + "byteLength":1024, + "byteOffset":8559308, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":8560332, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":8560812, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":8562156, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":8563500, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":8564396, + "target":34963 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":8564684, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":8567132, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":8569580, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":8571716, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":8572292, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":8572868, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":8573252, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":8573420, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":8574284, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":8575148, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":8575388, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":8582276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":8589164, + "target":34963 + }, + { + "buffer":0, + "byteLength":57624, + "byteOffset":8591156, + "target":34962 + }, + { + "buffer":0, + "byteLength":57624, + "byteOffset":8648780, + "target":34962 + }, + { + "buffer":0, + "byteLength":38416, + "byteOffset":8706404, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":8744820, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":8747052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":8749284, + "target":34962 + }, + { + "buffer":0, + "byteLength":3312, + "byteOffset":8750772, + "target":34962 + }, + { + "buffer":0, + "byteLength":3312, + "byteOffset":8754084, + "target":34962 + }, + { + "buffer":0, + "byteLength":2208, + "byteOffset":8757396, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":8759604, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":8760564, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":8761428, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":8762292, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":8769492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":8776692, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":8778684, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":8778972, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":8779260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1728, + "byteOffset":8779452, + "target":34962 + }, + { + "buffer":0, + "byteLength":1728, + "byteOffset":8781180, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":8782908, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":8783460, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":8790348, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":8797236, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":8799228, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":8806260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":8813292, + "target":34963 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":8815284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":8816736, + "target":34962 + }, + { + "buffer":0, + "byteLength":968, + "byteOffset":8818188, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":8819156, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":8819636, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":8826524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":8833412, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":8835404, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":8835452, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":8835500, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":8835532, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":8836204, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":8836876, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":8837324, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":8837492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":8838836, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":8840180, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":8840228, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":8840276, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":8840308, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":8840356, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":8840404, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":8840436, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":8840724, + "target":34962 + }, + { + "buffer":0, + "byteLength":2868, + "byteOffset":8841012, + "target":34962 + }, + { + "buffer":0, + "byteLength":2868, + "byteOffset":8843880, + "target":34962 + }, + { + "buffer":0, + "byteLength":1912, + "byteOffset":8846748, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":8848660, + "target":34963 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":8849620, + "target":34962 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":8946172, + "target":34962 + }, + { + "buffer":0, + "byteLength":64368, + "byteOffset":9042724, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":9107092, + "target":34963 + }, + { + "buffer":0, + "byteLength":92772, + "byteOffset":9140212, + "target":34962 + }, + { + "buffer":0, + "byteLength":92772, + "byteOffset":9232984, + "target":34962 + }, + { + "buffer":0, + "byteLength":61848, + "byteOffset":9325756, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":9387604, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":9394768, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":9401932, + "target":34963 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":9403924, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":9406612, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":9409300, + "target":34963 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":9410284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":9411388, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":9412492, + "target":34962 + }, + { + "buffer":0, + "byteLength":300, + "byteOffset":9413228, + "target":34963 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":9413528, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":9417692, + "target":34962 + }, + { + "buffer":0, + "byteLength":2776, + "byteOffset":9421856, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":9424632, + "target":34963 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":9426072, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":9432408, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":9438744, + "target":34962 + }, + { + "buffer":0, + "byteLength":1728, + "byteOffset":9442968, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":9444696, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":9445416, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":9446136, + "target":34962 + }, + { + "buffer":0, + "byteLength":180, + "byteOffset":9446616, + "target":34963 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":9446796, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":9447780, + "target":34962 + }, + { + "buffer":0, + "byteLength":656, + "byteOffset":9448764, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":9449420, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":9449708, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":9449996, + "target":34962 + }, + { + "buffer":0, + "byteLength":3168, + "byteOffset":9450188, + "target":34962 + }, + { + "buffer":0, + "byteLength":3168, + "byteOffset":9453356, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":9456524, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":9458636, + "target":34963 + }, + { + "buffer":0, + "byteLength":3180, + "byteOffset":9459596, + "target":34962 + }, + { + "buffer":0, + "byteLength":3180, + "byteOffset":9462776, + "target":34962 + }, + { + "buffer":0, + "byteLength":2120, + "byteOffset":9465956, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":9468076, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":9470932, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":9473788, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":9474772, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":9474820, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":9474868, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":9474900, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":9475188, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":9475476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":9475668, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":9477588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1280, + "byteOffset":9479508, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":9480788, + "target":34963 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":9481508, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":9484196, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":9486884, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":9491108, + "target":34962 + }, + { + "buffer":0, + "byteLength":2816, + "byteOffset":9495332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":9498148, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":9499588, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":9499636, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":9499684, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":9499716, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":9506292, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":9512868, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":9517252, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":9537172, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":9557092, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":9570372, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":9577236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":9584100, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":9586092, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":9586668, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":9587244, + "target":34962 + }, + { + "buffer":0, + "byteLength":95892, + "byteOffset":9587628, + "target":34962 + }, + { + "buffer":0, + "byteLength":95892, + "byteOffset":9683520, + "target":34962 + }, + { + "buffer":0, + "byteLength":63928, + "byteOffset":9779412, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":9843340, + "target":34963 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":9876460, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":9883516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":9890572, + "target":34963 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":9892564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":9893620, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":9894676, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":9895380, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":9895644, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":9902628, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":9909612, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":9911604, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":9918636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":9925668, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":9927660, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":9927948, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":9928236, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":9928428, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":9935436, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":9942444, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":9942732, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":9943020, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":9943068, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":9943116, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":9943148, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":9945452, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":9947756, + "target":34962 + }, + { + "buffer":0, + "byteLength":780, + "byteOffset":9949292, + "target":34963 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":9950072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":9951512, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":9952952, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":9953912, + "target":34963 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":9954392, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":9956840, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":9959288, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":9966248, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":9973208, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":9980048, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":9986888, + "target":34963 + }, + { + "buffer":0, + "byteLength":9624, + "byteOffset":9988880, + "target":34962 + }, + { + "buffer":0, + "byteLength":9624, + "byteOffset":9998504, + "target":34962 + }, + { + "buffer":0, + "byteLength":6416, + "byteOffset":10008128, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":10014544, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":10017088, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":10023976, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":10030864, + "target":34963 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":10032856, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":10040272, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":10047688, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":10052632, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":10059736, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":10066840, + "target":34963 + }, + { + "buffer":0, + "byteLength":3048, + "byteOffset":10068832, + "target":34962 + }, + { + "buffer":0, + "byteLength":3048, + "byteOffset":10071880, + "target":34962 + }, + { + "buffer":0, + "byteLength":2032, + "byteOffset":10074928, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":10076960, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":10077920, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":10084904, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":10091888, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":10093880, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":10094024, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":10094168, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":10094264, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":10114184, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":10134104, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":10147384, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10152328, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10152376, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":10152424, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":10152456, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":10159392, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":10166328, + "target":34963 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":10168320, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":10175196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":10182072, + "target":34963 + }, + { + "buffer":0, + "byteLength":4248, + "byteOffset":10184064, + "target":34962 + }, + { + "buffer":0, + "byteLength":4248, + "byteOffset":10188312, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":10192560, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":10193880, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":10200816, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":10207752, + "target":34963 + }, + { + "buffer":0, + "byteLength":15996, + "byteOffset":10209744, + "target":34962 + }, + { + "buffer":0, + "byteLength":15996, + "byteOffset":10225740, + "target":34962 + }, + { + "buffer":0, + "byteLength":10664, + "byteOffset":10241736, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":10252400, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":10259432, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":10266464, + "target":34963 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":10268456, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":10275164, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":10281872, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":10286344, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":10287424, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":10288504, + "target":34962 + }, + { + "buffer":0, + "byteLength":360, + "byteOffset":10289224, + "target":34963 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":10289584, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":10291084, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":10292584, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":10293584, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":10297664, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":10301744, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10303064, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10303112, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":10303160, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":10303192, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":10304056, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":10304920, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":10305832, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":10306744, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":10307352, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":10319928, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":10332504, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":10340888, + "target":34963 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":10345688, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":10347188, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":10348688, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":10349688, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":10352376, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":10355064, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":10355352, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":10355640, + "target":34962 + }, + { + "buffer":0, + "byteLength":2352, + "byteOffset":10355832, + "target":34962 + }, + { + "buffer":0, + "byteLength":2352, + "byteOffset":10358184, + "target":34962 + }, + { + "buffer":0, + "byteLength":1568, + "byteOffset":10360536, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":10362104, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":10362728, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":10369760, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":10376792, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10378784, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10378832, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":10378880, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":10378912, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":10385896, + "target":34962 + }, + { + "buffer":0, + "byteLength":4656, + "byteOffset":10392880, + "target":34962 + }, + { + "buffer":0, + "byteLength":1164, + "byteOffset":10397536, + "target":34963 + }, + { + "buffer":0, + "byteLength":4236, + "byteOffset":10398700, + "target":34962 + }, + { + "buffer":0, + "byteLength":4236, + "byteOffset":10402936, + "target":34962 + }, + { + "buffer":0, + "byteLength":2824, + "byteOffset":10407172, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":10409996, + "target":34963 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":10411436, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":10419332, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":10427228, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":10432492, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":10439452, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":10446412, + "target":34963 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":10448404, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":10456300, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":10464196, + "target":34962 + }, + { + "buffer":0, + "byteLength":12600, + "byteOffset":10469460, + "target":34962 + }, + { + "buffer":0, + "byteLength":12600, + "byteOffset":10482060, + "target":34962 + }, + { + "buffer":0, + "byteLength":8400, + "byteOffset":10494660, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":10503060, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10507860, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10507908, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":10507956, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":10507988, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":10510484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":10512980, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":10514644, + "target":34963 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":10515604, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":10535524, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":10555444, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":10568724, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":10570740, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":10572756, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":10573860, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":10574724, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":10575588, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":10575876, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":10576164, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":10576356, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":10593396, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":10610436, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":10621796, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":10622396, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":10622996, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":10623396, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10623564, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10623612, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":10623660, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":10623692, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":10625396, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":10627100, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":10628236, + "target":34963 + }, + { + "buffer":0, + "byteLength":1932, + "byteOffset":10628716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1932, + "byteOffset":10630648, + "target":34962 + }, + { + "buffer":0, + "byteLength":1288, + "byteOffset":10632580, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":10633868, + "target":34963 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":10634348, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":10641188, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":10648028, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":10650476, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":10652924, + "target":34963 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":10655060, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":10655672, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":10656284, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":10656692, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":10660892, + "target":34962 + }, + { + "buffer":0, + "byteLength":2800, + "byteOffset":10665092, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":10667892, + "target":34963 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":10669332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":10670436, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":10671540, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":10672276, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":10672684, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":10672972, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":10673260, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":10673452, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":10675684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":10677916, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":10679404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":10681036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":10682668, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":10683756, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":10683900, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":10684044, + "target":34962 + }, + { + "buffer":0, + "byteLength":36, + "byteOffset":10684140, + "target":34963 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":10684176, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":10691052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1596, + "byteOffset":10697928, + "target":34962 + }, + { + "buffer":0, + "byteLength":1596, + "byteOffset":10699524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1064, + "byteOffset":10701120, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":10702184, + "target":34963 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":10702664, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":10704656, + "target":34962 + }, + { + "buffer":0, + "byteLength":1328, + "byteOffset":10706648, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":10707976, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":10708696, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":10715728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":10722760, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10724752, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10724800, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":10724848, + "target":34962 + }, + { + "buffer":0, + "byteLength":3468, + "byteOffset":10724880, + "target":34962 + }, + { + "buffer":0, + "byteLength":3468, + "byteOffset":10728348, + "target":34962 + }, + { + "buffer":0, + "byteLength":2312, + "byteOffset":10731816, + "target":34962 + }, + { + "buffer":0, + "byteLength":1290, + "byteOffset":10734128, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":10735420, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":10735996, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":10736572, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10736716, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10736764, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":10736812, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":10736844, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":10737132, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":10737420, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":10737612, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":10744320, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":10751028, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10755500, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10755548, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":10755596, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":10755628, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":10756276, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":10756924, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":10757356, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":10757524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":10758868, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10760212, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10760260, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":10760308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":10760340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":10761492, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":10762644, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10762908, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10762956, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":10763004, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":10763036, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":10765760, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":10768484, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":10770300, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":10777308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":10784316, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":10786308, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":10787172, + "target":34962 + }, + { + "buffer":0, + "byteLength":3084, + "byteOffset":10788036, + "target":34962 + }, + { + "buffer":0, + "byteLength":3084, + "byteOffset":10791120, + "target":34962 + }, + { + "buffer":0, + "byteLength":2056, + "byteOffset":10794204, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":10796260, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10797220, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":10797268, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":10797316, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":10797348, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":10799796, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":10802244, + "target":34963 + }, + { + "buffer":0, + "byteLength":93648, + "byteOffset":10804380, + "target":34962 + }, + { + "buffer":0, + "byteLength":93648, + "byteOffset":10898028, + "target":34962 + }, + { + "buffer":0, + "byteLength":62432, + "byteOffset":10991676, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":11054108, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":11087228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":11088572, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":11089916, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":11090812, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":11091148, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":11091196, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":11091244, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":11091276, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":11091324, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":11091372, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":11091404, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":11095556, + "target":34962 + }, + { + "buffer":0, + "byteLength":2768, + "byteOffset":11099708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":11102476, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":11103916, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":11106640, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":11109364, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":11111180, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":11118236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":11125292, + "target":34963 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":11127284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":11128748, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":11130212, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":11131188, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":11138172, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":11145156, + "target":34963 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":11147148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":11148972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1216, + "byteOffset":11150796, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":11152012, + "target":34963 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":11152660, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":11159236, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":11165812, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":11170196, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":11170484, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":11170772, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":11170964, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":11173508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1696, + "byteOffset":11176052, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":11177748, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":11178708, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":11185716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":11192724, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":11194716, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":11194764, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":11194812, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":11194844, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":11195132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":11195420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":11197340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1280, + "byteOffset":11199260, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":11200540, + "target":34963 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":11201260, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":11207596, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":11213932, + "target":34962 + }, + { + "buffer":0, + "byteLength":97176, + "byteOffset":11218156, + "target":34962 + }, + { + "buffer":0, + "byteLength":97176, + "byteOffset":11315332, + "target":34962 + }, + { + "buffer":0, + "byteLength":64784, + "byteOffset":11412508, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":11477292, + "target":34963 + }, + { + "buffer":0, + "byteLength":58848, + "byteOffset":11510412, + "target":34962 + }, + { + "buffer":0, + "byteLength":58848, + "byteOffset":11569260, + "target":34962 + }, + { + "buffer":0, + "byteLength":39232, + "byteOffset":11628108, + "target":34962 + }, + { + "buffer":0, + "byteLength":23952, + "byteOffset":11667340, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":11691292, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":11691340, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":11691388, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":11691420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":11693124, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":11694828, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":11695964, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":11715884, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":11735804, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":11749084, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":11756116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":11763148, + "target":34963 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":11765140, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":11771980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":11778820, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":11780164, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":11781508, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":11783956, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":11786404, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":11788036, + "target":34963 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":11788648, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":11791096, + "target":34962 + }, + { + "buffer":0, + "byteLength":3048, + "byteOffset":11793544, + "target":34962 + }, + { + "buffer":0, + "byteLength":3048, + "byteOffset":11796592, + "target":34962 + }, + { + "buffer":0, + "byteLength":2032, + "byteOffset":11799640, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":11801672, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":11802632, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":11803496, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":11804360, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":11804936, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":11805512, + "target":34963 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":11805656, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":11808464, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":11811272, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":11812256, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":11819192, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":11826128, + "target":34963 + }, + { + "buffer":0, + "byteLength":43104, + "byteOffset":11828120, + "target":34962 + }, + { + "buffer":0, + "byteLength":43104, + "byteOffset":11871224, + "target":34962 + }, + { + "buffer":0, + "byteLength":28736, + "byteOffset":11914328, + "target":34962 + }, + { + "buffer":0, + "byteLength":20592, + "byteOffset":11943064, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":11963656, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":11963704, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":11963752, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":11963784, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":11964336, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":11964888, + "target":34962 + }, + { + "buffer":0, + "byteLength":2796, + "byteOffset":11965256, + "target":34962 + }, + { + "buffer":0, + "byteLength":2796, + "byteOffset":11968052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1864, + "byteOffset":11970848, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":11972712, + "target":34963 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":11973672, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":11980416, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":11987160, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":11989152, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":11989296, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":11989440, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":11989536, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":11991768, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":11994000, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":11995488, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":12015408, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":12035328, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":12048608, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":12055760, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":12062912, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12064904, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12064952, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":12065000, + "target":34962 + }, + { + "buffer":0, + "byteLength":1356, + "byteOffset":12065032, + "target":34962 + }, + { + "buffer":0, + "byteLength":1356, + "byteOffset":12066388, + "target":34962 + }, + { + "buffer":0, + "byteLength":904, + "byteOffset":12067744, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":12068648, + "target":34963 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":12069128, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":12070832, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":12072536, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":12073672, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":12075016, + "target":34962 + }, + { + "buffer":0, + "byteLength":12612, + "byteOffset":12076360, + "target":34962 + }, + { + "buffer":0, + "byteLength":12612, + "byteOffset":12088972, + "target":34962 + }, + { + "buffer":0, + "byteLength":8408, + "byteOffset":12101584, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":12109992, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":12110472, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":12110952, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":12111272, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":12117608, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":12123944, + "target":34962 + }, + { + "buffer":0, + "byteLength":1524, + "byteOffset":12128168, + "target":34962 + }, + { + "buffer":0, + "byteLength":1524, + "byteOffset":12129692, + "target":34962 + }, + { + "buffer":0, + "byteLength":1016, + "byteOffset":12131216, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":12132232, + "target":34963 + }, + { + "buffer":0, + "byteLength":2568, + "byteOffset":12132712, + "target":34962 + }, + { + "buffer":0, + "byteLength":2568, + "byteOffset":12135280, + "target":34962 + }, + { + "buffer":0, + "byteLength":1712, + "byteOffset":12137848, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":12139560, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":12140184, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":12147168, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":12154152, + "target":34963 + }, + { + "buffer":0, + "byteLength":2592, + "byteOffset":12156144, + "target":34962 + }, + { + "buffer":0, + "byteLength":2592, + "byteOffset":12158736, + "target":34962 + }, + { + "buffer":0, + "byteLength":1728, + "byteOffset":12161328, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":12163056, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12164016, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12164064, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":12164112, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":12164144, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":12166160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":12168176, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":12169520, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":12172640, + "target":34962 + }, + { + "buffer":0, + "byteLength":2080, + "byteOffset":12175760, + "target":34962 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":12177840, + "target":34962 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":12185976, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":12194112, + "target":34962 + }, + { + "buffer":0, + "byteLength":1356, + "byteOffset":12199536, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":12200892, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":12201756, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":12202620, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":12209604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":12216588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":12217644, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":12218700, + "target":34962 + }, + { + "buffer":0, + "byteLength":12636, + "byteOffset":12219404, + "target":34962 + }, + { + "buffer":0, + "byteLength":12636, + "byteOffset":12232040, + "target":34962 + }, + { + "buffer":0, + "byteLength":8424, + "byteOffset":12244676, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":12253100, + "target":34963 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":12257900, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":12258488, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":12259076, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":12259468, + "target":34963 + }, + { + "buffer":0, + "byteLength":2436, + "byteOffset":12259636, + "target":34962 + }, + { + "buffer":0, + "byteLength":2436, + "byteOffset":12262072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1624, + "byteOffset":12264508, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":12266132, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":12267092, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":12267956, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":12268820, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":12270836, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":12272852, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":12274196, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":12280904, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":12287612, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":12292084, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":12309124, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":12326164, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":12337524, + "target":34963 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":12342468, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":12343068, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":12343668, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":12344068, + "target":34963 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":12344236, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":12351280, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":12358324, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12360316, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12360364, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":12360412, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":12360444, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":12367404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":12374364, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":12376356, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":12377220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":12378084, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":12380052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1312, + "byteOffset":12382020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1896, + "byteOffset":12383332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1896, + "byteOffset":12385228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1264, + "byteOffset":12387124, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":12388388, + "target":34963 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":12388868, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":12391316, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":12393764, + "target":34963 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":12395900, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":12396500, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":12397100, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":12397500, + "target":34963 + }, + { + "buffer":0, + "byteLength":936, + "byteOffset":12397668, + "target":34962 + }, + { + "buffer":0, + "byteLength":936, + "byteOffset":12398604, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":12399540, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":12400164, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":12400428, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":12400716, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":12401004, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":12401196, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":12401796, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":12402396, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":12402796, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":12405028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":12407260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":12408748, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":12409852, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":12410956, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":12411692, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":12411836, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":12411980, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":12412076, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":12422660, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":12433244, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":12440300, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":12447020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":12453740, + "target":34963 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":12455732, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":12462548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":12469364, + "target":34963 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":12471356, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":12479132, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":12486908, + "target":34962 + }, + { + "buffer":0, + "byteLength":9888, + "byteOffset":12492092, + "target":34962 + }, + { + "buffer":0, + "byteLength":9888, + "byteOffset":12501980, + "target":34962 + }, + { + "buffer":0, + "byteLength":6592, + "byteOffset":12511868, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":12518460, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":12521004, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":12521292, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":12521580, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":12521772, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":12523116, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":12524460, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":12524748, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":12525036, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":12525228, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":12537468, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":12549708, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12557868, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12557916, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":12557964, + "target":34962 + }, + { + "buffer":0, + "byteLength":15864, + "byteOffset":12557996, + "target":34962 + }, + { + "buffer":0, + "byteLength":15864, + "byteOffset":12573860, + "target":34962 + }, + { + "buffer":0, + "byteLength":10576, + "byteOffset":12589724, + "target":34962 + }, + { + "buffer":0, + "byteLength":5040, + "byteOffset":12600300, + "target":34963 + }, + { + "buffer":0, + "byteLength":3048, + "byteOffset":12605340, + "target":34962 + }, + { + "buffer":0, + "byteLength":3048, + "byteOffset":12608388, + "target":34962 + }, + { + "buffer":0, + "byteLength":2032, + "byteOffset":12611436, + "target":34962 + }, + { + "buffer":0, + "byteLength":8640, + "byteOffset":12613468, + "target":34962 + }, + { + "buffer":0, + "byteLength":8640, + "byteOffset":12622108, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":12630748, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12633412, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12633460, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":12633508, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":12633540, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":12640500, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":12647460, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":12654492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":12661524, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":12663516, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":12664380, + "target":34962 + }, + { + "buffer":0, + "byteLength":2916, + "byteOffset":12665244, + "target":34962 + }, + { + "buffer":0, + "byteLength":2916, + "byteOffset":12668160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":12671076, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":12673020, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12673980, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12674028, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":12674076, + "target":34962 + }, + { + "buffer":0, + "byteLength":2904, + "byteOffset":12674108, + "target":34962 + }, + { + "buffer":0, + "byteLength":2904, + "byteOffset":12677012, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":12679916, + "target":34963 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":12680900, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":12684284, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":12687668, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":12689924, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":12690788, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":12691652, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":12704228, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":12716804, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":12725188, + "target":34963 + }, + { + "buffer":0, + "byteLength":1380, + "byteOffset":12729988, + "target":34962 + }, + { + "buffer":0, + "byteLength":1380, + "byteOffset":12731368, + "target":34962 + }, + { + "buffer":0, + "byteLength":920, + "byteOffset":12732748, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":12733668, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12734148, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12734196, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":12734244, + "target":34962 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":12734276, + "target":34962 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":12738320, + "target":34962 + }, + { + "buffer":0, + "byteLength":2696, + "byteOffset":12742364, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":12745060, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":12746500, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":12747412, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":12748324, + "target":34962 + }, + { + "buffer":0, + "byteLength":9708, + "byteOffset":12748932, + "target":34962 + }, + { + "buffer":0, + "byteLength":9708, + "byteOffset":12758640, + "target":34962 + }, + { + "buffer":0, + "byteLength":6472, + "byteOffset":12768348, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":12774820, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12777364, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12777412, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":12777460, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":12777492, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":12783348, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":12789204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":12793108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":12794284, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":12795460, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":12796244, + "target":34963 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":12796652, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":12798080, + "target":34962 + }, + { + "buffer":0, + "byteLength":952, + "byteOffset":12799508, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":12800460, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12800940, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12800988, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":12801036, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":12801068, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":12801596, + "target":34962 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":12802124, + "target":34962 + }, + { + "buffer":0, + "byteLength":2040, + "byteOffset":12802476, + "target":34962 + }, + { + "buffer":0, + "byteLength":2040, + "byteOffset":12804516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1360, + "byteOffset":12806556, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":12807916, + "target":34963 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":12808636, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":12814972, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":12821308, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":12825532, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":12829588, + "target":34962 + }, + { + "buffer":0, + "byteLength":2704, + "byteOffset":12833644, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":12836348, + "target":34963 + }, + { + "buffer":0, + "byteLength":1368, + "byteOffset":12837788, + "target":34962 + }, + { + "buffer":0, + "byteLength":1368, + "byteOffset":12839156, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":12840524, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":12841436, + "target":34963 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":12841916, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":12849812, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":12857708, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12862972, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12863020, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":12863068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":12863100, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":12864600, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":12866100, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":12867100, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":12874156, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":12881212, + "target":34963 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":12883204, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":12903124, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":12923044, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":12936324, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":12941268, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":12948300, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":12955332, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":12957324, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":12964284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":12971244, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12973236, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12973284, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":12973332, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12973364, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12973412, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":12973460, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":12973492, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":12981268, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":12989044, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12994228, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":12994276, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":12994324, + "target":34962 + }, + { + "buffer":0, + "byteLength":2844, + "byteOffset":12994356, + "target":34962 + }, + { + "buffer":0, + "byteLength":2844, + "byteOffset":12997200, + "target":34962 + }, + { + "buffer":0, + "byteLength":1896, + "byteOffset":13000044, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":13001940, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":13002900, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":13003764, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":13004628, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":13011612, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":13018596, + "target":34963 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":13020588, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":13027668, + "target":34962 + }, + { + "buffer":0, + "byteLength":9072, + "byteOffset":13034748, + "target":34962 + }, + { + "buffer":0, + "byteLength":9072, + "byteOffset":13043820, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":13052892, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":13055556, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":13062540, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":13069524, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":13071516, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":13078500, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":13085484, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":13092540, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":13099596, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":13101588, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":13101732, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":13101876, + "target":34962 + }, + { + "buffer":0, + "byteLength":4188, + "byteOffset":13101972, + "target":34962 + }, + { + "buffer":0, + "byteLength":4188, + "byteOffset":13106160, + "target":34962 + }, + { + "buffer":0, + "byteLength":2792, + "byteOffset":13110348, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":13113140, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":13114580, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":13121588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":13128596, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13130588, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13130636, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":13130684, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13130716, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13130764, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":13130812, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":13130844, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":13131132, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":13131420, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":13131612, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":13134396, + "target":34962 + }, + { + "buffer":0, + "byteLength":1856, + "byteOffset":13137180, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":13139036, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":13145924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":13152812, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":13154804, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":13157528, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":13160252, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":13162068, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":13169052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":13176036, + "target":34963 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":13178028, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":13180260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":13182492, + "target":34962 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":13183980, + "target":34962 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":13201836, + "target":34962 + }, + { + "buffer":0, + "byteLength":11904, + "byteOffset":13219692, + "target":34962 + }, + { + "buffer":0, + "byteLength":3744, + "byteOffset":13231596, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":13235340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":13237092, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":13238844, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13240012, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13240060, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":13240108, + "target":34962 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":13240140, + "target":34962 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":13257996, + "target":34962 + }, + { + "buffer":0, + "byteLength":11904, + "byteOffset":13275852, + "target":34962 + }, + { + "buffer":0, + "byteLength":9792, + "byteOffset":13287756, + "target":34962 + }, + { + "buffer":0, + "byteLength":9792, + "byteOffset":13297548, + "target":34962 + }, + { + "buffer":0, + "byteLength":6528, + "byteOffset":13307340, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":13313868, + "target":34963 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":13316412, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":13317264, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":13318116, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":13318684, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":13319596, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":13320508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1620, + "byteOffset":13321116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1620, + "byteOffset":13322736, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":13324356, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":13325436, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":13332012, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":13338588, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":13342972, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":13347148, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":13351324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":13354108, + "target":34963 + }, + { + "buffer":0, + "byteLength":1644, + "byteOffset":13355548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1644, + "byteOffset":13357192, + "target":34962 + }, + { + "buffer":0, + "byteLength":1096, + "byteOffset":13358836, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":13359932, + "target":34963 + }, + { + "buffer":0, + "byteLength":2508, + "byteOffset":13360412, + "target":34962 + }, + { + "buffer":0, + "byteLength":2508, + "byteOffset":13362920, + "target":34962 + }, + { + "buffer":0, + "byteLength":1672, + "byteOffset":13365428, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":13367100, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":13367724, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":13374612, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":13381500, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":13385364, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":13389228, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13391804, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13391852, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":13391900, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":13391932, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":13399708, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":13407484, + "target":34962 + }, + { + "buffer":0, + "byteLength":2208, + "byteOffset":13412668, + "target":34962 + }, + { + "buffer":0, + "byteLength":2208, + "byteOffset":13414876, + "target":34962 + }, + { + "buffer":0, + "byteLength":1472, + "byteOffset":13417084, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":13418556, + "target":34963 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":13419276, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":13427460, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":13435644, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":13441100, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13443716, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13443764, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":13443812, + "target":34962 + }, + { + "buffer":0, + "byteLength":4212, + "byteOffset":13443844, + "target":34962 + }, + { + "buffer":0, + "byteLength":4212, + "byteOffset":13448056, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":13452268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":13455076, + "target":34963 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":13456516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":13457572, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":13458628, + "target":34962 + }, + { + "buffer":0, + "byteLength":360, + "byteOffset":13459332, + "target":34963 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":13459692, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":13466508, + "target":34962 + }, + { + "buffer":0, + "byteLength":12252, + "byteOffset":13473324, + "target":34962 + }, + { + "buffer":0, + "byteLength":12252, + "byteOffset":13485576, + "target":34962 + }, + { + "buffer":0, + "byteLength":8168, + "byteOffset":13497828, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":13505996, + "target":34963 + }, + { + "buffer":0, + "byteLength":2592, + "byteOffset":13510796, + "target":34962 + }, + { + "buffer":0, + "byteLength":2592, + "byteOffset":13513388, + "target":34962 + }, + { + "buffer":0, + "byteLength":1728, + "byteOffset":13515980, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":13517708, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":13518668, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":13525604, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":13532540, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":13533404, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":13534268, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":13535180, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":13536092, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":13536700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":13538044, + "target":34962 + }, + { + "buffer":0, + "byteLength":9612, + "byteOffset":13539388, + "target":34962 + }, + { + "buffer":0, + "byteLength":9612, + "byteOffset":13549000, + "target":34962 + }, + { + "buffer":0, + "byteLength":6408, + "byteOffset":13558612, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":13565020, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":13567564, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":13584604, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":13601644, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":13613004, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":13613628, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":13614252, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":13614668, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":13614836, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":13615124, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":13615412, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13615604, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13615652, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":13615700, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13615732, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13615780, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":13615828, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13615860, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13615908, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":13615956, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":13615988, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":13616276, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":13616564, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":13616756, + "target":34963 + }, + { + "buffer":0, + "byteLength":1728, + "byteOffset":13616828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1728, + "byteOffset":13618556, + "target":34962 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":13620284, + "target":34962 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":13620920, + "target":34962 + }, + { + "buffer":0, + "byteLength":424, + "byteOffset":13621556, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":13621980, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":13622148, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":13622292, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":13622436, + "target":34962 + }, + { + "buffer":0, + "byteLength":2160, + "byteOffset":13622532, + "target":34962 + }, + { + "buffer":0, + "byteLength":2160, + "byteOffset":13624692, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":13626852, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":13628292, + "target":34963 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":13629012, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":13629624, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":13630236, + "target":34962 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":13630644, + "target":34962 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":13631280, + "target":34962 + }, + { + "buffer":0, + "byteLength":424, + "byteOffset":13631916, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":13632340, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":13634572, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":13636804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":13638292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":13640260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1312, + "byteOffset":13642228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":13643540, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":13644644, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":13645748, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":13646484, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":13647156, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":13647828, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":13648276, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":13648444, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":13648588, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":13648732, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":13648828, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":13655644, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":13662460, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":13662748, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":13663036, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":13663228, + "target":34963 + }, + { + "buffer":0, + "byteLength":16032, + "byteOffset":13663300, + "target":34962 + }, + { + "buffer":0, + "byteLength":16032, + "byteOffset":13679332, + "target":34962 + }, + { + "buffer":0, + "byteLength":10688, + "byteOffset":13695364, + "target":34962 + }, + { + "buffer":0, + "byteLength":4632, + "byteOffset":13706052, + "target":34963 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":13710684, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":13716540, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":13722396, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13726300, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13726348, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":13726396, + "target":34962 + }, + { + "buffer":0, + "byteLength":2844, + "byteOffset":13726428, + "target":34962 + }, + { + "buffer":0, + "byteLength":2844, + "byteOffset":13729272, + "target":34962 + }, + { + "buffer":0, + "byteLength":1896, + "byteOffset":13732116, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":13734012, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":13740828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":13747644, + "target":34963 + }, + { + "buffer":0, + "byteLength":8640, + "byteOffset":13749636, + "target":34962 + }, + { + "buffer":0, + "byteLength":8640, + "byteOffset":13758276, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13766916, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13766964, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":13767012, + "target":34962 + }, + { + "buffer":0, + "byteLength":23184, + "byteOffset":13767044, + "target":34962 + }, + { + "buffer":0, + "byteLength":23184, + "byteOffset":13790228, + "target":34962 + }, + { + "buffer":0, + "byteLength":15456, + "byteOffset":13813412, + "target":34962 + }, + { + "buffer":0, + "byteLength":12636, + "byteOffset":13828868, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13841504, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13841552, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":13841600, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":13841632, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":13841920, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":13842208, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":13862128, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":13882048, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":13895328, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":13902264, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":13909200, + "target":34963 + }, + { + "buffer":0, + "byteLength":3156, + "byteOffset":13911192, + "target":34962 + }, + { + "buffer":0, + "byteLength":3156, + "byteOffset":13914348, + "target":34962 + }, + { + "buffer":0, + "byteLength":2104, + "byteOffset":13917504, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":13919608, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13920568, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":13920616, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":13920664, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":13920696, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":13920984, + "target":34962 + }, + { + "buffer":0, + "byteLength":99492, + "byteOffset":13921272, + "target":34962 + }, + { + "buffer":0, + "byteLength":99492, + "byteOffset":14020764, + "target":34962 + }, + { + "buffer":0, + "byteLength":66328, + "byteOffset":14120256, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":14186584, + "target":34963 + }, + { + "buffer":0, + "byteLength":1356, + "byteOffset":14219704, + "target":34962 + }, + { + "buffer":0, + "byteLength":1356, + "byteOffset":14221060, + "target":34962 + }, + { + "buffer":0, + "byteLength":904, + "byteOffset":14222416, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":14223320, + "target":34963 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":14223800, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":14230640, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":14237480, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14239472, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14239520, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":14239568, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":14239600, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":14243728, + "target":34962 + }, + { + "buffer":0, + "byteLength":2752, + "byteOffset":14247856, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":14250608, + "target":34963 + }, + { + "buffer":0, + "byteLength":1932, + "byteOffset":14252048, + "target":34962 + }, + { + "buffer":0, + "byteLength":1932, + "byteOffset":14253980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1288, + "byteOffset":14255912, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":14257200, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":14257920, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":14274960, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":14292000, + "target":34962 + }, + { + "buffer":0, + "byteLength":1524, + "byteOffset":14303360, + "target":34962 + }, + { + "buffer":0, + "byteLength":1524, + "byteOffset":14304884, + "target":34962 + }, + { + "buffer":0, + "byteLength":1016, + "byteOffset":14306408, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":14307424, + "target":34963 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":14307904, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":14308528, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":14309152, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":14309568, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":14310912, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":14312256, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":14312868, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":14313480, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14313888, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14314176, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":14314464, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14314656, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14314944, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":14315232, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":14315424, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":14317800, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":14320176, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":14321760, + "target":34963 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":14322312, + "target":34962 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":14326356, + "target":34962 + }, + { + "buffer":0, + "byteLength":2696, + "byteOffset":14330400, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":14333096, + "target":34963 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":14334536, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":14338640, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":14342744, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":14345480, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":14346920, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":14347784, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":14348648, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":14349944, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":14351240, + "target":34962 + }, + { + "buffer":0, + "byteLength":324, + "byteOffset":14352104, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":14352428, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":14359460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":14366492, + "target":34963 + }, + { + "buffer":0, + "byteLength":1476, + "byteOffset":14368484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1476, + "byteOffset":14369960, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":14371436, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":14372420, + "target":34963 + }, + { + "buffer":0, + "byteLength":2928, + "byteOffset":14372900, + "target":34962 + }, + { + "buffer":0, + "byteLength":2928, + "byteOffset":14375828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1952, + "byteOffset":14378756, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":14380708, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14381668, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14381716, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":14381764, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":14381796, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":14388636, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14395476, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14395524, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":14395572, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":14395604, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":14415524, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":14435444, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":14448724, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":14455636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":14462548, + "target":34963 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":14464540, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":14471416, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":14478292, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":14485396, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":14492500, + "target":34963 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":14494492, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":14502388, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":14510284, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":14515548, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":14522508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":14529468, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14531460, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14531748, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":14532036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14532228, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14532516, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":14532804, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14532996, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14533044, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":14533092, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":14533124, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":14533652, + "target":34962 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":14534180, + "target":34962 + }, + { + "buffer":0, + "byteLength":156, + "byteOffset":14534532, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":14534688, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":14537412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":14540136, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14541952, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14542240, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":14542528, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":14542720, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":14549824, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":14556928, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":14576848, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":14596768, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":14610048, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":14616888, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":14623728, + "target":34963 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":14625720, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":14632428, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":14639136, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":14643608, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":14644952, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":14646296, + "target":34963 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":14646944, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":14653784, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":14660624, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14662616, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14662664, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":14662712, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":14662744, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":14669800, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":14676856, + "target":34963 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":14678848, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":14681632, + "target":34962 + }, + { + "buffer":0, + "byteLength":1856, + "byteOffset":14684416, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":14686272, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14687232, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14687520, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":14687808, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":14688000, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":14689296, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":14690592, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":14691456, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":14698524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":14705592, + "target":34963 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":14707584, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":14714424, + "target":34962 + }, + { + "buffer":0, + "byteLength":3936, + "byteOffset":14721264, + "target":34962 + }, + { + "buffer":0, + "byteLength":3936, + "byteOffset":14725200, + "target":34962 + }, + { + "buffer":0, + "byteLength":2624, + "byteOffset":14729136, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":14731760, + "target":34963 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":14733200, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":14740196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":14747192, + "target":34963 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":14749184, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":14755892, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":14762600, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":14767072, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":14769304, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":14771536, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":14773024, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":14774968, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":14776912, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":14778208, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14778688, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14778736, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":14778784, + "target":34962 + }, + { + "buffer":0, + "byteLength":10968, + "byteOffset":14778816, + "target":34962 + }, + { + "buffer":0, + "byteLength":10968, + "byteOffset":14789784, + "target":34962 + }, + { + "buffer":0, + "byteLength":7312, + "byteOffset":14800752, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":14808064, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":14808208, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":14808352, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14808448, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14808736, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":14809024, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":14809216, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":14810560, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":14811904, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":14812816, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":14813728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":14814336, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":14815488, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":14816640, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":14817408, + "target":34963 + }, + { + "buffer":0, + "byteLength":1668, + "byteOffset":14817816, + "target":34962 + }, + { + "buffer":0, + "byteLength":1668, + "byteOffset":14819484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1112, + "byteOffset":14821152, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":14822264, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":14829296, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":14836328, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":14843456, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":14850584, + "target":34963 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":14852576, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":14864816, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":14877056, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":14885216, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14890016, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14890064, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":14890112, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14890144, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14890192, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":14890240, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14890272, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14890560, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":14890848, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":14891040, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14891112, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14891160, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":14891208, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14891240, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14891288, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":14891336, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":14891368, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":14895232, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":14899096, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14901672, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":14901720, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":14901768, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":14901800, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":14902472, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":14903144, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":14903592, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":14905848, + "target":34962 + }, + { + "buffer":0, + "byteLength":1504, + "byteOffset":14908104, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":14909608, + "target":34963 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":14910328, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":14912704, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":14915080, + "target":34962 + }, + { + "buffer":0, + "byteLength":3048, + "byteOffset":14916664, + "target":34962 + }, + { + "buffer":0, + "byteLength":3048, + "byteOffset":14919712, + "target":34962 + }, + { + "buffer":0, + "byteLength":2032, + "byteOffset":14922760, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":14924792, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":14928944, + "target":34962 + }, + { + "buffer":0, + "byteLength":2768, + "byteOffset":14933096, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":14935864, + "target":34963 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":14937304, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":14945200, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":14953096, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":14958360, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":14965200, + "target":34962 + }, + { + "buffer":0, + "byteLength":95832, + "byteOffset":14972040, + "target":34962 + }, + { + "buffer":0, + "byteLength":95832, + "byteOffset":15067872, + "target":34962 + }, + { + "buffer":0, + "byteLength":63888, + "byteOffset":15163704, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":15227592, + "target":34963 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":15260712, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":15261768, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":15262824, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":15263528, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":15270584, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":15277640, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":15279632, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":15279920, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":15280208, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":15280400, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":15280448, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":15280496, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":15280528, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":15289192, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":15297856, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":15314896, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":15331936, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":15343296, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":15343344, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":15343392, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":15343424, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":15345056, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":15346688, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":15347776, + "target":34963 + }, + { + "buffer":0, + "byteLength":660, + "byteOffset":15348280, + "target":34962 + }, + { + "buffer":0, + "byteLength":660, + "byteOffset":15348940, + "target":34962 + }, + { + "buffer":0, + "byteLength":440, + "byteOffset":15349600, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":15350040, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":15350208, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":15351360, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":15352512, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":15353280, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":15353568, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":15353856, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":15354048, + "target":34963 + }, + { + "buffer":0, + "byteLength":3936, + "byteOffset":15354120, + "target":34962 + }, + { + "buffer":0, + "byteLength":3936, + "byteOffset":15358056, + "target":34962 + }, + { + "buffer":0, + "byteLength":2624, + "byteOffset":15361992, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":15364616, + "target":34963 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":15366056, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":15373112, + "target":34962 + }, + { + "buffer":0, + "byteLength":4704, + "byteOffset":15380168, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":15384872, + "target":34963 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":15386048, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":15393824, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":15401600, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":15406784, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":15410816, + "target":34962 + }, + { + "buffer":0, + "byteLength":660, + "byteOffset":15414848, + "target":34962 + }, + { + "buffer":0, + "byteLength":660, + "byteOffset":15415508, + "target":34962 + }, + { + "buffer":0, + "byteLength":440, + "byteOffset":15416168, + "target":34962 + }, + { + "buffer":0, + "byteLength":4260, + "byteOffset":15416608, + "target":34962 + }, + { + "buffer":0, + "byteLength":4260, + "byteOffset":15420868, + "target":34962 + }, + { + "buffer":0, + "byteLength":2840, + "byteOffset":15425128, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":15427968, + "target":34963 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":15429408, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":15431640, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":15433872, + "target":34962 + }, + { + "buffer":0, + "byteLength":888, + "byteOffset":15435360, + "target":34962 + }, + { + "buffer":0, + "byteLength":888, + "byteOffset":15436248, + "target":34962 + }, + { + "buffer":0, + "byteLength":592, + "byteOffset":15437136, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":15437728, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":15437992, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":15438280, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":15438568, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":15445720, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":15452872, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":15453448, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":15454024, + "target":34963 + }, + { + "buffer":0, + "byteLength":32628, + "byteOffset":15454168, + "target":34962 + }, + { + "buffer":0, + "byteLength":32628, + "byteOffset":15486796, + "target":34962 + }, + { + "buffer":0, + "byteLength":21752, + "byteOffset":15519424, + "target":34962 + }, + { + "buffer":0, + "byteLength":9600, + "byteOffset":15541176, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":15550776, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":15552120, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":15553464, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":15553512, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":15553560, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":15553592, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":15553640, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":15553688, + "target":34962 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":15553720, + "target":34962 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":15650272, + "target":34962 + }, + { + "buffer":0, + "byteLength":64368, + "byteOffset":15746824, + "target":34962 + }, + { + "buffer":0, + "byteLength":5400, + "byteOffset":15811192, + "target":34962 + }, + { + "buffer":0, + "byteLength":5400, + "byteOffset":15816592, + "target":34962 + }, + { + "buffer":0, + "byteLength":3600, + "byteOffset":15821992, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":15825592, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":15828352, + "target":34962 + }, + { + "buffer":0, + "byteLength":1840, + "byteOffset":15831112, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":15832952, + "target":34963 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":15833912, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":15838052, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":15842192, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":15844952, + "target":34963 + }, + { + "buffer":0, + "byteLength":95832, + "byteOffset":15846392, + "target":34962 + }, + { + "buffer":0, + "byteLength":95832, + "byteOffset":15942224, + "target":34962 + }, + { + "buffer":0, + "byteLength":63888, + "byteOffset":16038056, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":16101944, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":16101992, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":16102040, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":16102072, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":16102360, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":16102648, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":16102720, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":16103872, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":16105024, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":16112056, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":16119088, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":16120912, + "target":34962 + }, + { + "buffer":0, + "byteLength":1216, + "byteOffset":16122736, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":16123952, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":16124600, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":16124648, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":16124696, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":16124728, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":16125448, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":16126168, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":16126648, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":16128400, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":16130152, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":16131320, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":16131608, + "target":34962 + }, + { + "buffer":0, + "byteLength":6540, + "byteOffset":16131896, + "target":34962 + }, + { + "buffer":0, + "byteLength":6540, + "byteOffset":16138436, + "target":34962 + }, + { + "buffer":0, + "byteLength":4360, + "byteOffset":16144976, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":16149336, + "target":34963 + }, + { + "buffer":0, + "byteLength":98412, + "byteOffset":16151592, + "target":34962 + }, + { + "buffer":0, + "byteLength":98412, + "byteOffset":16250004, + "target":34962 + }, + { + "buffer":0, + "byteLength":65608, + "byteOffset":16348416, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":16414024, + "target":34963 + }, + { + "buffer":0, + "byteLength":3348, + "byteOffset":16447144, + "target":34962 + }, + { + "buffer":0, + "byteLength":3348, + "byteOffset":16450492, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":16453840, + "target":34962 + }, + { + "buffer":0, + "byteLength":1290, + "byteOffset":16456072, + "target":34963 + }, + { + "buffer":0, + "byteLength":78264, + "byteOffset":16457364, + "target":34962 + }, + { + "buffer":0, + "byteLength":78264, + "byteOffset":16535628, + "target":34962 + }, + { + "buffer":0, + "byteLength":52176, + "byteOffset":16613892, + "target":34962 + }, + { + "buffer":0, + "byteLength":74592, + "byteOffset":16666068, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":16740660, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":16740708, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":16740756, + "target":34962 + }, + { + "buffer":0, + "byteLength":1248, + "byteOffset":16740788, + "target":34962 + }, + { + "buffer":0, + "byteLength":1248, + "byteOffset":16742036, + "target":34962 + }, + { + "buffer":0, + "byteLength":832, + "byteOffset":16743284, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":16744116, + "target":34963 + }, + { + "buffer":0, + "byteLength":876, + "byteOffset":16744596, + "target":34962 + }, + { + "buffer":0, + "byteLength":876, + "byteOffset":16745472, + "target":34962 + }, + { + "buffer":0, + "byteLength":584, + "byteOffset":16746348, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":16746932, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":16754708, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":16762484, + "target":34962 + }, + { + "buffer":0, + "byteLength":13836, + "byteOffset":16767668, + "target":34962 + }, + { + "buffer":0, + "byteLength":13836, + "byteOffset":16781504, + "target":34962 + }, + { + "buffer":0, + "byteLength":9224, + "byteOffset":16795340, + "target":34962 + }, + { + "buffer":0, + "byteLength":7860, + "byteOffset":16804564, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":16812424, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":16812472, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":16812520, + "target":34962 + }, + { + "buffer":0, + "byteLength":1620, + "byteOffset":16812552, + "target":34962 + }, + { + "buffer":0, + "byteLength":1620, + "byteOffset":16814172, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":16815792, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":16816872, + "target":34963 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":16817352, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":16818024, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":16818696, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":16819144, + "target":34963 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":16819312, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":16823344, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":16827376, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":16827988, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":16828600, + "target":34962 + }, + { + "buffer":0, + "byteLength":2004, + "byteOffset":16829008, + "target":34962 + }, + { + "buffer":0, + "byteLength":2004, + "byteOffset":16831012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1336, + "byteOffset":16833016, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":16834352, + "target":34963 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":16835072, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":16837448, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":16839824, + "target":34962 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":16841408, + "target":34962 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":16842860, + "target":34962 + }, + { + "buffer":0, + "byteLength":968, + "byteOffset":16844312, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":16845280, + "target":34963 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":16845760, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":16849792, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":16853824, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":16853872, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":16853920, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":16853952, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":16861044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":16868136, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":16870128, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":16877040, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":16883952, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":16890792, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":16897632, + "target":34963 + }, + { + "buffer":0, + "byteLength":2208, + "byteOffset":16899624, + "target":34962 + }, + { + "buffer":0, + "byteLength":2208, + "byteOffset":16901832, + "target":34962 + }, + { + "buffer":0, + "byteLength":1472, + "byteOffset":16904040, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":16905512, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":16906232, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":16907984, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":16909736, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":16910904, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":16911192, + "target":34962 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":16911480, + "target":34962 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":16929336, + "target":34962 + }, + { + "buffer":0, + "byteLength":11904, + "byteOffset":16947192, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":16959096, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":16980816, + "target":34962 + }, + { + "buffer":0, + "byteLength":14480, + "byteOffset":17002536, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":17017016, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":17017592, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":17018168, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":17018552, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":17018720, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":17018768, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":17018816, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":17018848, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":17021608, + "target":34962 + }, + { + "buffer":0, + "byteLength":1840, + "byteOffset":17024368, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":17026208, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":17027168, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":17027456, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":17027744, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":17036408, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":17045072, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":17045120, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":17045168, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":17045200, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":17045776, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":17046352, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":17053384, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":17060416, + "target":34963 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":17062408, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":17066584, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":17070760, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":17077960, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":17085160, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":17087152, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":17094040, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":17100928, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":17102920, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":17102968, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":17103016, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":17103048, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":17103096, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":17103144, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":17103176, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":17105120, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":17107064, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":17108360, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":17108648, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":17108936, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":17109128, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":17111984, + "target":34962 + }, + { + "buffer":0, + "byteLength":1904, + "byteOffset":17114840, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":17116744, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":17117704, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":17117848, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":17117992, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":17118088, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":17118376, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":17118664, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":17126848, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":17135032, + "target":34963 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":17137696, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":17141560, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":17145424, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":17148000, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":17148192, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":17148384, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":17148512, + "target":34963 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":17148608, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":17155808, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":17163008, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":17165000, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":17165048, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":17165096, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":17165128, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":17185048, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":17204968, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":17218248, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":17218728, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":17219208, + "target":34962 + }, + { + "buffer":0, + "byteLength":3936, + "byteOffset":17219528, + "target":34962 + }, + { + "buffer":0, + "byteLength":3936, + "byteOffset":17223464, + "target":34962 + }, + { + "buffer":0, + "byteLength":2624, + "byteOffset":17227400, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":17230024, + "target":34963 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":17231464, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":17232316, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":17233168, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":17233736, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":17234720, + "target":34962 + }, + { + "buffer":0, + "byteLength":656, + "byteOffset":17235704, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":17236360, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":17239744, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":17243128, + "target":34962 + }, + { + "buffer":0, + "byteLength":3072, + "byteOffset":17245384, + "target":34962 + }, + { + "buffer":0, + "byteLength":3072, + "byteOffset":17248456, + "target":34962 + }, + { + "buffer":0, + "byteLength":2048, + "byteOffset":17251528, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":17253576, + "target":34963 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":17254536, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":17256024, + "target":34962 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":17257512, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":17258504, + "target":34963 + }, + { + "buffer":0, + "byteLength":7308, + "byteOffset":17258984, + "target":34962 + }, + { + "buffer":0, + "byteLength":7308, + "byteOffset":17266292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":17273600, + "target":34963 + }, + { + "buffer":0, + "byteLength":1164, + "byteOffset":17275592, + "target":34962 + }, + { + "buffer":0, + "byteLength":1164, + "byteOffset":17276756, + "target":34962 + }, + { + "buffer":0, + "byteLength":776, + "byteOffset":17277920, + "target":34962 + }, + { + "buffer":0, + "byteLength":300, + "byteOffset":17278696, + "target":34963 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":17278996, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":17283052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":17287108, + "target":34963 + }, + { + "buffer":0, + "byteLength":2172, + "byteOffset":17288428, + "target":34962 + }, + { + "buffer":0, + "byteLength":2172, + "byteOffset":17290600, + "target":34962 + }, + { + "buffer":0, + "byteLength":1448, + "byteOffset":17292772, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":17294220, + "target":34963 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":17294940, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":17297316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":17299692, + "target":34962 + }, + { + "buffer":0, + "byteLength":2868, + "byteOffset":17301276, + "target":34962 + }, + { + "buffer":0, + "byteLength":2868, + "byteOffset":17304144, + "target":34962 + }, + { + "buffer":0, + "byteLength":1912, + "byteOffset":17307012, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":17308924, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":17309884, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":17316772, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":17323660, + "target":34963 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":17325652, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":17332528, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":17339404, + "target":34963 + }, + { + "buffer":0, + "byteLength":2604, + "byteOffset":17341396, + "target":34962 + }, + { + "buffer":0, + "byteLength":2604, + "byteOffset":17344000, + "target":34962 + }, + { + "buffer":0, + "byteLength":1736, + "byteOffset":17346604, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":17348340, + "target":34963 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":17349300, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":17349888, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":17350476, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":17350868, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":17351036, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":17351084, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":17351132, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":17351164, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":17358172, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":17365180, + "target":34963 + }, + { + "buffer":0, + "byteLength":93456, + "byteOffset":17367172, + "target":34962 + }, + { + "buffer":0, + "byteLength":93456, + "byteOffset":17460628, + "target":34962 + }, + { + "buffer":0, + "byteLength":62304, + "byteOffset":17554084, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":17616388, + "target":34963 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":17649508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":17650564, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":17651620, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":17652324, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":17653188, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":17654052, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":17671092, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":17688132, + "target":34962 + }, + { + "buffer":0, + "byteLength":8904, + "byteOffset":17699492, + "target":34962 + }, + { + "buffer":0, + "byteLength":8904, + "byteOffset":17708396, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":17717300, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":17718644, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":17719988, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":17720276, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":17720564, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":17720756, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":17737796, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":17754836, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":17766196, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":17771140, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":17771188, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":17771236, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":17771268, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":17773992, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":17776716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1800, + "byteOffset":17778532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1800, + "byteOffset":17780332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1200, + "byteOffset":17782132, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":17783332, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":17783980, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":17784124, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":17784268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":17784364, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":17786116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":17787868, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":17789036, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":17796128, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":17803220, + "target":34963 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":17805212, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":17812292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":17819372, + "target":34963 + }, + { + "buffer":0, + "byteLength":12636, + "byteOffset":17821364, + "target":34962 + }, + { + "buffer":0, + "byteLength":12636, + "byteOffset":17834000, + "target":34962 + }, + { + "buffer":0, + "byteLength":8424, + "byteOffset":17846636, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":17855060, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":17855636, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":17856212, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":17856596, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":17856764, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":17856812, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":17856860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1380, + "byteOffset":17856892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1380, + "byteOffset":17858272, + "target":34962 + }, + { + "buffer":0, + "byteLength":920, + "byteOffset":17859652, + "target":34962 + }, + { + "buffer":0, + "byteLength":456, + "byteOffset":17860572, + "target":34963 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":17861028, + "target":34962 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":17869164, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":17877300, + "target":34962 + }, + { + "buffer":0, + "byteLength":1356, + "byteOffset":17882724, + "target":34963 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":17884080, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":17886312, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":17888544, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":17890032, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":17890608, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":17891184, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":17891568, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":17892288, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":17893008, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":17893488, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":17893704, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":17893992, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":17894280, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":17894472, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":17901420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":17908368, + "target":34963 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":17910360, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":17911680, + "target":34962 + }, + { + "buffer":0, + "byteLength":880, + "byteOffset":17913000, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":17913880, + "target":34963 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":17914288, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":17921380, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":17928472, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":17930464, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":17930752, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":17931040, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":17938072, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":17945104, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":17945680, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":17946256, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":17953312, + "target":34962 + }, + { + "buffer":0, + "byteLength":96480, + "byteOffset":17960368, + "target":34962 + }, + { + "buffer":0, + "byteLength":96480, + "byteOffset":18056848, + "target":34962 + }, + { + "buffer":0, + "byteLength":64320, + "byteOffset":18153328, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":18217648, + "target":34963 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":18250768, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":18257488, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":18264208, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":18266200, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":18273136, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":18280072, + "target":34963 + }, + { + "buffer":0, + "byteLength":4248, + "byteOffset":18282064, + "target":34962 + }, + { + "buffer":0, + "byteLength":4248, + "byteOffset":18286312, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":18290560, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":18291880, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":18292168, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":18292456, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":18292648, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":18292936, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":18293224, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":18293416, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":18293464, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":18293512, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":18293544, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":18296304, + "target":34962 + }, + { + "buffer":0, + "byteLength":1840, + "byteOffset":18299064, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":18300904, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":18302056, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":18303208, + "target":34963 + }, + { + "buffer":0, + "byteLength":11136, + "byteOffset":18303472, + "target":34962 + }, + { + "buffer":0, + "byteLength":11136, + "byteOffset":18314608, + "target":34962 + }, + { + "buffer":0, + "byteLength":7424, + "byteOffset":18325744, + "target":34962 + }, + { + "buffer":0, + "byteLength":3744, + "byteOffset":18333168, + "target":34963 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":18336912, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":18339360, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":18341808, + "target":34963 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":18343944, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":18351060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":18358176, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":18360168, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":18367104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":18374040, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":18375192, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":18376344, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":18377112, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":18384120, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":18391128, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":18398016, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":18404904, + "target":34963 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":18406896, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":18413820, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":18420744, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":18422736, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":18422784, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":18422832, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":18422864, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":18424520, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":18426176, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":18427280, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":18431312, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":18435344, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":18436664, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":18438008, + "target":34962 + }, + { + "buffer":0, + "byteLength":92988, + "byteOffset":18439352, + "target":34962 + }, + { + "buffer":0, + "byteLength":92988, + "byteOffset":18532340, + "target":34962 + }, + { + "buffer":0, + "byteLength":61992, + "byteOffset":18625328, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":18687320, + "target":34963 + }, + { + "buffer":0, + "byteLength":12276, + "byteOffset":18720440, + "target":34962 + }, + { + "buffer":0, + "byteLength":12276, + "byteOffset":18732716, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":18744992, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":18753176, + "target":34963 + }, + { + "buffer":0, + "byteLength":4020, + "byteOffset":18757976, + "target":34962 + }, + { + "buffer":0, + "byteLength":4020, + "byteOffset":18761996, + "target":34962 + }, + { + "buffer":0, + "byteLength":2680, + "byteOffset":18766016, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":18768696, + "target":34963 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":18770136, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":18771600, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":18773064, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":18774040, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":18774520, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":18774808, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":18775096, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":18775144, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":18775192, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":18775224, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":18775512, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":18775800, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":18775992, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":18776280, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":18776568, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":18776760, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":18777048, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":18777336, + "target":34962 + }, + { + "buffer":0, + "byteLength":78264, + "byteOffset":18777528, + "target":34962 + }, + { + "buffer":0, + "byteLength":78264, + "byteOffset":18855792, + "target":34962 + }, + { + "buffer":0, + "byteLength":52176, + "byteOffset":18934056, + "target":34962 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":18986232, + "target":34962 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":18987684, + "target":34962 + }, + { + "buffer":0, + "byteLength":968, + "byteOffset":18989136, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":18990104, + "target":34963 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":18990584, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":18992408, + "target":34962 + }, + { + "buffer":0, + "byteLength":1216, + "byteOffset":18994232, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":18995448, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":18996096, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":18998820, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":19001544, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":19003360, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":19004416, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":19005472, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":19006176, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":19008864, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":19011552, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":19012128, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":19012704, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":19013088, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":19020864, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":19028640, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":19033824, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":19034688, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":19035552, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":19038048, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":19040544, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":19042208, + "target":34963 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":19042832, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":19046864, + "target":34962 + }, + { + "buffer":0, + "byteLength":1548, + "byteOffset":19050896, + "target":34962 + }, + { + "buffer":0, + "byteLength":1548, + "byteOffset":19052444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1032, + "byteOffset":19053992, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":19055024, + "target":34963 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":19055504, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":19058192, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19060880, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19060928, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":19060976, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":19061008, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":19061728, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":19062448, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":19062928, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":19069960, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":19076992, + "target":34963 + }, + { + "buffer":0, + "byteLength":97176, + "byteOffset":19078984, + "target":34962 + }, + { + "buffer":0, + "byteLength":97176, + "byteOffset":19176160, + "target":34962 + }, + { + "buffer":0, + "byteLength":64784, + "byteOffset":19273336, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":19338120, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":19345104, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":19352088, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":19359144, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":19366200, + "target":34963 + }, + { + "buffer":0, + "byteLength":2064, + "byteOffset":19368192, + "target":34962 + }, + { + "buffer":0, + "byteLength":2064, + "byteOffset":19370256, + "target":34962 + }, + { + "buffer":0, + "byteLength":1376, + "byteOffset":19372320, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":19373696, + "target":34963 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":19374368, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":19382144, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":19389920, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":19395104, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":19401944, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":19408784, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":19409072, + "target":34962 + }, + { + "buffer":0, + "byteLength":16032, + "byteOffset":19409360, + "target":34962 + }, + { + "buffer":0, + "byteLength":16032, + "byteOffset":19425392, + "target":34962 + }, + { + "buffer":0, + "byteLength":10688, + "byteOffset":19441424, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":19452112, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":19473832, + "target":34962 + }, + { + "buffer":0, + "byteLength":14480, + "byteOffset":19495552, + "target":34962 + }, + { + "buffer":0, + "byteLength":2196, + "byteOffset":19510032, + "target":34962 + }, + { + "buffer":0, + "byteLength":2196, + "byteOffset":19512228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":19514424, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":19515888, + "target":34963 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":19516608, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":19523484, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":19530360, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":19537272, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":19544184, + "target":34963 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":19546176, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":19548960, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":19551744, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":19558800, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":19565856, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19567848, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19567896, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":19567944, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":19567976, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":19568264, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":19568552, + "target":34962 + }, + { + "buffer":0, + "byteLength":3948, + "byteOffset":19568744, + "target":34962 + }, + { + "buffer":0, + "byteLength":3948, + "byteOffset":19572692, + "target":34962 + }, + { + "buffer":0, + "byteLength":2632, + "byteOffset":19576640, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":19579272, + "target":34963 + }, + { + "buffer":0, + "byteLength":9828, + "byteOffset":19580712, + "target":34962 + }, + { + "buffer":0, + "byteLength":9828, + "byteOffset":19590540, + "target":34962 + }, + { + "buffer":0, + "byteLength":6552, + "byteOffset":19600368, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":19606920, + "target":34963 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":19609464, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":19616568, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":19623672, + "target":34963 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":19625664, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":19627296, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":19628928, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":19630016, + "target":34963 + }, + { + "buffer":0, + "byteLength":9840, + "byteOffset":19630664, + "target":34962 + }, + { + "buffer":0, + "byteLength":9840, + "byteOffset":19640504, + "target":34962 + }, + { + "buffer":0, + "byteLength":6560, + "byteOffset":19650344, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":19656904, + "target":34963 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":19659448, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":19661416, + "target":34962 + }, + { + "buffer":0, + "byteLength":1312, + "byteOffset":19663384, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":19664696, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":19665248, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":19665800, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":19666168, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":19675168, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":19684168, + "target":34963 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":19686832, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":19688848, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":19690864, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":19692208, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":19692928, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":19693504, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":19694080, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":19694992, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":19695904, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19696512, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19696560, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":19696608, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":19696640, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":19703624, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":19710608, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19712600, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19712648, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":19712696, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":19712728, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":19716112, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":19719496, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":19721752, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":19724584, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":19727416, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":19728400, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":19728688, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":19728976, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":19733584, + "target":34962 + }, + { + "buffer":0, + "byteLength":3072, + "byteOffset":19738192, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":19741264, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":19742416, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":19742704, + "target":34962 + }, + { + "buffer":0, + "byteLength":23424, + "byteOffset":19742992, + "target":34962 + }, + { + "buffer":0, + "byteLength":23424, + "byteOffset":19766416, + "target":34962 + }, + { + "buffer":0, + "byteLength":15616, + "byteOffset":19789840, + "target":34962 + }, + { + "buffer":0, + "byteLength":5760, + "byteOffset":19805456, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19811216, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19811264, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":19811312, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":19811344, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":19813864, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":19816384, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":19818064, + "target":34963 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":19819672, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":19826752, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":19833832, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":19835824, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":19837168, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":19838512, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":19839408, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":19843272, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":19847136, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19849712, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19849760, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":19849808, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":19849840, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":19850128, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":19850416, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":19850608, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":19852984, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":19855360, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":19856944, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":19864840, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":19872736, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19878000, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19878048, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":19878096, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":19878128, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":19879568, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":19881008, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":19881968, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":19882448, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":19889432, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":19896416, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19898408, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19898456, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":19898504, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":19898536, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":19905520, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":19912504, + "target":34963 + }, + { + "buffer":0, + "byteLength":92988, + "byteOffset":19914496, + "target":34962 + }, + { + "buffer":0, + "byteLength":92988, + "byteOffset":20007484, + "target":34962 + }, + { + "buffer":0, + "byteLength":61992, + "byteOffset":20100472, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":20162464, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":20163088, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":20163712, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":20164128, + "target":34963 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":20164296, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":20165352, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":20166408, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20167112, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20167400, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":20167688, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":20167880, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":20169224, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20170568, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20170856, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":20171144, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":20171336, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":20188376, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":20205416, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20216776, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20216824, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20216872, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":20216904, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":20223612, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":20230320, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":20234792, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":20235368, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":20235944, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":20236328, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":20237480, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":20238632, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":20239400, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":20246396, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":20253392, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20255384, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20255432, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20255480, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":20255512, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":20257264, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":20259016, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20260184, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20260472, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":20260760, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20260952, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20261000, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20261048, + "target":34962 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":20261080, + "target":34962 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":20269216, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":20277352, + "target":34962 + }, + { + "buffer":0, + "byteLength":1356, + "byteOffset":20282776, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20284132, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20284420, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":20284708, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20284900, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20285188, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":20285476, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":20285668, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":20292556, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":20299444, + "target":34963 + }, + { + "buffer":0, + "byteLength":1716, + "byteOffset":20301436, + "target":34962 + }, + { + "buffer":0, + "byteLength":1716, + "byteOffset":20303152, + "target":34962 + }, + { + "buffer":0, + "byteLength":1144, + "byteOffset":20304868, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":20306012, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":20306492, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":20307404, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":20308316, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20308924, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20309212, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":20309500, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":20316484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":20323468, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":20325460, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":20332372, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":20339284, + "target":34963 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":20341276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":20342692, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":20344108, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":20345052, + "target":34963 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":20345532, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":20348412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":20351292, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":20353212, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20354172, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20354460, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":20354748, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20354940, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20354988, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20355036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20355068, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20355356, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":20355644, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":20358452, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":20361260, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20362244, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20362292, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20362340, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":20362372, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":20363092, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":20363812, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":20364292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":20365636, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20366980, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20367268, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":20367556, + "target":34962 + }, + { + "buffer":0, + "byteLength":92988, + "byteOffset":20367748, + "target":34962 + }, + { + "buffer":0, + "byteLength":92988, + "byteOffset":20460736, + "target":34962 + }, + { + "buffer":0, + "byteLength":61992, + "byteOffset":20553724, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":20615716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":20617348, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":20618980, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":20620068, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":20620740, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":20623464, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":20626188, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":20628004, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":20628676, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":20629348, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":20629796, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":20632244, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":20634692, + "target":34963 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":20636828, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":20639636, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":20642444, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":20649332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":20656220, + "target":34963 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":20658212, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":20658836, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":20659460, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20659876, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20659924, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20659972, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":20660004, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":20664108, + "target":34962 + }, + { + "buffer":0, + "byteLength":8112, + "byteOffset":20668212, + "target":34962 + }, + { + "buffer":0, + "byteLength":8112, + "byteOffset":20676324, + "target":34962 + }, + { + "buffer":0, + "byteLength":5408, + "byteOffset":20684436, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20689844, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20690132, + "target":34962 + }, + { + "buffer":0, + "byteLength":3948, + "byteOffset":20690420, + "target":34962 + }, + { + "buffer":0, + "byteLength":3948, + "byteOffset":20694368, + "target":34962 + }, + { + "buffer":0, + "byteLength":2632, + "byteOffset":20698316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":20700948, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":20702292, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":20703636, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":20704532, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20705012, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20705060, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20705108, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20705140, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20705428, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":20705716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1896, + "byteOffset":20705908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1896, + "byteOffset":20707804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1264, + "byteOffset":20709700, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":20710964, + "target":34963 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":20711684, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":20718560, + "target":34962 + }, + { + "buffer":0, + "byteLength":1332, + "byteOffset":20725436, + "target":34962 + }, + { + "buffer":0, + "byteLength":1332, + "byteOffset":20726768, + "target":34962 + }, + { + "buffer":0, + "byteLength":888, + "byteOffset":20728100, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":20728988, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":20729468, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":20730620, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":20731772, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20732540, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20732588, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20732636, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20732668, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20732956, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":20733244, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":20733436, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":20737660, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":20741884, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":20745916, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20749948, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20750236, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":20750524, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":20750716, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":20753092, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":20755468, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":20757052, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20757604, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20757652, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20757700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":20757732, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":20759028, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":20760324, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":20761188, + "target":34963 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":20761668, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":20765700, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20769732, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20769780, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20769828, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":20769860, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":20776820, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":20783780, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20785772, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20786060, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":20786348, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":20786540, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":20787692, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":20788844, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":20789612, + "target":34963 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":20789996, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":20790980, + "target":34962 + }, + { + "buffer":0, + "byteLength":656, + "byteOffset":20791964, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":20792620, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":20799508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":20806396, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":20808388, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":20815276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":20822164, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20824156, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20824204, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20824252, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":20824284, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":20831244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":20838204, + "target":34963 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":20840196, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":20840868, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":20841540, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":20841988, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":20842156, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":20849068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":20855980, + "target":34963 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":20857972, + "target":34962 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":20864644, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":20871316, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20873308, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20873356, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20873404, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":20873436, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":20874300, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":20875164, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":20875740, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":20876316, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20876532, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20876820, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":20877108, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20877300, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20877348, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20877396, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20877428, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20877476, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20877524, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":20877556, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":20884708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":20891860, + "target":34963 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":20893852, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":20894452, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":20895052, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":20895452, + "target":34963 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":20895620, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":20896724, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":20897828, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":20898564, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":20899164, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":20899764, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":20900164, + "target":34963 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":20900332, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":20903068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":20905804, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":20907628, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":20914636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":20921644, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":20923636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":20924980, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":20926324, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":20926972, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":20933980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":20940988, + "target":34963 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":20942980, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":20944996, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":20947012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":20948356, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":20950012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":20951668, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20952772, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20952820, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20952868, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20952900, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20952948, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20952996, + "target":34962 + }, + { + "buffer":0, + "byteLength":5868, + "byteOffset":20953028, + "target":34962 + }, + { + "buffer":0, + "byteLength":5868, + "byteOffset":20958896, + "target":34962 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":20964764, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":20968676, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20970668, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":20970716, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":20970764, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":20970796, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":20977780, + "target":34962 + }, + { + "buffer":0, + "byteLength":35004, + "byteOffset":20984764, + "target":34962 + }, + { + "buffer":0, + "byteLength":35004, + "byteOffset":21019768, + "target":34962 + }, + { + "buffer":0, + "byteLength":23336, + "byteOffset":21054772, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":21078108, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":21086292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":21094476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":21095820, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":21097164, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":21098060, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":21098540, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":21098684, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":21098828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":21098924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":21100868, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":21102812, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":21104108, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":21108308, + "target":34962 + }, + { + "buffer":0, + "byteLength":2800, + "byteOffset":21112508, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21115308, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21115356, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":21115404, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":21115436, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":21125816, + "target":34962 + }, + { + "buffer":0, + "byteLength":6920, + "byteOffset":21136196, + "target":34962 + }, + { + "buffer":0, + "byteLength":2172, + "byteOffset":21143116, + "target":34962 + }, + { + "buffer":0, + "byteLength":2172, + "byteOffset":21145288, + "target":34962 + }, + { + "buffer":0, + "byteLength":1448, + "byteOffset":21147460, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":21148908, + "target":34963 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":21149628, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":21150636, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":21151644, + "target":34962 + }, + { + "buffer":0, + "byteLength":252, + "byteOffset":21152316, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21152568, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21152856, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":21153144, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":21153336, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":21156084, + "target":34962 + }, + { + "buffer":0, + "byteLength":1832, + "byteOffset":21158832, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":21160664, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":21161624, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":21162344, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":21163064, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21163544, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21163592, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":21163640, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":21163672, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":21170680, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":21177688, + "target":34963 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":21179680, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":21180352, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":21181024, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":21181472, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":21182528, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":21183584, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21184288, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21184576, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":21184864, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":21185056, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":21189136, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":21193216, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21194536, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21194824, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":21195112, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":21195304, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":21207544, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":21219784, + "target":34962 + }, + { + "buffer":0, + "byteLength":2844, + "byteOffset":21227944, + "target":34962 + }, + { + "buffer":0, + "byteLength":2844, + "byteOffset":21230788, + "target":34962 + }, + { + "buffer":0, + "byteLength":1896, + "byteOffset":21233632, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":21235528, + "target":34963 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":21236488, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":21237136, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":21237784, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":21238216, + "target":34963 + }, + { + "buffer":0, + "byteLength":6900, + "byteOffset":21238384, + "target":34962 + }, + { + "buffer":0, + "byteLength":6900, + "byteOffset":21245284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":21252184, + "target":34963 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":21254176, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":21258280, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":21262384, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":21265120, + "target":34963 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":21266560, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":21267184, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":21267808, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":21268224, + "target":34963 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":21268392, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":21271080, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":21273768, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":21280704, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21287640, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21287688, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":21287736, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":21287768, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":21289712, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":21291656, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21292952, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21293240, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":21293528, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21293720, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21294008, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":21294296, + "target":34962 + }, + { + "buffer":0, + "byteLength":6732, + "byteOffset":21294488, + "target":34962 + }, + { + "buffer":0, + "byteLength":6732, + "byteOffset":21301220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":21307952, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":21309944, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":21310856, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":21311768, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":21312376, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":21312976, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":21313576, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21313976, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21314264, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21314552, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21314840, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":21315128, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":21322136, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":21329144, + "target":34963 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":21331136, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":21338276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":21345416, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":21347408, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":21347984, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":21348560, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":21355520, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":21362480, + "target":34963 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":21364472, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":21368648, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":21372824, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21374144, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21374192, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":21374240, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":21374272, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":21374848, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":21375424, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21375808, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21376096, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":21376384, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":21376576, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":21383728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":21390880, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":21392872, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":21399904, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":21406936, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":21408928, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":21410080, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":21411232, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":21418216, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":21425200, + "target":34963 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":21427192, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":21434320, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":21441448, + "target":34963 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":21443440, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":21445864, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":21448288, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":21449904, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":21450624, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":21457584, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":21464544, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":21471552, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":21478560, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21480552, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21480600, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":21480648, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":21480680, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":21483392, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21486104, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21486392, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":21486680, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":21490844, + "target":34962 + }, + { + "buffer":0, + "byteLength":2776, + "byteOffset":21495008, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":21497784, + "target":34963 + }, + { + "buffer":0, + "byteLength":2340, + "byteOffset":21499224, + "target":34962 + }, + { + "buffer":0, + "byteLength":2340, + "byteOffset":21501564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1560, + "byteOffset":21503904, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":21505464, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":21506088, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":21508812, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":21511536, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21513352, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21513640, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":21513928, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21514120, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21514168, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":21514216, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":21514248, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":21515160, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":21516072, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":21516680, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":21523568, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":21530456, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":21530600, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":21530744, + "target":34962 + }, + { + "buffer":0, + "byteLength":29436, + "byteOffset":21530840, + "target":34962 + }, + { + "buffer":0, + "byteLength":29436, + "byteOffset":21560276, + "target":34962 + }, + { + "buffer":0, + "byteLength":19624, + "byteOffset":21589712, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":21609336, + "target":34963 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":21618312, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":21626088, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":21633864, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":21639048, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":21646080, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":21653112, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":21660072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":21667032, + "target":34963 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":21669024, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":21669504, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":21669984, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21670304, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21670352, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":21670400, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":21670432, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":21673180, + "target":34962 + }, + { + "buffer":0, + "byteLength":1832, + "byteOffset":21675928, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":21677760, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21678720, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21679008, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":21679296, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21679488, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21679536, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":21679584, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":21679616, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":21686552, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21693488, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21693776, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":21694064, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":21694676, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":21695288, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":21695696, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":21698144, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":21700592, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":21701936, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":21703280, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":21704176, + "target":34963 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":21704512, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":21706888, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":21709264, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21710848, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21710896, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":21710944, + "target":34962 + }, + { + "buffer":0, + "byteLength":59736, + "byteOffset":21710976, + "target":34962 + }, + { + "buffer":0, + "byteLength":59736, + "byteOffset":21770712, + "target":34962 + }, + { + "buffer":0, + "byteLength":39824, + "byteOffset":21830448, + "target":34962 + }, + { + "buffer":0, + "byteLength":23952, + "byteOffset":21870272, + "target":34963 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":21894224, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":21896912, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":21899600, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21900584, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21900632, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":21900680, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":21900712, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":21907576, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":21914440, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21916432, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":21916480, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":21916528, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":21916560, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":21923520, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":21930480, + "target":34963 + }, + { + "buffer":0, + "byteLength":78264, + "byteOffset":21932472, + "target":34962 + }, + { + "buffer":0, + "byteLength":78264, + "byteOffset":22010736, + "target":34962 + }, + { + "buffer":0, + "byteLength":52176, + "byteOffset":22089000, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":22141176, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":22143408, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":22145640, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":22147128, + "target":34963 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":22147848, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":22150368, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":22152888, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":22154568, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":22158648, + "target":34962 + }, + { + "buffer":0, + "byteLength":2720, + "byteOffset":22162728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":22165448, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":22166888, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":22173776, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":22180664, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":22182656, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":22189688, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":22196720, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22198712, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22198760, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":22198808, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":22198840, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":22199128, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":22199416, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":22199608, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":22199896, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":22200184, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":22200376, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":22207468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":22214560, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":22221508, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":22228456, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":22235392, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":22242328, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":22249312, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":22256296, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":22263280, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":22270264, + "target":34963 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":22272256, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":22279312, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":22286368, + "target":34963 + }, + { + "buffer":0, + "byteLength":21960, + "byteOffset":22288360, + "target":34962 + }, + { + "buffer":0, + "byteLength":21960, + "byteOffset":22310320, + "target":34962 + }, + { + "buffer":0, + "byteLength":14640, + "byteOffset":22332280, + "target":34962 + }, + { + "buffer":0, + "byteLength":10152, + "byteOffset":22346920, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":22357072, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":22357216, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":22357360, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22357456, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22357504, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":22357552, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22357584, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22357632, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":22357680, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22357712, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22357760, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":22357808, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":22357840, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":22364728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":22371616, + "target":34963 + }, + { + "buffer":0, + "byteLength":2472, + "byteOffset":22373608, + "target":34962 + }, + { + "buffer":0, + "byteLength":2472, + "byteOffset":22376080, + "target":34962 + }, + { + "buffer":0, + "byteLength":1648, + "byteOffset":22378552, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":22380200, + "target":34963 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":22381160, + "target":34962 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":22381796, + "target":34962 + }, + { + "buffer":0, + "byteLength":424, + "byteOffset":22382432, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":22382856, + "target":34963 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":22383024, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":22383696, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":22384368, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22384816, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22384864, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":22384912, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":22384944, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":22404864, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":22424784, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":22438064, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":22438616, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":22439168, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":22439536, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":22441792, + "target":34962 + }, + { + "buffer":0, + "byteLength":1504, + "byteOffset":22444048, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":22445552, + "target":34963 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":22446272, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":22449128, + "target":34962 + }, + { + "buffer":0, + "byteLength":1904, + "byteOffset":22451984, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":22453888, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":22457920, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":22461952, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":22463272, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":22470184, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":22477096, + "target":34963 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":22479088, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":22485796, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":22492504, + "target":34962 + }, + { + "buffer":0, + "byteLength":1728, + "byteOffset":22496976, + "target":34963 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":22498704, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":22500720, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":22502736, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22504080, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22504128, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":22504176, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":22504208, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":22505648, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":22507088, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":22508048, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":22508528, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":22515536, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":22522544, + "target":34963 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":22524536, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":22534916, + "target":34962 + }, + { + "buffer":0, + "byteLength":6920, + "byteOffset":22545296, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":22552216, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":22561216, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":22570216, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":22577248, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":22584280, + "target":34963 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":22586272, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":22588720, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":22591168, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":22593892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":22596616, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":22598432, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":22602560, + "target":34962 + }, + { + "buffer":0, + "byteLength":2752, + "byteOffset":22606688, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":22609440, + "target":34963 + }, + { + "buffer":0, + "byteLength":9732, + "byteOffset":22610880, + "target":34962 + }, + { + "buffer":0, + "byteLength":9732, + "byteOffset":22620612, + "target":34962 + }, + { + "buffer":0, + "byteLength":6488, + "byteOffset":22630344, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":22636832, + "target":34963 + }, + { + "buffer":0, + "byteLength":99600, + "byteOffset":22639376, + "target":34962 + }, + { + "buffer":0, + "byteLength":99600, + "byteOffset":22738976, + "target":34962 + }, + { + "buffer":0, + "byteLength":66400, + "byteOffset":22838576, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":22904976, + "target":34963 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":22938096, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":22940784, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22943472, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22943520, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":22943568, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":22943600, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":22951376, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":22959152, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22964336, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22964384, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":22964432, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":22964464, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":22966168, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":22967872, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22969008, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":22969056, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":22969104, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":22969136, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":22969424, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":22969712, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":22969904, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":22977056, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":22984208, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":22985312, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":22986416, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":22987152, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":22988208, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":22989264, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":22989968, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":22996952, + "target":34962 + }, + { + "buffer":0, + "byteLength":1356, + "byteOffset":23003936, + "target":34962 + }, + { + "buffer":0, + "byteLength":1356, + "byteOffset":23005292, + "target":34962 + }, + { + "buffer":0, + "byteLength":904, + "byteOffset":23006648, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":23007552, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":23010000, + "target":34962 + }, + { + "buffer":0, + "byteLength":9720, + "byteOffset":23012448, + "target":34962 + }, + { + "buffer":0, + "byteLength":9720, + "byteOffset":23022168, + "target":34962 + }, + { + "buffer":0, + "byteLength":6480, + "byteOffset":23031888, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":23038368, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23040912, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23041200, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":23041488, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":23041680, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":23047536, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":23053392, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23057296, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23057344, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":23057392, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":23057424, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":23064840, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":23072256, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":23077200, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":23081232, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":23085264, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":23087016, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":23088768, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23089936, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23089984, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":23090032, + "target":34962 + }, + { + "buffer":0, + "byteLength":10968, + "byteOffset":23090064, + "target":34962 + }, + { + "buffer":0, + "byteLength":10968, + "byteOffset":23101032, + "target":34962 + }, + { + "buffer":0, + "byteLength":7312, + "byteOffset":23112000, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":23119312, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23122192, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23122480, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":23122768, + "target":34962 + }, + { + "buffer":0, + "byteLength":16704, + "byteOffset":23122960, + "target":34962 + }, + { + "buffer":0, + "byteLength":16704, + "byteOffset":23139664, + "target":34962 + }, + { + "buffer":0, + "byteLength":7824, + "byteOffset":23156368, + "target":34963 + }, + { + "buffer":0, + "byteLength":1692, + "byteOffset":23164192, + "target":34962 + }, + { + "buffer":0, + "byteLength":1692, + "byteOffset":23165884, + "target":34962 + }, + { + "buffer":0, + "byteLength":1128, + "byteOffset":23167576, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":23168704, + "target":34963 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":23169184, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":23176060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":23182936, + "target":34963 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":23184928, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":23185600, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":23186272, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23186720, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23187008, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":23187296, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":23194460, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":23201624, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":23202200, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":23202776, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":23219816, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":23236856, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":23248216, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":23249080, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":23249944, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":23257036, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":23264128, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":23267512, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":23270896, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23273152, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23273440, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":23273728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":23273920, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":23275600, + "target":34962 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":23277280, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":23278400, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23279048, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23279096, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":23279144, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23279176, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23279224, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":23279272, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":23279304, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":23280456, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":23281608, + "target":34963 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":23281872, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":23284608, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":23287344, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23289168, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23289216, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":23289264, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":23289296, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":23296328, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":23303360, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23305352, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23305400, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":23305448, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":23305480, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":23307232, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":23308984, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23310152, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23310440, + "target":34962 + }, + { + "buffer":0, + "byteLength":3936, + "byteOffset":23310728, + "target":34962 + }, + { + "buffer":0, + "byteLength":3936, + "byteOffset":23314664, + "target":34962 + }, + { + "buffer":0, + "byteLength":2624, + "byteOffset":23318600, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":23321224, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":23322664, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":23329648, + "target":34962 + }, + { + "buffer":0, + "byteLength":4656, + "byteOffset":23336632, + "target":34962 + }, + { + "buffer":0, + "byteLength":1164, + "byteOffset":23341288, + "target":34963 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":23342452, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":23344900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":23347348, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23348980, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23349028, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":23349076, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":23349108, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":23349828, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":23350548, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":23351028, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":23351172, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":23351316, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23351412, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23351700, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":23351988, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":23352180, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":23359164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":23366148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":23367780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":23369412, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23370500, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23370548, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":23370596, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":23370628, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":23377588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":23384548, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23386540, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23386828, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":23387116, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":23387692, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":23388268, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23388652, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23388940, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":23389228, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":23389420, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":23391796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":23394172, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":23395756, + "target":34963 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":23396308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":23397580, + "target":34962 + }, + { + "buffer":0, + "byteLength":848, + "byteOffset":23398852, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":23399700, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":23403900, + "target":34962 + }, + { + "buffer":0, + "byteLength":2800, + "byteOffset":23408100, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":23410900, + "target":34963 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":23412340, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":23419216, + "target":34962 + }, + { + "buffer":0, + "byteLength":76080, + "byteOffset":23426092, + "target":34962 + }, + { + "buffer":0, + "byteLength":76080, + "byteOffset":23502172, + "target":34962 + }, + { + "buffer":0, + "byteLength":50720, + "byteOffset":23578252, + "target":34962 + }, + { + "buffer":0, + "byteLength":24672, + "byteOffset":23628972, + "target":34963 + }, + { + "buffer":0, + "byteLength":75768, + "byteOffset":23653644, + "target":34962 + }, + { + "buffer":0, + "byteLength":75768, + "byteOffset":23729412, + "target":34962 + }, + { + "buffer":0, + "byteLength":50512, + "byteOffset":23805180, + "target":34962 + }, + { + "buffer":0, + "byteLength":24672, + "byteOffset":23855692, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":23880364, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":23887324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":23894284, + "target":34963 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":23896276, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":23900404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":23904532, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23905852, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23906140, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":23906428, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":23909236, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23912044, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23912092, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":23912140, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23912172, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":23912220, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":23912268, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":23912300, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":23915180, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":23918060, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":23919980, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":23927756, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":23935532, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":23940716, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":23943140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":23945564, + "target":34962 + }, + { + "buffer":0, + "byteLength":696, + "byteOffset":23947180, + "target":34963 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":23947876, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":23950396, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":23952916, + "target":34962 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":23954596, + "target":34962 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":23961268, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":23967940, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":23970664, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":23973388, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":23975204, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":23982092, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":23988980, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":23990972, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":23997956, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":24004940, + "target":34963 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":24006932, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":24013772, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24020612, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24020900, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24021188, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24021236, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":24021284, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":24021316, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":24024100, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":24026884, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":24027868, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":24034756, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24041644, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24041692, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":24041740, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24041772, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24042060, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":24042348, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24042540, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24042588, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":24042636, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":24042668, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":24049436, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":24056204, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":24063140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":24070076, + "target":34963 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":24072068, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":24072716, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":24073364, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":24073796, + "target":34963 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":24073964, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":24074636, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":24075308, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":24075756, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":24075924, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":24082860, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":24089796, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":24094404, + "target":34962 + }, + { + "buffer":0, + "byteLength":3072, + "byteOffset":24099012, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24102084, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24102372, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":24102660, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":24102852, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":24122772, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":24142692, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":24155972, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":24158828, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":24161684, + "target":34963 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":24162668, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":24164168, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":24165668, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":24166668, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":24167268, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":24167868, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":24168268, + "target":34963 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":24168436, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":24168628, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":24168820, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24168948, + "target":34963 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":24168996, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":24175716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":24182436, + "target":34963 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":24184428, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":24191136, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":24197844, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":24202316, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":24219356, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":24236396, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":24247756, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":24250204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":24252652, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":24254284, + "target":34963 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":24255004, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":24256468, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":24257932, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24258908, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24258956, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":24259004, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24259036, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24259084, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":24259132, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":24259164, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":24279084, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":24299004, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":24312284, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":24318860, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":24325436, + "target":34962 + }, + { + "buffer":0, + "byteLength":5400, + "byteOffset":24329820, + "target":34962 + }, + { + "buffer":0, + "byteLength":5400, + "byteOffset":24335220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":24340620, + "target":34963 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":24342276, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":24349404, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":24356532, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":24358980, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":24361428, + "target":34963 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":24363564, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":24370440, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":24377316, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":24383892, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":24390468, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24394852, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24394900, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":24394948, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":24394980, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":24399060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":24403140, + "target":34963 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":24404460, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":24408300, + "target":34962 + }, + { + "buffer":0, + "byteLength":2560, + "byteOffset":24412140, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24414700, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24414988, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":24415276, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24415468, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24415516, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":24415564, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":24415596, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":24416316, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":24417036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24417516, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24417804, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":24418092, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24418284, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24418572, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":24418860, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":24419052, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":24426192, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":24433332, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24435324, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24435612, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":24435900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":24436092, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":24437436, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":24438780, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":24439676, + "target":34963 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":24440156, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":24448340, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":24456524, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24461980, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24462028, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":24462076, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":24462108, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":24466212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":24470316, + "target":34963 + }, + { + "buffer":0, + "byteLength":1524, + "byteOffset":24471636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1524, + "byteOffset":24473160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1016, + "byteOffset":24474684, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24475700, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24475748, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":24475796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":24475828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":24477796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1312, + "byteOffset":24479764, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":24481076, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":24485108, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":24489140, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":24495476, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":24501812, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24506036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24506324, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":24506612, + "target":34962 + }, + { + "buffer":0, + "byteLength":2028, + "byteOffset":24506804, + "target":34962 + }, + { + "buffer":0, + "byteLength":2028, + "byteOffset":24508832, + "target":34962 + }, + { + "buffer":0, + "byteLength":1352, + "byteOffset":24510860, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":24512212, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24512884, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24512932, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":24512980, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":24513012, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":24532932, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":24552852, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24566132, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24566420, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":24566708, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24566900, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24566948, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":24566996, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":24567028, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":24573964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":24580900, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":24582892, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":24589900, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24596908, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24597196, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":24597484, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":24604612, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":24611740, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":24613732, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":24630772, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":24647812, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":24659172, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":24662556, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":24665940, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24668196, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24668484, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":24668772, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":24668964, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":24671688, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":24674412, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":24676228, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":24679612, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":24682996, + "target":34962 + }, + { + "buffer":0, + "byteLength":78264, + "byteOffset":24685252, + "target":34962 + }, + { + "buffer":0, + "byteLength":78264, + "byteOffset":24763516, + "target":34962 + }, + { + "buffer":0, + "byteLength":52176, + "byteOffset":24841780, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24893956, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24894004, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":24894052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":24894084, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":24895428, + "target":34962 + }, + { + "buffer":0, + "byteLength":4068, + "byteOffset":24896772, + "target":34962 + }, + { + "buffer":0, + "byteLength":4068, + "byteOffset":24900840, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":24904908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":24907620, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":24909060, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":24915948, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":24922836, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24924828, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24924876, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":24924924, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":24924956, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":24931844, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24938732, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24938780, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":24938828, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":24938860, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":24946012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":24953164, + "target":34963 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":24955156, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":24957892, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":24960628, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":24961492, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24962356, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":24962644, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":24962932, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":24967036, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":24971140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":24973876, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":24975316, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":24976036, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":24976756, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24977236, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":24977284, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":24977332, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":24977364, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":24977508, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":24977652, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":24977748, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":24986748, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":24995748, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":24997740, + "target":34962 + }, + { + "buffer":0, + "byteLength":1328, + "byteOffset":24999732, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":25001060, + "target":34963 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":25001780, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":25008860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":25015940, + "target":34963 + }, + { + "buffer":0, + "byteLength":2796, + "byteOffset":25017932, + "target":34962 + }, + { + "buffer":0, + "byteLength":2796, + "byteOffset":25020728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1864, + "byteOffset":25023524, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":25025388, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25026348, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25026396, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":25026444, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":25026476, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":25030508, + "target":34962 + }, + { + "buffer":0, + "byteLength":2196, + "byteOffset":25034540, + "target":34962 + }, + { + "buffer":0, + "byteLength":2196, + "byteOffset":25036736, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":25038932, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":25040396, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":25040684, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":25040972, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":25041548, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":25042124, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":25042508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":25043924, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":25045340, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":25046284, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25046764, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25046812, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":25046860, + "target":34962 + }, + { + "buffer":0, + "byteLength":396, + "byteOffset":25046892, + "target":34962 + }, + { + "buffer":0, + "byteLength":396, + "byteOffset":25047288, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":25047684, + "target":34962 + }, + { + "buffer":0, + "byteLength":120, + "byteOffset":25047948, + "target":34963 + }, + { + "buffer":0, + "byteLength":396, + "byteOffset":25048068, + "target":34962 + }, + { + "buffer":0, + "byteLength":396, + "byteOffset":25048464, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":25048860, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25049124, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25049172, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":25049220, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":25049252, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":25051940, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":25054628, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25055612, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25055660, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":25055708, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":25055740, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":25056460, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":25057180, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":25057660, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":25060804, + "target":34962 + }, + { + "buffer":0, + "byteLength":2096, + "byteOffset":25063948, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":25066044, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":25066332, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":25066620, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25066812, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25066860, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":25066908, + "target":34962 + }, + { + "buffer":0, + "byteLength":12216, + "byteOffset":25066940, + "target":34962 + }, + { + "buffer":0, + "byteLength":12216, + "byteOffset":25079156, + "target":34962 + }, + { + "buffer":0, + "byteLength":8144, + "byteOffset":25091372, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":25099516, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":25104316, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":25104892, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":25105468, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":25105852, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":25106020, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":25113028, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":25120036, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":25126972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":25133908, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25135900, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25135948, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":25135996, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25136028, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25136076, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":25136124, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25136156, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25136204, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":25136252, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25136284, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25136332, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":25136380, + "target":34962 + }, + { + "buffer":0, + "byteLength":6732, + "byteOffset":25136412, + "target":34962 + }, + { + "buffer":0, + "byteLength":6732, + "byteOffset":25143144, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":25149876, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":25150740, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25151604, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25151652, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":25151700, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":25151732, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":25155116, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":25158500, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25160756, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25160804, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":25160852, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":25160884, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":25167940, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":25174996, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":25176748, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":25178500, + "target":34962 + }, + { + "buffer":0, + "byteLength":151704, + "byteOffset":25179668, + "target":34962 + }, + { + "buffer":0, + "byteLength":151704, + "byteOffset":25331372, + "target":34962 + }, + { + "buffer":0, + "byteLength":101136, + "byteOffset":25483076, + "target":34962 + }, + { + "buffer":0, + "byteLength":39216, + "byteOffset":25584212, + "target":34963 + }, + { + "buffer":0, + "byteLength":54432, + "byteOffset":25623428, + "target":34962 + }, + { + "buffer":0, + "byteLength":54432, + "byteOffset":25677860, + "target":34962 + }, + { + "buffer":0, + "byteLength":36288, + "byteOffset":25732292, + "target":34962 + }, + { + "buffer":0, + "byteLength":15672, + "byteOffset":25768580, + "target":34963 + }, + { + "buffer":0, + "byteLength":11760, + "byteOffset":25784252, + "target":34962 + }, + { + "buffer":0, + "byteLength":11760, + "byteOffset":25796012, + "target":34962 + }, + { + "buffer":0, + "byteLength":7840, + "byteOffset":25807772, + "target":34962 + }, + { + "buffer":0, + "byteLength":3672, + "byteOffset":25815612, + "target":34963 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":25819284, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":25821588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":25823892, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":25825428, + "target":34963 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":25826004, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":25828308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":25830612, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":25832148, + "target":34963 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":25832724, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":25832940, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":25833156, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25833300, + "target":34963 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":25833348, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":25833564, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":25833780, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":25833924, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":25833972, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":25840980, + "target":34962 + }, + { + "buffer":0, + "byteLength":96372, + "byteOffset":25847988, + "target":34962 + }, + { + "buffer":0, + "byteLength":96372, + "byteOffset":25944360, + "target":34962 + }, + { + "buffer":0, + "byteLength":64248, + "byteOffset":26040732, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":26104980, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":26138100, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":26145132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":26152164, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":26154156, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":26154732, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":26155308, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":26155692, + "target":34963 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":26155860, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":26158740, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":26161620, + "target":34962 + }, + { + "buffer":0, + "byteLength":96468, + "byteOffset":26163540, + "target":34962 + }, + { + "buffer":0, + "byteLength":96468, + "byteOffset":26260008, + "target":34962 + }, + { + "buffer":0, + "byteLength":64312, + "byteOffset":26356476, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":26420788, + "target":34963 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":26453908, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":26458012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":26462116, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":26463436, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":26463484, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":26463532, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":26463564, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":26483484, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":26503404, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":26516684, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":26517284, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":26517884, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":26518284, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":26518452, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":26518740, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":26519028, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":26525892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":26532756, + "target":34963 + }, + { + "buffer":0, + "byteLength":2412, + "byteOffset":26534748, + "target":34962 + }, + { + "buffer":0, + "byteLength":2412, + "byteOffset":26537160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":26539572, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":26541180, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":26541804, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":26558844, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":26575884, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":26587244, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":26597828, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":26608412, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":26615468, + "target":34963 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":26618084, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":26625128, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":26632172, + "target":34963 + }, + { + "buffer":0, + "byteLength":3180, + "byteOffset":26634164, + "target":34962 + }, + { + "buffer":0, + "byteLength":3180, + "byteOffset":26637344, + "target":34962 + }, + { + "buffer":0, + "byteLength":2120, + "byteOffset":26640524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1128, + "byteOffset":26642644, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":26643772, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":26644060, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":26644348, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":26644540, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":26644588, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":26644636, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":26644668, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":26651244, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":26657820, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":26662204, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":26669044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":26675884, + "target":34963 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":26677876, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":26681752, + "target":34962 + }, + { + "buffer":0, + "byteLength":2584, + "byteOffset":26685628, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":26688212, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":26695220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":26702228, + "target":34963 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":26704220, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":26707604, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":26710988, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":26713244, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":26720084, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":26726924, + "target":34963 + }, + { + "buffer":0, + "byteLength":2916, + "byteOffset":26728916, + "target":34962 + }, + { + "buffer":0, + "byteLength":2916, + "byteOffset":26731832, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":26734748, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":26736692, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":26739140, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":26741588, + "target":34963 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":26743724, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":26746460, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":26749196, + "target":34963 + }, + { + "buffer":0, + "byteLength":10992, + "byteOffset":26750180, + "target":34962 + }, + { + "buffer":0, + "byteLength":10992, + "byteOffset":26761172, + "target":34962 + }, + { + "buffer":0, + "byteLength":7328, + "byteOffset":26772164, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":26779492, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":26782372, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":26789332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":26796292, + "target":34963 + }, + { + "buffer":0, + "byteLength":2196, + "byteOffset":26798284, + "target":34962 + }, + { + "buffer":0, + "byteLength":2196, + "byteOffset":26800480, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":26802676, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":26804140, + "target":34963 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":26804860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":26806492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":26808124, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":26809212, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":26826252, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":26843292, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":26854652, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":26855372, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":26856092, + "target":34962 + }, + { + "buffer":0, + "byteLength":2124, + "byteOffset":26856572, + "target":34962 + }, + { + "buffer":0, + "byteLength":2124, + "byteOffset":26858696, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":26860820, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":26862236, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":26862956, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":26863244, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":26863532, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":26863724, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":26870684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":26877644, + "target":34963 + }, + { + "buffer":0, + "byteLength":1896, + "byteOffset":26879636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1896, + "byteOffset":26881532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1264, + "byteOffset":26883428, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":26884692, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":26885172, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":26885220, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":26885268, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":26885300, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":26902340, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":26919380, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":26930740, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":26933188, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":26935636, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":26935924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1644, + "byteOffset":26936212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1644, + "byteOffset":26937856, + "target":34962 + }, + { + "buffer":0, + "byteLength":1096, + "byteOffset":26939500, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":26940596, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":26948492, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":26956388, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":26961652, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":26964364, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":26967076, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":26968060, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":26968204, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":26968348, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":26968444, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":26969020, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":26969596, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":26977780, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":26985964, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":26991420, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":26994036, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":27001020, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":27008004, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":27010752, + "target":34962 + }, + { + "buffer":0, + "byteLength":1832, + "byteOffset":27013500, + "target":34962 + }, + { + "buffer":0, + "byteLength":96372, + "byteOffset":27015332, + "target":34962 + }, + { + "buffer":0, + "byteLength":96372, + "byteOffset":27111704, + "target":34962 + }, + { + "buffer":0, + "byteLength":64248, + "byteOffset":27208076, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":27272324, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":27305444, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":27305492, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":27305540, + "target":34962 + }, + { + "buffer":0, + "byteLength":181344, + "byteOffset":27305572, + "target":34962 + }, + { + "buffer":0, + "byteLength":181344, + "byteOffset":27486916, + "target":34962 + }, + { + "buffer":0, + "byteLength":120896, + "byteOffset":27668260, + "target":34962 + }, + { + "buffer":0, + "byteLength":74592, + "byteOffset":27789156, + "target":34963 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":27863748, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":27883668, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":27903588, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":27916868, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":27917156, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":27917444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":27917636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":27918740, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":27919844, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":27920580, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":27927600, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":27934620, + "target":34963 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":27936612, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":27939468, + "target":34962 + }, + { + "buffer":0, + "byteLength":1904, + "byteOffset":27942324, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":27944228, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":27945188, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":27945476, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":27945764, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":27952880, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":27959996, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":27968660, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":27977324, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":27984032, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":27990740, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":27995212, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":28002076, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":28008940, + "target":34963 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":28010932, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":28017856, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":28024780, + "target":34963 + }, + { + "buffer":0, + "byteLength":97188, + "byteOffset":28026772, + "target":34962 + }, + { + "buffer":0, + "byteLength":97188, + "byteOffset":28123960, + "target":34962 + }, + { + "buffer":0, + "byteLength":64792, + "byteOffset":28221148, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":28285940, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":28319060, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":28319924, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":28320788, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":28321508, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":28322228, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":28322708, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":28329644, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":28336580, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":28336628, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":28336676, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":28336708, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":28340824, + "target":34962 + }, + { + "buffer":0, + "byteLength":2744, + "byteOffset":28344940, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":28347684, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":28349124, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":28349172, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":28349220, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":28349252, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":28356236, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":28363220, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":28370240, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":28377260, + "target":34963 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":28379252, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":28386308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":28393364, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":28395356, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":28402268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":28409180, + "target":34963 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":28411172, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":28417508, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":28423844, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":28428068, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":28428932, + "target":34962 + }, + { + "buffer":0, + "byteLength":3948, + "byteOffset":28429796, + "target":34962 + }, + { + "buffer":0, + "byteLength":3948, + "byteOffset":28433744, + "target":34962 + }, + { + "buffer":0, + "byteLength":2632, + "byteOffset":28437692, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":28440324, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":28441764, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":28442052, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":28442340, + "target":34962 + }, + { + "buffer":0, + "byteLength":3816, + "byteOffset":28442532, + "target":34962 + }, + { + "buffer":0, + "byteLength":3816, + "byteOffset":28446348, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":28450164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":28452708, + "target":34963 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":28454148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":28455420, + "target":34962 + }, + { + "buffer":0, + "byteLength":848, + "byteOffset":28456692, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":28457540, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":28465316, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":28473092, + "target":34962 + }, + { + "buffer":0, + "byteLength":4008, + "byteOffset":28478276, + "target":34962 + }, + { + "buffer":0, + "byteLength":4008, + "byteOffset":28482284, + "target":34962 + }, + { + "buffer":0, + "byteLength":2672, + "byteOffset":28486292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":28488964, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":28490404, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":28493128, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":28495852, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":28497668, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":28504652, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":28511636, + "target":34963 + }, + { + "buffer":0, + "byteLength":2796, + "byteOffset":28513628, + "target":34962 + }, + { + "buffer":0, + "byteLength":2796, + "byteOffset":28516424, + "target":34962 + }, + { + "buffer":0, + "byteLength":1864, + "byteOffset":28519220, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":28521084, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":28522044, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":28529052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":28536060, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":28538052, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":28538100, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":28538148, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":28538180, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":28538756, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":28539332, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":28539716, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":28539764, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":28539812, + "target":34962 + }, + { + "buffer":0, + "byteLength":9672, + "byteOffset":28539844, + "target":34962 + }, + { + "buffer":0, + "byteLength":9672, + "byteOffset":28549516, + "target":34962 + }, + { + "buffer":0, + "byteLength":6448, + "byteOffset":28559188, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":28565636, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":28568516, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":28568804, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":28569092, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":28569680, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":28570268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1872, + "byteOffset":28570660, + "target":34962 + }, + { + "buffer":0, + "byteLength":1872, + "byteOffset":28572532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1560, + "byteOffset":28574404, + "target":34963 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":28575964, + "target":34962 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":28672516, + "target":34962 + }, + { + "buffer":0, + "byteLength":64368, + "byteOffset":28769068, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":28833436, + "target":34963 + }, + { + "buffer":0, + "byteLength":3420, + "byteOffset":28866556, + "target":34962 + }, + { + "buffer":0, + "byteLength":3420, + "byteOffset":28869976, + "target":34962 + }, + { + "buffer":0, + "byteLength":2280, + "byteOffset":28873396, + "target":34962 + }, + { + "buffer":0, + "byteLength":1290, + "byteOffset":28875676, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":28876968, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":28877016, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":28877064, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":28877096, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":28877384, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":28877672, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":28877864, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":28881944, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":28886024, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":28887344, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":28887392, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":28887440, + "target":34962 + }, + { + "buffer":0, + "byteLength":2940, + "byteOffset":28887472, + "target":34962 + }, + { + "buffer":0, + "byteLength":2940, + "byteOffset":28890412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1960, + "byteOffset":28893352, + "target":34962 + }, + { + "buffer":0, + "byteLength":48744, + "byteOffset":28895312, + "target":34962 + }, + { + "buffer":0, + "byteLength":48744, + "byteOffset":28944056, + "target":34962 + }, + { + "buffer":0, + "byteLength":32496, + "byteOffset":28992800, + "target":34962 + }, + { + "buffer":0, + "byteLength":42888, + "byteOffset":29025296, + "target":34963 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":29068184, + "target":34962 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":29080700, + "target":34962 + }, + { + "buffer":0, + "byteLength":8344, + "byteOffset":29093216, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":29101560, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":29106360, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":29113248, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":29120136, + "target":34963 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":29122128, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":29130024, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":29137920, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":29143184, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":29150132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":29157080, + "target":34963 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":29159072, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":29165996, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":29172920, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":29177528, + "target":34962 + }, + { + "buffer":0, + "byteLength":3072, + "byteOffset":29182136, + "target":34962 + }, + { + "buffer":0, + "byteLength":2940, + "byteOffset":29185208, + "target":34962 + }, + { + "buffer":0, + "byteLength":2940, + "byteOffset":29188148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1960, + "byteOffset":29191088, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":29193048, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":29195304, + "target":34962 + }, + { + "buffer":0, + "byteLength":1504, + "byteOffset":29197560, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":29199064, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":29199784, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":29200648, + "target":34962 + }, + { + "buffer":0, + "byteLength":12468, + "byteOffset":29201512, + "target":34962 + }, + { + "buffer":0, + "byteLength":12468, + "byteOffset":29213980, + "target":34962 + }, + { + "buffer":0, + "byteLength":8312, + "byteOffset":29226448, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":29234760, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":29239560, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":29246520, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":29253480, + "target":34963 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":29255472, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":29262492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":29269512, + "target":34963 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":29271504, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":29278380, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":29285256, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":29285544, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":29285832, + "target":34962 + }, + { + "buffer":0, + "byteLength":4092, + "byteOffset":29286024, + "target":34962 + }, + { + "buffer":0, + "byteLength":4092, + "byteOffset":29290116, + "target":34962 + }, + { + "buffer":0, + "byteLength":2728, + "byteOffset":29294208, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":29296936, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":29298376, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":29298664, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":29298952, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":29299144, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":29300776, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":29302408, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29303496, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29303544, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":29303592, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":29303624, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":29310632, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":29317640, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29319632, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29319680, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":29319728, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":29319760, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":29326636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":29333512, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":29334520, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":29335528, + "target":34962 + }, + { + "buffer":0, + "byteLength":252, + "byteOffset":29336200, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":29336452, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":29343340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":29350228, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":29352220, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":29352508, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":29352796, + "target":34962 + }, + { + "buffer":0, + "byteLength":92868, + "byteOffset":29352988, + "target":34962 + }, + { + "buffer":0, + "byteLength":92868, + "byteOffset":29445856, + "target":34962 + }, + { + "buffer":0, + "byteLength":61912, + "byteOffset":29538724, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":29600636, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29633756, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29633804, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":29633852, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":29633884, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":29653804, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":29673724, + "target":34962 + }, + { + "buffer":0, + "byteLength":11148, + "byteOffset":29687004, + "target":34962 + }, + { + "buffer":0, + "byteLength":11148, + "byteOffset":29698152, + "target":34962 + }, + { + "buffer":0, + "byteLength":7432, + "byteOffset":29709300, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":29716732, + "target":34963 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":29725708, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":29726332, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":29726956, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":29727372, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":29727540, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":29727828, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":29728116, + "target":34963 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":29728188, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":29729508, + "target":34962 + }, + { + "buffer":0, + "byteLength":880, + "byteOffset":29730828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":29731708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":29733172, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":29734636, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29735612, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29735660, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":29735708, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":29735740, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":29742784, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":29749828, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":29751820, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":29752108, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":29752396, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":29752588, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":29759632, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":29766676, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29768668, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29768716, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":29768764, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":29768796, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":29775732, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29782668, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29782716, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":29782764, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":29782796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":29784500, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":29786204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":29787340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":29789044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":29790748, + "target":34962 + }, + { + "buffer":0, + "byteLength":8244, + "byteOffset":29791884, + "target":34962 + }, + { + "buffer":0, + "byteLength":8244, + "byteOffset":29800128, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":29808372, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":29811036, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":29817948, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29824860, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29824908, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":29824956, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":29824988, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":29827436, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":29829884, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":29830172, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":29830460, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":29830652, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":29834684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":29838716, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":29840036, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":29846972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":29853908, + "target":34963 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":29855900, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":29863676, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":29871452, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":29876636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":29878388, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":29880140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":29881308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":29883060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":29884812, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29885980, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29886028, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":29886076, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":29886108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":29887572, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":29889036, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":29890012, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":29890492, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":29891212, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":29891932, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":29892412, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":29892700, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":29892988, + "target":34962 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":29893180, + "target":34962 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":29899852, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":29906524, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":29913244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":29919964, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29921956, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29922004, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":29922052, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":29922084, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":29929068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":29936052, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29938044, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29938092, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":29938140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":29938172, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":29940140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1312, + "byteOffset":29942108, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29943420, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29943468, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":29943516, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":29943548, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":29943836, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":29944124, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":29944316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":29945744, + "target":34962 + }, + { + "buffer":0, + "byteLength":952, + "byteOffset":29947172, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":29948124, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":29948736, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":29949348, + "target":34962 + }, + { + "buffer":0, + "byteLength":2172, + "byteOffset":29949756, + "target":34962 + }, + { + "buffer":0, + "byteLength":2172, + "byteOffset":29951928, + "target":34962 + }, + { + "buffer":0, + "byteLength":1448, + "byteOffset":29954100, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":29955548, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":29962256, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":29968964, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29973436, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29973484, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":29973532, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29973564, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":29973612, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":29973660, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":29973692, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":29975036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":29976380, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":29978132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":29979884, + "target":34962 + }, + { + "buffer":0, + "byteLength":97188, + "byteOffset":29981052, + "target":34962 + }, + { + "buffer":0, + "byteLength":97188, + "byteOffset":30078240, + "target":34962 + }, + { + "buffer":0, + "byteLength":64792, + "byteOffset":30175428, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":30240220, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":30241132, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":30242044, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":30242652, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":30242700, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":30242748, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":30242780, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":30262700, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":30282620, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":30295900, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":30296572, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":30297244, + "target":34962 + }, + { + "buffer":0, + "byteLength":6852, + "byteOffset":30297692, + "target":34962 + }, + { + "buffer":0, + "byteLength":6852, + "byteOffset":30304544, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":30311396, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30313388, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30313676, + "target":34962 + }, + { + "buffer":0, + "byteLength":92688, + "byteOffset":30313964, + "target":34962 + }, + { + "buffer":0, + "byteLength":92688, + "byteOffset":30406652, + "target":34962 + }, + { + "buffer":0, + "byteLength":61792, + "byteOffset":30499340, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":30561132, + "target":34963 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":30594252, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":30601392, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":30608532, + "target":34963 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":30610524, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":30617628, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":30624732, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":30631752, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":30638772, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":30645792, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":30652812, + "target":34963 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":30654804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":30656244, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":30657684, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":30658644, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":30665352, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":30672060, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":30676532, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":30676580, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":30676628, + "target":34962 + }, + { + "buffer":0, + "byteLength":17904, + "byteOffset":30676660, + "target":34962 + }, + { + "buffer":0, + "byteLength":17904, + "byteOffset":30694564, + "target":34962 + }, + { + "buffer":0, + "byteLength":11936, + "byteOffset":30712468, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":30724404, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30729204, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30729492, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":30729780, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":30729972, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":30736956, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":30743940, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":30743988, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":30744036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30744068, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30744356, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":30744644, + "target":34962 + }, + { + "buffer":0, + "byteLength":9684, + "byteOffset":30744836, + "target":34962 + }, + { + "buffer":0, + "byteLength":9684, + "byteOffset":30754520, + "target":34962 + }, + { + "buffer":0, + "byteLength":6456, + "byteOffset":30764204, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":30770660, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30773204, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30773492, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":30773780, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30773972, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30774260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1524, + "byteOffset":30774548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1524, + "byteOffset":30776072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1016, + "byteOffset":30777596, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":30778612, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":30785620, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":30792628, + "target":34963 + }, + { + "buffer":0, + "byteLength":4344, + "byteOffset":30794620, + "target":34962 + }, + { + "buffer":0, + "byteLength":4344, + "byteOffset":30798964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":30803308, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":30804628, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":30804676, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":30804724, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":30804756, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":30811764, + "target":34962 + }, + { + "buffer":0, + "byteLength":1644, + "byteOffset":30818772, + "target":34962 + }, + { + "buffer":0, + "byteLength":1644, + "byteOffset":30820416, + "target":34962 + }, + { + "buffer":0, + "byteLength":1096, + "byteOffset":30822060, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":30823156, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":30825604, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":30828052, + "target":34963 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":30830188, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":30832900, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":30835612, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":30836596, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":30843628, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":30850660, + "target":34963 + }, + { + "buffer":0, + "byteLength":4236, + "byteOffset":30852652, + "target":34962 + }, + { + "buffer":0, + "byteLength":4236, + "byteOffset":30856888, + "target":34962 + }, + { + "buffer":0, + "byteLength":2824, + "byteOffset":30861124, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":30863948, + "target":34963 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":30865388, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":30866444, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":30867500, + "target":34962 + }, + { + "buffer":0, + "byteLength":4236, + "byteOffset":30868204, + "target":34962 + }, + { + "buffer":0, + "byteLength":4236, + "byteOffset":30872440, + "target":34962 + }, + { + "buffer":0, + "byteLength":2824, + "byteOffset":30876676, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":30879500, + "target":34963 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":30880940, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":30888116, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30895292, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30895580, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":30895868, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":30902924, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":30909980, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":30912836, + "target":34962 + }, + { + "buffer":0, + "byteLength":1904, + "byteOffset":30915692, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":30917596, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":30917644, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":30917692, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30917724, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30918012, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":30918300, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":30918492, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":30921180, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":30923868, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":30930576, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":30937284, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30941756, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30942044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":30942332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":30943760, + "target":34962 + }, + { + "buffer":0, + "byteLength":952, + "byteOffset":30945188, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":30946140, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":30946620, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":30953652, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":30960684, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":30962676, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":30962724, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":30962772, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30962804, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":30963092, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":30963380, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":30963572, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":30967652, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":30971732, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":30973052, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":30973100, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":30973148, + "target":34962 + }, + { + "buffer":0, + "byteLength":3168, + "byteOffset":30973180, + "target":34962 + }, + { + "buffer":0, + "byteLength":3168, + "byteOffset":30976348, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":30979516, + "target":34962 + }, + { + "buffer":0, + "byteLength":13836, + "byteOffset":30981628, + "target":34962 + }, + { + "buffer":0, + "byteLength":13836, + "byteOffset":30995464, + "target":34962 + }, + { + "buffer":0, + "byteLength":9224, + "byteOffset":31009300, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":31018524, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":31025340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":31032156, + "target":34963 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":31034148, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":31040724, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":31047300, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":31051684, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":31054372, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":31057060, + "target":34963 + }, + { + "buffer":0, + "byteLength":3168, + "byteOffset":31058044, + "target":34962 + }, + { + "buffer":0, + "byteLength":3168, + "byteOffset":31061212, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":31064380, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31066492, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31066540, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31066588, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":31066620, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":31073724, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":31080828, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31082820, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31082868, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31082916, + "target":34962 + }, + { + "buffer":0, + "byteLength":8640, + "byteOffset":31082948, + "target":34962 + }, + { + "buffer":0, + "byteLength":8640, + "byteOffset":31091588, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31100228, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31100516, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":31100804, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":31100996, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":31104140, + "target":34962 + }, + { + "buffer":0, + "byteLength":2096, + "byteOffset":31107284, + "target":34962 + }, + { + "buffer":0, + "byteLength":3900, + "byteOffset":31109380, + "target":34962 + }, + { + "buffer":0, + "byteLength":3900, + "byteOffset":31113280, + "target":34962 + }, + { + "buffer":0, + "byteLength":2600, + "byteOffset":31117180, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":31119780, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":31121220, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":31128180, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":31135140, + "target":34963 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":31137132, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":31144104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":31151076, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31153068, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31153116, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31153164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":31153196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":31154900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":31156604, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31157740, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31157788, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31157836, + "target":34962 + }, + { + "buffer":0, + "byteLength":12600, + "byteOffset":31157868, + "target":34962 + }, + { + "buffer":0, + "byteLength":12600, + "byteOffset":31170468, + "target":34962 + }, + { + "buffer":0, + "byteLength":8400, + "byteOffset":31183068, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31191468, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31191516, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31191564, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":31191596, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":31198556, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":31205516, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":31207508, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":31207652, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":31207796, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31207892, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31208180, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":31208468, + "target":34962 + }, + { + "buffer":0, + "byteLength":12276, + "byteOffset":31208660, + "target":34962 + }, + { + "buffer":0, + "byteLength":12276, + "byteOffset":31220936, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":31233212, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":31241396, + "target":34963 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":31246196, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":31266116, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":31286036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31299316, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31299604, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":31299892, + "target":34963 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":31299964, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":31300552, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":31301140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":31301532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":31302708, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":31303884, + "target":34963 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":31304388, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":31308252, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":31312116, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":31314692, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":31321640, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":31328588, + "target":34963 + }, + { + "buffer":0, + "byteLength":6420, + "byteOffset":31330580, + "target":34962 + }, + { + "buffer":0, + "byteLength":6420, + "byteOffset":31337000, + "target":34962 + }, + { + "buffer":0, + "byteLength":4280, + "byteOffset":31343420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":31347700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":31349332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":31350964, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":31352052, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":31357908, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":31363764, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":31367668, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":31374760, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31381852, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31381900, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31381948, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31381980, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31382028, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31382076, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31382108, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31382156, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31382204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":31382236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":31383736, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":31385236, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":31386236, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":31403276, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":31420316, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":31431676, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":31438564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":31445452, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31447444, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31447732, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":31448020, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":31448212, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":31450660, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":31453108, + "target":34963 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":31455244, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":31458052, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":31460860, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":31464940, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":31469020, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":31470340, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":31470484, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":31470628, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":31470724, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":31477804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":31484884, + "target":34963 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":31486876, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":31491040, + "target":34962 + }, + { + "buffer":0, + "byteLength":2776, + "byteOffset":31495204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":31497980, + "target":34963 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":31499420, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":31509800, + "target":34962 + }, + { + "buffer":0, + "byteLength":6920, + "byteOffset":31520180, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":31527100, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":31528852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":31530604, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31531772, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31531820, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31531868, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31531900, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31531948, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31531996, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":31532028, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":31538736, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":31545444, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31549916, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31549964, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31550012, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31550044, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31550092, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31550140, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31550172, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31550220, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31550268, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":31550300, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":31553084, + "target":34962 + }, + { + "buffer":0, + "byteLength":1856, + "byteOffset":31555868, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":31557724, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31558684, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31558732, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31558780, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":31558812, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":31565724, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":31572636, + "target":34963 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":31574628, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":31576260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":31577892, + "target":34962 + }, + { + "buffer":0, + "byteLength":504, + "byteOffset":31578980, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":31579484, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":31586444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":31593404, + "target":34963 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":31595396, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":31602416, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":31609436, + "target":34963 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":31611428, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":31618508, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31625588, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31625876, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":31626164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":31626356, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":31628108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":31629860, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":31631028, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":31631940, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":31632852, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31633460, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31633508, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31633556, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":31633588, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":31653508, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":31673428, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":31686708, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":31687356, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":31688004, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":31688436, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":31695372, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":31702308, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":31704300, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":31705212, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":31706124, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31706732, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31707020, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":31707308, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":31714076, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31720844, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31721132, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31721420, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31721708, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":31721996, + "target":34962 + }, + { + "buffer":0, + "byteLength":7452, + "byteOffset":31722188, + "target":34962 + }, + { + "buffer":0, + "byteLength":7452, + "byteOffset":31729640, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":31737092, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31739084, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31739132, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31739180, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":31739212, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":31741444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":31743676, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":31745164, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":31748044, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":31750924, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":31751908, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":31752772, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":31753636, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":31760692, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31767748, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31767796, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31767844, + "target":34962 + }, + { + "buffer":0, + "byteLength":3972, + "byteOffset":31767876, + "target":34962 + }, + { + "buffer":0, + "byteLength":3972, + "byteOffset":31771848, + "target":34962 + }, + { + "buffer":0, + "byteLength":2648, + "byteOffset":31775820, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":31778468, + "target":34963 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":31779908, + "target":34962 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":31789688, + "target":34962 + }, + { + "buffer":0, + "byteLength":6520, + "byteOffset":31799468, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":31805988, + "target":34963 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":31808532, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":31815456, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":31822380, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":31826436, + "target":34962 + }, + { + "buffer":0, + "byteLength":2704, + "byteOffset":31830492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":31833196, + "target":34963 + }, + { + "buffer":0, + "byteLength":16704, + "byteOffset":31834636, + "target":34962 + }, + { + "buffer":0, + "byteLength":16704, + "byteOffset":31851340, + "target":34962 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":31868044, + "target":34962 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":31885900, + "target":34962 + }, + { + "buffer":0, + "byteLength":11904, + "byteOffset":31903756, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31915660, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31915708, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31915756, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31915788, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":31915836, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":31915884, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":31915916, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":31916528, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":31917140, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":31917548, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":31921604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":31925660, + "target":34963 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":31926980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":31928612, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":31930244, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31931332, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31931620, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":31931908, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":31932100, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":31939132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":31946164, + "target":34963 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":31948156, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":31952296, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":31956436, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":31959196, + "target":34963 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":31960636, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":31967632, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":31974628, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":31975540, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":31976452, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":31977060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":31978164, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":31979268, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":31980004, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":31987168, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":31994332, + "target":34963 + }, + { + "buffer":0, + "byteLength":9564, + "byteOffset":31996324, + "target":34962 + }, + { + "buffer":0, + "byteLength":9564, + "byteOffset":32005888, + "target":34962 + }, + { + "buffer":0, + "byteLength":6376, + "byteOffset":32015452, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":32021828, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32024372, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32024420, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32024468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":32024500, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":32031484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":32038468, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":32040220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":32041972, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32043140, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32043188, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32043236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":32043268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":32044900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":32046532, + "target":34962 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":32047620, + "target":34962 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":32054844, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":32062068, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32064060, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32064348, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":32064636, + "target":34963 + }, + { + "buffer":0, + "byteLength":12276, + "byteOffset":32064708, + "target":34962 + }, + { + "buffer":0, + "byteLength":12276, + "byteOffset":32076984, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":32089260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":32097444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":32098908, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":32100372, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":32101348, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32101828, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32102116, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32102404, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32102452, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32102500, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32102532, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32102820, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":32103108, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":32111004, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":32118900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":32124164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":32125616, + "target":34962 + }, + { + "buffer":0, + "byteLength":968, + "byteOffset":32127068, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":32128036, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":32130724, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":32133412, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":32134396, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":32135116, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":32135836, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32136316, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32136364, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32136412, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":32136444, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":32143356, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":32150268, + "target":34963 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":32152260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":32154084, + "target":34962 + }, + { + "buffer":0, + "byteLength":1216, + "byteOffset":32155908, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":32157124, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":32157604, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":32158084, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":32158404, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":32162484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":32166564, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32167884, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32167932, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32167980, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32168012, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32168060, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32168108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":32168140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":32169964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1216, + "byteOffset":32171788, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32173004, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32173052, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32173100, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32173132, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32173180, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32173228, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":32173260, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":32180268, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32187276, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32187324, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32187372, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":32187404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":32188748, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":32190092, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":32197076, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":32204060, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":32210804, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":32217548, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":32224412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":32231276, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":32233268, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":32233412, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":32233556, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":32233652, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":32237756, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":32241860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":32244596, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32246036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32246324, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":32246612, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32246804, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32246852, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32246900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":32246932, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":32248084, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":32249236, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32250004, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32250052, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32250100, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32250132, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32250180, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32250228, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":32250260, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":32257388, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32264516, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32264564, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32264612, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":32264644, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":32271628, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":32278612, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":32278756, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":32278900, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32278996, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32279284, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":32279572, + "target":34962 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":32279764, + "target":34962 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":32292280, + "target":34962 + }, + { + "buffer":0, + "byteLength":8344, + "byteOffset":32304796, + "target":34962 + }, + { + "buffer":0, + "byteLength":9072, + "byteOffset":32313140, + "target":34962 + }, + { + "buffer":0, + "byteLength":9072, + "byteOffset":32322212, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":32331284, + "target":34963 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":32333948, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":32353868, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":32373788, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32387068, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32387356, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":32387644, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":32388556, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":32389468, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":32390076, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":32390700, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":32391324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":32391740, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":32393372, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":32395004, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32396092, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32396380, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":32396668, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":32400532, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":32404396, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":32406972, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":32413548, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":32420124, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32424508, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32424556, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32424604, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":32424636, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":32441676, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":32458716, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32470076, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32470364, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":32470652, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32470844, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32470892, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32470940, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":32470972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":32472472, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":32473972, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":32474972, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":32492012, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":32509052, + "target":34962 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":32520412, + "target":34962 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":32527084, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":32533756, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":32534332, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":32534908, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":32535172, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":32537896, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":32540620, + "target":34962 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":32542436, + "target":34962 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":32546480, + "target":34962 + }, + { + "buffer":0, + "byteLength":2696, + "byteOffset":32550524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":32553220, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":32554660, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":32555236, + "target":34962 + }, + { + "buffer":0, + "byteLength":6600, + "byteOffset":32555812, + "target":34962 + }, + { + "buffer":0, + "byteLength":6600, + "byteOffset":32562412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":32569012, + "target":34963 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":32571004, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":32573716, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":32576428, + "target":34963 + }, + { + "buffer":0, + "byteLength":98448, + "byteOffset":32577412, + "target":34962 + }, + { + "buffer":0, + "byteLength":98448, + "byteOffset":32675860, + "target":34962 + }, + { + "buffer":0, + "byteLength":65632, + "byteOffset":32774308, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":32839940, + "target":34963 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":32873060, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":32880248, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":32887436, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":32889428, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":32896460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":32903492, + "target":34963 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":32905484, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":32906252, + "target":34962 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":32907020, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32907532, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":32907820, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":32914708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":32921596, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32923588, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32923636, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32923684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":32923716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":32925468, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":32927220, + "target":34962 + }, + { + "buffer":0, + "byteLength":15996, + "byteOffset":32928388, + "target":34962 + }, + { + "buffer":0, + "byteLength":15996, + "byteOffset":32944384, + "target":34962 + }, + { + "buffer":0, + "byteLength":10664, + "byteOffset":32960380, + "target":34962 + }, + { + "buffer":0, + "byteLength":9720, + "byteOffset":32971044, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32980764, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32980812, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32980860, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32980892, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32980940, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32980988, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32981020, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32981068, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32981116, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":32981148, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":32983572, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":32985996, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":32987612, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32988332, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":32988380, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":32988428, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":32988460, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":32996644, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":33004828, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":33010284, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":33017220, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33024156, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33024444, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33024732, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33025020, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":33025308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":33025500, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":33027132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":33028764, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":33029852, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":33032612, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":33035372, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":33036356, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":33036932, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":33037508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":33039260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":33041012, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":33042180, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":33043092, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":33044004, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":33044612, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":33044660, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":33044708, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":33044740, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":33045292, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":33045844, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33046212, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33046500, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":33046788, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":33046980, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":33047844, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33048708, + "target":34963 + }, + { + "buffer":0, + "byteLength":3048, + "byteOffset":33048996, + "target":34962 + }, + { + "buffer":0, + "byteLength":3048, + "byteOffset":33052044, + "target":34962 + }, + { + "buffer":0, + "byteLength":2032, + "byteOffset":33055092, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":33057124, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":33064240, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":33071356, + "target":34963 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":33073348, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":33073996, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":33074644, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":33075076, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":33082084, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":33089092, + "target":34963 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":33091084, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":33093316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":33095548, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":33097036, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":33114076, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":33131116, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":33142476, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":33151476, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":33160476, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33163140, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33163428, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":33163716, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":33163908, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":33170832, + "target":34962 + }, + { + "buffer":0, + "byteLength":2556, + "byteOffset":33177756, + "target":34962 + }, + { + "buffer":0, + "byteLength":2556, + "byteOffset":33180312, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":33182868, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":33184572, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":33185196, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":33185244, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":33185292, + "target":34962 + }, + { + "buffer":0, + "byteLength":9624, + "byteOffset":33185324, + "target":34962 + }, + { + "buffer":0, + "byteLength":9624, + "byteOffset":33194948, + "target":34962 + }, + { + "buffer":0, + "byteLength":6416, + "byteOffset":33204572, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":33210988, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33213532, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33213820, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":33214108, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":33214300, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":33214348, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":33214396, + "target":34962 + }, + { + "buffer":0, + "byteLength":97152, + "byteOffset":33214428, + "target":34962 + }, + { + "buffer":0, + "byteLength":97152, + "byteOffset":33311580, + "target":34962 + }, + { + "buffer":0, + "byteLength":64768, + "byteOffset":33408732, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":33473500, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":33506620, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":33506668, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":33506716, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":33506748, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":33509532, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":33512316, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":33513300, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":33513348, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":33513396, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":33513428, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":33514292, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":33515156, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":33522068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":33528980, + "target":34963 + }, + { + "buffer":0, + "byteLength":4068, + "byteOffset":33530972, + "target":34962 + }, + { + "buffer":0, + "byteLength":4068, + "byteOffset":33535040, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":33539108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":33541820, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":33543260, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":33550220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":33557180, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":33559172, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":33566204, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":33573236, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":33575684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":33578132, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":33579764, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":33586700, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":33593636, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":33597716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":33601796, + "target":34963 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":33603116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":33604820, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":33606524, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":33607660, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":33614548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":33621436, + "target":34963 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":33623428, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":33627544, + "target":34962 + }, + { + "buffer":0, + "byteLength":2744, + "byteOffset":33631660, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":33634404, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33635844, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33636132, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":33636420, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":33636612, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":33643476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":33650340, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":33652332, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":33652380, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":33652428, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":33652460, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":33655220, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":33657980, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33658964, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33659252, + "target":34962 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":33659540, + "target":34962 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":33672056, + "target":34962 + }, + { + "buffer":0, + "byteLength":8344, + "byteOffset":33684572, + "target":34962 + }, + { + "buffer":0, + "byteLength":1128, + "byteOffset":33692916, + "target":34962 + }, + { + "buffer":0, + "byteLength":1128, + "byteOffset":33694044, + "target":34962 + }, + { + "buffer":0, + "byteLength":752, + "byteOffset":33695172, + "target":34962 + }, + { + "buffer":0, + "byteLength":300, + "byteOffset":33695924, + "target":34963 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":33696224, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":33700376, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":33704528, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":33706760, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":33708992, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":33710480, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":33712928, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":33715376, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":33717008, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":33717620, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":33717668, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":33717716, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":33717748, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":33724708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":33731668, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33733660, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33733948, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":33734236, + "target":34962 + }, + { + "buffer":0, + "byteLength":95688, + "byteOffset":33734428, + "target":34962 + }, + { + "buffer":0, + "byteLength":95688, + "byteOffset":33830116, + "target":34962 + }, + { + "buffer":0, + "byteLength":63792, + "byteOffset":33925804, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":33989596, + "target":34963 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":34022716, + "target":34962 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":34026268, + "target":34962 + }, + { + "buffer":0, + "byteLength":2368, + "byteOffset":34029820, + "target":34962 + }, + { + "buffer":0, + "byteLength":9072, + "byteOffset":34032188, + "target":34962 + }, + { + "buffer":0, + "byteLength":9072, + "byteOffset":34041260, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":34050332, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":34050620, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":34050908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":34052204, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":34053500, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":34054364, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":34058396, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":34062428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":34065116, + "target":34963 + }, + { + "buffer":0, + "byteLength":1188, + "byteOffset":34066556, + "target":34962 + }, + { + "buffer":0, + "byteLength":1188, + "byteOffset":34067744, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":34068932, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":34069724, + "target":34963 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":34070132, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":34070612, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":34071092, + "target":34962 + }, + { + "buffer":0, + "byteLength":13032, + "byteOffset":34071412, + "target":34962 + }, + { + "buffer":0, + "byteLength":13032, + "byteOffset":34084444, + "target":34962 + }, + { + "buffer":0, + "byteLength":8688, + "byteOffset":34097476, + "target":34962 + }, + { + "buffer":0, + "byteLength":3612, + "byteOffset":34106164, + "target":34963 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":34109776, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":34110952, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":34112128, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34112912, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34112960, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":34113008, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":34113040, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":34120000, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":34126960, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":34133968, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":34140976, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":34148116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":34155256, + "target":34963 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":34157248, + "target":34962 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":34175104, + "target":34962 + }, + { + "buffer":0, + "byteLength":11904, + "byteOffset":34192960, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":34204864, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":34213528, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34222192, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34222240, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":34222288, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":34222320, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":34229496, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":34236672, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":34238664, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":34239528, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":34240392, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":34240680, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":34240968, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34241160, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34241208, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":34241256, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":34241288, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":34248320, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":34255352, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34257344, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34257392, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":34257440, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":34257472, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":34258816, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":34260160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":34261432, + "target":34962 + }, + { + "buffer":0, + "byteLength":848, + "byteOffset":34262704, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":34263552, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":34263840, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":34264128, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":34264320, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":34271328, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":34278336, + "target":34963 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":34280328, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":34282464, + "target":34962 + }, + { + "buffer":0, + "byteLength":1424, + "byteOffset":34284600, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":34286024, + "target":34963 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":34286744, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":34288400, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":34290056, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":34291160, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":34292012, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":34292864, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":34293432, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":34300620, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":34307808, + "target":34963 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":34309800, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":34313256, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":34316712, + "target":34963 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":34319856, + "target":34962 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":34337712, + "target":34962 + }, + { + "buffer":0, + "byteLength":11904, + "byteOffset":34355568, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":34367472, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":34367760, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":34368048, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":34368240, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":34375656, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":34383072, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":34388016, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":34388304, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":34388592, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":34388784, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":34389384, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":34389984, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":34390384, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":34390672, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":34390960, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":34394824, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":34398688, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":34401264, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":34413504, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":34425744, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":34433904, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":34440744, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34447584, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34447632, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":34447680, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":34447712, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":34464752, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":34481792, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":34493152, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":34495408, + "target":34962 + }, + { + "buffer":0, + "byteLength":1504, + "byteOffset":34497664, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":34499168, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34499888, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34499936, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":34499984, + "target":34962 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":34500016, + "target":34963 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":34500028, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":34500628, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":34501228, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":34501628, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":34509044, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":34516460, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":34521404, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":34533644, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":34545884, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":34554044, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":34561004, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":34567964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":34569308, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":34570652, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":34571300, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":34571948, + "target":34962 + }, + { + "buffer":0, + "byteLength":6852, + "byteOffset":34572380, + "target":34962 + }, + { + "buffer":0, + "byteLength":6852, + "byteOffset":34579232, + "target":34962 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":34586084, + "target":34962 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":34593308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":34600532, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":34602524, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":34603100, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":34603676, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":34607540, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":34611404, + "target":34962 + }, + { + "buffer":0, + "byteLength":93456, + "byteOffset":34613980, + "target":34962 + }, + { + "buffer":0, + "byteLength":93456, + "byteOffset":34707436, + "target":34962 + }, + { + "buffer":0, + "byteLength":62304, + "byteOffset":34800892, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34863196, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34863244, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":34863292, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":34863324, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":34870032, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":34876740, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":34881212, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":34888124, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":34895036, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":34897028, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":34897940, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":34898852, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":34899460, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":34900372, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":34901284, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":34901892, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":34908228, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":34914564, + "target":34962 + }, + { + "buffer":0, + "byteLength":4212, + "byteOffset":34918788, + "target":34962 + }, + { + "buffer":0, + "byteLength":4212, + "byteOffset":34923000, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":34927212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":34930020, + "target":34963 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":34931460, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":34938036, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":34944612, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":34948996, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":34950340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":34951684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":34952836, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":34953988, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34954252, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34954300, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":34954348, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34954380, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34954428, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":34954476, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":34954508, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":34955108, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":34955708, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":34956108, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":34960140, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34964172, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34964220, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":34964268, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34964300, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34964348, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":34964396, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34964428, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34964476, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":34964524, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34964556, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34964604, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":34964652, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":34964684, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":34964876, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":34965068, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":34965196, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":34965748, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":34966300, + "target":34962 + }, + { + "buffer":0, + "byteLength":8952, + "byteOffset":34966668, + "target":34962 + }, + { + "buffer":0, + "byteLength":8952, + "byteOffset":34975620, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":34984572, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":34987236, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":34987812, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":34988388, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":34988964, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":34989540, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":34989924, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":34990068, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":34990356, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":34990644, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":34990836, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":34991124, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":34991412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":34991604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":34993428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1216, + "byteOffset":34995252, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":34996468, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":34997140, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":34998052, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":34998964, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34999572, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":34999620, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":34999668, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":34999700, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":35000612, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":35001524, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":35002132, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":35011108, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":35020084, + "target":34963 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":35022748, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":35027356, + "target":34962 + }, + { + "buffer":0, + "byteLength":3072, + "byteOffset":35031964, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":35035036, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":35041744, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":35048452, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35052924, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35052972, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":35053020, + "target":34962 + }, + { + "buffer":0, + "byteLength":2868, + "byteOffset":35053052, + "target":34962 + }, + { + "buffer":0, + "byteLength":2868, + "byteOffset":35055920, + "target":34962 + }, + { + "buffer":0, + "byteLength":1912, + "byteOffset":35058788, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35060700, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35060988, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":35061276, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":35061468, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":35068608, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":35075748, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":35077980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":35080212, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":35081700, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":35085084, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":35088468, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":35090724, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":35097792, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":35104860, + "target":34963 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":35106852, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":35109228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":35111604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":35113188, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":35114532, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":35115876, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":35116524, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":35117388, + "target":34962 + }, + { + "buffer":0, + "byteLength":2556, + "byteOffset":35118252, + "target":34962 + }, + { + "buffer":0, + "byteLength":2556, + "byteOffset":35120808, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":35123364, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":35125068, + "target":34963 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":35125692, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":35126172, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":35126652, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":35126972, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":35133884, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":35140796, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":35144828, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":35148860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":35151548, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35152988, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35153036, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":35153084, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35153116, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35153404, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":35153692, + "target":34962 + }, + { + "buffer":0, + "byteLength":1128, + "byteOffset":35153884, + "target":34962 + }, + { + "buffer":0, + "byteLength":1128, + "byteOffset":35155012, + "target":34962 + }, + { + "buffer":0, + "byteLength":752, + "byteOffset":35156140, + "target":34962 + }, + { + "buffer":0, + "byteLength":6900, + "byteOffset":35156892, + "target":34962 + }, + { + "buffer":0, + "byteLength":6900, + "byteOffset":35163792, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":35170692, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35172684, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35172732, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":35172780, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35172812, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35172860, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":35172908, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":35172940, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":35176804, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":35180668, + "target":34962 + }, + { + "buffer":0, + "byteLength":12624, + "byteOffset":35183244, + "target":34962 + }, + { + "buffer":0, + "byteLength":12624, + "byteOffset":35195868, + "target":34962 + }, + { + "buffer":0, + "byteLength":8416, + "byteOffset":35208492, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":35216908, + "target":34963 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":35221708, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":35228836, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35235964, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35236252, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":35236540, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":35236732, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":35243500, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":35250268, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":35252260, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":35259292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":35266324, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35268316, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35268364, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":35268412, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":35268444, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":35269164, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":35269884, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":35270364, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":35277384, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":35284404, + "target":34963 + }, + { + "buffer":0, + "byteLength":4260, + "byteOffset":35286396, + "target":34962 + }, + { + "buffer":0, + "byteLength":4260, + "byteOffset":35290656, + "target":34962 + }, + { + "buffer":0, + "byteLength":2840, + "byteOffset":35294916, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":35297756, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":35299196, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":35306132, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35313068, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35313116, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":35313164, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":35313196, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":35320228, + "target":34962 + }, + { + "buffer":0, + "byteLength":59844, + "byteOffset":35327260, + "target":34962 + }, + { + "buffer":0, + "byteLength":59844, + "byteOffset":35387104, + "target":34962 + }, + { + "buffer":0, + "byteLength":39896, + "byteOffset":35446948, + "target":34962 + }, + { + "buffer":0, + "byteLength":23952, + "byteOffset":35486844, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":35510796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":35512548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":35514300, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35515468, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35515516, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":35515564, + "target":34962 + }, + { + "buffer":0, + "byteLength":9072, + "byteOffset":35515596, + "target":34962 + }, + { + "buffer":0, + "byteLength":9072, + "byteOffset":35524668, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35533740, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35534028, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":35534316, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":35541132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":35547948, + "target":34963 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":35549940, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":35556888, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":35563836, + "target":34963 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":35565828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":35567484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":35569140, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":35570244, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":35576988, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":35583732, + "target":34963 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":35585724, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":35592432, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":35599140, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35603612, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35603660, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":35603708, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35603740, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35603788, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":35603836, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35603868, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35603916, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":35603964, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":35603996, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":35608172, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":35612348, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":35615132, + "target":34963 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":35616572, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":35618012, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":35619452, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":35620412, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35620892, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35620940, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":35620988, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":35621020, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":35621644, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":35622268, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":35622684, + "target":34963 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":35622852, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":35623452, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":35624052, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":35624452, + "target":34963 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":35624620, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":35631460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":35638300, + "target":34963 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":35640292, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":35640916, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":35641540, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":35641956, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":35642868, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":35643780, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":35644388, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":35646524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1424, + "byteOffset":35648660, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":35650084, + "target":34963 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":35650804, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":35651404, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":35652004, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":35652404, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35652572, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35652620, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":35652668, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35652700, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35652748, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":35652796, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":35652828, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":35659668, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35666508, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35666556, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":35666604, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":35666636, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":35670092, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35673548, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35673596, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":35673644, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":35673676, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":35682340, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":35691004, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":35708044, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":35725084, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35736444, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35736732, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":35737020, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":35737212, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":35744268, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":35751324, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":35751972, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":35752620, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":35753052, + "target":34963 + }, + { + "buffer":0, + "byteLength":1248, + "byteOffset":35753220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1248, + "byteOffset":35754468, + "target":34962 + }, + { + "buffer":0, + "byteLength":832, + "byteOffset":35755716, + "target":34962 + }, + { + "buffer":0, + "byteLength":360, + "byteOffset":35756548, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":35756908, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":35763844, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":35770780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":35772532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":35774284, + "target":34962 + }, + { + "buffer":0, + "byteLength":2028, + "byteOffset":35775452, + "target":34962 + }, + { + "buffer":0, + "byteLength":2028, + "byteOffset":35777480, + "target":34962 + }, + { + "buffer":0, + "byteLength":1352, + "byteOffset":35779508, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":35780860, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":35787808, + "target":34962 + }, + { + "buffer":0, + "byteLength":9636, + "byteOffset":35794756, + "target":34962 + }, + { + "buffer":0, + "byteLength":9636, + "byteOffset":35804392, + "target":34962 + }, + { + "buffer":0, + "byteLength":6424, + "byteOffset":35814028, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":35820452, + "target":34963 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":35822996, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":35824052, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":35825108, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35825812, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35826100, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":35826388, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":35826580, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":35833528, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35840476, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35840764, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":35841052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":35842684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":35844316, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":35845404, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":35848116, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":35850828, + "target":34963 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":35851812, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":35856012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":35860212, + "target":34963 + }, + { + "buffer":0, + "byteLength":11040, + "byteOffset":35861532, + "target":34962 + }, + { + "buffer":0, + "byteLength":11040, + "byteOffset":35872572, + "target":34962 + }, + { + "buffer":0, + "byteLength":7360, + "byteOffset":35883612, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":35890972, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35893852, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35894140, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":35894428, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":35894620, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":35911660, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":35928700, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":35940060, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":35943924, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":35947788, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35950364, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":35950412, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":35950460, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":35950492, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":35967532, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":35984572, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":35995932, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":35997756, + "target":34962 + }, + { + "buffer":0, + "byteLength":1216, + "byteOffset":35999580, + "target":34962 + }, + { + "buffer":0, + "byteLength":2196, + "byteOffset":36000796, + "target":34962 + }, + { + "buffer":0, + "byteLength":2196, + "byteOffset":36002992, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":36005188, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":36006652, + "target":34963 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":36007372, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":36015268, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":36023164, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":36028428, + "target":34963 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":36030972, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":36031500, + "target":34962 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":36032028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":36032380, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":36034060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":36035740, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":36036860, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":36043748, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":36050636, + "target":34963 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":36052628, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":36055244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1744, + "byteOffset":36057860, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":36059604, + "target":34963 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":36060564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":36062028, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":36063492, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":36064468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":36071308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":36078148, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":36080140, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":36080428, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":36080716, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":36080908, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":36087844, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":36094780, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":36096772, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":36098116, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":36099460, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":36100180, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":36100900, + "target":34962 + }, + { + "buffer":0, + "byteLength":23424, + "byteOffset":36101380, + "target":34962 + }, + { + "buffer":0, + "byteLength":23424, + "byteOffset":36124804, + "target":34962 + }, + { + "buffer":0, + "byteLength":15616, + "byteOffset":36148228, + "target":34962 + }, + { + "buffer":0, + "byteLength":3156, + "byteOffset":36163844, + "target":34962 + }, + { + "buffer":0, + "byteLength":3156, + "byteOffset":36167000, + "target":34962 + }, + { + "buffer":0, + "byteLength":2104, + "byteOffset":36170156, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":36172260, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":36172836, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":36173412, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":36180300, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":36187188, + "target":34963 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":36189180, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":36192060, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":36194940, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":36194988, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":36195036, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":36195068, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":36202052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":36209036, + "target":34963 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":36211028, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":36213404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":36215780, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":36217364, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":36223700, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":36230036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":36234260, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":36234548, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":36234836, + "target":34962 + }, + { + "buffer":0, + "byteLength":1692, + "byteOffset":36235028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1692, + "byteOffset":36236720, + "target":34962 + }, + { + "buffer":0, + "byteLength":1128, + "byteOffset":36238412, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":36239540, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":36256580, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":36273620, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":36284980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":36286684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":36288388, + "target":34962 + }, + { + "buffer":0, + "byteLength":3780, + "byteOffset":36289524, + "target":34962 + }, + { + "buffer":0, + "byteLength":3780, + "byteOffset":36293304, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":36297084, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":36299604, + "target":34963 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":36301044, + "target":34962 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":36397596, + "target":34962 + }, + { + "buffer":0, + "byteLength":64368, + "byteOffset":36494148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":36558516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":36560148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":36561780, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":36562868, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":36562916, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":36562964, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":36562996, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":36563044, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":36563092, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":36563124, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":36563412, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":36563700, + "target":34962 + }, + { + "buffer":0, + "byteLength":29436, + "byteOffset":36563892, + "target":34962 + }, + { + "buffer":0, + "byteLength":29436, + "byteOffset":36593328, + "target":34962 + }, + { + "buffer":0, + "byteLength":19624, + "byteOffset":36622764, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":36642388, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":36651364, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":36651940, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":36652516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":36652900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":36654244, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":36655588, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":36662572, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":36669556, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":36676684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":36683812, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":36685804, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":36692764, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":36699724, + "target":34963 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":36701716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":36703420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":36705124, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":36706260, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":36713448, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":36720636, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":36722628, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":36739668, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":36756708, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":36768068, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":36768116, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":36768164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":36768196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":36769540, + "target":34962 + }, + { + "buffer":0, + "byteLength":2772, + "byteOffset":36770884, + "target":34962 + }, + { + "buffer":0, + "byteLength":2772, + "byteOffset":36773656, + "target":34962 + }, + { + "buffer":0, + "byteLength":1848, + "byteOffset":36776428, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":36778276, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":36779236, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":36779284, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":36779332, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":36779364, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":36779652, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":36779940, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":36780132, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":36787236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":36794340, + "target":34963 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":36796332, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":36800412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":36804492, + "target":34963 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":36805812, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":36808044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":36810276, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":36811764, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":36818652, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":36825540, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":36832476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":36839412, + "target":34963 + }, + { + "buffer":0, + "byteLength":5400, + "byteOffset":36841404, + "target":34962 + }, + { + "buffer":0, + "byteLength":5400, + "byteOffset":36846804, + "target":34962 + }, + { + "buffer":0, + "byteLength":3600, + "byteOffset":36852204, + "target":34962 + }, + { + "buffer":0, + "byteLength":96612, + "byteOffset":36855804, + "target":34962 + }, + { + "buffer":0, + "byteLength":96612, + "byteOffset":36952416, + "target":34962 + }, + { + "buffer":0, + "byteLength":64408, + "byteOffset":37049028, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":37113436, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":37146556, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":37153564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":37160572, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":37162564, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":37169476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":37176388, + "target":34963 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":37178380, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":37182580, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":37186780, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":37187068, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":37187356, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":37187548, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":37194580, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":37201612, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":37208524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":37215436, + "target":34963 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":37217428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":37219108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":37220788, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":37221908, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":37229084, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":37236260, + "target":34963 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":37238252, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":37245404, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":37252556, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":37252604, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":37252652, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":37252684, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":37252972, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":37253260, + "target":34962 + }, + { + "buffer":0, + "byteLength":2160, + "byteOffset":37253452, + "target":34962 + }, + { + "buffer":0, + "byteLength":2160, + "byteOffset":37255612, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":37257772, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":37259212, + "target":34963 + }, + { + "buffer":0, + "byteLength":4092, + "byteOffset":37259836, + "target":34962 + }, + { + "buffer":0, + "byteLength":4092, + "byteOffset":37263928, + "target":34962 + }, + { + "buffer":0, + "byteLength":2728, + "byteOffset":37268020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":37270748, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":37272188, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":37272236, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":37272284, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":37272316, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":37279324, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":37286332, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":37286380, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":37286428, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":37286460, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":37287036, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":37287612, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":37287996, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":37291860, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":37295724, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":37298300, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":37306580, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":37314860, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":37317524, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":37318388, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":37319252, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":37326140, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":37333028, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":37333076, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":37333124, + "target":34962 + }, + { + "buffer":0, + "byteLength":15996, + "byteOffset":37333156, + "target":34962 + }, + { + "buffer":0, + "byteLength":15996, + "byteOffset":37349152, + "target":34962 + }, + { + "buffer":0, + "byteLength":10664, + "byteOffset":37365148, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":37375812, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":37382532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":37389252, + "target":34963 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":37391244, + "target":34962 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":37398468, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":37405692, + "target":34963 + }, + { + "buffer":0, + "byteLength":6732, + "byteOffset":37407684, + "target":34962 + }, + { + "buffer":0, + "byteLength":6732, + "byteOffset":37414416, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":37421148, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":37423140, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":37425864, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":37428588, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":37430404, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":37433128, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":37435852, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":37437668, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":37437716, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":37437764, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":37437796, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":37444708, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":37451620, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":37451908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":37452196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":37453948, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":37455700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":37456868, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":37458212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1620, + "byteOffset":37459556, + "target":34962 + }, + { + "buffer":0, + "byteLength":1620, + "byteOffset":37461176, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":37462796, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":37463876, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":37464356, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":37464644, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":37464932, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":37465124, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":37472180, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":37479236, + "target":34963 + }, + { + "buffer":0, + "byteLength":4404, + "byteOffset":37481228, + "target":34962 + }, + { + "buffer":0, + "byteLength":4404, + "byteOffset":37485632, + "target":34962 + }, + { + "buffer":0, + "byteLength":2936, + "byteOffset":37490036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":37492972, + "target":34963 + }, + { + "buffer":0, + "byteLength":14976, + "byteOffset":37494412, + "target":34962 + }, + { + "buffer":0, + "byteLength":14976, + "byteOffset":37509388, + "target":34962 + }, + { + "buffer":0, + "byteLength":9984, + "byteOffset":37524364, + "target":34962 + }, + { + "buffer":0, + "byteLength":4560, + "byteOffset":37534348, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":37538908, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":37539772, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":37540636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":37542268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":37543900, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":37544988, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":37555572, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":37566156, + "target":34962 + }, + { + "buffer":0, + "byteLength":16116, + "byteOffset":37573212, + "target":34962 + }, + { + "buffer":0, + "byteLength":16116, + "byteOffset":37589328, + "target":34962 + }, + { + "buffer":0, + "byteLength":10744, + "byteOffset":37605444, + "target":34962 + }, + { + "buffer":0, + "byteLength":4632, + "byteOffset":37616188, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":37620820, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":37621540, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":37622260, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":37622740, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":37622788, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":37622836, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":37622868, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":37626996, + "target":34962 + }, + { + "buffer":0, + "byteLength":2752, + "byteOffset":37631124, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":37633876, + "target":34963 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":37635316, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":37635988, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":37636660, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":37637108, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":37637276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":37638620, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":37639964, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":37647860, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":37655756, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":37661020, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":37661596, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":37662172, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":37662556, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":37669636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":37676716, + "target":34963 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":37678708, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":37685452, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":37692196, + "target":34963 + }, + { + "buffer":0, + "byteLength":13032, + "byteOffset":37694188, + "target":34962 + }, + { + "buffer":0, + "byteLength":13032, + "byteOffset":37707220, + "target":34962 + }, + { + "buffer":0, + "byteLength":8688, + "byteOffset":37720252, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":37728940, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":37735876, + "target":34962 + }, + { + "buffer":0, + "byteLength":4464, + "byteOffset":37742812, + "target":34962 + }, + { + "buffer":0, + "byteLength":4464, + "byteOffset":37747276, + "target":34962 + }, + { + "buffer":0, + "byteLength":2976, + "byteOffset":37751740, + "target":34962 + }, + { + "buffer":0, + "byteLength":1116, + "byteOffset":37754716, + "target":34963 + }, + { + "buffer":0, + "byteLength":12432, + "byteOffset":37755832, + "target":34962 + }, + { + "buffer":0, + "byteLength":12432, + "byteOffset":37768264, + "target":34962 + }, + { + "buffer":0, + "byteLength":8288, + "byteOffset":37780696, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":37788984, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":37793784, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":37794072, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":37794360, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":37794408, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":37794456, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":37794488, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":37795832, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":37797176, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":37809416, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":37821656, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":37829816, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":37830680, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":37831544, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":37831832, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":37832120, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":37832972, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":37833824, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":37834392, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":37841316, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":37848240, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":37848432, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":37848624, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":37848752, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":37848800, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":37848848, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":37848880, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":37855600, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":37862320, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":37869232, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":37876144, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":37883080, + "target":34962 + }, + { + "buffer":0, + "byteLength":1908, + "byteOffset":37890016, + "target":34962 + }, + { + "buffer":0, + "byteLength":1908, + "byteOffset":37891924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":37893832, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":37895104, + "target":34963 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":37895824, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":37896928, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":37898032, + "target":34962 + }, + { + "buffer":0, + "byteLength":3996, + "byteOffset":37898768, + "target":34962 + }, + { + "buffer":0, + "byteLength":3996, + "byteOffset":37902764, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":37906760, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":37909424, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":37910864, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":37912616, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":37914368, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":37915536, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":37917072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1024, + "byteOffset":37918608, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":37919632, + "target":34963 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":37920112, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":37922896, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":37925680, + "target":34963 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":37926664, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":37946584, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":37966504, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":37979784, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":37980072, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":37980360, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":37980552, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":37984416, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":37988280, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":37990856, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":37998008, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":38005160, + "target":34963 + }, + { + "buffer":0, + "byteLength":96372, + "byteOffset":38007152, + "target":34962 + }, + { + "buffer":0, + "byteLength":96372, + "byteOffset":38103524, + "target":34962 + }, + { + "buffer":0, + "byteLength":64248, + "byteOffset":38199896, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":38264144, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":38264432, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":38264720, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":38264912, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":38265776, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":38266640, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":38283680, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":38300720, + "target":34962 + }, + { + "buffer":0, + "byteLength":2244, + "byteOffset":38312080, + "target":34962 + }, + { + "buffer":0, + "byteLength":2244, + "byteOffset":38314324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1496, + "byteOffset":38316568, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":38318064, + "target":34963 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":38318784, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":38322168, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":38325552, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":38327808, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":38328420, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":38329032, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":38329440, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":38338440, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":38347440, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":38350104, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":38350392, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":38350680, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":38352180, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":38353680, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":38354680, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":38358064, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":38361448, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":38363704, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":38370412, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":38377120, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":38381592, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":38385696, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":38389800, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":38396964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1728, + "byteOffset":38404128, + "target":34962 + }, + { + "buffer":0, + "byteLength":1728, + "byteOffset":38405856, + "target":34962 + }, + { + "buffer":0, + "byteLength":7368, + "byteOffset":38407584, + "target":34962 + }, + { + "buffer":0, + "byteLength":7368, + "byteOffset":38414952, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":38422320, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":38424312, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":38424360, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":38424408, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":38424440, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":38431256, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":38438072, + "target":34963 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":38440064, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":38446856, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":38453648, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":38455640, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":38456504, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":38457368, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":38457944, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":38459096, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":38460248, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":38467208, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":38474168, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":38476160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":38477912, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":38479664, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":38480832, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":38481312, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":38481792, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":38482112, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":38488688, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":38495264, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":38499648, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":38501112, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":38502576, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":38503552, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":38504416, + "target":34962 + }, + { + "buffer":0, + "byteLength":4008, + "byteOffset":38505280, + "target":34962 + }, + { + "buffer":0, + "byteLength":4008, + "byteOffset":38509288, + "target":34962 + }, + { + "buffer":0, + "byteLength":2672, + "byteOffset":38513296, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":38515968, + "target":34963 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":38517408, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":38519064, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":38520720, + "target":34962 + }, + { + "buffer":0, + "byteLength":2796, + "byteOffset":38521824, + "target":34962 + }, + { + "buffer":0, + "byteLength":2796, + "byteOffset":38524620, + "target":34962 + }, + { + "buffer":0, + "byteLength":1864, + "byteOffset":38527416, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":38529280, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":38536288, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":38543296, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":38545288, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":38545336, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":38545384, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":38545416, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":38545464, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":38545512, + "target":34962 + }, + { + "buffer":0, + "byteLength":24132, + "byteOffset":38545544, + "target":34962 + }, + { + "buffer":0, + "byteLength":24132, + "byteOffset":38569676, + "target":34962 + }, + { + "buffer":0, + "byteLength":16088, + "byteOffset":38593808, + "target":34962 + }, + { + "buffer":0, + "byteLength":9480, + "byteOffset":38609896, + "target":34963 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":38619376, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":38621392, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":38623408, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":38623696, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":38623984, + "target":34962 + }, + { + "buffer":0, + "byteLength":11148, + "byteOffset":38624176, + "target":34962 + }, + { + "buffer":0, + "byteLength":11148, + "byteOffset":38635324, + "target":34962 + }, + { + "buffer":0, + "byteLength":7432, + "byteOffset":38646472, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":38653904, + "target":34963 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":38662880, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":38663492, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":38664104, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":38664512, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":38671400, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":38678288, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":38680280, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":38680856, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":38681432, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":38682344, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":38683256, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":38683864, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":38687896, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":38691928, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":38692504, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":38693080, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":38710120, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":38727160, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":38738520, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":38741268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1832, + "byteOffset":38744016, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":38745848, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":38746136, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":38746424, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":38746616, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":38747528, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":38748440, + "target":34962 + }, + { + "buffer":0, + "byteLength":93588, + "byteOffset":38749048, + "target":34962 + }, + { + "buffer":0, + "byteLength":93588, + "byteOffset":38842636, + "target":34962 + }, + { + "buffer":0, + "byteLength":62392, + "byteOffset":38936224, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":38998616, + "target":34963 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":39031736, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":39038708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":39045680, + "target":34963 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":39047672, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":39054824, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":39061976, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":39063440, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":39064904, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":39065880, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":39068112, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":39070344, + "target":34962 + }, + { + "buffer":0, + "byteLength":95832, + "byteOffset":39071832, + "target":34962 + }, + { + "buffer":0, + "byteLength":95832, + "byteOffset":39167664, + "target":34962 + }, + { + "buffer":0, + "byteLength":63888, + "byteOffset":39263496, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":39327384, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":39327432, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":39327480, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":39327512, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":39334256, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":39341000, + "target":34963 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":39342992, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":39345776, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":39348560, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":39355472, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":39362384, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":39369272, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":39376160, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":39383240, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":39390320, + "target":34963 + }, + { + "buffer":0, + "byteLength":9756, + "byteOffset":39392312, + "target":34962 + }, + { + "buffer":0, + "byteLength":9756, + "byteOffset":39402068, + "target":34962 + }, + { + "buffer":0, + "byteLength":6504, + "byteOffset":39411824, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":39418328, + "target":34963 + }, + { + "buffer":0, + "byteLength":2556, + "byteOffset":39420872, + "target":34962 + }, + { + "buffer":0, + "byteLength":2556, + "byteOffset":39423428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":39425984, + "target":34962 + }, + { + "buffer":0, + "byteLength":4248, + "byteOffset":39427688, + "target":34962 + }, + { + "buffer":0, + "byteLength":4248, + "byteOffset":39431936, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":39436184, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":39439016, + "target":34963 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":39440456, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":39441956, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":39443456, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":39444456, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":39444936, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":39445224, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":39445512, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":39448236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":39450960, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":39452776, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":39459496, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":39466216, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":39468208, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":39468256, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":39468304, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":39468336, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":39469200, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":39470064, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":39470352, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":39470640, + "target":34962 + }, + { + "buffer":0, + "byteLength":58872, + "byteOffset":39470832, + "target":34962 + }, + { + "buffer":0, + "byteLength":58872, + "byteOffset":39529704, + "target":34962 + }, + { + "buffer":0, + "byteLength":39248, + "byteOffset":39588576, + "target":34962 + }, + { + "buffer":0, + "byteLength":23952, + "byteOffset":39627824, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":39651776, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":39651824, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":39651872, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":39651904, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":39655360, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":39658816, + "target":34963 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":39661960, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":39663904, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":39665848, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":39667144, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":39667552, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":39667960, + "target":34962 + }, + { + "buffer":0, + "byteLength":120, + "byteOffset":39668232, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":39668352, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":39668400, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":39668448, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":39668480, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":39675344, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":39682208, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":39684200, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":39691160, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":39698120, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":39705104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":39712088, + "target":34963 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":39714080, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":39721976, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":39729872, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":39735136, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":39737860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":39740584, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":39742400, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":39746552, + "target":34962 + }, + { + "buffer":0, + "byteLength":2768, + "byteOffset":39750704, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":39753472, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":39754912, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":39754960, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":39755008, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":39755040, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":39762000, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":39768960, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":39772344, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":39775728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":39777984, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":39779736, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":39781488, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":39782656, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":39782944, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":39783232, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":39783424, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":39787600, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":39791776, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":39798544, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":39805312, + "target":34963 + }, + { + "buffer":0, + "byteLength":100884, + "byteOffset":39807304, + "target":34962 + }, + { + "buffer":0, + "byteLength":100884, + "byteOffset":39908188, + "target":34962 + }, + { + "buffer":0, + "byteLength":67256, + "byteOffset":40009072, + "target":34962 + }, + { + "buffer":0, + "byteLength":26688, + "byteOffset":40076328, + "target":34963 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":40103016, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":40103616, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":40104216, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":40104616, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":40106152, + "target":34962 + }, + { + "buffer":0, + "byteLength":1024, + "byteOffset":40107688, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":40108712, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":40110944, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":40113176, + "target":34962 + }, + { + "buffer":0, + "byteLength":32628, + "byteOffset":40114664, + "target":34962 + }, + { + "buffer":0, + "byteLength":32628, + "byteOffset":40147292, + "target":34962 + }, + { + "buffer":0, + "byteLength":21752, + "byteOffset":40179920, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":40201672, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":40202968, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":40204264, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":40205128, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":40206472, + "target":34962 + }, + { + "buffer":0, + "byteLength":1836, + "byteOffset":40207816, + "target":34962 + }, + { + "buffer":0, + "byteLength":1836, + "byteOffset":40209652, + "target":34962 + }, + { + "buffer":0, + "byteLength":1224, + "byteOffset":40211488, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":40212712, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":40213360, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":40220392, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":40227424, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":40229416, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":40229464, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":40229512, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":40229544, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":40236504, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":40243464, + "target":34963 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":40245456, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":40247160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":40248864, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":40250000, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":40250144, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":40250288, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":40250384, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":40251008, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":40251632, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":40252048, + "target":34963 + }, + { + "buffer":0, + "byteLength":1476, + "byteOffset":40252216, + "target":34962 + }, + { + "buffer":0, + "byteLength":1476, + "byteOffset":40253692, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":40255168, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":40256152, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":40256632, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":40256680, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":40256728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1668, + "byteOffset":40256760, + "target":34962 + }, + { + "buffer":0, + "byteLength":1668, + "byteOffset":40258428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1112, + "byteOffset":40260096, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":40261208, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":40261688, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":40261736, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":40261784, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":40261816, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":40270480, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":40279144, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":40285000, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":40290856, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":40294760, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":40295048, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":40295336, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":40295528, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":40296872, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":40298216, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":40298504, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":40298792, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":40298984, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":40305968, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":40312952, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":40314944, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":40321856, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":40328768, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":40330760, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":40337720, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":40344680, + "target":34963 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":40346672, + "target":34962 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":40350656, + "target":34962 + }, + { + "buffer":0, + "byteLength":2656, + "byteOffset":40354640, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":40357296, + "target":34963 + }, + { + "buffer":0, + "byteLength":97176, + "byteOffset":40358736, + "target":34962 + }, + { + "buffer":0, + "byteLength":97176, + "byteOffset":40455912, + "target":34962 + }, + { + "buffer":0, + "byteLength":64784, + "byteOffset":40553088, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":40617872, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":40624808, + "target":34962 + }, + { + "buffer":0, + "byteLength":2892, + "byteOffset":40631744, + "target":34962 + }, + { + "buffer":0, + "byteLength":2892, + "byteOffset":40634636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1928, + "byteOffset":40637528, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":40639456, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":40640416, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":40640464, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":40640512, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":40640544, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":40647744, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":40654944, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":40654992, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":40655040, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":40655072, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":40659224, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":40663376, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":40670288, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":40677200, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":40678628, + "target":34962 + }, + { + "buffer":0, + "byteLength":952, + "byteOffset":40680056, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":40681008, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":40685040, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":40689072, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":40696224, + "target":34962 + }, + { + "buffer":0, + "byteLength":1620, + "byteOffset":40703376, + "target":34962 + }, + { + "buffer":0, + "byteLength":1620, + "byteOffset":40704996, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":40706616, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":40707696, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":40708560, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":40709424, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":40711944, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":40714464, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":40716144, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":40720368, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":40724592, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":40725912, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":40726200, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":40726488, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":40726680, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":40743720, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":40760760, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":40772120, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":40777064, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":40777352, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":40777640, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":40778216, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":40778792, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":40779176, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":40783040, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":40786904, + "target":34962 + }, + { + "buffer":0, + "byteLength":97188, + "byteOffset":40789480, + "target":34962 + }, + { + "buffer":0, + "byteLength":97188, + "byteOffset":40886668, + "target":34962 + }, + { + "buffer":0, + "byteLength":64792, + "byteOffset":40983856, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":41048648, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":41050184, + "target":34962 + }, + { + "buffer":0, + "byteLength":1024, + "byteOffset":41051720, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41052744, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41052792, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":41052840, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41052872, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41052920, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":41052968, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41053000, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41053048, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":41053096, + "target":34962 + }, + { + "buffer":0, + "byteLength":2208, + "byteOffset":41053128, + "target":34962 + }, + { + "buffer":0, + "byteLength":2208, + "byteOffset":41055336, + "target":34962 + }, + { + "buffer":0, + "byteLength":1472, + "byteOffset":41057544, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":41059016, + "target":34963 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":41059736, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":41063792, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":41067848, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":41068424, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":41069000, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":41069384, + "target":34963 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":41069552, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":41091272, + "target":34962 + }, + { + "buffer":0, + "byteLength":14480, + "byteOffset":41112992, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":41127472, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":41130856, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":41134240, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":41136496, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":41139208, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":41141920, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":41149048, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":41156176, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":41163244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":41170312, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41172304, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41172352, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":41172400, + "target":34962 + }, + { + "buffer":0, + "byteLength":4260, + "byteOffset":41172432, + "target":34962 + }, + { + "buffer":0, + "byteLength":4260, + "byteOffset":41176692, + "target":34962 + }, + { + "buffer":0, + "byteLength":2840, + "byteOffset":41180952, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":41183792, + "target":34963 + }, + { + "buffer":0, + "byteLength":9840, + "byteOffset":41185232, + "target":34962 + }, + { + "buffer":0, + "byteLength":9840, + "byteOffset":41195072, + "target":34962 + }, + { + "buffer":0, + "byteLength":6560, + "byteOffset":41204912, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":41211472, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":41214016, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":41215168, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":41216320, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":41217088, + "target":34963 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":41217424, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":41220544, + "target":34962 + }, + { + "buffer":0, + "byteLength":2080, + "byteOffset":41223664, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41225744, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41225792, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":41225840, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":41225872, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":41234536, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":41243200, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":41244952, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":41246704, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":41247872, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":41249576, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":41251280, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41252416, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41252704, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":41252992, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":41253184, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":41254048, + "target":34962 + }, + { + "buffer":0, + "byteLength":3780, + "byteOffset":41254912, + "target":34962 + }, + { + "buffer":0, + "byteLength":3780, + "byteOffset":41258692, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":41262472, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":41264992, + "target":34963 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":41266432, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":41267860, + "target":34962 + }, + { + "buffer":0, + "byteLength":952, + "byteOffset":41269288, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":41270240, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":41277272, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":41284304, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":41284928, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":41285552, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41285968, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41286016, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":41286064, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41286096, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41286144, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":41286192, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":41286224, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":41286944, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":41287664, + "target":34962 + }, + { + "buffer":0, + "byteLength":6852, + "byteOffset":41288144, + "target":34962 + }, + { + "buffer":0, + "byteLength":6852, + "byteOffset":41294996, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":41301848, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":41308832, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":41315816, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":41317784, + "target":34962 + }, + { + "buffer":0, + "byteLength":1312, + "byteOffset":41319752, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":41321064, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":41328060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":41335056, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":41337048, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":41338800, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":41340552, + "target":34962 + }, + { + "buffer":0, + "byteLength":11148, + "byteOffset":41341720, + "target":34962 + }, + { + "buffer":0, + "byteLength":11148, + "byteOffset":41352868, + "target":34962 + }, + { + "buffer":0, + "byteLength":7432, + "byteOffset":41364016, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":41371448, + "target":34963 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":41380424, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":41381024, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":41381624, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41382024, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41382072, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":41382120, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41382152, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41382200, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":41382248, + "target":34962 + }, + { + "buffer":0, + "byteLength":2004, + "byteOffset":41382280, + "target":34962 + }, + { + "buffer":0, + "byteLength":2004, + "byteOffset":41384284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1336, + "byteOffset":41386288, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":41387624, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":41388272, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":41388848, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":41389424, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":41389808, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":41390720, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":41391632, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":41392240, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":41394160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1280, + "byteOffset":41396080, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":41397360, + "target":34963 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":41398080, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":41400768, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":41403456, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":41404032, + "target":34962 + }, + { + "buffer":0, + "byteLength":1668, + "byteOffset":41404608, + "target":34962 + }, + { + "buffer":0, + "byteLength":1668, + "byteOffset":41406276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1112, + "byteOffset":41407944, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":41409056, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":41411936, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":41414816, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":41416736, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":41418032, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":41419328, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":41420192, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":41422424, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":41424656, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41426144, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41426432, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":41426720, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41426912, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41427200, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":41427488, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":41444528, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":41461568, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41472928, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41472976, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":41473024, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":41473056, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":41477160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":41481264, + "target":34963 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":41482584, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":41484816, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":41487048, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":41488536, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":41495592, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":41502648, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":41504640, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":41505360, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":41506080, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":41506560, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":41510784, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":41515008, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":41521968, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":41528928, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":41535960, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":41542992, + "target":34963 + }, + { + "buffer":0, + "byteLength":9888, + "byteOffset":41544984, + "target":34962 + }, + { + "buffer":0, + "byteLength":9888, + "byteOffset":41554872, + "target":34962 + }, + { + "buffer":0, + "byteLength":6592, + "byteOffset":41564760, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":41571352, + "target":34963 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":41573896, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":41580712, + "target":34962 + }, + { + "buffer":0, + "byteLength":2508, + "byteOffset":41587528, + "target":34962 + }, + { + "buffer":0, + "byteLength":2508, + "byteOffset":41590036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1672, + "byteOffset":41592544, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":41594216, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":41594840, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":41595704, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":41596568, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":41603528, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41610488, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41610536, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":41610584, + "target":34962 + }, + { + "buffer":0, + "byteLength":1368, + "byteOffset":41610616, + "target":34962 + }, + { + "buffer":0, + "byteLength":1368, + "byteOffset":41611984, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":41613352, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41614264, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41614552, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":41614840, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":41615032, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":41616784, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":41618536, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":41619704, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":41622392, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":41625080, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":41625944, + "target":34962 + }, + { + "buffer":0, + "byteLength":7236, + "byteOffset":41626808, + "target":34962 + }, + { + "buffer":0, + "byteLength":7236, + "byteOffset":41634044, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41641280, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41641328, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":41641376, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":41641408, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":41648368, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":41655328, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":41657320, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":41664352, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":41671384, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":41679280, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":41687176, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":41692440, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":41693904, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":41695368, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":41696344, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41696824, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41697112, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":41697400, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":41697592, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":41698504, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":41699416, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":41700024, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":41707212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":41714400, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":41716392, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":41723280, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":41730168, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":41732160, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":41734884, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":41737608, + "target":34962 + }, + { + "buffer":0, + "byteLength":9576, + "byteOffset":41739424, + "target":34962 + }, + { + "buffer":0, + "byteLength":9576, + "byteOffset":41749000, + "target":34962 + }, + { + "buffer":0, + "byteLength":6384, + "byteOffset":41758576, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":41764960, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41767504, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41767792, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":41768080, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":41768272, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":41772424, + "target":34962 + }, + { + "buffer":0, + "byteLength":2768, + "byteOffset":41776576, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":41779344, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41780784, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41780832, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":41780880, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41780912, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41780960, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":41781008, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":41781040, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":41782504, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":41783968, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":41784944, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":41791928, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":41798912, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":41801696, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":41804480, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":41805056, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":41805632, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":41806016, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":41806592, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":41807168, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":41807552, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":41810072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":41812592, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":41814272, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":41816504, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":41818736, + "target":34962 + }, + { + "buffer":0, + "byteLength":32280, + "byteOffset":41820224, + "target":34962 + }, + { + "buffer":0, + "byteLength":32280, + "byteOffset":41852504, + "target":34962 + }, + { + "buffer":0, + "byteLength":21520, + "byteOffset":41884784, + "target":34962 + }, + { + "buffer":0, + "byteLength":9600, + "byteOffset":41906304, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41915904, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41916192, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41916480, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41916768, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":41917056, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":41917248, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":41924136, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":41931024, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":41933016, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":41934168, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":41935320, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41936088, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":41936136, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":41936184, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":41936216, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":41936828, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":41937440, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":41937848, + "target":34963 + }, + { + "buffer":0, + "byteLength":2412, + "byteOffset":41938016, + "target":34962 + }, + { + "buffer":0, + "byteLength":2412, + "byteOffset":41940428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":41942840, + "target":34962 + }, + { + "buffer":0, + "byteLength":102192, + "byteOffset":41944448, + "target":34962 + }, + { + "buffer":0, + "byteLength":102192, + "byteOffset":42046640, + "target":34962 + }, + { + "buffer":0, + "byteLength":68128, + "byteOffset":42148832, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":42216960, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42250080, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42250128, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":42250176, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":42250208, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":42257144, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":42264080, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":42266528, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":42268976, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":42276128, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":42283280, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":42285272, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":42292160, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":42299048, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":42306224, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":42313400, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":42315152, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":42316904, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":42318072, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":42322248, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":42326424, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":42327744, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":42329088, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":42330432, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":42337356, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":42344280, + "target":34963 + }, + { + "buffer":0, + "byteLength":3000, + "byteOffset":42346272, + "target":34962 + }, + { + "buffer":0, + "byteLength":3000, + "byteOffset":42349272, + "target":34962 + }, + { + "buffer":0, + "byteLength":2000, + "byteOffset":42352272, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":42354272, + "target":34963 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":42355232, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":42362432, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":42369632, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42371624, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42371672, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":42371720, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":42371752, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":42378640, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":42385528, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":42388336, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":42391144, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":42397984, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":42404824, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":42405928, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":42407032, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":42407768, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":42408632, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":42409496, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":42412016, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":42414536, + "target":34962 + }, + { + "buffer":0, + "byteLength":1728, + "byteOffset":42416216, + "target":34962 + }, + { + "buffer":0, + "byteLength":1728, + "byteOffset":42417944, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":42419672, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":42422408, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":42425144, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":42426128, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":42426848, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":42427568, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":42428048, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":42429488, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":42430928, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":42431888, + "target":34963 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":42432296, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":42439136, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42445976, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42446024, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":42446072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":42446104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":42447604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":42449104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":42450104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":42451208, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":42452312, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":42453048, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":42456912, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":42460776, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42463352, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42463400, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":42463448, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":42463480, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":42464560, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":42465640, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":42466360, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42466840, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42466888, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":42466936, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":42466968, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":42467256, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":42467544, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":42467736, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":42468324, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":42468912, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":42469304, + "target":34963 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":42469472, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":42472856, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":42476240, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":42478496, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":42482528, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":42486560, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":42493676, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":42500792, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":42503516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":42506240, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":42508056, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":42515172, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":42522288, + "target":34963 + }, + { + "buffer":0, + "byteLength":17868, + "byteOffset":42524280, + "target":34962 + }, + { + "buffer":0, + "byteLength":17868, + "byteOffset":42542148, + "target":34962 + }, + { + "buffer":0, + "byteLength":11912, + "byteOffset":42560016, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":42571928, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":42576728, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":42593768, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":42610808, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":42622168, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":42629080, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":42635992, + "target":34963 + }, + { + "buffer":0, + "byteLength":12192, + "byteOffset":42637984, + "target":34962 + }, + { + "buffer":0, + "byteLength":12192, + "byteOffset":42650176, + "target":34962 + }, + { + "buffer":0, + "byteLength":8128, + "byteOffset":42662368, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":42670496, + "target":34963 + }, + { + "buffer":0, + "byteLength":4248, + "byteOffset":42675296, + "target":34962 + }, + { + "buffer":0, + "byteLength":4248, + "byteOffset":42679544, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":42683792, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42685112, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42685160, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":42685208, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":42685240, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":42692212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":42699184, + "target":34963 + }, + { + "buffer":0, + "byteLength":23064, + "byteOffset":42701176, + "target":34962 + }, + { + "buffer":0, + "byteLength":23064, + "byteOffset":42724240, + "target":34962 + }, + { + "buffer":0, + "byteLength":11040, + "byteOffset":42747304, + "target":34963 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":42758344, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":42765400, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":42772456, + "target":34963 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":42774448, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":42783112, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":42791776, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":42793528, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":42795280, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":42796448, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":42797948, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":42799448, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":42800448, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":42807312, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":42814176, + "target":34963 + }, + { + "buffer":0, + "byteLength":3636, + "byteOffset":42816168, + "target":34962 + }, + { + "buffer":0, + "byteLength":3636, + "byteOffset":42819804, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":42823440, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":42825864, + "target":34963 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":42827304, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":42834228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":42841152, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":42842784, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":42844416, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42845504, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42845552, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":42845600, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":42845632, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":42853528, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":42861424, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":42866688, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":42868440, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":42870192, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":42871360, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":42878440, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":42885520, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":42886384, + "target":34962 + }, + { + "buffer":0, + "byteLength":9804, + "byteOffset":42887248, + "target":34962 + }, + { + "buffer":0, + "byteLength":9804, + "byteOffset":42897052, + "target":34962 + }, + { + "buffer":0, + "byteLength":6536, + "byteOffset":42906856, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":42913392, + "target":34963 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":42915936, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":42923040, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":42930144, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":42937152, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":42944160, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42946152, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42946200, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":42946248, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":42946280, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":42948032, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":42949784, + "target":34962 + }, + { + "buffer":0, + "byteLength":11148, + "byteOffset":42950952, + "target":34962 + }, + { + "buffer":0, + "byteLength":11148, + "byteOffset":42962100, + "target":34962 + }, + { + "buffer":0, + "byteLength":7432, + "byteOffset":42973248, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":42980680, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42989656, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":42989704, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":42989752, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":42989784, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":42991128, + "target":34962 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":42992472, + "target":34962 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":43089024, + "target":34962 + }, + { + "buffer":0, + "byteLength":64368, + "byteOffset":43185576, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":43249944, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":43250856, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":43251768, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":43252376, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":43256408, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":43260440, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":43267460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":43274480, + "target":34963 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":43276472, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":43277072, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":43277672, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":43278072, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":43278264, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":43278456, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":43278584, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":43285292, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":43292000, + "target":34962 + }, + { + "buffer":0, + "byteLength":1596, + "byteOffset":43296472, + "target":34962 + }, + { + "buffer":0, + "byteLength":1596, + "byteOffset":43298068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1064, + "byteOffset":43299664, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":43300728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":43302000, + "target":34962 + }, + { + "buffer":0, + "byteLength":848, + "byteOffset":43303272, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":43304120, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":43304984, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":43305848, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":43322888, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":43339928, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":43351288, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":43351336, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":43351384, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":43351416, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":43351464, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":43351512, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":43351544, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":43354232, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":43356920, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":43363628, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":43370336, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":43374808, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":43375096, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":43375384, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":43375576, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":43382464, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":43389352, + "target":34963 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":43391344, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":43398052, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":43404760, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":43409232, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":43411968, + "target":34962 + }, + { + "buffer":0, + "byteLength":7212, + "byteOffset":43414704, + "target":34962 + }, + { + "buffer":0, + "byteLength":7212, + "byteOffset":43421916, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":43429128, + "target":34963 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":43431120, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":43433496, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":43435872, + "target":34962 + }, + { + "buffer":0, + "byteLength":2508, + "byteOffset":43437456, + "target":34962 + }, + { + "buffer":0, + "byteLength":2508, + "byteOffset":43439964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1672, + "byteOffset":43442472, + "target":34962 + }, + { + "buffer":0, + "byteLength":9720, + "byteOffset":43444144, + "target":34962 + }, + { + "buffer":0, + "byteLength":9720, + "byteOffset":43453864, + "target":34962 + }, + { + "buffer":0, + "byteLength":6480, + "byteOffset":43463584, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":43470064, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":43472608, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":43472896, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":43473184, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":43473376, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":43473424, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":43473472, + "target":34962 + }, + { + "buffer":0, + "byteLength":1476, + "byteOffset":43473504, + "target":34962 + }, + { + "buffer":0, + "byteLength":1476, + "byteOffset":43474980, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":43476456, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":43477440, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":43477488, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":43477536, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":43477568, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":43484600, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":43491632, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":43493576, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":43495520, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":43496816, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":43498448, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":43500080, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":43501168, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":43505272, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":43509376, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":43509664, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":43509952, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":43510144, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":43527184, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":43544224, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":43555584, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":43555632, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":43555680, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":43555712, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":43562576, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":43569440, + "target":34963 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":43571432, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":43579616, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":43587800, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":43593256, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":43596376, + "target":34962 + }, + { + "buffer":0, + "byteLength":2080, + "byteOffset":43599496, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":43601576, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":43608752, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":43615928, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":43617920, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":43624856, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":43631792, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":43638740, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":43645688, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":43648376, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":43651064, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":43651784, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":43652504, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":43652984, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":43660064, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":43667144, + "target":34963 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":43669136, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":43675856, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":43682576, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":43699616, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":43716656, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":43728016, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":43728064, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":43728112, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":43728144, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":43728432, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":43728720, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":43728912, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":43737096, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":43745280, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":43750736, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":43751348, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":43751960, + "target":34962 + }, + { + "buffer":0, + "byteLength":92772, + "byteOffset":43752368, + "target":34962 + }, + { + "buffer":0, + "byteLength":92772, + "byteOffset":43845140, + "target":34962 + }, + { + "buffer":0, + "byteLength":61848, + "byteOffset":43937912, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":43999760, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":44006624, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":44013488, + "target":34963 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":44015480, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":44017712, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":44019944, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":44021432, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":44028476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":44035520, + "target":34963 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":44037512, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":44038616, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":44039720, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":44040456, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":44041080, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":44041704, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":44042120, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":44049260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":44056400, + "target":34963 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":44058392, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":44065520, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":44072648, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":44074640, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":44075216, + "target":34962 + }, + { + "buffer":0, + "byteLength":9456, + "byteOffset":44075792, + "target":34962 + }, + { + "buffer":0, + "byteLength":9456, + "byteOffset":44085248, + "target":34962 + }, + { + "buffer":0, + "byteLength":6304, + "byteOffset":44094704, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":44101008, + "target":34963 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":44103552, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":44106048, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":44108544, + "target":34962 + }, + { + "buffer":0, + "byteLength":102384, + "byteOffset":44110208, + "target":34962 + }, + { + "buffer":0, + "byteLength":102384, + "byteOffset":44212592, + "target":34962 + }, + { + "buffer":0, + "byteLength":68256, + "byteOffset":44314976, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":44383232, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":44416352, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":44416640, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":44416928, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":44417120, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":44419844, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":44422568, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":44424384, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":44424432, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":44424480, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":44424512, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":44431400, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":44438288, + "target":34963 + }, + { + "buffer":0, + "byteLength":11040, + "byteOffset":44440280, + "target":34962 + }, + { + "buffer":0, + "byteLength":11040, + "byteOffset":44451320, + "target":34962 + }, + { + "buffer":0, + "byteLength":7360, + "byteOffset":44462360, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":44469720, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":44472600, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":44479488, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":44486376, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":44488320, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":44490264, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":44491560, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":44498580, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":44505600, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":44508048, + "target":34962 + }, + { + "buffer":0, + "byteLength":8232, + "byteOffset":44510496, + "target":34962 + }, + { + "buffer":0, + "byteLength":8232, + "byteOffset":44518728, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":44526960, + "target":34963 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":44529624, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":44531124, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":44532624, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":44533624, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":44540536, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":44547448, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":44564488, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":44581528, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":44592888, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":44599752, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":44606616, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":44608608, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":44615616, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":44622624, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":44624616, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":44624664, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":44624712, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":44624744, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":44631680, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":44638616, + "target":34963 + }, + { + "buffer":0, + "byteLength":4344, + "byteOffset":44640608, + "target":34962 + }, + { + "buffer":0, + "byteLength":4344, + "byteOffset":44644952, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":44649296, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":44656256, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":44663216, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":44663360, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":44663504, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":44663600, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":44663888, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":44664176, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":44671208, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":44678240, + "target":34963 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":44680232, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":44680904, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":44681576, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":44682024, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":44683032, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":44684040, + "target":34962 + }, + { + "buffer":0, + "byteLength":252, + "byteOffset":44684712, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":44684964, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":44685252, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":44685540, + "target":34962 + }, + { + "buffer":0, + "byteLength":8208, + "byteOffset":44685732, + "target":34962 + }, + { + "buffer":0, + "byteLength":8208, + "byteOffset":44693940, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":44702148, + "target":34963 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":44704812, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":44706492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":44708172, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":44709292, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":44709580, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":44709868, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":44713732, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":44717596, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":44720172, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":44721828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":44723484, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":44724588, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":44724636, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":44724684, + "target":34962 + }, + { + "buffer":0, + "byteLength":2172, + "byteOffset":44724716, + "target":34962 + }, + { + "buffer":0, + "byteLength":2172, + "byteOffset":44726888, + "target":34962 + }, + { + "buffer":0, + "byteLength":1448, + "byteOffset":44729060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":44730508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":44731660, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":44732812, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":44733388, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":44733964, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":44734348, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":44737732, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":44741116, + "target":34962 + }, + { + "buffer":0, + "byteLength":3180, + "byteOffset":44743372, + "target":34962 + }, + { + "buffer":0, + "byteLength":3180, + "byteOffset":44746552, + "target":34962 + }, + { + "buffer":0, + "byteLength":2120, + "byteOffset":44749732, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":44751852, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":44754564, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":44757276, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":44758260, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":44765220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":44772180, + "target":34963 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":44774172, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":44781240, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":44788308, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":44790300, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":44797236, + "target":34962 + }, + { + "buffer":0, + "byteLength":92988, + "byteOffset":44804172, + "target":34962 + }, + { + "buffer":0, + "byteLength":92988, + "byteOffset":44897160, + "target":34962 + }, + { + "buffer":0, + "byteLength":61992, + "byteOffset":44990148, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":45052140, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":45059184, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":45066228, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":45073392, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":45080556, + "target":34963 + }, + { + "buffer":0, + "byteLength":2904, + "byteOffset":45082548, + "target":34962 + }, + { + "buffer":0, + "byteLength":2904, + "byteOffset":45085452, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":45088356, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45089340, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45089388, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":45089436, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45089468, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45089516, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":45089564, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45089596, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45089644, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":45089692, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":45089724, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":45096732, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":45103740, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":45104028, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":45104316, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":45104508, + "target":34963 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":45104580, + "target":34962 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":45111804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":45119028, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":45121020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":45122172, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":45123324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":45125076, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":45126828, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":45127996, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":45128860, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":45129724, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":45133840, + "target":34962 + }, + { + "buffer":0, + "byteLength":2744, + "byteOffset":45137956, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":45140700, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":45142140, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":45149076, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":45156012, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":45158004, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":45159348, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":45160692, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":45161340, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":45168348, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45175356, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45175404, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":45175452, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":45175484, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":45175772, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":45176060, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":45176252, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":45178964, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":45181676, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45182660, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45182708, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":45182756, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45182788, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45182836, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":45182884, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":45182916, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":45199956, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":45216996, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45228356, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45228404, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":45228452, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":45228484, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":45231196, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":45233908, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":45234892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":45236644, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":45238396, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":45239564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":45240620, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":45241676, + "target":34962 + }, + { + "buffer":0, + "byteLength":11148, + "byteOffset":45242380, + "target":34962 + }, + { + "buffer":0, + "byteLength":11148, + "byteOffset":45253528, + "target":34962 + }, + { + "buffer":0, + "byteLength":7432, + "byteOffset":45264676, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45272108, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45272156, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":45272204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":45272236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":45273892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":45275548, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":45276652, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":45276940, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":45277228, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":45277420, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":45278332, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":45279244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":45279852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":45281772, + "target":34962 + }, + { + "buffer":0, + "byteLength":1280, + "byteOffset":45283692, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":45284972, + "target":34963 + }, + { + "buffer":0, + "byteLength":4464, + "byteOffset":45285644, + "target":34962 + }, + { + "buffer":0, + "byteLength":4464, + "byteOffset":45290108, + "target":34962 + }, + { + "buffer":0, + "byteLength":2976, + "byteOffset":45294572, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":45297548, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":45319268, + "target":34962 + }, + { + "buffer":0, + "byteLength":14480, + "byteOffset":45340988, + "target":34962 + }, + { + "buffer":0, + "byteLength":19416, + "byteOffset":45355468, + "target":34963 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":45374884, + "target":34962 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":45382108, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45389332, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45389380, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":45389428, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":45389460, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":45391908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":45394356, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":45395988, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":45397740, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":45399492, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":45400660, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":45400948, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":45401236, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":45401428, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":45418468, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":45435508, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":45446868, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":45451092, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":45455316, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":45462204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":45469092, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":45471084, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":45478044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":45485004, + "target":34963 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":45486996, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":45494076, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":45501156, + "target":34963 + }, + { + "buffer":0, + "byteLength":15996, + "byteOffset":45503148, + "target":34962 + }, + { + "buffer":0, + "byteLength":15996, + "byteOffset":45519144, + "target":34962 + }, + { + "buffer":0, + "byteLength":10664, + "byteOffset":45535140, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":45545804, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":45550028, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":45554252, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":45561164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":45568076, + "target":34963 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":45570068, + "target":34962 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":45573980, + "target":34962 + }, + { + "buffer":0, + "byteLength":2608, + "byteOffset":45577892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":45580500, + "target":34963 + }, + { + "buffer":0, + "byteLength":9720, + "byteOffset":45581940, + "target":34962 + }, + { + "buffer":0, + "byteLength":9720, + "byteOffset":45591660, + "target":34962 + }, + { + "buffer":0, + "byteLength":6480, + "byteOffset":45601380, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":45607860, + "target":34963 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":45610404, + "target":34962 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":45620184, + "target":34962 + }, + { + "buffer":0, + "byteLength":6520, + "byteOffset":45629964, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":45636484, + "target":34963 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":45639028, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":45641452, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":45643876, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":45645492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":45646596, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":45647700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":45648436, + "target":34962 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":45649888, + "target":34962 + }, + { + "buffer":0, + "byteLength":968, + "byteOffset":45651340, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45652308, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45652356, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":45652404, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":45652436, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":45659420, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":45666404, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":45670268, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":45674132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1908, + "byteOffset":45676708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1908, + "byteOffset":45678616, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":45680524, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":45681796, + "target":34963 + }, + { + "buffer":0, + "byteLength":7308, + "byteOffset":45682276, + "target":34962 + }, + { + "buffer":0, + "byteLength":7308, + "byteOffset":45689584, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":45696892, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":45700924, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":45704956, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":45705820, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45706684, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45706732, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":45706780, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":45706812, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":45713892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":45720972, + "target":34963 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":45722964, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":45726840, + "target":34962 + }, + { + "buffer":0, + "byteLength":2584, + "byteOffset":45730716, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":45733300, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":45740380, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":45747460, + "target":34963 + }, + { + "buffer":0, + "byteLength":48744, + "byteOffset":45749452, + "target":34962 + }, + { + "buffer":0, + "byteLength":48744, + "byteOffset":45798196, + "target":34962 + }, + { + "buffer":0, + "byteLength":32496, + "byteOffset":45846940, + "target":34962 + }, + { + "buffer":0, + "byteLength":42888, + "byteOffset":45879436, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45922324, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45922372, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":45922420, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":45922452, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":45929460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":45936468, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":45938460, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":45938748, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":45939036, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":45939228, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":45956268, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":45973308, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45984668, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":45984716, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":45984764, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":45984796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":45986260, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":45987724, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":45988700, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":46008620, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":46028540, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":46041820, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":46042432, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":46043044, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":46043452, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":46050388, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":46057324, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":46059556, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":46061788, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":46063276, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":46063564, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":46063852, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":46064764, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":46065676, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":46066284, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":46083324, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":46100364, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":46111724, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":46111868, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":46112012, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":46112108, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":46119044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":46125980, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":46127972, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":46128020, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":46128068, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":46128100, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":46135084, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":46142068, + "target":34963 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":46144060, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":46144648, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":46145236, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":46145628, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":46145916, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":46146204, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":46146396, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":46153320, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":46160244, + "target":34963 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":46162236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":46163820, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":46165404, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":46166460, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":46174236, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":46182012, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":46187196, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":46187724, + "target":34962 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":46188252, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":46188604, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":46188652, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":46188700, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":46188732, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":46189332, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":46189932, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":46190332, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":46190380, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":46190428, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":46190460, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":46190508, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":46190556, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":46190588, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":46190636, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":46190684, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":46190716, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":46193164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":46195612, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":46197028, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":46198444, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":46199388, + "target":34963 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":46199868, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":46207284, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":46214700, + "target":34962 + }, + { + "buffer":0, + "byteLength":3612, + "byteOffset":46219644, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":46223256, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":46230192, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":46237128, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":46244052, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":46250976, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":46258044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":46265112, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":46267104, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":46274136, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":46281168, + "target":34963 + }, + { + "buffer":0, + "byteLength":2436, + "byteOffset":46283160, + "target":34962 + }, + { + "buffer":0, + "byteLength":2436, + "byteOffset":46285596, + "target":34962 + }, + { + "buffer":0, + "byteLength":1624, + "byteOffset":46288032, + "target":34962 + }, + { + "buffer":0, + "byteLength":7236, + "byteOffset":46289656, + "target":34962 + }, + { + "buffer":0, + "byteLength":7236, + "byteOffset":46296892, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":46304128, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":46310872, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":46317616, + "target":34963 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":46319608, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":46326376, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":46333144, + "target":34963 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":46335136, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":46343320, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":46351504, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":46356960, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":46359648, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":46362336, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":46369284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":46376232, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":46378224, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":46385160, + "target":34962 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":46392096, + "target":34962 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":46488648, + "target":34962 + }, + { + "buffer":0, + "byteLength":64368, + "byteOffset":46585200, + "target":34962 + }, + { + "buffer":0, + "byteLength":2268, + "byteOffset":46649568, + "target":34962 + }, + { + "buffer":0, + "byteLength":2268, + "byteOffset":46651836, + "target":34962 + }, + { + "buffer":0, + "byteLength":1512, + "byteOffset":46654104, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":46655616, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":46656240, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":46663272, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":46670304, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":46672296, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":46672344, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":46672392, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":46672424, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":46672712, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":46673000, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":46677032, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":46681064, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":46682408, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":46683752, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":46684616, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":46685480, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":46685768, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":46686056, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":46688000, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":46689944, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":46691240, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":46698296, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":46705352, + "target":34963 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":46707344, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":46708772, + "target":34962 + }, + { + "buffer":0, + "byteLength":952, + "byteOffset":46710200, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":46711152, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":46711440, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":46711728, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":46711920, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":46719816, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":46727712, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":46732976, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":46734128, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":46735280, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":46735892, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":46736504, + "target":34962 + }, + { + "buffer":0, + "byteLength":15936, + "byteOffset":46736912, + "target":34962 + }, + { + "buffer":0, + "byteLength":15936, + "byteOffset":46752848, + "target":34962 + }, + { + "buffer":0, + "byteLength":10624, + "byteOffset":46768784, + "target":34962 + }, + { + "buffer":0, + "byteLength":5040, + "byteOffset":46779408, + "target":34963 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":46784448, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":46791168, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":46797888, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":46799880, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":46800168, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":46800456, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":46800648, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":46807560, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":46814472, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":46816464, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":46816752, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":46817040, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":46817232, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":46821456, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":46825680, + "target":34963 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":46827000, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":46834200, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":46841400, + "target":34963 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":46843392, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":46845216, + "target":34962 + }, + { + "buffer":0, + "byteLength":1216, + "byteOffset":46847040, + "target":34962 + }, + { + "buffer":0, + "byteLength":7452, + "byteOffset":46848256, + "target":34962 + }, + { + "buffer":0, + "byteLength":7452, + "byteOffset":46855708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":46863160, + "target":34963 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":46865152, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":46872328, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":46879504, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":46881496, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":46881544, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":46881592, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":46881624, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":46881672, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":46881720, + "target":34962 + }, + { + "buffer":0, + "byteLength":20832, + "byteOffset":46881752, + "target":34962 + }, + { + "buffer":0, + "byteLength":20832, + "byteOffset":46902584, + "target":34962 + }, + { + "buffer":0, + "byteLength":9912, + "byteOffset":46923416, + "target":34963 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":46933328, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":46935704, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":46938080, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":46939664, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":46940816, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":46941968, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":46942832, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":46943696, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":46955936, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":46968176, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":46976336, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":46976624, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":46976912, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":46977104, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":46983980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":46990856, + "target":34963 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":46992848, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":46996964, + "target":34962 + }, + { + "buffer":0, + "byteLength":2744, + "byteOffset":47001080, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":47003824, + "target":34963 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":47005264, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":47009344, + "target":34962 + }, + { + "buffer":0, + "byteLength":3696, + "byteOffset":47013424, + "target":34962 + }, + { + "buffer":0, + "byteLength":3696, + "byteOffset":47017120, + "target":34962 + }, + { + "buffer":0, + "byteLength":2464, + "byteOffset":47020816, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":47023280, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":47024720, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":47031728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":47038736, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":47039888, + "target":34962 + }, + { + "buffer":0, + "byteLength":9600, + "byteOffset":47041040, + "target":34962 + }, + { + "buffer":0, + "byteLength":9600, + "byteOffset":47050640, + "target":34962 + }, + { + "buffer":0, + "byteLength":6400, + "byteOffset":47060240, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":47066640, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":47074536, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":47082432, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":47087696, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":47090240, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":47097224, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":47104208, + "target":34963 + }, + { + "buffer":0, + "byteLength":2244, + "byteOffset":47106200, + "target":34962 + }, + { + "buffer":0, + "byteLength":2244, + "byteOffset":47108444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1496, + "byteOffset":47110688, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":47112184, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":47119072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":47125960, + "target":34963 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":47127952, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":47134696, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":47141440, + "target":34963 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":47143432, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":47149768, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":47156104, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47160328, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47160616, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":47160904, + "target":34962 + }, + { + "buffer":0, + "byteLength":29436, + "byteOffset":47161096, + "target":34962 + }, + { + "buffer":0, + "byteLength":29436, + "byteOffset":47190532, + "target":34962 + }, + { + "buffer":0, + "byteLength":19624, + "byteOffset":47219968, + "target":34962 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":47239592, + "target":34962 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":47252108, + "target":34962 + }, + { + "buffer":0, + "byteLength":8344, + "byteOffset":47264624, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47272968, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47273256, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":47273544, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":47273592, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":47273640, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":47273672, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":47274824, + "target":34962 + }, + { + "buffer":0, + "byteLength":9684, + "byteOffset":47275976, + "target":34962 + }, + { + "buffer":0, + "byteLength":9684, + "byteOffset":47285660, + "target":34962 + }, + { + "buffer":0, + "byteLength":6456, + "byteOffset":47295344, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":47301800, + "target":34963 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":47304344, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":47311292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":47318240, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":47319668, + "target":34962 + }, + { + "buffer":0, + "byteLength":952, + "byteOffset":47321096, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":47322048, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":47329080, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":47336112, + "target":34963 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":47338104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":47340072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1312, + "byteOffset":47342040, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":47343352, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":47344780, + "target":34962 + }, + { + "buffer":0, + "byteLength":952, + "byteOffset":47346208, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":47347160, + "target":34963 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":47347640, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":47348492, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":47349344, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":47349912, + "target":34963 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":47350128, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":47354208, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":47358288, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":47358336, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":47358384, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":47358416, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":47365328, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":47372240, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":47373680, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":47375120, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":47376080, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":47384264, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":47392448, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":47397904, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":47398768, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":47399632, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":47416672, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":47433712, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":47445072, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":47447760, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":47450448, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":47457372, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":47464296, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":47471220, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":47478144, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":47478864, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":47479584, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":47480064, + "target":34962 + }, + { + "buffer":0, + "byteLength":1656, + "byteOffset":47481720, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":47483376, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":47484480, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":47491536, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":47498592, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":47505168, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":47511744, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":47516128, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":47518816, + "target":34962 + }, + { + "buffer":0, + "byteLength":6804, + "byteOffset":47521504, + "target":34962 + }, + { + "buffer":0, + "byteLength":6804, + "byteOffset":47528308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":47535112, + "target":34963 + }, + { + "buffer":0, + "byteLength":9756, + "byteOffset":47537104, + "target":34962 + }, + { + "buffer":0, + "byteLength":9756, + "byteOffset":47546860, + "target":34962 + }, + { + "buffer":0, + "byteLength":6504, + "byteOffset":47556616, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":47563120, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":47565664, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":47566528, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":47567392, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":47568736, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":47570080, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":47570976, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":47577960, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":47584944, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":47591832, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":47598720, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":47599632, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":47600544, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":47601152, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":47608064, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":47614976, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":47616968, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":47623976, + "target":34962 + }, + { + "buffer":0, + "byteLength":1548, + "byteOffset":47630984, + "target":34962 + }, + { + "buffer":0, + "byteLength":1548, + "byteOffset":47632532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1032, + "byteOffset":47634080, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47635112, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47635400, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":47635688, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":47642840, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":47649992, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":47656928, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":47663864, + "target":34963 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":47665856, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":47672600, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":47679344, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":47683208, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":47687072, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":47689648, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":47692336, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47695024, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47695312, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":47695600, + "target":34962 + }, + { + "buffer":0, + "byteLength":5808, + "byteOffset":47695792, + "target":34962 + }, + { + "buffer":0, + "byteLength":5808, + "byteOffset":47701600, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":47707408, + "target":34963 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":47710192, + "target":34962 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":47714176, + "target":34962 + }, + { + "buffer":0, + "byteLength":2656, + "byteOffset":47718160, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":47720816, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":47720864, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":47720912, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":47720944, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":47722120, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":47723296, + "target":34962 + }, + { + "buffer":0, + "byteLength":348, + "byteOffset":47724080, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47724428, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47724716, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":47725004, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":47732180, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":47739356, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":47741348, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":47748236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":47755124, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47757116, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47757404, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":47757692, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":47757884, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":47774924, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":47791964, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":47803324, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":47803372, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":47803420, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":47803452, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":47804316, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":47805180, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":47808564, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":47811948, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":47814204, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":47816928, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":47819652, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47821468, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47821756, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":47822044, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":47841964, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":47861884, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47875164, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47875452, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":47875740, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":47875932, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":47877036, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":47878140, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":47878876, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":47879476, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":47880076, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47880476, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47880764, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":47881052, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":47881244, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":47881820, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":47882396, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":47882780, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":47889500, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":47896220, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":47898452, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":47900684, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":47902172, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":47903084, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":47903996, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":47904604, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":47904748, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":47904892, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":47904988, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":47911972, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":47918956, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":47919808, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":47920660, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":47921228, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":47929124, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":47937020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1572, + "byteOffset":47942284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1572, + "byteOffset":47943856, + "target":34962 + }, + { + "buffer":0, + "byteLength":1048, + "byteOffset":47945428, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":47946476, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":47946956, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":47953940, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":47960924, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":47962916, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":47963492, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":47964068, + "target":34962 + }, + { + "buffer":0, + "byteLength":3576, + "byteOffset":47964452, + "target":34962 + }, + { + "buffer":0, + "byteLength":3576, + "byteOffset":47968028, + "target":34962 + }, + { + "buffer":0, + "byteLength":2384, + "byteOffset":47971604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":47973988, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":47975428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":47976772, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":47978116, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47979012, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47979300, + "target":34962 + }, + { + "buffer":0, + "byteLength":1380, + "byteOffset":47979588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1380, + "byteOffset":47980968, + "target":34962 + }, + { + "buffer":0, + "byteLength":920, + "byteOffset":47982348, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":47983268, + "target":34963 + }, + { + "buffer":0, + "byteLength":99480, + "byteOffset":47983748, + "target":34962 + }, + { + "buffer":0, + "byteLength":99480, + "byteOffset":48083228, + "target":34962 + }, + { + "buffer":0, + "byteLength":66320, + "byteOffset":48182708, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":48249028, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":48252892, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":48256756, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":48259332, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":48261780, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48264228, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48264516, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":48264804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":48264996, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":48266676, + "target":34962 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":48268356, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":48269476, + "target":34963 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":48270124, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":48277324, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":48284524, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":48288628, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":48292732, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":48295468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":48302236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":48309004, + "target":34963 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":48310996, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":48318172, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":48325348, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48327340, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48327628, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":48327916, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":48328108, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":48334948, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":48341788, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":48348712, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":48355636, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48357628, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48357676, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":48357724, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":48357756, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":48361980, + "target":34962 + }, + { + "buffer":0, + "byteLength":2816, + "byteOffset":48366204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":48369020, + "target":34963 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":48370460, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":48377252, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":48384044, + "target":34963 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":48386036, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":48390140, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":48394244, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":48401324, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48408404, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48408452, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":48408500, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48408532, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48408820, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48409108, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48409396, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":48409684, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":48409876, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":48413908, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48417940, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48418228, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48418516, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48418564, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":48418612, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":48418644, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":48425724, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":48432804, + "target":34963 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":48434796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":48436428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":48438060, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48439148, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48439436, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":48439724, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":48439916, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":48446840, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":48453764, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":48455756, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":48462764, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":48469772, + "target":34963 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":48471764, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":48478820, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":48485876, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":48487028, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48488180, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48488228, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":48488276, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":48488308, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":48488920, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":48489532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":48489940, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":48491284, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48492628, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48492916, + "target":34962 + }, + { + "buffer":0, + "byteLength":2904, + "byteOffset":48493204, + "target":34962 + }, + { + "buffer":0, + "byteLength":2904, + "byteOffset":48496108, + "target":34962 + }, + { + "buffer":0, + "byteLength":4068, + "byteOffset":48499012, + "target":34962 + }, + { + "buffer":0, + "byteLength":4068, + "byteOffset":48503080, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":48507148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":48509860, + "target":34963 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":48511300, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":48514012, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":48516724, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":48517708, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":48524716, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":48531724, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":48538912, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":48546100, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48548092, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48548140, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":48548188, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48548220, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48548268, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":48548316, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48548348, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48548636, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":48548924, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":48549116, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":48551492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":48553868, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":48555452, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":48556604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":48557756, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":48559508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":48561260, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48562428, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48562716, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":48563004, + "target":34962 + }, + { + "buffer":0, + "byteLength":5400, + "byteOffset":48563196, + "target":34962 + }, + { + "buffer":0, + "byteLength":5400, + "byteOffset":48568596, + "target":34962 + }, + { + "buffer":0, + "byteLength":3600, + "byteOffset":48573996, + "target":34962 + }, + { + "buffer":0, + "byteLength":1764, + "byteOffset":48577596, + "target":34962 + }, + { + "buffer":0, + "byteLength":1764, + "byteOffset":48579360, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":48581124, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":48582300, + "target":34963 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":48582780, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":48585492, + "target":34962 + }, + { + "buffer":0, + "byteLength":2064, + "byteOffset":48588204, + "target":34962 + }, + { + "buffer":0, + "byteLength":2064, + "byteOffset":48590268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1376, + "byteOffset":48592332, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":48593708, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":48600656, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":48607604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":48608756, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":48609908, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":48610820, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":48611732, + "target":34962 + }, + { + "buffer":0, + "byteLength":9540, + "byteOffset":48612340, + "target":34962 + }, + { + "buffer":0, + "byteLength":9540, + "byteOffset":48621880, + "target":34962 + }, + { + "buffer":0, + "byteLength":6360, + "byteOffset":48631420, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":48637780, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":48644596, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":48651412, + "target":34963 + }, + { + "buffer":0, + "byteLength":2208, + "byteOffset":48653404, + "target":34962 + }, + { + "buffer":0, + "byteLength":2208, + "byteOffset":48655612, + "target":34962 + }, + { + "buffer":0, + "byteLength":1472, + "byteOffset":48657820, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":48659292, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":48666492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":48673692, + "target":34963 + }, + { + "buffer":0, + "byteLength":2436, + "byteOffset":48675684, + "target":34962 + }, + { + "buffer":0, + "byteLength":2436, + "byteOffset":48678120, + "target":34962 + }, + { + "buffer":0, + "byteLength":1624, + "byteOffset":48680556, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":48682180, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":48688516, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":48694852, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":48699076, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":48706120, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48713164, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48713452, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":48713740, + "target":34962 + }, + { + "buffer":0, + "byteLength":11148, + "byteOffset":48713932, + "target":34962 + }, + { + "buffer":0, + "byteLength":11148, + "byteOffset":48725080, + "target":34962 + }, + { + "buffer":0, + "byteLength":7432, + "byteOffset":48736228, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":48743660, + "target":34963 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":48752636, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":48772556, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":48792476, + "target":34962 + }, + { + "buffer":0, + "byteLength":3312, + "byteOffset":48805756, + "target":34962 + }, + { + "buffer":0, + "byteLength":3312, + "byteOffset":48809068, + "target":34962 + }, + { + "buffer":0, + "byteLength":2208, + "byteOffset":48812380, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48814588, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48814636, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":48814684, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48814716, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48814764, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":48814812, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48814844, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48815132, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":48815420, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48815612, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48815660, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":48815708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":48815740, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":48817372, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":48819004, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":48820092, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":48822588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":48825084, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":48826748, + "target":34963 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":48827708, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":48830444, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":48833180, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":48840236, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":48847292, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":48864332, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":48881372, + "target":34962 + }, + { + "buffer":0, + "byteLength":7272, + "byteOffset":48892732, + "target":34962 + }, + { + "buffer":0, + "byteLength":7272, + "byteOffset":48900004, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":48907276, + "target":34963 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":48909268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":48910564, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":48911860, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48912724, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":48913012, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":48913300, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":48921076, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":48928852, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":48934036, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":48937420, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":48940804, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":48943060, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":48960100, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":48977140, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48988500, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48988548, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":48988596, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":48988628, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":48995516, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":49002404, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":49006460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":49010516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":49011980, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":49013444, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":49014420, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":49014972, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":49015524, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49015892, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49015940, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":49015988, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":49016020, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":49019476, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":49022932, + "target":34963 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":49026076, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":49030204, + "target":34962 + }, + { + "buffer":0, + "byteLength":2752, + "byteOffset":49034332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":49037084, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49038524, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49038572, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":49038620, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":49038652, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":49045396, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":49052140, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":49054132, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":49054420, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49054708, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49054756, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":49054804, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":49054836, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":49061712, + "target":34962 + }, + { + "buffer":0, + "byteLength":9792, + "byteOffset":49068588, + "target":34962 + }, + { + "buffer":0, + "byteLength":9792, + "byteOffset":49078380, + "target":34962 + }, + { + "buffer":0, + "byteLength":6528, + "byteOffset":49088172, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":49094700, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":49097244, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":49104204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1260, + "byteOffset":49111164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1260, + "byteOffset":49112424, + "target":34962 + }, + { + "buffer":0, + "byteLength":840, + "byteOffset":49113684, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":49114524, + "target":34963 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":49115004, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":49122780, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":49130556, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":49135740, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":49136028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":49136316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":49137900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":49139484, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":49140540, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":49141020, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":49143744, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":49146468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":49148284, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":49155028, + "target":34962 + }, + { + "buffer":0, + "byteLength":2844, + "byteOffset":49161772, + "target":34962 + }, + { + "buffer":0, + "byteLength":2844, + "byteOffset":49164616, + "target":34962 + }, + { + "buffer":0, + "byteLength":1896, + "byteOffset":49167460, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":49169356, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":49173460, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":49177564, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":49178428, + "target":34962 + }, + { + "buffer":0, + "byteLength":9072, + "byteOffset":49179292, + "target":34962 + }, + { + "buffer":0, + "byteLength":9072, + "byteOffset":49188364, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":49197436, + "target":34963 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":49200100, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":49201396, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":49202692, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":49203556, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":49207420, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":49211284, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":49213860, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":49214268, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":49214676, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":49214948, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":49221656, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":49228364, + "target":34962 + }, + { + "buffer":0, + "byteLength":3972, + "byteOffset":49232836, + "target":34962 + }, + { + "buffer":0, + "byteLength":3972, + "byteOffset":49236808, + "target":34962 + }, + { + "buffer":0, + "byteLength":2648, + "byteOffset":49240780, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49243428, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49243476, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":49243524, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":49243556, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":49253936, + "target":34962 + }, + { + "buffer":0, + "byteLength":6920, + "byteOffset":49264316, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":49271236, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":49277956, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49284676, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49284724, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":49284772, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":49284804, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":49288884, + "target":34962 + }, + { + "buffer":0, + "byteLength":2720, + "byteOffset":49292964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":49295684, + "target":34963 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":49297124, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":49304180, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":49311236, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":49313228, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":49313516, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":49313804, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":49313996, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":49320716, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":49327436, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":49344476, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":49361516, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49372876, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49372924, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":49372972, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":49373004, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":49373484, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":49373964, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49374284, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49374332, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":49374380, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":49374412, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":49377796, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":49381180, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":49383436, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":49403356, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":49423276, + "target":34962 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":49436556, + "target":34962 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":49437192, + "target":34962 + }, + { + "buffer":0, + "byteLength":424, + "byteOffset":49437828, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":49438252, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":49438840, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":49439428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":49439820, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":49441572, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":49443324, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49444492, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49444540, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":49444588, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":49444620, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":49446852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":49449084, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":49450572, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":49451484, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":49452396, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":49453004, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":49460180, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":49467356, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":49471220, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":49475084, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":49477660, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":49484644, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49491628, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49491676, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":49491724, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49491756, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":49491804, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":49491852, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":49491884, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":49494596, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":49497308, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":49498292, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":49498580, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":49498868, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":49499060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":49500476, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":49501892, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":49502836, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":49503124, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":49503412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1764, + "byteOffset":49503604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1764, + "byteOffset":49505368, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":49507132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":49508308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":49509364, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":49510420, + "target":34962 + }, + { + "buffer":0, + "byteLength":98232, + "byteOffset":49511124, + "target":34962 + }, + { + "buffer":0, + "byteLength":98232, + "byteOffset":49609356, + "target":34962 + }, + { + "buffer":0, + "byteLength":65488, + "byteOffset":49707588, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":49773076, + "target":34963 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":49806196, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":49810060, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":49813924, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":49816500, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":49817076, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":49817652, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":49818036, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":49825452, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":49832868, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":49837812, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":49854852, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":49871892, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":49883252, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":49883540, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":49883828, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":49884020, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":49890992, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":49897964, + "target":34963 + }, + { + "buffer":0, + "byteLength":3948, + "byteOffset":49899956, + "target":34962 + }, + { + "buffer":0, + "byteLength":3948, + "byteOffset":49903904, + "target":34962 + }, + { + "buffer":0, + "byteLength":2632, + "byteOffset":49907852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":49910484, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":49911924, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":49918836, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":49925748, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":49932468, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":49939188, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":49946244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":49953300, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":49955292, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":49962228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":49969164, + "target":34963 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":49971156, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":49978200, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":49985244, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":49992132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":49999020, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":50001012, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":50007972, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":50014932, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":50018964, + "target":34962 + }, + { + "buffer":0, + "byteLength":7464, + "byteOffset":50022996, + "target":34962 + }, + { + "buffer":0, + "byteLength":7464, + "byteOffset":50030460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":50037924, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":50039916, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":50046948, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50053980, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50054028, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":50054076, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":50054108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":50055860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":50057612, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":50058780, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":50059356, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50059932, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50060220, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":50060508, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":50061084, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":50061660, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":50062044, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":50062812, + "target":34962 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":50063580, + "target":34962 + }, + { + "buffer":0, + "byteLength":7272, + "byteOffset":50064092, + "target":34962 + }, + { + "buffer":0, + "byteLength":7272, + "byteOffset":50071364, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50078636, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50078924, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":50079212, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":50079404, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":50086220, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":50093036, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":50099996, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":50106956, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":50108948, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":50115932, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":50122916, + "target":34963 + }, + { + "buffer":0, + "byteLength":12600, + "byteOffset":50124908, + "target":34962 + }, + { + "buffer":0, + "byteLength":12600, + "byteOffset":50137508, + "target":34962 + }, + { + "buffer":0, + "byteLength":8400, + "byteOffset":50150108, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":50158508, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":50161028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":50163548, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50165228, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50165276, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":50165324, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50165356, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50165644, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":50165932, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":50166508, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":50167084, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":50167468, + "target":34963 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":50167636, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":50174356, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":50181076, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":50181688, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":50182300, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":50182708, + "target":34963 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":50182876, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":50189800, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":50196724, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":50203732, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":50210740, + "target":34963 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":50212732, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":50219872, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":50227012, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50229004, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50229052, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":50229100, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50229132, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50229420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":50229708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":50231652, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":50233596, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":50234892, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":50243556, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50252220, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50252268, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":50252316, + "target":34962 + }, + { + "buffer":0, + "byteLength":9648, + "byteOffset":50252348, + "target":34962 + }, + { + "buffer":0, + "byteLength":9648, + "byteOffset":50261996, + "target":34962 + }, + { + "buffer":0, + "byteLength":6432, + "byteOffset":50271644, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":50278076, + "target":34963 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":50280620, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":50284772, + "target":34962 + }, + { + "buffer":0, + "byteLength":2768, + "byteOffset":50288924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":50291692, + "target":34963 + }, + { + "buffer":0, + "byteLength":16104, + "byteOffset":50293132, + "target":34962 + }, + { + "buffer":0, + "byteLength":16104, + "byteOffset":50309236, + "target":34962 + }, + { + "buffer":0, + "byteLength":7560, + "byteOffset":50325340, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":50332900, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":50333764, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":50334628, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":50338504, + "target":34962 + }, + { + "buffer":0, + "byteLength":2584, + "byteOffset":50342380, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":50344964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":50346116, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50347268, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50347316, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":50347364, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":50347396, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":50354812, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":50362228, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50367172, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50367460, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":50367748, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":50374456, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":50381164, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":50385636, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":50390244, + "target":34962 + }, + { + "buffer":0, + "byteLength":3072, + "byteOffset":50394852, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":50397924, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":50404932, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":50411940, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":50418924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":50425908, + "target":34963 + }, + { + "buffer":0, + "byteLength":9624, + "byteOffset":50427900, + "target":34962 + }, + { + "buffer":0, + "byteLength":9624, + "byteOffset":50437524, + "target":34962 + }, + { + "buffer":0, + "byteLength":6416, + "byteOffset":50447148, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":50453564, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":50460740, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50467916, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50468204, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":50468492, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":50468684, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":50475548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":50482412, + "target":34963 + }, + { + "buffer":0, + "byteLength":1668, + "byteOffset":50484404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1668, + "byteOffset":50486072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1112, + "byteOffset":50487740, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":50488852, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":50497036, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":50505220, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":50510676, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":50513424, + "target":34962 + }, + { + "buffer":0, + "byteLength":1832, + "byteOffset":50516172, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":50518004, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":50525072, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50532140, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50532188, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":50532236, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":50532268, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":50540164, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":50548060, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50553324, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50553612, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":50553900, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":50557980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":50562060, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50563380, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50563428, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":50563476, + "target":34962 + }, + { + "buffer":0, + "byteLength":9804, + "byteOffset":50563508, + "target":34962 + }, + { + "buffer":0, + "byteLength":9804, + "byteOffset":50573312, + "target":34962 + }, + { + "buffer":0, + "byteLength":6536, + "byteOffset":50583116, + "target":34962 + }, + { + "buffer":0, + "byteLength":12600, + "byteOffset":50589652, + "target":34962 + }, + { + "buffer":0, + "byteLength":12600, + "byteOffset":50602252, + "target":34962 + }, + { + "buffer":0, + "byteLength":8400, + "byteOffset":50614852, + "target":34962 + }, + { + "buffer":0, + "byteLength":2604, + "byteOffset":50623252, + "target":34962 + }, + { + "buffer":0, + "byteLength":2604, + "byteOffset":50625856, + "target":34962 + }, + { + "buffer":0, + "byteLength":1736, + "byteOffset":50628460, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":50630196, + "target":34963 + }, + { + "buffer":0, + "byteLength":9552, + "byteOffset":50631156, + "target":34962 + }, + { + "buffer":0, + "byteLength":9552, + "byteOffset":50640708, + "target":34962 + }, + { + "buffer":0, + "byteLength":6368, + "byteOffset":50650260, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":50656628, + "target":34963 + }, + { + "buffer":0, + "byteLength":1872, + "byteOffset":50659172, + "target":34962 + }, + { + "buffer":0, + "byteLength":1872, + "byteOffset":50661044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1248, + "byteOffset":50662916, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":50664164, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":50664884, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":50665748, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":50666612, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":50683652, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":50700692, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":50712052, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":50712964, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":50713876, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":50714484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":50715588, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":50716692, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":50717428, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":50724556, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":50731684, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50733676, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50733964, + "target":34962 + }, + { + "buffer":0, + "byteLength":2532, + "byteOffset":50734252, + "target":34962 + }, + { + "buffer":0, + "byteLength":2532, + "byteOffset":50736784, + "target":34962 + }, + { + "buffer":0, + "byteLength":1688, + "byteOffset":50739316, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":50741004, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50741964, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50742012, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":50742060, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":50742092, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":50754332, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":50766572, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50774732, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50774780, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":50774828, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":50774860, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":50778940, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50783020, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":50783068, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":50783116, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":50783148, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":50784060, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":50784972, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":50785580, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":50786444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":50787308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":50788808, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":50790308, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":50791308, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":50798316, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50805324, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50805612, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":50805900, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":50806092, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":50810208, + "target":34962 + }, + { + "buffer":0, + "byteLength":2744, + "byteOffset":50814324, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":50817068, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":50819300, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":50821532, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":50823020, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":50829860, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":50836700, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":50837564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1368, + "byteOffset":50838428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1368, + "byteOffset":50839796, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":50841164, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":50842076, + "target":34963 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":50842556, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":50849660, + "target":34962 + }, + { + "buffer":0, + "byteLength":9840, + "byteOffset":50856764, + "target":34962 + }, + { + "buffer":0, + "byteLength":9840, + "byteOffset":50866604, + "target":34962 + }, + { + "buffer":0, + "byteLength":6560, + "byteOffset":50876444, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":50883004, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":50889988, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":50896972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":50898472, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":50899972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":50900972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":50902316, + "target":34962 + }, + { + "buffer":0, + "byteLength":59760, + "byteOffset":50903660, + "target":34962 + }, + { + "buffer":0, + "byteLength":59760, + "byteOffset":50963420, + "target":34962 + }, + { + "buffer":0, + "byteLength":39840, + "byteOffset":51023180, + "target":34962 + }, + { + "buffer":0, + "byteLength":23952, + "byteOffset":51063020, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":51086972, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":51093908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":51100844, + "target":34963 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":51102836, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":51106700, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":51110564, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":51113140, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":51115996, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":51118852, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":51122236, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":51125620, + "target":34962 + }, + { + "buffer":0, + "byteLength":3936, + "byteOffset":51127876, + "target":34962 + }, + { + "buffer":0, + "byteLength":3936, + "byteOffset":51131812, + "target":34962 + }, + { + "buffer":0, + "byteLength":2624, + "byteOffset":51135748, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":51138372, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":51138420, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":51138468, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":51138500, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":51142376, + "target":34962 + }, + { + "buffer":0, + "byteLength":2584, + "byteOffset":51146252, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":51148836, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":51149124, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":51149412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":51149604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":51150708, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":51151812, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":51152548, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":51159412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":51166276, + "target":34963 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":51168268, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":51175444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":51182620, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":51184612, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":51185524, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":51186436, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":51187044, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":51199284, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":51211524, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":51219684, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":51219972, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":51220260, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":51220452, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":51220500, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":51220548, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":51220580, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":51240500, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":51260420, + "target":34962 + }, + { + "buffer":0, + "byteLength":97188, + "byteOffset":51273700, + "target":34962 + }, + { + "buffer":0, + "byteLength":97188, + "byteOffset":51370888, + "target":34962 + }, + { + "buffer":0, + "byteLength":64792, + "byteOffset":51468076, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":51532868, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":51533444, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":51534020, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":51534404, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":51541460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":51548516, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":51550508, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":51550796, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":51551084, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":51558980, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":51566876, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":51572140, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":51574372, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":51576604, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":51578092, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":51584908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":51591724, + "target":34963 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":51593716, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":51600796, + "target":34962 + }, + { + "buffer":0, + "byteLength":9564, + "byteOffset":51607876, + "target":34962 + }, + { + "buffer":0, + "byteLength":9564, + "byteOffset":51617440, + "target":34962 + }, + { + "buffer":0, + "byteLength":6376, + "byteOffset":51627004, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":51633380, + "target":34963 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":51635924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":51637340, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":51638756, + "target":34962 + }, + { + "buffer":0, + "byteLength":12264, + "byteOffset":51639700, + "target":34962 + }, + { + "buffer":0, + "byteLength":12264, + "byteOffset":51651964, + "target":34962 + }, + { + "buffer":0, + "byteLength":8176, + "byteOffset":51664228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1980, + "byteOffset":51672404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1980, + "byteOffset":51674384, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":51676364, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":51677684, + "target":34963 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":51678404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1284, + "byteOffset":51679688, + "target":34962 + }, + { + "buffer":0, + "byteLength":856, + "byteOffset":51680972, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":51681828, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":51682116, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":51682164, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":51682212, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":51682244, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":51686108, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":51689972, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":51692548, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":51699496, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":51706444, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":51713308, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":51720172, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":51727168, + "target":34962 + }, + { + "buffer":0, + "byteLength":58944, + "byteOffset":51734164, + "target":34962 + }, + { + "buffer":0, + "byteLength":58944, + "byteOffset":51793108, + "target":34962 + }, + { + "buffer":0, + "byteLength":39296, + "byteOffset":51852052, + "target":34962 + }, + { + "buffer":0, + "byteLength":23952, + "byteOffset":51891348, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":51915300, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":51922332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":51929364, + "target":34963 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":51931356, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":51934104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1832, + "byteOffset":51936852, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":51938684, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":51939644, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":51946676, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":51953708, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":51960668, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":51967628, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":51969620, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":51976532, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":51983444, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":51983732, + "target":34962 + }, + { + "buffer":0, + "byteLength":8208, + "byteOffset":51984020, + "target":34962 + }, + { + "buffer":0, + "byteLength":8208, + "byteOffset":51992228, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":52000436, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":52003100, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":52010012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":52016924, + "target":34963 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":52018916, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":52021676, + "target":34962 + }, + { + "buffer":0, + "byteLength":1840, + "byteOffset":52024436, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52026276, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52026564, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":52026852, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":52027044, + "target":34963 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":52027116, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":52034172, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52041228, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52041516, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":52041804, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":52048884, + "target":34962 + }, + { + "buffer":0, + "byteLength":1896, + "byteOffset":52055964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1896, + "byteOffset":52057860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1264, + "byteOffset":52059756, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":52061020, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":52065100, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":52069180, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":52070500, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":52071076, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":52071652, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":52078852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":52086052, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":52088044, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":52090768, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":52093492, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52095308, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52095356, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":52095404, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52095436, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52095724, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":52096012, + "target":34962 + }, + { + "buffer":0, + "byteLength":4464, + "byteOffset":52096204, + "target":34962 + }, + { + "buffer":0, + "byteLength":4464, + "byteOffset":52100668, + "target":34962 + }, + { + "buffer":0, + "byteLength":2976, + "byteOffset":52105132, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":52108108, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":52110892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1856, + "byteOffset":52113676, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":52115532, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":52122612, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":52129692, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":52131684, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":52131828, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":52131972, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":52132068, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":52139964, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":52147860, + "target":34962 + }, + { + "buffer":0, + "byteLength":9708, + "byteOffset":52153124, + "target":34962 + }, + { + "buffer":0, + "byteLength":9708, + "byteOffset":52162832, + "target":34962 + }, + { + "buffer":0, + "byteLength":6472, + "byteOffset":52172540, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":52179012, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52181556, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52181844, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":52182132, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":52182324, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":52189212, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":52196100, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":52202940, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":52209780, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":52216644, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":52223508, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":52230420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":52237332, + "target":34963 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":52239324, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":52241820, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":52244316, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":52245980, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":52253876, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":52261772, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":52267036, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":52269724, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":52272412, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52273396, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52273444, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":52273492, + "target":34962 + }, + { + "buffer":0, + "byteLength":9840, + "byteOffset":52273524, + "target":34962 + }, + { + "buffer":0, + "byteLength":9840, + "byteOffset":52283364, + "target":34962 + }, + { + "buffer":0, + "byteLength":6560, + "byteOffset":52293204, + "target":34962 + }, + { + "buffer":0, + "byteLength":12636, + "byteOffset":52299764, + "target":34962 + }, + { + "buffer":0, + "byteLength":12636, + "byteOffset":52312400, + "target":34962 + }, + { + "buffer":0, + "byteLength":8424, + "byteOffset":52325036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52333460, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52333748, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":52334036, + "target":34963 + }, + { + "buffer":0, + "byteLength":15864, + "byteOffset":52334108, + "target":34962 + }, + { + "buffer":0, + "byteLength":15864, + "byteOffset":52349972, + "target":34962 + }, + { + "buffer":0, + "byteLength":10576, + "byteOffset":52365836, + "target":34962 + }, + { + "buffer":0, + "byteLength":5040, + "byteOffset":52376412, + "target":34963 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":52381452, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":52388244, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":52395036, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":52412076, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":52429116, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":52440476, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":52443164, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":52445852, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":52448228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":52450604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":52452188, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":52453724, + "target":34962 + }, + { + "buffer":0, + "byteLength":1024, + "byteOffset":52455260, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52456284, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52456332, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":52456380, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":52456412, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":52459868, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":52463324, + "target":34963 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":52466468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":52473416, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52480364, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52480652, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":52480940, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52481132, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52481180, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":52481228, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":52481260, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":52482172, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":52483084, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52483692, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52483980, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":52484268, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":52484460, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":52484940, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":52485420, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":52485740, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":52492760, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":52499780, + "target":34963 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":52501772, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":52504148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":52506524, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":52508108, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":52510556, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":52513004, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":52514636, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":52516868, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":52519100, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":52520588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":52521668, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":52522748, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52523468, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52523516, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":52523564, + "target":34962 + }, + { + "buffer":0, + "byteLength":9648, + "byteOffset":52523596, + "target":34962 + }, + { + "buffer":0, + "byteLength":9648, + "byteOffset":52533244, + "target":34962 + }, + { + "buffer":0, + "byteLength":6432, + "byteOffset":52542892, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":52549324, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":52556308, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":52563292, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":52564204, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":52565116, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":52565724, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":52569804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":52573884, + "target":34963 + }, + { + "buffer":0, + "byteLength":75768, + "byteOffset":52575204, + "target":34962 + }, + { + "buffer":0, + "byteLength":75768, + "byteOffset":52650972, + "target":34962 + }, + { + "buffer":0, + "byteLength":50512, + "byteOffset":52726740, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":52777252, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":52784212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":52791172, + "target":34963 + }, + { + "buffer":0, + "byteLength":7272, + "byteOffset":52793164, + "target":34962 + }, + { + "buffer":0, + "byteLength":7272, + "byteOffset":52800436, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52807708, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52807756, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":52807804, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":52807836, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":52820076, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":52832316, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":52840476, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":52843596, + "target":34962 + }, + { + "buffer":0, + "byteLength":2080, + "byteOffset":52846716, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":52848796, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":52855684, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":52862572, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":52869280, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":52875988, + "target":34962 + }, + { + "buffer":0, + "byteLength":1728, + "byteOffset":52880460, + "target":34963 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":52882188, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":52889340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":52896492, + "target":34963 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":52898484, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":52905564, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52912644, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52912932, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":52913220, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":52913412, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":52920372, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":52927332, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":52933188, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":52939044, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52942948, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52942996, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":52943044, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52943076, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":52943364, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":52943652, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":52943844, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":52944420, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":52944996, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52945380, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52945428, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":52945476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":52945508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":52946804, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":52948100, + "target":34962 + }, + { + "buffer":0, + "byteLength":7236, + "byteOffset":52948964, + "target":34962 + }, + { + "buffer":0, + "byteLength":7236, + "byteOffset":52956200, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":52963436, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":52965428, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":52972388, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":52979348, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":52986332, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52993316, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":52993364, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":52993412, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":52993444, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":52996168, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":52998892, + "target":34962 + }, + { + "buffer":0, + "byteLength":3420, + "byteOffset":53000708, + "target":34962 + }, + { + "buffer":0, + "byteLength":3420, + "byteOffset":53004128, + "target":34962 + }, + { + "buffer":0, + "byteLength":2280, + "byteOffset":53007548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":53009828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":53011436, + "target":34962 + }, + { + "buffer":0, + "byteLength":1072, + "byteOffset":53013044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":53014116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":53015436, + "target":34962 + }, + { + "buffer":0, + "byteLength":880, + "byteOffset":53016756, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":53017636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":53019604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1312, + "byteOffset":53021572, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":53022884, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":53029904, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":53036924, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":53056844, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":53076764, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":53090044, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":53090092, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":53090140, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":53090172, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":53097144, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":53104116, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":53104164, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":53104212, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":53104244, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":53111408, + "target":34962 + }, + { + "buffer":0, + "byteLength":1380, + "byteOffset":53118572, + "target":34962 + }, + { + "buffer":0, + "byteLength":1380, + "byteOffset":53119952, + "target":34962 + }, + { + "buffer":0, + "byteLength":920, + "byteOffset":53121332, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":53122252, + "target":34963 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":53122732, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":53129476, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":53136220, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":53143228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":53150236, + "target":34963 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":53152228, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":53154988, + "target":34962 + }, + { + "buffer":0, + "byteLength":1840, + "byteOffset":53157748, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":53159588, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":53160548, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":53167460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":53174372, + "target":34963 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":53176364, + "target":34962 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":53183588, + "target":34962 + }, + { + "buffer":0, + "byteLength":660, + "byteOffset":53190812, + "target":34962 + }, + { + "buffer":0, + "byteLength":660, + "byteOffset":53191472, + "target":34962 + }, + { + "buffer":0, + "byteLength":440, + "byteOffset":53192132, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":53192572, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":53199760, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":53206948, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":53208940, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":53215924, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":53222908, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":53229892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":53236876, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":53238868, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":53245756, + "target":34962 + }, + { + "buffer":0, + "byteLength":6432, + "byteOffset":53252644, + "target":34962 + }, + { + "buffer":0, + "byteLength":6432, + "byteOffset":53259076, + "target":34962 + }, + { + "buffer":0, + "byteLength":4288, + "byteOffset":53265508, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":53269796, + "target":34963 + }, + { + "buffer":0, + "byteLength":1380, + "byteOffset":53272604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1380, + "byteOffset":53273984, + "target":34962 + }, + { + "buffer":0, + "byteLength":920, + "byteOffset":53275364, + "target":34962 + }, + { + "buffer":0, + "byteLength":9024, + "byteOffset":53276284, + "target":34962 + }, + { + "buffer":0, + "byteLength":9024, + "byteOffset":53285308, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":53294332, + "target":34963 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":53296996, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":53304076, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":53311156, + "target":34963 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":53313148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":53314612, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":53316076, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":53317052, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":53317964, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":53318876, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":53319484, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":53326516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":53333548, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":53335540, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":53342500, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":53349460, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":53356444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":53363428, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":53365420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":53366764, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":53368108, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":53375224, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":53382340, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":53386492, + "target":34962 + }, + { + "buffer":0, + "byteLength":2768, + "byteOffset":53390644, + "target":34962 + }, + { + "buffer":0, + "byteLength":7236, + "byteOffset":53393412, + "target":34962 + }, + { + "buffer":0, + "byteLength":7236, + "byteOffset":53400648, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":53407884, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":53414928, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":53421972, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":53423964, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":53424012, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":53424060, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":53424092, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":53432756, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":53441420, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":53444108, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":53446796, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":53447660, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":53448524, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":53451308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1856, + "byteOffset":53454092, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":53455948, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":53456236, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":53456524, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":53456716, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":53463676, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":53470636, + "target":34963 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":53472628, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":53476012, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":53479396, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":53481652, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":53481940, + "target":34962 + }, + { + "buffer":0, + "byteLength":1260, + "byteOffset":53482228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1260, + "byteOffset":53483488, + "target":34962 + }, + { + "buffer":0, + "byteLength":840, + "byteOffset":53484748, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":53485588, + "target":34963 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":53486068, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":53492404, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":53498740, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":53502964, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":53503540, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":53504116, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":53504500, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":53504788, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":53505076, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":53505268, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":53509324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":53513380, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":53514700, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":53514748, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":53514796, + "target":34962 + }, + { + "buffer":0, + "byteLength":9768, + "byteOffset":53514828, + "target":34962 + }, + { + "buffer":0, + "byteLength":9768, + "byteOffset":53524596, + "target":34962 + }, + { + "buffer":0, + "byteLength":6512, + "byteOffset":53534364, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":53540876, + "target":34963 + }, + { + "buffer":0, + "byteLength":12252, + "byteOffset":53543420, + "target":34962 + }, + { + "buffer":0, + "byteLength":12252, + "byteOffset":53555672, + "target":34962 + }, + { + "buffer":0, + "byteLength":8168, + "byteOffset":53567924, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":53576092, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":53576380, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":53576668, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":53576860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":53577964, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":53579068, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":53579804, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":53586836, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":53593868, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":53594156, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":53594444, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":53601428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":53608412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":53610020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1072, + "byteOffset":53611628, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":53612700, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":53613180, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":53613324, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":53613468, + "target":34962 + }, + { + "buffer":0, + "byteLength":1908, + "byteOffset":53613564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1908, + "byteOffset":53615472, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":53617380, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":53618652, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":53622036, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":53625420, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":53627676, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":53627724, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":53627772, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":53627804, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":53628716, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":53629628, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":53630236, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":53636812, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":53643388, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":53647772, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":53655668, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":53663564, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":53668828, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":53673436, + "target":34962 + }, + { + "buffer":0, + "byteLength":3072, + "byteOffset":53678044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1728, + "byteOffset":53681116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1728, + "byteOffset":53682844, + "target":34962 + }, + { + "buffer":0, + "byteLength":2568, + "byteOffset":53684572, + "target":34962 + }, + { + "buffer":0, + "byteLength":2568, + "byteOffset":53687140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1712, + "byteOffset":53689708, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":53691420, + "target":34963 + }, + { + "buffer":0, + "byteLength":2220, + "byteOffset":53692380, + "target":34962 + }, + { + "buffer":0, + "byteLength":2220, + "byteOffset":53694600, + "target":34962 + }, + { + "buffer":0, + "byteLength":1480, + "byteOffset":53696820, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":53698300, + "target":34963 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":53699020, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":53705764, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":53712508, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":53715196, + "target":34962 + }, + { + "buffer":0, + "byteLength":396, + "byteOffset":53717884, + "target":34962 + }, + { + "buffer":0, + "byteLength":396, + "byteOffset":53718280, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":53718676, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":53718940, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":53720284, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":53721628, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":53728612, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":53735596, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":53738320, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":53741044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":53742860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":53744828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1312, + "byteOffset":53746796, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":53748108, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":53755212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":53762316, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":53764308, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":53764596, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":53764884, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":53765076, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":53769240, + "target":34962 + }, + { + "buffer":0, + "byteLength":2776, + "byteOffset":53773404, + "target":34962 + }, + { + "buffer":0, + "byteLength":5868, + "byteOffset":53776180, + "target":34962 + }, + { + "buffer":0, + "byteLength":5868, + "byteOffset":53782048, + "target":34962 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":53787916, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":53791828, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":53798860, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":53805892, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":53822932, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":53839972, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":53851332, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":53854068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":53856804, + "target":34962 + }, + { + "buffer":0, + "byteLength":207840, + "byteOffset":53858628, + "target":34962 + }, + { + "buffer":0, + "byteLength":207840, + "byteOffset":54066468, + "target":34962 + }, + { + "buffer":0, + "byteLength":138560, + "byteOffset":54274308, + "target":34962 + }, + { + "buffer":0, + "byteLength":51744, + "byteOffset":54412868, + "target":34963 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":54464612, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":54471692, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":54478772, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":54480764, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":54480812, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":54480860, + "target":34962 + }, + { + "buffer":0, + "byteLength":8328, + "byteOffset":54480892, + "target":34962 + }, + { + "buffer":0, + "byteLength":8328, + "byteOffset":54489220, + "target":34962 + }, + { + "buffer":0, + "byteLength":5552, + "byteOffset":54497548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1392, + "byteOffset":54503100, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":54504492, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":54505404, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":54506316, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":54506924, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":54512780, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":54518636, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":54522540, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":54526620, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":54530700, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":54537756, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":54544812, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":54544860, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":54544908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":54544940, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":54546368, + "target":34962 + }, + { + "buffer":0, + "byteLength":952, + "byteOffset":54547796, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":54548748, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":54550884, + "target":34962 + }, + { + "buffer":0, + "byteLength":1424, + "byteOffset":54553020, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":54554444, + "target":34963 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":54555164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":54556796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":54558428, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":54559516, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":54559996, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":54560476, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":54560796, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":54567132, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":54573468, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":54577692, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":54577740, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":54577788, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":54577820, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":54581684, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":54585548, + "target":34962 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":54588124, + "target":34962 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":54588760, + "target":34962 + }, + { + "buffer":0, + "byteLength":424, + "byteOffset":54589396, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":54589820, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":54596948, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":54604076, + "target":34963 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":54606068, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":54607052, + "target":34962 + }, + { + "buffer":0, + "byteLength":656, + "byteOffset":54608036, + "target":34962 + }, + { + "buffer":0, + "byteLength":456, + "byteOffset":54608692, + "target":34963 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":54609148, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":54615940, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":54622732, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":54629740, + "target":34962 + }, + { + "buffer":0, + "byteLength":2844, + "byteOffset":54636748, + "target":34962 + }, + { + "buffer":0, + "byteLength":2844, + "byteOffset":54639592, + "target":34962 + }, + { + "buffer":0, + "byteLength":1896, + "byteOffset":54642436, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":54644332, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":54651424, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":54658516, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":54660508, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":54661084, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":54661660, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":54662044, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":54668788, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":54675532, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":54682612, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":54689692, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":54690604, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":54691516, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":54692124, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":54698940, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":54705756, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":54705804, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":54705852, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":54705884, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":54708608, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":54711332, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":54713148, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":54713724, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":54714300, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":54714492, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":54714684, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":54714812, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":54714860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":54716204, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":54717548, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":54724532, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":54731516, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":54738548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":54745580, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":54747572, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":54748484, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":54749396, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":54750004, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":54750916, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":54751828, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":54752436, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":54760332, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":54768228, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":54773492, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":54773780, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":54774068, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":54781052, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":54788036, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":54794804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":54801572, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":54803564, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":54820604, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":54837644, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":54849004, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":54855772, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":54862540, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":54864532, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":54864820, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":54865108, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":54865300, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":54865348, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":54865396, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":54865428, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":54865716, + "target":34962 + }, + { + "buffer":0, + "byteLength":13032, + "byteOffset":54866004, + "target":34962 + }, + { + "buffer":0, + "byteLength":13032, + "byteOffset":54879036, + "target":34962 + }, + { + "buffer":0, + "byteLength":8688, + "byteOffset":54892068, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":54900756, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":54901524, + "target":34962 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":54902292, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":54902804, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":54906908, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":54911012, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":54911300, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":54911588, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":54911780, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":54912068, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":54912356, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":54912548, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":54918404, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":54924260, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":54928164, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":54928884, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":54929604, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":54930084, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":54932940, + "target":34962 + }, + { + "buffer":0, + "byteLength":1904, + "byteOffset":54935796, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":54937700, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":54944852, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":54952004, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":54958964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":54965924, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":54967916, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":54967964, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":54968012, + "target":34962 + }, + { + "buffer":0, + "byteLength":9804, + "byteOffset":54968044, + "target":34962 + }, + { + "buffer":0, + "byteLength":9804, + "byteOffset":54977848, + "target":34962 + }, + { + "buffer":0, + "byteLength":6536, + "byteOffset":54987652, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":54994188, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":54994236, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":54994284, + "target":34962 + }, + { + "buffer":0, + "byteLength":6696, + "byteOffset":54994316, + "target":34962 + }, + { + "buffer":0, + "byteLength":6696, + "byteOffset":55001012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":55007708, + "target":34963 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":55009700, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":55013084, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":55016468, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55018724, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55019012, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":55019300, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":55019876, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":55020452, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":55020836, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":55028732, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":55036628, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55041892, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55041940, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":55041988, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55042020, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55042308, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":55042596, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":55050492, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":55058388, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55063652, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55063700, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":55063748, + "target":34962 + }, + { + "buffer":0, + "byteLength":9672, + "byteOffset":55063780, + "target":34962 + }, + { + "buffer":0, + "byteLength":9672, + "byteOffset":55073452, + "target":34962 + }, + { + "buffer":0, + "byteLength":6448, + "byteOffset":55083124, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":55089572, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55092116, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55092404, + "target":34962 + }, + { + "buffer":0, + "byteLength":95832, + "byteOffset":55092692, + "target":34962 + }, + { + "buffer":0, + "byteLength":95832, + "byteOffset":55188524, + "target":34962 + }, + { + "buffer":0, + "byteLength":63888, + "byteOffset":55284356, + "target":34962 + }, + { + "buffer":0, + "byteLength":3468, + "byteOffset":55348244, + "target":34962 + }, + { + "buffer":0, + "byteLength":3468, + "byteOffset":55351712, + "target":34962 + }, + { + "buffer":0, + "byteLength":2312, + "byteOffset":55355180, + "target":34962 + }, + { + "buffer":0, + "byteLength":1290, + "byteOffset":55357492, + "target":34963 + }, + { + "buffer":0, + "byteLength":15960, + "byteOffset":55358784, + "target":34962 + }, + { + "buffer":0, + "byteLength":15960, + "byteOffset":55374744, + "target":34962 + }, + { + "buffer":0, + "byteLength":10640, + "byteOffset":55390704, + "target":34962 + }, + { + "buffer":0, + "byteLength":5040, + "byteOffset":55401344, + "target":34963 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":55406384, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":55412720, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":55419056, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55423280, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55423328, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":55423376, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55423408, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55423696, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":55423984, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":55425952, + "target":34962 + }, + { + "buffer":0, + "byteLength":1312, + "byteOffset":55427920, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55429232, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55429280, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":55429328, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":55429360, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":55436068, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":55442776, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55447248, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55447536, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":55447824, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":55448016, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":55454904, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":55461792, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":55468656, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55475520, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55475568, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":55475616, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55475648, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55475936, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":55476224, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":55483256, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":55490288, + "target":34963 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":55492280, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":55493780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":55495280, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55496280, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55496568, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":55496856, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":55499088, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":55501320, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":55502808, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":55503816, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":55504824, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":55505496, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":55507728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":55509960, + "target":34962 + }, + { + "buffer":0, + "byteLength":2472, + "byteOffset":55511448, + "target":34962 + }, + { + "buffer":0, + "byteLength":2472, + "byteOffset":55513920, + "target":34962 + }, + { + "buffer":0, + "byteLength":1648, + "byteOffset":55516392, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":55518040, + "target":34963 + }, + { + "buffer":0, + "byteLength":9696, + "byteOffset":55519000, + "target":34962 + }, + { + "buffer":0, + "byteLength":9696, + "byteOffset":55528696, + "target":34962 + }, + { + "buffer":0, + "byteLength":6464, + "byteOffset":55538392, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":55544856, + "target":34963 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":55547400, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":55557984, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":55568568, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":55575624, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":55578240, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":55585128, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":55592016, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":55598784, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":55605552, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":55612692, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":55619832, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":55623888, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":55627944, + "target":34963 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":55629264, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":55636404, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":55643544, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":55650480, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":55657416, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":55658568, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":55659720, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":55666704, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":55673688, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":55680816, + "target":34962 + }, + { + "buffer":0, + "byteLength":1896, + "byteOffset":55687944, + "target":34962 + }, + { + "buffer":0, + "byteLength":1896, + "byteOffset":55689840, + "target":34962 + }, + { + "buffer":0, + "byteLength":1264, + "byteOffset":55691736, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":55693000, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":55697152, + "target":34962 + }, + { + "buffer":0, + "byteLength":2768, + "byteOffset":55701304, + "target":34962 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":55704072, + "target":34962 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":55708116, + "target":34962 + }, + { + "buffer":0, + "byteLength":2696, + "byteOffset":55712160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":55714856, + "target":34963 + }, + { + "buffer":0, + "byteLength":5556, + "byteOffset":55716296, + "target":34962 + }, + { + "buffer":0, + "byteLength":5556, + "byteOffset":55721852, + "target":34962 + }, + { + "buffer":0, + "byteLength":3704, + "byteOffset":55727408, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":55731112, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":55738072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":55745032, + "target":34963 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":55747024, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":55751080, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":55755136, + "target":34963 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":55756456, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":55763632, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":55770808, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":55787848, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":55804888, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55816248, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55816296, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":55816344, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55816376, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55816664, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":55816952, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":55823984, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":55831016, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55833008, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55833296, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":55833584, + "target":34962 + }, + { + "buffer":0, + "byteLength":5760, + "byteOffset":55833776, + "target":34962 + }, + { + "buffer":0, + "byteLength":5760, + "byteOffset":55839536, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":55845296, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55849136, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55849184, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":55849232, + "target":34962 + }, + { + "buffer":0, + "byteLength":8256, + "byteOffset":55849264, + "target":34962 + }, + { + "buffer":0, + "byteLength":8256, + "byteOffset":55857520, + "target":34962 + }, + { + "buffer":0, + "byteLength":5504, + "byteOffset":55865776, + "target":34962 + }, + { + "buffer":0, + "byteLength":1380, + "byteOffset":55871280, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":55872660, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":55873572, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":55874484, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":55875092, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":55877780, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":55880468, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":55881116, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":55881764, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":55882196, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":55889180, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55896164, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55896212, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":55896260, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":55896292, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":55903252, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":55910212, + "target":34963 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":55912204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":55913668, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":55915132, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":55916108, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":55922972, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":55929836, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":55936724, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":55943612, + "target":34963 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":55945604, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":55946456, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":55947308, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":55947876, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":55954212, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":55960548, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55964772, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":55964820, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":55964868, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":55964900, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":55968764, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":55972628, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":55975204, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":55975780, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":55976356, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":55976740, + "target":34963 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":55976908, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":55984024, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":55991140, + "target":34963 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":55993132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":55994572, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":55996012, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":55996972, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55997452, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55997740, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":55998028, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":56005132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":56012236, + "target":34963 + }, + { + "buffer":0, + "byteLength":3048, + "byteOffset":56014228, + "target":34962 + }, + { + "buffer":0, + "byteLength":3048, + "byteOffset":56017276, + "target":34962 + }, + { + "buffer":0, + "byteLength":2032, + "byteOffset":56020324, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":56022356, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":56029436, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":56036516, + "target":34963 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":56038508, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":56042636, + "target":34962 + }, + { + "buffer":0, + "byteLength":2752, + "byteOffset":56046764, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":56049516, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56050956, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56051244, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":56051532, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":56051724, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":56052636, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":56053548, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56054156, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56054204, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":56054252, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":56054284, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":56054860, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":56055436, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":56062396, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":56069356, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":56073412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":56077468, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":56078788, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":56085700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":56092612, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":56094604, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":56095516, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":56096428, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":56097036, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":56102220, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":56107404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":56110860, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56112156, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56112444, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":56112732, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":56112924, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":56119788, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":56126652, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":56128644, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":56135580, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56142516, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56142804, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":56143092, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":56149836, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":56156580, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":56168820, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":56181060, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":56189220, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":56196108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":56202996, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56204988, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56205036, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":56205084, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56205116, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56205404, + "target":34962 + }, + { + "buffer":0, + "byteLength":57624, + "byteOffset":56205692, + "target":34962 + }, + { + "buffer":0, + "byteLength":57624, + "byteOffset":56263316, + "target":34962 + }, + { + "buffer":0, + "byteLength":38416, + "byteOffset":56320940, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":56359356, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":56359932, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":56360508, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":56360892, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":56368668, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":56376444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":56381628, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":56383380, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":56385132, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":56386300, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":56388988, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":56391676, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":56392660, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":56393380, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":56394100, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56394580, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56394868, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":56395156, + "target":34962 + }, + { + "buffer":0, + "byteLength":11016, + "byteOffset":56395348, + "target":34962 + }, + { + "buffer":0, + "byteLength":11016, + "byteOffset":56406364, + "target":34962 + }, + { + "buffer":0, + "byteLength":7344, + "byteOffset":56417380, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":56424724, + "target":34963 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":56427604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":56429236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":56430868, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":56431956, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":56433300, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":56434644, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":56435540, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":56436452, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":56437364, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56437972, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56438020, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":56438068, + "target":34962 + }, + { + "buffer":0, + "byteLength":9840, + "byteOffset":56438100, + "target":34962 + }, + { + "buffer":0, + "byteLength":9840, + "byteOffset":56447940, + "target":34962 + }, + { + "buffer":0, + "byteLength":6560, + "byteOffset":56457780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1932, + "byteOffset":56464340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1932, + "byteOffset":56466272, + "target":34962 + }, + { + "buffer":0, + "byteLength":1288, + "byteOffset":56468204, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":56469492, + "target":34963 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":56470212, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":56476980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":56483748, + "target":34963 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":56485740, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":56489124, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":56492508, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":56494764, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":56495628, + "target":34962 + }, + { + "buffer":0, + "byteLength":5496, + "byteOffset":56496492, + "target":34962 + }, + { + "buffer":0, + "byteLength":5496, + "byteOffset":56501988, + "target":34962 + }, + { + "buffer":0, + "byteLength":3664, + "byteOffset":56507484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":56511148, + "target":34963 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":56513140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":56514592, + "target":34962 + }, + { + "buffer":0, + "byteLength":968, + "byteOffset":56516044, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":56517012, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":56517588, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":56518164, + "target":34962 + }, + { + "buffer":0, + "byteLength":7296, + "byteOffset":56518548, + "target":34962 + }, + { + "buffer":0, + "byteLength":7296, + "byteOffset":56525844, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":56533140, + "target":34963 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":56535132, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":56543028, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":56550924, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56556188, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56556236, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":56556284, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56556316, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56556364, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":56556412, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56556444, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56556732, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":56557020, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56557212, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56557260, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":56557308, + "target":34962 + }, + { + "buffer":0, + "byteLength":93456, + "byteOffset":56557340, + "target":34962 + }, + { + "buffer":0, + "byteLength":93456, + "byteOffset":56650796, + "target":34962 + }, + { + "buffer":0, + "byteLength":62304, + "byteOffset":56744252, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":56806556, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":56813576, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":56820596, + "target":34963 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":56822588, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":56823260, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":56823932, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":56824380, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":56830716, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":56837052, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":56841276, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":56844000, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":56846724, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56848540, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56848588, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":56848636, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56848668, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56848956, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56849244, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56849292, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":56849340, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56849372, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56849420, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":56849468, + "target":34962 + }, + { + "buffer":0, + "byteLength":9672, + "byteOffset":56849500, + "target":34962 + }, + { + "buffer":0, + "byteLength":9672, + "byteOffset":56859172, + "target":34962 + }, + { + "buffer":0, + "byteLength":6448, + "byteOffset":56868844, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":56875292, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":56885876, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":56896460, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":56903516, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":56904188, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":56904860, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56905308, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":56905356, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":56905404, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":56905436, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":56906348, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":56907260, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56907868, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56908156, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":56908444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":56909452, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":56910460, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":56911132, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":56911804, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":56912476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":56912924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":56914268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1980, + "byteOffset":56915612, + "target":34962 + }, + { + "buffer":0, + "byteLength":1980, + "byteOffset":56917592, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":56919572, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":56920892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":56921948, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":56923004, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":56923708, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":56927764, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":56931820, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56933140, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56933428, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":56933716, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56933908, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":56934196, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":56934484, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":56937208, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":56939932, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":56941748, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":56942324, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":56942900, + "target":34963 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":56943044, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":56945492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":56947940, + "target":34962 + }, + { + "buffer":0, + "byteLength":12600, + "byteOffset":56949572, + "target":34962 + }, + { + "buffer":0, + "byteLength":12600, + "byteOffset":56962172, + "target":34962 + }, + { + "buffer":0, + "byteLength":8400, + "byteOffset":56974772, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":56983172, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":56990060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":56996948, + "target":34963 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":56998940, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":57002972, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57007004, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57007052, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57007100, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":57007132, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":57009820, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":57012508, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":57021172, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":57029836, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":57036916, + "target":34962 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":57043996, + "target":34962 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":57048040, + "target":34962 + }, + { + "buffer":0, + "byteLength":2696, + "byteOffset":57052084, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":57054780, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":57058884, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":57062988, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":57065724, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":57067164, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":57069888, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":57072612, + "target":34962 + }, + { + "buffer":0, + "byteLength":4188, + "byteOffset":57074428, + "target":34962 + }, + { + "buffer":0, + "byteLength":4188, + "byteOffset":57078616, + "target":34962 + }, + { + "buffer":0, + "byteLength":2792, + "byteOffset":57082804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":57085596, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57087036, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57087084, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57087132, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":57087164, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":57089876, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":57092588, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":57092876, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":57093164, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":57093356, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":57100448, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":57107540, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":57114620, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":57121700, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":57138740, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":57155780, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":57167140, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":57168052, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":57168964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":57169572, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":57171324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":57173076, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57174244, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57174292, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57174340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":57174372, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":57176340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1312, + "byteOffset":57178308, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":57179620, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":57186604, + "target":34962 + }, + { + "buffer":0, + "byteLength":4656, + "byteOffset":57193588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1260, + "byteOffset":57198244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1260, + "byteOffset":57199504, + "target":34962 + }, + { + "buffer":0, + "byteLength":840, + "byteOffset":57200764, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57201604, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57201652, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57201700, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":57201732, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":57202020, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":57202308, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":57209364, + "target":34962 + }, + { + "buffer":0, + "byteLength":4704, + "byteOffset":57216420, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":57221124, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":57222036, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":57222948, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":57223556, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":57227660, + "target":34962 + }, + { + "buffer":0, + "byteLength":3204, + "byteOffset":57231764, + "target":34962 + }, + { + "buffer":0, + "byteLength":3204, + "byteOffset":57234968, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":57238172, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":57240308, + "target":34963 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":57241268, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":57248132, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57254996, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57255044, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57255092, + "target":34962 + }, + { + "buffer":0, + "byteLength":6900, + "byteOffset":57255124, + "target":34962 + }, + { + "buffer":0, + "byteLength":6900, + "byteOffset":57262024, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":57268924, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":57270916, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":57271780, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":57272644, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":57280828, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":57289012, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":57294468, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57297084, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57297132, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57297180, + "target":34962 + }, + { + "buffer":0, + "byteLength":3408, + "byteOffset":57297212, + "target":34962 + }, + { + "buffer":0, + "byteLength":3408, + "byteOffset":57300620, + "target":34962 + }, + { + "buffer":0, + "byteLength":2272, + "byteOffset":57304028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1128, + "byteOffset":57306300, + "target":34963 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":57307428, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":57308028, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":57308628, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":57309028, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":57316072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1548, + "byteOffset":57323116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1548, + "byteOffset":57324664, + "target":34962 + }, + { + "buffer":0, + "byteLength":1032, + "byteOffset":57326212, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":57327244, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":57334288, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":57341332, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":57343324, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":57343468, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":57343612, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":57343708, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":57350524, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":57357340, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":57364540, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":57371740, + "target":34963 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":57373732, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":57380680, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":57387628, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":57389620, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":57389908, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":57390196, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":57390388, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":57397552, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":57404716, + "target":34963 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":57406708, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":57407356, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":57408004, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":57408436, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":57412588, + "target":34962 + }, + { + "buffer":0, + "byteLength":2768, + "byteOffset":57416740, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":57419508, + "target":34963 + }, + { + "buffer":0, + "byteLength":3936, + "byteOffset":57420948, + "target":34962 + }, + { + "buffer":0, + "byteLength":3936, + "byteOffset":57424884, + "target":34962 + }, + { + "buffer":0, + "byteLength":2624, + "byteOffset":57428820, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":57431444, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":57432068, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":57432692, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":57433108, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":57434020, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":57434932, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57435540, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57435588, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57435636, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":57435668, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":57435860, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":57436052, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":57436180, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":57438892, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":57441604, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":57448684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":57455764, + "target":34963 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":57457756, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":57464752, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":57471748, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":57478828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":57485908, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":57487900, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":57488188, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":57488476, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":57488668, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":57489580, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":57490492, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":57491100, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":57491388, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":57491676, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":57491868, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":57492732, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":57493596, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":57500580, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":57507564, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":57513420, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":57519276, + "target":34962 + }, + { + "buffer":0, + "byteLength":4248, + "byteOffset":57523180, + "target":34962 + }, + { + "buffer":0, + "byteLength":4248, + "byteOffset":57527428, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":57531676, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":57534508, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":57535948, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":57536524, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57537100, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57537148, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57537196, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":57537228, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":57541308, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":57545388, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":57545676, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":57545964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":57547116, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":57548268, + "target":34962 + }, + { + "buffer":0, + "byteLength":57624, + "byteOffset":57549036, + "target":34962 + }, + { + "buffer":0, + "byteLength":57624, + "byteOffset":57606660, + "target":34962 + }, + { + "buffer":0, + "byteLength":38416, + "byteOffset":57664284, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":57702700, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":57711364, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":57720028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":57721780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":57723532, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57724700, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57724748, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57724796, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":57724828, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":57725116, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":57725404, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57725596, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57725644, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57725692, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":57725724, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":57729888, + "target":34962 + }, + { + "buffer":0, + "byteLength":2776, + "byteOffset":57734052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":57736828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":57737980, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":57739132, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":57759052, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":57778972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":57792252, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":57793356, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":57794460, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":57795196, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":57802252, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":57809308, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":57816232, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":57823156, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57825148, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57825196, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57825244, + "target":34962 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":57825276, + "target":34962 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":57835056, + "target":34962 + }, + { + "buffer":0, + "byteLength":6520, + "byteOffset":57844836, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":57851356, + "target":34963 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":57853900, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":57856660, + "target":34962 + }, + { + "buffer":0, + "byteLength":1840, + "byteOffset":57859420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":57861260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":57862700, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":57864140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":57865100, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":57866852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":57868604, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":57869772, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":57876768, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":57883764, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":57887148, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":57890532, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57892788, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57892836, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57892884, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":57892916, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":57894524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1072, + "byteOffset":57896132, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":57897204, + "target":34963 + }, + { + "buffer":0, + "byteLength":2472, + "byteOffset":57897684, + "target":34962 + }, + { + "buffer":0, + "byteLength":2472, + "byteOffset":57900156, + "target":34962 + }, + { + "buffer":0, + "byteLength":1648, + "byteOffset":57902628, + "target":34962 + }, + { + "buffer":0, + "byteLength":840, + "byteOffset":57904276, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":57905116, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":57912076, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":57919036, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":57919648, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":57920260, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":57920668, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":57928564, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":57936460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":57941724, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":57942804, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":57943884, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":57944316, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":57945228, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":57946140, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57946748, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":57946796, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57946844, + "target":34962 + }, + { + "buffer":0, + "byteLength":9720, + "byteOffset":57946876, + "target":34962 + }, + { + "buffer":0, + "byteLength":9720, + "byteOffset":57956596, + "target":34962 + }, + { + "buffer":0, + "byteLength":6480, + "byteOffset":57966316, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":57972796, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":57975340, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":57975628, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":57975916, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":57976108, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":57982996, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":57989884, + "target":34963 + }, + { + "buffer":0, + "byteLength":15960, + "byteOffset":57991876, + "target":34962 + }, + { + "buffer":0, + "byteLength":15960, + "byteOffset":58007836, + "target":34962 + }, + { + "buffer":0, + "byteLength":10640, + "byteOffset":58023796, + "target":34962 + }, + { + "buffer":0, + "byteLength":5040, + "byteOffset":58034436, + "target":34963 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":58039476, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":58041852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":58044228, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58045812, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58045860, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58045908, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":58045940, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":58052756, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":58059572, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":58062296, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":58065020, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58066836, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58066884, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58066932, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":58066964, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":58069196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":58071428, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":58072916, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":58080092, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58087268, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58087316, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58087364, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":58087396, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":58097980, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":58108564, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58115620, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58115668, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58115716, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58115748, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58115796, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58115844, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":58115876, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":58119908, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58123940, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58124228, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":58124516, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":58131524, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58138532, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58138820, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":58139108, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":58139300, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":58139876, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":58140452, + "target":34962 + }, + { + "buffer":0, + "byteLength":9912, + "byteOffset":58140836, + "target":34962 + }, + { + "buffer":0, + "byteLength":9912, + "byteOffset":58150748, + "target":34962 + }, + { + "buffer":0, + "byteLength":6608, + "byteOffset":58160660, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":58167268, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":58169716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":58172164, + "target":34962 + }, + { + "buffer":0, + "byteLength":12636, + "byteOffset":58173796, + "target":34962 + }, + { + "buffer":0, + "byteLength":12636, + "byteOffset":58186432, + "target":34962 + }, + { + "buffer":0, + "byteLength":8424, + "byteOffset":58199068, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58207492, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58207540, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58207588, + "target":34962 + }, + { + "buffer":0, + "byteLength":4296, + "byteOffset":58207620, + "target":34962 + }, + { + "buffer":0, + "byteLength":4296, + "byteOffset":58211916, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":58216212, + "target":34963 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":58217532, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":58226196, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":58234860, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":58241844, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":58248828, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":58251552, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":58254276, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":58256092, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":58260208, + "target":34962 + }, + { + "buffer":0, + "byteLength":2744, + "byteOffset":58264324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":58267068, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58268508, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58268796, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":58269084, + "target":34962 + }, + { + "buffer":0, + "byteLength":4092, + "byteOffset":58269276, + "target":34962 + }, + { + "buffer":0, + "byteLength":4092, + "byteOffset":58273368, + "target":34962 + }, + { + "buffer":0, + "byteLength":2728, + "byteOffset":58277460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":58280188, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58281628, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58281916, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":58282204, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58282396, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58282444, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58282492, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":58282524, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":58289484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":58296444, + "target":34963 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":58298436, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":58300812, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":58303188, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":58304772, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":58308996, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":58313220, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":58320396, + "target":34962 + }, + { + "buffer":0, + "byteLength":78264, + "byteOffset":58327572, + "target":34962 + }, + { + "buffer":0, + "byteLength":78264, + "byteOffset":58405836, + "target":34962 + }, + { + "buffer":0, + "byteLength":52176, + "byteOffset":58484100, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":58536276, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":58543260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":58550244, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":58552236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":58553988, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":58555740, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58556908, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58556956, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58557004, + "target":34962 + }, + { + "buffer":0, + "byteLength":1692, + "byteOffset":58557036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1692, + "byteOffset":58558728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1128, + "byteOffset":58560420, + "target":34962 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":58561548, + "target":34962 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":58569684, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":58577820, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":58583244, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":58585380, + "target":34962 + }, + { + "buffer":0, + "byteLength":1424, + "byteOffset":58587516, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":58588940, + "target":34963 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":58589660, + "target":34962 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":58597796, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":58605932, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":58611356, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":58612268, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":58613180, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":58613788, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":58616020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":58618252, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":58619740, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":58627636, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":58635532, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":58640796, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":58643484, + "target":34962 + }, + { + "buffer":0, + "byteLength":2964, + "byteOffset":58646172, + "target":34962 + }, + { + "buffer":0, + "byteLength":2964, + "byteOffset":58649136, + "target":34962 + }, + { + "buffer":0, + "byteLength":1976, + "byteOffset":58652100, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":58654076, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":58655036, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":58661924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":58668812, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58670804, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58670852, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58670900, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58670932, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58670980, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58671028, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58671060, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58671108, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58671156, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58671188, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58671476, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":58671764, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":58671956, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":58673708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":58675460, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":58676628, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":58679340, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58682052, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58682100, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58682148, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":58682180, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":58689332, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58696484, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58696772, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":58697060, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":58697252, + "target":34963 + }, + { + "buffer":0, + "byteLength":936, + "byteOffset":58697324, + "target":34962 + }, + { + "buffer":0, + "byteLength":936, + "byteOffset":58698260, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":58699196, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":58699820, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":58700432, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":58701044, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":58701452, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":58708340, + "target":34962 + }, + { + "buffer":0, + "byteLength":7296, + "byteOffset":58715228, + "target":34962 + }, + { + "buffer":0, + "byteLength":7296, + "byteOffset":58722524, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":58729820, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":58729964, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":58730108, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58730204, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58730252, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58730300, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58730332, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58730620, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":58730908, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":58731100, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":58738012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":58744924, + "target":34963 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":58746916, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":58748020, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":58749124, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":58749860, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":58750460, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":58751060, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":58751460, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":58758276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":58765092, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58767084, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":58767132, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58767180, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":58767212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":58768700, + "target":34962 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":58770188, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58771180, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58771468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":58771756, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":58778644, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":58785532, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":58792420, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":58799308, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":58799500, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":58799692, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":58799820, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":58803876, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":58807932, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":58814916, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":58821900, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58823892, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58824180, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":58824468, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":58824660, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":58825572, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":58826484, + "target":34962 + }, + { + "buffer":0, + "byteLength":2208, + "byteOffset":58827092, + "target":34962 + }, + { + "buffer":0, + "byteLength":2208, + "byteOffset":58829300, + "target":34962 + }, + { + "buffer":0, + "byteLength":1472, + "byteOffset":58831508, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":58832980, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":58839964, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":58846948, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":58863988, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":58881028, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":58892388, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":58899132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":58905876, + "target":34963 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":58907868, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":58909368, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":58910868, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":58911868, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":58914316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":58916764, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":58918396, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":58921132, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58923868, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":58924156, + "target":34962 + }, + { + "buffer":0, + "byteLength":1380, + "byteOffset":58924444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1380, + "byteOffset":58925824, + "target":34962 + }, + { + "buffer":0, + "byteLength":920, + "byteOffset":58927204, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":58928124, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":58935300, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":58942476, + "target":34963 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":58944468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":58950804, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":58957140, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":58961364, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":58964052, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":58966740, + "target":34963 + }, + { + "buffer":0, + "byteLength":4008, + "byteOffset":58967724, + "target":34962 + }, + { + "buffer":0, + "byteLength":4008, + "byteOffset":58971732, + "target":34962 + }, + { + "buffer":0, + "byteLength":2672, + "byteOffset":58975740, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":58978412, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":58979276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":58980140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":58981316, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":58982492, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":58983276, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":58987500, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":58991724, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":58992396, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":58993068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":58993516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":58994956, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":58996396, + "target":34962 + }, + { + "buffer":0, + "byteLength":3468, + "byteOffset":58997356, + "target":34962 + }, + { + "buffer":0, + "byteLength":3468, + "byteOffset":59000824, + "target":34962 + }, + { + "buffer":0, + "byteLength":2312, + "byteOffset":59004292, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":59006604, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":59007516, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":59008428, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59009036, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59009084, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":59009132, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":59009164, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":59011912, + "target":34962 + }, + { + "buffer":0, + "byteLength":1832, + "byteOffset":59014660, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":59016492, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":59023380, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":59030268, + "target":34963 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":59032260, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":59032740, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":59033220, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":59033540, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":59036420, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":59039300, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":59039876, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":59040452, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":59040836, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":59044220, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":59047604, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":59049860, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":59050436, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":59051012, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":59051396, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":59058236, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":59065076, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":59069132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":59073188, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":59074508, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":59081540, + "target":34962 + }, + { + "buffer":0, + "byteLength":9468, + "byteOffset":59088572, + "target":34962 + }, + { + "buffer":0, + "byteLength":9468, + "byteOffset":59098040, + "target":34962 + }, + { + "buffer":0, + "byteLength":6312, + "byteOffset":59107508, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":59113820, + "target":34963 + }, + { + "buffer":0, + "byteLength":12612, + "byteOffset":59116364, + "target":34962 + }, + { + "buffer":0, + "byteLength":12612, + "byteOffset":59128976, + "target":34962 + }, + { + "buffer":0, + "byteLength":8408, + "byteOffset":59141588, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":59149996, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":59156908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":59163820, + "target":34963 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":59165812, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":59166484, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":59167156, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":59167604, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":59169980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":59172356, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":59173940, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":59180984, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59188028, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59188076, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":59188124, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":59188156, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":59188444, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59188732, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59188780, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":59188828, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":59188860, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":59189148, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":59189436, + "target":34962 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":59189628, + "target":34962 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":59193180, + "target":34962 + }, + { + "buffer":0, + "byteLength":2368, + "byteOffset":59196732, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":59199100, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":59206060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":59213020, + "target":34963 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":59215012, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":59221720, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":59228428, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":59232900, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":59236776, + "target":34962 + }, + { + "buffer":0, + "byteLength":2584, + "byteOffset":59240652, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":59243236, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":59247268, + "target":34962 + }, + { + "buffer":0, + "byteLength":10704, + "byteOffset":59251300, + "target":34962 + }, + { + "buffer":0, + "byteLength":10704, + "byteOffset":59262004, + "target":34962 + }, + { + "buffer":0, + "byteLength":4752, + "byteOffset":59272708, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":59277460, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":59278324, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":59279188, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":59286280, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":59293372, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":59293516, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":59293660, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":59293756, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":59294860, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":59295964, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":59296700, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":59303408, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":59310116, + "target":34962 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":59314588, + "target":34962 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":59324368, + "target":34962 + }, + { + "buffer":0, + "byteLength":6520, + "byteOffset":59334148, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":59340668, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":59343116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":59345564, + "target":34962 + }, + { + "buffer":0, + "byteLength":12252, + "byteOffset":59347196, + "target":34962 + }, + { + "buffer":0, + "byteLength":12252, + "byteOffset":59359448, + "target":34962 + }, + { + "buffer":0, + "byteLength":8168, + "byteOffset":59371700, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":59379868, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":59386864, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":59393860, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59395852, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59395900, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":59395948, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":59395980, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":59398692, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":59401404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":59402556, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":59403708, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":59407824, + "target":34962 + }, + { + "buffer":0, + "byteLength":2744, + "byteOffset":59411940, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":59414684, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":59416124, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":59423012, + "target":34962 + }, + { + "buffer":0, + "byteLength":17808, + "byteOffset":59429900, + "target":34962 + }, + { + "buffer":0, + "byteLength":17808, + "byteOffset":59447708, + "target":34962 + }, + { + "buffer":0, + "byteLength":11872, + "byteOffset":59465516, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":59477388, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":59482188, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":59482476, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":59482764, + "target":34962 + }, + { + "buffer":0, + "byteLength":35004, + "byteOffset":59482956, + "target":34962 + }, + { + "buffer":0, + "byteLength":35004, + "byteOffset":59517960, + "target":34962 + }, + { + "buffer":0, + "byteLength":23336, + "byteOffset":59552964, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59576300, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59576348, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":59576396, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":59576428, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":59578804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":59581180, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":59582764, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":59585476, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":59588188, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":59595100, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":59602012, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59604004, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59604052, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":59604100, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":59604132, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":59610852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":59617572, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":59619324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":59621076, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59622244, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59622292, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":59622340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1836, + "byteOffset":59622372, + "target":34962 + }, + { + "buffer":0, + "byteLength":1836, + "byteOffset":59624208, + "target":34962 + }, + { + "buffer":0, + "byteLength":1224, + "byteOffset":59626044, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":59627268, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":59627844, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":59628420, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":59628804, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":59636580, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":59644356, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":59649540, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":59649828, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":59650116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":59650308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":59651412, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":59652516, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":59653252, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":59653540, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":59653828, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":59654020, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":59661064, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":59668108, + "target":34963 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":59670100, + "target":34962 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":59678236, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":59686372, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":59691796, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":59695828, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":59699860, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":59700580, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":59701300, + "target":34962 + }, + { + "buffer":0, + "byteLength":2976, + "byteOffset":59701780, + "target":34962 + }, + { + "buffer":0, + "byteLength":2976, + "byteOffset":59704756, + "target":34962 + }, + { + "buffer":0, + "byteLength":1984, + "byteOffset":59707732, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":59709716, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59710676, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59710724, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":59710772, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59710804, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59710852, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":59710900, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":59710932, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":59711796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1692, + "byteOffset":59712660, + "target":34962 + }, + { + "buffer":0, + "byteLength":1692, + "byteOffset":59714352, + "target":34962 + }, + { + "buffer":0, + "byteLength":1128, + "byteOffset":59716044, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":59717172, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":59719860, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":59722548, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":59726604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":59730660, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59731980, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59732028, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":59732076, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59732108, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59732156, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":59732204, + "target":34962 + }, + { + "buffer":0, + "byteLength":3960, + "byteOffset":59732236, + "target":34962 + }, + { + "buffer":0, + "byteLength":3960, + "byteOffset":59736196, + "target":34962 + }, + { + "buffer":0, + "byteLength":2640, + "byteOffset":59740156, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":59742796, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":59749756, + "target":34962 + }, + { + "buffer":0, + "byteLength":888, + "byteOffset":59756716, + "target":34962 + }, + { + "buffer":0, + "byteLength":888, + "byteOffset":59757604, + "target":34962 + }, + { + "buffer":0, + "byteLength":592, + "byteOffset":59758492, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":59759084, + "target":34963 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":59759348, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":59766476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":59773604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":59775236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":59776868, + "target":34962 + }, + { + "buffer":0, + "byteLength":4188, + "byteOffset":59777956, + "target":34962 + }, + { + "buffer":0, + "byteLength":4188, + "byteOffset":59782144, + "target":34962 + }, + { + "buffer":0, + "byteLength":2792, + "byteOffset":59786332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":59789124, + "target":34963 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":59790564, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":59793252, + "target":34962 + }, + { + "buffer":0, + "byteLength":660, + "byteOffset":59795940, + "target":34962 + }, + { + "buffer":0, + "byteLength":660, + "byteOffset":59796600, + "target":34962 + }, + { + "buffer":0, + "byteLength":440, + "byteOffset":59797260, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":59797700, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":59798612, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":59799524, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":59800132, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":59807020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1476, + "byteOffset":59813908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1476, + "byteOffset":59815384, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":59816860, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":59817844, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":59824852, + "target":34962 + }, + { + "buffer":0, + "byteLength":3888, + "byteOffset":59831860, + "target":34962 + }, + { + "buffer":0, + "byteLength":3888, + "byteOffset":59835748, + "target":34962 + }, + { + "buffer":0, + "byteLength":2592, + "byteOffset":59839636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":59842228, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":59843668, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":59843956, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":59844244, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":59844436, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":59844628, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":59844820, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":59844948, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":59847660, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":59850372, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":59857488, + "target":34962 + }, + { + "buffer":0, + "byteLength":4744, + "byteOffset":59864604, + "target":34962 + }, + { + "buffer":0, + "byteLength":2088, + "byteOffset":59869348, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":59871436, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":59871724, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":59872012, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":59872204, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":59873116, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":59874028, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":59874636, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":59878668, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59882700, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":59882748, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":59882796, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":59882828, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":59889572, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":59896316, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":59913356, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":59930396, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":59941756, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":59943100, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":59944444, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":59946892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":59949340, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":59950972, + "target":34963 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":59951524, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":59958628, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":59965732, + "target":34963 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":59967724, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":59974720, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":59981716, + "target":34963 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":59983708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":59984788, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":59985868, + "target":34963 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":59986300, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":59990332, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":59994364, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":59994652, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":59994940, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":59995792, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":59996644, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":59997212, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":60004316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":60011420, + "target":34963 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":60013412, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":60019748, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":60026084, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":60030308, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":60034364, + "target":34962 + }, + { + "buffer":0, + "byteLength":3972, + "byteOffset":60038420, + "target":34962 + }, + { + "buffer":0, + "byteLength":3972, + "byteOffset":60042392, + "target":34962 + }, + { + "buffer":0, + "byteLength":2648, + "byteOffset":60046364, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":60049012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":60050188, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":60051364, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":60052148, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":60052820, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":60053492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":60053940, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":60055284, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60056628, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60056676, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60056724, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":60056756, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":60063788, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":60070820, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":60071444, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":60072068, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60072484, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60072532, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60072580, + "target":34962 + }, + { + "buffer":0, + "byteLength":3408, + "byteOffset":60072612, + "target":34962 + }, + { + "buffer":0, + "byteLength":3408, + "byteOffset":60076020, + "target":34962 + }, + { + "buffer":0, + "byteLength":2272, + "byteOffset":60079428, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":60081700, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":60085084, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":60088468, + "target":34962 + }, + { + "buffer":0, + "byteLength":1248, + "byteOffset":60090724, + "target":34962 + }, + { + "buffer":0, + "byteLength":1248, + "byteOffset":60091972, + "target":34962 + }, + { + "buffer":0, + "byteLength":832, + "byteOffset":60093220, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":60094052, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":60094628, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":60095204, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60095588, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60095636, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60095684, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60095716, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60096004, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":60096292, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":60096484, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":60103444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":60110404, + "target":34963 + }, + { + "buffer":0, + "byteLength":2532, + "byteOffset":60112396, + "target":34962 + }, + { + "buffer":0, + "byteLength":2532, + "byteOffset":60114928, + "target":34962 + }, + { + "buffer":0, + "byteLength":1688, + "byteOffset":60117460, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":60119148, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":60121524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":60123900, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":60125484, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":60129588, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":60133692, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":60136428, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60137868, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60137916, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60137964, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60137996, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60138044, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60138092, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60138124, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60138172, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60138220, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60138252, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60138300, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60138348, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":60138380, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":60138908, + "target":34962 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":60139436, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60139788, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60139836, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60139884, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":60139916, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":60147812, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":60155708, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":60160972, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":60178012, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":60195052, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":60206412, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":60213600, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":60220788, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":60223476, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":60226164, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":60227028, + "target":34962 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":60227892, + "target":34962 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":60231936, + "target":34962 + }, + { + "buffer":0, + "byteLength":2696, + "byteOffset":60235980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":60238676, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60240116, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60240404, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":60240692, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":60240884, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":60241508, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":60242132, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":60242548, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":60249256, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":60255964, + "target":34962 + }, + { + "buffer":0, + "byteLength":3348, + "byteOffset":60260436, + "target":34962 + }, + { + "buffer":0, + "byteLength":3348, + "byteOffset":60263784, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":60267132, + "target":34962 + }, + { + "buffer":0, + "byteLength":9900, + "byteOffset":60269364, + "target":34962 + }, + { + "buffer":0, + "byteLength":9900, + "byteOffset":60279264, + "target":34962 + }, + { + "buffer":0, + "byteLength":6600, + "byteOffset":60289164, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":60295764, + "target":34963 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":60298308, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":60300756, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":60303204, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60304836, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60304884, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60304932, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":60304964, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":60309020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":60313076, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60314396, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60314684, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":60314972, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":60315164, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":60315236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":60316388, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":60317540, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":60324596, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":60331652, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":60338516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":60345380, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60347372, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60347660, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":60347948, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":60354884, + "target":34962 + }, + { + "buffer":0, + "byteLength":2532, + "byteOffset":60361820, + "target":34962 + }, + { + "buffer":0, + "byteLength":2532, + "byteOffset":60364352, + "target":34962 + }, + { + "buffer":0, + "byteLength":1688, + "byteOffset":60366884, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60368572, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60368860, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":60369148, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":60369340, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":60373372, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":60377404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":60380092, + "target":34963 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":60381532, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":60383908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":60386284, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":60387868, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":60391924, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60395980, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60396028, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60396076, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60396108, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60396156, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60396204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":60396236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":60397988, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":60399740, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60400908, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60400956, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60401004, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":60401036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":60402188, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":60403340, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":60404108, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":60406220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1408, + "byteOffset":60408332, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":60409740, + "target":34963 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":60410460, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":60417324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":60424188, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60426180, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60426228, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60426276, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":60426308, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":60427172, + "target":34962 + }, + { + "buffer":0, + "byteLength":4284, + "byteOffset":60428036, + "target":34962 + }, + { + "buffer":0, + "byteLength":4284, + "byteOffset":60432320, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":60436604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":60439460, + "target":34963 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":60440900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":60442364, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":60443828, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":60444804, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":60447492, + "target":34962 + }, + { + "buffer":0, + "byteLength":3300, + "byteOffset":60450180, + "target":34962 + }, + { + "buffer":0, + "byteLength":3300, + "byteOffset":60453480, + "target":34962 + }, + { + "buffer":0, + "byteLength":2200, + "byteOffset":60456780, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":60458980, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60459940, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60459988, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60460036, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60460068, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60460116, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60460164, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":60460196, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":60467204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":60474212, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60476204, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60476492, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":60476780, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60476972, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60477260, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":60477548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":60477740, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":60479492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":60481244, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":60482412, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":60489540, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":60496668, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":60500748, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60504828, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60504876, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60504924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1764, + "byteOffset":60504956, + "target":34962 + }, + { + "buffer":0, + "byteLength":1764, + "byteOffset":60506720, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":60508484, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":60509660, + "target":34963 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":60510140, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":60517280, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":60524420, + "target":34963 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":60526412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":60527732, + "target":34962 + }, + { + "buffer":0, + "byteLength":880, + "byteOffset":60529052, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":60529932, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":60536988, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":60544044, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60546036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60546324, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":60546612, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":60546804, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":60553596, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60560388, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60560676, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":60560964, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":60563652, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60566340, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60566388, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60566436, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":60566468, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":60567044, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":60567620, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":60568004, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":60575036, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":60582068, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":60588860, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":60595652, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":60602660, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":60609668, + "target":34963 + }, + { + "buffer":0, + "byteLength":4392, + "byteOffset":60611660, + "target":34962 + }, + { + "buffer":0, + "byteLength":4392, + "byteOffset":60616052, + "target":34962 + }, + { + "buffer":0, + "byteLength":2928, + "byteOffset":60620444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":60623372, + "target":34963 + }, + { + "buffer":0, + "byteLength":1548, + "byteOffset":60624812, + "target":34962 + }, + { + "buffer":0, + "byteLength":1548, + "byteOffset":60626360, + "target":34962 + }, + { + "buffer":0, + "byteLength":1032, + "byteOffset":60627908, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":60628940, + "target":34963 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":60629420, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":60636548, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":60643676, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":60644636, + "target":34962 + }, + { + "buffer":0, + "byteLength":640, + "byteOffset":60645596, + "target":34962 + }, + { + "buffer":0, + "byteLength":640, + "byteOffset":60646236, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":60646876, + "target":34963 + }, + { + "buffer":0, + "byteLength":4248, + "byteOffset":60647212, + "target":34962 + }, + { + "buffer":0, + "byteLength":4248, + "byteOffset":60651460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":60655708, + "target":34963 + }, + { + "buffer":0, + "byteLength":1164, + "byteOffset":60657028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1164, + "byteOffset":60658192, + "target":34962 + }, + { + "buffer":0, + "byteLength":776, + "byteOffset":60659356, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":60660132, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":60661044, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":60661956, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60662564, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60662852, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":60663140, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60663332, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60663380, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60663428, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":60663460, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":60671356, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":60679252, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":60684516, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":60691404, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":60698292, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":60705228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":60712164, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":60714156, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":60731196, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":60748236, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":60759596, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":60762044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":60764492, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":60766124, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":60766796, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":60767468, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":60767916, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":60768492, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60769068, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60769116, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60769164, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":60769196, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":60776108, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":60783020, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":60787100, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60791180, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60791468, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":60791756, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":60792608, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":60793460, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":60794028, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":60801228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":60808428, + "target":34963 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":60810420, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":60818196, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":60825972, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":60831156, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":60839340, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":60847524, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":60852980, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":60857012, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":60861044, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":60868940, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":60876836, + "target":34962 + }, + { + "buffer":0, + "byteLength":3960, + "byteOffset":60882100, + "target":34962 + }, + { + "buffer":0, + "byteLength":3960, + "byteOffset":60886060, + "target":34962 + }, + { + "buffer":0, + "byteLength":2640, + "byteOffset":60890020, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":60892660, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":60899692, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":60906724, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":60913060, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":60919396, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":60923620, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":60930712, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":60937804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":60938980, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":60940156, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":60940940, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":60943820, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":60946700, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":60948620, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":60952700, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60956780, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60956828, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60956876, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":60956908, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":60957508, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":60958108, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60958508, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":60958556, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60958604, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60958636, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":60958924, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":60959212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":60959404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":60960868, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":60962332, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":60963308, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":60963896, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":60964484, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":60964876, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":60972052, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":60979228, + "target":34962 + }, + { + "buffer":0, + "byteLength":8040, + "byteOffset":60987268, + "target":34962 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":60995308, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":60999220, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":61000084, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":61000948, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":61008844, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":61016740, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":61022004, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":61022292, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":61022580, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":61022772, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":61023924, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":61025076, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":61025124, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":61025172, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":61025204, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":61026116, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":61027028, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":61027636, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":61027924, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":61028212, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":61028404, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":61035316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":61042228, + "target":34963 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":61044220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":61045648, + "target":34962 + }, + { + "buffer":0, + "byteLength":952, + "byteOffset":61047076, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":61048028, + "target":34963 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":61048508, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":61050884, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":61053260, + "target":34962 + }, + { + "buffer":0, + "byteLength":16608, + "byteOffset":61054844, + "target":34962 + }, + { + "buffer":0, + "byteLength":16608, + "byteOffset":61071452, + "target":34962 + }, + { + "buffer":0, + "byteLength":11072, + "byteOffset":61088060, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":61099132, + "target":34963 + }, + { + "buffer":0, + "byteLength":16656, + "byteOffset":61107412, + "target":34962 + }, + { + "buffer":0, + "byteLength":16656, + "byteOffset":61124068, + "target":34962 + }, + { + "buffer":0, + "byteLength":11104, + "byteOffset":61140724, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":61151828, + "target":34963 + }, + { + "buffer":0, + "byteLength":16752, + "byteOffset":61160108, + "target":34962 + }, + { + "buffer":0, + "byteLength":16752, + "byteOffset":61176860, + "target":34962 + }, + { + "buffer":0, + "byteLength":11168, + "byteOffset":61193612, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":61204780, + "target":34963 + }, + { + "buffer":0, + "byteLength":16680, + "byteOffset":61213060, + "target":34962 + }, + { + "buffer":0, + "byteLength":16680, + "byteOffset":61229740, + "target":34962 + }, + { + "buffer":0, + "byteLength":11120, + "byteOffset":61246420, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":61257540, + "target":34963 + }, + { + "buffer":0, + "byteLength":33144, + "byteOffset":61265820, + "target":34962 + }, + { + "buffer":0, + "byteLength":33144, + "byteOffset":61298964, + "target":34962 + }, + { + "buffer":0, + "byteLength":22096, + "byteOffset":61332108, + "target":34962 + }, + { + "buffer":0, + "byteLength":28224, + "byteOffset":61354204, + "target":34963 + }, + { + "buffer":0, + "byteLength":33144, + "byteOffset":61382428, + "target":34962 + }, + { + "buffer":0, + "byteLength":33144, + "byteOffset":61415572, + "target":34962 + }, + { + "buffer":0, + "byteLength":22096, + "byteOffset":61448716, + "target":34962 + }, + { + "buffer":0, + "byteLength":33144, + "byteOffset":61470812, + "target":34962 + }, + { + "buffer":0, + "byteLength":33144, + "byteOffset":61503956, + "target":34962 + }, + { + "buffer":0, + "byteLength":22096, + "byteOffset":61537100, + "target":34962 + }, + { + "buffer":0, + "byteLength":33144, + "byteOffset":61559196, + "target":34962 + }, + { + "buffer":0, + "byteLength":33144, + "byteOffset":61592340, + "target":34962 + }, + { + "buffer":0, + "byteLength":22096, + "byteOffset":61625484, + "target":34962 + }, + { + "buffer":0, + "byteLength":11664, + "byteOffset":61647580, + "target":34962 + }, + { + "buffer":0, + "byteLength":11664, + "byteOffset":61659244, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":61670908, + "target":34962 + }, + { + "buffer":0, + "byteLength":5040, + "byteOffset":61678684, + "target":34963 + }, + { + "buffer":0, + "byteLength":11424, + "byteOffset":61683724, + "target":34962 + }, + { + "buffer":0, + "byteLength":11424, + "byteOffset":61695148, + "target":34962 + }, + { + "buffer":0, + "byteLength":7616, + "byteOffset":61706572, + "target":34962 + }, + { + "buffer":0, + "byteLength":5040, + "byteOffset":61714188, + "target":34963 + }, + { + "buffer":0, + "byteLength":11328, + "byteOffset":61719228, + "target":34962 + }, + { + "buffer":0, + "byteLength":11328, + "byteOffset":61730556, + "target":34962 + }, + { + "buffer":0, + "byteLength":7552, + "byteOffset":61741884, + "target":34962 + }, + { + "buffer":0, + "byteLength":5040, + "byteOffset":61749436, + "target":34963 + }, + { + "buffer":0, + "byteLength":11376, + "byteOffset":61754476, + "target":34962 + }, + { + "buffer":0, + "byteLength":11376, + "byteOffset":61765852, + "target":34962 + }, + { + "buffer":0, + "byteLength":7584, + "byteOffset":61777228, + "target":34962 + }, + { + "buffer":0, + "byteLength":5040, + "byteOffset":61784812, + "target":34963 + }, + { + "buffer":0, + "byteLength":176352, + "byteOffset":61789852, + "target":34962 + }, + { + "buffer":0, + "byteLength":176352, + "byteOffset":61966204, + "target":34962 + }, + { + "buffer":0, + "byteLength":117568, + "byteOffset":62142556, + "target":34962 + }, + { + "buffer":0, + "byteLength":171000, + "byteOffset":62260124, + "target":34963 + }, + { + "buffer":0, + "byteLength":9612, + "byteOffset":62431124, + "target":34962 + }, + { + "buffer":0, + "byteLength":9612, + "byteOffset":62440736, + "target":34962 + }, + { + "buffer":0, + "byteLength":6408, + "byteOffset":62450348, + "target":34962 + }, + { + "buffer":0, + "byteLength":9120, + "byteOffset":62456756, + "target":34963 + }, + { + "buffer":0, + "byteLength":176352, + "byteOffset":62465876, + "target":34962 + }, + { + "buffer":0, + "byteLength":176352, + "byteOffset":62642228, + "target":34962 + }, + { + "buffer":0, + "byteLength":117568, + "byteOffset":62818580, + "target":34962 + }, + { + "buffer":0, + "byteLength":9612, + "byteOffset":62936148, + "target":34962 + }, + { + "buffer":0, + "byteLength":9612, + "byteOffset":62945760, + "target":34962 + }, + { + "buffer":0, + "byteLength":6408, + "byteOffset":62955372, + "target":34962 + }, + { + "buffer":0, + "byteLength":176352, + "byteOffset":62961780, + "target":34962 + }, + { + "buffer":0, + "byteLength":176352, + "byteOffset":63138132, + "target":34962 + }, + { + "buffer":0, + "byteLength":117568, + "byteOffset":63314484, + "target":34962 + }, + { + "buffer":0, + "byteLength":9612, + "byteOffset":63432052, + "target":34962 + }, + { + "buffer":0, + "byteLength":9612, + "byteOffset":63441664, + "target":34962 + }, + { + "buffer":0, + "byteLength":6408, + "byteOffset":63451276, + "target":34962 + }, + { + "buffer":0, + "byteLength":176352, + "byteOffset":63457684, + "target":34962 + }, + { + "buffer":0, + "byteLength":176352, + "byteOffset":63634036, + "target":34962 + }, + { + "buffer":0, + "byteLength":117568, + "byteOffset":63810388, + "target":34962 + }, + { + "buffer":0, + "byteLength":9612, + "byteOffset":63927956, + "target":34962 + }, + { + "buffer":0, + "byteLength":9612, + "byteOffset":63937568, + "target":34962 + }, + { + "buffer":0, + "byteLength":6408, + "byteOffset":63947180, + "target":34962 + }, + { + "buffer":0, + "byteLength":19284, + "byteOffset":63953588, + "target":34962 + }, + { + "buffer":0, + "byteLength":19284, + "byteOffset":63972872, + "target":34962 + }, + { + "buffer":0, + "byteLength":12856, + "byteOffset":63992156, + "target":34962 + }, + { + "buffer":0, + "byteLength":16320, + "byteOffset":64005012, + "target":34963 + }, + { + "buffer":0, + "byteLength":210120, + "byteOffset":64021332, + "target":34962 + }, + { + "buffer":0, + "byteLength":210120, + "byteOffset":64231452, + "target":34962 + }, + { + "buffer":0, + "byteLength":140080, + "byteOffset":64441572, + "target":34962 + }, + { + "buffer":0, + "byteLength":73440, + "byteOffset":64581652, + "target":34963 + }, + { + "buffer":0, + "byteLength":19080, + "byteOffset":64655092, + "target":34962 + }, + { + "buffer":0, + "byteLength":19080, + "byteOffset":64674172, + "target":34962 + }, + { + "buffer":0, + "byteLength":12720, + "byteOffset":64693252, + "target":34962 + }, + { + "buffer":0, + "byteLength":16320, + "byteOffset":64705972, + "target":34963 + }, + { + "buffer":0, + "byteLength":210192, + "byteOffset":64722292, + "target":34962 + }, + { + "buffer":0, + "byteLength":210192, + "byteOffset":64932484, + "target":34962 + }, + { + "buffer":0, + "byteLength":140128, + "byteOffset":65142676, + "target":34962 + }, + { + "buffer":0, + "byteLength":73440, + "byteOffset":65282804, + "target":34963 + }, + { + "buffer":0, + "byteLength":15504, + "byteOffset":65356244, + "target":34962 + }, + { + "buffer":0, + "byteLength":15504, + "byteOffset":65371748, + "target":34962 + }, + { + "buffer":0, + "byteLength":10336, + "byteOffset":65387252, + "target":34962 + }, + { + "buffer":0, + "byteLength":13056, + "byteOffset":65397588, + "target":34963 + }, + { + "buffer":0, + "byteLength":213900, + "byteOffset":65410644, + "target":34962 + }, + { + "buffer":0, + "byteLength":213900, + "byteOffset":65624544, + "target":34962 + }, + { + "buffer":0, + "byteLength":142600, + "byteOffset":65838444, + "target":34962 + }, + { + "buffer":0, + "byteLength":76704, + "byteOffset":65981044, + "target":34963 + }, + { + "buffer":0, + "byteLength":15504, + "byteOffset":66057748, + "target":34962 + }, + { + "buffer":0, + "byteLength":15504, + "byteOffset":66073252, + "target":34962 + }, + { + "buffer":0, + "byteLength":10336, + "byteOffset":66088756, + "target":34962 + }, + { + "buffer":0, + "byteLength":213960, + "byteOffset":66099092, + "target":34962 + }, + { + "buffer":0, + "byteLength":213960, + "byteOffset":66313052, + "target":34962 + }, + { + "buffer":0, + "byteLength":142640, + "byteOffset":66527012, + "target":34962 + }, + { + "buffer":0, + "byteLength":76704, + "byteOffset":66669652, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66746356, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66746644, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":66746932, + "target":34963 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":66747004, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":66747556, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":66748108, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":66748476, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":66748524, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":66748572, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":66748604, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":66748652, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":66748700, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":66748732, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":66748780, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":66748828, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":66748860, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":66755568, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":66762276, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":66766748, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":66773780, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66780812, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66781100, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":66781388, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":66781580, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":66788288, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":66794996, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66799468, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66799756, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":66800044, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":66800236, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":66803092, + "target":34962 + }, + { + "buffer":0, + "byteLength":1904, + "byteOffset":66805948, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66807852, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66808140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":66808428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":66809604, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":66810780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":66811564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":66813016, + "target":34962 + }, + { + "buffer":0, + "byteLength":968, + "byteOffset":66814468, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":66815436, + "target":34963 + }, + { + "buffer":0, + "byteLength":9612, + "byteOffset":66815916, + "target":34962 + }, + { + "buffer":0, + "byteLength":9612, + "byteOffset":66825528, + "target":34962 + }, + { + "buffer":0, + "byteLength":6408, + "byteOffset":66835140, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":66841548, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":66848508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":66855468, + "target":34963 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":66857460, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":66859908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":66862356, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":66863988, + "target":34963 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":66864540, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":66871404, + "target":34962 + }, + { + "buffer":0, + "byteLength":6900, + "byteOffset":66878268, + "target":34962 + }, + { + "buffer":0, + "byteLength":6900, + "byteOffset":66885168, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":66892068, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":66894060, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":66894108, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":66894156, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":66894188, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":66901292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":66908396, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":66909668, + "target":34962 + }, + { + "buffer":0, + "byteLength":848, + "byteOffset":66910940, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":66911788, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":66912196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":66913348, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":66914500, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":66921388, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":66928276, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":66928996, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":66929716, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":66930196, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":66931060, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66931924, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66932212, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":66932500, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":66932692, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":66932740, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":66932788, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":66932820, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":66941004, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":66949188, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":66954644, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":66958724, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":66962804, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":66962852, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":66962900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":66962932, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":66964684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":66966436, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66967604, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66967892, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66968180, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66968468, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":66968756, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":66968948, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":66970916, + "target":34962 + }, + { + "buffer":0, + "byteLength":1312, + "byteOffset":66972884, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":66974196, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":66981120, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":66988044, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66990036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66990324, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":66990612, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66990804, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66991092, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":66991380, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":66991572, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":66991620, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":66991668, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":66991700, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":66992552, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":66993404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":66993972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":66995724, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":66997476, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66998644, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":66998932, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":66999220, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":66999412, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":67011988, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":67024564, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":67032948, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":67038804, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":67044660, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":67048564, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":67055596, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":67062628, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":67066684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":67070740, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":67072372, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":67074004, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":67075092, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":67075140, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":67075188, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":67075220, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":67082156, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":67089092, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":67096004, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":67102916, + "target":34963 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":67104908, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":67111976, + "target":34962 + }, + { + "buffer":0, + "byteLength":4272, + "byteOffset":67119044, + "target":34962 + }, + { + "buffer":0, + "byteLength":4272, + "byteOffset":67123316, + "target":34962 + }, + { + "buffer":0, + "byteLength":2848, + "byteOffset":67127588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":67130436, + "target":34963 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":67131876, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":67133580, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":67135284, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":67136420, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":67137284, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":67138148, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":67146332, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":67154516, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":67159972, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":67162708, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":67165444, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":67166428, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":67166476, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":67166524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":67166556, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":67168164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1072, + "byteOffset":67169772, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":67170844, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":67177948, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":67185052, + "target":34963 + }, + { + "buffer":0, + "byteLength":1716, + "byteOffset":67187044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1716, + "byteOffset":67188760, + "target":34962 + }, + { + "buffer":0, + "byteLength":1144, + "byteOffset":67190476, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":67191620, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":67191908, + "target":34962 + }, + { + "buffer":0, + "byteLength":3900, + "byteOffset":67192196, + "target":34962 + }, + { + "buffer":0, + "byteLength":3900, + "byteOffset":67196096, + "target":34962 + }, + { + "buffer":0, + "byteLength":2600, + "byteOffset":67199996, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":67202596, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":67202884, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":67203172, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":67203364, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":67203652, + "target":34962 + }, + { + "buffer":0, + "byteLength":9768, + "byteOffset":67203940, + "target":34962 + }, + { + "buffer":0, + "byteLength":9768, + "byteOffset":67213708, + "target":34962 + }, + { + "buffer":0, + "byteLength":6512, + "byteOffset":67223476, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":67229988, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":67232532, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":67232580, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":67232628, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":67232660, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":67232948, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":67233236, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":67233428, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":67255148, + "target":34962 + }, + { + "buffer":0, + "byteLength":14480, + "byteOffset":67276868, + "target":34962 + }, + { + "buffer":0, + "byteLength":10992, + "byteOffset":67291348, + "target":34962 + }, + { + "buffer":0, + "byteLength":10992, + "byteOffset":67302340, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":67313332, + "target":34963 + }, + { + "buffer":0, + "byteLength":97332, + "byteOffset":67318132, + "target":34962 + }, + { + "buffer":0, + "byteLength":97332, + "byteOffset":67415464, + "target":34962 + }, + { + "buffer":0, + "byteLength":64888, + "byteOffset":67512796, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":67577684, + "target":34963 + }, + { + "buffer":0, + "byteLength":3900, + "byteOffset":67610804, + "target":34962 + }, + { + "buffer":0, + "byteLength":3900, + "byteOffset":67614704, + "target":34962 + }, + { + "buffer":0, + "byteLength":2600, + "byteOffset":67618604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":67621204, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":67622644, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":67623220, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":67623796, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":67624180, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":67624324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":67625668, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":67627012, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":67627908, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":67628820, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":67629732, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":67630340, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":67632572, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":67634804, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":67636292, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":67643420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":67650548, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":67652540, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":67652588, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":67652636, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":67652668, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":67655380, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":67658092, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":67658956, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":67659820, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":67676860, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":67693900, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":67705260, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":67707708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":67710156, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":67711788, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":67713132, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":67714476, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":67717860, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":67721244, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":67723500, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":67726212, + "target":34962 + }, + { + "buffer":0, + "byteLength":81696, + "byteOffset":67728924, + "target":34962 + }, + { + "buffer":0, + "byteLength":81696, + "byteOffset":67810620, + "target":34962 + }, + { + "buffer":0, + "byteLength":54464, + "byteOffset":67892316, + "target":34962 + }, + { + "buffer":0, + "byteLength":42888, + "byteOffset":67946780, + "target":34963 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":67989668, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":67996388, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":68003108, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68005100, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68005148, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68005196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":68005228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":68006980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":68008732, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":68009900, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":68012588, + "target":34962 + }, + { + "buffer":0, + "byteLength":3972, + "byteOffset":68015276, + "target":34962 + }, + { + "buffer":0, + "byteLength":3972, + "byteOffset":68019248, + "target":34962 + }, + { + "buffer":0, + "byteLength":2648, + "byteOffset":68023220, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":68025868, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":68032204, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":68038540, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":68042764, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":68062684, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":68082604, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":68095884, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":68099028, + "target":34962 + }, + { + "buffer":0, + "byteLength":2096, + "byteOffset":68102172, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68104268, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68104556, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68104844, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68105132, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68105420, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68105468, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68105516, + "target":34962 + }, + { + "buffer":0, + "byteLength":660, + "byteOffset":68105548, + "target":34962 + }, + { + "buffer":0, + "byteLength":660, + "byteOffset":68106208, + "target":34962 + }, + { + "buffer":0, + "byteLength":440, + "byteOffset":68106868, + "target":34962 + }, + { + "buffer":0, + "byteLength":2040, + "byteOffset":68107308, + "target":34962 + }, + { + "buffer":0, + "byteLength":2040, + "byteOffset":68109348, + "target":34962 + }, + { + "buffer":0, + "byteLength":1360, + "byteOffset":68111388, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68112748, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68112796, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68112844, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68112876, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68112924, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68112972, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68113004, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68113292, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":68113580, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":68113772, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":68120912, + "target":34962 + }, + { + "buffer":0, + "byteLength":4760, + "byteOffset":68128052, + "target":34962 + }, + { + "buffer":0, + "byteLength":2568, + "byteOffset":68132812, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":68135380, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":68135956, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":68136532, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":68136916, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":68140036, + "target":34962 + }, + { + "buffer":0, + "byteLength":2080, + "byteOffset":68143156, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68145236, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68145284, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68145332, + "target":34962 + }, + { + "buffer":0, + "byteLength":2940, + "byteOffset":68145364, + "target":34962 + }, + { + "buffer":0, + "byteLength":2940, + "byteOffset":68148304, + "target":34962 + }, + { + "buffer":0, + "byteLength":1960, + "byteOffset":68151244, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":68153204, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":68160236, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68167268, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68167556, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":68167844, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":68168036, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":68174924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":68181812, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":68183804, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":68190716, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":68197628, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":68200004, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":68202380, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68203964, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68204252, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":68204540, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":68205140, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":68205740, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68206140, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68206428, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":68206716, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68206908, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68206956, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68207004, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":68207036, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":68209484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":68211932, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":68213564, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":68220668, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":68227772, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":68228636, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":68229500, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":68230076, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":68230988, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":68231900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":68232508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":68234452, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":68236396, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":68237692, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":68244772, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68251852, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68252140, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":68252428, + "target":34962 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":68252620, + "target":34962 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":68259292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":68265964, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68267956, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68268244, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":68268532, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68268724, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68268772, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68268820, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":68268852, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":68275836, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":68282820, + "target":34963 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":68284812, + "target":34962 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":68292036, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":68299260, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":68302044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1856, + "byteOffset":68304828, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68306684, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68306972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":68307260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":68308604, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":68309948, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68310844, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68311132, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":68311420, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68311612, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68311900, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":68312188, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":68312836, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":68313484, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":68313916, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":68320852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":68327788, + "target":34963 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":68329780, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":68332228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":68334676, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":68336308, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":68343244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":68350180, + "target":34963 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":68352172, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":68354860, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68357548, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68357596, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68357644, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":68357676, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":68358780, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":68359884, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":68360620, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":68361028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":68362180, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":68363332, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":68370244, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":68377156, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":68377828, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":68378500, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68378948, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68379236, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":68379524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":68379716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":68380772, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":68381828, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":68382532, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":68389636, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":68396740, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":68399116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":68401492, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":68403076, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":68405812, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":68408548, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":68415580, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":68422612, + "target":34963 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":68424604, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":68431768, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68438932, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68438980, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68439028, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":68439060, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":68445948, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68452836, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68452884, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68452932, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":68452964, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":68459300, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":68465636, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":68469860, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":68472596, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":68475332, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68477156, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68477444, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":68477732, + "target":34962 + }, + { + "buffer":0, + "byteLength":5556, + "byteOffset":68477924, + "target":34962 + }, + { + "buffer":0, + "byteLength":5556, + "byteOffset":68483480, + "target":34962 + }, + { + "buffer":0, + "byteLength":3704, + "byteOffset":68489036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68492740, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68493028, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":68493316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":68493508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":68495260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":68497012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":68498180, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":68499188, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":68500196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1332, + "byteOffset":68500868, + "target":34962 + }, + { + "buffer":0, + "byteLength":1332, + "byteOffset":68502200, + "target":34962 + }, + { + "buffer":0, + "byteLength":888, + "byteOffset":68503532, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":68504420, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":68508560, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":68512700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":68515460, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":68516900, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":68533940, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":68550980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":68562340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":68563444, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":68564548, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68565284, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68565332, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68565380, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":68565412, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":68572420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":68579428, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":68581420, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":68588404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":68595388, + "target":34963 + }, + { + "buffer":0, + "byteLength":6900, + "byteOffset":68597380, + "target":34962 + }, + { + "buffer":0, + "byteLength":6900, + "byteOffset":68604280, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":68611180, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68613172, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68613460, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":68613748, + "target":34962 + }, + { + "buffer":0, + "byteLength":9720, + "byteOffset":68613940, + "target":34962 + }, + { + "buffer":0, + "byteLength":9720, + "byteOffset":68623660, + "target":34962 + }, + { + "buffer":0, + "byteLength":6480, + "byteOffset":68633380, + "target":34962 + }, + { + "buffer":0, + "byteLength":4344, + "byteOffset":68639860, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":68644204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":68645956, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":68647708, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":68648876, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":68655584, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":68662292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1716, + "byteOffset":68666764, + "target":34962 + }, + { + "buffer":0, + "byteLength":1716, + "byteOffset":68668480, + "target":34962 + }, + { + "buffer":0, + "byteLength":1144, + "byteOffset":68670196, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":68671340, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":68678540, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":68685740, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":68692604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":68699468, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68701460, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":68701508, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68701556, + "target":34962 + }, + { + "buffer":0, + "byteLength":9840, + "byteOffset":68701588, + "target":34962 + }, + { + "buffer":0, + "byteLength":9840, + "byteOffset":68711428, + "target":34962 + }, + { + "buffer":0, + "byteLength":6560, + "byteOffset":68721268, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":68727828, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":68730540, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":68733252, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":68737284, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68741316, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68741604, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":68741892, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":68748972, + "target":34962 + }, + { + "buffer":0, + "byteLength":7452, + "byteOffset":68756052, + "target":34962 + }, + { + "buffer":0, + "byteLength":7452, + "byteOffset":68763504, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68770956, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":68771244, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":68771532, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":68772396, + "target":34962 + }, + { + "buffer":0, + "byteLength":168168, + "byteOffset":68773260, + "target":34962 + }, + { + "buffer":0, + "byteLength":168168, + "byteOffset":68941428, + "target":34962 + }, + { + "buffer":0, + "byteLength":112112, + "byteOffset":69109596, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":69221708, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":69221756, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":69221804, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":69221836, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":69222124, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":69222412, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":69222604, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":69222892, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":69223180, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":69223372, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":69225196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1216, + "byteOffset":69227020, + "target":34962 + }, + { + "buffer":0, + "byteLength":99024, + "byteOffset":69228236, + "target":34962 + }, + { + "buffer":0, + "byteLength":99024, + "byteOffset":69327260, + "target":34962 + }, + { + "buffer":0, + "byteLength":66016, + "byteOffset":69426284, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":69492300, + "target":34963 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":69525420, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":69532572, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":69539724, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":69540012, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":69540300, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":69540492, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":69548268, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":69556044, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":69561228, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":69568272, + "target":34962 + }, + { + "buffer":0, + "byteLength":1800, + "byteOffset":69575316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1800, + "byteOffset":69577116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1200, + "byteOffset":69578916, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":69580116, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":69587076, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":69594036, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":69596028, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":69603060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":69610092, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":69612084, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":69613428, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":69614772, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":69615668, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":69628244, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":69640820, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":69649204, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":69656980, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":69664756, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":69669940, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":69669988, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":69670036, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":69670068, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":69670116, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":69670164, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":69670196, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":69687236, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":69704276, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":69715636, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":69722344, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":69729052, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":69733524, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":69740496, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":69747468, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":69750852, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":69754236, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":69756492, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":69757356, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":69758220, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":69760668, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":69763116, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":69764748, + "target":34963 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":69765708, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":69772416, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":69779124, + "target":34962 + }, + { + "buffer":0, + "byteLength":27372, + "byteOffset":69783596, + "target":34962 + }, + { + "buffer":0, + "byteLength":27372, + "byteOffset":69810968, + "target":34962 + }, + { + "buffer":0, + "byteLength":18248, + "byteOffset":69838340, + "target":34962 + }, + { + "buffer":0, + "byteLength":7860, + "byteOffset":69856588, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":69864448, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":69871336, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":69878224, + "target":34963 + }, + { + "buffer":0, + "byteLength":9684, + "byteOffset":69880216, + "target":34962 + }, + { + "buffer":0, + "byteLength":9684, + "byteOffset":69889900, + "target":34962 + }, + { + "buffer":0, + "byteLength":6456, + "byteOffset":69899584, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":69906040, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":69908584, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":69908632, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":69908680, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":69908712, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":69910464, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":69912216, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":69913384, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":69920092, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":69926800, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":69931272, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":69931320, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":69931368, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":69931400, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":69931448, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":69931496, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":69931528, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":69938464, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":69945400, + "target":34963 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":69947392, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":69951616, + "target":34962 + }, + { + "buffer":0, + "byteLength":2816, + "byteOffset":69955840, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":69958656, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":69958944, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":69959232, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":69967416, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":69975600, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":69981056, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":70000976, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":70020896, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70034176, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70034224, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70034272, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":70034304, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":70036680, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":70039056, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":70040640, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":70044744, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70048848, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70048896, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70048944, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":70048976, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":70049552, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":70050128, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70050512, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70050560, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70050608, + "target":34962 + }, + { + "buffer":0, + "byteLength":1764, + "byteOffset":70050640, + "target":34962 + }, + { + "buffer":0, + "byteLength":1764, + "byteOffset":70052404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":70054168, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":70055344, + "target":34963 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":70055824, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":70062700, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":70069576, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":70070152, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":70070728, + "target":34962 + }, + { + "buffer":0, + "byteLength":4020, + "byteOffset":70071112, + "target":34962 + }, + { + "buffer":0, + "byteLength":4020, + "byteOffset":70075132, + "target":34962 + }, + { + "buffer":0, + "byteLength":2680, + "byteOffset":70079152, + "target":34962 + }, + { + "buffer":0, + "byteLength":5808, + "byteOffset":70081832, + "target":34962 + }, + { + "buffer":0, + "byteLength":5808, + "byteOffset":70087640, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":70093448, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70096232, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70096280, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70096328, + "target":34962 + }, + { + "buffer":0, + "byteLength":3168, + "byteOffset":70096360, + "target":34962 + }, + { + "buffer":0, + "byteLength":3168, + "byteOffset":70099528, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":70102696, + "target":34962 + }, + { + "buffer":0, + "byteLength":2868, + "byteOffset":70104808, + "target":34962 + }, + { + "buffer":0, + "byteLength":2868, + "byteOffset":70107676, + "target":34962 + }, + { + "buffer":0, + "byteLength":1912, + "byteOffset":70110544, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":70112456, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":70119536, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":70126616, + "target":34963 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":70128608, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":70130984, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":70133360, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":70134944, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":70135952, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":70136960, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70137632, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70137920, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":70138208, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":70138760, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":70139312, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70139680, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70139728, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70139776, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":70139808, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":70146804, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":70153800, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":70154712, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":70155624, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":70156232, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":70158680, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":70161128, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":70162760, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":70164992, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":70167224, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70168712, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70169000, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70169288, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70169336, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70169384, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70169416, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70169704, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":70169992, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":70171984, + "target":34962 + }, + { + "buffer":0, + "byteLength":1328, + "byteOffset":70173976, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":70175304, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70176024, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70176312, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":70176600, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":70176792, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":70179552, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70182312, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70182360, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70182408, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70182440, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70182728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":70183016, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":70184840, + "target":34962 + }, + { + "buffer":0, + "byteLength":1216, + "byteOffset":70186664, + "target":34962 + }, + { + "buffer":0, + "byteLength":2340, + "byteOffset":70187880, + "target":34962 + }, + { + "buffer":0, + "byteLength":2340, + "byteOffset":70190220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1560, + "byteOffset":70192560, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":70194120, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":70194744, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":70201728, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":70208712, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":70215852, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70222992, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70223280, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":70223568, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":70223760, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":70230960, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":70238160, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":70245072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":70251984, + "target":34963 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":70253976, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":70264560, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":70275144, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":70282200, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70284816, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70284864, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70284912, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70284944, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70284992, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70285040, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":70285072, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":70285216, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":70285360, + "target":34962 + }, + { + "buffer":0, + "byteLength":36, + "byteOffset":70285456, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":70285492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":70286836, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":70288180, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":70295236, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70302292, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70302580, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":70302868, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70303060, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70303348, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":70303636, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70303828, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70304116, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":70304404, + "target":34962 + }, + { + "buffer":0, + "byteLength":2604, + "byteOffset":70304596, + "target":34962 + }, + { + "buffer":0, + "byteLength":2604, + "byteOffset":70307200, + "target":34962 + }, + { + "buffer":0, + "byteLength":1736, + "byteOffset":70309804, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":70311540, + "target":34963 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":70312500, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":70319316, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":70326132, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":70328508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":70330884, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":70332468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":70339176, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":70345884, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70350356, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70350404, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70350452, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":70350484, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":70356820, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":70363156, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":70367380, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":70367980, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":70368580, + "target":34962 + }, + { + "buffer":0, + "byteLength":2124, + "byteOffset":70368980, + "target":34962 + }, + { + "buffer":0, + "byteLength":2124, + "byteOffset":70371104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":70373228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":70374644, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":70376396, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":70378148, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70379316, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70379364, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70379412, + "target":34962 + }, + { + "buffer":0, + "byteLength":4008, + "byteOffset":70379444, + "target":34962 + }, + { + "buffer":0, + "byteLength":4008, + "byteOffset":70383452, + "target":34962 + }, + { + "buffer":0, + "byteLength":2672, + "byteOffset":70387460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":70390132, + "target":34963 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":70391572, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":70392424, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":70393276, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70393844, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70394132, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":70394420, + "target":34962 + }, + { + "buffer":0, + "byteLength":95892, + "byteOffset":70394612, + "target":34962 + }, + { + "buffer":0, + "byteLength":95892, + "byteOffset":70490504, + "target":34962 + }, + { + "buffer":0, + "byteLength":63928, + "byteOffset":70586396, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":70650324, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":70667364, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":70684404, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":70695764, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":70702676, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":70709588, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":70716476, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":70723364, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":70724036, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":70724708, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":70725156, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":70732152, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70739148, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70739196, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70739244, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70739276, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70739324, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70739372, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":70739404, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":70746268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":70753132, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70755124, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70755172, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70755220, + "target":34962 + }, + { + "buffer":0, + "byteLength":13200, + "byteOffset":70755252, + "target":34962 + }, + { + "buffer":0, + "byteLength":13200, + "byteOffset":70768452, + "target":34962 + }, + { + "buffer":0, + "byteLength":5016, + "byteOffset":70781652, + "target":34963 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":70786668, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":70787988, + "target":34962 + }, + { + "buffer":0, + "byteLength":880, + "byteOffset":70789308, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":70790188, + "target":34963 + }, + { + "buffer":0, + "byteLength":6684, + "byteOffset":70790668, + "target":34962 + }, + { + "buffer":0, + "byteLength":6684, + "byteOffset":70797352, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":70804036, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":70806028, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":70806892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":70807756, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":70809508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":70811260, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":70812428, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":70815284, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":70818140, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70819124, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70819412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":70819700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":70821524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1216, + "byteOffset":70823348, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":70824564, + "target":34963 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":70825044, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":70832172, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":70839300, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":70846236, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":70853172, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":70860036, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70866900, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70866948, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70866996, + "target":34962 + }, + { + "buffer":0, + "byteLength":9648, + "byteOffset":70867028, + "target":34962 + }, + { + "buffer":0, + "byteLength":9648, + "byteOffset":70876676, + "target":34962 + }, + { + "buffer":0, + "byteLength":6432, + "byteOffset":70886324, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70892756, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70892804, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70892852, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70892884, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":70893172, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":70893460, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":70896844, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":70900228, + "target":34962 + }, + { + "buffer":0, + "byteLength":5760, + "byteOffset":70902484, + "target":34962 + }, + { + "buffer":0, + "byteLength":5760, + "byteOffset":70908244, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":70914004, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70917844, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":70917892, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70917940, + "target":34962 + }, + { + "buffer":0, + "byteLength":3048, + "byteOffset":70917972, + "target":34962 + }, + { + "buffer":0, + "byteLength":3048, + "byteOffset":70921020, + "target":34962 + }, + { + "buffer":0, + "byteLength":2032, + "byteOffset":70924068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":70926100, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":70927444, + "target":34962 + }, + { + "buffer":0, + "byteLength":102168, + "byteOffset":70928788, + "target":34962 + }, + { + "buffer":0, + "byteLength":102168, + "byteOffset":71030956, + "target":34962 + }, + { + "buffer":0, + "byteLength":68112, + "byteOffset":71133124, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":71201236, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":71234356, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":71234644, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":71234932, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":71242060, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":71249188, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":71249476, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":71249764, + "target":34962 + }, + { + "buffer":0, + "byteLength":7272, + "byteOffset":71249956, + "target":34962 + }, + { + "buffer":0, + "byteLength":7272, + "byteOffset":71257228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":71264500, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":71265844, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":71267188, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":71269012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1216, + "byteOffset":71270836, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":71272052, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":71272340, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":71272628, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":71272820, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":71279768, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":71286716, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":71286764, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":71286812, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":71286844, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":71303884, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":71320924, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":71332284, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":71338992, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":71345700, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":71350172, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":71352896, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":71355620, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":71357436, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":71360820, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":71364204, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":71366460, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":71369844, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":71373228, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":71375484, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":71382588, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":71389692, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":71392572, + "target":34962 + }, + { + "buffer":0, + "byteLength":181344, + "byteOffset":71395452, + "target":34962 + }, + { + "buffer":0, + "byteLength":181344, + "byteOffset":71576796, + "target":34962 + }, + { + "buffer":0, + "byteLength":120896, + "byteOffset":71758140, + "target":34962 + }, + { + "buffer":0, + "byteLength":92688, + "byteOffset":71879036, + "target":34962 + }, + { + "buffer":0, + "byteLength":92688, + "byteOffset":71971724, + "target":34962 + }, + { + "buffer":0, + "byteLength":61792, + "byteOffset":72064412, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":72126204, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":72133140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":72140076, + "target":34963 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":72142068, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":72144684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1744, + "byteOffset":72147300, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72149044, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72149092, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72149140, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":72149172, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":72155988, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":72162804, + "target":34963 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":72164796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":72166548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":72168300, + "target":34962 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":72169468, + "target":34962 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":72187324, + "target":34962 + }, + { + "buffer":0, + "byteLength":11904, + "byteOffset":72205180, + "target":34962 + }, + { + "buffer":0, + "byteLength":2028, + "byteOffset":72217084, + "target":34962 + }, + { + "buffer":0, + "byteLength":2028, + "byteOffset":72219112, + "target":34962 + }, + { + "buffer":0, + "byteLength":1352, + "byteOffset":72221140, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":72222492, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":72225180, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72227868, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72228156, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":72228444, + "target":34962 + }, + { + "buffer":0, + "byteLength":2604, + "byteOffset":72228636, + "target":34962 + }, + { + "buffer":0, + "byteLength":2604, + "byteOffset":72231240, + "target":34962 + }, + { + "buffer":0, + "byteLength":1736, + "byteOffset":72233844, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":72235580, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72236540, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72236588, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72236636, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":72236668, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":72237148, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":72237628, + "target":34962 + }, + { + "buffer":0, + "byteLength":9072, + "byteOffset":72237948, + "target":34962 + }, + { + "buffer":0, + "byteLength":9072, + "byteOffset":72247020, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":72256092, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":72263124, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":72270156, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":72271740, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":72273324, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":72274380, + "target":34963 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":72274860, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":72279024, + "target":34962 + }, + { + "buffer":0, + "byteLength":2776, + "byteOffset":72283188, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72285964, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72286252, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":72286540, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":72286732, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72286804, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72286852, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72286900, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":72286932, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":72290316, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":72293700, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72295956, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72296244, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":72296532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":72296724, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":72298548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1216, + "byteOffset":72300372, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":72301588, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":72308500, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":72315412, + "target":34963 + }, + { + "buffer":0, + "byteLength":3708, + "byteOffset":72317404, + "target":34962 + }, + { + "buffer":0, + "byteLength":3708, + "byteOffset":72321112, + "target":34962 + }, + { + "buffer":0, + "byteLength":2472, + "byteOffset":72324820, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":72327292, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72328732, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72329020, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":72329308, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":72329908, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":72330508, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72330908, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72330956, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72331004, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72331036, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72331084, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72331132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":72331164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":72332664, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":72334164, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":72335164, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":72336028, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72336892, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72337180, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":72337468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":72344404, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72351340, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72351628, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":72351916, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72352108, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72352396, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":72352684, + "target":34962 + }, + { + "buffer":0, + "byteLength":8904, + "byteOffset":72352876, + "target":34962 + }, + { + "buffer":0, + "byteLength":8904, + "byteOffset":72361780, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72370684, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72370732, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72370780, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72370812, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72371100, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72371388, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72371436, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72371484, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":72371516, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":72379700, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":72387884, + "target":34962 + }, + { + "buffer":0, + "byteLength":3168, + "byteOffset":72393340, + "target":34962 + }, + { + "buffer":0, + "byteLength":3168, + "byteOffset":72396508, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":72399676, + "target":34962 + }, + { + "buffer":0, + "byteLength":2064, + "byteOffset":72401788, + "target":34962 + }, + { + "buffer":0, + "byteLength":2064, + "byteOffset":72403852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1376, + "byteOffset":72405916, + "target":34962 + }, + { + "buffer":0, + "byteLength":2532, + "byteOffset":72407292, + "target":34962 + }, + { + "buffer":0, + "byteLength":2532, + "byteOffset":72409824, + "target":34962 + }, + { + "buffer":0, + "byteLength":1688, + "byteOffset":72412356, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":72414044, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":72414668, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":72421556, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":72428444, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":72430892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":72433340, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":72434972, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":72442064, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":72449156, + "target":34963 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":72451148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":72453068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1280, + "byteOffset":72454988, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":72456268, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72456940, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72456988, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72457036, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":72457068, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":72457212, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":72457356, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":72457452, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":72464484, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72471516, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72471564, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72471612, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":72471644, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":72482024, + "target":34962 + }, + { + "buffer":0, + "byteLength":6920, + "byteOffset":72492404, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":72499324, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":72507604, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":72515884, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":72518260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":72520636, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":72522220, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":72525052, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":72527884, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":72534892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":72541900, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72543892, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":72543940, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72543988, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":72544020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":72545772, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":72547524, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72548692, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72548980, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":72549268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":72549460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":72551212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":72552964, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":72554132, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":72561068, + "target":34962 + }, + { + "buffer":0, + "byteLength":3708, + "byteOffset":72568004, + "target":34962 + }, + { + "buffer":0, + "byteLength":3708, + "byteOffset":72571712, + "target":34962 + }, + { + "buffer":0, + "byteLength":2472, + "byteOffset":72575420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":72577892, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":72579332, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":72586244, + "target":34962 + }, + { + "buffer":0, + "byteLength":95832, + "byteOffset":72593156, + "target":34962 + }, + { + "buffer":0, + "byteLength":95832, + "byteOffset":72688988, + "target":34962 + }, + { + "buffer":0, + "byteLength":63888, + "byteOffset":72784820, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72848708, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72848996, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":72849284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":72850436, + "target":34962 + }, + { + "buffer":0, + "byteLength":93648, + "byteOffset":72851588, + "target":34962 + }, + { + "buffer":0, + "byteLength":93648, + "byteOffset":72945236, + "target":34962 + }, + { + "buffer":0, + "byteLength":62432, + "byteOffset":73038884, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":73101316, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":73101988, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":73102660, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":73103108, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":73110092, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":73117076, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":73117724, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":73118372, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":73118804, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":73118852, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":73118900, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":73118932, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":73125940, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":73132948, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":73139908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":73146868, + "target":34963 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":73148860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":73150468, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":73152076, + "target":34963 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":73152748, + "target":34962 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":73165264, + "target":34962 + }, + { + "buffer":0, + "byteLength":8344, + "byteOffset":73177780, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":73186124, + "target":34963 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":73190924, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":73198064, + "target":34962 + }, + { + "buffer":0, + "byteLength":6852, + "byteOffset":73205204, + "target":34962 + }, + { + "buffer":0, + "byteLength":6852, + "byteOffset":73212056, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":73218908, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":73219196, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":73219484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":73219676, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":73221308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":73222940, + "target":34962 + }, + { + "buffer":0, + "byteLength":8244, + "byteOffset":73224028, + "target":34962 + }, + { + "buffer":0, + "byteLength":8244, + "byteOffset":73232272, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":73240516, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":73248292, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":73256068, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":73261252, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":73261300, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":73261348, + "target":34962 + }, + { + "buffer":0, + "byteLength":9492, + "byteOffset":73261380, + "target":34962 + }, + { + "buffer":0, + "byteLength":9492, + "byteOffset":73270872, + "target":34962 + }, + { + "buffer":0, + "byteLength":6328, + "byteOffset":73280364, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":73286692, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":73289236, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":73289524, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":73289812, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":73290004, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":73294204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":73298404, + "target":34963 + }, + { + "buffer":0, + "byteLength":6144, + "byteOffset":73299724, + "target":34962 + }, + { + "buffer":0, + "byteLength":6144, + "byteOffset":73305868, + "target":34962 + }, + { + "buffer":0, + "byteLength":4096, + "byteOffset":73312012, + "target":34962 + }, + { + "buffer":0, + "byteLength":5376, + "byteOffset":73316108, + "target":34963 + }, + { + "buffer":0, + "byteLength":6144, + "byteOffset":73321484, + "target":34962 + }, + { + "buffer":0, + "byteLength":6144, + "byteOffset":73327628, + "target":34962 + }, + { + "buffer":0, + "byteLength":4096, + "byteOffset":73333772, + "target":34962 + }, + { + "buffer":0, + "byteLength":6144, + "byteOffset":73337868, + "target":34962 + }, + { + "buffer":0, + "byteLength":6144, + "byteOffset":73344012, + "target":34962 + }, + { + "buffer":0, + "byteLength":4096, + "byteOffset":73350156, + "target":34962 + }, + { + "buffer":0, + "byteLength":6144, + "byteOffset":73354252, + "target":34962 + }, + { + "buffer":0, + "byteLength":6144, + "byteOffset":73360396, + "target":34962 + }, + { + "buffer":0, + "byteLength":4096, + "byteOffset":73366540, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":73370636, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":73377656, + "target":34962 + }, + { + "buffer":0, + "byteLength":4680, + "byteOffset":73384676, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":73389356, + "target":34963 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":73396316, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":73403336, + "target":34962 + }, + { + "buffer":0, + "byteLength":4680, + "byteOffset":73410356, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":73415036, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":73422056, + "target":34962 + }, + { + "buffer":0, + "byteLength":4680, + "byteOffset":73429076, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":73433756, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":73440776, + "target":34962 + }, + { + "buffer":0, + "byteLength":4680, + "byteOffset":73447796, + "target":34962 + }, + { + "buffer":0, + "byteLength":20160, + "byteOffset":73452476, + "target":34962 + }, + { + "buffer":0, + "byteLength":20160, + "byteOffset":73472636, + "target":34962 + }, + { + "buffer":0, + "byteLength":13440, + "byteOffset":73492796, + "target":34962 + }, + { + "buffer":0, + "byteLength":9360, + "byteOffset":73506236, + "target":34963 + }, + { + "buffer":0, + "byteLength":12000, + "byteOffset":73515596, + "target":34962 + }, + { + "buffer":0, + "byteLength":12000, + "byteOffset":73527596, + "target":34962 + }, + { + "buffer":0, + "byteLength":8000, + "byteOffset":73539596, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":73547596, + "target":34963 + }, + { + "buffer":0, + "byteLength":20160, + "byteOffset":73555876, + "target":34962 + }, + { + "buffer":0, + "byteLength":20160, + "byteOffset":73576036, + "target":34962 + }, + { + "buffer":0, + "byteLength":13440, + "byteOffset":73596196, + "target":34962 + }, + { + "buffer":0, + "byteLength":9360, + "byteOffset":73609636, + "target":34963 + }, + { + "buffer":0, + "byteLength":12000, + "byteOffset":73618996, + "target":34962 + }, + { + "buffer":0, + "byteLength":12000, + "byteOffset":73630996, + "target":34962 + }, + { + "buffer":0, + "byteLength":8000, + "byteOffset":73642996, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":73650996, + "target":34963 + }, + { + "buffer":0, + "byteLength":24480, + "byteOffset":73659276, + "target":34962 + }, + { + "buffer":0, + "byteLength":24480, + "byteOffset":73683756, + "target":34962 + }, + { + "buffer":0, + "byteLength":16320, + "byteOffset":73708236, + "target":34962 + }, + { + "buffer":0, + "byteLength":11520, + "byteOffset":73724556, + "target":34963 + }, + { + "buffer":0, + "byteLength":12000, + "byteOffset":73736076, + "target":34962 + }, + { + "buffer":0, + "byteLength":12000, + "byteOffset":73748076, + "target":34962 + }, + { + "buffer":0, + "byteLength":8000, + "byteOffset":73760076, + "target":34962 + }, + { + "buffer":0, + "byteLength":24480, + "byteOffset":73768076, + "target":34962 + }, + { + "buffer":0, + "byteLength":24480, + "byteOffset":73792556, + "target":34962 + }, + { + "buffer":0, + "byteLength":16320, + "byteOffset":73817036, + "target":34962 + }, + { + "buffer":0, + "byteLength":11520, + "byteOffset":73833356, + "target":34963 + }, + { + "buffer":0, + "byteLength":12000, + "byteOffset":73844876, + "target":34962 + }, + { + "buffer":0, + "byteLength":12000, + "byteOffset":73856876, + "target":34962 + }, + { + "buffer":0, + "byteLength":8000, + "byteOffset":73868876, + "target":34962 + }, + { + "buffer":0, + "byteLength":148860, + "byteOffset":73876876, + "target":34962 + }, + { + "buffer":0, + "byteLength":148860, + "byteOffset":74025736, + "target":34962 + }, + { + "buffer":0, + "byteLength":99240, + "byteOffset":74174596, + "target":34962 + }, + { + "buffer":0, + "byteLength":140820, + "byteOffset":74273836, + "target":34963 + }, + { + "buffer":0, + "byteLength":148860, + "byteOffset":74414656, + "target":34962 + }, + { + "buffer":0, + "byteLength":148860, + "byteOffset":74563516, + "target":34962 + }, + { + "buffer":0, + "byteLength":99240, + "byteOffset":74712376, + "target":34962 + }, + { + "buffer":0, + "byteLength":148860, + "byteOffset":74811616, + "target":34962 + }, + { + "buffer":0, + "byteLength":148860, + "byteOffset":74960476, + "target":34962 + }, + { + "buffer":0, + "byteLength":99240, + "byteOffset":75109336, + "target":34962 + }, + { + "buffer":0, + "byteLength":148860, + "byteOffset":75208576, + "target":34962 + }, + { + "buffer":0, + "byteLength":148860, + "byteOffset":75357436, + "target":34962 + }, + { + "buffer":0, + "byteLength":99240, + "byteOffset":75506296, + "target":34962 + }, + { + "buffer":0, + "byteLength":5172, + "byteOffset":75605536, + "target":34962 + }, + { + "buffer":0, + "byteLength":5172, + "byteOffset":75610708, + "target":34962 + }, + { + "buffer":0, + "byteLength":3448, + "byteOffset":75615880, + "target":34962 + }, + { + "buffer":0, + "byteLength":3990, + "byteOffset":75619328, + "target":34963 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":75623320, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":75624760, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":75626200, + "target":34962 + }, + { + "buffer":0, + "byteLength":900, + "byteOffset":75627160, + "target":34963 + }, + { + "buffer":0, + "byteLength":5172, + "byteOffset":75628060, + "target":34962 + }, + { + "buffer":0, + "byteLength":5172, + "byteOffset":75633232, + "target":34962 + }, + { + "buffer":0, + "byteLength":3448, + "byteOffset":75638404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":75641852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":75643292, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":75644732, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":75645692, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":75647132, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":75648572, + "target":34962 + }, + { + "buffer":0, + "byteLength":5172, + "byteOffset":75649532, + "target":34962 + }, + { + "buffer":0, + "byteLength":5172, + "byteOffset":75654704, + "target":34962 + }, + { + "buffer":0, + "byteLength":3448, + "byteOffset":75659876, + "target":34962 + }, + { + "buffer":0, + "byteLength":5172, + "byteOffset":75663324, + "target":34962 + }, + { + "buffer":0, + "byteLength":5172, + "byteOffset":75668496, + "target":34962 + }, + { + "buffer":0, + "byteLength":3448, + "byteOffset":75673668, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":75677116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":75678556, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":75679996, + "target":34962 + }, + { + "buffer":0, + "byteLength":259488, + "byteOffset":75680956, + "target":34962 + }, + { + "buffer":0, + "byteLength":259488, + "byteOffset":75940444, + "target":34962 + }, + { + "buffer":0, + "byteLength":172992, + "byteOffset":76199932, + "target":34962 + }, + { + "buffer":0, + "byteLength":113664, + "byteOffset":76372924, + "target":34963 + }, + { + "buffer":0, + "byteLength":259524, + "byteOffset":76486588, + "target":34962 + }, + { + "buffer":0, + "byteLength":259524, + "byteOffset":76746112, + "target":34962 + }, + { + "buffer":0, + "byteLength":173016, + "byteOffset":77005636, + "target":34962 + }, + { + "buffer":0, + "byteLength":113664, + "byteOffset":77178652, + "target":34963 + }, + { + "buffer":0, + "byteLength":259488, + "byteOffset":77292316, + "target":34962 + }, + { + "buffer":0, + "byteLength":259488, + "byteOffset":77551804, + "target":34962 + }, + { + "buffer":0, + "byteLength":172992, + "byteOffset":77811292, + "target":34962 + }, + { + "buffer":0, + "byteLength":259524, + "byteOffset":77984284, + "target":34962 + }, + { + "buffer":0, + "byteLength":259524, + "byteOffset":78243808, + "target":34962 + }, + { + "buffer":0, + "byteLength":173016, + "byteOffset":78503332, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":78676348, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":78676636, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":78676924, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":78676996, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":78677044, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":78677092, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":78677124, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":78677748, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":78678372, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":78678788, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":78685796, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":78692804, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":78699692, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":78706580, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":78707732, + "target":34962 + }, + { + "buffer":0, + "byteLength":102528, + "byteOffset":78708884, + "target":34962 + }, + { + "buffer":0, + "byteLength":102528, + "byteOffset":78811412, + "target":34962 + }, + { + "buffer":0, + "byteLength":68352, + "byteOffset":78913940, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":78982292, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":79015412, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":79022444, + "target":34962 + }, + { + "buffer":0, + "byteLength":96468, + "byteOffset":79029476, + "target":34962 + }, + { + "buffer":0, + "byteLength":96468, + "byteOffset":79125944, + "target":34962 + }, + { + "buffer":0, + "byteLength":64312, + "byteOffset":79222412, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":79286724, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":79293804, + "target":34962 + }, + { + "buffer":0, + "byteLength":7308, + "byteOffset":79300884, + "target":34962 + }, + { + "buffer":0, + "byteLength":7308, + "byteOffset":79308192, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":79315500, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":79322208, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":79328916, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":79333388, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":79340456, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":79347524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":79348868, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":79350212, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":79357988, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":79365764, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":79370948, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":79373708, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79376468, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79376516, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":79376564, + "target":34962 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":79376596, + "target":34962 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":79377232, + "target":34962 + }, + { + "buffer":0, + "byteLength":424, + "byteOffset":79377868, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":79378292, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":79385300, + "target":34962 + }, + { + "buffer":0, + "byteLength":3300, + "byteOffset":79392308, + "target":34962 + }, + { + "buffer":0, + "byteLength":3300, + "byteOffset":79395608, + "target":34962 + }, + { + "buffer":0, + "byteLength":2200, + "byteOffset":79398908, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":79401108, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":79411692, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":79422276, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":79429332, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":79436340, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79443348, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79443396, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":79443444, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":79443476, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":79445780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":79448084, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":79449620, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":79450292, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":79451012, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":79451732, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":79452212, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":79461188, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":79470164, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":79472828, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":79473116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":79473404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":79474844, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":79476284, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":79477244, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":79484132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":79491020, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79493012, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79493060, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":79493108, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":79493140, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":79501324, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":79509508, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79514964, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79515012, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":79515060, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":79515092, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":79522148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":79529204, + "target":34963 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":79531196, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":79535252, + "target":34962 + }, + { + "buffer":0, + "byteLength":2704, + "byteOffset":79539308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":79542012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":79543356, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79544700, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79544748, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":79544796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":79544828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":79546292, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":79547756, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":79548732, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":79549020, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79549308, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79549356, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":79549404, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":79549436, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":79550300, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":79551164, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":79551788, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":79552412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1716, + "byteOffset":79552828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1716, + "byteOffset":79554544, + "target":34962 + }, + { + "buffer":0, + "byteLength":1144, + "byteOffset":79556260, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":79557404, + "target":34963 + }, + { + "buffer":0, + "byteLength":4260, + "byteOffset":79557884, + "target":34962 + }, + { + "buffer":0, + "byteLength":4260, + "byteOffset":79562144, + "target":34962 + }, + { + "buffer":0, + "byteLength":2840, + "byteOffset":79566404, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":79569244, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":79569532, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":79569820, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":79570012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":79571188, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":79572364, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":79573148, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":79573556, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":79573844, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":79574132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":79574324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":79575668, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":79577012, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":79577908, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":79578388, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":79585396, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":79592404, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":79594396, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":79594684, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":79594972, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":79595164, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":79602364, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":79609564, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":79613680, + "target":34962 + }, + { + "buffer":0, + "byteLength":2744, + "byteOffset":79617796, + "target":34962 + }, + { + "buffer":0, + "byteLength":4008, + "byteOffset":79620540, + "target":34962 + }, + { + "buffer":0, + "byteLength":4008, + "byteOffset":79624548, + "target":34962 + }, + { + "buffer":0, + "byteLength":2672, + "byteOffset":79628556, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":79631228, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":79632668, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":79633532, + "target":34962 + }, + { + "buffer":0, + "byteLength":37824, + "byteOffset":79634396, + "target":34962 + }, + { + "buffer":0, + "byteLength":37824, + "byteOffset":79672220, + "target":34962 + }, + { + "buffer":0, + "byteLength":25216, + "byteOffset":79710044, + "target":34962 + }, + { + "buffer":0, + "byteLength":10944, + "byteOffset":79735260, + "target":34963 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":79746204, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":79746804, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":79747404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":79747804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":79749304, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":79750804, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":79751804, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":79768844, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":79785884, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":79797244, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":79798108, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":79798972, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":79800988, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":79803004, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":79809724, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":79816444, + "target":34963 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":79818436, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":79822312, + "target":34962 + }, + { + "buffer":0, + "byteLength":2584, + "byteOffset":79826188, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":79828772, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":79829060, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":79829348, + "target":34962 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":79829540, + "target":34962 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":79836212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":79842884, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":79844876, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":79845164, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":79845452, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":79845644, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":79846988, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":79848332, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":79856228, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":79864124, + "target":34962 + }, + { + "buffer":0, + "byteLength":2772, + "byteOffset":79869388, + "target":34962 + }, + { + "buffer":0, + "byteLength":2772, + "byteOffset":79872160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1848, + "byteOffset":79874932, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":79876780, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79877740, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79877788, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":79877836, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79877868, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79877916, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":79877964, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":79877996, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":79880492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":79882988, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":79884652, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":79887196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1696, + "byteOffset":79889740, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":79891436, + "target":34963 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":79892060, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":79894556, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":79897052, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":79898716, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":79899676, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":79906708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":79913740, + "target":34963 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":79915732, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":79922452, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":79929172, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":79930276, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":79931380, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79932116, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":79932164, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":79932212, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":79932244, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":79934476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":79936708, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":79938196, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":79938916, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":79939060, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":79939204, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":79939300, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":79942024, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":79944748, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":79946564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":79948196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":79949828, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":79950916, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":79951540, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":79952164, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":79952580, + "target":34963 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":79952748, + "target":34962 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":79959972, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":79967196, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":79971072, + "target":34962 + }, + { + "buffer":0, + "byteLength":2584, + "byteOffset":79974948, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":79977532, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":79984324, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":79991116, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":79991404, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":79991692, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":79998640, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":80005588, + "target":34963 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":80007580, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":80008996, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":80010412, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":80011356, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":80013732, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":80016108, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":80017692, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":80018604, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":80019516, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":80020124, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":80020172, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":80020220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":80020252, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":80022004, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":80023756, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":80024924, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":80025212, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":80025500, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":80025692, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":80026364, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":80027036, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":80027484, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":80033820, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":80040156, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":80044380, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":80051436, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":80058492, + "target":34963 + }, + { + "buffer":0, + "byteLength":1524, + "byteOffset":80060484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1524, + "byteOffset":80062008, + "target":34962 + }, + { + "buffer":0, + "byteLength":1016, + "byteOffset":80063532, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":80064548, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":80071628, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":80078708, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":80078756, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":80078804, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":80078836, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":80078884, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":80078932, + "target":34962 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":80078964, + "target":34962 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":80175516, + "target":34962 + }, + { + "buffer":0, + "byteLength":64368, + "byteOffset":80272068, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":80336436, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":80343252, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":80350068, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":80350116, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":80350164, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":80350196, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":80357120, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":80364044, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":80366036, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":80366084, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":80366132, + "target":34962 + }, + { + "buffer":0, + "byteLength":93588, + "byteOffset":80366164, + "target":34962 + }, + { + "buffer":0, + "byteLength":93588, + "byteOffset":80459752, + "target":34962 + }, + { + "buffer":0, + "byteLength":62392, + "byteOffset":80553340, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":80615732, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":80616020, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":80616308, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":80616500, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":80616788, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":80617076, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":80617268, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":80624204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":80631140, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":80633132, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":80633996, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":80634860, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":80654780, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":80674700, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":80687980, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":80694940, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":80701900, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":80703892, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":80704180, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":80704468, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":80704660, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":80706292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":80707924, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":80709012, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":80718012, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":80727012, + "target":34963 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":80729676, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":80730300, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":80730924, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":80731340, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":80731508, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":80731556, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":80731604, + "target":34962 + }, + { + "buffer":0, + "byteLength":9672, + "byteOffset":80731636, + "target":34962 + }, + { + "buffer":0, + "byteLength":9672, + "byteOffset":80741308, + "target":34962 + }, + { + "buffer":0, + "byteLength":6448, + "byteOffset":80750980, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":80757428, + "target":34963 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":80759972, + "target":34962 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":80768108, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":80776244, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":80781668, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":80783684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":80785700, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":80787044, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":80787764, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":80789108, + "target":34962 + }, + { + "buffer":0, + "byteLength":8640, + "byteOffset":80790452, + "target":34962 + }, + { + "buffer":0, + "byteLength":8640, + "byteOffset":80799092, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":80807732, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":80814692, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":80821652, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":80824412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1840, + "byteOffset":80827172, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":80829012, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":80836164, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":80843316, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":80851980, + "target":34962 + }, + { + "buffer":0, + "byteLength":96300, + "byteOffset":80860644, + "target":34962 + }, + { + "buffer":0, + "byteLength":96300, + "byteOffset":80956944, + "target":34962 + }, + { + "buffer":0, + "byteLength":64200, + "byteOffset":81053244, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":81117444, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":81150564, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":81157500, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":81164436, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":81164724, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":81165012, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":81172116, + "target":34962 + }, + { + "buffer":0, + "byteLength":2928, + "byteOffset":81179220, + "target":34962 + }, + { + "buffer":0, + "byteLength":2928, + "byteOffset":81182148, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":81185076, + "target":34963 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":81186060, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":81193140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":81200220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":81201396, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":81202572, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":81203356, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":81204700, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":81206044, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":81208060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":81210076, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81211420, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81211468, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":81211516, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":81211548, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":81212196, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":81212844, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":81213276, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":81213996, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":81214716, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":81215196, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":81217428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":81219660, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":81221148, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":81228180, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":81235212, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":81237204, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":81237492, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":81237780, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":81237972, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":81240204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":81242436, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":81243924, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":81244596, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":81245316, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":81246036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":81246516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":81247860, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":81249204, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":81255924, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":81262644, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":81269676, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":81276708, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":81278700, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":81285588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":81292476, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81294468, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81294516, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":81294564, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81294596, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81294644, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":81294692, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":81294724, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":81301780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":81308836, + "target":34963 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":81310828, + "target":34962 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":81314872, + "target":34962 + }, + { + "buffer":0, + "byteLength":2696, + "byteOffset":81318916, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":81321612, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":81338652, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":81355692, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81367052, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81367100, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":81367148, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":81367180, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":81367468, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":81367756, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":81368044, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":81368332, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":81368524, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":81369124, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":81369724, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":81370124, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":81377168, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81384212, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81384260, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":81384308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":81384340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":81386164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1216, + "byteOffset":81387988, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":81389204, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":81391220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":81393236, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":81394580, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":81398732, + "target":34962 + }, + { + "buffer":0, + "byteLength":2768, + "byteOffset":81402884, + "target":34962 + }, + { + "buffer":0, + "byteLength":16704, + "byteOffset":81405652, + "target":34962 + }, + { + "buffer":0, + "byteLength":16704, + "byteOffset":81422356, + "target":34962 + }, + { + "buffer":0, + "byteLength":2472, + "byteOffset":81439060, + "target":34962 + }, + { + "buffer":0, + "byteLength":2472, + "byteOffset":81441532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1648, + "byteOffset":81444004, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81445652, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81445700, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":81445748, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":81445780, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":81448504, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":81451228, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":81453044, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":81455060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":81457076, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":81458228, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":81459380, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":81459668, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":81459956, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":81460148, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":81461012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1368, + "byteOffset":81461876, + "target":34962 + }, + { + "buffer":0, + "byteLength":1368, + "byteOffset":81463244, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":81464612, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":81465524, + "target":34963 + }, + { + "buffer":0, + "byteLength":3780, + "byteOffset":81466004, + "target":34962 + }, + { + "buffer":0, + "byteLength":3780, + "byteOffset":81469784, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":81473564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":81476084, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":81477524, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":81478388, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":81479252, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":81487916, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":81496580, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":81497204, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":81497828, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":81498244, + "target":34963 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":81498412, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":81505828, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":81513244, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":81518188, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":81535228, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":81552268, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81563628, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81563676, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":81563724, + "target":34962 + }, + { + "buffer":0, + "byteLength":78264, + "byteOffset":81563756, + "target":34962 + }, + { + "buffer":0, + "byteLength":78264, + "byteOffset":81642020, + "target":34962 + }, + { + "buffer":0, + "byteLength":52176, + "byteOffset":81720284, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":81772460, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":81779228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":81785996, + "target":34963 + }, + { + "buffer":0, + "byteLength":13032, + "byteOffset":81787988, + "target":34962 + }, + { + "buffer":0, + "byteLength":13032, + "byteOffset":81801020, + "target":34962 + }, + { + "buffer":0, + "byteLength":8688, + "byteOffset":81814052, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":81822740, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":81829628, + "target":34962 + }, + { + "buffer":0, + "byteLength":6852, + "byteOffset":81836516, + "target":34962 + }, + { + "buffer":0, + "byteLength":6852, + "byteOffset":81843368, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":81850220, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":81850508, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":81850796, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":81850988, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":81855068, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":81859148, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":81860060, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":81860972, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81861580, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81861628, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":81861676, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81861708, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81861756, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":81861804, + "target":34962 + }, + { + "buffer":0, + "byteLength":7212, + "byteOffset":81861836, + "target":34962 + }, + { + "buffer":0, + "byteLength":7212, + "byteOffset":81869048, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81876260, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":81876308, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":81876356, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":81876388, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":81883276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":81890164, + "target":34963 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":81892156, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":81893620, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":81895084, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":81896060, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":81903212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":81910364, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":81912356, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":81919340, + "target":34962 + }, + { + "buffer":0, + "byteLength":4260, + "byteOffset":81926324, + "target":34962 + }, + { + "buffer":0, + "byteLength":4260, + "byteOffset":81930584, + "target":34962 + }, + { + "buffer":0, + "byteLength":2840, + "byteOffset":81934844, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":81937684, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":81944740, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":81951796, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":81953788, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":81960772, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":81967756, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":81975532, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":81983308, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":81988492, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":81988636, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":81988780, + "target":34962 + }, + { + "buffer":0, + "byteLength":2796, + "byteOffset":81988876, + "target":34962 + }, + { + "buffer":0, + "byteLength":2796, + "byteOffset":81991672, + "target":34962 + }, + { + "buffer":0, + "byteLength":1864, + "byteOffset":81994468, + "target":34962 + }, + { + "buffer":0, + "byteLength":13032, + "byteOffset":81996332, + "target":34962 + }, + { + "buffer":0, + "byteLength":13032, + "byteOffset":82009364, + "target":34962 + }, + { + "buffer":0, + "byteLength":8688, + "byteOffset":82022396, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":82031084, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":82038284, + "target":34962 + }, + { + "buffer":0, + "byteLength":3420, + "byteOffset":82045484, + "target":34962 + }, + { + "buffer":0, + "byteLength":3420, + "byteOffset":82048904, + "target":34962 + }, + { + "buffer":0, + "byteLength":2280, + "byteOffset":82052324, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":82054604, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":82056980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":82059356, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":82060940, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":82067780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":82074620, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":82076612, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":82076660, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":82076708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1356, + "byteOffset":82076740, + "target":34962 + }, + { + "buffer":0, + "byteLength":1356, + "byteOffset":82078096, + "target":34962 + }, + { + "buffer":0, + "byteLength":904, + "byteOffset":82079452, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":82080356, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":82080404, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":82080452, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":82080484, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":82087468, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":82094452, + "target":34963 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":82096444, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":82116364, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":82136284, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":82149564, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":82149852, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":82150140, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":82150332, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":82150620, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":82150908, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":82151100, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":82151148, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":82151196, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":82151228, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":82159412, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":82167596, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":82173052, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":82180084, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":82187116, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":82194112, + "target":34962 + }, + { + "buffer":0, + "byteLength":3660, + "byteOffset":82201108, + "target":34962 + }, + { + "buffer":0, + "byteLength":3660, + "byteOffset":82204768, + "target":34962 + }, + { + "buffer":0, + "byteLength":2440, + "byteOffset":82208428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":82210868, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":82212308, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":82212356, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":82212404, + "target":34962 + }, + { + "buffer":0, + "byteLength":96468, + "byteOffset":82212436, + "target":34962 + }, + { + "buffer":0, + "byteLength":96468, + "byteOffset":82308904, + "target":34962 + }, + { + "buffer":0, + "byteLength":64312, + "byteOffset":82405372, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":82469684, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":82476572, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":82483460, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":82487588, + "target":34962 + }, + { + "buffer":0, + "byteLength":2752, + "byteOffset":82491716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":82494468, + "target":34963 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":82495908, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":82502772, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":82509636, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":82509684, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":82509732, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":82509764, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":82516640, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":82523516, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":82525508, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":82525556, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":82525604, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":82525636, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":82532560, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":82539484, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":82546588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":82553692, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":82555684, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":82556548, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":82557412, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":82564588, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":82571764, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":82571812, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":82571860, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":82571892, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":82578936, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":82585980, + "target":34963 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":82587972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":82589508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1024, + "byteOffset":82591044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":82592068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":82593412, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":82594756, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":82594804, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":82594852, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":82594884, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":82595172, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":82595460, + "target":34962 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":82595652, + "target":34962 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":82599636, + "target":34962 + }, + { + "buffer":0, + "byteLength":2656, + "byteOffset":82603620, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":82606276, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":82613308, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":82620340, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":82623076, + "target":34962 + }, + { + "buffer":0, + "byteLength":9876, + "byteOffset":82625812, + "target":34962 + }, + { + "buffer":0, + "byteLength":9876, + "byteOffset":82635688, + "target":34962 + }, + { + "buffer":0, + "byteLength":6584, + "byteOffset":82645564, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":82652148, + "target":34963 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":82654692, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":82665072, + "target":34962 + }, + { + "buffer":0, + "byteLength":6920, + "byteOffset":82675452, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":82682372, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":82686428, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":82690484, + "target":34962 + }, + { + "buffer":0, + "byteLength":2748, + "byteOffset":82693232, + "target":34962 + }, + { + "buffer":0, + "byteLength":1832, + "byteOffset":82695980, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":82697812, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":82706476, + "target":34962 + }, + { + "buffer":0, + "byteLength":96480, + "byteOffset":82715140, + "target":34962 + }, + { + "buffer":0, + "byteLength":96480, + "byteOffset":82811620, + "target":34962 + }, + { + "buffer":0, + "byteLength":64320, + "byteOffset":82908100, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":82972420, + "target":34963 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":83005540, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":83012380, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":83019220, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":83026276, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":83033332, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":83041108, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":83048884, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":83054068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":83055244, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":83056420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":83057204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":83058548, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":83059892, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83060540, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83060828, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":83061116, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":83061308, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":83062220, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":83063132, + "target":34962 + }, + { + "buffer":0, + "byteLength":3360, + "byteOffset":83063740, + "target":34962 + }, + { + "buffer":0, + "byteLength":3360, + "byteOffset":83067100, + "target":34962 + }, + { + "buffer":0, + "byteLength":2240, + "byteOffset":83070460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":83072700, + "target":34963 + }, + { + "buffer":0, + "byteLength":9492, + "byteOffset":83074308, + "target":34962 + }, + { + "buffer":0, + "byteLength":9492, + "byteOffset":83083800, + "target":34962 + }, + { + "buffer":0, + "byteLength":6328, + "byteOffset":83093292, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":83099620, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":83106580, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":83113540, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":83115532, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":83122444, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83129356, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83129404, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83129452, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":83129484, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":83133564, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83137644, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83137932, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":83138220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":83139924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":83141628, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":83142764, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":83144996, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":83147228, + "target":34962 + }, + { + "buffer":0, + "byteLength":13872, + "byteOffset":83148716, + "target":34962 + }, + { + "buffer":0, + "byteLength":13872, + "byteOffset":83162588, + "target":34962 + }, + { + "buffer":0, + "byteLength":9248, + "byteOffset":83176460, + "target":34962 + }, + { + "buffer":0, + "byteLength":7860, + "byteOffset":83185708, + "target":34963 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":83193568, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":83196952, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":83200336, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":83202592, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":83204296, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":83206000, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":83207136, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":83214144, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":83221152, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":83223144, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":83230176, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":83237208, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83239200, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83239248, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83239296, + "target":34962 + }, + { + "buffer":0, + "byteLength":8904, + "byteOffset":83239328, + "target":34962 + }, + { + "buffer":0, + "byteLength":8904, + "byteOffset":83248232, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83257136, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83257184, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83257232, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":83257264, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":83264428, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":83271592, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":83272312, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":83273032, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":83273512, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":83280448, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":83287384, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83289376, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83289424, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83289472, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83289504, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83289792, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":83290080, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":83290992, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":83291904, + "target":34962 + }, + { + "buffer":0, + "byteLength":9732, + "byteOffset":83292512, + "target":34962 + }, + { + "buffer":0, + "byteLength":9732, + "byteOffset":83302244, + "target":34962 + }, + { + "buffer":0, + "byteLength":6488, + "byteOffset":83311976, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":83318464, + "target":34963 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":83321008, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":83331388, + "target":34962 + }, + { + "buffer":0, + "byteLength":6920, + "byteOffset":83341768, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83348688, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83348976, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":83349264, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83349456, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83349504, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83349552, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":83349584, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":83357360, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":83365136, + "target":34962 + }, + { + "buffer":0, + "byteLength":2388, + "byteOffset":83370320, + "target":34962 + }, + { + "buffer":0, + "byteLength":2388, + "byteOffset":83372708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1592, + "byteOffset":83375096, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":83376688, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":83377408, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":83384344, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":83391280, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":83398420, + "target":34962 + }, + { + "buffer":0, + "byteLength":4212, + "byteOffset":83405560, + "target":34962 + }, + { + "buffer":0, + "byteLength":4212, + "byteOffset":83409772, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":83413984, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83416792, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83416840, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83416888, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83416920, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83417208, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":83417496, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":83424432, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":83431368, + "target":34963 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":83433360, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":83436072, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":83438784, + "target":34963 + }, + { + "buffer":0, + "byteLength":3636, + "byteOffset":83439768, + "target":34962 + }, + { + "buffer":0, + "byteLength":3636, + "byteOffset":83443404, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":83447040, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":83449464, + "target":34963 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":83450904, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":83451456, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":83452008, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83452376, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83452424, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83452472, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":83452504, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":83453104, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":83453704, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":83454104, + "target":34963 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":83454272, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":83460980, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":83467688, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":83472160, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":83489200, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":83506240, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":83517600, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":83524800, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":83532000, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":83533344, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":83534688, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":83535408, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":83536128, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":83536608, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":83543700, + "target":34962 + }, + { + "buffer":0, + "byteLength":876, + "byteOffset":83550792, + "target":34962 + }, + { + "buffer":0, + "byteLength":876, + "byteOffset":83551668, + "target":34962 + }, + { + "buffer":0, + "byteLength":584, + "byteOffset":83552544, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":83553128, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":83560088, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":83567048, + "target":34963 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":83569040, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":83569640, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":83570240, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83570640, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83570928, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":83571216, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":83571408, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":83575440, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":83579472, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83580792, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83580840, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83580888, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83580920, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83580968, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83581016, + "target":34962 + }, + { + "buffer":0, + "byteLength":1164, + "byteOffset":83581048, + "target":34962 + }, + { + "buffer":0, + "byteLength":1164, + "byteOffset":83582212, + "target":34962 + }, + { + "buffer":0, + "byteLength":776, + "byteOffset":83583376, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83584152, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83584440, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":83584728, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":83584920, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":83585784, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83586648, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83586696, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83586744, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":83586776, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":83589920, + "target":34962 + }, + { + "buffer":0, + "byteLength":2096, + "byteOffset":83593064, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":83595160, + "target":34963 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":83596120, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":83597224, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":83598328, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":83599064, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":83605904, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":83612744, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83614736, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83615024, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":83615312, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":83615504, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":83622212, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":83628920, + "target":34962 + }, + { + "buffer":0, + "byteLength":816, + "byteOffset":83633392, + "target":34962 + }, + { + "buffer":0, + "byteLength":816, + "byteOffset":83634208, + "target":34962 + }, + { + "buffer":0, + "byteLength":544, + "byteOffset":83635024, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":83635568, + "target":34963 + }, + { + "buffer":0, + "byteLength":2004, + "byteOffset":83635832, + "target":34962 + }, + { + "buffer":0, + "byteLength":2004, + "byteOffset":83637836, + "target":34962 + }, + { + "buffer":0, + "byteLength":1336, + "byteOffset":83639840, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":83641176, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":83648052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":83654928, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":83656356, + "target":34962 + }, + { + "buffer":0, + "byteLength":952, + "byteOffset":83657784, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":83658736, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":83665912, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":83673088, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":83675080, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":83675992, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":83676904, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83677512, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83677560, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83677608, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":83677640, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":83684744, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83691848, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83691896, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83691944, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83691976, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83692024, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83692072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":83692104, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":83693856, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":83695608, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":83696776, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":83703688, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83710600, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83710648, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83710696, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":83710728, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":83716584, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":83722440, + "target":34962 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":83726344, + "target":34962 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":83730256, + "target":34962 + }, + { + "buffer":0, + "byteLength":2608, + "byteOffset":83734168, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":83736776, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":83743748, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83750720, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83751008, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":83751296, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":83753048, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":83754800, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":83755968, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":83763024, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":83770080, + "target":34963 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":83772072, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":83776176, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":83780280, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83783016, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83783064, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83783112, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":83783144, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":83785376, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":83787608, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":83789096, + "target":34962 + }, + { + "buffer":0, + "byteLength":3864, + "byteOffset":83792960, + "target":34962 + }, + { + "buffer":0, + "byteLength":2576, + "byteOffset":83796824, + "target":34962 + }, + { + "buffer":0, + "byteLength":6756, + "byteOffset":83799400, + "target":34962 + }, + { + "buffer":0, + "byteLength":6756, + "byteOffset":83806156, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":83812912, + "target":34963 + }, + { + "buffer":0, + "byteLength":8640, + "byteOffset":83814904, + "target":34962 + }, + { + "buffer":0, + "byteLength":8640, + "byteOffset":83823544, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":83832184, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":83839192, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83846200, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83846488, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":83846776, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":83846968, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":83853844, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":83860720, + "target":34963 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":83862712, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":83865232, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":83867752, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":83869432, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":83876476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":83883520, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83885512, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83885560, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83885608, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":83885640, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":83888364, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":83891088, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":83892904, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":83895592, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83898280, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83898568, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":83898856, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":83901232, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":83903608, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83905192, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83905240, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83905288, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":83905320, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":83913504, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":83921688, + "target":34962 + }, + { + "buffer":0, + "byteLength":2964, + "byteOffset":83927144, + "target":34962 + }, + { + "buffer":0, + "byteLength":2964, + "byteOffset":83930108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1976, + "byteOffset":83933072, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83935048, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":83935096, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83935144, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":83935176, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":83936328, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":83937480, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":83944416, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":83951352, + "target":34963 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":83953344, + "target":34962 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":83960568, + "target":34962 + }, + { + "buffer":0, + "byteLength":2160, + "byteOffset":83967792, + "target":34962 + }, + { + "buffer":0, + "byteLength":2160, + "byteOffset":83969952, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":83972112, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":83973552, + "target":34963 + }, + { + "buffer":0, + "byteLength":9672, + "byteOffset":83974272, + "target":34962 + }, + { + "buffer":0, + "byteLength":9672, + "byteOffset":83983944, + "target":34962 + }, + { + "buffer":0, + "byteLength":6448, + "byteOffset":83993616, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":84000064, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":84004264, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":84008464, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":84009784, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":84016792, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":84023800, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":84025144, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84026488, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84026536, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84026584, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84026616, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84026664, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84026712, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84026744, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84026792, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84026840, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":84026872, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":84027928, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":84028984, + "target":34962 + }, + { + "buffer":0, + "byteLength":12636, + "byteOffset":84029688, + "target":34962 + }, + { + "buffer":0, + "byteLength":12636, + "byteOffset":84042324, + "target":34962 + }, + { + "buffer":0, + "byteLength":8424, + "byteOffset":84054960, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":84063384, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":84064560, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":84065736, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":84066520, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":84069904, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":84073288, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":84075544, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":84076816, + "target":34962 + }, + { + "buffer":0, + "byteLength":848, + "byteOffset":84078088, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":84078936, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":84079344, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":84080064, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":84080784, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":84081264, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":84082704, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":84084144, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":84085104, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":84085776, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":84086448, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":84086896, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":84088720, + "target":34962 + }, + { + "buffer":0, + "byteLength":1216, + "byteOffset":84090544, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":84091760, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":84099536, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":84107312, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":84112496, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":84115952, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":84119408, + "target":34963 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":84122552, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":84126692, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":84130832, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":84133592, + "target":34963 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":84135032, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":84143312, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84151592, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84151880, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":84152168, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84152360, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84152408, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84152456, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84152488, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84152536, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84152584, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84152616, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84152664, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84152712, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84152744, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84153032, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":84153320, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84153512, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84153560, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84153608, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":84153640, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":84160552, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":84167464, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84169456, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84169744, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":84170032, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":84171784, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":84173536, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":84174704, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":84175616, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":84176528, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84177136, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84177184, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84177232, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":84177264, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":84178608, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84179952, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84180000, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84180048, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":84180080, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":84187016, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":84193952, + "target":34963 + }, + { + "buffer":0, + "byteLength":92688, + "byteOffset":84195944, + "target":34962 + }, + { + "buffer":0, + "byteLength":92688, + "byteOffset":84288632, + "target":34962 + }, + { + "buffer":0, + "byteLength":61792, + "byteOffset":84381320, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":84443112, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":84445128, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":84447144, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":84448488, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":84451272, + "target":34962 + }, + { + "buffer":0, + "byteLength":1856, + "byteOffset":84454056, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84455912, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84456200, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":84456488, + "target":34962 + }, + { + "buffer":0, + "byteLength":3948, + "byteOffset":84456680, + "target":34962 + }, + { + "buffer":0, + "byteLength":3948, + "byteOffset":84460628, + "target":34962 + }, + { + "buffer":0, + "byteLength":2632, + "byteOffset":84464576, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84467208, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84467256, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84467304, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84467336, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84467624, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84467912, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84467960, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84468008, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":84468040, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":84472156, + "target":34962 + }, + { + "buffer":0, + "byteLength":2744, + "byteOffset":84476272, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":84479016, + "target":34963 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":84480456, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":84481080, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":84481704, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":84482120, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":84482288, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":84485012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":84487736, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":84489552, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":84490176, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":84490800, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":84491216, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":84498632, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":84506048, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":84510992, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":84528032, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":84545072, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84556432, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84556480, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84556528, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84556560, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84556608, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84556656, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":84556688, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":84557408, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":84558128, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":84558608, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":84565640, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":84572672, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":84573272, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":84573872, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84574272, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84574560, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":84574848, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":84575040, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":84575952, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":84576864, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":84577472, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":84578096, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":84578720, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":84579136, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84579304, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84579352, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84579400, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":84579432, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":84583488, + "target":34962 + }, + { + "buffer":0, + "byteLength":2704, + "byteOffset":84587544, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":84590248, + "target":34963 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":84591688, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":84592360, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":84593032, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":84593480, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":84594824, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":84596168, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":84597064, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":84614104, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":84631144, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84642504, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84642552, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84642600, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":84642632, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":84649556, + "target":34962 + }, + { + "buffer":0, + "byteLength":936, + "byteOffset":84656480, + "target":34962 + }, + { + "buffer":0, + "byteLength":936, + "byteOffset":84657416, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":84658352, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":84658976, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":84660080, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":84661184, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":84661920, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":84668892, + "target":34962 + }, + { + "buffer":0, + "byteLength":13032, + "byteOffset":84675864, + "target":34962 + }, + { + "buffer":0, + "byteLength":13032, + "byteOffset":84688896, + "target":34962 + }, + { + "buffer":0, + "byteLength":8688, + "byteOffset":84701928, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":84710616, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":84713340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":84716064, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":84717880, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":84719344, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":84720808, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":84721784, + "target":34963 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":84722264, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":84728600, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":84734936, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":84739160, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":84746192, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":84753224, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":84753944, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":84754664, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84755144, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84755432, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":84755720, + "target":34962 + }, + { + "buffer":0, + "byteLength":12276, + "byteOffset":84755912, + "target":34962 + }, + { + "buffer":0, + "byteLength":12276, + "byteOffset":84768188, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":84780464, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":84788648, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":84789560, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":84790472, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84791080, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84791128, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84791176, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":84791208, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":84793932, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":84796656, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":84798472, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":84800224, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":84801976, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":84803144, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":84810128, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":84817112, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":84829352, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":84841592, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":84849752, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":84853808, + "target":34962 + }, + { + "buffer":0, + "byteLength":2704, + "byteOffset":84857864, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":84860568, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84862008, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84862056, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84862104, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":84862136, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":84869024, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":84875912, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":84878144, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":84880376, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":84881864, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":84883016, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":84884168, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":84891320, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84898472, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84898520, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84898568, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":84898600, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":84902704, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":84906808, + "target":34962 + }, + { + "buffer":0, + "byteLength":6804, + "byteOffset":84909544, + "target":34962 + }, + { + "buffer":0, + "byteLength":6804, + "byteOffset":84916348, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":84923152, + "target":34963 + }, + { + "buffer":0, + "byteLength":8640, + "byteOffset":84925144, + "target":34962 + }, + { + "buffer":0, + "byteLength":8640, + "byteOffset":84933784, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84942424, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":84942472, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84942520, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":84942552, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":84943416, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":84944280, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":84945144, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":84946008, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":84952848, + "target":34962 + }, + { + "buffer":0, + "byteLength":1356, + "byteOffset":84959688, + "target":34962 + }, + { + "buffer":0, + "byteLength":1356, + "byteOffset":84961044, + "target":34962 + }, + { + "buffer":0, + "byteLength":904, + "byteOffset":84962400, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84963304, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":84963592, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":84970504, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":84977416, + "target":34963 + }, + { + "buffer":0, + "byteLength":92868, + "byteOffset":84979408, + "target":34962 + }, + { + "buffer":0, + "byteLength":92868, + "byteOffset":85072276, + "target":34962 + }, + { + "buffer":0, + "byteLength":61912, + "byteOffset":85165144, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":85227056, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":85228496, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":85229936, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":85230896, + "target":34963 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":85231376, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":85232912, + "target":34962 + }, + { + "buffer":0, + "byteLength":1024, + "byteOffset":85234448, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85235472, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85235520, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":85235568, + "target":34962 + }, + { + "buffer":0, + "byteLength":7332, + "byteOffset":85235600, + "target":34962 + }, + { + "buffer":0, + "byteLength":7332, + "byteOffset":85242932, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":85250264, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":85252256, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":85259216, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85266176, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85266224, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":85266272, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85266304, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85266352, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":85266400, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85266432, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85266480, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":85266528, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":85266560, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":85266848, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":85267136, + "target":34962 + }, + { + "buffer":0, + "byteLength":1620, + "byteOffset":85267328, + "target":34962 + }, + { + "buffer":0, + "byteLength":1620, + "byteOffset":85268948, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":85270568, + "target":34962 + }, + { + "buffer":0, + "byteLength":9792, + "byteOffset":85271648, + "target":34962 + }, + { + "buffer":0, + "byteLength":9792, + "byteOffset":85281440, + "target":34962 + }, + { + "buffer":0, + "byteLength":6528, + "byteOffset":85291232, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":85297760, + "target":34963 + }, + { + "buffer":0, + "byteLength":2976, + "byteOffset":85300304, + "target":34962 + }, + { + "buffer":0, + "byteLength":2976, + "byteOffset":85303280, + "target":34962 + }, + { + "buffer":0, + "byteLength":1984, + "byteOffset":85306256, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":85308240, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":85308912, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":85309584, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":85310032, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":85322272, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":85334512, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":85342672, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":85343824, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":85344976, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":85345840, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":85346704, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":85353784, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":85360864, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":85362856, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":85363768, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":85364680, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":85365288, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":85371996, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":85378704, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":85383176, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":85404896, + "target":34962 + }, + { + "buffer":0, + "byteLength":14480, + "byteOffset":85426616, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":85441096, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":85441384, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":85441672, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":85441864, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":85448968, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85456072, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85456120, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":85456168, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":85456200, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":85457544, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":85458888, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":85461336, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":85463784, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":85465416, + "target":34963 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":85466028, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":85468044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":85470060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":85471404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":85472460, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":85473516, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":85474220, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":85478384, + "target":34962 + }, + { + "buffer":0, + "byteLength":2776, + "byteOffset":85482548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":85485324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":85486500, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":85487676, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":85488460, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":85491184, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":85493908, + "target":34962 + }, + { + "buffer":0, + "byteLength":12600, + "byteOffset":85495724, + "target":34962 + }, + { + "buffer":0, + "byteLength":12600, + "byteOffset":85508324, + "target":34962 + }, + { + "buffer":0, + "byteLength":8400, + "byteOffset":85520924, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":85529324, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":85536308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":85543292, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":85545284, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":85562324, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":85579364, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":85590724, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":85597720, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":85604716, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85606708, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85606756, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":85606804, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":85606836, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":85609956, + "target":34962 + }, + { + "buffer":0, + "byteLength":2080, + "byteOffset":85613076, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":85615156, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":85622092, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":85629028, + "target":34963 + }, + { + "buffer":0, + "byteLength":97224, + "byteOffset":85631020, + "target":34962 + }, + { + "buffer":0, + "byteLength":97224, + "byteOffset":85728244, + "target":34962 + }, + { + "buffer":0, + "byteLength":64816, + "byteOffset":85825468, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":85890284, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85923404, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85923452, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":85923500, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":85923532, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":85930684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":85937836, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85939828, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85939876, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":85939924, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85939956, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":85940004, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":85940052, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":85940084, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":85947164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":85954244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":85955996, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":85957748, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":85958916, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":85959780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":85960644, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":85962564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1280, + "byteOffset":85964484, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":85965764, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":85966676, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":85967588, + "target":34962 + }, + { + "buffer":0, + "byteLength":9576, + "byteOffset":85968196, + "target":34962 + }, + { + "buffer":0, + "byteLength":9576, + "byteOffset":85977772, + "target":34962 + }, + { + "buffer":0, + "byteLength":6384, + "byteOffset":85987348, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":85993732, + "target":34963 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":85996276, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":85998412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1424, + "byteOffset":86000548, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":86001972, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":86005356, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":86008740, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":86010996, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":86011044, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":86011092, + "target":34962 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":86011124, + "target":34962 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":86014676, + "target":34962 + }, + { + "buffer":0, + "byteLength":2368, + "byteOffset":86018228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":86020596, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":86021940, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":86023284, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":86027424, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":86031564, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":86034324, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":86034372, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":86034420, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":86034452, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":86034740, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":86035028, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":86035076, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":86035124, + "target":34962 + }, + { + "buffer":0, + "byteLength":3696, + "byteOffset":86035156, + "target":34962 + }, + { + "buffer":0, + "byteLength":3696, + "byteOffset":86038852, + "target":34962 + }, + { + "buffer":0, + "byteLength":2464, + "byteOffset":86042548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":86045012, + "target":34963 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":86046452, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":86047064, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":86047676, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":86048084, + "target":34963 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":86048252, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":86048780, + "target":34962 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":86049308, + "target":34962 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":86049660, + "target":34962 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":86050296, + "target":34962 + }, + { + "buffer":0, + "byteLength":424, + "byteOffset":86050932, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":86051356, + "target":34963 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":86051524, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":86053972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":86056420, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":86058052, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":86075092, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":86092132, + "target":34962 + }, + { + "buffer":0, + "byteLength":13872, + "byteOffset":86103492, + "target":34962 + }, + { + "buffer":0, + "byteLength":13872, + "byteOffset":86117364, + "target":34962 + }, + { + "buffer":0, + "byteLength":9248, + "byteOffset":86131236, + "target":34962 + }, + { + "buffer":0, + "byteLength":7248, + "byteOffset":86140484, + "target":34962 + }, + { + "buffer":0, + "byteLength":7248, + "byteOffset":86147732, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":86154980, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":86156972, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":86157260, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":86157548, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":86164568, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":86171588, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":86172500, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":86173412, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":86174020, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":86174068, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":86174116, + "target":34962 + }, + { + "buffer":0, + "byteLength":96372, + "byteOffset":86174148, + "target":34962 + }, + { + "buffer":0, + "byteLength":96372, + "byteOffset":86270520, + "target":34962 + }, + { + "buffer":0, + "byteLength":64248, + "byteOffset":86366892, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":86431140, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":86437884, + "target":34962 + }, + { + "buffer":0, + "byteLength":7296, + "byteOffset":86444628, + "target":34962 + }, + { + "buffer":0, + "byteLength":7296, + "byteOffset":86451924, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":86459220, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":86459268, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":86459316, + "target":34962 + }, + { + "buffer":0, + "byteLength":32280, + "byteOffset":86459348, + "target":34962 + }, + { + "buffer":0, + "byteLength":32280, + "byteOffset":86491628, + "target":34962 + }, + { + "buffer":0, + "byteLength":21520, + "byteOffset":86523908, + "target":34962 + }, + { + "buffer":0, + "byteLength":15948, + "byteOffset":86545428, + "target":34962 + }, + { + "buffer":0, + "byteLength":15948, + "byteOffset":86561376, + "target":34962 + }, + { + "buffer":0, + "byteLength":10632, + "byteOffset":86577324, + "target":34962 + }, + { + "buffer":0, + "byteLength":5040, + "byteOffset":86587956, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":86592996, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":86610036, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":86627076, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":86638436, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":86638484, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":86638532, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":86638564, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":86645476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":86652388, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":86654020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":86655652, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":86656740, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":86657028, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":86657316, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":86657508, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":86660220, + "target":34962 + }, + { + "buffer":0, + "byteLength":57624, + "byteOffset":86662932, + "target":34962 + }, + { + "buffer":0, + "byteLength":57624, + "byteOffset":86720556, + "target":34962 + }, + { + "buffer":0, + "byteLength":38416, + "byteOffset":86778180, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":86816596, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":86825260, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":86833924, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":86837044, + "target":34962 + }, + { + "buffer":0, + "byteLength":2080, + "byteOffset":86840164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1128, + "byteOffset":86842244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1128, + "byteOffset":86843372, + "target":34962 + }, + { + "buffer":0, + "byteLength":752, + "byteOffset":86844500, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":86845252, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":86854228, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":86863204, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":86870164, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":86877124, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":86884252, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":86891380, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":86891956, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":86892532, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":86899540, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":86906548, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":86908540, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":86908588, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":86908636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":86908668, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":86910420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":86912172, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":86913340, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":86913628, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":86913916, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":86914108, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":86920924, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":86927740, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":86944780, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":86961820, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":86973180, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":86980092, + "target":34962 + }, + { + "buffer":0, + "byteLength":93456, + "byteOffset":86987004, + "target":34962 + }, + { + "buffer":0, + "byteLength":93456, + "byteOffset":87080460, + "target":34962 + }, + { + "buffer":0, + "byteLength":62304, + "byteOffset":87173916, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":87236220, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":87240444, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":87244668, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":87251748, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":87258828, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87260820, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87260868, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":87260916, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":87260948, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":87267836, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87274724, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87274772, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":87274820, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":87274852, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":87279076, + "target":34962 + }, + { + "buffer":0, + "byteLength":2816, + "byteOffset":87283300, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":87286116, + "target":34963 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":87287556, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":87294612, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":87301668, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":87303660, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":87305004, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":87306348, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":87307212, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":87308076, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":87308364, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":87308652, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87308844, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87308892, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":87308940, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":87308972, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":87315980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":87322988, + "target":34963 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":87324980, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":87327704, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":87330428, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":87332244, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":87339288, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":87346332, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":87348324, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":87355308, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":87362292, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":87374868, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":87387444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":87395828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":87397580, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":87399332, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":87400500, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":87400788, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":87401076, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":87401364, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":87401652, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":87401844, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87401916, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87401964, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":87402012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":87402044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":87403796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":87405548, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":87406716, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":87413580, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87420444, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87420492, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":87420540, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87420572, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87420620, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":87420668, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":87420700, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":87420988, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":87421276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":87421468, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":87422572, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":87423676, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":87424412, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":87426788, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":87429164, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87430748, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87430796, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":87430844, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":87430876, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":87432508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":87434140, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87435228, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87435276, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":87435324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":87435356, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":87436508, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":87437660, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":87444836, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":87452012, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":87454004, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":87460892, + "target":34962 + }, + { + "buffer":0, + "byteLength":3516, + "byteOffset":87467780, + "target":34962 + }, + { + "buffer":0, + "byteLength":3516, + "byteOffset":87471296, + "target":34962 + }, + { + "buffer":0, + "byteLength":2344, + "byteOffset":87474812, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":87477156, + "target":34963 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":87478596, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":87485460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":87492324, + "target":34963 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":87494316, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":87497028, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":87499740, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":87500412, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":87501084, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":87501532, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":87518572, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":87535612, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":87546972, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":87547260, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":87547548, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":87547740, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":87548592, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":87549444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":87550012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":87551356, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87552700, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87552748, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":87552796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":87552828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":87553884, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":87554940, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":87555644, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":87562604, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":87569564, + "target":34963 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":87571556, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":87578480, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":87585404, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":87592316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":87599228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":87600404, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":87601580, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":87602364, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":87609408, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":87616452, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":87623544, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":87630636, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":87637476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":87644316, + "target":34963 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":87646308, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":87648324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":87650340, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":87651684, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":87658560, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":87665436, + "target":34963 + }, + { + "buffer":0, + "byteLength":97176, + "byteOffset":87667428, + "target":34962 + }, + { + "buffer":0, + "byteLength":97176, + "byteOffset":87764604, + "target":34962 + }, + { + "buffer":0, + "byteLength":64784, + "byteOffset":87861780, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87926564, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87926612, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":87926660, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":87926692, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":87926980, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":87927268, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87927460, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":87927508, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":87927556, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":87927588, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":87927876, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":87928164, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":87928356, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":87935364, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":87942372, + "target":34963 + }, + { + "buffer":0, + "byteLength":6600, + "byteOffset":87944364, + "target":34962 + }, + { + "buffer":0, + "byteLength":6600, + "byteOffset":87950964, + "target":34962 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":87957564, + "target":34962 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":87961548, + "target":34962 + }, + { + "buffer":0, + "byteLength":2656, + "byteOffset":87965532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":87968188, + "target":34963 + }, + { + "buffer":0, + "byteLength":6732, + "byteOffset":87969628, + "target":34962 + }, + { + "buffer":0, + "byteLength":6732, + "byteOffset":87976360, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":87983092, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":87985084, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":87985996, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":87986908, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":87987516, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":87988236, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":87988956, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":87989436, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":87992820, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":87996204, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":87998460, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":87999324, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88000188, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88000236, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":88000284, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":88000316, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":88003004, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":88005692, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88006676, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88006964, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":88007252, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":88007444, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":88014500, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":88021556, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":88022168, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":88022780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":88023188, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":88024532, + "target":34962 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":88025876, + "target":34962 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":88029920, + "target":34962 + }, + { + "buffer":0, + "byteLength":2696, + "byteOffset":88033964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":88036660, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88038100, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88038148, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":88038196, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":88038228, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":88059948, + "target":34962 + }, + { + "buffer":0, + "byteLength":14480, + "byteOffset":88081668, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88096148, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88096436, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":88096724, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":88104620, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":88112516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":88117780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":88119076, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":88120372, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":88121236, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88121716, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88122004, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":88122292, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88122484, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88122532, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":88122580, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":88122612, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":88123476, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":88124340, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":88128456, + "target":34962 + }, + { + "buffer":0, + "byteLength":2744, + "byteOffset":88132572, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":88135316, + "target":34963 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":88136756, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":88143092, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":88149428, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":88153652, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":88154240, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":88154828, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":88155220, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":88176940, + "target":34962 + }, + { + "buffer":0, + "byteLength":14480, + "byteOffset":88198660, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":88213140, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":88225380, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":88237620, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":88245780, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":88252644, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":88259508, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":88266468, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":88273428, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":88274052, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":88274676, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88275092, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88275380, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":88275668, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":88275860, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":88292900, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":88309940, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88321300, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88321588, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":88321876, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":88324252, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":88326628, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":88328212, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":88329124, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":88330036, + "target":34962 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":88330644, + "target":34962 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":88340424, + "target":34962 + }, + { + "buffer":0, + "byteLength":6520, + "byteOffset":88350204, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":88356724, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88359268, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88359316, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":88359364, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88359396, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88359444, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":88359492, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":88359524, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":88360196, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":88360868, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":88361316, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":88373556, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":88385796, + "target":34962 + }, + { + "buffer":0, + "byteLength":97188, + "byteOffset":88393956, + "target":34962 + }, + { + "buffer":0, + "byteLength":97188, + "byteOffset":88491144, + "target":34962 + }, + { + "buffer":0, + "byteLength":64792, + "byteOffset":88588332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":88653124, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":88654756, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":88656388, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":88657476, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":88664340, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":88671204, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":88688244, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":88705284, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":88716644, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":88723700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":88730756, + "target":34963 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":88732748, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":88739816, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":88746884, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":88754024, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":88761164, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":88764284, + "target":34962 + }, + { + "buffer":0, + "byteLength":2080, + "byteOffset":88767404, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":88769484, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":88776276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":88783068, + "target":34963 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":88785060, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":88791828, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88798596, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88798644, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":88798692, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":88798724, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":88802948, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88807172, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88807460, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":88807748, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":88808612, + "target":34962 + }, + { + "buffer":0, + "byteLength":2160, + "byteOffset":88809476, + "target":34962 + }, + { + "buffer":0, + "byteLength":2160, + "byteOffset":88811636, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":88813796, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":88815236, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":88815956, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":88816676, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":88817156, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":88824236, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":88831316, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":88832228, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":88833140, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88833748, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88833796, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":88833844, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88833876, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88833924, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":88833972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":88834004, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":88835060, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":88836116, + "target":34962 + }, + { + "buffer":0, + "byteLength":2940, + "byteOffset":88836820, + "target":34962 + }, + { + "buffer":0, + "byteLength":2940, + "byteOffset":88839760, + "target":34962 + }, + { + "buffer":0, + "byteLength":1960, + "byteOffset":88842700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":88844660, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":88846004, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":88847348, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":88854260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":88861172, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":88863164, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":88870052, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88876940, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":88877228, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":88877516, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":88877708, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":88894748, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":88911788, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":88923148, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":88933528, + "target":34962 + }, + { + "buffer":0, + "byteLength":6920, + "byteOffset":88943908, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":88950828, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":88951356, + "target":34962 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":88951884, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88952236, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":88952284, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":88952332, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":88952364, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":88959252, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":88966140, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":88973148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":88980156, + "target":34963 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":88982148, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":88986252, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":88990356, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":88993092, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":88994532, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":89001516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":89008500, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":89010492, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":89010540, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89010588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":89010620, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":89011772, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":89012924, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":89013212, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":89013500, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":89013788, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":89014076, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":89014268, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":89021216, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":89028164, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":89030156, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":89030204, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89030252, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":89030284, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":89037244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":89044204, + "target":34963 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":89046196, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":89048308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1408, + "byteOffset":89050420, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":89051828, + "target":34963 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":89052548, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":89072468, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":89092388, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":89105668, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":89112376, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":89119084, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":89123556, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":89130528, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":89137500, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":89139492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":89140836, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":89142180, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":89143092, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":89144004, + "target":34962 + }, + { + "buffer":0, + "byteLength":97176, + "byteOffset":89144612, + "target":34962 + }, + { + "buffer":0, + "byteLength":97176, + "byteOffset":89241788, + "target":34962 + }, + { + "buffer":0, + "byteLength":64784, + "byteOffset":89338964, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":89403748, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":89404036, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":89404324, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":89404516, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":89404564, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89404612, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":89404644, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":89411628, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":89418612, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":89418660, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89418708, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":89418740, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":89419028, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":89419316, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":89419508, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":89419652, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":89419796, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":89419892, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":89423972, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":89428052, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":89428100, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89428148, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":89428180, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":89435164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":89442148, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":89444140, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":89451172, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":89458204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":89459836, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":89461468, + "target":34962 + }, + { + "buffer":0, + "byteLength":9732, + "byteOffset":89462556, + "target":34962 + }, + { + "buffer":0, + "byteLength":9732, + "byteOffset":89472288, + "target":34962 + }, + { + "buffer":0, + "byteLength":6488, + "byteOffset":89482020, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":89488508, + "target":34963 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":89491052, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":89498132, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":89505212, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":89512220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":89519228, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":89521220, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":89528108, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":89534996, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":89552036, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":89569076, + "target":34962 + }, + { + "buffer":0, + "byteLength":2148, + "byteOffset":89580436, + "target":34962 + }, + { + "buffer":0, + "byteLength":2148, + "byteOffset":89582584, + "target":34962 + }, + { + "buffer":0, + "byteLength":1432, + "byteOffset":89584732, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":89586164, + "target":34963 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":89586884, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":89587736, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":89588588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":89589156, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":89590500, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":89591844, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":89598876, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":89605908, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":89607900, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":89607948, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89607996, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":89608028, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":89608316, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":89608604, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":89608796, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":89608988, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":89609180, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":89609308, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":89609596, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":89609884, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":89610604, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":89611324, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":89611804, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":89618512, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":89625220, + "target":34962 + }, + { + "buffer":0, + "byteLength":9672, + "byteOffset":89629692, + "target":34962 + }, + { + "buffer":0, + "byteLength":9672, + "byteOffset":89639364, + "target":34962 + }, + { + "buffer":0, + "byteLength":6448, + "byteOffset":89649036, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":89655484, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":89655628, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":89655772, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":89655868, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":89662576, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":89669284, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":89673756, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":89674236, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":89674716, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":89675036, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":89682116, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":89689196, + "target":34963 + }, + { + "buffer":0, + "byteLength":95892, + "byteOffset":89691188, + "target":34962 + }, + { + "buffer":0, + "byteLength":95892, + "byteOffset":89787080, + "target":34962 + }, + { + "buffer":0, + "byteLength":63928, + "byteOffset":89882972, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":89946900, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":89946948, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89946996, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":89947028, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":89947316, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":89947604, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":89947796, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":89947844, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89947892, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":89947924, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":89954836, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":89961748, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":89963740, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":89970676, + "target":34962 + }, + { + "buffer":0, + "byteLength":11016, + "byteOffset":89977612, + "target":34962 + }, + { + "buffer":0, + "byteLength":11016, + "byteOffset":89988628, + "target":34962 + }, + { + "buffer":0, + "byteLength":7344, + "byteOffset":89999644, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":90006988, + "target":34963 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":90009868, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":90016792, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":90023716, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":90025708, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":90026572, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":90027436, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":90028300, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":90029164, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":90030076, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":90030988, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90031596, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90031884, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":90032172, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":90032364, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":90039360, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":90046356, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":90053268, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":90060180, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":90060780, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":90061380, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":90061780, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":90070756, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":90079732, + "target":34963 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":90082396, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":90086572, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":90090748, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":90093532, + "target":34963 + }, + { + "buffer":0, + "byteLength":5496, + "byteOffset":90094972, + "target":34962 + }, + { + "buffer":0, + "byteLength":5496, + "byteOffset":90100468, + "target":34962 + }, + { + "buffer":0, + "byteLength":3664, + "byteOffset":90105964, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90109628, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90109916, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":90110204, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":90110396, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":90113120, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":90115844, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90117660, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90117708, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90117756, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90117788, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90118076, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90118364, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90118412, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90118460, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":90118492, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":90119476, + "target":34962 + }, + { + "buffer":0, + "byteLength":656, + "byteOffset":90120460, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90121116, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90121404, + "target":34962 + }, + { + "buffer":0, + "byteLength":9744, + "byteOffset":90121692, + "target":34962 + }, + { + "buffer":0, + "byteLength":9744, + "byteOffset":90131436, + "target":34962 + }, + { + "buffer":0, + "byteLength":6496, + "byteOffset":90141180, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":90147676, + "target":34963 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":90150220, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":90152524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":90154828, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":90156364, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":90163072, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":90169780, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90174252, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90174540, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":90174828, + "target":34962 + }, + { + "buffer":0, + "byteLength":17868, + "byteOffset":90175020, + "target":34962 + }, + { + "buffer":0, + "byteLength":17868, + "byteOffset":90192888, + "target":34962 + }, + { + "buffer":0, + "byteLength":11912, + "byteOffset":90210756, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":90222668, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90227468, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90227516, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90227564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":90227596, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":90229060, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":90230524, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":90231500, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":90232124, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":90232748, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":90233164, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":90237220, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":90241276, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":90247132, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":90252988, + "target":34962 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":90256892, + "target":34962 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":90269408, + "target":34962 + }, + { + "buffer":0, + "byteLength":8344, + "byteOffset":90281924, + "target":34962 + }, + { + "buffer":0, + "byteLength":8064, + "byteOffset":90290268, + "target":34962 + }, + { + "buffer":0, + "byteLength":8064, + "byteOffset":90298332, + "target":34962 + }, + { + "buffer":0, + "byteLength":5376, + "byteOffset":90306396, + "target":34962 + }, + { + "buffer":0, + "byteLength":3312, + "byteOffset":90311772, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":90315084, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":90322092, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":90329100, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":90336276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":90343452, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90345444, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90345732, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":90346020, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":90346644, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":90347268, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":90347684, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":90354788, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90361892, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90362180, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":90362468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":90369356, + "target":34962 + }, + { + "buffer":0, + "byteLength":2976, + "byteOffset":90376244, + "target":34962 + }, + { + "buffer":0, + "byteLength":2976, + "byteOffset":90379220, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":90382196, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90383180, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90383228, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90383276, + "target":34962 + }, + { + "buffer":0, + "byteLength":15960, + "byteOffset":90383308, + "target":34962 + }, + { + "buffer":0, + "byteLength":15960, + "byteOffset":90399268, + "target":34962 + }, + { + "buffer":0, + "byteLength":10640, + "byteOffset":90415228, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":90425868, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":90431724, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":90437580, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":90441484, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":90448624, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90455764, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90455812, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90455860, + "target":34962 + }, + { + "buffer":0, + "byteLength":2796, + "byteOffset":90455892, + "target":34962 + }, + { + "buffer":0, + "byteLength":2796, + "byteOffset":90458688, + "target":34962 + }, + { + "buffer":0, + "byteLength":1864, + "byteOffset":90461484, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":90463348, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":90470332, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":90477316, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":90484060, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":90490804, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":90491716, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":90492628, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":90493236, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":90500364, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90507492, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90507540, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90507588, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":90507620, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":90514544, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":90521468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":90528404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":90535340, + "target":34963 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":90537332, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":90539756, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":90542180, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":90543796, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":90550756, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":90557716, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":90560428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1380, + "byteOffset":90563140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1380, + "byteOffset":90564520, + "target":34962 + }, + { + "buffer":0, + "byteLength":920, + "byteOffset":90565900, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90566820, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90567108, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":90567396, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":90567588, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":90570108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":90572628, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":90574308, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":90574932, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":90581964, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90588996, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90589044, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90589092, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":90589124, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":90596228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":90603332, + "target":34963 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":90605324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":90606404, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":90607484, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90608204, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90608492, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":90608780, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90608972, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90609260, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":90609548, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":90609740, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":90616556, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90623372, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90623420, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90623468, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":90623500, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":90643420, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":90663340, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":90676620, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":90677532, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":90678444, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":90679052, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":90686084, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":90693116, + "target":34963 + }, + { + "buffer":0, + "byteLength":1524, + "byteOffset":90695108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1524, + "byteOffset":90696632, + "target":34962 + }, + { + "buffer":0, + "byteLength":1016, + "byteOffset":90698156, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90699172, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90699220, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90699268, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":90699300, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":90706272, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":90713244, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":90730284, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":90747324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":90758684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":90759956, + "target":34962 + }, + { + "buffer":0, + "byteLength":848, + "byteOffset":90761228, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90762076, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90762124, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90762172, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":90762204, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":90769212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":90776220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":90777828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1072, + "byteOffset":90779436, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":90780508, + "target":34963 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":90780988, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":90787804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":90794620, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90796612, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90796660, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90796708, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":90796740, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":90803604, + "target":34962 + }, + { + "buffer":0, + "byteLength":6756, + "byteOffset":90810468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6756, + "byteOffset":90817224, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":90823980, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90825972, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90826260, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90826548, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90826596, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90826644, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":90826676, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":90833720, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":90840764, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":90842036, + "target":34962 + }, + { + "buffer":0, + "byteLength":848, + "byteOffset":90843308, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90844156, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":90844444, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":90844732, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90844924, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90844972, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90845020, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90845052, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":90845100, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90845148, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":90845180, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":90852140, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":90859100, + "target":34963 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":90861092, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":90868112, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":90875132, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":90881972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":90888812, + "target":34963 + }, + { + "buffer":0, + "byteLength":95892, + "byteOffset":90890804, + "target":34962 + }, + { + "buffer":0, + "byteLength":95892, + "byteOffset":90986696, + "target":34962 + }, + { + "buffer":0, + "byteLength":63928, + "byteOffset":91082588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":91146516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":91147812, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":91149108, + "target":34962 + }, + { + "buffer":0, + "byteLength":324, + "byteOffset":91149972, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":91150296, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":91151160, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":91152024, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":91152072, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":91152120, + "target":34962 + }, + { + "buffer":0, + "byteLength":3948, + "byteOffset":91152152, + "target":34962 + }, + { + "buffer":0, + "byteLength":3948, + "byteOffset":91156100, + "target":34962 + }, + { + "buffer":0, + "byteLength":2632, + "byteOffset":91160048, + "target":34962 + }, + { + "buffer":0, + "byteLength":2268, + "byteOffset":91162680, + "target":34962 + }, + { + "buffer":0, + "byteLength":2268, + "byteOffset":91164948, + "target":34962 + }, + { + "buffer":0, + "byteLength":1512, + "byteOffset":91167216, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":91168728, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":91169016, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":91169304, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":91169496, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":91176456, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":91183416, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":91184916, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":91186416, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":91187416, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":91190104, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":91192792, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":91199584, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":91206376, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":91208368, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":91208416, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":91208464, + "target":34962 + }, + { + "buffer":0, + "byteLength":13824, + "byteOffset":91208496, + "target":34962 + }, + { + "buffer":0, + "byteLength":13824, + "byteOffset":91222320, + "target":34962 + }, + { + "buffer":0, + "byteLength":9216, + "byteOffset":91236144, + "target":34962 + }, + { + "buffer":0, + "byteLength":7860, + "byteOffset":91245360, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":91253220, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":91260180, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":91267140, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":91267692, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":91268244, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":91268612, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":91275476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":91282340, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":91284332, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":91301372, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":91318412, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":91329772, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":91330624, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":91331476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":91332044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":91333388, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":91334732, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":91341860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":91348988, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":91350980, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":91351028, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":91351076, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":91351108, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":91355284, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":91359460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":91362244, + "target":34963 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":91363684, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":91370392, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":91377100, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":91381572, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":91385628, + "target":34962 + }, + { + "buffer":0, + "byteLength":15912, + "byteOffset":91389684, + "target":34962 + }, + { + "buffer":0, + "byteLength":15912, + "byteOffset":91405596, + "target":34962 + }, + { + "buffer":0, + "byteLength":10608, + "byteOffset":91421508, + "target":34962 + }, + { + "buffer":0, + "byteLength":5040, + "byteOffset":91432116, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":91437156, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":91437444, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":91437732, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":91444704, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":91451676, + "target":34963 + }, + { + "buffer":0, + "byteLength":93588, + "byteOffset":91453668, + "target":34962 + }, + { + "buffer":0, + "byteLength":93588, + "byteOffset":91547256, + "target":34962 + }, + { + "buffer":0, + "byteLength":62392, + "byteOffset":91640844, + "target":34962 + }, + { + "buffer":0, + "byteLength":14976, + "byteOffset":91703236, + "target":34962 + }, + { + "buffer":0, + "byteLength":14976, + "byteOffset":91718212, + "target":34962 + }, + { + "buffer":0, + "byteLength":9984, + "byteOffset":91733188, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":91743172, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":91750156, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":91757140, + "target":34963 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":91759132, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":91763236, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":91767340, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":91767820, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":91768300, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":91768620, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":91775460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":91782300, + "target":34963 + }, + { + "buffer":0, + "byteLength":93528, + "byteOffset":91784292, + "target":34962 + }, + { + "buffer":0, + "byteLength":93528, + "byteOffset":91877820, + "target":34962 + }, + { + "buffer":0, + "byteLength":62352, + "byteOffset":91971348, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":92033700, + "target":34963 + }, + { + "buffer":0, + "byteLength":9756, + "byteOffset":92066820, + "target":34962 + }, + { + "buffer":0, + "byteLength":9756, + "byteOffset":92076576, + "target":34962 + }, + { + "buffer":0, + "byteLength":6504, + "byteOffset":92086332, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":92092836, + "target":34963 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":92095380, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":92103156, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":92110932, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92116116, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92116164, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":92116212, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":92116244, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":92122580, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":92128916, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92133140, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92133188, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":92133236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":92133268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":92134972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":92136676, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":92137812, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":92138424, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":92139036, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":92139444, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":92159364, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":92179284, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":92192564, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":92192852, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":92193140, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92193332, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92193380, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":92193428, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":92193460, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":92194372, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":92195284, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":92195892, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":92196180, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92196468, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92196516, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":92196564, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":92196596, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":92203556, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":92210516, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":92213240, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":92215964, + "target":34962 + }, + { + "buffer":0, + "byteLength":2004, + "byteOffset":92217780, + "target":34962 + }, + { + "buffer":0, + "byteLength":2004, + "byteOffset":92219784, + "target":34962 + }, + { + "buffer":0, + "byteLength":1336, + "byteOffset":92221788, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":92223124, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":92229988, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":92236852, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":92238844, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":92239996, + "target":34962 + }, + { + "buffer":0, + "byteLength":8304, + "byteOffset":92241148, + "target":34962 + }, + { + "buffer":0, + "byteLength":8304, + "byteOffset":92249452, + "target":34962 + }, + { + "buffer":0, + "byteLength":5536, + "byteOffset":92257756, + "target":34962 + }, + { + "buffer":0, + "byteLength":3096, + "byteOffset":92263292, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":92266388, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":92273300, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":92280212, + "target":34962 + }, + { + "buffer":0, + "byteLength":2160, + "byteOffset":92284820, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":92286980, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":92287556, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":92288132, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":92288516, + "target":34963 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":92288708, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":92291012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":92293316, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":92294852, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":92295428, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":92295716, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":92296004, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":92296196, + "target":34963 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":92296268, + "target":34962 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":92296904, + "target":34962 + }, + { + "buffer":0, + "byteLength":424, + "byteOffset":92297540, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":92297964, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":92304804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":92311644, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":92312988, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":92314332, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":92334252, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":92354172, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":92367452, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":92370332, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":92373212, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92374196, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92374244, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":92374292, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92374324, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92374372, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":92374420, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":92374452, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":92375172, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":92375892, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":92376372, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":92377236, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92378100, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92378148, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":92378196, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":92378228, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":92380460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":92382692, + "target":34962 + }, + { + "buffer":0, + "byteLength":2928, + "byteOffset":92384180, + "target":34962 + }, + { + "buffer":0, + "byteLength":2928, + "byteOffset":92387108, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":92390036, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92391020, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92391068, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":92391116, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":92391148, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":92395264, + "target":34962 + }, + { + "buffer":0, + "byteLength":2744, + "byteOffset":92399380, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":92402124, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":92403564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":92404716, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92405868, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92405916, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":92405964, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":92405996, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":92406596, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":92407196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":92407596, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":92409348, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":92411100, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":92412268, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":92419036, + "target":34962 + }, + { + "buffer":0, + "byteLength":18288, + "byteOffset":92425804, + "target":34962 + }, + { + "buffer":0, + "byteLength":18288, + "byteOffset":92444092, + "target":34962 + }, + { + "buffer":0, + "byteLength":12192, + "byteOffset":92462380, + "target":34962 + }, + { + "buffer":0, + "byteLength":9612, + "byteOffset":92474572, + "target":34962 + }, + { + "buffer":0, + "byteLength":9612, + "byteOffset":92484184, + "target":34962 + }, + { + "buffer":0, + "byteLength":6408, + "byteOffset":92493796, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":92500204, + "target":34963 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":92502748, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":92509468, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":92516188, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":92517100, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":92518012, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":92518620, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":92518908, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":92519196, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":92519388, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":92519868, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":92520348, + "target":34962 + }, + { + "buffer":0, + "byteLength":9456, + "byteOffset":92520668, + "target":34962 + }, + { + "buffer":0, + "byteLength":9456, + "byteOffset":92530124, + "target":34962 + }, + { + "buffer":0, + "byteLength":6304, + "byteOffset":92539580, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":92545884, + "target":34963 + }, + { + "buffer":0, + "byteLength":2892, + "byteOffset":92548428, + "target":34962 + }, + { + "buffer":0, + "byteLength":2892, + "byteOffset":92551320, + "target":34962 + }, + { + "buffer":0, + "byteLength":1928, + "byteOffset":92554212, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":92556140, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":92563292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":92570444, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92572436, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92572484, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":92572532, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92572564, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92572612, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":92572660, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":92572692, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":92580972, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":92589252, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92591916, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92591964, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":92592012, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":92592044, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":92592332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":92592620, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":92594612, + "target":34962 + }, + { + "buffer":0, + "byteLength":1328, + "byteOffset":92596604, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":92597932, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":92598652, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":92599516, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":92600380, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":92607484, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92614588, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92614636, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":92614684, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":92614716, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":92617500, + "target":34962 + }, + { + "buffer":0, + "byteLength":1856, + "byteOffset":92620284, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":92622140, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":92628860, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92635580, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":92635628, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":92635676, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":92635708, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":92635996, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":92636284, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":92636476, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":92640628, + "target":34962 + }, + { + "buffer":0, + "byteLength":5496, + "byteOffset":92644780, + "target":34962 + }, + { + "buffer":0, + "byteLength":5496, + "byteOffset":92650276, + "target":34962 + }, + { + "buffer":0, + "byteLength":3664, + "byteOffset":92655772, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":92659436, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":92663492, + "target":34962 + }, + { + "buffer":0, + "byteLength":181344, + "byteOffset":92667548, + "target":34962 + }, + { + "buffer":0, + "byteLength":181344, + "byteOffset":92848892, + "target":34962 + }, + { + "buffer":0, + "byteLength":120896, + "byteOffset":93030236, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":93151132, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":93158056, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":93164980, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":93166972, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":93167836, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":93168700, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":93171220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":93173740, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":93175420, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93176044, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93176092, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":93176140, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":93176172, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":93183120, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":93190068, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":93197256, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":93204444, + "target":34963 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":93206436, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":93213588, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":93220740, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":93227628, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":93234516, + "target":34963 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":93236508, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":93244404, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":93252300, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":93257564, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":93258188, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":93258812, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93259228, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93259276, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":93259324, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93259356, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93259404, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":93259452, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":93259484, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":93266372, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":93273260, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":93280004, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":93286748, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":93288740, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":93305780, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":93322820, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93334180, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93334228, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":93334276, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93334308, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93334356, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":93334404, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":93334436, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":93341492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":93348548, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":93350540, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":93357500, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":93364460, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":93366692, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":93368924, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":93370412, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":93370892, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":93371372, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":93371692, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":93373444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":93375196, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93376364, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93376412, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":93376460, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":93376492, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":93379180, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":93381868, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":93382156, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":93382444, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93382636, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93382684, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":93382732, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":93382764, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":93389820, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":93396876, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":93403452, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":93410028, + "target":34962 + }, + { + "buffer":0, + "byteLength":93648, + "byteOffset":93414412, + "target":34962 + }, + { + "buffer":0, + "byteLength":93648, + "byteOffset":93508060, + "target":34962 + }, + { + "buffer":0, + "byteLength":62432, + "byteOffset":93601708, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":93664140, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":93665004, + "target":34962 + }, + { + "buffer":0, + "byteLength":17868, + "byteOffset":93665868, + "target":34962 + }, + { + "buffer":0, + "byteLength":17868, + "byteOffset":93683736, + "target":34962 + }, + { + "buffer":0, + "byteLength":11912, + "byteOffset":93701604, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93713516, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93713564, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":93713612, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93713644, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93713692, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":93713740, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":93713772, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":93720780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":93727788, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":93729780, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":93730068, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":93730356, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":93730644, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":93730932, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":93731124, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":93738060, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":93744996, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":93749076, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":93753156, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":93757212, + "target":34962 + }, + { + "buffer":0, + "byteLength":2412, + "byteOffset":93761268, + "target":34962 + }, + { + "buffer":0, + "byteLength":2412, + "byteOffset":93763680, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":93766092, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":93767700, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":93767988, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":93768276, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93768468, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93768516, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":93768564, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":93768596, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":93769076, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":93769556, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":93769876, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":93776584, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":93783292, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":93787764, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":93794652, + "target":34962 + }, + { + "buffer":0, + "byteLength":6780, + "byteOffset":93801540, + "target":34962 + }, + { + "buffer":0, + "byteLength":6780, + "byteOffset":93808320, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":93815100, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93817092, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93817140, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":93817188, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":93817220, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":93824204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":93831188, + "target":34963 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":93833180, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":93833804, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":93834428, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":93834844, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":93841780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":93848716, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":93850708, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":93867748, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":93884788, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93896148, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93896196, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":93896244, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":93896276, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":93902852, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":93909428, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":93913812, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":93920772, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":93927732, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":93930852, + "target":34962 + }, + { + "buffer":0, + "byteLength":2080, + "byteOffset":93933972, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":93936052, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":93943000, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":93949948, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":93952636, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93955324, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":93955372, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":93955420, + "target":34962 + }, + { + "buffer":0, + "byteLength":95892, + "byteOffset":93955452, + "target":34962 + }, + { + "buffer":0, + "byteLength":95892, + "byteOffset":94051344, + "target":34962 + }, + { + "buffer":0, + "byteLength":63928, + "byteOffset":94147236, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":94211164, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":94213852, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":94216540, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":94216588, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":94216636, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":94216668, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":94217580, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":94218492, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":94219100, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":94225676, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":94232252, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":94236636, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":94237284, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":94237932, + "target":34962 + }, + { + "buffer":0, + "byteLength":12588, + "byteOffset":94238364, + "target":34962 + }, + { + "buffer":0, + "byteLength":12588, + "byteOffset":94250952, + "target":34962 + }, + { + "buffer":0, + "byteLength":8392, + "byteOffset":94263540, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":94271932, + "target":34963 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":94276732, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":94277584, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":94278436, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":94279004, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":94285916, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":94292828, + "target":34963 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":94294820, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":94297076, + "target":34962 + }, + { + "buffer":0, + "byteLength":1504, + "byteOffset":94299332, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":94300836, + "target":34963 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":94301556, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":94305588, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":94309620, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":94310100, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":94310580, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":94310900, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":94317920, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":94324940, + "target":34963 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":94326932, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":94329812, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":94332692, + "target":34962 + }, + { + "buffer":0, + "byteLength":1980, + "byteOffset":94334612, + "target":34962 + }, + { + "buffer":0, + "byteLength":1980, + "byteOffset":94336592, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":94338572, + "target":34962 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":94339892, + "target":34962 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":94436444, + "target":34962 + }, + { + "buffer":0, + "byteLength":64368, + "byteOffset":94532996, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":94597364, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":94614404, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":94631444, + "target":34962 + }, + { + "buffer":0, + "byteLength":9912, + "byteOffset":94642804, + "target":34962 + }, + { + "buffer":0, + "byteLength":9912, + "byteOffset":94652716, + "target":34962 + }, + { + "buffer":0, + "byteLength":6608, + "byteOffset":94662628, + "target":34962 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":94669236, + "target":34962 + }, + { + "buffer":0, + "byteLength":4044, + "byteOffset":94673280, + "target":34962 + }, + { + "buffer":0, + "byteLength":2696, + "byteOffset":94677324, + "target":34962 + }, + { + "buffer":0, + "byteLength":9888, + "byteOffset":94680020, + "target":34962 + }, + { + "buffer":0, + "byteLength":9888, + "byteOffset":94689908, + "target":34962 + }, + { + "buffer":0, + "byteLength":6592, + "byteOffset":94699796, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":94706388, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":94715364, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":94724340, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":94724388, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":94724436, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":94724468, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":94724516, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":94724564, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":94724596, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":94741636, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":94758676, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":94770036, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":94770084, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":94770132, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":94770164, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":94790084, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":94810004, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":94823284, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":94823572, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":94823860, + "target":34962 + }, + { + "buffer":0, + "byteLength":3180, + "byteOffset":94824052, + "target":34962 + }, + { + "buffer":0, + "byteLength":3180, + "byteOffset":94827232, + "target":34962 + }, + { + "buffer":0, + "byteLength":2120, + "byteOffset":94830412, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":94832532, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":94833444, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":94834356, + "target":34962 + }, + { + "buffer":0, + "byteLength":9684, + "byteOffset":94834964, + "target":34962 + }, + { + "buffer":0, + "byteLength":9684, + "byteOffset":94844648, + "target":34962 + }, + { + "buffer":0, + "byteLength":6456, + "byteOffset":94854332, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":94860788, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":94863332, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":94863620, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":94863908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":94864100, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":94865444, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":94866788, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":94873796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":94880804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":94882508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":94884212, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":94885348, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":94892332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":94899316, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":94901308, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":94901596, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":94901884, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":94902076, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":94909108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":94916140, + "target":34963 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":94918132, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":94918780, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":94919428, + "target":34962 + }, + { + "buffer":0, + "byteLength":2796, + "byteOffset":94919860, + "target":34962 + }, + { + "buffer":0, + "byteLength":2796, + "byteOffset":94922656, + "target":34962 + }, + { + "buffer":0, + "byteLength":1864, + "byteOffset":94925452, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":94927316, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":94927364, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":94927412, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":94927444, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":94931596, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":94935748, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":94937068, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":94937788, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":94938508, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":94938988, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":94939036, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":94939084, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":94939116, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":94939836, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":94940556, + "target":34962 + }, + { + "buffer":0, + "byteLength":3696, + "byteOffset":94941036, + "target":34962 + }, + { + "buffer":0, + "byteLength":3696, + "byteOffset":94944732, + "target":34962 + }, + { + "buffer":0, + "byteLength":2464, + "byteOffset":94948428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":94950892, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":94952332, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":94952620, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":94952908, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":94953100, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":94960132, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":94967164, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":94975444, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":94983724, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":94987888, + "target":34962 + }, + { + "buffer":0, + "byteLength":2776, + "byteOffset":94992052, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":94994828, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":94995116, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":94995404, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":94998128, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":95000852, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95002668, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95002716, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95002764, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":95002796, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":95003324, + "target":34962 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":95003852, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":95004204, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":95005116, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":95006028, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":95006636, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":95023676, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":95040716, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95052076, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95052124, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95052172, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":95052204, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":95059164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":95066124, + "target":34963 + }, + { + "buffer":0, + "byteLength":2064, + "byteOffset":95068116, + "target":34962 + }, + { + "buffer":0, + "byteLength":2064, + "byteOffset":95070180, + "target":34962 + }, + { + "buffer":0, + "byteLength":1376, + "byteOffset":95072244, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":95073620, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":95074100, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":95074580, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95074900, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95074948, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95074996, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":95075028, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":95075652, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":95076276, + "target":34962 + }, + { + "buffer":0, + "byteLength":7296, + "byteOffset":95076692, + "target":34962 + }, + { + "buffer":0, + "byteLength":7296, + "byteOffset":95083988, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":95091284, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":95100284, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":95109284, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":95111948, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":95112092, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":95112236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1260, + "byteOffset":95112332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1260, + "byteOffset":95113592, + "target":34962 + }, + { + "buffer":0, + "byteLength":840, + "byteOffset":95114852, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":95115692, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":95118428, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95121164, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95121212, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95121260, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":95121292, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":95138332, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":95155372, + "target":34962 + }, + { + "buffer":0, + "byteLength":7236, + "byteOffset":95166732, + "target":34962 + }, + { + "buffer":0, + "byteLength":7236, + "byteOffset":95173968, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":95181204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":95182632, + "target":34962 + }, + { + "buffer":0, + "byteLength":952, + "byteOffset":95184060, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":95185012, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":95187796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1856, + "byteOffset":95190580, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":95192436, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":95199396, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95206356, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95206404, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95206452, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":95206484, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":95210684, + "target":34962 + }, + { + "buffer":0, + "byteLength":2800, + "byteOffset":95214884, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":95217684, + "target":34963 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":95219124, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":95223204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":95227284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":95228748, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":95230212, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":95231188, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":95231476, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":95231764, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":95231956, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":95232244, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":95232532, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95232724, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95232772, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95232820, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":95232852, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":95239932, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":95247012, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":95247732, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":95248452, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95248932, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95248980, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95249028, + "target":34962 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":95249060, + "target":34962 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":95261576, + "target":34962 + }, + { + "buffer":0, + "byteLength":8344, + "byteOffset":95274092, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":95282436, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":95285160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":95287884, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95289700, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95289748, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95289796, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95289828, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95289876, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95289924, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":95289956, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":95296532, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":95303108, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":95307492, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":95324532, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":95341572, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":95352932, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":95354036, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":95355140, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95355876, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95355924, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95355972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":95356004, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":95357348, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95358692, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95358740, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95358788, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":95358820, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":95365780, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":95372740, + "target":34963 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":95374732, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":95381572, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":95388412, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":95395828, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":95403244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":95408188, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":95409340, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":95410492, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":95418388, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":95426284, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":95431548, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":95432412, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95433276, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95433324, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95433372, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95433404, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95433452, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95433500, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":95433532, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":95433820, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":95434108, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":95434300, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":95440156, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":95446012, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95449916, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95449964, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95450012, + "target":34962 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":95450044, + "target":34962 + }, + { + "buffer":0, + "byteLength":96552, + "byteOffset":95546596, + "target":34962 + }, + { + "buffer":0, + "byteLength":64368, + "byteOffset":95643148, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95707516, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95707564, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95707612, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":95707644, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":95707716, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95707788, + "target":34962 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":95707836, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":95707860, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":95714868, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":95721876, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":95722164, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95722452, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95722500, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95722548, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95722580, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95722628, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95722676, + "target":34962 + }, + { + "buffer":0, + "byteLength":1740, + "byteOffset":95722708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1740, + "byteOffset":95724448, + "target":34962 + }, + { + "buffer":0, + "byteLength":1160, + "byteOffset":95726188, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":95727348, + "target":34963 + }, + { + "buffer":0, + "byteLength":4248, + "byteOffset":95727828, + "target":34962 + }, + { + "buffer":0, + "byteLength":4248, + "byteOffset":95732076, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":95736324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":95739156, + "target":34963 + }, + { + "buffer":0, + "byteLength":2472, + "byteOffset":95740596, + "target":34962 + }, + { + "buffer":0, + "byteLength":2472, + "byteOffset":95743068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1648, + "byteOffset":95745540, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":95747188, + "target":34963 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":95747812, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":95754388, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":95760964, + "target":34962 + }, + { + "buffer":0, + "byteLength":2928, + "byteOffset":95765348, + "target":34962 + }, + { + "buffer":0, + "byteLength":2928, + "byteOffset":95768276, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95771204, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95771252, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95771300, + "target":34962 + }, + { + "buffer":0, + "byteLength":1716, + "byteOffset":95771332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1716, + "byteOffset":95773048, + "target":34962 + }, + { + "buffer":0, + "byteLength":1144, + "byteOffset":95774764, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":95775908, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":95776520, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":95777132, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":95777540, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":95778404, + "target":34962 + }, + { + "buffer":0, + "byteLength":2940, + "byteOffset":95779268, + "target":34962 + }, + { + "buffer":0, + "byteLength":2940, + "byteOffset":95782208, + "target":34962 + }, + { + "buffer":0, + "byteLength":1960, + "byteOffset":95785148, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":95787108, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":95804148, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":95821188, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":95832548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":95834252, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":95835956, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":95837092, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":95858812, + "target":34962 + }, + { + "buffer":0, + "byteLength":14480, + "byteOffset":95880532, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":95895012, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":95895864, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":95896716, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95897284, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":95897332, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95897380, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":95897412, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":95897604, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":95897796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":95897924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":95899220, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":95900516, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":95901380, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":95902292, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":95903204, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":95903812, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":95904100, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":95904388, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":95904532, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":95904676, + "target":34962 + }, + { + "buffer":0, + "byteLength":99456, + "byteOffset":95904772, + "target":34962 + }, + { + "buffer":0, + "byteLength":99456, + "byteOffset":96004228, + "target":34962 + }, + { + "buffer":0, + "byteLength":66304, + "byteOffset":96103684, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":96169988, + "target":34963 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":96203108, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":96203960, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":96204812, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":96205380, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":96212244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":96219108, + "target":34963 + }, + { + "buffer":0, + "byteLength":12636, + "byteOffset":96221100, + "target":34962 + }, + { + "buffer":0, + "byteLength":12636, + "byteOffset":96233736, + "target":34962 + }, + { + "buffer":0, + "byteLength":8424, + "byteOffset":96246372, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":96254796, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":96257484, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":96260172, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":96277212, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":96294252, + "target":34962 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":96305612, + "target":34962 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":96309164, + "target":34962 + }, + { + "buffer":0, + "byteLength":2368, + "byteOffset":96312716, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":96315084, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":96322056, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":96329028, + "target":34963 + }, + { + "buffer":0, + "byteLength":97440, + "byteOffset":96331020, + "target":34962 + }, + { + "buffer":0, + "byteLength":97440, + "byteOffset":96428460, + "target":34962 + }, + { + "buffer":0, + "byteLength":64960, + "byteOffset":96525900, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":96590860, + "target":34963 + }, + { + "buffer":0, + "byteLength":96468, + "byteOffset":96623980, + "target":34962 + }, + { + "buffer":0, + "byteLength":96468, + "byteOffset":96720448, + "target":34962 + }, + { + "buffer":0, + "byteLength":64312, + "byteOffset":96816916, + "target":34962 + }, + { + "buffer":0, + "byteLength":9732, + "byteOffset":96881228, + "target":34962 + }, + { + "buffer":0, + "byteLength":9732, + "byteOffset":96890960, + "target":34962 + }, + { + "buffer":0, + "byteLength":6488, + "byteOffset":96900692, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":96907180, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":96907228, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":96907276, + "target":34962 + }, + { + "buffer":0, + "byteLength":2268, + "byteOffset":96907308, + "target":34962 + }, + { + "buffer":0, + "byteLength":2268, + "byteOffset":96909576, + "target":34962 + }, + { + "buffer":0, + "byteLength":1512, + "byteOffset":96911844, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":96913356, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":96933276, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":96953196, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":96966476, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":96969164, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":96971852, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":96972716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":96973580, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":96975044, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":96976508, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":96977484, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":96978396, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":96979308, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":96979916, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":96987332, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":96994748, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":96999692, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":97007468, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":97015244, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":97020428, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":97027484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":97034540, + "target":34963 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":97036532, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":97039916, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":97043300, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":97045556, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":97046168, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":97046780, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":97047188, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":97064228, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":97081268, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":97092628, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":97096084, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":97099540, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":97103740, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":97107940, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":97115020, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":97122100, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":97122676, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":97123252, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":97123636, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":97123684, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":97123732, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":97123764, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":97126548, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":97129332, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":97130316, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":97130364, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":97130412, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":97130444, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":97130732, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":97131020, + "target":34962 + }, + { + "buffer":0, + "byteLength":48744, + "byteOffset":97131212, + "target":34962 + }, + { + "buffer":0, + "byteLength":48744, + "byteOffset":97179956, + "target":34962 + }, + { + "buffer":0, + "byteLength":32496, + "byteOffset":97228700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":97261196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":97262468, + "target":34962 + }, + { + "buffer":0, + "byteLength":848, + "byteOffset":97263740, + "target":34962 + }, + { + "buffer":0, + "byteLength":96120, + "byteOffset":97264588, + "target":34962 + }, + { + "buffer":0, + "byteLength":96120, + "byteOffset":97360708, + "target":34962 + }, + { + "buffer":0, + "byteLength":64080, + "byteOffset":97456828, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":97520908, + "target":34963 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":97554028, + "target":34962 + }, + { + "buffer":0, + "byteLength":7164, + "byteOffset":97561192, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":97568356, + "target":34962 + }, + { + "buffer":0, + "byteLength":8976, + "byteOffset":97577332, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":97586308, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":97590484, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":97594660, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":97597444, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":97598884, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":97605772, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":97612660, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":97612852, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":97613044, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":97613172, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":97613220, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":97613268, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":97613300, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":97613912, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":97614524, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":97614932, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":97622012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":97629092, + "target":34963 + }, + { + "buffer":0, + "byteLength":6780, + "byteOffset":97631084, + "target":34962 + }, + { + "buffer":0, + "byteLength":6780, + "byteOffset":97637864, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":97644644, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":97644932, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":97645220, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":97645808, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":97646396, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":97646788, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":97648228, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":97649668, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":97650628, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":97651972, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":97653316, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":97660180, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":97667044, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":97669036, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":97676068, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":97683100, + "target":34963 + }, + { + "buffer":0, + "byteLength":97188, + "byteOffset":97685092, + "target":34962 + }, + { + "buffer":0, + "byteLength":97188, + "byteOffset":97782280, + "target":34962 + }, + { + "buffer":0, + "byteLength":64792, + "byteOffset":97879468, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":97944260, + "target":34962 + }, + { + "buffer":0, + "byteLength":2424, + "byteOffset":97946684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1616, + "byteOffset":97949108, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":97950724, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":97953100, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":97955476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1356, + "byteOffset":97957060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1356, + "byteOffset":97958416, + "target":34962 + }, + { + "buffer":0, + "byteLength":904, + "byteOffset":97959772, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":97960676, + "target":34963 + }, + { + "buffer":0, + "byteLength":2004, + "byteOffset":97961156, + "target":34962 + }, + { + "buffer":0, + "byteLength":2004, + "byteOffset":97963160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1336, + "byteOffset":97965164, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":97966500, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":97983540, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":98000580, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98011940, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98011988, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":98012036, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":98012068, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":98019196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":98026324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":98027956, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":98029588, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":98030676, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":98037492, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":98044308, + "target":34962 + }, + { + "buffer":0, + "byteLength":2856, + "byteOffset":98047164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1904, + "byteOffset":98050020, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98051924, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98051972, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":98052020, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":98052052, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":98059132, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":98066212, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":98068924, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":98071636, + "target":34963 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":98072620, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":98079700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":98086780, + "target":34963 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":98088772, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":98092648, + "target":34962 + }, + { + "buffer":0, + "byteLength":2584, + "byteOffset":98096524, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":98099108, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":98105900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":98112692, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":98114684, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":98115548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":98116412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":98117756, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98119100, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98119148, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":98119196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":98119228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":98120860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":98122492, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":98123580, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":98130444, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":98137308, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":98144364, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":98151420, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98153412, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98153460, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":98153508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":98153540, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":98155040, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":98156540, + "target":34962 + }, + { + "buffer":0, + "byteLength":3996, + "byteOffset":98157540, + "target":34962 + }, + { + "buffer":0, + "byteLength":3996, + "byteOffset":98161536, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":98165532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":98168196, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":98169636, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":98176524, + "target":34962 + }, + { + "buffer":0, + "byteLength":92988, + "byteOffset":98183412, + "target":34962 + }, + { + "buffer":0, + "byteLength":92988, + "byteOffset":98276400, + "target":34962 + }, + { + "buffer":0, + "byteLength":61992, + "byteOffset":98369388, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":98431380, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":98434092, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98436804, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98436852, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":98436900, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98436932, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98436980, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":98437028, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":98437060, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":98443948, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":98450836, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":98453560, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":98456284, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":98458100, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":98458388, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":98458676, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98458868, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98458916, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":98458964, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98458996, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98459044, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":98459092, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":98459124, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":98465868, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98472612, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98472660, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":98472708, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":98472740, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":98473028, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":98473316, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":98473508, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":98473796, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98474084, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98474132, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":98474180, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98474212, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98474260, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":98474308, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":98474340, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":98481324, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":98488308, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":98492412, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":98496516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":98499252, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":98500692, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":98500980, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":98501268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":98501460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":98502960, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":98504460, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98505460, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98505508, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":98505556, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":98505588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":98506692, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":98507796, + "target":34962 + }, + { + "buffer":0, + "byteLength":99444, + "byteOffset":98508532, + "target":34962 + }, + { + "buffer":0, + "byteLength":99444, + "byteOffset":98607976, + "target":34962 + }, + { + "buffer":0, + "byteLength":66296, + "byteOffset":98707420, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":98773716, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98806836, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98806884, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":98806932, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":98806964, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":98813924, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":98820884, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":98821472, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":98822060, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":98822452, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":98829532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":98836612, + "target":34963 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":98838604, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":98845324, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":98852044, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":98869084, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":98886124, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":98897484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":98898984, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":98900484, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98901484, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98901532, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":98901580, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":98901612, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":98908644, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":98915676, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98917668, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":98917716, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":98917764, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":98917796, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":98918468, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":98919140, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":98919588, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":98920500, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":98921412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":98922020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":98923316, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":98924612, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":98925476, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":98925956, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":98932868, + "target":34962 + }, + { + "buffer":0, + "byteLength":98232, + "byteOffset":98939780, + "target":34962 + }, + { + "buffer":0, + "byteLength":98232, + "byteOffset":99038012, + "target":34962 + }, + { + "buffer":0, + "byteLength":65488, + "byteOffset":99136244, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":99201732, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":99202584, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":99203436, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":99204004, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":99211180, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":99218356, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":99225268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":99232180, + "target":34963 + }, + { + "buffer":0, + "byteLength":888, + "byteOffset":99234172, + "target":34962 + }, + { + "buffer":0, + "byteLength":888, + "byteOffset":99235060, + "target":34962 + }, + { + "buffer":0, + "byteLength":592, + "byteOffset":99235948, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":99236540, + "target":34963 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":99236804, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":99243140, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":99249476, + "target":34962 + }, + { + "buffer":0, + "byteLength":5400, + "byteOffset":99253700, + "target":34962 + }, + { + "buffer":0, + "byteLength":5400, + "byteOffset":99259100, + "target":34962 + }, + { + "buffer":0, + "byteLength":3600, + "byteOffset":99264500, + "target":34962 + }, + { + "buffer":0, + "byteLength":12276, + "byteOffset":99268100, + "target":34962 + }, + { + "buffer":0, + "byteLength":12276, + "byteOffset":99280376, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":99292652, + "target":34962 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":99300836, + "target":34962 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":99310616, + "target":34962 + }, + { + "buffer":0, + "byteLength":6520, + "byteOffset":99320396, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":99326916, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":99327780, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":99328644, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":99328692, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":99328740, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":99328772, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":99329060, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":99329348, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":99329540, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":99349460, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":99369380, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":99382660, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":99389368, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":99396076, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":99400548, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":99404580, + "target":34962 + }, + { + "buffer":0, + "byteLength":6852, + "byteOffset":99408612, + "target":34962 + }, + { + "buffer":0, + "byteLength":6852, + "byteOffset":99415464, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":99422316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":99423468, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":99424620, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":99425388, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":99426300, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":99427212, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":99427820, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":99431204, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":99434588, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":99436844, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":99437564, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":99438284, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":99438764, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":99442796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":99446828, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":99448148, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":99448436, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":99448724, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":99448916, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":99451724, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":99454532, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":99461564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1872, + "byteOffset":99468596, + "target":34962 + }, + { + "buffer":0, + "byteLength":1872, + "byteOffset":99470468, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":99472340, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":99472628, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":99472916, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":99473108, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":99473156, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":99473204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":99473236, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":99474580, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":99475924, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":99476788, + "target":34962 + }, + { + "buffer":0, + "byteLength":13836, + "byteOffset":99477652, + "target":34962 + }, + { + "buffer":0, + "byteLength":13836, + "byteOffset":99491488, + "target":34962 + }, + { + "buffer":0, + "byteLength":9224, + "byteOffset":99505324, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":99514548, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":99521436, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":99528324, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":99535428, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":99542532, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":99542580, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":99542628, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":99542660, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":99546836, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":99551012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":99553796, + "target":34963 + }, + { + "buffer":0, + "byteLength":8352, + "byteOffset":99555236, + "target":34962 + }, + { + "buffer":0, + "byteLength":8352, + "byteOffset":99563588, + "target":34962 + }, + { + "buffer":0, + "byteLength":5568, + "byteOffset":99571940, + "target":34962 + }, + { + "buffer":0, + "byteLength":1392, + "byteOffset":99577508, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":99578900, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":99578948, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":99578996, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":99579028, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":99579640, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":99580252, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":99580660, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":99587500, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":99594340, + "target":34963 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":99596332, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":99596524, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":99596716, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":99596844, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":99603792, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":99610740, + "target":34963 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":99612732, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":99615444, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":99618156, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":99620532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":99622908, + "target":34962 + }, + { + "buffer":0, + "byteLength":9576, + "byteOffset":99624492, + "target":34962 + }, + { + "buffer":0, + "byteLength":9576, + "byteOffset":99634068, + "target":34962 + }, + { + "buffer":0, + "byteLength":6384, + "byteOffset":99643644, + "target":34962 + }, + { + "buffer":0, + "byteLength":2244, + "byteOffset":99650028, + "target":34962 + }, + { + "buffer":0, + "byteLength":2244, + "byteOffset":99652272, + "target":34962 + }, + { + "buffer":0, + "byteLength":1496, + "byteOffset":99654516, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":99656012, + "target":34963 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":99656732, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":99668972, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":99681212, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":99689372, + "target":34962 + }, + { + "buffer":0, + "byteLength":6948, + "byteOffset":99696320, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":99703268, + "target":34963 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":99705260, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":99712280, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":99719300, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":99721292, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":99721580, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":99721868, + "target":34962 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":99722060, + "target":34962 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":99725972, + "target":34962 + }, + { + "buffer":0, + "byteLength":2608, + "byteOffset":99729884, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":99732492, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":99733932, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":99733980, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":99734028, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":99734060, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":99751100, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":99768140, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":99779500, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":99786316, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":99793132, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":99794044, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":99794956, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":99795564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":99797196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":99798828, + "target":34962 + }, + { + "buffer":0, + "byteLength":2772, + "byteOffset":99799916, + "target":34962 + }, + { + "buffer":0, + "byteLength":2772, + "byteOffset":99802688, + "target":34962 + }, + { + "buffer":0, + "byteLength":1848, + "byteOffset":99805460, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":99807308, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":99807356, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":99807404, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":99807436, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":99811612, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":99815788, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":99818572, + "target":34963 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":99820012, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":99827188, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":99834364, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":99841444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":99848524, + "target":34963 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":99850516, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":99857692, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":99864868, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":99864916, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":99864964, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":99864996, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":99871704, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":99878412, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":99882884, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":99883172, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":99883460, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":99883748, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":99884036, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":99884228, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":99884276, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":99884324, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":99884356, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":99892132, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":99899908, + "target":34962 + }, + { + "buffer":0, + "byteLength":92688, + "byteOffset":99905092, + "target":34962 + }, + { + "buffer":0, + "byteLength":92688, + "byteOffset":99997780, + "target":34962 + }, + { + "buffer":0, + "byteLength":61792, + "byteOffset":100090468, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":100152260, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":100159364, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":100166468, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100168460, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100168508, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":100168556, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":100168588, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":100171312, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":100174036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":100175852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":100176908, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":100177964, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100178668, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100178956, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":100179244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":100179436, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":100180780, + "target":34962 + }, + { + "buffer":0, + "byteLength":2964, + "byteOffset":100182124, + "target":34962 + }, + { + "buffer":0, + "byteLength":2964, + "byteOffset":100185088, + "target":34962 + }, + { + "buffer":0, + "byteLength":1976, + "byteOffset":100188052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":100190028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":100191492, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":100192956, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":100193932, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":100200796, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":100207660, + "target":34962 + }, + { + "buffer":0, + "byteLength":12576, + "byteOffset":100220236, + "target":34962 + }, + { + "buffer":0, + "byteLength":8384, + "byteOffset":100232812, + "target":34962 + }, + { + "buffer":0, + "byteLength":3312, + "byteOffset":100241196, + "target":34962 + }, + { + "buffer":0, + "byteLength":3312, + "byteOffset":100244508, + "target":34962 + }, + { + "buffer":0, + "byteLength":2208, + "byteOffset":100247820, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":100250028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1428, + "byteOffset":100251456, + "target":34962 + }, + { + "buffer":0, + "byteLength":952, + "byteOffset":100252884, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":100253836, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":100257292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":100260748, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":100261924, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100263100, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100263148, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":100263196, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":100263228, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":100265952, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":100268676, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":100270492, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":100273276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1856, + "byteOffset":100276060, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100277916, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100277964, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":100278012, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":100278044, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":100278644, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":100279244, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100279644, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100279932, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":100280220, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100280412, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100280460, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":100280508, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100280540, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100280828, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":100281116, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":100281308, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":100288328, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":100295348, + "target":34963 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":100297340, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":100297820, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":100298300, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":100298620, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":100299964, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":100301308, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":100308244, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":100315180, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":100323076, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":100330972, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100336236, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100336284, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":100336332, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100336364, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100336412, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":100336460, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100336492, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100336780, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100337068, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100337116, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":100337164, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":100337196, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":100344252, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":100351308, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":100355460, + "target":34962 + }, + { + "buffer":0, + "byteLength":2768, + "byteOffset":100359612, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":100362380, + "target":34963 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":100363820, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":100365164, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":100366508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":100367404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":100369108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":100370812, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100371948, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100371996, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":100372044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":100372076, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":100373228, + "target":34962 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":100374380, + "target":34962 + }, + { + "buffer":0, + "byteLength":7224, + "byteOffset":100381604, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":100388828, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":100395980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":100403132, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":100405124, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":100406036, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":100406948, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100407556, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100407604, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":100407652, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":100407684, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":100408260, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":100408836, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":100409220, + "target":34962 + }, + { + "buffer":0, + "byteLength":12240, + "byteOffset":100421460, + "target":34962 + }, + { + "buffer":0, + "byteLength":8160, + "byteOffset":100433700, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":100441860, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":100448988, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":100456116, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":100462956, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":100469796, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":100471788, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":100478700, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":100485612, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":100489716, + "target":34962 + }, + { + "buffer":0, + "byteLength":15960, + "byteOffset":100493820, + "target":34962 + }, + { + "buffer":0, + "byteLength":15960, + "byteOffset":100509780, + "target":34962 + }, + { + "buffer":0, + "byteLength":10640, + "byteOffset":100525740, + "target":34962 + }, + { + "buffer":0, + "byteLength":5040, + "byteOffset":100536380, + "target":34963 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":100541420, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":100548548, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":100555676, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":100562588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":100569500, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":100571492, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":100572404, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":100573316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":100573924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":100575268, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":100576612, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":100577508, + "target":34963 + }, + { + "buffer":0, + "byteLength":3360, + "byteOffset":100577988, + "target":34962 + }, + { + "buffer":0, + "byteLength":3360, + "byteOffset":100581348, + "target":34962 + }, + { + "buffer":0, + "byteLength":2240, + "byteOffset":100584708, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":100586948, + "target":34963 + }, + { + "buffer":0, + "byteLength":2160, + "byteOffset":100588556, + "target":34962 + }, + { + "buffer":0, + "byteLength":2160, + "byteOffset":100590716, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":100592876, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":100594316, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":100594988, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":100595660, + "target":34962 + }, + { + "buffer":0, + "byteLength":14976, + "byteOffset":100596108, + "target":34962 + }, + { + "buffer":0, + "byteLength":14976, + "byteOffset":100611084, + "target":34962 + }, + { + "buffer":0, + "byteLength":9984, + "byteOffset":100626060, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":100636044, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":100636764, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":100637484, + "target":34962 + }, + { + "buffer":0, + "byteLength":12252, + "byteOffset":100637964, + "target":34962 + }, + { + "buffer":0, + "byteLength":12252, + "byteOffset":100650216, + "target":34962 + }, + { + "buffer":0, + "byteLength":8168, + "byteOffset":100662468, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":100670636, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":100675436, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":100682444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":100689452, + "target":34963 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":100691444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":100692764, + "target":34962 + }, + { + "buffer":0, + "byteLength":880, + "byteOffset":100694084, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":100694964, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":100695684, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":100696404, + "target":34962 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":100696884, + "target":34962 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":100709400, + "target":34962 + }, + { + "buffer":0, + "byteLength":8344, + "byteOffset":100721916, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100730260, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100730548, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":100730836, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":100731028, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":100737892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":100744756, + "target":34963 + }, + { + "buffer":0, + "byteLength":8352, + "byteOffset":100746748, + "target":34962 + }, + { + "buffer":0, + "byteLength":8352, + "byteOffset":100755100, + "target":34962 + }, + { + "buffer":0, + "byteLength":5568, + "byteOffset":100763452, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":100769020, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":100776916, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":100784812, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":100790076, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":100809996, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":100829916, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":100843196, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":100850216, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":100857236, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":100859924, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100862612, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100862900, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":100863188, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":100863380, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":100865204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1216, + "byteOffset":100867028, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":100868244, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":100876140, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":100884036, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":100889300, + "target":34962 + }, + { + "buffer":0, + "byteLength":6924, + "byteOffset":100896224, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100903148, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100903196, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":100903244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1872, + "byteOffset":100903276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1872, + "byteOffset":100905148, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":100907020, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":100913956, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100920892, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100921180, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":100921468, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100921660, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100921948, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":100922236, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":100922428, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":100923148, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":100923868, + "target":34962 + }, + { + "buffer":0, + "byteLength":1248, + "byteOffset":100924348, + "target":34962 + }, + { + "buffer":0, + "byteLength":1248, + "byteOffset":100925596, + "target":34962 + }, + { + "buffer":0, + "byteLength":832, + "byteOffset":100926844, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100927676, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100927964, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":100928252, + "target":34962 + }, + { + "buffer":0, + "byteLength":1764, + "byteOffset":100928444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1764, + "byteOffset":100930208, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":100931972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":100933148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":100934492, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":100935836, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":100936988, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":100938140, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":100945028, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100951916, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":100952204, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":100952492, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":100952684, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":100956860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1140, + "byteOffset":100961036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1140, + "byteOffset":100962176, + "target":34962 + }, + { + "buffer":0, + "byteLength":760, + "byteOffset":100963316, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":100964076, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":100971228, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100978380, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":100978428, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":100978476, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":100978508, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":100982708, + "target":34962 + }, + { + "buffer":0, + "byteLength":2800, + "byteOffset":100986908, + "target":34962 + }, + { + "buffer":0, + "byteLength":8352, + "byteOffset":100989708, + "target":34962 + }, + { + "buffer":0, + "byteLength":8352, + "byteOffset":100998060, + "target":34962 + }, + { + "buffer":0, + "byteLength":5568, + "byteOffset":101006412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1392, + "byteOffset":101011980, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":101013372, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":101013420, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":101013468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":101013500, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":101020460, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":101027420, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":101029412, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":101036444, + "target":34962 + }, + { + "buffer":0, + "byteLength":2352, + "byteOffset":101043476, + "target":34962 + }, + { + "buffer":0, + "byteLength":2352, + "byteOffset":101045828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1568, + "byteOffset":101048180, + "target":34962 + }, + { + "buffer":0, + "byteLength":780, + "byteOffset":101049748, + "target":34963 + }, + { + "buffer":0, + "byteLength":8352, + "byteOffset":101050528, + "target":34962 + }, + { + "buffer":0, + "byteLength":8352, + "byteOffset":101058880, + "target":34962 + }, + { + "buffer":0, + "byteLength":5568, + "byteOffset":101067232, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":101072800, + "target":34962 + }, + { + "buffer":0, + "byteLength":6876, + "byteOffset":101079676, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":101086552, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":101087464, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":101088376, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":101088984, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":101095944, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":101102904, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":101103624, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":101104344, + "target":34962 + }, + { + "buffer":0, + "byteLength":9564, + "byteOffset":101104824, + "target":34962 + }, + { + "buffer":0, + "byteLength":9564, + "byteOffset":101114388, + "target":34962 + }, + { + "buffer":0, + "byteLength":6376, + "byteOffset":101123952, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":101130328, + "target":34963 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":101132872, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":101140060, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":101147248, + "target":34963 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":101149240, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":101156344, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":101163448, + "target":34962 + }, + { + "buffer":0, + "byteLength":4116, + "byteOffset":101167564, + "target":34962 + }, + { + "buffer":0, + "byteLength":2744, + "byteOffset":101171680, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":101174424, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":101175864, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":101192904, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":101209944, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":101221304, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":101228312, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":101235320, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":101236424, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":101237528, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":101238264, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":101245152, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":101252040, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":101254032, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":101254944, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":101255856, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":101256464, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":101263640, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":101270816, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":101277632, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":101284448, + "target":34962 + }, + { + "buffer":0, + "byteLength":6972, + "byteOffset":101291420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":101298392, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":101300384, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":101300432, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":101300480, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":101300512, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":101307520, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":101314528, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":101321608, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":101328688, + "target":34963 + }, + { + "buffer":0, + "byteLength":4188, + "byteOffset":101330680, + "target":34962 + }, + { + "buffer":0, + "byteLength":4188, + "byteOffset":101334868, + "target":34962 + }, + { + "buffer":0, + "byteLength":2792, + "byteOffset":101339056, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":101341848, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":101343288, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":101360328, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":101377368, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":101388728, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":101389448, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":101390168, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":101390648, + "target":34962 + }, + { + "buffer":0, + "byteLength":2832, + "byteOffset":101393480, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":101396312, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":101396600, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":101396888, + "target":34962 + }, + { + "buffer":0, + "byteLength":1476, + "byteOffset":101397080, + "target":34962 + }, + { + "buffer":0, + "byteLength":1476, + "byteOffset":101398556, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":101400032, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":101401016, + "target":34963 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":101401496, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":101405600, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":101409704, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":101412440, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":101413880, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":101413928, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":101413976, + "target":34962 + }, + { + "buffer":0, + "byteLength":93588, + "byteOffset":101414008, + "target":34962 + }, + { + "buffer":0, + "byteLength":93588, + "byteOffset":101507596, + "target":34962 + }, + { + "buffer":0, + "byteLength":62392, + "byteOffset":101601184, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":101663576, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":101670416, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":101677256, + "target":34963 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":101679248, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":101681792, + "target":34962 + }, + { + "buffer":0, + "byteLength":1696, + "byteOffset":101684336, + "target":34962 + }, + { + "buffer":0, + "byteLength":1896, + "byteOffset":101686032, + "target":34962 + }, + { + "buffer":0, + "byteLength":1896, + "byteOffset":101687928, + "target":34962 + }, + { + "buffer":0, + "byteLength":1264, + "byteOffset":101689824, + "target":34962 + }, + { + "buffer":0, + "byteLength":39192, + "byteOffset":101691088, + "target":34962 + }, + { + "buffer":0, + "byteLength":39192, + "byteOffset":101730280, + "target":34962 + }, + { + "buffer":0, + "byteLength":26128, + "byteOffset":101769472, + "target":34962 + }, + { + "buffer":0, + "byteLength":10944, + "byteOffset":101795600, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":101806544, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":101806592, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":101806640, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":101806672, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":101813488, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":101820304, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":101827324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":101834344, + "target":34963 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":101836336, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":101843392, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":101850448, + "target":34963 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":101852440, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":101859016, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":101865592, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":101869976, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":101871728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":101873480, + "target":34962 + }, + { + "buffer":0, + "byteLength":1620, + "byteOffset":101874648, + "target":34962 + }, + { + "buffer":0, + "byteLength":1620, + "byteOffset":101876268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1080, + "byteOffset":101877888, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":101878968, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":101879016, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":101879064, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":101879096, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":101884280, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":101889464, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":101892920, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":101893064, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":101893208, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":101893304, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":101893352, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":101893400, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":101893432, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":101893480, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":101893528, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":101893560, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":101893848, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":101894136, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":101894328, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":101894880, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":101895432, + "target":34962 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":101895800, + "target":34962 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":101905580, + "target":34962 + }, + { + "buffer":0, + "byteLength":6520, + "byteOffset":101915360, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":101921880, + "target":34963 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":101924424, + "target":34962 + }, + { + "buffer":0, + "byteLength":7068, + "byteOffset":101931492, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":101938560, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":101938848, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":101939136, + "target":34962 + }, + { + "buffer":0, + "byteLength":16536, + "byteOffset":101939328, + "target":34962 + }, + { + "buffer":0, + "byteLength":16536, + "byteOffset":101955864, + "target":34962 + }, + { + "buffer":0, + "byteLength":11024, + "byteOffset":101972400, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":101983424, + "target":34963 + }, + { + "buffer":0, + "byteLength":16416, + "byteOffset":101991704, + "target":34962 + }, + { + "buffer":0, + "byteLength":16416, + "byteOffset":102008120, + "target":34962 + }, + { + "buffer":0, + "byteLength":10944, + "byteOffset":102024536, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":102035480, + "target":34963 + }, + { + "buffer":0, + "byteLength":16536, + "byteOffset":102043760, + "target":34962 + }, + { + "buffer":0, + "byteLength":16536, + "byteOffset":102060296, + "target":34962 + }, + { + "buffer":0, + "byteLength":11024, + "byteOffset":102076832, + "target":34962 + }, + { + "buffer":0, + "byteLength":16416, + "byteOffset":102087856, + "target":34962 + }, + { + "buffer":0, + "byteLength":16416, + "byteOffset":102104272, + "target":34962 + }, + { + "buffer":0, + "byteLength":10944, + "byteOffset":102120688, + "target":34962 + }, + { + "buffer":0, + "byteLength":36876, + "byteOffset":102131632, + "target":34962 + }, + { + "buffer":0, + "byteLength":36876, + "byteOffset":102168508, + "target":34962 + }, + { + "buffer":0, + "byteLength":24584, + "byteOffset":102205384, + "target":34962 + }, + { + "buffer":0, + "byteLength":28224, + "byteOffset":102229968, + "target":34963 + }, + { + "buffer":0, + "byteLength":36876, + "byteOffset":102258192, + "target":34962 + }, + { + "buffer":0, + "byteLength":36876, + "byteOffset":102295068, + "target":34962 + }, + { + "buffer":0, + "byteLength":24584, + "byteOffset":102331944, + "target":34962 + }, + { + "buffer":0, + "byteLength":36876, + "byteOffset":102356528, + "target":34962 + }, + { + "buffer":0, + "byteLength":36876, + "byteOffset":102393404, + "target":34962 + }, + { + "buffer":0, + "byteLength":24584, + "byteOffset":102430280, + "target":34962 + }, + { + "buffer":0, + "byteLength":36876, + "byteOffset":102454864, + "target":34962 + }, + { + "buffer":0, + "byteLength":36876, + "byteOffset":102491740, + "target":34962 + }, + { + "buffer":0, + "byteLength":24584, + "byteOffset":102528616, + "target":34962 + }, + { + "buffer":0, + "byteLength":7824, + "byteOffset":102553200, + "target":34962 + }, + { + "buffer":0, + "byteLength":7824, + "byteOffset":102561024, + "target":34962 + }, + { + "buffer":0, + "byteLength":5216, + "byteOffset":102568848, + "target":34962 + }, + { + "buffer":0, + "byteLength":3600, + "byteOffset":102574064, + "target":34963 + }, + { + "buffer":0, + "byteLength":7752, + "byteOffset":102577664, + "target":34962 + }, + { + "buffer":0, + "byteLength":7752, + "byteOffset":102585416, + "target":34962 + }, + { + "buffer":0, + "byteLength":5168, + "byteOffset":102593168, + "target":34962 + }, + { + "buffer":0, + "byteLength":3600, + "byteOffset":102598336, + "target":34963 + }, + { + "buffer":0, + "byteLength":11016, + "byteOffset":102601936, + "target":34962 + }, + { + "buffer":0, + "byteLength":11016, + "byteOffset":102612952, + "target":34962 + }, + { + "buffer":0, + "byteLength":7344, + "byteOffset":102623968, + "target":34962 + }, + { + "buffer":0, + "byteLength":5040, + "byteOffset":102631312, + "target":34963 + }, + { + "buffer":0, + "byteLength":10920, + "byteOffset":102636352, + "target":34962 + }, + { + "buffer":0, + "byteLength":10920, + "byteOffset":102647272, + "target":34962 + }, + { + "buffer":0, + "byteLength":7280, + "byteOffset":102658192, + "target":34962 + }, + { + "buffer":0, + "byteLength":5040, + "byteOffset":102665472, + "target":34963 + }, + { + "buffer":0, + "byteLength":126912, + "byteOffset":102670512, + "target":34962 + }, + { + "buffer":0, + "byteLength":126912, + "byteOffset":102797424, + "target":34962 + }, + { + "buffer":0, + "byteLength":84608, + "byteOffset":102924336, + "target":34962 + }, + { + "buffer":0, + "byteLength":123120, + "byteOffset":103008944, + "target":34963 + }, + { + "buffer":0, + "byteLength":126912, + "byteOffset":103132064, + "target":34962 + }, + { + "buffer":0, + "byteLength":126912, + "byteOffset":103258976, + "target":34962 + }, + { + "buffer":0, + "byteLength":84608, + "byteOffset":103385888, + "target":34962 + }, + { + "buffer":0, + "byteLength":126912, + "byteOffset":103470496, + "target":34962 + }, + { + "buffer":0, + "byteLength":126912, + "byteOffset":103597408, + "target":34962 + }, + { + "buffer":0, + "byteLength":84608, + "byteOffset":103724320, + "target":34962 + }, + { + "buffer":0, + "byteLength":126912, + "byteOffset":103808928, + "target":34962 + }, + { + "buffer":0, + "byteLength":126912, + "byteOffset":103935840, + "target":34962 + }, + { + "buffer":0, + "byteLength":84608, + "byteOffset":104062752, + "target":34962 + }, + { + "buffer":0, + "byteLength":13524, + "byteOffset":104147360, + "target":34962 + }, + { + "buffer":0, + "byteLength":13524, + "byteOffset":104160884, + "target":34962 + }, + { + "buffer":0, + "byteLength":9016, + "byteOffset":104174408, + "target":34962 + }, + { + "buffer":0, + "byteLength":12720, + "byteOffset":104183424, + "target":34963 + }, + { + "buffer":0, + "byteLength":13524, + "byteOffset":104196144, + "target":34962 + }, + { + "buffer":0, + "byteLength":13524, + "byteOffset":104209668, + "target":34962 + }, + { + "buffer":0, + "byteLength":9016, + "byteOffset":104223192, + "target":34962 + }, + { + "buffer":0, + "byteLength":13524, + "byteOffset":104232208, + "target":34962 + }, + { + "buffer":0, + "byteLength":13524, + "byteOffset":104245732, + "target":34962 + }, + { + "buffer":0, + "byteLength":9016, + "byteOffset":104259256, + "target":34962 + }, + { + "buffer":0, + "byteLength":13524, + "byteOffset":104268272, + "target":34962 + }, + { + "buffer":0, + "byteLength":13524, + "byteOffset":104281796, + "target":34962 + }, + { + "buffer":0, + "byteLength":9016, + "byteOffset":104295320, + "target":34962 + }, + { + "buffer":0, + "byteLength":225336, + "byteOffset":104304336, + "target":34962 + }, + { + "buffer":0, + "byteLength":225336, + "byteOffset":104529672, + "target":34962 + }, + { + "buffer":0, + "byteLength":150224, + "byteOffset":104755008, + "target":34962 + }, + { + "buffer":0, + "byteLength":89760, + "byteOffset":104905232, + "target":34963 + }, + { + "buffer":0, + "byteLength":225036, + "byteOffset":104994992, + "target":34962 + }, + { + "buffer":0, + "byteLength":225036, + "byteOffset":105220028, + "target":34962 + }, + { + "buffer":0, + "byteLength":150024, + "byteOffset":105445064, + "target":34962 + }, + { + "buffer":0, + "byteLength":89760, + "byteOffset":105595088, + "target":34963 + }, + { + "buffer":0, + "byteLength":225048, + "byteOffset":105684848, + "target":34962 + }, + { + "buffer":0, + "byteLength":225048, + "byteOffset":105909896, + "target":34962 + }, + { + "buffer":0, + "byteLength":150032, + "byteOffset":106134944, + "target":34962 + }, + { + "buffer":0, + "byteLength":89760, + "byteOffset":106284976, + "target":34963 + }, + { + "buffer":0, + "byteLength":225336, + "byteOffset":106374736, + "target":34962 + }, + { + "buffer":0, + "byteLength":225336, + "byteOffset":106600072, + "target":34962 + }, + { + "buffer":0, + "byteLength":150224, + "byteOffset":106825408, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":106975632, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":106975920, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":106976208, + "target":34963 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":106976280, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":106983432, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":106990584, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":106993308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":106996032, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":106997848, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":106997896, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":106997944, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":106997976, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":106998576, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":106999176, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":106999576, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":106999864, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107000152, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107000200, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":107000248, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107000280, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107000328, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":107000376, + "target":34962 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":107000408, + "target":34962 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":107004320, + "target":34962 + }, + { + "buffer":0, + "byteLength":2608, + "byteOffset":107008232, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":107010840, + "target":34963 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":107012280, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":107016456, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":107020632, + "target":34962 + }, + { + "buffer":0, + "byteLength":1404, + "byteOffset":107023416, + "target":34962 + }, + { + "buffer":0, + "byteLength":1404, + "byteOffset":107024820, + "target":34962 + }, + { + "buffer":0, + "byteLength":936, + "byteOffset":107026224, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":107027160, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":107027640, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":107034672, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":107041704, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":107048280, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":107054856, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":107059240, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":107066152, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":107073064, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":107076184, + "target":34962 + }, + { + "buffer":0, + "byteLength":2080, + "byteOffset":107079304, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107081384, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107081432, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":107081480, + "target":34962 + }, + { + "buffer":0, + "byteLength":78264, + "byteOffset":107081512, + "target":34962 + }, + { + "buffer":0, + "byteLength":78264, + "byteOffset":107159776, + "target":34962 + }, + { + "buffer":0, + "byteLength":52176, + "byteOffset":107238040, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107290216, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107290264, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":107290312, + "target":34962 + }, + { + "buffer":0, + "byteLength":9492, + "byteOffset":107290344, + "target":34962 + }, + { + "buffer":0, + "byteLength":9492, + "byteOffset":107299836, + "target":34962 + }, + { + "buffer":0, + "byteLength":6328, + "byteOffset":107309328, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":107315656, + "target":34963 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":107318200, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":107318788, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":107319376, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":107319768, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":107325624, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":107331480, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":107335384, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":107341960, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":107348536, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":107352920, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":107359880, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":107366840, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":107383880, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":107400920, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":107412280, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":107419192, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":107426104, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":107428096, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":107429008, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":107429920, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":107430528, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":107437560, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":107444592, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":107446536, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":107448480, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":107449776, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":107450064, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":107450352, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":107450544, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":107457384, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":107464224, + "target":34963 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":107466216, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":107470296, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":107474376, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":107481384, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":107488392, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":107489304, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":107490216, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107490824, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107490872, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":107490920, + "target":34962 + }, + { + "buffer":0, + "byteLength":95892, + "byteOffset":107490952, + "target":34962 + }, + { + "buffer":0, + "byteLength":95892, + "byteOffset":107586844, + "target":34962 + }, + { + "buffer":0, + "byteLength":63928, + "byteOffset":107682736, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":107746664, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":107753672, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":107760680, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":107762672, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":107763392, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":107764112, + "target":34962 + }, + { + "buffer":0, + "byteLength":1668, + "byteOffset":107764592, + "target":34962 + }, + { + "buffer":0, + "byteLength":1668, + "byteOffset":107766260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1112, + "byteOffset":107767928, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":107769040, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":107769520, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":107776528, + "target":34962 + }, + { + "buffer":0, + "byteLength":9828, + "byteOffset":107783536, + "target":34962 + }, + { + "buffer":0, + "byteLength":9828, + "byteOffset":107793364, + "target":34962 + }, + { + "buffer":0, + "byteLength":6552, + "byteOffset":107803192, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":107809744, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":107811376, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":107813008, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":107814096, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":107821080, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":107828064, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":107830056, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":107830776, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":107831496, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107831976, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107832024, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":107832072, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":107832104, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":107852024, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":107871944, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":107885224, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":107889304, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":107893384, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":107894248, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":107895112, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":107895400, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":107895688, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":107902768, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":107909848, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107911840, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107911888, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":107911936, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":107911968, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":107919744, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":107927520, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":107932704, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":107939808, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107946912, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107946960, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":107947008, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107947040, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":107947088, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":107947136, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":107947168, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":107948320, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":107949472, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":107949760, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":107950048, + "target":34962 + }, + { + "buffer":0, + "byteLength":32616, + "byteOffset":107950240, + "target":34962 + }, + { + "buffer":0, + "byteLength":32616, + "byteOffset":107982856, + "target":34962 + }, + { + "buffer":0, + "byteLength":21744, + "byteOffset":108015472, + "target":34962 + }, + { + "buffer":0, + "byteLength":9600, + "byteOffset":108037216, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108046816, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108046864, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":108046912, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":108046944, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":108066864, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":108086784, + "target":34962 + }, + { + "buffer":0, + "byteLength":9120, + "byteOffset":108100064, + "target":34962 + }, + { + "buffer":0, + "byteLength":9120, + "byteOffset":108109184, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":108118304, + "target":34963 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":108120968, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":108121688, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":108122408, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":108122888, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":108123176, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":108123464, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":108123656, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":108124832, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":108126008, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":108126792, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":108127512, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":108128232, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108128712, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108128760, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":108128808, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":108128840, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":108128984, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":108129128, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":108129224, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":108136112, + "target":34962 + }, + { + "buffer":0, + "byteLength":4188, + "byteOffset":108143000, + "target":34962 + }, + { + "buffer":0, + "byteLength":4188, + "byteOffset":108147188, + "target":34962 + }, + { + "buffer":0, + "byteLength":2792, + "byteOffset":108151376, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":108154168, + "target":34963 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":108155608, + "target":34962 + }, + { + "buffer":0, + "byteLength":8280, + "byteOffset":108163888, + "target":34962 + }, + { + "buffer":0, + "byteLength":5520, + "byteOffset":108172168, + "target":34962 + }, + { + "buffer":0, + "byteLength":1380, + "byteOffset":108177688, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108179068, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108179116, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":108179164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":108179196, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":108180948, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":108182700, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":108183868, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":108190804, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":108197740, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":108198652, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":108199564, + "target":34962 + }, + { + "buffer":0, + "byteLength":4236, + "byteOffset":108200172, + "target":34962 + }, + { + "buffer":0, + "byteLength":4236, + "byteOffset":108204408, + "target":34962 + }, + { + "buffer":0, + "byteLength":2824, + "byteOffset":108208644, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":108211468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":108218404, + "target":34962 + }, + { + "buffer":0, + "byteLength":2316, + "byteOffset":108225340, + "target":34962 + }, + { + "buffer":0, + "byteLength":2316, + "byteOffset":108227656, + "target":34962 + }, + { + "buffer":0, + "byteLength":1544, + "byteOffset":108229972, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":108231516, + "target":34963 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":108232188, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":108239124, + "target":34962 + }, + { + "buffer":0, + "byteLength":8328, + "byteOffset":108246060, + "target":34962 + }, + { + "buffer":0, + "byteLength":8328, + "byteOffset":108254388, + "target":34962 + }, + { + "buffer":0, + "byteLength":5552, + "byteOffset":108262716, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108268268, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108268316, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":108268364, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":108268396, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":108268684, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":108268972, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":108269164, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":108275884, + "target":34962 + }, + { + "buffer":0, + "byteLength":4480, + "byteOffset":108282604, + "target":34962 + }, + { + "buffer":0, + "byteLength":3264, + "byteOffset":108287084, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":108290348, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":108297380, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":108304412, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":108306404, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":108313316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":108320228, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":108322220, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":108322508, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":108322796, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":108322988, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":108340028, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":108357068, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":108368428, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":108375460, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":108382492, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":108404212, + "target":34962 + }, + { + "buffer":0, + "byteLength":14480, + "byteOffset":108425932, + "target":34962 + }, + { + "buffer":0, + "byteLength":3000, + "byteOffset":108440412, + "target":34962 + }, + { + "buffer":0, + "byteLength":3000, + "byteOffset":108443412, + "target":34962 + }, + { + "buffer":0, + "byteLength":2000, + "byteOffset":108446412, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":108448412, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":108449084, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":108449756, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108450204, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108450252, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":108450300, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":108450332, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":108453716, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":108457100, + "target":34962 + }, + { + "buffer":0, + "byteLength":8244, + "byteOffset":108459356, + "target":34962 + }, + { + "buffer":0, + "byteLength":8244, + "byteOffset":108467600, + "target":34962 + }, + { + "buffer":0, + "byteLength":1248, + "byteOffset":108475844, + "target":34962 + }, + { + "buffer":0, + "byteLength":1248, + "byteOffset":108477092, + "target":34962 + }, + { + "buffer":0, + "byteLength":832, + "byteOffset":108478340, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":108479172, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":108480036, + "target":34962 + }, + { + "buffer":0, + "byteLength":4212, + "byteOffset":108480900, + "target":34962 + }, + { + "buffer":0, + "byteLength":4212, + "byteOffset":108485112, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":108489324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":108492132, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108493572, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108493620, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":108493668, + "target":34962 + }, + { + "buffer":0, + "byteLength":12612, + "byteOffset":108493700, + "target":34962 + }, + { + "buffer":0, + "byteLength":12612, + "byteOffset":108506312, + "target":34962 + }, + { + "buffer":0, + "byteLength":8408, + "byteOffset":108518924, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":108527332, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":108534484, + "target":34962 + }, + { + "buffer":0, + "byteLength":93516, + "byteOffset":108541636, + "target":34962 + }, + { + "buffer":0, + "byteLength":93516, + "byteOffset":108635152, + "target":34962 + }, + { + "buffer":0, + "byteLength":62344, + "byteOffset":108728668, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":108791012, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":108824132, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":108831020, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108837908, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108837956, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":108838004, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108838036, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108838084, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":108838132, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":108838164, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":108844740, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":108851316, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":108855700, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":108862684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":108869668, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":108871420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":108873172, + "target":34962 + }, + { + "buffer":0, + "byteLength":8064, + "byteOffset":108874340, + "target":34962 + }, + { + "buffer":0, + "byteLength":8064, + "byteOffset":108882404, + "target":34962 + }, + { + "buffer":0, + "byteLength":5376, + "byteOffset":108890468, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":108895844, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":108896708, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":108897572, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":108899588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":108901604, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":108902948, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":108905252, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":108907556, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108909092, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":108909140, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":108909188, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":108909220, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":108910132, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":108911044, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":108911652, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":108918756, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":108925860, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":108928092, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":108930324, + "target":34962 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":108931812, + "target":34962 + }, + { + "buffer":0, + "byteLength":3552, + "byteOffset":108935364, + "target":34962 + }, + { + "buffer":0, + "byteLength":2368, + "byteOffset":108938916, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":108941284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":108943036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":108944788, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":108945956, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":108946556, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":108947156, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":108947556, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":108969276, + "target":34962 + }, + { + "buffer":0, + "byteLength":14480, + "byteOffset":108990996, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":109005476, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":109005764, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":109006052, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":109006244, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":109006292, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":109006340, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":109006372, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":109013260, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":109020148, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":109020196, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":109020244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":109020276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":109021692, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":109023108, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":109024052, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":109024652, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":109025252, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":109025652, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":109025940, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":109026228, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":109028952, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":109031676, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":109033492, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":109033540, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":109033588, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":109033620, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":109040616, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":109047612, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":109047900, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":109048188, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":109048380, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":109048428, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":109048476, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":109048508, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":109055564, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":109062620, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":109069580, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":109076540, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":109078532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":109079684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":109080836, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":109082420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":109084004, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":109085060, + "target":34963 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":109085540, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":109088228, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":109090916, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":109094948, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":109098980, + "target":34962 + }, + { + "buffer":0, + "byteLength":4128, + "byteOffset":109103108, + "target":34962 + }, + { + "buffer":0, + "byteLength":2752, + "byteOffset":109107236, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":109109988, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":109110852, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":109111716, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":109118292, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":109124868, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":109129252, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":109129300, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":109129348, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":109129380, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":109129668, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":109129956, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":109130148, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":109130196, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":109130244, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":109130276, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":109130852, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":109131428, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":109131812, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":109148852, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":109165892, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":109177252, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":109179976, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":109182700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":109184516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":109186016, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":109187516, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":109188516, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":109195500, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":109202484, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":109222404, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":109242324, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":109255604, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":109262444, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":109269284, + "target":34963 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":109271276, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":109275332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1320, + "byteOffset":109279388, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":109280708, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":109287740, + "target":34962 + }, + { + "buffer":0, + "byteLength":93648, + "byteOffset":109294772, + "target":34962 + }, + { + "buffer":0, + "byteLength":93648, + "byteOffset":109388420, + "target":34962 + }, + { + "buffer":0, + "byteLength":62432, + "byteOffset":109482068, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":109544500, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":109545172, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":109545844, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":109546292, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":109547204, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":109548116, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":109548724, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":109549588, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":109550452, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":109570372, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":109590292, + "target":34962 + }, + { + "buffer":0, + "byteLength":97176, + "byteOffset":109603572, + "target":34962 + }, + { + "buffer":0, + "byteLength":97176, + "byteOffset":109700748, + "target":34962 + }, + { + "buffer":0, + "byteLength":64784, + "byteOffset":109797924, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":109862708, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":109869764, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":109876820, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":109883852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":109890884, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":109892876, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":109892924, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":109892972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":109893004, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":109894300, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":109895596, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":109896460, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":109897180, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":109897900, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":109898380, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":109901524, + "target":34962 + }, + { + "buffer":0, + "byteLength":2096, + "byteOffset":109904668, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":109906764, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":109913652, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":109920540, + "target":34963 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":109922532, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":109925988, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":109929444, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":109933620, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":109937796, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":109940580, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":109957620, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":109974660, + "target":34962 + }, + { + "buffer":0, + "byteLength":9732, + "byteOffset":109986020, + "target":34962 + }, + { + "buffer":0, + "byteLength":9732, + "byteOffset":109995752, + "target":34962 + }, + { + "buffer":0, + "byteLength":6488, + "byteOffset":110005484, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":110011972, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110014516, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110014564, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":110014612, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":110014644, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":110015796, + "target":34962 + }, + { + "buffer":0, + "byteLength":12264, + "byteOffset":110016948, + "target":34962 + }, + { + "buffer":0, + "byteLength":12264, + "byteOffset":110029212, + "target":34962 + }, + { + "buffer":0, + "byteLength":8176, + "byteOffset":110041476, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110049652, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110049700, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":110049748, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":110049780, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":110066820, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":110083860, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110095220, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110095268, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":110095316, + "target":34962 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":110095348, + "target":34962 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":110113204, + "target":34962 + }, + { + "buffer":0, + "byteLength":11904, + "byteOffset":110131060, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":110142964, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":110143252, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":110143540, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":110146276, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110149012, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110149060, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":110149108, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":110149140, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":110149716, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":110150292, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":110150676, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":110151780, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":110152884, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":110153620, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":110157820, + "target":34962 + }, + { + "buffer":0, + "byteLength":2800, + "byteOffset":110162020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":110164820, + "target":34963 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":110166260, + "target":34962 + }, + { + "buffer":0, + "byteLength":1944, + "byteOffset":110168204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1296, + "byteOffset":110170148, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110171444, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110171492, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":110171540, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":110171572, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":110171860, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":110172148, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110172340, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110172388, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":110172436, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":110172468, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":110173812, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":110175156, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110176052, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110176100, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":110176148, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":110176180, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":110176900, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":110177620, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":110178100, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":110178964, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":110179828, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":110180548, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":110181268, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":110181748, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":110181892, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":110182036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":110182132, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":110182420, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":110182708, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":110182900, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":110189908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":110196916, + "target":34963 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":110198908, + "target":34962 + }, + { + "buffer":0, + "byteLength":4140, + "byteOffset":110203048, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":110207188, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":110209948, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":110210236, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":110210524, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110210716, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110210764, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":110210812, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":110210844, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":110217756, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":110224668, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":110231796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":110238924, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110240916, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110240964, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":110241012, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":110241044, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":110247932, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":110254820, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":110257052, + "target":34962 + }, + { + "buffer":0, + "byteLength":1488, + "byteOffset":110259284, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110260772, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110260820, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":110260868, + "target":34962 + }, + { + "buffer":0, + "byteLength":8256, + "byteOffset":110260900, + "target":34962 + }, + { + "buffer":0, + "byteLength":8256, + "byteOffset":110269156, + "target":34962 + }, + { + "buffer":0, + "byteLength":5504, + "byteOffset":110277412, + "target":34962 + }, + { + "buffer":0, + "byteLength":9552, + "byteOffset":110282916, + "target":34962 + }, + { + "buffer":0, + "byteLength":9552, + "byteOffset":110292468, + "target":34962 + }, + { + "buffer":0, + "byteLength":6368, + "byteOffset":110302020, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110308388, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110308436, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":110308484, + "target":34962 + }, + { + "buffer":0, + "byteLength":7212, + "byteOffset":110308516, + "target":34962 + }, + { + "buffer":0, + "byteLength":7212, + "byteOffset":110315728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":110322940, + "target":34963 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":110324932, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":110325076, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":110325220, + "target":34962 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":110325316, + "target":34962 + }, + { + "buffer":0, + "byteLength":3984, + "byteOffset":110329300, + "target":34962 + }, + { + "buffer":0, + "byteLength":2656, + "byteOffset":110333284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":110335940, + "target":34963 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":110337380, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":110341604, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110345828, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110345876, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":110345924, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":110345956, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":110352868, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110359780, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110359828, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":110359876, + "target":34962 + }, + { + "buffer":0, + "byteLength":4068, + "byteOffset":110359908, + "target":34962 + }, + { + "buffer":0, + "byteLength":4068, + "byteOffset":110363976, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":110368044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":110370756, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110372196, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":110372244, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":110372292, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":110372324, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":110372612, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":110372900, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":110373092, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":110376476, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":110379860, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":110382116, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":110382836, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":110383556, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":110384036, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":110384900, + "target":34962 + }, + { + "buffer":0, + "byteLength":92988, + "byteOffset":110385764, + "target":34962 + }, + { + "buffer":0, + "byteLength":92988, + "byteOffset":110478752, + "target":34962 + }, + { + "buffer":0, + "byteLength":61992, + "byteOffset":110571740, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":110633732, + "target":34962 + }, + { + "buffer":0, + "byteLength":6768, + "byteOffset":110640500, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":110647268, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":110647556, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":110647844, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":110648036, + "target":34962 + }, + { + "buffer":0, + "byteLength":8184, + "byteOffset":110656220, + "target":34962 + }, + { + "buffer":0, + "byteLength":5456, + "byteOffset":110664404, + "target":34962 + }, + { + "buffer":0, + "byteLength":48744, + "byteOffset":110669860, + "target":34962 + }, + { + "buffer":0, + "byteLength":48744, + "byteOffset":110718604, + "target":34962 + }, + { + "buffer":0, + "byteLength":32496, + "byteOffset":110767348, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":110799844, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":110800252, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":110800660, + "target":34962 + }, + { + "buffer":0, + "byteLength":99444, + "byteOffset":110800932, + "target":34962 + }, + { + "buffer":0, + "byteLength":99444, + "byteOffset":110900376, + "target":34962 + }, + { + "buffer":0, + "byteLength":66296, + "byteOffset":110999820, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":111066116, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":111070220, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":111074324, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":111077060, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":111083876, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":111090692, + "target":34963 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":111092684, + "target":34962 + }, + { + "buffer":0, + "byteLength":4176, + "byteOffset":111096860, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":111101036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":111103820, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111105260, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111105308, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":111105356, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111105388, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111105436, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":111105484, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":111105516, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":111107220, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":111108924, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":111110060, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":111110348, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":111110636, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":111110828, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":111113552, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":111116276, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":111118092, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":111118380, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":111118668, + "target":34962 + }, + { + "buffer":0, + "byteLength":2520, + "byteOffset":111121188, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":111123708, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111125388, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111125436, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":111125484, + "target":34962 + }, + { + "buffer":0, + "byteLength":3192, + "byteOffset":111125516, + "target":34962 + }, + { + "buffer":0, + "byteLength":3192, + "byteOffset":111128708, + "target":34962 + }, + { + "buffer":0, + "byteLength":2128, + "byteOffset":111131900, + "target":34962 + }, + { + "buffer":0, + "byteLength":1128, + "byteOffset":111134028, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111135156, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111135204, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":111135252, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":111135284, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":111143180, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":111151076, + "target":34962 + }, + { + "buffer":0, + "byteLength":5400, + "byteOffset":111156340, + "target":34962 + }, + { + "buffer":0, + "byteLength":5400, + "byteOffset":111161740, + "target":34962 + }, + { + "buffer":0, + "byteLength":3600, + "byteOffset":111167140, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":111170740, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":111171292, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":111171844, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":111172212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":111173388, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":111174564, + "target":34962 + }, + { + "buffer":0, + "byteLength":2028, + "byteOffset":111175348, + "target":34962 + }, + { + "buffer":0, + "byteLength":2028, + "byteOffset":111177376, + "target":34962 + }, + { + "buffer":0, + "byteLength":1352, + "byteOffset":111179404, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":111180756, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":111187716, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":111194676, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":111198900, + "target":34962 + }, + { + "buffer":0, + "byteLength":2816, + "byteOffset":111203124, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":111205940, + "target":34963 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":111207380, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":111214484, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111221588, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111221636, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":111221684, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":111221716, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":111221788, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111221860, + "target":34962 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":111221908, + "target":34963 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":111221932, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":111229036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":111236140, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":111236428, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":111236716, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":111239440, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":111242164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":111243980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1968, + "byteOffset":111245948, + "target":34962 + }, + { + "buffer":0, + "byteLength":1312, + "byteOffset":111247916, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":111249228, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":111249516, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":111249804, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111249996, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111250044, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":111250092, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111250124, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111250172, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":111250220, + "target":34962 + }, + { + "buffer":0, + "byteLength":4068, + "byteOffset":111250252, + "target":34962 + }, + { + "buffer":0, + "byteLength":4068, + "byteOffset":111254320, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":111258388, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":111261100, + "target":34963 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":111262540, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":111264244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":111265948, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111267084, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111267132, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":111267180, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":111267212, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":111267500, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":111267788, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":111268364, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":111268940, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":111269324, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":111269912, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":111270500, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":111270892, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":111272596, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":111274300, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":111275436, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":111276420, + "target":34962 + }, + { + "buffer":0, + "byteLength":656, + "byteOffset":111277404, + "target":34962 + }, + { + "buffer":0, + "byteLength":4020, + "byteOffset":111278060, + "target":34962 + }, + { + "buffer":0, + "byteLength":4020, + "byteOffset":111282080, + "target":34962 + }, + { + "buffer":0, + "byteLength":2680, + "byteOffset":111286100, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":111288780, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111290220, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111290268, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":111290316, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111290348, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111290396, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":111290444, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":111290476, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":111292924, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":111295372, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":111297004, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":111297292, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":111297580, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":111297772, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":111298060, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":111298348, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":111299260, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":111300172, + "target":34962 + }, + { + "buffer":0, + "byteLength":93588, + "byteOffset":111300780, + "target":34962 + }, + { + "buffer":0, + "byteLength":93588, + "byteOffset":111394368, + "target":34962 + }, + { + "buffer":0, + "byteLength":62392, + "byteOffset":111487956, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":111550348, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":111550492, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":111550636, + "target":34962 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":111550732, + "target":34962 + }, + { + "buffer":0, + "byteLength":12516, + "byteOffset":111563248, + "target":34962 + }, + { + "buffer":0, + "byteLength":8344, + "byteOffset":111575764, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":111584108, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":111586832, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":111589556, + "target":34962 + }, + { + "buffer":0, + "byteLength":12252, + "byteOffset":111591372, + "target":34962 + }, + { + "buffer":0, + "byteLength":12252, + "byteOffset":111603624, + "target":34962 + }, + { + "buffer":0, + "byteLength":8168, + "byteOffset":111615876, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":111624044, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":111631148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":111638252, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111640244, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111640292, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":111640340, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":111640372, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":111657412, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":111674452, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111685812, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111685860, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":111685908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":111685940, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":111687644, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":111689348, + "target":34962 + }, + { + "buffer":0, + "byteLength":99024, + "byteOffset":111690484, + "target":34962 + }, + { + "buffer":0, + "byteLength":99024, + "byteOffset":111789508, + "target":34962 + }, + { + "buffer":0, + "byteLength":66016, + "byteOffset":111888532, + "target":34962 + }, + { + "buffer":0, + "byteLength":9744, + "byteOffset":111954548, + "target":34962 + }, + { + "buffer":0, + "byteLength":9744, + "byteOffset":111964292, + "target":34962 + }, + { + "buffer":0, + "byteLength":6496, + "byteOffset":111974036, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":111980532, + "target":34963 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":111983076, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":111989916, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":111996756, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111998748, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":111998796, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":111998844, + "target":34962 + }, + { + "buffer":0, + "byteLength":11016, + "byteOffset":111998876, + "target":34962 + }, + { + "buffer":0, + "byteLength":11016, + "byteOffset":112009892, + "target":34962 + }, + { + "buffer":0, + "byteLength":7344, + "byteOffset":112020908, + "target":34962 + }, + { + "buffer":0, + "byteLength":2880, + "byteOffset":112028252, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":112031132, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":112031420, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":112031708, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":112035740, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":112039772, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":112040876, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":112041980, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":112042716, + "target":34962 + }, + { + "buffer":0, + "byteLength":2112, + "byteOffset":112044828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1408, + "byteOffset":112046940, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":112048348, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":112051732, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":112055116, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":112057372, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":112064356, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":112071340, + "target":34963 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":112073332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":112074964, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":112076596, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":112077684, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":112078404, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":112079124, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":112079604, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":112082388, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":112085172, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":112085220, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":112085268, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":112085300, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":112085348, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":112085396, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":112085428, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":112087132, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":112088836, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":112089972, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":112096812, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":112103652, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":112103940, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":112104228, + "target":34962 + }, + { + "buffer":0, + "byteLength":48744, + "byteOffset":112104420, + "target":34962 + }, + { + "buffer":0, + "byteLength":48744, + "byteOffset":112153164, + "target":34962 + }, + { + "buffer":0, + "byteLength":32496, + "byteOffset":112201908, + "target":34962 + }, + { + "buffer":0, + "byteLength":42888, + "byteOffset":112234404, + "target":34963 + }, + { + "buffer":0, + "byteLength":97212, + "byteOffset":112277292, + "target":34962 + }, + { + "buffer":0, + "byteLength":97212, + "byteOffset":112374504, + "target":34962 + }, + { + "buffer":0, + "byteLength":64808, + "byteOffset":112471716, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":112536524, + "target":34963 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":112569644, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":112576796, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":112583948, + "target":34963 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":112585940, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":112592804, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":112599668, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":112603700, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":112607732, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":112610420, + "target":34963 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":112611860, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":112615892, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":112619924, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":112619972, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":112620020, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":112620052, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":112627012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":112633972, + "target":34963 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":112635964, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":112642972, + "target":34962 + }, + { + "buffer":0, + "byteLength":3816, + "byteOffset":112649980, + "target":34962 + }, + { + "buffer":0, + "byteLength":3816, + "byteOffset":112653796, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":112657612, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":112660156, + "target":34963 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":112661596, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":112665700, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":112669804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":112672540, + "target":34963 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":112673980, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":112681036, + "target":34962 + }, + { + "buffer":0, + "byteLength":4704, + "byteOffset":112688092, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":112692796, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":112693084, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":112693372, + "target":34962 + }, + { + "buffer":0, + "byteLength":9684, + "byteOffset":112693564, + "target":34962 + }, + { + "buffer":0, + "byteLength":9684, + "byteOffset":112703248, + "target":34962 + }, + { + "buffer":0, + "byteLength":6456, + "byteOffset":112712932, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":112719388, + "target":34963 + }, + { + "buffer":0, + "byteLength":2160, + "byteOffset":112721932, + "target":34962 + }, + { + "buffer":0, + "byteLength":2160, + "byteOffset":112724092, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":112726252, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":112727692, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":112727740, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":112727788, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":112727820, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":112734960, + "target":34962 + }, + { + "buffer":0, + "byteLength":23424, + "byteOffset":112742100, + "target":34962 + }, + { + "buffer":0, + "byteLength":23424, + "byteOffset":112765524, + "target":34962 + }, + { + "buffer":0, + "byteLength":15616, + "byteOffset":112788948, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":112804564, + "target":34962 + }, + { + "buffer":0, + "byteLength":7020, + "byteOffset":112811584, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":112818604, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":112820596, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":112827556, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":112834516, + "target":34963 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":112836508, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":112843648, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":112850788, + "target":34962 + }, + { + "buffer":0, + "byteLength":2376, + "byteOffset":112853164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":112855540, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":112857124, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":112864540, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":112871956, + "target":34962 + }, + { + "buffer":0, + "byteLength":4020, + "byteOffset":112876900, + "target":34962 + }, + { + "buffer":0, + "byteLength":4020, + "byteOffset":112880920, + "target":34962 + }, + { + "buffer":0, + "byteLength":2680, + "byteOffset":112884940, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":112887620, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":112889060, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":112889108, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":112889156, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":112889188, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":112896148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":112903108, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":112904788, + "target":34962 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":112906468, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":112907588, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":112908236, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":112915220, + "target":34962 + }, + { + "buffer":0, + "byteLength":4092, + "byteOffset":112922204, + "target":34962 + }, + { + "buffer":0, + "byteLength":4092, + "byteOffset":112926296, + "target":34962 + }, + { + "buffer":0, + "byteLength":2728, + "byteOffset":112930388, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":112933116, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":112934556, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":112934604, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":112934652, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":112934684, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":112935536, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":112936388, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":112936956, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":112943988, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":112951020, + "target":34962 + }, + { + "buffer":0, + "byteLength":8664, + "byteOffset":112959684, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":112968348, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":112975524, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":112982700, + "target":34963 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":112984692, + "target":34962 + }, + { + "buffer":0, + "byteLength":1176, + "byteOffset":112985868, + "target":34962 + }, + { + "buffer":0, + "byteLength":784, + "byteOffset":112987044, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":112987828, + "target":34962 + }, + { + "buffer":0, + "byteLength":6744, + "byteOffset":112994572, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":113001316, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":113005348, + "target":34962 + }, + { + "buffer":0, + "byteLength":3972, + "byteOffset":113009380, + "target":34962 + }, + { + "buffer":0, + "byteLength":3972, + "byteOffset":113013352, + "target":34962 + }, + { + "buffer":0, + "byteLength":2648, + "byteOffset":113017324, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":113019972, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":113021412, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":113021460, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":113021508, + "target":34962 + }, + { + "buffer":0, + "byteLength":98076, + "byteOffset":113021540, + "target":34962 + }, + { + "buffer":0, + "byteLength":98076, + "byteOffset":113119616, + "target":34962 + }, + { + "buffer":0, + "byteLength":65384, + "byteOffset":113217692, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":113283076, + "target":34963 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":113316196, + "target":34962 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":113322868, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":113329540, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":113331532, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":113331580, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":113331628, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":113331660, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":113333160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":113334660, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":113335660, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":113340844, + "target":34962 + }, + { + "buffer":0, + "byteLength":3456, + "byteOffset":113346028, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":113349484, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":113349772, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":113350060, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":113350252, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":113357284, + "target":34962 + }, + { + "buffer":0, + "byteLength":96372, + "byteOffset":113364316, + "target":34962 + }, + { + "buffer":0, + "byteLength":96372, + "byteOffset":113460688, + "target":34962 + }, + { + "buffer":0, + "byteLength":64248, + "byteOffset":113557060, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":113621308, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":113621356, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":113621404, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":113621436, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":113621484, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":113621532, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":113621564, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":113624288, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":113627012, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":113628828, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":113629116, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":113629404, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":113629596, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":113630196, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":113630796, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":113631196, + "target":34962 + }, + { + "buffer":0, + "byteLength":10380, + "byteOffset":113641576, + "target":34962 + }, + { + "buffer":0, + "byteLength":6920, + "byteOffset":113651956, + "target":34962 + }, + { + "buffer":0, + "byteLength":1908, + "byteOffset":113658876, + "target":34962 + }, + { + "buffer":0, + "byteLength":1908, + "byteOffset":113660784, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":113662692, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":113663964, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":113664876, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":113665788, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":113666396, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":113673380, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":113680364, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":113680988, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":113681612, + "target":34962 + }, + { + "buffer":0, + "byteLength":48744, + "byteOffset":113682028, + "target":34962 + }, + { + "buffer":0, + "byteLength":48744, + "byteOffset":113730772, + "target":34962 + }, + { + "buffer":0, + "byteLength":32496, + "byteOffset":113779516, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":113812012, + "target":34962 + }, + { + "buffer":0, + "byteLength":7200, + "byteOffset":113819212, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":113826412, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":113826460, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":113826508, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":113826540, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":113827404, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":113828268, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":113828892, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":113829516, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":113829932, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":113830796, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":113831660, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":113831948, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":113832236, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":113832428, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":113839388, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":113846348, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":113846396, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":113846444, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":113846476, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":113846524, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":113846572, + "target":34962 + }, + { + "buffer":0, + "byteLength":17904, + "byteOffset":113846604, + "target":34962 + }, + { + "buffer":0, + "byteLength":17904, + "byteOffset":113864508, + "target":34962 + }, + { + "buffer":0, + "byteLength":11936, + "byteOffset":113882412, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":113894348, + "target":34963 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":113899148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":113900648, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":113902148, + "target":34962 + }, + { + "buffer":0, + "byteLength":93456, + "byteOffset":113903148, + "target":34962 + }, + { + "buffer":0, + "byteLength":93456, + "byteOffset":113996604, + "target":34962 + }, + { + "buffer":0, + "byteLength":62304, + "byteOffset":114090060, + "target":34962 + }, + { + "buffer":0, + "byteLength":98076, + "byteOffset":114152364, + "target":34962 + }, + { + "buffer":0, + "byteLength":98076, + "byteOffset":114250440, + "target":34962 + }, + { + "buffer":0, + "byteLength":65384, + "byteOffset":114348516, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":114413900, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":114414044, + "target":34962 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":114414188, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":114414284, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":114414332, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":114414380, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":114414412, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":114421444, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":114428476, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":114435412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":114442348, + "target":34963 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":114444340, + "target":34962 + }, + { + "buffer":0, + "byteLength":1680, + "byteOffset":114446020, + "target":34962 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":114447700, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":114448820, + "target":34962 + }, + { + "buffer":0, + "byteLength":7008, + "byteOffset":114455828, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":114462836, + "target":34963 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":114464828, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":114471404, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":114477980, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":114482364, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":114486564, + "target":34962 + }, + { + "buffer":0, + "byteLength":2800, + "byteOffset":114490764, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":114493564, + "target":34963 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":114495004, + "target":34962 + }, + { + "buffer":0, + "byteLength":6816, + "byteOffset":114501820, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":114508636, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":114515548, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":114522460, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":114522748, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":114523036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":114523324, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":114523612, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":114524524, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":114525436, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":114526044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":114528036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1328, + "byteOffset":114530028, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":114531356, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":114531932, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":114532508, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":114532892, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":114533468, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":114534044, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":114534428, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":114535004, + "target":34962 + }, + { + "buffer":0, + "byteLength":6780, + "byteOffset":114535580, + "target":34962 + }, + { + "buffer":0, + "byteLength":6780, + "byteOffset":114542360, + "target":34962 + }, + { + "buffer":0, + "byteLength":4392, + "byteOffset":114549140, + "target":34962 + }, + { + "buffer":0, + "byteLength":4392, + "byteOffset":114553532, + "target":34962 + }, + { + "buffer":0, + "byteLength":2928, + "byteOffset":114557924, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":114560852, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":114568628, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":114576404, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":114581588, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":114581636, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":114581684, + "target":34962 + }, + { + "buffer":0, + "byteLength":9792, + "byteOffset":114581716, + "target":34962 + }, + { + "buffer":0, + "byteLength":9792, + "byteOffset":114591508, + "target":34962 + }, + { + "buffer":0, + "byteLength":6528, + "byteOffset":114601300, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":114607828, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":114610564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":114613300, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":114615124, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":114622036, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":114628948, + "target":34963 + }, + { + "buffer":0, + "byteLength":98232, + "byteOffset":114630940, + "target":34962 + }, + { + "buffer":0, + "byteLength":98232, + "byteOffset":114729172, + "target":34962 + }, + { + "buffer":0, + "byteLength":65488, + "byteOffset":114827404, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":114892892, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":114892940, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":114892988, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":114893020, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":114899860, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":114906700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":114907852, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":114909004, + "target":34962 + }, + { + "buffer":0, + "byteLength":4080, + "byteOffset":114913084, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":114917164, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":114924268, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":114931372, + "target":34962 + }, + { + "buffer":0, + "byteLength":612, + "byteOffset":114931984, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":114932596, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":114933004, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":114933724, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":114934444, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":114934924, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":114942028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":114949132, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":114951124, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":114951988, + "target":34962 + }, + { + "buffer":0, + "byteLength":4344, + "byteOffset":114952852, + "target":34962 + }, + { + "buffer":0, + "byteLength":4344, + "byteOffset":114957196, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":114961540, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":114964228, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":114966916, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":114967204, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":114967492, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":114967684, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":114967972, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":114968260, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":114968452, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":114975532, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":114982612, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":114982804, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":114982996, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":114983124, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":114983172, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":114983220, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":114983252, + "target":34962 + }, + { + "buffer":0, + "byteLength":3144, + "byteOffset":114986396, + "target":34962 + }, + { + "buffer":0, + "byteLength":2096, + "byteOffset":114989540, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":114991636, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":114999412, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":115007188, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":115012372, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":115014388, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":115016404, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115017748, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115017796, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":115017844, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":115017876, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":115018596, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":115019316, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":115019796, + "target":34962 + }, + { + "buffer":0, + "byteLength":2808, + "byteOffset":115022604, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":115025412, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":115026276, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115027140, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115027428, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":115027716, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115027908, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115028196, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":115028484, + "target":34962 + }, + { + "buffer":0, + "byteLength":7188, + "byteOffset":115035672, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":115042860, + "target":34963 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":115044852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1416, + "byteOffset":115046268, + "target":34962 + }, + { + "buffer":0, + "byteLength":944, + "byteOffset":115047684, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":115048628, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":115055516, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115062404, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115062452, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":115062500, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":115062532, + "target":34962 + }, + { + "buffer":0, + "byteLength":1632, + "byteOffset":115064164, + "target":34962 + }, + { + "buffer":0, + "byteLength":1088, + "byteOffset":115065796, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":115066884, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":115074780, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":115082676, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":115087940, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":115094852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":115101764, + "target":34963 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":115103756, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":115110788, + "target":34962 + }, + { + "buffer":0, + "byteLength":3900, + "byteOffset":115117820, + "target":34962 + }, + { + "buffer":0, + "byteLength":3900, + "byteOffset":115121720, + "target":34962 + }, + { + "buffer":0, + "byteLength":2600, + "byteOffset":115125620, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":115128220, + "target":34963 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":115129660, + "target":34962 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":115137796, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":115145932, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":115151356, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":115151932, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":115152508, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":115152892, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":115159732, + "target":34962 + }, + { + "buffer":0, + "byteLength":9756, + "byteOffset":115166572, + "target":34962 + }, + { + "buffer":0, + "byteLength":9756, + "byteOffset":115176328, + "target":34962 + }, + { + "buffer":0, + "byteLength":6504, + "byteOffset":115186084, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":115192588, + "target":34963 + }, + { + "buffer":0, + "byteLength":2184, + "byteOffset":115195132, + "target":34962 + }, + { + "buffer":0, + "byteLength":2184, + "byteOffset":115197316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1456, + "byteOffset":115199500, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":115200956, + "target":34963 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":115201676, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":115207532, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":115213388, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":115217292, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":115224408, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":115231524, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115233516, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115233564, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":115233612, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115233644, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115233692, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":115233740, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115233772, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115233820, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":115233868, + "target":34962 + }, + { + "buffer":0, + "byteLength":57624, + "byteOffset":115233900, + "target":34962 + }, + { + "buffer":0, + "byteLength":57624, + "byteOffset":115291524, + "target":34962 + }, + { + "buffer":0, + "byteLength":38416, + "byteOffset":115349148, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115387564, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115387612, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":115387660, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":115387692, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":115388412, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":115389132, + "target":34962 + }, + { + "buffer":0, + "byteLength":32436, + "byteOffset":115389612, + "target":34962 + }, + { + "buffer":0, + "byteLength":32436, + "byteOffset":115422048, + "target":34962 + }, + { + "buffer":0, + "byteLength":21624, + "byteOffset":115454484, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115476108, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115476156, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":115476204, + "target":34962 + }, + { + "buffer":0, + "byteLength":12252, + "byteOffset":115476236, + "target":34962 + }, + { + "buffer":0, + "byteLength":12252, + "byteOffset":115488488, + "target":34962 + }, + { + "buffer":0, + "byteLength":8168, + "byteOffset":115500740, + "target":34962 + }, + { + "buffer":0, + "byteLength":4800, + "byteOffset":115508908, + "target":34963 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":115513708, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":115520884, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":115528060, + "target":34963 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":115530052, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":115537096, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":115544140, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":115544692, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":115545244, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":115545612, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":115552740, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":115559868, + "target":34962 + }, + { + "buffer":0, + "byteLength":5856, + "byteOffset":115565724, + "target":34962 + }, + { + "buffer":0, + "byteLength":3904, + "byteOffset":115571580, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115575484, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115575532, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":115575580, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":115575612, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":115576464, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":115577316, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":115577884, + "target":34962 + }, + { + "buffer":0, + "byteLength":4164, + "byteOffset":115582048, + "target":34962 + }, + { + "buffer":0, + "byteLength":2776, + "byteOffset":115586212, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115588988, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115589276, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":115589564, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":115596404, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":115603244, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":115606628, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":115610012, + "target":34962 + }, + { + "buffer":0, + "byteLength":12264, + "byteOffset":115612268, + "target":34962 + }, + { + "buffer":0, + "byteLength":12264, + "byteOffset":115624532, + "target":34962 + }, + { + "buffer":0, + "byteLength":8176, + "byteOffset":115636796, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":115644972, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":115651908, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":115658844, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115660836, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115660884, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":115660932, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":115660964, + "target":34962 + }, + { + "buffer":0, + "byteLength":2724, + "byteOffset":115663688, + "target":34962 + }, + { + "buffer":0, + "byteLength":1816, + "byteOffset":115666412, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":115668228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1500, + "byteOffset":115669728, + "target":34962 + }, + { + "buffer":0, + "byteLength":1000, + "byteOffset":115671228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":115672228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":115673572, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":115674916, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":115675812, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115676292, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115676580, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":115676868, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":115677060, + "target":34962 + }, + { + "buffer":0, + "byteLength":6336, + "byteOffset":115683396, + "target":34962 + }, + { + "buffer":0, + "byteLength":4224, + "byteOffset":115689732, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":115693956, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":115695972, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":115697988, + "target":34962 + }, + { + "buffer":0, + "byteLength":2964, + "byteOffset":115699332, + "target":34962 + }, + { + "buffer":0, + "byteLength":2964, + "byteOffset":115702296, + "target":34962 + }, + { + "buffer":0, + "byteLength":1976, + "byteOffset":115705260, + "target":34962 + }, + { + "buffer":0, + "byteLength":8064, + "byteOffset":115707236, + "target":34962 + }, + { + "buffer":0, + "byteLength":8064, + "byteOffset":115715300, + "target":34962 + }, + { + "buffer":0, + "byteLength":5376, + "byteOffset":115723364, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":115728740, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":115735724, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115742708, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115742996, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":115743284, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115743476, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115743764, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":115744052, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115744244, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115744292, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":115744340, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115744372, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115744660, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":115744948, + "target":34962 + }, + { + "buffer":0, + "byteLength":8244, + "byteOffset":115745140, + "target":34962 + }, + { + "buffer":0, + "byteLength":8244, + "byteOffset":115753384, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":115761628, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":115762252, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":115762876, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":115763292, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":115767168, + "target":34962 + }, + { + "buffer":0, + "byteLength":2584, + "byteOffset":115771044, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":115773628, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":115775548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1280, + "byteOffset":115777468, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":115778748, + "target":34962 + }, + { + "buffer":0, + "byteLength":7044, + "byteOffset":115785792, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":115792836, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":115799832, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":115806828, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115808820, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115809108, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":115809396, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115809588, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115809876, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":115810164, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":115810356, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":115817388, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115824420, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115824468, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":115824516, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":115824548, + "target":34962 + }, + { + "buffer":0, + "byteLength":588, + "byteOffset":115825136, + "target":34962 + }, + { + "buffer":0, + "byteLength":392, + "byteOffset":115825724, + "target":34962 + }, + { + "buffer":0, + "byteLength":2220, + "byteOffset":115826116, + "target":34962 + }, + { + "buffer":0, + "byteLength":2220, + "byteOffset":115828336, + "target":34962 + }, + { + "buffer":0, + "byteLength":1480, + "byteOffset":115830556, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":115832036, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115832756, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115833044, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":115833332, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115833524, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":115833572, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":115833620, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":115833652, + "target":34962 + }, + { + "buffer":0, + "byteLength":3876, + "byteOffset":115837528, + "target":34962 + }, + { + "buffer":0, + "byteLength":2584, + "byteOffset":115841404, + "target":34962 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":115843988, + "target":34962 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":115847900, + "target":34962 + }, + { + "buffer":0, + "byteLength":2608, + "byteOffset":115851812, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":115854420, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":115855068, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":115855716, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":115856148, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":115858884, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":115861620, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115862604, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115862892, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":115863180, + "target":34962 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":115863372, + "target":34962 + }, + { + "buffer":0, + "byteLength":9780, + "byteOffset":115873152, + "target":34962 + }, + { + "buffer":0, + "byteLength":6520, + "byteOffset":115882932, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":115889452, + "target":34962 + }, + { + "buffer":0, + "byteLength":6792, + "byteOffset":115896244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":115903036, + "target":34963 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":115905028, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":115911604, + "target":34962 + }, + { + "buffer":0, + "byteLength":4384, + "byteOffset":115918180, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":115922564, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":115924580, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":115926596, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":115927940, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":115932092, + "target":34962 + }, + { + "buffer":0, + "byteLength":2768, + "byteOffset":115936244, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":115939012, + "target":34963 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":115940452, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":115947448, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115954444, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115954732, + "target":34962 + }, + { + "buffer":0, + "byteLength":4092, + "byteOffset":115955020, + "target":34962 + }, + { + "buffer":0, + "byteLength":4092, + "byteOffset":115959112, + "target":34962 + }, + { + "buffer":0, + "byteLength":2728, + "byteOffset":115963204, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115965932, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115966220, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115966508, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":115966796, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":115967084, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":115967276, + "target":34962 + }, + { + "buffer":0, + "byteLength":7176, + "byteOffset":115974452, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":115981628, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":115983620, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":115990580, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":115997540, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":115999532, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":116006516, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":116013500, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":116014220, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":116014940, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":116015420, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":116022452, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":116029484, + "target":34963 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":116031476, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":116034212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":116036948, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":116038772, + "target":34962 + }, + { + "buffer":0, + "byteLength":1704, + "byteOffset":116040476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":116042180, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116043316, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116043364, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":116043412, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":116043444, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":116046156, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":116048868, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116049852, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116049900, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":116049948, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":116049980, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":116050580, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":116051180, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":116051580, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":116058468, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":116065356, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":116073252, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":116081148, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116086412, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116086460, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":116086508, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":116086540, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":116086828, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":116087116, + "target":34962 + }, + { + "buffer":0, + "byteLength":2712, + "byteOffset":116089828, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116092540, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116092588, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":116092636, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116092668, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116092716, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":116092764, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116092796, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116092844, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":116092892, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":116092924, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":116093116, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":116093308, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116093436, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116093484, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":116093532, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":116093564, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":116095700, + "target":34962 + }, + { + "buffer":0, + "byteLength":1424, + "byteOffset":116097836, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":116099260, + "target":34962 + }, + { + "buffer":0, + "byteLength":2016, + "byteOffset":116101276, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":116103292, + "target":34962 + }, + { + "buffer":0, + "byteLength":3348, + "byteOffset":116104636, + "target":34962 + }, + { + "buffer":0, + "byteLength":3348, + "byteOffset":116107984, + "target":34962 + }, + { + "buffer":0, + "byteLength":2232, + "byteOffset":116111332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":116113564, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":116115316, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":116117068, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":116118236, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":116120732, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":116123228, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":116124892, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":116125612, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":116126332, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":116126812, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":116127100, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":116127388, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":116127580, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":116128588, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":116129596, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":116130268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":116131612, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":116132956, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":116134108, + "target":34962 + }, + { + "buffer":0, + "byteLength":9072, + "byteOffset":116135260, + "target":34962 + }, + { + "buffer":0, + "byteLength":9072, + "byteOffset":116144332, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":116153404, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":116153692, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":116153980, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":116154172, + "target":34962 + }, + { + "buffer":0, + "byteLength":2784, + "byteOffset":116156956, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":116159740, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":116160028, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":116160316, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":116161180, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":116162044, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":116162896, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":116163748, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":116164316, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":116171252, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":116178188, + "target":34963 + }, + { + "buffer":0, + "byteLength":81696, + "byteOffset":116180180, + "target":34962 + }, + { + "buffer":0, + "byteLength":81696, + "byteOffset":116261876, + "target":34962 + }, + { + "buffer":0, + "byteLength":54464, + "byteOffset":116343572, + "target":34962 + }, + { + "buffer":0, + "byteLength":660, + "byteOffset":116398036, + "target":34962 + }, + { + "buffer":0, + "byteLength":660, + "byteOffset":116398696, + "target":34962 + }, + { + "buffer":0, + "byteLength":440, + "byteOffset":116399356, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":116399796, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":116406684, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":116413572, + "target":34963 + }, + { + "buffer":0, + "byteLength":7248, + "byteOffset":116415564, + "target":34962 + }, + { + "buffer":0, + "byteLength":7248, + "byteOffset":116422812, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":116430060, + "target":34963 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":116432052, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":116438940, + "target":34962 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":116445828, + "target":34962 + }, + { + "buffer":0, + "byteLength":8136, + "byteOffset":116453964, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":116462100, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":116467524, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":116474388, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":116481252, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":116488212, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":116495172, + "target":34962 + }, + { + "buffer":0, + "byteLength":7032, + "byteOffset":116502204, + "target":34962 + }, + { + "buffer":0, + "byteLength":9636, + "byteOffset":116509236, + "target":34962 + }, + { + "buffer":0, + "byteLength":9636, + "byteOffset":116518872, + "target":34962 + }, + { + "buffer":0, + "byteLength":6424, + "byteOffset":116528508, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":116534932, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":116535652, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":116536372, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":116536852, + "target":34962 + }, + { + "buffer":0, + "byteLength":7128, + "byteOffset":116543980, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":116551108, + "target":34963 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":116553100, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":116553748, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":116554396, + "target":34962 + }, + { + "buffer":0, + "byteLength":2028, + "byteOffset":116554828, + "target":34962 + }, + { + "buffer":0, + "byteLength":2028, + "byteOffset":116556856, + "target":34962 + }, + { + "buffer":0, + "byteLength":1352, + "byteOffset":116558884, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116560236, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116560284, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":116560332, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":116560364, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":116564420, + "target":34962 + }, + { + "buffer":0, + "byteLength":2704, + "byteOffset":116568476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":116571180, + "target":34963 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":116572620, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":116594340, + "target":34962 + }, + { + "buffer":0, + "byteLength":14480, + "byteOffset":116616060, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":116630540, + "target":34962 + }, + { + "buffer":0, + "byteLength":6864, + "byteOffset":116637404, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":116644268, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":116651204, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":116658140, + "target":34963 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":116660132, + "target":34962 + }, + { + "buffer":0, + "byteLength":912, + "byteOffset":116661044, + "target":34962 + }, + { + "buffer":0, + "byteLength":608, + "byteOffset":116661956, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":116662564, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":116663428, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116664292, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":116664340, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":116664388, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":116664420, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":116671380, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":116678340, + "target":34963 + }, + { + "buffer":0, + "byteLength":4020, + "byteOffset":116680332, + "target":34962 + }, + { + "buffer":0, + "byteLength":4020, + "byteOffset":116684352, + "target":34962 + }, + { + "buffer":0, + "byteLength":2680, + "byteOffset":116688372, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":116691052, + "target":34963 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":116692492, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":116709532, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":116726572, + "target":34962 + }, + { + "buffer":0, + "byteLength":27372, + "byteOffset":116737932, + "target":34962 + }, + { + "buffer":0, + "byteLength":27372, + "byteOffset":116765304, + "target":34962 + }, + { + "buffer":0, + "byteLength":18248, + "byteOffset":116792676, + "target":34962 + }, + { + "buffer":0, + "byteLength":7272, + "byteOffset":116810924, + "target":34962 + }, + { + "buffer":0, + "byteLength":7272, + "byteOffset":116818196, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":116825468, + "target":34962 + }, + { + "buffer":0, + "byteLength":7116, + "byteOffset":116832584, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":116839700, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":116846636, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":116853572, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":116856956, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":116860340, + "target":34962 + }, + { + "buffer":0, + "byteLength":95880, + "byteOffset":116862596, + "target":34962 + }, + { + "buffer":0, + "byteLength":95880, + "byteOffset":116958476, + "target":34962 + }, + { + "buffer":0, + "byteLength":63920, + "byteOffset":117054356, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":117118276, + "target":34963 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":117151396, + "target":34962 + }, + { + "buffer":0, + "byteLength":17856, + "byteOffset":117169252, + "target":34962 + }, + { + "buffer":0, + "byteLength":11904, + "byteOffset":117187108, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":117199012, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":117206164, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117213316, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117213604, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":117213892, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":117213964, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":117214012, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":117214060, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":117214092, + "target":34962 + }, + { + "buffer":0, + "byteLength":7416, + "byteOffset":117221508, + "target":34962 + }, + { + "buffer":0, + "byteLength":4944, + "byteOffset":117228924, + "target":34962 + }, + { + "buffer":0, + "byteLength":48744, + "byteOffset":117233868, + "target":34962 + }, + { + "buffer":0, + "byteLength":48744, + "byteOffset":117282612, + "target":34962 + }, + { + "buffer":0, + "byteLength":32496, + "byteOffset":117331356, + "target":34962 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":117363852, + "target":34962 + }, + { + "buffer":0, + "byteLength":1452, + "byteOffset":117365304, + "target":34962 + }, + { + "buffer":0, + "byteLength":968, + "byteOffset":117366756, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":117367724, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":117369476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":117371228, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":117372396, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":117372444, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":117372492, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117372524, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117372812, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":117373100, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117373292, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117373580, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":117373868, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":117374060, + "target":34962 + }, + { + "buffer":0, + "byteLength":10584, + "byteOffset":117384644, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":117395228, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":117402284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":117403724, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":117405164, + "target":34962 + }, + { + "buffer":0, + "byteLength":456, + "byteOffset":117406124, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117406580, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117406868, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":117407156, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":117407348, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":117416348, + "target":34962 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":117425348, + "target":34962 + }, + { + "buffer":0, + "byteLength":636, + "byteOffset":117425984, + "target":34962 + }, + { + "buffer":0, + "byteLength":424, + "byteOffset":117426620, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":117427044, + "target":34962 + }, + { + "buffer":0, + "byteLength":3792, + "byteOffset":117430836, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":117434628, + "target":34963 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":117436068, + "target":34962 + }, + { + "buffer":0, + "byteLength":3120, + "byteOffset":117439188, + "target":34962 + }, + { + "buffer":0, + "byteLength":2080, + "byteOffset":117442308, + "target":34962 + }, + { + "buffer":0, + "byteLength":9672, + "byteOffset":117444388, + "target":34962 + }, + { + "buffer":0, + "byteLength":9672, + "byteOffset":117454060, + "target":34962 + }, + { + "buffer":0, + "byteLength":6448, + "byteOffset":117463732, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":117470180, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":117472724, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":117473588, + "target":34962 + }, + { + "buffer":0, + "byteLength":2028, + "byteOffset":117474452, + "target":34962 + }, + { + "buffer":0, + "byteLength":2028, + "byteOffset":117476480, + "target":34962 + }, + { + "buffer":0, + "byteLength":1352, + "byteOffset":117478508, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":117479860, + "target":34963 + }, + { + "buffer":0, + "byteLength":13812, + "byteOffset":117480580, + "target":34962 + }, + { + "buffer":0, + "byteLength":13812, + "byteOffset":117494392, + "target":34962 + }, + { + "buffer":0, + "byteLength":9208, + "byteOffset":117508204, + "target":34962 + }, + { + "buffer":0, + "byteLength":7860, + "byteOffset":117517412, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":117525272, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":117532256, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":117539240, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":117546080, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":117552920, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":117554912, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":117554960, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":117555008, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":117555040, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":117555664, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":117556288, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":117556704, + "target":34962 + }, + { + "buffer":0, + "byteLength":7776, + "byteOffset":117564480, + "target":34962 + }, + { + "buffer":0, + "byteLength":5184, + "byteOffset":117572256, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117577440, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117577728, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":117578016, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117578208, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117578496, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":117578784, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":117579840, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":117580896, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":117581600, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":117585656, + "target":34962 + }, + { + "buffer":0, + "byteLength":2704, + "byteOffset":117589712, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":117592416, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":117599352, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":117606288, + "target":34963 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":117608280, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":117615336, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":117622392, + "target":34963 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":117624384, + "target":34962 + }, + { + "buffer":0, + "byteLength":9000, + "byteOffset":117633384, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":117642384, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":117642432, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":117642480, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":117642512, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":117645200, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":117647888, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":117647936, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":117647984, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":117648016, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":117654904, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":117661792, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":117663784, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":117663832, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":117663880, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":117663912, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":117670872, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":117677832, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117679824, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117680112, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":117680400, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":117680592, + "target":34962 + }, + { + "buffer":0, + "byteLength":4152, + "byteOffset":117684744, + "target":34962 + }, + { + "buffer":0, + "byteLength":2768, + "byteOffset":117688896, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":117691664, + "target":34963 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":117693104, + "target":34962 + }, + { + "buffer":0, + "byteLength":6960, + "byteOffset":117700064, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":117707024, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":117708776, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":117710528, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117711696, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117711984, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":117712272, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":117712464, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":117715848, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":117719232, + "target":34962 + }, + { + "buffer":0, + "byteLength":1140, + "byteOffset":117721488, + "target":34962 + }, + { + "buffer":0, + "byteLength":1140, + "byteOffset":117722628, + "target":34962 + }, + { + "buffer":0, + "byteLength":760, + "byteOffset":117723768, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117724528, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":117724816, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":117725104, + "target":34962 + }, + { + "buffer":0, + "byteLength":2760, + "byteOffset":117727864, + "target":34962 + }, + { + "buffer":0, + "byteLength":984, + "byteOffset":117730624, + "target":34963 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":117731608, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":117734296, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":117736984, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":117737848, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":117738712, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":117738760, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":117738808, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":117738840, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":117738888, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":117738936, + "target":34962 + }, + { + "buffer":0, + "byteLength":92748, + "byteOffset":117738968, + "target":34962 + }, + { + "buffer":0, + "byteLength":92748, + "byteOffset":117831716, + "target":34962 + }, + { + "buffer":0, + "byteLength":61832, + "byteOffset":117924464, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":117986296, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":118019416, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":118019704, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":118019992, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":118020280, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":118020568, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":118020760, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":118022512, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":118024264, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":118025432, + "target":34962 + }, + { + "buffer":0, + "byteLength":7896, + "byteOffset":118033328, + "target":34962 + }, + { + "buffer":0, + "byteLength":5264, + "byteOffset":118041224, + "target":34962 + }, + { + "buffer":0, + "byteLength":2796, + "byteOffset":118046488, + "target":34962 + }, + { + "buffer":0, + "byteLength":2796, + "byteOffset":118049284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1864, + "byteOffset":118052080, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":118053944, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":118054520, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":118055096, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":118055480, + "target":34962 + }, + { + "buffer":0, + "byteLength":7152, + "byteOffset":118062632, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":118069784, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":118072472, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":118075160, + "target":34962 + }, + { + "buffer":0, + "byteLength":1752, + "byteOffset":118076912, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":118078664, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":118079832, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":118080552, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":118081272, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":118081752, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":118082040, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":118082328, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":118089036, + "target":34962 + }, + { + "buffer":0, + "byteLength":4472, + "byteOffset":118095744, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":118100216, + "target":34962 + }, + { + "buffer":0, + "byteLength":6936, + "byteOffset":118107152, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":118114088, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":118116080, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":118116368, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":118116656, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":118116944, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":118117232, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":118117424, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":118117616, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":118117808, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":118117936, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":118122136, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":118126336, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":118127488, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":118128640, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":118128688, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":118128736, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":118128768, + "target":34962 + }, + { + "buffer":0, + "byteLength":4104, + "byteOffset":118132872, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":118136976, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":118139712, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":118140000, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":118140288, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":118140480, + "target":34962 + }, + { + "buffer":0, + "byteLength":7080, + "byteOffset":118147560, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":118154640, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":118157136, + "target":34962 + }, + { + "buffer":0, + "byteLength":1664, + "byteOffset":118159632, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":118161296, + "target":34963 + }, + { + "buffer":0, + "byteLength":32280, + "byteOffset":118162016, + "target":34962 + }, + { + "buffer":0, + "byteLength":32280, + "byteOffset":118194296, + "target":34962 + }, + { + "buffer":0, + "byteLength":21520, + "byteOffset":118226576, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":118248096, + "target":34962 + }, + { + "buffer":0, + "byteLength":19920, + "byteOffset":118268016, + "target":34962 + }, + { + "buffer":0, + "byteLength":13280, + "byteOffset":118287936, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":118301216, + "target":34962 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":118301936, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":118302656, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":118303136, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":118303184, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":118303232, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":118303264, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":118304608, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":118305952, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":118306816, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":118307680, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":118311712, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":118315744, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":118318432, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":118319872, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":118320160, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":118320448, + "target":34962 + }, + { + "buffer":0, + "byteLength":7140, + "byteOffset":118327588, + "target":34962 + }, + { + "buffer":0, + "byteLength":1992, + "byteOffset":118334728, + "target":34963 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":118336720, + "target":34962 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":118337572, + "target":34962 + }, + { + "buffer":0, + "byteLength":568, + "byteOffset":118338424, + "target":34962 + }, + { + "buffer":0, + "byteLength":27372, + "byteOffset":118338992, + "target":34962 + }, + { + "buffer":0, + "byteLength":27372, + "byteOffset":118366364, + "target":34962 + }, + { + "buffer":0, + "byteLength":18248, + "byteOffset":118393736, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":118411984, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":118412032, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":118412080, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":118412112, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":118412784, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":118413456, + "target":34962 + }, + { + "buffer":0, + "byteLength":5868, + "byteOffset":118413904, + "target":34962 + }, + { + "buffer":0, + "byteLength":5868, + "byteOffset":118419772, + "target":34962 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":118425640, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":118429552, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":118436440, + "target":34962 + }, + { + "buffer":0, + "byteLength":9588, + "byteOffset":118443328, + "target":34962 + }, + { + "buffer":0, + "byteLength":9588, + "byteOffset":118452916, + "target":34962 + }, + { + "buffer":0, + "byteLength":6392, + "byteOffset":118462504, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":118468896, + "target":34963 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":118471440, + "target":34962 + }, + { + "buffer":0, + "byteLength":6984, + "byteOffset":118478424, + "target":34962 + }, + { + "buffer":0, + "byteLength":9552, + "byteOffset":118485408, + "target":34962 + }, + { + "buffer":0, + "byteLength":9552, + "byteOffset":118494960, + "target":34962 + }, + { + "buffer":0, + "byteLength":6368, + "byteOffset":118504512, + "target":34962 + }, + { + "buffer":0, + "byteLength":2544, + "byteOffset":118510880, + "target":34963 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":118513424, + "target":34962 + }, + { + "buffer":0, + "byteLength":4200, + "byteOffset":118517624, + "target":34962 + }, + { + "buffer":0, + "byteLength":2800, + "byteOffset":118521824, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":118524624, + "target":34963 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":118526064, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":118527528, + "target":34962 + }, + { + "buffer":0, + "byteLength":976, + "byteOffset":118528992, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":118529968, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":118530568, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":118531168, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":118531568, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":118531616, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":118531664, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":118531696, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":118531744, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":118531792, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":118531824, + "target":34962 + }, + { + "buffer":0, + "byteLength":6888, + "byteOffset":118538712, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":118545600, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":118545888, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":118546176, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":118546368, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":118547808, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":118549248, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":118550208, + "target":34962 + }, + { + "buffer":0, + "byteLength":2688, + "byteOffset":118552896, + "target":34962 + }, + { + "buffer":0, + "byteLength":4008, + "byteOffset":118555584, + "target":34962 + }, + { + "buffer":0, + "byteLength":4008, + "byteOffset":118559592, + "target":34962 + }, + { + "buffer":0, + "byteLength":2672, + "byteOffset":118563600, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":118566272, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":118567712, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":118567760, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":118567808, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":118567840, + "target":34962 + }, + { + "buffer":0, + "byteLength":4056, + "byteOffset":118571896, + "target":34962 + }, + { + "buffer":0, + "byteLength":2704, + "byteOffset":118575952, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":118578656, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":118579520, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":118580384, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":118583120, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":118585856, + "target":34962 + }, + { + "buffer":0, + "byteLength":3288, + "byteOffset":118587680, + "target":34962 + }, + { + "buffer":0, + "byteLength":3288, + "byteOffset":118590968, + "target":34962 + }, + { + "buffer":0, + "byteLength":2192, + "byteOffset":118594256, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":118596448, + "target":34962 + }, + { + "buffer":0, + "byteLength":21720, + "byteOffset":118618168, + "target":34962 + }, + { + "buffer":0, + "byteLength":14480, + "byteOffset":118639888, + "target":34962 + }, + { + "buffer":0, + "byteLength":95832, + "byteOffset":118654368, + "target":34962 + }, + { + "buffer":0, + "byteLength":95832, + "byteOffset":118750200, + "target":34962 + }, + { + "buffer":0, + "byteLength":63888, + "byteOffset":118846032, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":118909920, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":118909968, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":118910016, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":118910048, + "target":34962 + }, + { + "buffer":0, + "byteLength":17040, + "byteOffset":118927088, + "target":34962 + }, + { + "buffer":0, + "byteLength":11360, + "byteOffset":118944128, + "target":34962 + }, + { + "buffer":0, + "byteLength":81696, + "byteOffset":118955488, + "target":34962 + }, + { + "buffer":0, + "byteLength":81696, + "byteOffset":119037184, + "target":34962 + }, + { + "buffer":0, + "byteLength":54464, + "byteOffset":119118880, + "target":34962 + }, + { + "buffer":0, + "byteLength":2460, + "byteOffset":119173344, + "target":34962 + }, + { + "buffer":0, + "byteLength":2460, + "byteOffset":119175804, + "target":34962 + }, + { + "buffer":0, + "byteLength":1640, + "byteOffset":119178264, + "target":34962 + }, + { + "buffer":0, + "byteLength":840, + "byteOffset":119179904, + "target":34963 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":119180744, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":119187584, + "target":34962 + }, + { + "buffer":0, + "byteLength":3996, + "byteOffset":119194424, + "target":34962 + }, + { + "buffer":0, + "byteLength":3996, + "byteOffset":119198420, + "target":34962 + }, + { + "buffer":0, + "byteLength":2664, + "byteOffset":119202416, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":119205080, + "target":34963 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":119206520, + "target":34962 + }, + { + "buffer":0, + "byteLength":3384, + "byteOffset":119209904, + "target":34962 + }, + { + "buffer":0, + "byteLength":2256, + "byteOffset":119213288, + "target":34962 + }, + { + "buffer":0, + "byteLength":97080, + "byteOffset":119215544, + "target":34962 + }, + { + "buffer":0, + "byteLength":97080, + "byteOffset":119312624, + "target":34962 + }, + { + "buffer":0, + "byteLength":64720, + "byteOffset":119409704, + "target":34962 + }, + { + "buffer":0, + "byteLength":33120, + "byteOffset":119474424, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":119507544, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":119507592, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":119507640, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":119507672, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":119507720, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":119507768, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":119507800, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":119507848, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":119507896, + "target":34962 + }, + { + "buffer":0, + "byteLength":3924, + "byteOffset":119507928, + "target":34962 + }, + { + "buffer":0, + "byteLength":3924, + "byteOffset":119511852, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":119515776, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":119518392, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":119521008, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":119522160, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":119523312, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":119524080, + "target":34962 + }, + { + "buffer":0, + "byteLength":3924, + "byteOffset":119524848, + "target":34962 + }, + { + "buffer":0, + "byteLength":3924, + "byteOffset":119528772, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":119532696, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":119535312, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":119537928, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":119539080, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":119540232, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":119541000, + "target":34962 + }, + { + "buffer":0, + "byteLength":3924, + "byteOffset":119541768, + "target":34962 + }, + { + "buffer":0, + "byteLength":3924, + "byteOffset":119545692, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":119549616, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":119552232, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":119554848, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":119556000, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":119557152, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":119557920, + "target":34962 + }, + { + "buffer":0, + "byteLength":3924, + "byteOffset":119558688, + "target":34962 + }, + { + "buffer":0, + "byteLength":3924, + "byteOffset":119562612, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":119566536, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":119569152, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":119571768, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":119572920, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":119574072, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":119574840, + "target":34962 + }, + { + "buffer":0, + "byteLength":3924, + "byteOffset":119575608, + "target":34962 + }, + { + "buffer":0, + "byteLength":3924, + "byteOffset":119579532, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":119583456, + "target":34962 + }, + { + "buffer":0, + "byteLength":2616, + "byteOffset":119586072, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":119588688, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":119589840, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":119590992, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":119591760, + "target":34962 + }, + { + "buffer":0, + "byteLength":14088, + "byteOffset":119592528, + "target":34962 + }, + { + "buffer":0, + "byteLength":14088, + "byteOffset":119606616, + "target":34962 + }, + { + "buffer":0, + "byteLength":9392, + "byteOffset":119620704, + "target":34962 + }, + { + "buffer":0, + "byteLength":3528, + "byteOffset":119630096, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":119633624, + "uri":"substation.bin" + } + ] +} diff --git a/public/models/test/back_edit_3.glb b/public/models/test/back_edit_3.glb new file mode 100644 index 0000000..b03609f Binary files /dev/null and b/public/models/test/back_edit_3.glb differ diff --git a/public/models/test/backe_edit_1.glb b/public/models/test/backe_edit_1.glb new file mode 100644 index 0000000..5d4669f Binary files /dev/null and b/public/models/test/backe_edit_1.glb differ diff --git a/public/models/test/backe_edit_2.bin b/public/models/test/backe_edit_2.bin new file mode 100644 index 0000000..f85a110 Binary files /dev/null and b/public/models/test/backe_edit_2.bin differ diff --git a/public/models/test/backe_edit_2.gltf b/public/models/test/backe_edit_2.gltf new file mode 100644 index 0000000..a8718ca --- /dev/null +++ b/public/models/test/backe_edit_2.gltf @@ -0,0 +1,3810 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v5.0.21", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular", + "KHR_materials_ior" + ], + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"\u5e73\u9762.001", + "scale":[ + 45.414642333984375, + 153.37872314453125, + 153.37872314453125 + ], + "translation":[ + -19.32164764404297, + 0, + -5.2007293701171875 + ] + }, + { + "mesh":1, + "name":"6670032", + "rotation":[ + -0.038220349699258804, + 0, + 0, + 0.9992693662643433 + ], + "scale":[ + 0.0011606558691710234, + 0.0011606558691710234, + 0.0011606558691710234 + ], + "translation":[ + -13.910268783569336, + -0.22574648261070251, + -0.14909043908119202 + ] + }, + { + "mesh":2, + "name":"\u7acb\u65b9\u4f53", + "translation":[ + 25.41417694091797, + 12.717071533203125, + -3.5751800537109375 + ] + }, + { + "mesh":3, + "name":"\u7acb\u65b9\u4f53.001", + "translation":[ + -20.226118087768555, + 12.89236068725586, + -153.2369384765625 + ] + }, + { + "mesh":4, + "name":"\u7acb\u65b9\u4f53.002", + "scale":[ + 1, + 1, + 1.0110293626785278 + ], + "translation":[ + -63.55136489868164, + 13.098472595214844, + -93.38832092285156 + ] + }, + { + "mesh":5, + "name":"\u7acb\u65b9\u4f53.003", + "scale":[ + 1, + 0.7956498861312866, + 1.1444997787475586 + ], + "translation":[ + -63.737483978271484, + 13.327964782714844, + 53.27891540527344 + ] + }, + { + "mesh":6, + "name":"\u7acb\u65b9\u4f53.004", + "rotation":[ + 0, + -0.23540642857551575, + 0, + 0.9718971252441406 + ], + "scale":[ + 1.0598292350769043, + 1, + 1.0161875486373901 + ], + "translation":[ + -41.02251434326172, + 13.183030128479004, + 113.71217346191406 + ] + }, + { + "mesh":7, + "name":"\u7acb\u65b9\u4f53.005", + "scale":[ + 0.9392206072807312, + 1, + 1 + ], + "translation":[ + 9.20844554901123, + 12.777854919433594, + 0.7852859497070312 + ] + }, + { + "mesh":8, + "name":"\u7acb\u65b9\u4f53.006", + "translation":[ + -4.947212219238281, + 12.919384002685547, + 12.523233413696289 + ] + }, + { + "mesh":9, + "name":"\u7acb\u65b9\u4f53.007", + "scale":[ + 1, + 1, + 4.424475193023682 + ], + "translation":[ + -4.947212219238281, + 12.919384002685547, + 81.58232116699219 + ] + }, + { + "mesh":10, + "name":"\u7acb\u65b9\u4f53.008", + "rotation":[ + 0, + -0.23540633916854858, + 0, + 0.9718970656394958 + ], + "scale":[ + 0.6014668941497803, + 1, + 0.9286192059516907 + ], + "translation":[ + 5.847611904144287, + 13.084247589111328, + 136.5916748046875 + ] + }, + { + "mesh":11, + "name":"\u7acb\u65b9\u4f53.009", + "translation":[ + 8.252402305603027, + 12.777854919433594, + -49.545413970947266 + ] + }, + { + "mesh":12, + "name":"\u7acb\u65b9\u4f53.010", + "scale":[ + 0.9603919386863708, + 1, + 1 + ], + "translation":[ + 8.875426292419434, + 12.777854919433594, + -100.30828857421875 + ] + }, + { + "mesh":13, + "name":"\u7acb\u65b9\u4f53.011", + "scale":[ + 0.9466110467910767, + 1, + 1 + ], + "translation":[ + 9.092196464538574, + 12.777854919433594, + -137.82896423339844 + ] + }, + { + "mesh":14, + "name":"\u7acb\u65b9\u4f53.012", + "scale":[ + 1.3968884944915771, + 1, + 1 + ], + "translation":[ + -40.18878936767578, + 12.777854919433594, + 2.989398717880249 + ] + }, + { + "mesh":15, + "name":"\u7acb\u65b9\u4f53.013", + "scale":[ + 1.3968884944915771, + 1, + 1 + ], + "translation":[ + -40.18878936767578, + 12.777854919433594, + -14.59579849243164 + ] + }, + { + "mesh":16, + "name":"\u7acb\u65b9\u4f53.014", + "scale":[ + 1.3968884944915771, + 1, + 1 + ], + "translation":[ + -40.18878936767578, + 12.777854919433594, + -35.578372955322266 + ] + }, + { + "mesh":17, + "name":"\u7acb\u65b9\u4f53.015", + "scale":[ + 1.3968884944915771, + 1, + 1 + ], + "translation":[ + -40.18878936767578, + 12.777854919433594, + -52.22283935546875 + ] + }, + { + "mesh":18, + "name":"\u7acb\u65b9\u4f53.016", + "scale":[ + 1.3968884944915771, + 1, + 1 + ], + "translation":[ + -40.18878936767578, + 12.777854919433594, + -69.89854431152344 + ] + }, + { + "mesh":19, + "name":"\u7acb\u65b9\u4f53.017", + "scale":[ + 1.3968884944915771, + 1, + 1 + ], + "translation":[ + -40.18878936767578, + 12.777854919433594, + -99.59487915039062 + ] + }, + { + "mesh":20, + "name":"\u7acb\u65b9\u4f53.018", + "scale":[ + 1.3968884944915771, + 1, + 1 + ], + "translation":[ + -40.18878936767578, + 12.777854919433594, + -118.28253173828125 + ] + }, + { + "mesh":21, + "name":"\u7acb\u65b9\u4f53.019", + "scale":[ + 1.3968884944915771, + 1, + 1 + ], + "translation":[ + -40.18878936767578, + 12.777854919433594, + -131.64251708984375 + ] + }, + { + "mesh":22, + "name":"\u7acb\u65b9\u4f53.020", + "scale":[ + 1, + 1, + 2.783579111099243 + ], + "translation":[ + -18.4849796295166, + 10.509234428405762, + 64.908203125 + ] + }, + { + "mesh":23, + "name":"\u7acb\u65b9\u4f53.021", + "scale":[ + 1, + 1.1000018119812012, + 0.8450478315353394 + ], + "translation":[ + -18.4849796295166, + 11.801196098327637, + 115.74224853515625 + ] + }, + { + "mesh":24, + "name":"\u7acb\u65b9\u4f53.022", + "scale":[ + 1, + 1.1000018119812012, + 0.33048516511917114 + ], + "translation":[ + -18.4849796295166, + 11.801196098327637, + 23.39573860168457 + ] + }, + { + "mesh":25, + "name":"\u7acb\u65b9\u4f53.023", + "scale":[ + 1, + 1.1000018119812012, + 1.1453503370285034 + ], + "translation":[ + -18.4849796295166, + 11.801196098327637, + -2.7897958755493164 + ] + }, + { + "mesh":26, + "name":"\u7acb\u65b9\u4f53.024", + "scale":[ + 0.6989372968673706, + 1.1000018119812012, + 0.8005279898643494 + ], + "translation":[ + -18.236467361450195, + 11.801196098327637, + -43.99610137939453 + ] + }, + { + "mesh":27, + "name":"\u7acb\u65b9\u4f53.025", + "scale":[ + 0.6989372968673706, + 1.1000018119812012, + 0.8005279898643494 + ], + "translation":[ + -18.236467361450195, + 11.801196098327637, + -77.95113372802734 + ] + }, + { + "mesh":28, + "name":"\u7acb\u65b9\u4f53.026", + "scale":[ + 1.3612585067749023, + 1.1000018119812012, + 1.5591177940368652 + ], + "translation":[ + -18.783180236816406, + 11.801196098327637, + -134.62290954589844 + ] + }, + { + "mesh":29, + "name":"\u7acb\u65b9\u4f53.027", + "scale":[ + 1.3612585067749023, + 1.1000018119812012, + 1.3256876468658447 + ], + "translation":[ + -4.91044807434082, + 12.361382484436035, + -137.32672119140625 + ] + }, + { + "mesh":30, + "name":"\u7acb\u65b9\u4f53.028", + "scale":[ + 1.3612585067749023, + 1.1000018119812012, + 0.7245417833328247 + ], + "translation":[ + -5.270610809326172, + 12.474832534790039, + -93.0939712524414 + ] + }, + { + "mesh":31, + "name":"\u7acb\u65b9\u4f53.029", + "scale":[ + 1.3612585067749023, + 1.1000018119812012, + 1.19120454788208 + ], + "translation":[ + -5.270610809326172, + 12.474832534790039, + -62.35702896118164 + ] + }, + { + "mesh":32, + "name":"group_sd.01", + "scale":[ + 27.340913772583008, + 27.340913772583008, + 27.340913772583008 + ], + "translation":[ + -12.069418907165527, + 5.617216110229492, + 104.40113830566406 + ] + }, + { + "mesh":33, + "name":"group_light_01.002", + "rotation":[ + 0.6744304895401001, + -0.028162892907857895, + 0.025759849697351456, + 0.7373512387275696 + ], + "translation":[ + -12.949164390563965, + 11.950531005859375, + 88.65589141845703 + ] + }, + { + "mesh":34, + "name":"group_sd.02", + "scale":[ + 27.340913772583008, + 27.340913772583008, + 27.340913772583008 + ], + "translation":[ + -44.14558792114258, + 6.226097106933594, + 52.79566955566406 + ] + }, + { + "mesh":35, + "name":"group_sd.03", + "scale":[ + 27.340913772583008, + 27.340913772583008, + 27.340913772583008 + ], + "translation":[ + 12.134590148925781, + 6.434732437133789, + 56.38587951660156 + ] + }, + { + "mesh":36, + "name":"group_sd.04", + "scale":[ + 27.340913772583008, + 27.340913772583008, + 27.340913772583008 + ], + "translation":[ + 12.134590148925781, + 6.434732437133789, + -72.99954223632812 + ] + }, + { + "mesh":37, + "name":"group_sd.05", + "scale":[ + 27.340913772583008, + 27.340913772583008, + 27.340913772583008 + ], + "translation":[ + -44.82009506225586, + 6.434732437133789, + -109.80776977539062 + ] + }, + { + "mesh":38, + "name":"\u9525\u4f53.001", + "scale":[ + 17.079269409179688, + 11.785720825195312, + 17.079269409179688 + ], + "translation":[ + -44.0277214050293, + 21.413820266723633, + 52.84942626953125 + ] + }, + { + "mesh":39, + "name":"\u9525\u4f53.002", + "scale":[ + 17.079269409179688, + 11.785720825195312, + 17.079269409179688 + ], + "translation":[ + 12.094429016113281, + 21.413820266723633, + 56.345584869384766 + ] + }, + { + "mesh":40, + "name":"\u9525\u4f53.003", + "scale":[ + 17.079269409179688, + 11.785720825195312, + 17.079269409179688 + ], + "translation":[ + -12.061480522155762, + 20.824108123779297, + 104.38317108154297 + ] + }, + { + "mesh":41, + "name":"\u9525\u4f53.004", + "scale":[ + 17.079269409179688, + 11.785720825195312, + 17.079269409179688 + ], + "translation":[ + 12.094429016113281, + 21.413820266723633, + -73.03390502929688 + ] + }, + { + "mesh":42, + "name":"\u9525\u4f53.005", + "scale":[ + 17.079269409179688, + 11.785720825195312, + 17.079269409179688 + ], + "translation":[ + -44.97568893432617, + 21.555130004882812, + -109.83759307861328 + ] + }, + { + "mesh":43, + "name":"group_sd.006", + "scale":[ + 27.340913772583008, + 27.340913772583008, + 27.340913772583008 + ], + "translation":[ + -12.069418907165527, + 5.617216110229492, + -22.852447509765625 + ] + }, + { + "mesh":44, + "name":"\u9525\u4f53.006", + "scale":[ + 17.079269409179688, + 11.785720825195312, + 17.079269409179688 + ], + "translation":[ + -12.061480522155762, + 20.824108123779297, + -22.87041473388672 + ] + }, + { + "mesh":45, + "name":"group_sd.007", + "scale":[ + 27.340913772583008, + 27.340913772583008, + 27.340913772583008 + ], + "translation":[ + -12.069418907165527, + 5.617216110229492, + -119.10108184814453 + ] + }, + { + "mesh":46, + "name":"\u9525\u4f53.007", + "scale":[ + 17.079269409179688, + 11.785720825195312, + 17.079269409179688 + ], + "translation":[ + -12.061480522155762, + 20.824108123779297, + -119.11904907226562 + ] + } + ], + "materials":[ + { + "doubleSided":true, + "name":"\u6750\u8d28.038", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"Lime._110158", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.9254902601242065, + 0.8941177129745483, + 0.8352941870689392, + 1 + ], + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.015", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"\u6750\u8d28.039", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.7991030812263489, + 0.30946898460388184, + 0.4286905527114868, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"Lime._20241010160010", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.9725492000579834, + 0.9725492000579834, + 0.9725492000579834, + 1 + ], + "roughnessFactor":0.858578622341156 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"Lime._20241010160011", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.011764708906412125, + 0.011764708906412125, + 0.011764708906412125, + 1 + ], + "roughnessFactor":0.858578622341156 + } + }, + { + "alphaMode":"BLEND", + "name":"\u6750\u8d28", + "pbrMetallicRoughness":{ + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"\u5e73\u9762.001", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"\u7f51\u683c.204", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53", + "primitives":[ + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.001", + "primitives":[ + { + "attributes":{ + "POSITION":12, + "NORMAL":13, + "TEXCOORD_0":14 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.002", + "primitives":[ + { + "attributes":{ + "POSITION":15, + "NORMAL":16, + "TEXCOORD_0":17 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.003", + "primitives":[ + { + "attributes":{ + "POSITION":18, + "NORMAL":19, + "TEXCOORD_0":20 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.004", + "primitives":[ + { + "attributes":{ + "POSITION":21, + "NORMAL":22, + "TEXCOORD_0":23 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.005", + "primitives":[ + { + "attributes":{ + "POSITION":24, + "NORMAL":25, + "TEXCOORD_0":26 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.006", + "primitives":[ + { + "attributes":{ + "POSITION":27, + "NORMAL":28, + "TEXCOORD_0":29 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.007", + "primitives":[ + { + "attributes":{ + "POSITION":30, + "NORMAL":31, + "TEXCOORD_0":32 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.008", + "primitives":[ + { + "attributes":{ + "POSITION":33, + "NORMAL":34, + "TEXCOORD_0":35 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.009", + "primitives":[ + { + "attributes":{ + "POSITION":36, + "NORMAL":37, + "TEXCOORD_0":38 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.010", + "primitives":[ + { + "attributes":{ + "POSITION":39, + "NORMAL":40, + "TEXCOORD_0":41 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.011", + "primitives":[ + { + "attributes":{ + "POSITION":42, + "NORMAL":43, + "TEXCOORD_0":44 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.012", + "primitives":[ + { + "attributes":{ + "POSITION":45, + "NORMAL":46, + "TEXCOORD_0":47 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.013", + "primitives":[ + { + "attributes":{ + "POSITION":48, + "NORMAL":49, + "TEXCOORD_0":50 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.014", + "primitives":[ + { + "attributes":{ + "POSITION":51, + "NORMAL":52, + "TEXCOORD_0":53 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.015", + "primitives":[ + { + "attributes":{ + "POSITION":54, + "NORMAL":55, + "TEXCOORD_0":56 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.016", + "primitives":[ + { + "attributes":{ + "POSITION":57, + "NORMAL":58, + "TEXCOORD_0":59 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.017", + "primitives":[ + { + "attributes":{ + "POSITION":60, + "NORMAL":61, + "TEXCOORD_0":62 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.018", + "primitives":[ + { + "attributes":{ + "POSITION":63, + "NORMAL":64, + "TEXCOORD_0":65 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.019", + "primitives":[ + { + "attributes":{ + "POSITION":66, + "NORMAL":67, + "TEXCOORD_0":68 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.020", + "primitives":[ + { + "attributes":{ + "POSITION":69, + "NORMAL":70, + "TEXCOORD_0":71 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.021", + "primitives":[ + { + "attributes":{ + "POSITION":72, + "NORMAL":73, + "TEXCOORD_0":74 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.022", + "primitives":[ + { + "attributes":{ + "POSITION":75, + "NORMAL":76, + "TEXCOORD_0":77 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.023", + "primitives":[ + { + "attributes":{ + "POSITION":78, + "NORMAL":79, + "TEXCOORD_0":80 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.024", + "primitives":[ + { + "attributes":{ + "POSITION":81, + "NORMAL":82, + "TEXCOORD_0":83 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.025", + "primitives":[ + { + "attributes":{ + "POSITION":84, + "NORMAL":85, + "TEXCOORD_0":86 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.026", + "primitives":[ + { + "attributes":{ + "POSITION":87, + "NORMAL":88, + "TEXCOORD_0":89 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.027", + "primitives":[ + { + "attributes":{ + "POSITION":90, + "NORMAL":91, + "TEXCOORD_0":92 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.028", + "primitives":[ + { + "attributes":{ + "POSITION":93, + "NORMAL":94, + "TEXCOORD_0":95 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u7acb\u65b9\u4f53.029", + "primitives":[ + { + "attributes":{ + "POSITION":96, + "NORMAL":97, + "TEXCOORD_0":98 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"\u9525\u4f53", + "primitives":[ + { + "attributes":{ + "POSITION":99, + "NORMAL":100, + "TEXCOORD_0":101 + }, + "indices":102, + "material":3 + } + ] + }, + { + "name":"\u9525\u4f53.002", + "primitives":[ + { + "attributes":{ + "POSITION":103, + "NORMAL":104, + "TEXCOORD_0":105 + }, + "indices":106, + "material":4 + }, + { + "attributes":{ + "POSITION":107, + "NORMAL":108, + "TEXCOORD_0":109 + }, + "indices":110, + "material":5 + } + ] + }, + { + "name":"\u9525\u4f53.006", + "primitives":[ + { + "attributes":{ + "POSITION":111, + "NORMAL":112, + "TEXCOORD_0":113 + }, + "indices":102, + "material":3 + } + ] + }, + { + "name":"\u9525\u4f53.010", + "primitives":[ + { + "attributes":{ + "POSITION":114, + "NORMAL":115, + "TEXCOORD_0":116 + }, + "indices":102, + "material":3 + } + ] + }, + { + "name":"\u9525\u4f53.014", + "primitives":[ + { + "attributes":{ + "POSITION":117, + "NORMAL":118, + "TEXCOORD_0":119 + }, + "indices":102, + "material":3 + } + ] + }, + { + "name":"\u9525\u4f53.016", + "primitives":[ + { + "attributes":{ + "POSITION":120, + "NORMAL":121, + "TEXCOORD_0":122 + }, + "indices":102, + "material":3 + } + ] + }, + { + "name":"\u9525\u4f53.004", + "primitives":[ + { + "attributes":{ + "POSITION":123, + "NORMAL":124, + "TEXCOORD_0":125 + }, + "indices":126, + "material":6 + } + ] + }, + { + "name":"\u9525\u4f53.005", + "primitives":[ + { + "attributes":{ + "POSITION":127, + "NORMAL":128, + "TEXCOORD_0":129 + }, + "indices":126, + "material":6 + } + ] + }, + { + "name":"\u9525\u4f53.008", + "primitives":[ + { + "attributes":{ + "POSITION":130, + "NORMAL":131, + "TEXCOORD_0":132 + }, + "indices":126, + "material":6 + } + ] + }, + { + "name":"\u9525\u4f53.009", + "primitives":[ + { + "attributes":{ + "POSITION":133, + "NORMAL":134, + "TEXCOORD_0":135 + }, + "indices":126, + "material":6 + } + ] + }, + { + "name":"\u9525\u4f53.012", + "primitives":[ + { + "attributes":{ + "POSITION":136, + "NORMAL":137, + "TEXCOORD_0":138 + }, + "indices":126, + "material":6 + } + ] + }, + { + "name":"\u9525\u4f53.013", + "primitives":[ + { + "attributes":{ + "POSITION":139, + "NORMAL":140, + "TEXCOORD_0":141 + }, + "indices":102, + "material":3 + } + ] + }, + { + "name":"\u9525\u4f53.018", + "primitives":[ + { + "attributes":{ + "POSITION":142, + "NORMAL":143, + "TEXCOORD_0":144 + }, + "indices":126, + "material":6 + } + ] + }, + { + "name":"\u9525\u4f53.019", + "primitives":[ + { + "attributes":{ + "POSITION":145, + "NORMAL":146, + "TEXCOORD_0":147 + }, + "indices":102, + "material":3 + } + ] + }, + { + "name":"\u9525\u4f53.020", + "primitives":[ + { + "attributes":{ + "POSITION":148, + "NORMAL":149, + "TEXCOORD_0":150 + }, + "indices":126, + "material":6 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":4, + "max":[ + 1, + 0, + 1 + ], + "min":[ + -1, + 0, + -1 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":6, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":24, + "max":[ + 5.605097770690918, + 12.310489654541016, + 5.069057941436768 + ], + "min":[ + -5.6051025390625, + 5.14984130859375e-05, + -5.069051265716553 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":24, + "max":[ + 1.2239608764648438, + 13.097004890441895, + 149.61224365234375 + ], + "min":[ + -1.2239608764648438, + -12.717056274414062, + -149.61224365234375 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":12, + "componentType":5126, + "count":24, + "max":[ + 44.388671875, + 12.92467212677002, + 1.273651123046875 + ], + "min":[ + -44.388671875, + -12.89236068725586, + -1.273651123046875 + ], + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5126, + "count":24, + "max":[ + 1.5228919982910156, + 12.72203540802002, + 57.92709732055664 + ], + "min":[ + -1.5228919982910156, + -13.098472595214844, + -57.92709732055664 + ], + "type":"VEC3" + }, + { + "bufferView":16, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18, + "componentType":5126, + "count":24, + "max":[ + 1.3617362976074219, + 15.705923080444336, + 60.097068786621094 + ], + "min":[ + -1.3617362976074219, + -16.751060485839844, + -60.097068786621094 + ], + "type":"VEC3" + }, + { + "bufferView":19, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":20, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":21, + "componentType":5126, + "count":24, + "max":[ + 24.112586975097656, + 12.638993263244629, + 1.2506561279296875 + ], + "min":[ + -24.112546920776367, + -13.193368911743164, + -1.2506561279296875 + ], + "type":"VEC3" + }, + { + "bufferView":22, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":23, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":24, + "componentType":5126, + "count":24, + "max":[ + 15.729732513427734, + 13.03724479675293, + 0.8127365112304688 + ], + "min":[ + -15.729729652404785, + -12.777854919433594, + -0.8127365112304688 + ], + "type":"VEC3" + }, + { + "bufferView":25, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":26, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":27, + "componentType":5126, + "count":24, + "max":[ + 0.8254489898681641, + 12.898104667663574, + 11.107067108154297 + ], + "min":[ + -0.8254489898681641, + -12.919384002685547, + -11.107067108154297 + ], + "type":"VEC3" + }, + { + "bufferView":28, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":29, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":30, + "componentType":5126, + "count":24, + "max":[ + 0.8254489898681641, + 12.898104667663574, + 11.107067108154297 + ], + "min":[ + -0.8254489898681641, + -12.919384002685547, + -11.107067108154297 + ], + "type":"VEC3" + }, + { + "bufferView":31, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":32, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":33, + "componentType":5126, + "count":24, + "max":[ + 24.112546920776367, + 12.736940383911133, + 1.2506561279296875 + ], + "min":[ + -24.112625122070312, + -13.193368911743164, + -1.2506561279296875 + ], + "type":"VEC3" + }, + { + "bufferView":34, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":35, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":36, + "componentType":5126, + "count":24, + "max":[ + 15.729729652404785, + 13.037245750427246, + 0.8127365112304688 + ], + "min":[ + -15.729729652404785, + -12.777854919433594, + -0.8127365112304688 + ], + "type":"VEC3" + }, + { + "bufferView":37, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":38, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":39, + "componentType":5126, + "count":24, + "max":[ + 15.729729652404785, + 13.03724479675293, + 0.812774658203125 + ], + "min":[ + -15.729732513427734, + -12.777854919433594, + -0.8127365112304688 + ], + "type":"VEC3" + }, + { + "bufferView":40, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":41, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":42, + "componentType":5126, + "count":24, + "max":[ + 15.729729652404785, + 13.03724479675293, + 0.812774658203125 + ], + "min":[ + -15.729732513427734, + -12.777854919433594, + -0.8127365112304688 + ], + "type":"VEC3" + }, + { + "bufferView":43, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":44, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":45, + "componentType":5126, + "count":24, + "max":[ + 15.729729652404785, + 13.03724479675293, + 0.8127365112304688 + ], + "min":[ + -15.729729652404785, + -12.777854919433594, + -0.8127365112304688 + ], + "type":"VEC3" + }, + { + "bufferView":46, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":47, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":48, + "componentType":5126, + "count":24, + "max":[ + 15.729729652404785, + 13.03724479675293, + 0.8127365112304688 + ], + "min":[ + -15.729729652404785, + -12.777854919433594, + -0.8127365112304688 + ], + "type":"VEC3" + }, + { + "bufferView":49, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":50, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":51, + "componentType":5126, + "count":24, + "max":[ + 15.729729652404785, + 13.03724479675293, + 0.8127365112304688 + ], + "min":[ + -15.729729652404785, + -12.777854919433594, + -0.8127365112304688 + ], + "type":"VEC3" + }, + { + "bufferView":52, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":53, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":54, + "componentType":5126, + "count":24, + "max":[ + 15.729729652404785, + 13.03724479675293, + 0.8127365112304688 + ], + "min":[ + -15.729729652404785, + -12.777854919433594, + -0.8127365112304688 + ], + "type":"VEC3" + }, + { + "bufferView":55, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":56, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":57, + "componentType":5126, + "count":24, + "max":[ + 15.729729652404785, + 13.03724479675293, + 0.8127365112304688 + ], + "min":[ + -15.729729652404785, + -12.777854919433594, + -0.8127365112304688 + ], + "type":"VEC3" + }, + { + "bufferView":58, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":59, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":60, + "componentType":5126, + "count":24, + "max":[ + 15.729729652404785, + 13.03724479675293, + 0.8127365112304688 + ], + "min":[ + -15.729729652404785, + -12.777854919433594, + -0.8127365112304688 + ], + "type":"VEC3" + }, + { + "bufferView":61, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":62, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":63, + "componentType":5126, + "count":24, + "max":[ + 15.729729652404785, + 13.03724479675293, + 0.8127365112304688 + ], + "min":[ + -15.729729652404785, + -12.777854919433594, + -0.8127365112304688 + ], + "type":"VEC3" + }, + { + "bufferView":64, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":65, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":66, + "componentType":5126, + "count":24, + "max":[ + 15.729729652404785, + 13.03724479675293, + 0.8127365112304688 + ], + "min":[ + -15.729729652404785, + -12.777854919433594, + -0.8127365112304688 + ], + "type":"VEC3" + }, + { + "bufferView":67, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":68, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":69, + "componentType":5126, + "count":24, + "max":[ + 0.8254489898681641, + 15.287931442260742, + 11.107067108154297 + ], + "min":[ + -0.8254489898681641, + -12.919384002685547, + -11.107067108154297 + ], + "type":"VEC3" + }, + { + "bufferView":70, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":71, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":72, + "componentType":5126, + "count":24, + "max":[ + 0.8254489898681641, + 12.743392944335938, + 11.107070922851562 + ], + "min":[ + -0.8254489898681641, + -12.919384002685547, + -11.107070922851562 + ], + "type":"VEC3" + }, + { + "bufferView":73, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":74, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":75, + "componentType":5126, + "count":24, + "max":[ + 0.8254489898681641, + 12.74339485168457, + 11.107070922851562 + ], + "min":[ + -0.8254489898681641, + -12.919384002685547, + -11.107070922851562 + ], + "type":"VEC3" + }, + { + "bufferView":76, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":77, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":78, + "componentType":5126, + "count":24, + "max":[ + 0.8254489898681641, + 12.743392944335938, + 11.107067108154297 + ], + "min":[ + -0.8254489898681641, + -12.919384002685547, + -11.107069969177246 + ], + "type":"VEC3" + }, + { + "bufferView":79, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":80, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":81, + "componentType":5126, + "count":24, + "max":[ + 0.8254489898681641, + 12.743392944335938, + 11.107067108154297 + ], + "min":[ + -0.8254499435424805, + -12.919384002685547, + -11.107067108154297 + ], + "type":"VEC3" + }, + { + "bufferView":82, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":83, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":84, + "componentType":5126, + "count":24, + "max":[ + 0.8254489898681641, + 12.743392944335938, + 11.10708236694336 + ], + "min":[ + -0.8254499435424805, + -12.919384002685547, + -11.107067108154297 + ], + "type":"VEC3" + }, + { + "bufferView":85, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":86, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":87, + "componentType":5126, + "count":24, + "max":[ + 0.8254489898681641, + 12.743393898010254, + 11.107067108154297 + ], + "min":[ + -0.8254489898681641, + -12.919384002685547, + -11.107070922851562 + ], + "type":"VEC3" + }, + { + "bufferView":88, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":89, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":90, + "componentType":5126, + "count":24, + "max":[ + 0.8254537582397461, + 12.238430976867676, + 11.107070922851562 + ], + "min":[ + -0.8254489898681641, + -12.919384002685547, + -11.107070922851562 + ], + "type":"VEC3" + }, + { + "bufferView":91, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":92, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":93, + "componentType":5126, + "count":24, + "max":[ + 0.8254489898681641, + 12.136162757873535, + 11.107067108154297 + ], + "min":[ + -0.8254489898681641, + -12.919384002685547, + -11.107067108154297 + ], + "type":"VEC3" + }, + { + "bufferView":94, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":95, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":96, + "componentType":5126, + "count":24, + "max":[ + 0.8254489898681641, + 12.136160850524902, + 11.107067108154297 + ], + "min":[ + -0.8254489898681641, + -12.919384002685547, + -11.107067108154297 + ], + "type":"VEC3" + }, + { + "bufferView":97, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":98, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":99, + "componentType":5126, + "count":8981, + "max":[ + 0.06533076614141464, + 1.0360385179519653, + 0.05769466236233711 + ], + "min":[ + -0.06638451665639877, + 0.972675621509552, + -0.059793099761009216 + ], + "type":"VEC3" + }, + { + "bufferView":100, + "componentType":5126, + "count":8981, + "type":"VEC3" + }, + { + "bufferView":101, + "componentType":5126, + "count":8981, + "type":"VEC2" + }, + { + "bufferView":102, + "componentType":5123, + "count":24276, + "type":"SCALAR" + }, + { + "bufferView":103, + "componentType":5126, + "count":8655, + "max":[ + 0.06533076614141464, + 1.0360385179519653, + 0.05769466236233711 + ], + "min":[ + -0.06638451665639877, + 0.972675621509552, + -0.059793099761009216 + ], + "type":"VEC3" + }, + { + "bufferView":104, + "componentType":5126, + "count":8655, + "type":"VEC3" + }, + { + "bufferView":105, + "componentType":5126, + "count":8655, + "type":"VEC2" + }, + { + "bufferView":106, + "componentType":5123, + "count":23664, + "type":"SCALAR" + }, + { + "bufferView":107, + "componentType":5126, + "count":326, + "max":[ + 0.047774169594049454, + 1.002625823020935, + 0.0010982414241880178 + ], + "min":[ + 0.04295903071761131, + 1.001570224761963, + -0.003196782199665904 + ], + "type":"VEC3" + }, + { + "bufferView":108, + "componentType":5126, + "count":326, + "type":"VEC3" + }, + { + "bufferView":109, + "componentType":5126, + "count":326, + "type":"VEC2" + }, + { + "bufferView":110, + "componentType":5123, + "count":612, + "type":"SCALAR" + }, + { + "bufferView":111, + "componentType":5126, + "count":8981, + "max":[ + 0.06533076614141464, + 1.0360385179519653, + 0.05769466236233711 + ], + "min":[ + -0.06638451665639877, + 0.972675621509552, + -0.059793099761009216 + ], + "type":"VEC3" + }, + { + "bufferView":112, + "componentType":5126, + "count":8981, + "type":"VEC3" + }, + { + "bufferView":113, + "componentType":5126, + "count":8981, + "type":"VEC2" + }, + { + "bufferView":114, + "componentType":5126, + "count":8981, + "max":[ + 0.06533076614141464, + 1.0360385179519653, + 0.05769466236233711 + ], + "min":[ + -0.06638451665639877, + 0.972675621509552, + -0.059793099761009216 + ], + "type":"VEC3" + }, + { + "bufferView":115, + "componentType":5126, + "count":8981, + "type":"VEC3" + }, + { + "bufferView":116, + "componentType":5126, + "count":8981, + "type":"VEC2" + }, + { + "bufferView":117, + "componentType":5126, + "count":8981, + "max":[ + 0.06533076614141464, + 1.0360385179519653, + 0.05769466236233711 + ], + "min":[ + -0.06638451665639877, + 0.972675621509552, + -0.059793099761009216 + ], + "type":"VEC3" + }, + { + "bufferView":118, + "componentType":5126, + "count":8981, + "type":"VEC3" + }, + { + "bufferView":119, + "componentType":5126, + "count":8981, + "type":"VEC2" + }, + { + "bufferView":120, + "componentType":5126, + "count":8981, + "max":[ + 0.06533076614141464, + 1.0360385179519653, + 0.05769466236233711 + ], + "min":[ + -0.06638451665639877, + 0.972675621509552, + -0.059793099761009216 + ], + "type":"VEC3" + }, + { + "bufferView":121, + "componentType":5126, + "count":8981, + "type":"VEC3" + }, + { + "bufferView":122, + "componentType":5126, + "count":8981, + "type":"VEC2" + }, + { + "bufferView":123, + "componentType":5126, + "count":65, + "max":[ + 1, + 1, + 1 + ], + "min":[ + -1, + -1, + -1 + ], + "type":"VEC3" + }, + { + "bufferView":124, + "componentType":5126, + "count":65, + "type":"VEC3" + }, + { + "bufferView":125, + "componentType":5126, + "count":65, + "type":"VEC2" + }, + { + "bufferView":126, + "componentType":5123, + "count":186, + "type":"SCALAR" + }, + { + "bufferView":127, + "componentType":5126, + "count":65, + "max":[ + 1, + 1, + 1 + ], + "min":[ + -1, + -1, + -1 + ], + "type":"VEC3" + }, + { + "bufferView":128, + "componentType":5126, + "count":65, + "type":"VEC3" + }, + { + "bufferView":129, + "componentType":5126, + "count":65, + "type":"VEC2" + }, + { + "bufferView":130, + "componentType":5126, + "count":65, + "max":[ + 1, + 1, + 1 + ], + "min":[ + -1, + -1, + -1 + ], + "type":"VEC3" + }, + { + "bufferView":131, + "componentType":5126, + "count":65, + "type":"VEC3" + }, + { + "bufferView":132, + "componentType":5126, + "count":65, + "type":"VEC2" + }, + { + "bufferView":133, + "componentType":5126, + "count":65, + "max":[ + 1, + 1, + 1 + ], + "min":[ + -1, + -1, + -1 + ], + "type":"VEC3" + }, + { + "bufferView":134, + "componentType":5126, + "count":65, + "type":"VEC3" + }, + { + "bufferView":135, + "componentType":5126, + "count":65, + "type":"VEC2" + }, + { + "bufferView":136, + "componentType":5126, + "count":65, + "max":[ + 1, + 1, + 1 + ], + "min":[ + -1, + -1, + -1 + ], + "type":"VEC3" + }, + { + "bufferView":137, + "componentType":5126, + "count":65, + "type":"VEC3" + }, + { + "bufferView":138, + "componentType":5126, + "count":65, + "type":"VEC2" + }, + { + "bufferView":139, + "componentType":5126, + "count":8981, + "max":[ + 0.06533076614141464, + 1.0360385179519653, + 0.05769466236233711 + ], + "min":[ + -0.06638451665639877, + 0.972675621509552, + -0.059793099761009216 + ], + "type":"VEC3" + }, + { + "bufferView":140, + "componentType":5126, + "count":8981, + "type":"VEC3" + }, + { + "bufferView":141, + "componentType":5126, + "count":8981, + "type":"VEC2" + }, + { + "bufferView":142, + "componentType":5126, + "count":65, + "max":[ + 1, + 1, + 1 + ], + "min":[ + -1, + -1, + -1 + ], + "type":"VEC3" + }, + { + "bufferView":143, + "componentType":5126, + "count":65, + "type":"VEC3" + }, + { + "bufferView":144, + "componentType":5126, + "count":65, + "type":"VEC2" + }, + { + "bufferView":145, + "componentType":5126, + "count":8981, + "max":[ + 0.06533076614141464, + 1.0360385179519653, + 0.05769466236233711 + ], + "min":[ + -0.06638451665639877, + 0.972675621509552, + -0.059793099761009216 + ], + "type":"VEC3" + }, + { + "bufferView":146, + "componentType":5126, + "count":8981, + "type":"VEC3" + }, + { + "bufferView":147, + "componentType":5126, + "count":8981, + "type":"VEC2" + }, + { + "bufferView":148, + "componentType":5126, + "count":65, + "max":[ + 1, + 1, + 1 + ], + "min":[ + -1, + -1, + -1 + ], + "type":"VEC3" + }, + { + "bufferView":149, + "componentType":5126, + "count":65, + "type":"VEC3" + }, + { + "bufferView":150, + "componentType":5126, + "count":65, + "type":"VEC2" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":48, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":48, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":96, + "target":34962 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":128, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":140, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":428, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":716, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":908, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":980, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1268, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":1556, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":1748, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1820, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2108, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":2396, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2588, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2876, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":3164, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3356, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3644, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":3932, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4124, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4412, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4700, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4892, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5180, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5468, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5660, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5948, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":6236, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6428, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6716, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":7004, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":7196, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":7484, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":7772, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":7964, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":8252, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":8540, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":8732, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":9020, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":9308, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":9500, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":9788, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":10076, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":10268, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":10556, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":10844, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":11036, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":11324, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":11612, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":11804, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":12092, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":12380, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":12572, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":12860, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":13148, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":13340, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":13628, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":13916, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14108, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14396, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":14684, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14876, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":15164, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":15452, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":15644, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":15932, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":16220, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":16412, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":16700, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":16988, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":17180, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":17468, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":17756, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":17948, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":18236, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":18524, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":18716, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":19004, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":19292, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":19484, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":19772, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":20060, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20252, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":20540, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":20828, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21020, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21308, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":21596, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":21788, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":22076, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":22364, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":22556, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":22844, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":23132, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23324, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":23612, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":23900, + "target":34962 + }, + { + "buffer":0, + "byteLength":107772, + "byteOffset":24092, + "target":34962 + }, + { + "buffer":0, + "byteLength":107772, + "byteOffset":131864, + "target":34962 + }, + { + "buffer":0, + "byteLength":71848, + "byteOffset":239636, + "target":34962 + }, + { + "buffer":0, + "byteLength":48552, + "byteOffset":311484, + "target":34963 + }, + { + "buffer":0, + "byteLength":103860, + "byteOffset":360036, + "target":34962 + }, + { + "buffer":0, + "byteLength":103860, + "byteOffset":463896, + "target":34962 + }, + { + "buffer":0, + "byteLength":69240, + "byteOffset":567756, + "target":34962 + }, + { + "buffer":0, + "byteLength":47328, + "byteOffset":636996, + "target":34963 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":684324, + "target":34962 + }, + { + "buffer":0, + "byteLength":3912, + "byteOffset":688236, + "target":34962 + }, + { + "buffer":0, + "byteLength":2608, + "byteOffset":692148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1224, + "byteOffset":694756, + "target":34963 + }, + { + "buffer":0, + "byteLength":107772, + "byteOffset":695980, + "target":34962 + }, + { + "buffer":0, + "byteLength":107772, + "byteOffset":803752, + "target":34962 + }, + { + "buffer":0, + "byteLength":71848, + "byteOffset":911524, + "target":34962 + }, + { + "buffer":0, + "byteLength":107772, + "byteOffset":983372, + "target":34962 + }, + { + "buffer":0, + "byteLength":107772, + "byteOffset":1091144, + "target":34962 + }, + { + "buffer":0, + "byteLength":71848, + "byteOffset":1198916, + "target":34962 + }, + { + "buffer":0, + "byteLength":107772, + "byteOffset":1270764, + "target":34962 + }, + { + "buffer":0, + "byteLength":107772, + "byteOffset":1378536, + "target":34962 + }, + { + "buffer":0, + "byteLength":71848, + "byteOffset":1486308, + "target":34962 + }, + { + "buffer":0, + "byteLength":107772, + "byteOffset":1558156, + "target":34962 + }, + { + "buffer":0, + "byteLength":107772, + "byteOffset":1665928, + "target":34962 + }, + { + "buffer":0, + "byteLength":71848, + "byteOffset":1773700, + "target":34962 + }, + { + "buffer":0, + "byteLength":780, + "byteOffset":1845548, + "target":34962 + }, + { + "buffer":0, + "byteLength":780, + "byteOffset":1846328, + "target":34962 + }, + { + "buffer":0, + "byteLength":520, + "byteOffset":1847108, + "target":34962 + }, + { + "buffer":0, + "byteLength":372, + "byteOffset":1847628, + "target":34963 + }, + { + "buffer":0, + "byteLength":780, + "byteOffset":1848000, + "target":34962 + }, + { + "buffer":0, + "byteLength":780, + "byteOffset":1848780, + "target":34962 + }, + { + "buffer":0, + "byteLength":520, + "byteOffset":1849560, + "target":34962 + }, + { + "buffer":0, + "byteLength":780, + "byteOffset":1850080, + "target":34962 + }, + { + "buffer":0, + "byteLength":780, + "byteOffset":1850860, + "target":34962 + }, + { + "buffer":0, + "byteLength":520, + "byteOffset":1851640, + "target":34962 + }, + { + "buffer":0, + "byteLength":780, + "byteOffset":1852160, + "target":34962 + }, + { + "buffer":0, + "byteLength":780, + "byteOffset":1852940, + "target":34962 + }, + { + "buffer":0, + "byteLength":520, + "byteOffset":1853720, + "target":34962 + }, + { + "buffer":0, + "byteLength":780, + "byteOffset":1854240, + "target":34962 + }, + { + "buffer":0, + "byteLength":780, + "byteOffset":1855020, + "target":34962 + }, + { + "buffer":0, + "byteLength":520, + "byteOffset":1855800, + "target":34962 + }, + { + "buffer":0, + "byteLength":107772, + "byteOffset":1856320, + "target":34962 + }, + { + "buffer":0, + "byteLength":107772, + "byteOffset":1964092, + "target":34962 + }, + { + "buffer":0, + "byteLength":71848, + "byteOffset":2071864, + "target":34962 + }, + { + "buffer":0, + "byteLength":780, + "byteOffset":2143712, + "target":34962 + }, + { + "buffer":0, + "byteLength":780, + "byteOffset":2144492, + "target":34962 + }, + { + "buffer":0, + "byteLength":520, + "byteOffset":2145272, + "target":34962 + }, + { + "buffer":0, + "byteLength":107772, + "byteOffset":2145792, + "target":34962 + }, + { + "buffer":0, + "byteLength":107772, + "byteOffset":2253564, + "target":34962 + }, + { + "buffer":0, + "byteLength":71848, + "byteOffset":2361336, + "target":34962 + }, + { + "buffer":0, + "byteLength":780, + "byteOffset":2433184, + "target":34962 + }, + { + "buffer":0, + "byteLength":780, + "byteOffset":2433964, + "target":34962 + }, + { + "buffer":0, + "byteLength":520, + "byteOffset":2434744, + "target":34962 + } + ], + "buffers":[ + { + "byteLength":2435264, + "uri":"backe_edit_2.bin" + } + ] +} diff --git a/public/models/texture/Alex_Hart-Nature_Lab_Bones_2k.hdr b/public/models/texture/Alex_Hart-Nature_Lab_Bones_2k.hdr new file mode 100644 index 0000000..6f72027 Binary files /dev/null and b/public/models/texture/Alex_Hart-Nature_Lab_Bones_2k.hdr differ diff --git a/public/models/texture/alpha.png b/public/models/texture/alpha.png new file mode 100644 index 0000000..fe47647 Binary files /dev/null and b/public/models/texture/alpha.png differ diff --git a/public/models/texture/alpha01.png b/public/models/texture/alpha01.png new file mode 100644 index 0000000..922531d Binary files /dev/null and b/public/models/texture/alpha01.png differ diff --git a/public/server.pem b/public/server.pem new file mode 100644 index 0000000..6bc8ad5 --- /dev/null +++ b/public/server.pem @@ -0,0 +1,48 @@ +-----BEGIN CERTIFICATE----- +MIIDOTCCAiGgAwIBAgIUMlpmdzEzz0WD0PUO0QkP8fLZNgkwDQYJKoZIhvcNAQEL +BQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoM +GEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0yNDA4MzAwODQzMTNaFw0zNDA4 +MjgwODQzMTNaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEw +HwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEB +AQUAA4IBDwAwggEKAoIBAQCzSYo9nAVhEGB5eg7qq7Hu0sQ4wAJI9v154Vy3VDzX +OQ/kQIBEslzuITwe/k+SlbN7PL5QwG1ZHT5koMhpgIdwZL09+wajebCExxFbyyWs +5ZkFinMocD64VJXh1gflYAoFH6koYspJ1KaVCnden7Pp07dPAGA/HtYZ/NTfdaSc +zdODDMjwAigxb+MW0x3XNTrFkOXZCQr8xjnToT4vzxmqD6pnzSUOYc6TSlDP9jya +SZYnuoi1/fcPXtRwF59hqK8CqZLNuNuBZFjqs+Xtm8P9V4LvWWou/8rrAhjyPJSA +ExbMG9rwdvzLEfKKtxeAy1edY6FN9BPEU/8ouvciFeIXAgMBAAGjITAfMB0GA1Ud +DgQWBBShVuuuBF2x6n++4kQSQ2G5ShT2EjANBgkqhkiG9w0BAQsFAAOCAQEAJwiY +XmwpOedDYHyffk5ILhxE/aHp1FnCYEbdVzXY7cct9uYGFefCNT8FRTUzG+obPn9N +Cqm5Yw/jcETOe4PIEDP2/mcRnjOKXMJtiPlcKTMtMM2nfo56sfA7WKihwjI/JpX+ +Ea4E4b18Z4xyCcvs6+sxcK+1D/8deeS/CJ8MvEokLRGudKG86gNaP4AMF6uHkAYh +bwssuuIehpzwDOd6OwT3+8XlKI30lSN+1JNP2PCz/tvOBVDo81RhacYQA3Xrf30c +E/zqnB3/xFIVvb1Z4UCgYpNGkDCD4tMp7gVrPDn5MvrCPAnoGJ76vblyAo0zNqer +lfI9n4JDwJkxbrgfew== +-----END CERTIFICATE----- +-----BEGIN PRIVATE KEY----- +MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQCzSYo9nAVhEGB5 +eg7qq7Hu0sQ4wAJI9v154Vy3VDzXOQ/kQIBEslzuITwe/k+SlbN7PL5QwG1ZHT5k +oMhpgIdwZL09+wajebCExxFbyyWs5ZkFinMocD64VJXh1gflYAoFH6koYspJ1KaV +Cnden7Pp07dPAGA/HtYZ/NTfdaSczdODDMjwAigxb+MW0x3XNTrFkOXZCQr8xjnT +oT4vzxmqD6pnzSUOYc6TSlDP9jyaSZYnuoi1/fcPXtRwF59hqK8CqZLNuNuBZFjq +s+Xtm8P9V4LvWWou/8rrAhjyPJSAExbMG9rwdvzLEfKKtxeAy1edY6FN9BPEU/8o +uvciFeIXAgMBAAECggEADsAuL4N2rdW7GkOAlq4ppYyRuFmT1oz7rdts1WiI2OxI +8m6cHwrNuonheGtUAKtwaONGhT5PwNU3HPBdjNCWVBj1uPO+SBTrAQGf2/2Ky/7X +6CzL7LfPcTsEWeBSJf0Q1fsU383A9vIYAosp5w8crlBM9KMDSC4xT1IN8ZSsRnpF +TfB+tozVJKeIwZzuUT8tA3Sq/m6aYhe986KEfuG3HN7rdrs0Jf7VpdeTlFt46cWS +9hitSodewmtBhFPonq4MBf28kIhKE/ZsI/9LmM6XHEh83DyCsDeLKgkpQ3jC0WVI +LxaxFps4GWY6Jqsz5pF9LfV0v2Cl13mdpK4nloKrAQKBgQDs/i4AT2MJlCBwaWkL +gGqp2vXtu1+8hzT7Uy6VbzfyFFW5oc+Mp8t2KwI55zvIeQVf51oprST6mBDpr0me +m4hllTLknj4pTsnh7Vhus45pMNCI0PS1NKVbg0sIANCdgqg+HafGAgEsfQ7ZaHr8 +cHzfre6UQdWlk+ByGMzcQ0tfPwKBgQDBqpO85fXsaEsDVckHymBMbGy0XEGTjcZq +x9UG4bhLWvKEorr9YF5WqoCdjyKniWjUdoSsXbTXidHofnVFBNwrnBkfdGBdS6Xa +xJnGms2Ma0/ZOtCgn3hH1COJ4uRzFtxWkyjeXYslKmNnhkDr4bZcnUph5eFpPukN +hd/ZUcUfKQKBgQC8naOA7a3VzsVukgZfeAnsO28lkM4mHrnFGLPnjMfK6/I6NpUX +zee5mYtBCE7lQ6RKarewmbPnmaVERxThncmVh4QkveidOa6lGCAcot1BzO77JMrN +eSPtzHWn3fYqlfVO0o1XovrKLJHn6CaRyPkpkKVj622dRS8Jv8EzwH85QwKBgH9z +vMqiJFgywrstJ6HC4+Ensdp4pIdw1FXNsTpYLisZbWUwmxLI6wzqJL6MRmgvnBfG +78Vn3e3DO6tgHdkQO71Pe5Ehy5FaiYoRvInhsshojyIM/OPYTxYmXEUQVvwO3W70 +Zf8BXONWpBirV+pkntkQgrUuzkuvJTzLD+g7UhkRAoGBANRCYeVuOoinozZUkPL7 +BiX06UDPFSB0IXSLvRSmZTMgj4OR0F+/yNzyxQ8SMFJfubFLxnwJtYcK7ibYaIS7 +3afQT5IUj4vJ8xwTpm7/QmJlf7iOdd9gyFYvbToR9mZm9RDh/ECZ50g49IHZfAiW +cXI7DAoiCdJEup9jwBGKf8iX +-----END PRIVATE KEY----- diff --git a/public/svgs/demo.svg b/public/svgs/demo.svg new file mode 100644 index 0000000..994495a --- /dev/null +++ b/public/svgs/demo.svg @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/public/svgs/image.svg b/public/svgs/image.svg new file mode 100644 index 0000000..378e190 --- /dev/null +++ b/public/svgs/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/svgs/info.svg b/public/svgs/info.svg new file mode 100644 index 0000000..035bd5a --- /dev/null +++ b/public/svgs/info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/svgs/log-sel.svg b/public/svgs/log-sel.svg new file mode 100644 index 0000000..f0e9f42 --- /dev/null +++ b/public/svgs/log-sel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/svgs/log.svg b/public/svgs/log.svg new file mode 100644 index 0000000..d010a95 --- /dev/null +++ b/public/svgs/log.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/svgs/monitoring.svg b/public/svgs/monitoring.svg new file mode 100644 index 0000000..d449f2d --- /dev/null +++ b/public/svgs/monitoring.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/svgs/my-button.svg b/public/svgs/my-button.svg new file mode 100644 index 0000000..aee1196 --- /dev/null +++ b/public/svgs/my-button.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/svgs/my-input.svg b/public/svgs/my-input.svg new file mode 100644 index 0000000..9fa947c --- /dev/null +++ b/public/svgs/my-input.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/public/svgs/num-info.svg b/public/svgs/num-info.svg new file mode 100644 index 0000000..e97739f --- /dev/null +++ b/public/svgs/num-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/svgs/pie-charts.svg b/public/svgs/pie-charts.svg new file mode 100644 index 0000000..826b132 --- /dev/null +++ b/public/svgs/pie-charts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/svgs/regulator.svg b/public/svgs/regulator.svg new file mode 100644 index 0000000..f2577f1 --- /dev/null +++ b/public/svgs/regulator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/svgs/signal-gaudy.svg b/public/svgs/signal-gaudy.svg new file mode 100644 index 0000000..3251953 --- /dev/null +++ b/public/svgs/signal-gaudy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/svgs/switch-info.svg b/public/svgs/switch-info.svg new file mode 100644 index 0000000..d7c7230 --- /dev/null +++ b/public/svgs/switch-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/svgs/table-base.svg b/public/svgs/table-base.svg new file mode 100644 index 0000000..637d62f --- /dev/null +++ b/public/svgs/table-base.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/svgs/table-only.svg b/public/svgs/table-only.svg new file mode 100644 index 0000000..d060cb3 --- /dev/null +++ b/public/svgs/table-only.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/App.vue b/src/App.vue new file mode 100644 index 0000000..97cf30e --- /dev/null +++ b/src/App.vue @@ -0,0 +1,44 @@ + + + + diff --git a/src/api/helper/index.ts b/src/api/helper/index.ts new file mode 100644 index 0000000..f70ae69 --- /dev/null +++ b/src/api/helper/index.ts @@ -0,0 +1,61 @@ +import { ElMessage } from 'element-plus'; + +/** + * 成功状态 + * @type {string} + */ +export const CODE_SUCCESS: string = '0000'; +/** + * 无效Token + * @type {string} + */ +export const CODE_TOKEN_FAIL: string = 'C105'; + +/** + * @description: 校验网络请求状态码 + * @param {Number} status + * @return void + */ +export const checkStatus = (status: number, message?: string) => { + switch (status) { + case 400: + ElMessage.error(message || '请求失败!请您稍后重试'); + break; + case 401: + ElMessage.error(message || '登录失效!请您重新登录'); + break; + case 403: + ElMessage.error(message || '当前账号无权限访问!'); + break; + case 404: + ElMessage.error(message || '你所访问的资源不存在!'); + break; + case 405: + ElMessage.error(message || '请求方式错误!请您稍后重试'); + break; + case 408: + ElMessage.error(message || '请求超时!请您稍后重试'); + break; + case 422: + ElMessage.error(message || '请求参数异常!'); + break; + case 500: + ElMessage.error(message || '服务异常!'); + break; + case 502: + ElMessage.error(message || '网关错误!'); + break; + case 503: + ElMessage.error(message || '服务不可用!'); + break; + case 504: + ElMessage.error(message || '网关超时!'); + break; + // 自定义响应码,处理 blob流异常时的返回信息 + case 1003: + ElMessage.error(message || '模板文件不存在!'); + break; + default: + ElMessage.error(message || '请求失败!'); + } +}; diff --git a/src/api/helper/prefix.ts b/src/api/helper/prefix.ts new file mode 100644 index 0000000..b9a68fd --- /dev/null +++ b/src/api/helper/prefix.ts @@ -0,0 +1 @@ +export const ADMIN_MODULE: string = '/admin'; diff --git a/src/api/index.ts b/src/api/index.ts new file mode 100644 index 0000000..f5df99b --- /dev/null +++ b/src/api/index.ts @@ -0,0 +1,157 @@ +import axios from 'axios'; +import type { AxiosInstance, AxiosRequestConfig, InternalAxiosRequestConfig } from 'axios'; + +import router from '@/router'; +import { LOGIN_URL } from '@/config'; +import { checkStatus, CODE_SUCCESS, CODE_TOKEN_FAIL } from '@/api/helper'; +import type { IResultData } from '@/api/types'; +import { useUserStore } from '@/stores/modules/user'; +import { useAuthStore } from '@/stores/modules/auth'; +import { useSocketStore } from '@/stores/modules/socket/socket'; +import { ElMessage } from 'element-plus'; + +export interface CustomAxiosRequestConfig extends InternalAxiosRequestConfig { + loading?: boolean; + cancel?: boolean; +} + +const config = { + // 默认地址请求地址,可在 .env.** 文件中修改 + baseURL: import.meta.env.VITE_API_URL as string, + // 设置超时时间,默认超时时间60s + timeout: import.meta.env.VITE_APP_HTTP_TIMEOUT || 60000 + // 跨域时候允许携带凭证 + // withCredentials: true +}; + +class RequestHttp { + instance: AxiosInstance; + + constructor(config: AxiosRequestConfig) { + // instantiation + this.instance = axios.create(config); + + /** + * @description 请求拦截器 + * 客户端发送请求 -> [请求拦截器] -> 服务器 + * token校验(JWT) : 接受服务器返回的 token,存储到 vuex/pinia/本地储存当中 + */ + this.instance.interceptors.request.use( + (config: CustomAxiosRequestConfig) => { + const userStore = useUserStore(); + // 当前请求不需要显示 loading,在 api 服务中通过指定的第三个参数: { loading: false } 来控制 + // config.loading !== false && showFullScreenLoading() + if (config.headers && typeof config.headers.set === 'function') { + config.headers.set('Authorization', 'Bearer ' + userStore.token); + } + return config; + }, + error => { + return Promise.reject(error); + } + ); + + /** + * @description 响应拦截器 + * 服务器换返回信息 -> [拦截统一处理] -> 客户端JS获取到信息 + */ + this.instance.interceptors.response.use( + response => { + const { data } = response; + const userStore = useUserStore(); + const socketStore = useSocketStore(); + const authStore = useAuthStore(); + // 如果是文件流,直接返回整个响应对象 + if (response.config.responseType === 'blob') { + return response; + } + + //tryHideFullScreenLoading() + // 登陆失效 + if (data.code === CODE_TOKEN_FAIL) { + userStore.clear(); + authStore.clear(); + // 关闭socket + socketStore.close(); + + router.replace(LOGIN_URL); + ElMessage.error(data.message); + return Promise.reject(data); + } + // 全局错误信息拦截(防止下载文件的时候返回数据流,没有 code 直接报错) + if (data.code && data.code !== CODE_SUCCESS) { + ElMessage.error({ message: data.message, dangerouslyUseHTMLString: true }); + return Promise.reject(data); + } + // 成功请求(在页面上除非特殊情况,否则不用处理失败逻辑) + return data; + }, + async error => { + const { response } = error; + // tryHideFullScreenLoading() + // 请求超时 && 网络错误单独判断,没有 response + if (error.message.indexOf('timeout') !== -1) { + ElMessage.error('请求超时!请您稍后重试'); + } + if (error.message.indexOf('Network Error') !== -1) { + ElMessage.error('网络错误!请您稍后重试'); + } + // 根据服务器响应的错误状态码,做不同的处理 + if (response) { + checkStatus(response?.status, response?.data?.message); + } + // 服务器结果都没有返回(可能服务器错误可能客户端断网),断网处理:可以跳转到断网页面 + if (!window.navigator.onLine) { + router.replace('/500'); + } + return Promise.reject(error); + } + ); + } + + /** + * @description 常用请求方法封装 + */ + get(url: string, params: any = {}, config?: AxiosRequestConfig | undefined): Promise> { + return this.instance.get(url, { params, ...config }); + } + + post(url: string, params: any = {}, config?: AxiosRequestConfig | undefined): Promise> { + return this.instance.post(url, params, config); + } + + put(url: string, params: any = {}, config?: AxiosRequestConfig | undefined): Promise> { + return this.instance.put(url, params, config); + } + + delete(url: string, data: any = {}, config?: AxiosRequestConfig | undefined): Promise> { + return this.instance.delete(url, { data, ...config }); + } + + download(url: string, params = {}, config?: AxiosRequestConfig | undefined): Promise { + return this.instance.post(url, params, { ...config, responseType: 'blob' }); + } + + template(url: string, params = {}, config?: AxiosRequestConfig | undefined): Promise { + return this.instance.get(url, { params, ...config, responseType: 'blob' }); + } + + upload(url: string, params: any = {}, config?: AxiosRequestConfig | undefined): Promise> { + return this.instance.post(url, params, { + ...config, + headers: { + 'Content-Type': 'multipart/form-data' + } + }); + } + + downloadWithHeader(url: string, params = {}, config?: AxiosRequestConfig) { + // 返回 AxiosResponse,这样可以拿到 headers + data + return this.instance.post(url, params, { + ...config, + responseType: 'blob' + }); + } +} + +export default new RequestHttp(config); diff --git a/src/api/modules/cameraalarm/CameraAlarm.ts b/src/api/modules/cameraalarm/CameraAlarm.ts new file mode 100644 index 0000000..d075dc4 --- /dev/null +++ b/src/api/modules/cameraalarm/CameraAlarm.ts @@ -0,0 +1,82 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { IPage } from '@/api/types'; + +import type { UploadRawFile } from "element-plus/es/components/upload/src/upload"; +import type { AxiosRequestConfig } from 'axios'; +import type { + AlarmReportVO, + CameraAlarmForm, + CameraAlarmQuery, + CameraAlarmRow +} from "@/api/types/cameraalarm/CameraAlarm"; + +/** +* 查询列表 +* @param params +* @returns {*} +*/ +export const getCameraAlarmListApi = (params: CameraAlarmQuery) => { + return http.get>(ADMIN_MODULE + `/ry-camera-alarm`, params); +}; + +/** +* 添加 +* @param params +* @returns {*} +*/ +export const createCameraAlarmApi = (params: CameraAlarmForm) => { + return http.post(ADMIN_MODULE + `/ry-camera-alarm`, params); +}; + +/** +* 修改 +* @param params +* @returns {*} +*/ +export const updateCameraAlarmApi = (params: CameraAlarmForm) => { + return http.put(ADMIN_MODULE + `/ry-camera-alarm`, params); +}; + +/** +* 删除 +* @param params +* @returns {*} +*/ +export const removeCameraAlarmApi = (params: { ids: (string | number)[] }) => { + return http.delete(ADMIN_MODULE + `/ry-camera-alarm`, params); +}; + +/** +* 获取详情 +* @param params +* @returns {*} +*/ +export const getCameraAlarmDetailApi = (params: { id: number }) => { + const { id } = params; + return http.get(ADMIN_MODULE + `/ry-camera-alarm/${id}`); +}; + +/** + * 根据id查询算法报警信息详情 + */ + +export const getAlarmReportDetail = (params : {id: number}) => { + return http.get(ADMIN_MODULE + `/ry-camera-alarm/get`, params); +}; +/** +* 导入excel +* @param params +*/ +export const importCameraAlarmExcelApi = (params : UploadRawFile, config?: AxiosRequestConfig | undefined) => { + return http.upload(ADMIN_MODULE + `/ry-camera-alarm/import`, params, config); +}; + +/** +* 导出excel +* @param params +* @returns {*} +*/ +export const exportCameraAlarmExcelApi = (params: CameraAlarmQuery) => { + return http.download(ADMIN_MODULE + `/ry-camera-alarm/export`, params); +}; \ No newline at end of file diff --git a/src/api/modules/demo/demo.ts b/src/api/modules/demo/demo.ts new file mode 100644 index 0000000..7d70bd8 --- /dev/null +++ b/src/api/modules/demo/demo.ts @@ -0,0 +1,12 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { Message } from '@/api/types/system/message'; + +/** + * 发送消息 + * @param params + * @returns {*} + */ +export const sendMessageApi = (params: Message) => { + return http.post(ADMIN_MODULE + `/www/message/send`, params); +}; diff --git a/src/api/modules/edgebox/EdgeBox.ts b/src/api/modules/edgebox/EdgeBox.ts new file mode 100644 index 0000000..0eebe99 --- /dev/null +++ b/src/api/modules/edgebox/EdgeBox.ts @@ -0,0 +1,81 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { IPage } from '@/api/types'; +import type { + EdgeBoxQuery, + EdgeBoxRow, + EdgeBoxForm +} from '@/api/types/edgebox/EdgeBox'; +import type { UploadRawFile } from "element-plus/es/components/upload/src/upload"; +import type { AxiosRequestConfig } from 'axios'; + +/** +* 查询列表 +* @param params +* @returns {*} +*/ +export const getEdgeBoxListApi = (params: EdgeBoxQuery) => { + return http.get>(ADMIN_MODULE + `/ry-edge-box`, params); +}; + +/** +* 添加 +* @param params +* @returns {*} +*/ +export const createEdgeBoxApi = (params: EdgeBoxForm) => { + return http.post(ADMIN_MODULE + `/ry-edge-box`, params); +}; + +/** +* 修改 +* @param params +* @returns {*} +*/ +export const updateEdgeBoxApi = (params: EdgeBoxForm) => { + return http.put(ADMIN_MODULE + `/ry-edge-box`, params); +}; + +/** +* 删除 +* @param params +* @returns {*} +*/ +export const removeEdgeBoxApi = (params: { ids: (string | number)[] }) => { + return http.delete(ADMIN_MODULE + `/ry-edge-box`, params); +}; + +/** +* 获取详情 +* @param params +* @returns {*} +*/ +export const getEdgeBoxDetailApi = (params: { id: number }) => { + const { id } = params; + return http.get(ADMIN_MODULE + `/ry-edge-box/${id}`); +}; + +/** +* 导入excel +* @param params +*/ +export const importEdgeBoxExcelApi = (params : UploadRawFile, config?: AxiosRequestConfig | undefined) => { + return http.upload(ADMIN_MODULE + `/ry-edge-box/import`, params, config); +}; + +/** +* 导出excel +* @param params +* @returns {*} +*/ +export const exportEdgeBoxExcelApi = (params: EdgeBoxQuery) => { + return http.download(ADMIN_MODULE + `/ry-edge-box/export`, params); +}; +/** + * 给盒子绑定摄像头通道 + * @param dto 绑定参数,包含 boxId 和 cameraIds + * @returns {*} + */ +export const bindCamerasApi = (dto: { boxId: number; cameraIds: number[] }) => { + return http.post(ADMIN_MODULE + `/ry-edge-box/bind-cameras`, dto); +}; \ No newline at end of file diff --git a/src/api/modules/faceinfo/FaceInfo.ts b/src/api/modules/faceinfo/FaceInfo.ts new file mode 100644 index 0000000..4c434a3 --- /dev/null +++ b/src/api/modules/faceinfo/FaceInfo.ts @@ -0,0 +1,73 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { IPage } from '@/api/types'; +import type { + FaceInfoQuery, + FaceInfoRow, + FaceInfoForm +} from '@/api/types/faceinfo/FaceInfo'; +import type { UploadRawFile } from "element-plus/es/components/upload/src/upload"; +import type { AxiosRequestConfig } from 'axios'; + +/** +* 查询列表 +* @param params +* @returns {*} +*/ +export const getFaceInfoListApi = (params: FaceInfoQuery) => { + return http.get>(ADMIN_MODULE + `/ry-face-info`, params); +}; + +/** +* 添加 +* @param params +* @returns {*} +*/ +export const createFaceInfoApi = (params: FaceInfoForm) => { + return http.post(ADMIN_MODULE + `/ry-face-info`, params); +}; + +/** +* 修改 +* @param params +* @returns {*} +*/ +export const updateFaceInfoApi = (params: FaceInfoForm) => { + return http.put(ADMIN_MODULE + `/ry-face-info`, params); +}; + +/** +* 删除 +* @param params +* @returns {*} +*/ +export const removeFaceInfoApi = (params: { ids: (string | number)[] }) => { + return http.delete(ADMIN_MODULE + `/ry-face-info`, params); +}; + +/** +* 获取详情 +* @param params +* @returns {*} +*/ +export const getFaceInfoDetailApi = (params: { id: number }) => { + const { id } = params; + return http.get(ADMIN_MODULE + `/ry-face-info/${id}`); +}; + +/** +* 导入excel +* @param params +*/ +export const importFaceInfoExcelApi = (params : UploadRawFile, config?: AxiosRequestConfig | undefined) => { + return http.upload(ADMIN_MODULE + `/ry-face-info/import`, params, config); +}; + +/** +* 导出excel +* @param params +* @returns {*} +*/ +export const exportFaceInfoExcelApi = (params: FaceInfoQuery) => { + return http.download(ADMIN_MODULE + `/ry-face-info/export`, params); +}; \ No newline at end of file diff --git a/src/api/modules/facelibrary/FaceLibrary.ts b/src/api/modules/facelibrary/FaceLibrary.ts new file mode 100644 index 0000000..4ac987e --- /dev/null +++ b/src/api/modules/facelibrary/FaceLibrary.ts @@ -0,0 +1,73 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { IPage } from '@/api/types'; +import type { + FaceLibraryQuery, + FaceLibraryRow, + FaceLibraryForm +} from '@/api/types/facelibrary/FaceLibrary'; +import type { UploadRawFile } from "element-plus/es/components/upload/src/upload"; +import type { AxiosRequestConfig } from 'axios'; + +/** + * 查询列表 + * @param params + * @returns {*} + */ +export const getFaceLibraryListApi = (params: FaceLibraryQuery) => { + return http.get>(ADMIN_MODULE + `/ry-face-library`, params); +}; + +/** + * 添加 + * @param params + * @returns {*} + */ +export const createFaceLibraryApi = (params: FaceLibraryForm) => { + return http.post(ADMIN_MODULE + `/ry-face-library`, params); +}; + +/** + * 修改 + * @param params + * @returns {*} + */ +export const updateFaceLibraryApi = (params: FaceLibraryForm) => { + return http.put(ADMIN_MODULE + `/ry-face-library`, params); +}; + +/** + * 删除 + * @param params + * @returns {*} + */ +export const removeFaceLibraryApi = (params: { ids: (string | number)[] }) => { + return http.delete(ADMIN_MODULE + `/ry-face-library`, params); +}; + +/** + * 获取详情 + * @param params + * @returns {*} + */ +export const getFaceLibraryDetailApi = (params: { id: number }) => { + const { id } = params; + return http.get(ADMIN_MODULE + `/ry-face-library/${id}`); +}; + +/** + * 导入excel + * @param params + */ +export const importFaceLibraryExcelApi = (params : UploadRawFile, config?: AxiosRequestConfig | undefined) => { + return http.upload(ADMIN_MODULE + `/ry-face-library/import`, params, config); +}; + +/** + * 导出excel + * @param params + * @returns {*} + */ +export const exportFaceLibraryExcelApi = (params: FaceLibraryQuery) => { + return http.download(ADMIN_MODULE + `/ry-face-library/export`, params); +}; \ No newline at end of file diff --git a/src/api/modules/monitor/Camera.ts b/src/api/modules/monitor/Camera.ts new file mode 100644 index 0000000..d6da3a7 --- /dev/null +++ b/src/api/modules/monitor/Camera.ts @@ -0,0 +1,72 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type {CameraForm, CameraQuery, CameraRow} from "@/api/types/monitor/camera"; +import type {IPage} from "@/api/types"; + +// 视频预览接口 +export const preview = (data: any) => { + return http.get(ADMIN_MODULE + '/camera/preview', { + channelId:data + }); +} +/** + * 查询列表 + * @param params + * @returns {*} + */ +export const getCameraListApi = (params: CameraQuery) => { + return http.get>(ADMIN_MODULE + `/camera`, params); +}; + +/** + * 添加 + * @param params + * @returns {*} + */ +export const createCameraApi = (params: CameraForm) => { + return http.post(ADMIN_MODULE + `/camera`, params); +}; + +/** + * 修改 + * @param params + * @returns {*} + */ +export const updateCameraApi = (params: CameraForm) => { + return http.put(ADMIN_MODULE + `/camera`, params); +}; + +/** + * 删除 + * @param params + * @returns {*} + */ +export const removeCameraApi = (params: { ids: (string | number)[] }) => { + return http.delete(ADMIN_MODULE + `/camera`, params); +}; + +/** + * 获取详情 + * @param params + * @returns {*} + */ +export const getCameraDetailApi = (params: { id: number }) => { + const { id } = params; + return http.get(ADMIN_MODULE + `/camera/${id}`); +}; +/** + * 获取还没有绑定盒子的摄像头列表 + * @returns {*} + */ +export const getUnboundCameraListApi = () => { + return http.get(ADMIN_MODULE + `/camera/unboundList`); +}; + +/** + * 获取已经绑定盒子的摄像头列表 + * + * @returns {*} + */ +export const getBoundCameraListApi = (params: { boxId: number }) => { + return http.get(ADMIN_MODULE + `/camera/boundList`, params); +}; \ No newline at end of file diff --git a/src/api/modules/monitor/Nvr.ts b/src/api/modules/monitor/Nvr.ts new file mode 100644 index 0000000..47f62e8 --- /dev/null +++ b/src/api/modules/monitor/Nvr.ts @@ -0,0 +1,60 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type {NvrForm, NvrQuery, NvrRow} from "@/api/types/monitor/nvr"; +import type {IPage} from "@/api/types"; + +/** + * 查询列表 + * @param params + * @returns {*} + */ +export const getNvrListApi = (params: NvrQuery) => { + return http.get>(ADMIN_MODULE + `/nvr`, params); +}; + +/** + * 添加 + * @param params + * @returns {*} + */ +export const createNvrApi = (params: NvrForm) => { + return http.post(ADMIN_MODULE + `/nvr`, params); +}; + +/** + * 修改 + * @param params + * @returns {*} + */ +export const updateNvrApi = (params: NvrForm) => { + return http.put(ADMIN_MODULE + `/nvr`, params); +}; + +/** + * 删除 + * @param params + * @returns {*} + */ +export const removeNvrApi = (params: { ids: (string | number)[] }) => { + return http.delete(ADMIN_MODULE + `/nvr`, params); +}; + +/** + * 获取详情 + * @param params + * @returns {*} + */ +export const getNvrDetailApi = (params: { id: number }) => { + const { id } = params; + return http.get(ADMIN_MODULE + `/nvr/${id}`); +}; + +/** + * 获取指定节点下的所有数据 + * @param params + */ +export const listByNode=(params:{nodeId: number,type: number,pageNum: number,pageSize: number})=>{ + return http.get>(ADMIN_MODULE+`/nvr/under-node`,params) +} + + diff --git a/src/api/modules/monitor/Tree.ts b/src/api/modules/monitor/Tree.ts new file mode 100644 index 0000000..eb6e6e2 --- /dev/null +++ b/src/api/modules/monitor/Tree.ts @@ -0,0 +1,10 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type {TreeNode} from "@/api/types/monitor/Tree"; + +export const getTreeData = () => { + return http.get(ADMIN_MODULE + '/tree/structure'); +}; +export const getTreePreview=()=>{ + return http.get(ADMIN_MODULE + '/tree/preview'); +} diff --git a/src/api/modules/monitor/algorithmTask.ts b/src/api/modules/monitor/algorithmTask.ts new file mode 100644 index 0000000..0d0f26e --- /dev/null +++ b/src/api/modules/monitor/algorithmTask.ts @@ -0,0 +1,7 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type {AlgorithmTaskVO} from "@/api/types/edgebox/EdgeBox"; +// 获取算法任务列表 +export const getAlgorithmTaskByCameraId = (params:{cameraId: number}) => { + return http.get(ADMIN_MODULE + '/algorithm-task/get', params); +} \ No newline at end of file diff --git a/src/api/modules/monitor/cameraSnapshot.ts b/src/api/modules/monitor/cameraSnapshot.ts new file mode 100644 index 0000000..d682f7e --- /dev/null +++ b/src/api/modules/monitor/cameraSnapshot.ts @@ -0,0 +1,10 @@ +import http from '@/api'; +import {ADMIN_MODULE} from '@/api/helper/prefix'; + +/** + * 抓图 + * + */ +export const capture=(params:{id: number})=>{ + return http.post(ADMIN_MODULE+`/cameraSnapshot/capture/${params.id}`) +} \ No newline at end of file diff --git a/src/api/modules/monitor/channel.ts b/src/api/modules/monitor/channel.ts new file mode 100644 index 0000000..ca03825 --- /dev/null +++ b/src/api/modules/monitor/channel.ts @@ -0,0 +1,54 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type {WatchfulRow} from "@/api/types/monitor/watchful"; +import type {AlgTaskConfigDto} from "@/api/types/edgebox/EdgeBox"; +/** + * 视频预览 + */ +export const preview=(params:{id: number})=>{ + return http.get(ADMIN_MODULE+`/channel/preview`,params) +} +/** + * 关闭预览,需要关掉拉流代理 + * + */ +export const stopPreview=(params:{id: number,uuid: string})=>{ + return http.get(ADMIN_MODULE+`/channel/stopPreview`,params) +} +/** + * 心跳保活接口 + */ +export const heartbeat=(params:{id: number,uuid: string})=>{ + return http.get(ADMIN_MODULE+`/channel/heartbeat`,params) +} + + +/** + * + * 预置位的相关操作 + */ +export const controlPreset=(params:{id: number,ptzPresetCmd: number,dwPresetIndex: number,pointName: string,isBasicPoint: number})=>{ + return http.get(ADMIN_MODULE+`/channel/controlPreset`,params) +} + +/** + * 云台守望 + */ +export const ControlSentinel=(params:{id: number,openOrNo: number,watchTime: number,presetIndex: number})=>{ + return http.get(ADMIN_MODULE+`/channel/sentinel`,params) +} + + +/** + * 获取守望参数 + */ +export const getWatchful=(params:{id: number})=>{ + return http.get(ADMIN_MODULE+`/channel/sentinel/get`,params) +} + +/** + * 处理算法任务 + */ +export const handleAlgTask=(params:AlgTaskConfigDto)=>{ + return http.post(ADMIN_MODULE+`/channel/config/alg`,params) +} \ No newline at end of file diff --git a/src/api/modules/monitor/device.ts b/src/api/modules/monitor/device.ts new file mode 100644 index 0000000..345eb53 --- /dev/null +++ b/src/api/modules/monitor/device.ts @@ -0,0 +1,16 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +/** + * 刷新通道 + */ +export const refresh=(params:{id: number,deviceType: number})=>{ + return http.get(ADMIN_MODULE+`/device/refresh`,params) +} + +/** + * + * 设备登录 + */ +export const deviceLogin=(params:{id: number})=>{ + return http.get(ADMIN_MODULE+`/device/login`,params) +} \ No newline at end of file diff --git a/src/api/modules/monitor/preset.ts b/src/api/modules/monitor/preset.ts new file mode 100644 index 0000000..616aaa2 --- /dev/null +++ b/src/api/modules/monitor/preset.ts @@ -0,0 +1,42 @@ +import type {NvrForm, NvrQuery, NvrRow} from "@/api/types/monitor/nvr"; +import http from "@/api"; +import type {IPage} from "@/api/types"; +import {ADMIN_MODULE} from "@/api/helper/prefix"; +import type {PresetDeleteDTO, PresetForm, PresetRow} from "@/api/types/monitor/preset"; + +/** + * 查询列表 + * @param params + * @returns {*} + */ +export const getPresetListApi = (params: {id: number}) => { + return http.get(ADMIN_MODULE + `/preset`, params); +}; + +/** + * 删除预置位 + */ +export const delPresetFromDbApi=(params: PresetDeleteDTO)=>{ + return http.delete(ADMIN_MODULE + `/preset`, params); +} +/** + * 新增预置位 + */ +export const createPresetApi = (params: PresetForm) => { + return http.post(ADMIN_MODULE + `/preset`, params); +}; + +/** + * 获取详情 + * @param params + * @returns {*} + */ +export const getPresetDetailApi = (params: { id: number,presetIndex: number }) => { + return http.get(ADMIN_MODULE + `/preset/detail`,params); +}; +/** + * 查询数据库中已经存在的预置位 + */ +export const getExistPresetList=(params: {id: number})=>{ + return http.get(ADMIN_MODULE + `/preset/list`, params); +} \ No newline at end of file diff --git a/src/api/modules/monitor/substation.ts b/src/api/modules/monitor/substation.ts new file mode 100644 index 0000000..33c0fd1 --- /dev/null +++ b/src/api/modules/monitor/substation.ts @@ -0,0 +1,5 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +export const getAllSubstationVO = () => { + return http.get(ADMIN_MODULE + '/ry-substation/list'); +}; \ No newline at end of file diff --git a/src/api/modules/substation/Substation.ts b/src/api/modules/substation/Substation.ts new file mode 100644 index 0000000..6329553 --- /dev/null +++ b/src/api/modules/substation/Substation.ts @@ -0,0 +1,73 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { IPage } from '@/api/types'; +import type { + SubstationQuery, + SubstationRow, + SubstationForm +} from '@/api/types/substation/Substation'; +import type { UploadRawFile } from "element-plus/es/components/upload/src/upload"; +import type { AxiosRequestConfig } from 'axios'; + +/** +* 查询列表 +* @param params +* @returns {*} +*/ +export const getSubstationListApi = (params: SubstationQuery) => { + return http.get>(ADMIN_MODULE + `/ry-substation`, params); +}; + +/** +* 添加 +* @param params +* @returns {*} +*/ +export const createSubstationApi = (params: SubstationForm) => { + return http.post(ADMIN_MODULE + `/ry-substation`, params); +}; + +/** +* 修改 +* @param params +* @returns {*} +*/ +export const updateSubstationApi = (params: SubstationForm) => { + return http.put(ADMIN_MODULE + `/ry-substation`, params); +}; + +/** +* 删除 +* @param params +* @returns {*} +*/ +export const removeSubstationApi = (params: { ids: (string | number)[] }) => { + return http.delete(ADMIN_MODULE + `/ry-substation`, params); +}; + +/** +* 获取详情 +* @param params +* @returns {*} +*/ +export const getSubstationDetailApi = (params: { id: number }) => { + const { id } = params; + return http.get(ADMIN_MODULE + `/ry-substation/${id}`); +}; + +/** +* 导入excel +* @param params +*/ +export const importSubstationExcelApi = (params : UploadRawFile, config?: AxiosRequestConfig | undefined) => { + return http.upload(ADMIN_MODULE + `/ry-substation/import`, params, config); +}; + +/** +* 导出excel +* @param params +* @returns {*} +*/ +export const exportSubstationExcelApi = (params: SubstationQuery) => { + return http.download(ADMIN_MODULE + `/ry-substation/export`, params); +}; \ No newline at end of file diff --git a/src/api/modules/system/Product.ts b/src/api/modules/system/Product.ts new file mode 100644 index 0000000..cab3230 --- /dev/null +++ b/src/api/modules/system/Product.ts @@ -0,0 +1,73 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { IPage } from '@/api/types'; +import type { + ProductQuery, + ProductRow, + ProductForm +} from '@/api/types/system/Product'; +import type { UploadRawFile } from "element-plus/es/components/upload/src/upload"; +import type { AxiosRequestConfig } from 'axios'; + +/** +* 查询列表 +* @param params +* @returns {*} +*/ +export const getProductListApi = (params: ProductQuery) => { + return http.get>(ADMIN_MODULE + `/sys-product`, params); +}; + +/** +* 添加 +* @param params +* @returns {*} +*/ +export const createProductApi = (params: ProductForm) => { + return http.post(ADMIN_MODULE + `/sys-product`, params); +}; + +/** +* 修改 +* @param params +* @returns {*} +*/ +export const updateProductApi = (params: ProductForm) => { + return http.put(ADMIN_MODULE + `/sys-product`, params); +}; + +/** +* 删除 +* @param params +* @returns {*} +*/ +export const removeProductApi = (params: { ids: (string | number)[] }) => { + return http.delete(ADMIN_MODULE + `/sys-product`, params); +}; + +/** +* 获取详情 +* @param params +* @returns {*} +*/ +export const getProductDetailApi = (params: { id: number }) => { + const { id } = params; + return http.get(ADMIN_MODULE + `/sys-product/${id}`); +}; + +/** +* 导入excel +* @param params +*/ +export const importProductExcelApi = (params : UploadRawFile, config?: AxiosRequestConfig | undefined) => { + return http.upload(ADMIN_MODULE + `/sys-product/import`, params, config); +}; + +/** +* 导出excel +* @param params +* @returns {*} +*/ +export const exportProductExcelApi = (params: ProductQuery) => { + return http.download(ADMIN_MODULE + `/sys-product/export`, params); +}; \ No newline at end of file diff --git a/src/api/modules/system/captcha.ts b/src/api/modules/system/captcha.ts new file mode 100644 index 0000000..9a995c8 --- /dev/null +++ b/src/api/modules/system/captcha.ts @@ -0,0 +1,16 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { CaptchaInfo, CaptchaVerifyImageParams } from '@/api/types/system/captcha'; + +// 获取验证码是否启用 +export const getCaptchaStatus = () => { + return http.get(ADMIN_MODULE + `/captcha/status`, {}); +}; +// 获取滑块拼图验证码 +export const getImageCodeApi = () => { + return http.post(ADMIN_MODULE + `/captcha/get`, {}); +}; +// 校验滑块拼图验证码 +export const verifyImageCodeApi = (params: CaptchaVerifyImageParams) => { + return http.post(ADMIN_MODULE + `/captcha/check`, params); +}; diff --git a/src/api/modules/system/client.ts b/src/api/modules/system/client.ts new file mode 100644 index 0000000..5ab82aa --- /dev/null +++ b/src/api/modules/system/client.ts @@ -0,0 +1,49 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { IPage } from '@/api/types'; +import type { SysClientForm, SysClientQuery, SysClientRow } from '@/api/types/system/client'; +/** + * 查询列表 + * @param params + * @returns {*} + */ +export const getSysClientListApi = (params: SysClientQuery) => { + return http.get>(ADMIN_MODULE + `/sys-client`, params); +}; + +/** + * 添加 + * @param params + * @returns {*} + */ +export const createSysClientApi = (params: SysClientForm) => { + return http.post(ADMIN_MODULE + `/sys-client`, params); +}; + +/** + * 修改 + * @param params + * @returns {*} + */ +export const updateSysClientApi = (params: SysClientForm) => { + return http.put(ADMIN_MODULE + `/sys-client`, params); +}; + +/** + * 删除 + * @param params + * @returns {*} + */ +export const removeSysClientApi = (params: { ids: number[] }) => { + return http.delete(ADMIN_MODULE + `/sys-client`, params); +}; + +/** + * 获取详情 + * @param params + * @returns {*} + */ +export const getSysClientDetailApi = (params: { id: number }) => { + const { id } = params; + return http.get(ADMIN_MODULE + `/sys-client/${id}`); +}; diff --git a/src/api/modules/system/common.ts b/src/api/modules/system/common.ts new file mode 100644 index 0000000..6c46bb2 --- /dev/null +++ b/src/api/modules/system/common.ts @@ -0,0 +1,35 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { CommonTemplateDown, OssTransform } from '@/api/types/system/common'; +import type { SelectorQuery, SelectorResult } from '@/components/MemberSelector/type/selector'; + +/** + * 模版下载 + */ +export const downloadTemplate = (params: CommonTemplateDown) => { + return http.template(ADMIN_MODULE + `/common/download/templates`, params); +}; + +/** + * 多维选择器查询 + * @param params + */ +export const querySelector = (params: SelectorQuery) => { + return http.get(ADMIN_MODULE + `/common/selector`, params); +}; + +/** + * 获取私有访问地址 + * @param params + */ +export const getPrivateUrl = (params: OssTransform) => { + return http.get(ADMIN_MODULE + `/common/oss/objects/private-url`, params); +}; + +/** + * 文件下载 + * @param params + */ +export const fileDownload = (params: { url: string }) => { + return http.downloadWithHeader(ADMIN_MODULE + `/common/files/download`, params); +}; diff --git a/src/api/modules/system/config.ts b/src/api/modules/system/config.ts new file mode 100644 index 0000000..4bd31eb --- /dev/null +++ b/src/api/modules/system/config.ts @@ -0,0 +1,48 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { ConfigForm, ConfigInfo, ConfigQuery } from '@/api/types/system/config'; +import type { IPage } from '@/api/types'; + +/** + * 获取列表 + * @param params + * @returns {*} + */ +export const getConfigList = (params: ConfigQuery) => { + return http.get>(ADMIN_MODULE + `/sys-config`, params); +}; + +/** + * 添加 + * @param params + * @returns {*} + */ +export const addConfig = (params: ConfigForm) => { + return http.post(ADMIN_MODULE + `/sys-config`, params); +}; + +/** + * 修改 + * @param params + * @returns {*} + */ +export const editConfig = (params: ConfigForm) => { + return http.put(ADMIN_MODULE + `/sys-config`, params); +}; + +/** + * 删除 + * @param params + * @returns {*} + */ +export const deleteConfig = (params: { ids: number[] }) => { + return http.delete(ADMIN_MODULE + `/sys-config`, params); +}; + +/** + * 获取前端参数信息 + * @returns {*} + */ +export const getFrontendConfig = () => { + return http.get>(ADMIN_MODULE + `/sys-config/frontend-configs`, {}); +}; diff --git a/src/api/modules/system/datarole.ts b/src/api/modules/system/datarole.ts new file mode 100644 index 0000000..9b407cd --- /dev/null +++ b/src/api/modules/system/datarole.ts @@ -0,0 +1,58 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { IPage } from '@/api/types'; +import type { SysDataRoleQuery, SysDataRoleRow, SysDataRoleForm, SysDataRoleMeta } from '@/api/types/system/datarole'; +/** + * 查询列表 + * @param params + * @returns {*} + */ +export const getSysDataRoleListApi = (params: SysDataRoleQuery) => { + return http.get>(ADMIN_MODULE + `/sys-data-role`, params); +}; + +/** + * 添加 + * @param params + * @returns {*} + */ +export const createSysDataRoleApi = (params: SysDataRoleForm) => { + return http.post(ADMIN_MODULE + `/sys-data-role`, params); +}; + +/** + * 修改 + * @param params + * @returns {*} + */ +export const updateSysDataRoleApi = (params: SysDataRoleForm) => { + return http.put(ADMIN_MODULE + `/sys-data-role`, params); +}; + +/** + * 删除 + * @param params + * @returns {*} + */ +export const removeSysDataRoleApi = (params: { ids: (string | number)[] }) => { + return http.delete(ADMIN_MODULE + `/sys-data-role`, params); +}; + +/** + * 获取详情 + * @param params + * @returns {*} + */ +export const getSysDataRoleDetailApi = (params: { id: number }) => { + const { id } = params; + return http.get(ADMIN_MODULE + `/sys-data-role/${id}`); +}; + +/** + * 获取数据角色初始菜单信息 + * @param params + * @returns {*} + */ +export const getSysDataRoleMenuApi = () => { + return http.get(ADMIN_MODULE + `/sys-data-role/menu`); +}; diff --git a/src/api/modules/system/dept.ts b/src/api/modules/system/dept.ts new file mode 100644 index 0000000..bc5a7da --- /dev/null +++ b/src/api/modules/system/dept.ts @@ -0,0 +1,104 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { IPage } from '@/api/types'; +import type { + SysDeptQuery, + SysDeptRow, + SysDeptForm, + SysDeptTree, + SysDeptLeaderData, + SysDeptDept, + DeptRoleData, + DeptRoleForm +} from '@/api/types/system/dept'; + +/** + * 查询列表 + * @param params + * @returns {*} + */ +export const getSysDeptListApi = (params: SysDeptQuery) => { + return http.get>(ADMIN_MODULE + `/sys-dept`, params); +}; + +/** + * 添加 + * @param params + * @returns {*} + */ +export const createSysDeptApi = (params: SysDeptForm) => { + return http.post(ADMIN_MODULE + `/sys-dept`, params); +}; + +/** + * 修改 + * @param params + * @returns {*} + */ +export const updateSysDeptApi = (params: SysDeptForm) => { + return http.put(ADMIN_MODULE + `/sys-dept`, params); +}; + +/** + * 删除 + * @param params + * @returns {*} + */ +export const removeSysDeptApi = (params: { ids: number[] }) => { + return http.delete(ADMIN_MODULE + `/sys-dept`, params); +}; + +/** + * 获取详情 + * @param params + * @returns {*} + */ +export const getSysDeptDetailApi = (params: { id: number }) => { + const { id } = params; + return http.get(ADMIN_MODULE + `/sys-dept/${id}`); +}; + +/** + * 获取上级菜单树 + * @param params + * @returns {*} + */ +export const getMenuTree = (params: { excludeNodeId?: number; appendRoot?: boolean }) => { + return http.get(ADMIN_MODULE + `/sys-dept/tree`, params); +}; + +/** + * 获取部门负责人关系 + * @param params + * @returns {*} + */ +export const getSysDeptLeaderApi = () => { + return http.get(ADMIN_MODULE + `/sys-dept/leader`); +}; + +/** + * 获取部门树 + * @param params + * @returns {*} + */ +export const getDeptTrees = (params: { deptId?: number }) => { + return http.get(ADMIN_MODULE + `/sys-dept/datascope`, params); +}; + +/** + * 获取部门角色 + * @param params + * @returns {*} + */ +export const getDeptRole = (params: { deptId: number }) => { + return http.get(ADMIN_MODULE + `/sys-dept/role`, params); +}; + +/** + * 设置部门角色 + * @param params + * @returns {*} + */ +export const setDeptRole = (params: DeptRoleForm) => { + return http.put(ADMIN_MODULE + `/sys-dept/role`, params); +}; diff --git a/src/api/modules/system/dict.ts b/src/api/modules/system/dict.ts new file mode 100644 index 0000000..6b6880d --- /dev/null +++ b/src/api/modules/system/dict.ts @@ -0,0 +1,107 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { DictTypeQuery, DictType, DictQuery, Dict, DictCustom } from '@/api/types/system/dict'; +import type { IPage } from '@/api/types'; + +/** + * 字典类别列表 + * @param params + * @returns {*} + */ +export const getDictType = (params: DictTypeQuery) => { + return http.get>(ADMIN_MODULE + `/sys-dict-type`, params); +}; + +/** + * 添加字典类别 + * @param params + * @returns {*} + */ +export const addDictType = (params: DictType) => { + return http.post(ADMIN_MODULE + `/sys-dict-type`, params); +}; + +/** + * 修改字典类型 + * @param params + * @returns {*} + */ +export const editDictType = (params: DictType) => { + return http.put(ADMIN_MODULE + `/sys-dict-type`, params); +}; + +/** + * 删除字典类型 + * @param params + * @returns {*} + */ +export const deleteDictType = (params: { ids: number[] }) => { + return http.delete(ADMIN_MODULE + `/sys-dict-type`, params); +}; + +/** + * 获取字典数据列表 + * @param params + * @returns {*} + */ +export const getDictData = (params: DictQuery) => { + return http.get>(ADMIN_MODULE + `/sys-dict`, params); +}; + +/** + * 添加字典类别 + * @param params + * @returns {*} + */ +export const addDictData = (params: Dict) => { + return http.post(ADMIN_MODULE + `/sys-dict`, params); +}; + +/** + * 修改字典类型 + * @param params + * @returns {*} + */ +export const editDictData = (params: Dict) => { + return http.put(ADMIN_MODULE + `/sys-dict`, params); +}; + +/** + * 删除字典 + * @param params + * @returns {*} + */ +export const deleteDictData = (params: { ids: number[] }) => { + return http.delete(ADMIN_MODULE + `/sys-dict`, params); +}; + +/** + * 获取所有字典信息 + * @returns {*} + */ +export const getAllDict = () => { + return http.get>(ADMIN_MODULE + `/sys-dict/dict`, {}); +}; + +export const getDictTypeOptions = () => { + return http.get(ADMIN_MODULE + `/sys-dict-type/selectOptionsType`); +}; + +/** + * 导出字典sql + * @param params + */ +export const exportDictSql = (params: { ids: number[] }) => { + return http.post(ADMIN_MODULE + `/sys-dict/sql/export`, params); +}; + +/** + * 获取指定字典 + * @param params + * @returns {*} + */ +export const getDictByCode = (params: { typeCode: string[] }) => { + const searchParams = new URLSearchParams(); + params.typeCode.forEach(code => searchParams.append('typeCode', code)); + return http.get>(ADMIN_MODULE + `/sys-dict/code?${searchParams.toString()}`); +}; diff --git a/src/api/modules/system/file.ts b/src/api/modules/system/file.ts new file mode 100644 index 0000000..6152a05 --- /dev/null +++ b/src/api/modules/system/file.ts @@ -0,0 +1,13 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { IPage } from '@/api/types'; +import type { SysFileQuery, SysFileRow } from '@/api/types/system/file'; + +/** + * 查询列表 + * @param params + * @returns {*} + */ +export const getSysFileListApi = (params: SysFileQuery) => { + return http.get>(ADMIN_MODULE + `/sys-file`, params); +}; diff --git a/src/api/modules/system/login.ts b/src/api/modules/system/login.ts new file mode 100644 index 0000000..e33e366 --- /dev/null +++ b/src/api/modules/system/login.ts @@ -0,0 +1,39 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { LoginParams, LoginInfo, ChallengeInfo } from '@/api/types/system/login'; + +// 用户登录 +export const loginApi = (params: LoginParams) => { + params.grantType = 'password'; + params.clientId = import.meta.env.VITE_APP_CLIENT_ID; + return http.post(ADMIN_MODULE + `/auth/login`, params); // 正常 post json 请求 ==> application/json + // return http.post(`/login`, params, { loading: false }); // 控制当前请求不显示 loading + // return http.post(`/login`, {}, { params }); // post 请求携带 query 参数 ==> ?username=admin&password=123456 + // return http.post(`/login`, qs.stringify(params)); // post 请求携带表单参数 ==> application/x-www-form-urlencoded + // return http.get(`/login?${qs.stringify(params, { arrayFormat: "repeat" })}`); // get 请求可以携带数组等复杂参数 +}; + +// 获取菜单列表 +export const getAuthMenuListApi = () => { + return http.get(ADMIN_MODULE + `/sys-menu/menu`, {}); +}; + +// 获取按钮权限 +export const getAuthButtonListApi = () => { + return http.get(ADMIN_MODULE + `/sys-menu/btn/permissions`, {}); +}; + +// 用户退出登录 +export const logoutApi = () => { + return http.post(ADMIN_MODULE + `/auth/logout`); +}; + +// 获取用户角色 +export const getAuthRoleListApi = () => { + return http.get(ADMIN_MODULE + `/sys-menu/user/roles`, {}); +}; + +// 获取一次性认证参数 +export const getChallengeApi = () => { + return http.get(ADMIN_MODULE + `/common/auth/challenge`, {}); +}; diff --git a/src/api/modules/system/menu.ts b/src/api/modules/system/menu.ts new file mode 100644 index 0000000..bfd427f --- /dev/null +++ b/src/api/modules/system/menu.ts @@ -0,0 +1,85 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { MenuQuery, MenuForm, MenuTree, MenuPermissionQuery } from '@/api/types/system/menu'; + +/** + * 获取菜单列表 + * @param params + * @returns {*} + */ +export const getMenuList = (params: MenuQuery) => { + return http.get(ADMIN_MODULE + `/sys-menu`, params); +}; + +/** + * 添加菜单 + * @param params + * @returns {*} + */ +export const addMenu = (params: MenuForm) => { + return http.post(ADMIN_MODULE + `/sys-menu`, params); +}; + +/** + * 修改菜单 + * @param params + * @returns {*} + */ +export const editMenu = (params: MenuForm) => { + return http.put(ADMIN_MODULE + `/sys-menu`, params); +}; + +/** + * 删除菜单 + * @param params + * @returns {*} + */ +export const deleteMenu = (params: { ids: string[] }) => { + return http.delete(ADMIN_MODULE + `/sys-menu`, params); +}; + +/** + * 获取菜单详情 + * @param params + * @returns {*} + */ +export const getMenuInfo = (params: { id: string }) => { + const { id } = params; + return http.get(ADMIN_MODULE + `/sys-menu/${id}`); +}; + +/** + * 获取上级菜单树 + * @param params + * @returns {*} + */ +export const getMenuTree = (params: { nodeId?: string }) => { + return http.get(ADMIN_MODULE + `/sys-menu/tree`, params); +}; + +/** + * 菜单权限是否存在验证 + * @param params + * @returns {*} + */ +export const getBtnExits = (params: MenuPermissionQuery) => { + return http.get<{ permissionCount: number }>(ADMIN_MODULE + `/sys-menu/btn/exists`, params); +}; + +/** + * 导出菜单sql + * @param params + */ +export const exportMenuSql = (params: { ids: string[] }) => { + return http.post(ADMIN_MODULE + `/sys-menu/sql/export`, params); +}; + +/** + * 修改菜单数据权限 + * @param params + * @returns {*} + */ +export const chaneDataRole = (params: { id: string }) => { + const { id } = params; + return http.put(ADMIN_MODULE + `/sys-menu/datarole/change/${id}`); +}; diff --git a/src/api/modules/system/message.ts b/src/api/modules/system/message.ts new file mode 100644 index 0000000..a781c32 --- /dev/null +++ b/src/api/modules/system/message.ts @@ -0,0 +1,39 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { IPage } from '@/api/types'; +import type { MessageQuery, MessageRow, UnreadMessageCount } from '@/api/types/system/message'; + +/** + * 列表 + */ +export const getMessageListApi = (params: MessageQuery) => { + return http.get>(ADMIN_MODULE + `/sys-message`, params); +}; + +/** + * 详情 + */ +export const getMessageInfoApi = (id: string | number) => { + return http.get(ADMIN_MODULE + `/sys-message/${id}`); +}; + +/** + * 我的待办消息 + */ +export const getTodoMessageListApi = () => { + return http.get(ADMIN_MODULE + `/sys-message/list/todo`); +}; + +/** + * 我的消息 + */ +export const getNoticeMessageListApi = () => { + return http.get(ADMIN_MODULE + `/sys-message/list/msg`); +}; + +/** + * 未读消息数量 + */ +export const getUnreadMessageCountApi = () => { + return http.get(ADMIN_MODULE + `/sys-message/count`); +}; diff --git a/src/api/modules/system/role.ts b/src/api/modules/system/role.ts new file mode 100644 index 0000000..49b0bbc --- /dev/null +++ b/src/api/modules/system/role.ts @@ -0,0 +1,58 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { RoleQuery, RoleInfo, RoleForm, RoleMenu, RoleMenuForm } from '@/api/types/system/role'; +import type { IPage } from '@/api/types'; + +/** + * 获取角色列表 + * @param params + * @returns {*} + */ +export const getRoleList = (params: RoleQuery) => { + return http.get>(ADMIN_MODULE + `/sys-role`, params); +}; + +/** + * 添加角色 + * @param params + * @returns {*} + */ +export const addRole = (params: RoleForm) => { + return http.post(ADMIN_MODULE + `/sys-role`, params); +}; + +/** + * 修改角色 + * @param params + * @returns {*} + */ +export const editRole = (params: RoleForm) => { + return http.put(ADMIN_MODULE + `/sys-role`, params); +}; + +/** + * 删除角色 + * @param params + * @returns {*} + */ +export const deleteRole = (params: { ids: number[] }) => { + return http.delete(ADMIN_MODULE + `/sys-role`, params); +}; + +/** + * 获取角色菜单权限 + * @param params + * @returns {*} + */ +export const getRoleMenus = (params: { roleId: number }) => { + return http.get(ADMIN_MODULE + `/sys-role/menu`, params); +}; + +/** + * 设置角色菜单权限 + * @param params + * @returns {*} + */ +export const setRoleMenus = (params: RoleMenuForm) => { + return http.put(ADMIN_MODULE + `/sys-role/menu`, params); +}; diff --git a/src/api/modules/system/sysLoginLog.ts b/src/api/modules/system/sysLoginLog.ts new file mode 100644 index 0000000..9010686 --- /dev/null +++ b/src/api/modules/system/sysLoginLog.ts @@ -0,0 +1,22 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { IPage } from '@/api/types'; +import type { SysLoginLogQuery, SysLoginLogRow } from '@/api/types/system/sysLoginLog'; + +/** + * 查询列表 + * @param params + * @returns {*} + */ +export const getSysLoginLogListApi = (params: SysLoginLogQuery) => { + return http.get>(ADMIN_MODULE + `/sys-login-log`, params); +}; + +/** + * 导出excel + * @param params + * @returns {*} + */ +export const exportSysLoginLogExcelApi = (params: SysLoginLogQuery) => { + return http.download(ADMIN_MODULE + `/sys-login-log/export`, params); +}; diff --git a/src/api/modules/system/sysTempFile.ts b/src/api/modules/system/sysTempFile.ts new file mode 100644 index 0000000..64a2981 --- /dev/null +++ b/src/api/modules/system/sysTempFile.ts @@ -0,0 +1,64 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { IPage } from '@/api/types'; +import type { + SysTempFileQuery, + SysTempFileRow, + SysTempFileForm, + SysTempFileHistoryQuery, + SysTempFileHistory +} from '@/api/types/system/sysTempFile'; + +/** + * 查询列表 + * @param params + * @returns {*} + */ +export const getSysTempFileListApi = (params: SysTempFileQuery) => { + return http.get>(ADMIN_MODULE + `/sys-temp-file`, params); +}; + +/** + * 添加 + * @param params + * @returns {*} + */ +export const createSysTempFileApi = (params: SysTempFileForm) => { + return http.post(ADMIN_MODULE + `/sys-temp-file`, params); +}; + +/** + * 修改 + * @param params + * @returns {*} + */ +export const updateSysTempFileApi = (params: SysTempFileForm) => { + return http.put(ADMIN_MODULE + `/sys-temp-file`, params); +}; + +/** + * 删除 + * @param params + * @returns {*} + */ +export const removeSysTempFileApi = (params: { ids: (string | number)[] }) => { + return http.delete(ADMIN_MODULE + `/sys-temp-file`, params); +}; + +/** + * 获取详情 + * @param params + * @returns {*} + */ +export const getSysTempFileDetailApi = (params: { id: number }) => { + const { id } = params; + return http.get(ADMIN_MODULE + `/sys-temp-file/${id}`); +}; + +/** + * 获取历史记录 + * @param params + */ +export const getSysTempFileHistoryListApi = (params: SysTempFileHistoryQuery) => { + return http.get>(ADMIN_MODULE + `/sys-temp-file-history/history`, params); +}; diff --git a/src/api/modules/system/upload.ts b/src/api/modules/system/upload.ts new file mode 100644 index 0000000..8ff6b82 --- /dev/null +++ b/src/api/modules/system/upload.ts @@ -0,0 +1,23 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { IUploadResult, UploadFile, UploadResult } from '@/api/types/system/upload'; +import type { AxiosRequestConfig } from 'axios'; + +/** + * 上传文件 + * @param params + * @returns {*} + */ +export const uploadFile = (params: UploadFile, config?: AxiosRequestConfig | undefined) => { + return http.upload(ADMIN_MODULE + `/sys-file/upload`, params, config); +}; + +/** + * 上传模板文件 + * @param params + * @param config + * @returns {*} + */ +export const uploadTmpFile = (params: UploadFile, config?: AxiosRequestConfig | undefined) => { + return http.upload(ADMIN_MODULE + `/sys-temp-file/upload`, params, config); +}; diff --git a/src/api/modules/system/user.ts b/src/api/modules/system/user.ts new file mode 100644 index 0000000..df24e09 --- /dev/null +++ b/src/api/modules/system/user.ts @@ -0,0 +1,145 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { + UserQuery, + UserInfo, + UserForm, + UserRoleData, + UserRoleForm, + UserPasswordForm, + UserTagOptions +} from '@/api/types/system/user'; +import type { IPage } from '@/api/types'; +import type { SysDeptDeptSetting, SysDeptTree } from '@/api/types/system/dept'; + +/** + * 获取用户列表 + * @param params + * @returns {*} + */ +export const getUserList = (params: UserQuery) => { + return http.get>(ADMIN_MODULE + `/sys-user`, params); +}; + +/** + * 添加用户 + * @param params + * @returns {*} + */ +export const addUser = (params: UserForm) => { + return http.post(ADMIN_MODULE + `/sys-user`, params); +}; + +/** + * 修改用户 + * @param params + * @returns {*} + */ +export const editUser = (params: UserForm) => { + return http.put(ADMIN_MODULE + `/sys-user`, params); +}; + +/** + * 删除用户 + * @param params + * @returns {*} + */ +export const deleteUser = (params: { ids: number[] }) => { + return http.delete(ADMIN_MODULE + `/sys-user`, params); +}; + +/** + * 获取用户角色 + * @param params + * @returns {*} + */ +export const getUserRole = (params: { userId: number }) => { + return http.get(ADMIN_MODULE + `/sys-user/role`, params); +}; + +/** + * 设置用户角色 + * @param params + * @returns {*} + */ +export const setUserRole = (params: UserRoleForm) => { + return http.put(ADMIN_MODULE + `/sys-user/role`, params); +}; + +/** + * (个人)修改密码 + * @param params + * @returns {*} + */ +export const changePassword = (params: UserPasswordForm) => { + return http.put(ADMIN_MODULE + `/sys-user/password`, params); +}; + +/** + * 重置密码 + * @param params + */ +export const resetPassword = (params: { id: number }) => { + const { id } = params; + return http.put(ADMIN_MODULE + `/sys-user/reset/password/${id}`, {}); +}; + +/** + * 获取登录用户信息 + * @returns {*} + */ +export const getUserinfo = () => { + return http.get(ADMIN_MODULE + `/sys-user/userinfo`); +}; + +/** + * 添加 + * @param params + * @returns {*} + */ +export const bindUserDeptApi = (params: SysDeptDeptSetting) => { + return http.post(ADMIN_MODULE + `/sys-user/dept/bind`, params); +}; + +/** + * 用户部门属性列表 + */ +export const getUserDeptTree = () => { + return http.get(ADMIN_MODULE + `/sys-user/dept/tree`); +}; + +/** + * 解锁用户 + * @param params + * @returns {*} + */ +export const unlockUser = (params: { ids: (string | number)[] }) => { + return http.post(ADMIN_MODULE + `/sys-user/unlock`, params); +}; + +/** + * 获取详情 + * @param params + * @returns {*} + */ +export const getUserDetailApi = (params: { id: string }) => { + const { id } = params; + return http.get(ADMIN_MODULE + `/sys-user/${id}`); +}; + +/** + * 获取用户数据角色 + * @param params + * @returns {*} + */ +export const getDataUserRole = (params: { userId: number }) => { + return http.get(ADMIN_MODULE + `/sys-user/datarole`, params); +}; + +/** + * 设置用户类型 + * @param params + */ +export const setUserTag = (params: UserTagOptions) => { + return http.post(ADMIN_MODULE + `/sys-user/changeset/usertag`, params); +}; diff --git a/src/api/modules/teacher/teacherStatistics.ts b/src/api/modules/teacher/teacherStatistics.ts new file mode 100644 index 0000000..9ed093e --- /dev/null +++ b/src/api/modules/teacher/teacherStatistics.ts @@ -0,0 +1,77 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { IPage } from '@/api/types'; +import type { TeacherStatisticsQuery, TeacherStatisticsRow, TeacherStatisticsForm } from '@/api/types/teacher/teacherStatistics'; +import type { UploadRawFile } from 'element-plus/es/components/upload/src/upload'; +import type { AxiosRequestConfig } from 'axios'; +/** + * 查询列表 + * @param params + * @returns {*} + */ +export const getTeacherStatisticsListApi = (params: TeacherStatisticsQuery) => { + return http.get>(ADMIN_MODULE + `/teacher-statistics`, params); +}; + +/** + * 添加 + * @param params + * @returns {*} + */ +export const createTeacherStatisticsApi = (params: TeacherStatisticsForm) => { + return http.post(ADMIN_MODULE + `/teacher-statistics`, params); +}; + +/** + * 修改 + * @param params + * @returns {*} + */ +export const updateTeacherStatisticsApi = (params: TeacherStatisticsForm) => { + return http.put(ADMIN_MODULE + `/teacher-statistics`, params); +}; + +/** + * 删除 + * @param params + * @returns {*} + */ +export const removeTeacherStatisticsApi = (params: { ids: (string | number)[] }) => { + return http.delete(ADMIN_MODULE + `/teacher-statistics`, params); +}; + +/** + * 获取详情 + * @param params + * @returns {*} + */ +export const getTeacherStatisticsDetailApi = (params: { id: number }) => { + const { id } = params; + return http.get(ADMIN_MODULE + `/teacher-statistics/${id}`); +}; + +/** + * 导入excel + * @param params + */ +export const importTeacherStatisticsExcelApi = (params: UploadRawFile, config?: AxiosRequestConfig | undefined) => { + return http.upload(ADMIN_MODULE + `/teacher-statistics/import`, params, config); +}; + +/** + * 导出excel + * @param params + * @returns {*} + */ +export const exportTeacherStatisticsExcelApi = (params: TeacherStatisticsQuery) => { + return http.download(ADMIN_MODULE + `/teacher-statistics/export`, params); +}; + +/** + * 远程搜索 + * @param params + */ +export const remoteTeacherStaticsSearchApi = (params: { keyword: string }) => { + const { keyword } = params; + return http.get(ADMIN_MODULE + `/teacher-statistics/remote/${keyword}`); +}; diff --git a/src/api/modules/toolbox/generator.ts b/src/api/modules/toolbox/generator.ts new file mode 100644 index 0000000..015a474 --- /dev/null +++ b/src/api/modules/toolbox/generator.ts @@ -0,0 +1,91 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { IPage, IPageQuery } from '@/api/types'; +import type { + GeneratorCheckInfo, + GeneratorForm, + GeneratorInfo, + GeneratorPreviewInfo, + GeneratorQuery +} from '@/api/types/toolbox/generator'; + +/** + * 查询已经导入的表列表 + * @param params + * @returns {*} + */ +export const getGeneratorList = (params: GeneratorQuery) => { + return http.get>(ADMIN_MODULE + `/generator/list`, params); +}; + +/** + * 查询要导入的表列表(排除已经导入的表) + * @param params + */ +export const getGeneratorSchemaList = (params: IPageQuery) => { + return http.get>(ADMIN_MODULE + `/generator/schema/list`, params); +}; + +/** + * 导入指定表 + * @param params + */ +export const importGenerator = (params: { tableName: (string | number)[] }) => { + return http.post(ADMIN_MODULE + `/generator/import`, params); +}; + +/** + * 更新代码生成配置 + * @param params + */ +export const saveGenerator = (params: GeneratorForm) => { + return http.put(ADMIN_MODULE + `/generator`, params); +}; + +/** + * 代码生成参数详情 + * @param tableName + */ +export const getGeneratorInfo = (tableName: string) => { + return http.get(ADMIN_MODULE + `/generator/${tableName}`); +}; + +/** + * 代码生成 + * @param params + */ +export const codeGenerator = (tableName: string) => { + return http.post(ADMIN_MODULE + `/generator/generator/${tableName}`); +}; + +/** + * 删除导入的表 + * @param params + */ +export const deleteGenerator = (params: { tableNames: (string | number)[] }) => { + return http.delete(ADMIN_MODULE + `/generator`, params); +}; + +/** + * zip下载 + * @param params + * @returns {*} + */ +export const downloadZip = (params: { tableNames: string[] }) => { + return http.download(ADMIN_MODULE + `/generator/zip`, params); +}; + +/** + * 代码预览 + * @param tableName + */ +export const previewCode = (tableName: string) => { + return http.get(ADMIN_MODULE + `/generator/preview/${tableName}`); +}; +/** + * 验证磁盘 + * @param tableName + */ +export const checkDisk = (tableName: string) => { + return http.get(ADMIN_MODULE + `/generator/check/${tableName}`); +}; diff --git a/src/api/types/cameraalarm/CameraAlarm.ts b/src/api/types/cameraalarm/CameraAlarm.ts new file mode 100644 index 0000000..4683208 --- /dev/null +++ b/src/api/types/cameraalarm/CameraAlarm.ts @@ -0,0 +1,137 @@ +import type { IPageQuery } from '@/api/types'; + +// 查询条件 +export type CameraAlarmQuery = IPageQuery & { + cameraId?: number; + channelId?: number; + presetIndex?: number; + alarmType?: number; + baseImage?: string; + captureImage?: string; + algoResult?: string; + status?: number; + handleTimeStart?: string; + handleTimeEnd?: string; + handleBy?: string; + handleRemark?: string; +}; + +// 编辑form表单 +export type CameraAlarmForm = { + id?: number; + cameraId?: number; + channelId?: number; + presetIndex?: number; + alarmType?: number; + baseImage?: string; + captureImage?: string; + algoResult?: string; + status?: number; + handleTime?: string; + handleBy?: string; + handleRemark?: string; +}; + +// list或detail返回结构 +export type CameraAlarmRow = { + id?: number; + cameraName?: string; + cameraId?: number; + cameraNo?:string; + channelId?: number; + presetIndex?: number; + alarmType?: number; + baseImage?: string; + captureImage?: string; + algoResult?: string; + status?: number; + handleTime?: string; + handleBy?: string; + handleRemark?: string; + createTime?: string; +}; +/** + * 报警结果详情 + */ +export interface SimpleProperty { + /** + * 属性名 (如: FrontFaceScore) + */ + property?: string; + + /** + * 属性中文名 (如: 人脸置信度) + */ + desc?: string; + + /** + * 属性值 (可能是数字、字符串或 Base64) + */ + value?: any; +} + +/** + * 简单结果 + */ +export interface SimpleResult { + /** + * 告警中文描述 + */ + Description?: string; + + /** + * 详细属性列表 (如: 置信度、人脸小图等) + */ + Properties?: SimpleProperty[]; +} + +/** + * 报警报告返回VO + */ +export interface AlarmReportVO { + /** + * 违规描述 + */ + summary?: string; + + /** + * 任务描述 + */ + taskDesc?: string; + + /** + * 任务会话 + */ + taskSession?: string; + + /** + * 报警盒子IP + */ + boardIp?: string; + + /** + * 告警类别 + */ + alarmType?: string; + + /** + * 视频的url + */ + rtspUrl?: string; + + /** + * 基准图路径 + */ + baseImage?: string; + + /** + * 抓拍图路径 + */ + captureImage?: string; + + /** + * 报警结果 + */ + result?: SimpleResult; +} + diff --git a/src/api/types/edgebox/EdgeBox.ts b/src/api/types/edgebox/EdgeBox.ts new file mode 100644 index 0000000..dbb2af2 --- /dev/null +++ b/src/api/types/edgebox/EdgeBox.ts @@ -0,0 +1,259 @@ +// 边缘盒子算法任务配置 DTO +export interface AlgTaskConfigDto { + + id?: number; + /** + * 摄像机id + */ + cameraId?: number; + + /** + * 第三方服务器的地址 + */ + url?: string; + + /** + * 任务会话名称 (建议使用唯一标识或 UUID) + */ + AlgTaskSession?: string; + + /** + * 摄像头名称 (如: "cam66" 或 "机柜球机") + */ + MediaName?: string; + + /** + * 任务描述 + */ + TaskDesc?: string; + + /** + * 需要配置的算法 ID 列表 + * 例如: [8, 52] (8-烟火, 52-人脸) + */ + AlgInfo: number[]; + + /** + * 核心算法参数配置 (嵌套对象) + */ + UserData?: UserDataDto; +} + +// 用户数据配置 DTO + interface UserDataDto { + /** + * 方法配置 ID 列表 + */ + MethodConfig?: number[]; + + /** + * 是否启用烟火误报过滤 (true: 开启过滤, false: 高灵敏度) + */ + enable_fire_smoke_filter?: boolean; + + /** + * 火焰置信度阈值 (0.0 - 1.0) + */ + fire_threshold?: number; + + /** + * 烟雾置信度阈值 (0.0 - 1.0) + */ + smoke_threshold?: number; + + /** + * 烟火持续时长 (秒),需持续多久才报警 + */ + fire_smoke_keep_sec?: number; + + /** + * 烟火告警间隔 (秒) + */ + fire_smoke_alarm_interval_sec?: number; + + /** + * 人脸比对相似度阈值 + */ + face_reg_similarity?: number; + + /** + * 是否启用 GA/T-1400 标准 + */ + face_reg_enable_gat1400?: boolean; + + /** + * 是否启用多次确认 (防抖动) + */ + face_reg_enable_multi_check?: boolean; + + /** + * 陌生人阈值 (低于此值视为陌生人) + */ + face_low_similarity?: number; + + /** + * 人脸ID重复上报间隔 (毫秒) + */ + face_id_upload_interval_ms?: number; + + /** + * 最小人脸像素 (例如 30px) + */ + front_face_min_pixel?: number; + + /** + * 人脸库 ID (例如 1) + */ + face_repositories?: number; + + /** + * 是否启用火焰深度模式 + */ + enable_fire_deep_mode?: boolean; + + /** + * 人脸检测基础阈值 + */ + threshold_for_face?: number; + + /** + * 启用 GA/T-1400 + */ + capture_is_gat1400_enable?: boolean; + + /** + * 扩大脸部区域 + */ + expand_face_area?: boolean; + + /** + * 更新间隔 + */ + face_repeat_upload_ms?: number; + + /** + * 抓拍阈值 + */ + front_face_threshold?: number; + + /** + * 仅上报正脸 + */ + is_front_only?: boolean; + + /** + * 上传裁剪的人脸图 + */ + upload_cropped_face_image?: boolean; + + /** + * 安全帽阈值 + */ + helmet_det_threshold?: number; + + /** + * 无安全帽阈值 + */ + no_helmet_det_threshold?: number; + + /** + * 违规持续时长 + */ + helmet_v3_keep_no_sec?: number; + } + +/** + * algorithmTask返回vo + */ +export interface AlgorithmTaskVO { + /** + * 主键 + */ + id: number; + + /** + * 摄像机ID + */ + cameraId?: number; + + /** + * 第三方服务器的地址 + */ + url?: string; + + /** + * 任务编号 + */ + algTaskSession?: string; + + /** + * 摄像头名称 + */ + mediaName?: string; + + /** + * 任务描述 + */ + taskDesc?: string; + + /** + * 算法列表 + */ + algInfo: number[]; + + /** + * 算法参数 (JSON 格式) + */ + userData?: any; + + /** + * 创建时间 + */ + createTime?: string; + + /** + * 更新时间 + */ + updateTime?: string; +} + +import type { IPageQuery } from '@/api/types'; + +// 查询条件 +export type EdgeBoxQuery = IPageQuery & { + name?: string; + ip?: string; + port?: string + mask?: string; + gateway?: string; + account?: string; + password?: string; +}; + +// 编辑form表单 +export type EdgeBoxForm = { + id?: number; + name?: string; + ip?: string; + port?: string; + mask?: string; + gateway?: string; + account?: string; + password?: string; +}; + +// list或detail返回结构 +export type EdgeBoxRow = { + id?: number; + name?: string; + ip?: string; + port?: string; + mask?: string; + gateway?: string; + account?: string; + password?: string; + createTime?: string; + updateTime?: string; +}; + + diff --git a/src/api/types/faceinfo/FaceInfo.ts b/src/api/types/faceinfo/FaceInfo.ts new file mode 100644 index 0000000..f3ba2b4 --- /dev/null +++ b/src/api/types/faceinfo/FaceInfo.ts @@ -0,0 +1,30 @@ +import type { IPageQuery } from '@/api/types'; + +// 查询条件 +export type FaceInfoQuery = IPageQuery & { + faceSign?: string; + name?: string; + libraryId?: number; + registerTimeStart?: string; + registerTimeEnd?: string; +}; + +// 编辑form表单 +export type FaceInfoForm = { + id?: number; + faceSign?: string; + name?: string; + libraryId?: number; + imageUrl?: string; + registerTime?: string; +}; + +// list或detail返回结构 +export type FaceInfoRow = { + id?: number; + faceSign?: string; + name?: string; + libraryId?: number; + registerTime?: string; +}; + diff --git a/src/api/types/facelibrary/FaceLibrary.ts b/src/api/types/facelibrary/FaceLibrary.ts new file mode 100644 index 0000000..ee09487 --- /dev/null +++ b/src/api/types/facelibrary/FaceLibrary.ts @@ -0,0 +1,22 @@ +import type { IPageQuery } from '@/api/types'; +// 查询条件 +export type FaceLibraryQuery = IPageQuery & { + name?: string; + boxId?: number; +}; +// 编辑form表单 +export type FaceLibraryForm = { + id?: number; + name?: string; + albumId?: number; + boxId?: number; +}; + +// list或detail返回结构 +export type FaceLibraryRow = { + id?: number; + name?: string; + albumId?: number; + boxId?: number; +}; + diff --git a/src/api/types/index.ts b/src/api/types/index.ts new file mode 100644 index 0000000..0dc8f54 --- /dev/null +++ b/src/api/types/index.ts @@ -0,0 +1,24 @@ +// 请求响应参数(不包含data) +export type IResult = { + code: string; + message: string; +}; + +// 请求响应参数(包含data) +export type IResultData = IResult & { + data: T; +}; + +export type IPage = { + current: number; + limit: number; + totalPage: number; + total: number; + rows: T[]; + param?: { [key: string]: any } | string; +}; + +export type IPageQuery = { + page?: number; + limit?: number; +}; diff --git a/src/api/types/monitor/Tree.ts b/src/api/types/monitor/Tree.ts new file mode 100644 index 0000000..628e21f --- /dev/null +++ b/src/api/types/monitor/Tree.ts @@ -0,0 +1,9 @@ +// 定义基本的TreeNode接口 +export type TreeNode= { + id: number; + name: string; + status?: number; + type: number; // 0: Region, 1: Substation, 2: NVR, 3: Camera + children?: TreeNode[]; +} + diff --git a/src/api/types/monitor/camera.ts b/src/api/types/monitor/camera.ts new file mode 100644 index 0000000..ee8584f --- /dev/null +++ b/src/api/types/monitor/camera.ts @@ -0,0 +1,168 @@ +// 分页查询基础类型 +import type { IPageQuery } from "@/api/types"; + +/** + * Camera 查询 DTO + */ +export type CameraQuery = IPageQuery & { + + /** + * 摄像头id + */ + id?: number; + /** + * 摄像头名称 + */ + name?: string; + + /** + * 所属 NVR ID + */ + nvrId?: number; + + /** + * 通道号 + */ + channelId?: number; + + /** + * 摄像头地址 + */ + ipAddress?: string; + + /** + * 视频类型:1-可见光 2-热成像 + */ + videoType?: number; + + /** + * 摄像头类型:0-枪机 1-球体 + */ + type?: number; + + /** + * 通道类型:0-海康 1-大华 + */ + channelDriver?: number; + + /** + * 在线状态:1-在线, 0-离线 + */ + status?: number; +} +// 编辑form表单 +export type CameraForm= { + /** + * 主键ID + */ + id: number; + + /** 摄像头编号 */ + cameraNo?: string; + + /** + * 摄像头名称 + */ + name: string; + + /** + * 摄像头类型:0-枪机 1-球体 + */ + type: number; + + /** + * 通道类型:0-海康 1-大华 + */ + channelDriver: number; + + /** + * 具体安装位置 + */ + installLocation: string; + /** + * 是否开启巡检 + */ + enableInspection?: number + +} + +/** + * list或detail返回结构 + */ +export type CameraRow = { + /** 主键ID */ + id?: number; + + /** 摄像头编号 */ + cameraNo?: string; + + /** 摄像头名称 */ + name?: string; + /** 边缘盒子的id */ + boxId?: number; + + /** 所属 NVR */ + nvrId?: number; + + /** 通道号 */ + channelId?: number; + + /** 摄像头地址 */ + ipAddress?: string; + + /** 1-可见光 2-热成像 */ + videoType?: number; + + /** 0-枪机 1-球体 */ + type?: number; + + /** 守望位 1-开启,0-关闭 */ + watchfulState?: number; + + /** 守望归位的时间(单位秒) */ + watchfulTime?: number; + + /** 守望归位的预置位 */ + watchfulIndex?: number; + + /** 通道类型 0-海康 1-大华 */ + channelDriver?: number; + + /** 具体安装位置 */ + installLocation?: string; + + /** 排序号 */ + sortOrder?: number; + + /** 在线状态:1-在线, 0-离线 */ + status?: number; + + /** 更新时间 */ + updateTime?: string; + + /** + * 码流地址 + */ + rtsp?: string; + + /** + * 所属NVR的名称 + */ + nvrName?: string + + /** + * 快照图片 + */ + homeImagePath?:string + + /** + * 是否开启巡检 + */ + enableInspection?: number + /** + * 算法列表 + */ + algInfo?:number[]; +} + + diff --git a/src/api/types/monitor/nvr.ts b/src/api/types/monitor/nvr.ts new file mode 100644 index 0000000..5ed56b5 --- /dev/null +++ b/src/api/types/monitor/nvr.ts @@ -0,0 +1,142 @@ +import type { IPageQuery } from '@/api/types'; + +// 查询条件 +export type NvrQuery = IPageQuery & { + + /** + * NVR设备ID + */ + id?:number; + /** + * NVR设备名称 + */ + name?: string; + + /** + * 所属变电站Id + */ + stationId?: number; + + /** + * IP地址 + */ + ip?: string; + + /** + * 端口号 + */ + port?: number; + + /** + * nvr的类型,1-大华, 0-海康威视 + */ + driver?: number; + + /** + * 在线状态:1-在线, 0-离线 + */ + status?: number; +}; + +// 编辑form表单 +export type NvrForm = { + /** + * 主键ID + */ + id: number; + + /** + * NVR设备名称 + */ + name: string; + + /** + * 所属变电站Id + */ + stationId: number; + + /** + * IP地址 + */ + ip: string; + + /** + * 端口号 + */ + port: number; + + /** + * 登录用户名 + */ + account: string; + + /** + * 密码 + */ + password: string; + + + /** + * nvr的类型,1-大华, 0-海康威视 + */ + driver: number; + + /** + * 在线状态:1-在线, 0-离线 + */ + status: number; +}; + +// list或detail返回结构 +export type NvrRow = { + /** + * 主键ID + */ + id: number; + + /** + * NVR设备名称 + */ + name: string; + + /** + * 所属变电站Id + */ + stationId: number; + + /** + * IP地址 + */ + ip: string; + + /** + * 端口号 + */ + port: number; + + /** + * 登录用户名 + */ + account: string; + /** + * 密码 + */ + password: string; + + /** + * nvr的类型,1-大华, 0-海康威视 + */ + driver: number; + + /** + * 在线状态:1-在线, 0-离线 + */ + status: number; + + /** + * 创建时间 + */ + createTime: string; // 对应 LocalDateTime, + + isLoading: boolean; +}; diff --git a/src/api/types/monitor/preset.ts b/src/api/types/monitor/preset.ts new file mode 100644 index 0000000..5431740 --- /dev/null +++ b/src/api/types/monitor/preset.ts @@ -0,0 +1,85 @@ +/** + * Preset返回vo + */ +export type PresetRow= { + /** + * 预置位 + */ + presetIndex?: number; + /** + * 预置位名称 + */ + presetName?: string; + /** + * 是否被设置 + */ + isSet?: boolean; + + /** + * 上报服务器的接口 + */ + presetUrl?: string; + /** + * 描述 + */ + description?: string; + /** + * 是否是基准点 + */ + isBasicPoint?: number; +} + +// 编辑form表单 +export type PresetForm = { + + + /** + * 预置位id + */ + presetId?: number; + /** + * 通道id + */ + channelId?: number; + + /** + * 上报服务器的接口 + */ + presetUrl?: string; + + /** + * 摄像机id + */ + cameraId?: number; + /** + * 预置位名称 + */ + presetName?: string; + /** + * 预置位描述 + */ + description?: string; + /** + * 是否是基准点 + */ + isBasicPoint?: number; +}; +export type PresetItem= { + presetIndex: number; + presetName: string; + isSet: boolean; // true=被占用, false=未被占用 +} + +/** + * Preset删除DTO + */ +export type PresetDeleteDTO= { + /** + * 频道ID + */ + cameraId?: number; + /** + * 当前预置位索引 + */ + currentPresetIndex?: number; +} diff --git a/src/api/types/monitor/watchful.ts b/src/api/types/monitor/watchful.ts new file mode 100644 index 0000000..83fde52 --- /dev/null +++ b/src/api/types/monitor/watchful.ts @@ -0,0 +1,16 @@ +/** + * 守望参数返回参数 + */ +export type WatchfulRow= { + /** id */ + id?: number; + + /** 0-不启用,1-启用 */ + watchfulState?: number; + + /** 守望归位时间(单位秒) */ + watchfulTime?: number; + + /** 守望归位的预置位 */ + watchfulIndex?: number; +} \ No newline at end of file diff --git a/src/api/types/substation/Substation.ts b/src/api/types/substation/Substation.ts new file mode 100644 index 0000000..0c39d11 --- /dev/null +++ b/src/api/types/substation/Substation.ts @@ -0,0 +1,29 @@ +import type { IPageQuery } from '@/api/types'; + +// 查询条件 +export type SubstationQuery = IPageQuery & { + name?: string; + regionId?: number; + type?: number; + address?: string; +}; + +// 编辑form表单 +export type SubstationForm = { + id?: number; + name?: string; + regionId?: number; + type?: number; + address?: string; +}; + +// list或detail返回结构 +export type SubstationRow = { + id?: number; + name?: string; + regionId?: number; + type?: number; + address?: string; + createTime?: string; +}; + diff --git a/src/api/types/system/Product.ts b/src/api/types/system/Product.ts new file mode 100644 index 0000000..005a7db --- /dev/null +++ b/src/api/types/system/Product.ts @@ -0,0 +1,26 @@ +import type { IPageQuery } from '@/api/types'; + +// 查询条件 +export type ProductQuery = IPageQuery & { + productName?: string; + price?: number; + status?: number; +}; + +// 编辑form表单 +export type ProductForm = { + id?: number; + productName?: string; + price?: number; + status?: number; +}; + +// list或detail返回结构 +export type ProductRow = { + id?: number; + productName?: string; + price?: number; + status?: number; + createTime?: string; +}; + diff --git a/src/api/types/system/captcha.ts b/src/api/types/system/captcha.ts new file mode 100644 index 0000000..8a969d7 --- /dev/null +++ b/src/api/types/system/captcha.ts @@ -0,0 +1,16 @@ +// 登录模块 +export type CaptchaInfo = { + bigImageBase64: string; + bigWidth: number; + bigHeight: number; + smallImageBase64: string; + smallWidth: number; + smallHeight: number; + requestId: string; + posY: number; + secretKey: string; +}; +export type CaptchaVerifyImageParams = { + requestId: string; + moveEncrypted: string; +}; diff --git a/src/api/types/system/client.ts b/src/api/types/system/client.ts new file mode 100644 index 0000000..da9c07f --- /dev/null +++ b/src/api/types/system/client.ts @@ -0,0 +1,41 @@ +import type { IPageQuery } from '@/api/types'; + +// 查询条件 +export type SysClientQuery = IPageQuery & { + clientKey?: string; + clientSecret?: string; + grantTypeCd?: string; + deviceTypeCd?: string; + activeTimeout?: number; + version?: number; +}; + +// 编辑form表单 +export type SysClientForm = { + clientKey?: string; + clientSecret?: string; + grantTypeCdList?: string[]; + grantTypeCd?: string; + deviceTypeCd?: string; + activeTimeout?: number; + timeout?: number; + clientStatusCd?: string; + version?: number; + remark?: string; +}; + +// list或detail返回结构 +export type SysClientRow = { + clientId?: string; + clientKey?: string; + clientSecret?: string; + grantTypeCd?: string; + grantTypeCdList?: string[]; + deviceTypeCd?: string; + activeTimeout?: number; + timeout?: number; + clientStatusCd?: string; + version?: number; + remark?: string; + isLock?: string; +}; diff --git a/src/api/types/system/common.ts b/src/api/types/system/common.ts new file mode 100644 index 0000000..4e33967 --- /dev/null +++ b/src/api/types/system/common.ts @@ -0,0 +1,8 @@ +export type CommonTemplateDown = { + templateName: string; +}; + +export type OssTransform = { + bucket?: string; + url: string; +}; diff --git a/src/api/types/system/config.ts b/src/api/types/system/config.ts new file mode 100644 index 0000000..18d01ca --- /dev/null +++ b/src/api/types/system/config.ts @@ -0,0 +1,27 @@ +import type { IPageQuery } from '@/api/types'; + +export type ConfigQuery = IPageQuery & { + configName?: string; + configKey?: string; +}; + +export type ConfigForm = { + id?: number; + configName: string; + configKey: string; + configValue: string; + remark: string; +}; + +export type ConfigInfo = { + id: number; + configName: string; + configKey: string; + configValue: string; + remark: string; + createId: number; + createTime: string; + updateId: number; + updateTime: string; + isLock?: string; +}; diff --git a/src/api/types/system/datarole.ts b/src/api/types/system/datarole.ts new file mode 100644 index 0000000..158cefa --- /dev/null +++ b/src/api/types/system/datarole.ts @@ -0,0 +1,35 @@ +import type { IPageQuery } from '@/api/types'; + +// 查询条件 +export type SysDataRoleQuery = IPageQuery & { + roleName?: string; + isLock?: string; +}; + +// 编辑form表单 +export type SysDataRoleForm = { + id?: number; + roleName?: string; + remark?: string; + isLock?: string; +}; + +// list或detail返回结构 +export type SysDataRoleRow = { + id?: number; + roleName?: string; + remark?: string; + isLock?: string; +}; + +// 数据角色Form初始化数据:菜单树、部门树、用户列等 +export type SysDataRoleMeta = { + menuLists: SysDataRoleMenuTree[]; +}; + +export type SysDataRoleMenuTree = { + id: string; + pid: string; + title: string; + children: SysDataRoleMenuTree[]; +}; diff --git a/src/api/types/system/dept.ts b/src/api/types/system/dept.ts new file mode 100644 index 0000000..4a30410 --- /dev/null +++ b/src/api/types/system/dept.ts @@ -0,0 +1,79 @@ +import type { IPageQuery } from '@/api/types'; + +// 查询条件 +export type SysDeptQuery = IPageQuery & { + name?: string; +}; + +// 编辑form表单 +export type SysDeptForm = { + id?: number; + name?: string; + pid?: number; + sort?: number; + remark?: string; + leaders: number[]; +}; + +// list或detail返回结构 +export type SysDeptRow = { + id: number; + pid: number; + name: string; + deep?: number; + sort?: number; + remark?: string; + isLock?: string; + leaders: number[]; +}; + +export type SysDeptTree = { + id: number; + pid: number; + name: string; + deep?: number; + sort?: number; + children: SysDeptTree[]; + userTotal?: number; +}; + +export type SysDeptLeader = { + id: number; + nickname: string; +}; + +export type SysDeptLeaderData = { + leaderInfoVOS: SysDeptLeader[]; +}; + +export type SysDeptDeptSetting = { + userIds: number[]; + deptIds: number[]; +}; + +export type SysDeptDept = { + deptLists: SysDeptDeptTree[]; + selectIds: number[]; +}; + +export type SysDeptDeptTree = { + id: number; + pid: number; + name: string; + children: SysDeptDeptTree[]; +}; + +export type DeptRoleForm = { + roleIds: number[]; + userId: number; +}; + +export type DeptRoleData = { + selectIds: number[]; + roleInfoVOS: DeptRoleInfo[]; +}; + +export type DeptRoleInfo = { + id: number; + roleName: string; +}; diff --git a/src/api/types/system/dict.ts b/src/api/types/system/dict.ts new file mode 100644 index 0000000..b7e9d09 --- /dev/null +++ b/src/api/types/system/dict.ts @@ -0,0 +1,66 @@ +import type { IPageQuery } from '@/api/types'; + +// 获取所有字典信息 +export type DictCustom = { + callbackShowStyle: string; + codeName: string; + id: string; + isLock: string; + isShow: string; + sort: number; + sysDictTypeId: number; + alias?: string; +}; + +// 字典类别列表查询 +export type DictTypeQuery = IPageQuery & { + typeName: string; + typeCode: string; +}; + +// 字典类别列表 +export type DictType = { + id?: number; + typeName: string; + typeCode: string; + isLock?: string; + isShow?: string; + delFlag?: string; + remark: string; + createTime?: string; + updateTime?: string; + isDynamic: boolean; +}; + +// 字典分类option +export type DictOption = { + value: string; + label: string; +}; + +// 字典分类类型 +export type DictCategory = { + label: string; + options: DictOption[]; +}; + +// 字典列表查询 +export type DictQuery = IPageQuery & { + sysDictTypeId: number; + codeName: string; +}; + +export type Dict = { + id?: number; + sysDictTypeId?: number; + codeName: string; + alias?: string; + sort?: number; + callbackShowStyle: string; + remark: string; + isLock?: string; + isShow?: string; + delFlag?: string; + createTime?: string; + updateTime?: string; +}; diff --git a/src/api/types/system/file.ts b/src/api/types/system/file.ts new file mode 100644 index 0000000..05d5b24 --- /dev/null +++ b/src/api/types/system/file.ts @@ -0,0 +1,24 @@ +import type { IPageQuery } from '@/api/types'; + +// 查询条件 +export type SysFileQuery = IPageQuery & { + filename?: string; + dirTag?: string; + objectName?: string; +}; + +// 编辑form表单 +export type SysFileForm = {}; + +// list或detail返回结构 +export type SysFileRow = { + id?: number; + filename?: string; + dirTag?: string; + size?: number; + url?: string; + objectName?: string; + contextType?: string; + eTag?: string; + fileId?: number; +}; diff --git a/src/api/types/system/login.ts b/src/api/types/system/login.ts new file mode 100644 index 0000000..f015cb2 --- /dev/null +++ b/src/api/types/system/login.ts @@ -0,0 +1,42 @@ +// 登录模块 +export type LoginParams = { + username: string; + password: string; + clientId: string; + grantType: string; + iv: string; + requestId: string; +}; + +export type LoginInfo = { + name: string; + avatar: string; + introduction: string; + accessToken: string; + refreshToken: string; + roles: string[]; + userInfo: UserInfo; + permissions: string[]; +}; + +export type UserInfo = { + id?: number; + username: string; + phone?: string; + nickname?: string; + logo?: string; + age?: number; + sex?: number; + idCard?: string; + email?: string; + accountStatusCd?: string; + userTagCd?: string; + lastLoginTime?: string; + createTime?: string; + updateTime?: string; +}; + +export type ChallengeInfo = { + requestId: string; + secretKey: string; +}; diff --git a/src/api/types/system/menu.ts b/src/api/types/system/menu.ts new file mode 100644 index 0000000..7b95e89 --- /dev/null +++ b/src/api/types/system/menu.ts @@ -0,0 +1,36 @@ +export type MenuQuery = { + isShowButton: boolean; +}; + +export type MenuForm = { + id?: string; + title?: string; + pid?: string; + path?: string; + name?: string; + icon?: string; + component?: string; + redirect?: string; + sort?: number; + deep?: number; + menuTypeCd?: string; + permissions?: string; + isHidden?: string; + hasChildren?: string; + isLink?: string; + isFull?: string; + isAffix?: string; + isKeepAlive?: string; +}; + +export type MenuTree = { + id: string; + pid: string; + title: string; + children: MenuTree[]; +}; + +export type MenuPermissionQuery = { + id: string; + permissions: string; +}; diff --git a/src/api/types/system/message.ts b/src/api/types/system/message.ts new file mode 100644 index 0000000..4b02525 --- /dev/null +++ b/src/api/types/system/message.ts @@ -0,0 +1,30 @@ +import type { IPageQuery } from '@/api/types'; + +export type MessageQuery = IPageQuery & { + messageTypeCd?: string; + readType?: string; +}; + +export type MessageRow = { + id: number; + messageTypeCd: string; + senderId: number; + title: string; + content: string; + isRead: string; + createTime: string; +}; + +export type UnreadMessageCount = { + all: number; + todo: number; + msg: number; +}; + +export type Message = { + messageTypeCd?: string; + senderId?: number; + title?: string; + content?: string; + receiverIds?: string[]; +}; diff --git a/src/api/types/system/role.ts b/src/api/types/system/role.ts new file mode 100644 index 0000000..f861ec7 --- /dev/null +++ b/src/api/types/system/role.ts @@ -0,0 +1,65 @@ +import type { IPageQuery } from '@/api/types'; + +export type RoleQuery = IPageQuery & { + roleName?: string; +}; + +export type RoleForm = { + id?: number; + roleName: string; + remark: string; +}; + +export type RoleInfo = { + id: number; + roleName: string; + remark: string; + delFlag: string; + createTime: string; + updateTime: string; + isLock?: string; + permissions?: string; +}; + +export type RoleMenu = { + selectMenuIds: string[]; + menuLists: RoleMenuTree[]; + deptLists: DeptTree[]; + userLists: UserInfo[]; + scope: Scope; +}; + +export type RoleMenuTree = { + id: string; + pid: string; + title: string; + children: RoleMenuTree[]; + useDataScope: string; + menuTypeCd: string; + permissions: string; +}; + +export type DeptTree = { + id: number; + pid: string; + name: string; + children: RoleMenuTree[]; +}; + +export type UserInfo = { + id: number; + nickname: string; + username: string; +}; + +export type RoleMenuForm = { + menuIds: string[]; + roleId: number; +}; + +export type Scope = { + menuId: string; + dataScope: string; + deptIds: number[]; + userIds: number[]; +}; diff --git a/src/api/types/system/sysLoginLog.ts b/src/api/types/system/sysLoginLog.ts new file mode 100644 index 0000000..d9127ec --- /dev/null +++ b/src/api/types/system/sysLoginLog.ts @@ -0,0 +1,37 @@ +import type { IPageQuery } from '@/api/types'; + +// 查询条件 +export type SysLoginLogQuery = IPageQuery & { + userName?: string; + loginStatus?: string; + loginTimeStart?: string; + loginTimeEnd?: string; +}; + +// 编辑form表单 +export type SysLoginLogForm = { + id?: number; + userName?: string; + loginStatus?: string; + loginTime?: string; + ipAddress?: string; + loginLocation?: string; + browser?: string; + os?: string; + msg?: string; + remark?: string; +}; + +// list或detail返回结构 +export type SysLoginLogRow = { + id?: number; + userName?: string; + loginStatus?: string; + loginTime?: string; + ipAddress?: string; + loginLocation?: string; + browser?: string; + os?: string; + msg?: string; + remark?: string; +}; diff --git a/src/api/types/system/sysTempFile.ts b/src/api/types/system/sysTempFile.ts new file mode 100644 index 0000000..b251328 --- /dev/null +++ b/src/api/types/system/sysTempFile.ts @@ -0,0 +1,49 @@ +import type { IPageQuery } from '@/api/types'; + +// 查询条件 +export type SysTempFileQuery = IPageQuery & { + tempName?: string; +}; + +// 历史记录查询条件 +export type SysTempFileHistoryQuery = IPageQuery & { + sysTempFileId: number; +}; + +// 编辑form表单 +export type SysTempFileForm = { + id?: number; + sysFileId?: number; + tempName?: string; + url?: string; + remark?: string; + alias?: string; +}; + +// list或detail返回结构 +export type SysTempFileRow = { + id?: number; + sysFileId?: number; + tempName?: string; + url?: string; + remark?: string; + delFlag?: string; + createId?: number; + createTime?: string; + updateId?: number; + updateTime?: string; + alias?: string; +}; + +// 历史记录 +export type SysTempFileHistory = { + id?: number; + sysTempFileId?: number; + sysFileId?: number; + tempName?: string; + url?: string; + remark?: string; + delFlag?: string; + createId?: number; + createTime?: string; +}; diff --git a/src/api/types/system/upload.ts b/src/api/types/system/upload.ts new file mode 100644 index 0000000..ec7add5 --- /dev/null +++ b/src/api/types/system/upload.ts @@ -0,0 +1,19 @@ +import type { UploadRawFile } from 'element-plus/es/components/upload/src/upload'; + +export type UploadFile = { + file: UploadRawFile; + dirTag?: string; +}; + +export type UploadResult = { + url: string; + filename: string; + eTag: string; + objectName: string; + dirTag: string; + contextType: string; + size: number; + fileId: number; +}; + +export type IUploadResult = UploadResult | null; diff --git a/src/api/types/system/user.ts b/src/api/types/system/user.ts new file mode 100644 index 0000000..c55fe8c --- /dev/null +++ b/src/api/types/system/user.ts @@ -0,0 +1,79 @@ +// 登录模块 +import type { IPageQuery } from '@/api/types'; + +export type UserQuery = IPageQuery & { + username?: string; + phone?: string; + accountStatusCd?: string; + startDate?: string; + endDate?: string; + nickname?: string; + deptId?: number; + isThisDeep?: boolean; +}; + +export type UserForm = { + id?: number; + username?: string; + pwd?: string; + phone: string; + nickname: string; + logo: string; + age: number; + sex: number; + idCard: string; + email: string; + accountStatusCd: string; + userTagCd: string; + birthday: string; +}; + +export type UserInfo = { + id?: number; + username: string; + phone: string; + nickname: string; + logo: string; + age: number; + sex: number; + idCard: string; + email: string; + accountStatusCd: string; + userTagCd: string; + lastLoginTime: string; + createTime: string; + updateTime: string; + delFlag: string; + birthday: string; +}; + +export type UserRoleForm = { + roleIds: number[]; + userId: number; +}; + +export type UserRoleData = { + selectIds: number[]; + roleInfoVOS: UserRoleInfo[]; +}; + +export type UserRoleInfo = { + id: number; + roleName: string; +}; + +export type UserPasswordForm = { + oldPwd: string; + newPwd: string; +}; + +export type UserOptions = { + id: number; + username: string; + nickname: string; +}; + +export type UserTagOptions = { + userIds: number[]; + userTagCd: string; +}; diff --git a/src/api/types/teacher/teacherStatistics.ts b/src/api/types/teacher/teacherStatistics.ts new file mode 100644 index 0000000..994a877 --- /dev/null +++ b/src/api/types/teacher/teacherStatistics.ts @@ -0,0 +1,56 @@ +import type { IPageQuery } from '@/api/types'; + +// 查询条件 +export type TeacherStatisticsQuery = IPageQuery & { + year?: string; + month?: string; + duringTime?: string; + teacherId?: string; + teacherCommonType?: number; + totalTeaching?: number; + totalClassCount?: number; + totalHours?: number; + checkStatus?: number; + checkTimeStart?: string; + checkTimeEnd?: string; + lastSyncTimeStart?: string; + lastSyncTimeEnd?: string; +}; + +// 编辑form表单 +export type TeacherStatisticsForm = { + id?: number; + year?: string; + month?: string; + duringTime?: string; + teacherId?: string; + teacherCommonType?: number; + totalTeaching?: number; + totalClassCount?: number; + totalHours?: number; + checkStatus?: number; + checkTime?: string; + lastSyncTime?: string; + remark?: string; +}; + +// list或detail返回结构 +export type TeacherStatisticsRow = { + id?: number; + year?: string; + month?: string; + duringTime?: string; + teacherId?: string; + teacherCommonType?: number; + totalTeaching?: number; + totalClassCount?: number; + totalHours?: number; + checkStatus?: number; + checkTime?: string; + lastSyncTime?: string; + remark?: string; + createId?: number; + createTime?: string; + updateId?: number; + updateTime?: string; +}; diff --git a/src/api/types/toolbox/generator.ts b/src/api/types/toolbox/generator.ts new file mode 100644 index 0000000..1e8f94f --- /dev/null +++ b/src/api/types/toolbox/generator.ts @@ -0,0 +1,105 @@ +import type { IPageQuery } from '@/api/types'; + +export type GeneratorQuery = IPageQuery & { + tableName?: string; + tableComment?: string; +}; + +export type GeneratorInfo = { + tableId: number; + tableName: string; + tableComment: string; + className: string; + camelClassName: string; + tplCategory: string; + packageName: string; + moduleName: string; + businessName: string; + functionName: string; + functionAuthor: string; + type: string; + options: string; + path: string; + createId: number; + createTime: string; + updateId: number; + updateTime: string; +}; + +export type GeneratorForm = { + baseInfo: GeneratorBaseInfo; + columns: GeneratorColumnInfo[]; + generatorInfo: GeneratorGeneratorInfo; +}; + +export type GeneratorBaseInfo = { + tableId?: number; + tableName: string; + tableComment: string; + className: string; + functionAuthor: string; + remark: string; +}; + +export type GeneratorColumnInfo = { + autofillType: string; + columnComment: string; + columnId: number; + columnName: string; + columnType: string; + dictType: string; + htmlType: string; + isAutofill: string; + isEdit: string; + isIncrement: string; + isInsert: string; + isList: string; + isLogicDel: string; + isPk: string; + isQuery: string; + isRequired: string; + isUniqueValid: string; + javaField: string; + javaType: string; + javaTypePackage: string; + options: string; + queryType: string; + specialPackages: string; + tableId: number; + upCamelField: string; +}; + +export type GeneratorGeneratorInfo = { + tplCategory?: string; + packageName: string; + moduleName: string; + businessName: string; + functionName: string; + options: string; + type: string; + parentMenuId: string; + hasImport: string; + hasExport: string; + pathApi: string; + pathWeb: string; + generateType: string; + menuInitType: string; + btnPermissionType: string; + isAutofill: string; + btnDataScopeType: string; + windowShowType: string; +}; + +export type GeneratorPreviewInfo = { + name: string; + code: string; + language: string; + alias: string; +}; + +export type GeneratorCheckInfo = { + checkedApiPath: boolean; + checkedWebPath: boolean; + pathApi: string; + pathWeb: string; +}; diff --git a/src/assets/css-vars.css b/src/assets/css-vars.css new file mode 100644 index 0000000..7c5774c --- /dev/null +++ b/src/assets/css-vars.css @@ -0,0 +1,92 @@ +#mt-edit.dark { + color-scheme: dark; + --el-color-primary: #409eff; + --el-color-primary-light-3: #3375b9; + --el-color-primary-light-5: #2a598a; + --el-color-primary-light-7: #213d5b; + --el-color-primary-light-8: #1d3043; + --el-color-primary-light-9: #18222c; + --el-color-primary-dark-2: #66b1ff; + --el-color-success: #67c23a; + --el-color-success-light-3: #4e8e2f; + --el-color-success-light-5: #3e6b27; + --el-color-success-light-7: #2d481f; + --el-color-success-light-8: #25371c; + --el-color-success-light-9: #1c2518; + --el-color-success-dark-2: #85ce61; + --el-color-warning: #e6a23c; + --el-color-warning-light-3: #a77730; + --el-color-warning-light-5: #7d5b28; + --el-color-warning-light-7: #533f20; + --el-color-warning-light-8: #3e301c; + --el-color-warning-light-9: #292218; + --el-color-warning-dark-2: #ebb563; + --el-color-danger: #f56c6c; + --el-color-danger-light-3: #b25252; + --el-color-danger-light-5: #854040; + --el-color-danger-light-7: #582e2e; + --el-color-danger-light-8: #412626; + --el-color-danger-light-9: #2b1d1d; + --el-color-danger-dark-2: #f78989; + --el-color-error: #f56c6c; + --el-color-error-light-3: #b25252; + --el-color-error-light-5: #854040; + --el-color-error-light-7: #582e2e; + --el-color-error-light-8: #412626; + --el-color-error-light-9: #2b1d1d; + --el-color-error-dark-2: #f78989; + --el-color-info: #909399; + --el-color-info-light-3: #6b6d71; + --el-color-info-light-5: #525457; + --el-color-info-light-7: #393a3c; + --el-color-info-light-8: #2d2d2f; + --el-color-info-light-9: #202121; + --el-color-info-dark-2: #a6a9ad; + --el-box-shadow: 0px 12px 32px 4px rgba(0, 0, 0, 0.36), 0px 8px 20px rgba(0, 0, 0, 0.72); + --el-box-shadow-light: 0px 0px 12px rgba(0, 0, 0, 0.72); + --el-box-shadow-lighter: 0px 0px 6px rgba(0, 0, 0, 0.72); + --el-box-shadow-dark: 0px 16px 48px 16px rgba(0, 0, 0, 0.72), 0px 12px 32px #000000, + 0px 8px 16px -8px #000000; + --el-bg-color-page: #0a0a0a; + --el-bg-color: #141414; + --el-bg-color-overlay: #1d1e1f; + --el-text-color-primary: #e5eaf3; + --el-text-color-regular: #cfd3dc; + --el-text-color-secondary: #a3a6ad; + --el-text-color-placeholder: #8d9095; + --el-text-color-disabled: #6c6e72; + --el-border-color-darker: #636466; + --el-border-color-dark: #58585b; + --el-border-color: #4c4d4f; + --el-border-color-light: #414243; + --el-border-color-lighter: #363637; + --el-border-color-extra-light: #2b2b2c; + --el-fill-color-darker: #424243; + --el-fill-color-dark: #39393a; + --el-fill-color: #303030; + --el-fill-color-light: #262727; + --el-fill-color-lighter: #1d1d1d; + --el-fill-color-extra-light: #191919; + --el-fill-color-blank: transparent; + --el-mask-color: rgba(0, 0, 0, 0.8); + --el-mask-color-extra-light: rgba(0, 0, 0, 0.3); + transition: all 5s; +} +#mt-edit.dark .el-button { + --el-button-disabled-text-color: rgba(255, 255, 255, 0.5); +} +#mt-edit.dark .el-card { + --el-card-bg-color: var(--el-bg-color-overlay); +} +#mt-edit.dark .el-empty { + --el-empty-fill-color-0: var(--el-color-black); + --el-empty-fill-color-1: #4b4b52; + --el-empty-fill-color-2: #36383d; + --el-empty-fill-color-3: #1e1e20; + --el-empty-fill-color-4: #262629; + --el-empty-fill-color-5: #202124; + --el-empty-fill-color-6: #212224; + --el-empty-fill-color-7: #1b1c1f; + --el-empty-fill-color-8: #1c1d1f; + --el-empty-fill-color-9: #18181a; +} diff --git a/src/assets/icons/add.svg b/src/assets/icons/add.svg new file mode 100644 index 0000000..2caac8c --- /dev/null +++ b/src/assets/icons/add.svg @@ -0,0 +1,6 @@ + + + \ No newline at end of file diff --git a/src/assets/icons/align-bottom.svg b/src/assets/icons/align-bottom.svg new file mode 100644 index 0000000..a2f9b51 --- /dev/null +++ b/src/assets/icons/align-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/align-horizontally.svg b/src/assets/icons/align-horizontally.svg new file mode 100644 index 0000000..5074b9e --- /dev/null +++ b/src/assets/icons/align-horizontally.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/align-left.svg b/src/assets/icons/align-left.svg new file mode 100644 index 0000000..2f08ab5 --- /dev/null +++ b/src/assets/icons/align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/align-right.svg b/src/assets/icons/align-right.svg new file mode 100644 index 0000000..7579fa8 --- /dev/null +++ b/src/assets/icons/align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/align-top.svg b/src/assets/icons/align-top.svg new file mode 100644 index 0000000..6b41c74 --- /dev/null +++ b/src/assets/icons/align-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/align-vertical.svg b/src/assets/icons/align-vertical.svg new file mode 100644 index 0000000..f756a60 --- /dev/null +++ b/src/assets/icons/align-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/align.svg b/src/assets/icons/align.svg new file mode 100644 index 0000000..4c7dda2 --- /dev/null +++ b/src/assets/icons/align.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/assets/icons/dark.svg b/src/assets/icons/dark.svg new file mode 100644 index 0000000..60b657e --- /dev/null +++ b/src/assets/icons/dark.svg @@ -0,0 +1,6 @@ + + + \ No newline at end of file diff --git a/src/assets/icons/delete.svg b/src/assets/icons/delete.svg new file mode 100644 index 0000000..7fb4aa2 --- /dev/null +++ b/src/assets/icons/delete.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/exit-full-screen.svg b/src/assets/icons/exit-full-screen.svg new file mode 100644 index 0000000..7c6477a --- /dev/null +++ b/src/assets/icons/exit-full-screen.svg @@ -0,0 +1,5 @@ + + + \ No newline at end of file diff --git a/src/assets/icons/export-json.svg b/src/assets/icons/export-json.svg new file mode 100644 index 0000000..75eb05a --- /dev/null +++ b/src/assets/icons/export-json.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/full-screen.svg b/src/assets/icons/full-screen.svg new file mode 100644 index 0000000..2c4c1a1 --- /dev/null +++ b/src/assets/icons/full-screen.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/src/assets/icons/group.svg b/src/assets/icons/group.svg new file mode 100644 index 0000000..2bef48f --- /dev/null +++ b/src/assets/icons/group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/help.svg b/src/assets/icons/help.svg new file mode 100644 index 0000000..016bce7 --- /dev/null +++ b/src/assets/icons/help.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/horizontal-distribution.svg b/src/assets/icons/horizontal-distribution.svg new file mode 100644 index 0000000..a20357e --- /dev/null +++ b/src/assets/icons/horizontal-distribution.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/import-json.svg b/src/assets/icons/import-json.svg new file mode 100644 index 0000000..971c6cd --- /dev/null +++ b/src/assets/icons/import-json.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/light.svg b/src/assets/icons/light.svg new file mode 100644 index 0000000..d704c39 --- /dev/null +++ b/src/assets/icons/light.svg @@ -0,0 +1,7 @@ + + + \ No newline at end of file diff --git a/src/assets/icons/line.svg b/src/assets/icons/line.svg new file mode 100644 index 0000000..efa3aad --- /dev/null +++ b/src/assets/icons/line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/lock.svg b/src/assets/icons/lock.svg new file mode 100644 index 0000000..4eb3825 --- /dev/null +++ b/src/assets/icons/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/menu-fold.svg b/src/assets/icons/menu-fold.svg new file mode 100644 index 0000000..26de71d --- /dev/null +++ b/src/assets/icons/menu-fold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/menu-unfold.svg b/src/assets/icons/menu-unfold.svg new file mode 100644 index 0000000..7fa6cae --- /dev/null +++ b/src/assets/icons/menu-unfold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/org.svg b/src/assets/icons/org.svg new file mode 100644 index 0000000..c23e20a --- /dev/null +++ b/src/assets/icons/org.svg @@ -0,0 +1 @@ + diff --git a/src/assets/icons/pen-line.svg b/src/assets/icons/pen-line.svg new file mode 100644 index 0000000..6fbedf3 --- /dev/null +++ b/src/assets/icons/pen-line.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/assets/icons/preview.svg b/src/assets/icons/preview.svg new file mode 100644 index 0000000..afb8ec5 --- /dev/null +++ b/src/assets/icons/preview.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/question.svg b/src/assets/icons/question.svg new file mode 100644 index 0000000..17ecc33 --- /dev/null +++ b/src/assets/icons/question.svg @@ -0,0 +1,10 @@ + + + + + \ No newline at end of file diff --git a/src/assets/icons/redo.svg b/src/assets/icons/redo.svg new file mode 100644 index 0000000..763b8a1 --- /dev/null +++ b/src/assets/icons/redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/return.svg b/src/assets/icons/return.svg new file mode 100644 index 0000000..2a1d786 --- /dev/null +++ b/src/assets/icons/return.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/rotate.svg b/src/assets/icons/rotate.svg new file mode 100644 index 0000000..9e88136 --- /dev/null +++ b/src/assets/icons/rotate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/save.svg b/src/assets/icons/save.svg new file mode 100644 index 0000000..c2dee9a --- /dev/null +++ b/src/assets/icons/save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/scope.svg b/src/assets/icons/scope.svg new file mode 100644 index 0000000..081e165 --- /dev/null +++ b/src/assets/icons/scope.svg @@ -0,0 +1,13 @@ + + + + + + + diff --git a/src/assets/icons/search.svg b/src/assets/icons/search.svg new file mode 100644 index 0000000..8efe863 --- /dev/null +++ b/src/assets/icons/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/setting.svg b/src/assets/icons/setting.svg new file mode 100644 index 0000000..8f147ad --- /dev/null +++ b/src/assets/icons/setting.svg @@ -0,0 +1,6 @@ + + + \ No newline at end of file diff --git a/src/assets/icons/thumbnail.svg b/src/assets/icons/thumbnail.svg new file mode 100644 index 0000000..392d921 --- /dev/null +++ b/src/assets/icons/thumbnail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/tree-list.svg b/src/assets/icons/tree-list.svg new file mode 100644 index 0000000..63b72b3 --- /dev/null +++ b/src/assets/icons/tree-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/undo.svg b/src/assets/icons/undo.svg new file mode 100644 index 0000000..9f88fe3 --- /dev/null +++ b/src/assets/icons/undo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/ungroup.svg b/src/assets/icons/ungroup.svg new file mode 100644 index 0000000..8fa16ea --- /dev/null +++ b/src/assets/icons/ungroup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/unlock.svg b/src/assets/icons/unlock.svg new file mode 100644 index 0000000..b945f7a --- /dev/null +++ b/src/assets/icons/unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/upload.svg b/src/assets/icons/upload.svg new file mode 100644 index 0000000..84e803a --- /dev/null +++ b/src/assets/icons/upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/vertical-distribution.svg b/src/assets/icons/vertical-distribution.svg new file mode 100644 index 0000000..5962274 --- /dev/null +++ b/src/assets/icons/vertical-distribution.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/view-hide.svg b/src/assets/icons/view-hide.svg new file mode 100644 index 0000000..71ba86e --- /dev/null +++ b/src/assets/icons/view-hide.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/view-show.svg b/src/assets/icons/view-show.svg new file mode 100644 index 0000000..570cc7c --- /dev/null +++ b/src/assets/icons/view-show.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/icons/zip.svg b/src/assets/icons/zip.svg new file mode 100644 index 0000000..12cfbb6 --- /dev/null +++ b/src/assets/icons/zip.svg @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/src/assets/images/403.png b/src/assets/images/403.png new file mode 100644 index 0000000..0c5ec7c Binary files /dev/null and b/src/assets/images/403.png differ diff --git a/src/assets/images/404.png b/src/assets/images/404.png new file mode 100644 index 0000000..2333586 Binary files /dev/null and b/src/assets/images/404.png differ diff --git a/src/assets/images/500.png b/src/assets/images/500.png new file mode 100644 index 0000000..6f3b6bf Binary files /dev/null and b/src/assets/images/500.png differ diff --git a/src/assets/images/avatar.gif b/src/assets/images/avatar.gif new file mode 100644 index 0000000..fdbd32c Binary files /dev/null and b/src/assets/images/avatar.gif differ diff --git a/src/assets/images/login_bg.svg b/src/assets/images/login_bg.svg new file mode 100644 index 0000000..0a9514b --- /dev/null +++ b/src/assets/images/login_bg.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/assets/images/login_left.png b/src/assets/images/login_left.png new file mode 100644 index 0000000..e9ebc11 Binary files /dev/null and b/src/assets/images/login_left.png differ diff --git a/src/assets/images/login_left1.png b/src/assets/images/login_left1.png new file mode 100644 index 0000000..eaaf3ab Binary files /dev/null and b/src/assets/images/login_left1.png differ diff --git a/src/assets/images/login_left2.png b/src/assets/images/login_left2.png new file mode 100644 index 0000000..0398053 Binary files /dev/null and b/src/assets/images/login_left2.png differ diff --git a/src/assets/images/login_left3.png b/src/assets/images/login_left3.png new file mode 100644 index 0000000..58e6e74 Binary files /dev/null and b/src/assets/images/login_left3.png differ diff --git a/src/assets/images/login_left4.png b/src/assets/images/login_left4.png new file mode 100644 index 0000000..051299d Binary files /dev/null and b/src/assets/images/login_left4.png differ diff --git a/src/assets/images/login_left5.png b/src/assets/images/login_left5.png new file mode 100644 index 0000000..7d9d430 Binary files /dev/null and b/src/assets/images/login_left5.png differ diff --git a/src/assets/images/logo.svg b/src/assets/images/logo.svg new file mode 100644 index 0000000..7565660 --- /dev/null +++ b/src/assets/images/logo.svg @@ -0,0 +1 @@ + diff --git a/src/assets/images/msg01.png b/src/assets/images/msg01.png new file mode 100644 index 0000000..6ecca0d Binary files /dev/null and b/src/assets/images/msg01.png differ diff --git a/src/assets/images/msg02.png b/src/assets/images/msg02.png new file mode 100644 index 0000000..52c890a Binary files /dev/null and b/src/assets/images/msg02.png differ diff --git a/src/assets/images/msg03.png b/src/assets/images/msg03.png new file mode 100644 index 0000000..389512f Binary files /dev/null and b/src/assets/images/msg03.png differ diff --git a/src/assets/images/msg04.png b/src/assets/images/msg04.png new file mode 100644 index 0000000..6868f74 Binary files /dev/null and b/src/assets/images/msg04.png differ diff --git a/src/assets/images/msg05.png b/src/assets/images/msg05.png new file mode 100644 index 0000000..f375ab0 Binary files /dev/null and b/src/assets/images/msg05.png differ diff --git a/src/assets/images/notData.png b/src/assets/images/notData.png new file mode 100644 index 0000000..c579a78 Binary files /dev/null and b/src/assets/images/notData.png differ diff --git a/src/assets/images/welcome.png b/src/assets/images/welcome.png new file mode 100644 index 0000000..df138ab Binary files /dev/null and b/src/assets/images/welcome.png differ diff --git a/src/assets/imgs/test/my-img.png b/src/assets/imgs/test/my-img.png new file mode 100644 index 0000000..83061ff Binary files /dev/null and b/src/assets/imgs/test/my-img.png differ diff --git a/src/assets/logo.png b/src/assets/logo.png new file mode 100644 index 0000000..ccd100f Binary files /dev/null and b/src/assets/logo.png differ diff --git a/src/assets/main.css b/src/assets/main.css new file mode 100644 index 0000000..6c29ff8 --- /dev/null +++ b/src/assets/main.css @@ -0,0 +1,18 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +/* 禁止页面级滚动条:html/body 禁止滚动,#app 用 100vh 限高,不用 overflow:hidden 避免破坏画布拖拽事件 */ +html, +body { + margin: 0; + padding: 0; + width: 100%; + height: 100%; + overflow: hidden; +} + +#app { + width: 100%; + height: 100vh; +} diff --git a/src/assets/svgs/electrical/fs/故障.svg b/src/assets/svgs/electrical/fs/故障.svg new file mode 100644 index 0000000..4bf36e1 --- /dev/null +++ b/src/assets/svgs/electrical/fs/故障.svg @@ -0,0 +1,10 @@ + + + + + + + \ No newline at end of file diff --git a/src/assets/svgs/electrical/fs/火花间隙.svg b/src/assets/svgs/electrical/fs/火花间隙.svg new file mode 100644 index 0000000..72a3351 --- /dev/null +++ b/src/assets/svgs/electrical/fs/火花间隙.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/assets/svgs/electrical/fs/电阻(阻抗).svg b/src/assets/svgs/electrical/fs/电阻(阻抗).svg new file mode 100644 index 0000000..a5b6b03 --- /dev/null +++ b/src/assets/svgs/electrical/fs/电阻(阻抗).svg @@ -0,0 +1,5 @@ + + + + R + \ No newline at end of file diff --git a/src/assets/svgs/electrical/fs/避雷器.svg b/src/assets/svgs/electrical/fs/避雷器.svg new file mode 100644 index 0000000..1d33a0e --- /dev/null +++ b/src/assets/svgs/electrical/fs/避雷器.svg @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/src/assets/svgs/electrical/stroke/三绕组自耦变压器.svg b/src/assets/svgs/electrical/stroke/三绕组自耦变压器.svg new file mode 100644 index 0000000..7714fe9 --- /dev/null +++ b/src/assets/svgs/electrical/stroke/三绕组自耦变压器.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/assets/svgs/electrical/stroke/手车01.svg b/src/assets/svgs/electrical/stroke/手车01.svg new file mode 100644 index 0000000..9cfff3b --- /dev/null +++ b/src/assets/svgs/electrical/stroke/手车01.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/assets/svgs/electrical/stroke/接地.svg b/src/assets/svgs/electrical/stroke/接地.svg new file mode 100644 index 0000000..d3f901b --- /dev/null +++ b/src/assets/svgs/electrical/stroke/接地.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/assets/svgs/electrical/stroke/断路器-开关.svg b/src/assets/svgs/electrical/stroke/断路器-开关.svg new file mode 100644 index 0000000..97d4abe --- /dev/null +++ b/src/assets/svgs/electrical/stroke/断路器-开关.svg @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/src/assets/svgs/electrical/stroke/消弧线圈.svg b/src/assets/svgs/electrical/stroke/消弧线圈.svg new file mode 100644 index 0000000..41678fd --- /dev/null +++ b/src/assets/svgs/electrical/stroke/消弧线圈.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/assets/svgs/electrical/stroke/熔断器.svg b/src/assets/svgs/electrical/stroke/熔断器.svg new file mode 100644 index 0000000..8abc11f --- /dev/null +++ b/src/assets/svgs/electrical/stroke/熔断器.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/assets/svgs/electrical/stroke/电动机.svg b/src/assets/svgs/electrical/stroke/电动机.svg new file mode 100644 index 0000000..e7ccbb2 --- /dev/null +++ b/src/assets/svgs/electrical/stroke/电动机.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/assets/svgs/electrical/stroke/电容器.svg b/src/assets/svgs/electrical/stroke/电容器.svg new file mode 100644 index 0000000..554ec78 --- /dev/null +++ b/src/assets/svgs/electrical/stroke/电容器.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/assets/svgs/electrical/stroke/电抗器.svg b/src/assets/svgs/electrical/stroke/电抗器.svg new file mode 100644 index 0000000..a28512c --- /dev/null +++ b/src/assets/svgs/electrical/stroke/电抗器.svg @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/src/assets/svgs/electrical/stroke/电缆终端头.svg b/src/assets/svgs/electrical/stroke/电缆终端头.svg new file mode 100644 index 0000000..c8d6524 --- /dev/null +++ b/src/assets/svgs/electrical/stroke/电缆终端头.svg @@ -0,0 +1,13 @@ + + + + + + + diff --git a/src/assets/svgs/electrical/stroke/自动空气断路器.svg b/src/assets/svgs/electrical/stroke/自动空气断路器.svg new file mode 100644 index 0000000..00e9f0f --- /dev/null +++ b/src/assets/svgs/electrical/stroke/自动空气断路器.svg @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/src/assets/svgs/electrical/stroke/跌落式熔断器.svg b/src/assets/svgs/electrical/stroke/跌落式熔断器.svg new file mode 100644 index 0000000..3ae11b8 --- /dev/null +++ b/src/assets/svgs/electrical/stroke/跌落式熔断器.svg @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/src/assets/svgs/electrical/stroke/隔离开关-刀闸.svg b/src/assets/svgs/electrical/stroke/隔离开关-刀闸.svg new file mode 100644 index 0000000..abb2277 --- /dev/null +++ b/src/assets/svgs/electrical/stroke/隔离开关-刀闸.svg @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/src/assets/svgs/electrical/三绕组变压器.svg b/src/assets/svgs/electrical/三绕组变压器.svg new file mode 100644 index 0000000..9c56358 --- /dev/null +++ b/src/assets/svgs/electrical/三绕组变压器.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/assets/svgs/electrical/交流发电机.svg b/src/assets/svgs/electrical/交流发电机.svg new file mode 100644 index 0000000..2198886 --- /dev/null +++ b/src/assets/svgs/electrical/交流发电机.svg @@ -0,0 +1,6 @@ + + + + G + ~ + \ No newline at end of file diff --git a/src/assets/svgs/electrical/双绕组变压器.svg b/src/assets/svgs/electrical/双绕组变压器.svg new file mode 100644 index 0000000..f443480 --- /dev/null +++ b/src/assets/svgs/electrical/双绕组变压器.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/assets/svgs/electrical/手车02.svg b/src/assets/svgs/electrical/手车02.svg new file mode 100644 index 0000000..8669cdc --- /dev/null +++ b/src/assets/svgs/electrical/手车02.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/components/Captcha/SliderCaptcha.vue b/src/components/Captcha/SliderCaptcha.vue new file mode 100644 index 0000000..16e626e --- /dev/null +++ b/src/components/Captcha/SliderCaptcha.vue @@ -0,0 +1,277 @@ + + + + + diff --git a/src/components/Captcha/index.scss b/src/components/Captcha/index.scss new file mode 100644 index 0000000..690957c --- /dev/null +++ b/src/components/Captcha/index.scss @@ -0,0 +1,123 @@ +.sliderBox { + user-select: none; + width: 320px; + padding: 20px; + background-color: #fff; + box-shadow: 0 0 6px rgba(0, 0, 0, 0.2); // 盒阴影增强立体感 + border-radius: 4px; +} + +.sliderBox_title { + position: relative; + font-size: 15px; + text-align: center; // 居中标题 +} + +.sliderBox_refresh { + position: absolute; + top: 10px; + right: 10px; + width: 18px; + height: 18px; + cursor: pointer; + color: #ffffff; + transition: color 0.3s; // 添加过渡效果 + &:hover { + color: #007bff; // 悬停时改变颜色 + } + .el-icon { + width: 100%; + height: 100%; + font-size: 18px; // 确保图标大小一致 + } +} + +.sliderBox_content { + position: relative; + width: 100%; + height: 160px; + border: 1px solid #c6dbf5; // 使用较浅的蓝色边框 + + .bigImg { + width: 100%; + height: 100%; + object-fit: cover; // 确保图片覆盖整个容器 + } + + .smallImg { + position: absolute; + width: 50px; + height: 50px; + cursor: pointer; + } +} + +.btnBox { + position: relative; + width: 100%; + height: 30px; + margin-top: 22px; + background-color: var(--el-color-primary-light-7); // 使用Element Plus的浅色主色 + border-radius: 8px; + display: flex; + align-items: center; + justify-content: center; + + .sliderBox_text { + font-size: 14px; + color: #333; + } + + .sliderBox_track { + position: absolute; + top: 0; + left: 0; + height: 100%; + background-color: var(--el-color-primary-light-2); // 使用浅色主色 + border-radius: 8px; + } + + .sliderBox_btn { + position: absolute; + top: -5px; + left: 0; + width: 50px; + height: 40px; + line-height: 40px; + text-align: center; + color: #fff; + background-color: var(--el-color-primary); // 使用主色 + border-radius: 8px; + box-shadow: 0 0 6px #ce9f7f; // 适度阴影 + cursor: pointer; + } +} + +.overlay { + position: absolute; + bottom: 0; + width: 100%; + height: 30px; + display: flex; + justify-content: center; + align-items: center; + color: #fff; + font-size: 14px; + background-color: rgba(0, 0, 0, 0.5); // 半透明黑色背景 + transition: background-color 0.3s; // 添加过渡效果 + &.success { + background-color: rgba(92, 184, 92, 0.5); // 成功时的背景颜色 + } + &.failure { + background-color: rgba(217, 83, 79, 0.5); // 失败时的背景颜色 + } +} + +.sliderBox_btn { + cursor: pointer; + user-select: none; + outline: none; +} +.sliderBox_btn:active { + background: #eee; +} diff --git a/src/components/ErrorMessage/403.vue b/src/components/ErrorMessage/403.vue new file mode 100644 index 0000000..107f233 --- /dev/null +++ b/src/components/ErrorMessage/403.vue @@ -0,0 +1,20 @@ + + + + + diff --git a/src/components/ErrorMessage/404.vue b/src/components/ErrorMessage/404.vue new file mode 100644 index 0000000..fcf2094 --- /dev/null +++ b/src/components/ErrorMessage/404.vue @@ -0,0 +1,20 @@ + + + + + diff --git a/src/components/ErrorMessage/500.vue b/src/components/ErrorMessage/500.vue new file mode 100644 index 0000000..c9439bb --- /dev/null +++ b/src/components/ErrorMessage/500.vue @@ -0,0 +1,20 @@ + + + + + diff --git a/src/components/ErrorMessage/index.scss b/src/components/ErrorMessage/index.scss new file mode 100644 index 0000000..9434662 --- /dev/null +++ b/src/components/ErrorMessage/index.scss @@ -0,0 +1,38 @@ +.not-container { + display: flex; + align-items: center; + justify-content: center; + width: 100%; + height: 100%; + + .not-img { + margin-right: 120px; + } + + .not-detail { + display: flex; + flex-direction: column; + + h2, + h4 { + padding: 0; + margin: 0; + } + + h2 { + font-size: 60px; + color: var(--el-text-color-primary); + } + + h4 { + margin: 30px 0 20px; + font-size: 19px; + font-weight: normal; + color: var(--el-text-color-regular); + } + + .el-button { + width: 100px; + } + } +} diff --git a/src/components/Grid/components/GridItem.vue b/src/components/Grid/components/GridItem.vue new file mode 100644 index 0000000..51f97c1 --- /dev/null +++ b/src/components/Grid/components/GridItem.vue @@ -0,0 +1,72 @@ + + diff --git a/src/components/Grid/index.vue b/src/components/Grid/index.vue new file mode 100644 index 0000000..04af922 --- /dev/null +++ b/src/components/Grid/index.vue @@ -0,0 +1,161 @@ + + + diff --git a/src/components/Grid/interface/index.ts b/src/components/Grid/interface/index.ts new file mode 100644 index 0000000..8733caa --- /dev/null +++ b/src/components/Grid/interface/index.ts @@ -0,0 +1,6 @@ +export type BreakPoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl'; + +export type Responsive = { + span?: number; + offset?: number; +}; diff --git a/src/components/HighCode/code.scss b/src/components/HighCode/code.scss new file mode 100644 index 0000000..eabd5c5 --- /dev/null +++ b/src/components/HighCode/code.scss @@ -0,0 +1,116 @@ +/* 语法高亮 */ +.hljs-container { + position: relative; + display: flex; + flex-direction: column; + width: max-content; + overflow-x: hidden; + font-size: 14px; + line-height: 24px; + text-align: left; + background: #21252b; + + .hljs-header { + width: 100%; + background-color: #21252b; + display: flex; + justify-content: flex-end; + align-items: center; + position: sticky; + top: 0; + left: 0; + z-index: 100; + } + + .hljs-wrapper { + display: flex; + align-items: flex-start; + } + + /** 行数样式 */ + .hljs-code-number { + padding: 17px 10px 0; + color: #d1d8e6; + font-size: 12px; + list-style: none; + background: #21252b; + position: sticky; + left: 0; + } + + pre { + flex: 1; + } +} + +/** 3个点 */ +.hljs-container .hljs-header::before { + position: absolute; + top: 10px; + left: 15px; + width: 12px; + height: 12px; + overflow: visible; + font-weight: 700; + font-size: 16px; + line-height: 12px; + white-space: nowrap; + text-indent: 75px; + background-color: #fc625d; + border-radius: 16px; + box-shadow: + 20px 0 #fdbc40, + 40px 0 #35cd4b; + content: attr(codetype); +} + +/** 滚动条 */ +:deep(.hljs) { + overflow-x: auto; +} + +:deep(.hljs::-webkit-scrollbar) { + width: 12px !important; + height: 12px !important; +} + +:deep(.hljs::-webkit-scrollbar-thumb) { + height: 30px !important; + background: #d1d8e6; + background-clip: content-box; + border: 2px solid transparent; + border-radius: 19px; + opacity: 0.8; +} + +:deep(.hljs::-webkit-scrollbar-thumb:hover) { + background: #a5b3cf; + background-clip: content-box; + border: 2px solid transparent; +} + +:deep(.hljs::-webkit-scrollbar-track-piece) { + width: 30px; + height: 30px; + background: #333; +} + +::-webkit-scrollbar-button { + display: none; +} + +/** 复制样式 */ +.hljs-copy { + width: auto; + height: 30px; + color: #d7d7e1; + cursor: pointer; + user-select: none; + border-radius: 4px; + transition: background-color 0.3s; + margin: 0 2px; + + .sql-box { + text-align: unset; + } +} diff --git a/src/components/HighCode/index.scss b/src/components/HighCode/index.scss new file mode 100644 index 0000000..59ea8bf --- /dev/null +++ b/src/components/HighCode/index.scss @@ -0,0 +1,76 @@ +.hljs-container { + position: relative; + margin: 20px 0; + background-color: #f3f3f3; + border-radius: 8px; + font-size: 14px; + line-height: 1.6; + overflow-x: auto; + + pre { + margin: 0; + } +} + +.hljs-container.sql-box { + text-align: unset; +} + +.hljs-header { + display: flex; + justify-content: space-between; + align-items: center; + background-color: #343541; + padding: 4px; + position: relative; /* 添加 relative 定位 */ +} + +.hljs-separator { + height: 1px; + width: 100%; + background-color: #ccc; + margin: 10px 0; +} + +.hljs-language { + color: #d7d7e1; + font-weight: bold; + margin-left: 10px; +} + +.hljs-code-number { + position: absolute; + top: 0; /* 调整为 0,即头部的底部 */ + left: 0; + padding: 0 10px; + color: #757575; + user-select: none; + + li { + list-style: none; + margin: 0; + padding: 0; + } +} + +.hljs-code { + font-family: 'Courier New', monospace; +} + +.hljs-copy { + margin-right: 10px; + color: #d7d7e1; + cursor: pointer; + user-select: none; + background-color: #333; + border-radius: 4px; + transition: background-color 0.3s; + + &:hover { + background-color: #555; + } + + .sql-box { + text-align: unset; + } +} diff --git a/src/components/HighCode/index.vue b/src/components/HighCode/index.vue new file mode 100644 index 0000000..63000ea --- /dev/null +++ b/src/components/HighCode/index.vue @@ -0,0 +1,61 @@ + + + + diff --git a/src/components/HighCode/line.ts b/src/components/HighCode/line.ts new file mode 100644 index 0000000..899daad --- /dev/null +++ b/src/components/HighCode/line.ts @@ -0,0 +1,38 @@ +import './code.scss'; + +const vCode = { + mounted(el: any) { + buildLineNumber(el); + }, + updated(el: any) { + buildLineNumber(el); + } +}; + +const buildLineNumber = (el: any) => { + //获取代码片段 + const code = el.querySelector('code.hljs'); + const pre = el.querySelector('pre'); + const html = code?.innerHTML; + const size = html.split('\n').length; + const codeNumber = el.querySelector('.hljs-code-number'); + if (codeNumber) { + el.removeChild(codeNumber); + } + //插入行数 + const ul = document.createElement('ul'); + for (let i = 1; i <= size; i++) { + const li = document.createElement('li'); + li.innerText = i + ''; + ul.appendChild(li); + } + + ul.classList.add('hljs-code-number'); + + // 确保 pre 是 el 的子元素后再进行插入 + if (pre && pre.parentNode === el) { + el.insertBefore(ul, pre); + } +}; + +export default vCode; diff --git a/src/components/IconChoose/index.vue b/src/components/IconChoose/index.vue new file mode 100644 index 0000000..8003950 --- /dev/null +++ b/src/components/IconChoose/index.vue @@ -0,0 +1,197 @@ + + + + + diff --git a/src/components/ImportExcel/index.scss b/src/components/ImportExcel/index.scss new file mode 100644 index 0000000..52b73cd --- /dev/null +++ b/src/components/ImportExcel/index.scss @@ -0,0 +1,139 @@ +.template-info-card { + background: #f5f7fa; + border: 1px solid #e4e7ed; + border-radius: 8px; + margin-bottom: 20px; + padding: 16px; + transition: all 0.2s ease; + + &:hover { + border-color: #c0c4cc; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); + } +} + +.template-content { + display: flex; + justify-content: space-between; + align-items: center; + gap: 20px; +} + +.template-meta { + flex: 1; + display: flex; + flex-direction: column; + gap: 10px; +} + +.meta-row { + display: flex; + align-items: center; + font-size: 13px; + line-height: 1.5; + gap: 8px; + + .meta-label { + width: 60px; + color: #606266; + font-weight: 500; + flex-shrink: 0; + } + + .el-tag { + font-size: 12px; + font-weight: 400; + border-radius: 6px; + padding: 2px 8px; + max-width: 200px; + border-width: 1px; + + &.el-tag--info.el-tag--plain { + background-color: #f8fafc; + border-color: #cbd5e1; + color: #475569; + } + } +} + +.template-actions { + flex-shrink: 0; + + .el-button { + min-width: 90px; + font-size: 14px; + } +} + +.cover-option { + display: flex; + align-items: center; + gap: 12px; +} + +.cover-hint { + font-size: 12px; + color: #909399; + line-height: 1.4; +} + +.upload { + width: 100%; + + :deep(.el-upload) { + width: 100%; + } + + :deep(.el-upload-dragger) { + width: 100%; + border-radius: 8px; + transition: all 0.2s ease; + + &:hover { + border-color: var(--el-color-primary); + background-color: var(--el-color-primary-light-9); + } + } +} + +.drawer-multiColumn-form { + .el-form-item { + margin-bottom: 20px; + + .el-form-item__content { + width: 100%; + } + } +} + +@media (max-width: 640px) { + .template-content { + flex-direction: column; + align-items: flex-start; + gap: 12px; + } + + .template-actions { + width: 100%; + + .el-button { + width: 100%; + } + } + + .meta-row { + .meta-label { + width: 50px; + } + } +} + +.el-tag { + max-width: 280px; + display: inline-block; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + vertical-align: middle; + cursor: pointer; +} diff --git a/src/components/ImportExcel/index.vue b/src/components/ImportExcel/index.vue new file mode 100644 index 0000000..6d49099 --- /dev/null +++ b/src/components/ImportExcel/index.vue @@ -0,0 +1,219 @@ + + + + diff --git a/src/components/JoditEditor/index.vue b/src/components/JoditEditor/index.vue new file mode 100644 index 0000000..53fb81c --- /dev/null +++ b/src/components/JoditEditor/index.vue @@ -0,0 +1,344 @@ + + + diff --git a/src/components/Loading/index.scss b/src/components/Loading/index.scss new file mode 100644 index 0000000..129e14c --- /dev/null +++ b/src/components/Loading/index.scss @@ -0,0 +1,74 @@ +.loading-box { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + width: 100%; + height: 100%; + + .loading-wrap { + display: flex; + align-items: center; + justify-content: center; + padding: 98px; + } +} + +.dot { + position: relative; + box-sizing: border-box; + display: inline-block; + width: 32px; + height: 32px; + font-size: 32px; + transform: rotate(45deg); + animation: ant-rotate 1.2s infinite linear; +} + +.dot i { + position: absolute; + display: block; + width: 14px; + height: 14px; + background-color: var(--el-color-primary); + border-radius: 100%; + opacity: 0.3; + transform: scale(0.75); + transform-origin: 50% 50%; + animation: ant-spin-move 1s infinite linear alternate; +} + +.dot i:nth-child(1) { + top: 0; + left: 0; +} + +.dot i:nth-child(2) { + top: 0; + right: 0; + animation-delay: 0.4s; +} + +.dot i:nth-child(3) { + right: 0; + bottom: 0; + animation-delay: 0.8s; +} + +.dot i:nth-child(4) { + bottom: 0; + left: 0; + animation-delay: 1.2s; +} + +@keyframes ant-rotate { + to { + transform: rotate(405deg); + } +} + +@keyframes ant-spin-move { + to { + opacity: 1; + } +} diff --git a/src/components/Loading/index.vue b/src/components/Loading/index.vue new file mode 100644 index 0000000..c1a4464 --- /dev/null +++ b/src/components/Loading/index.vue @@ -0,0 +1,17 @@ + + + + + diff --git a/src/components/MemberSelector/api/selector.ts b/src/components/MemberSelector/api/selector.ts new file mode 100644 index 0000000..21f1052 --- /dev/null +++ b/src/components/MemberSelector/api/selector.ts @@ -0,0 +1,7 @@ +import http from '@/api'; +import { ADMIN_MODULE } from '@/api/helper/prefix'; +import type { SelectorQuery, SelectorResult } from '@/components/MemberSelector/type/selector'; + +export const querySelectorApi = (params: SelectorQuery) => { + return http.get(ADMIN_MODULE + `/common/selector`, params); +}; diff --git a/src/components/MemberSelector/department.vue b/src/components/MemberSelector/department.vue new file mode 100644 index 0000000..2f45a81 --- /dev/null +++ b/src/components/MemberSelector/department.vue @@ -0,0 +1,115 @@ + + diff --git a/src/components/MemberSelector/index.vue b/src/components/MemberSelector/index.vue new file mode 100644 index 0000000..176b6f6 --- /dev/null +++ b/src/components/MemberSelector/index.vue @@ -0,0 +1,307 @@ + + + + + diff --git a/src/components/MemberSelector/role.vue b/src/components/MemberSelector/role.vue new file mode 100644 index 0000000..3735c0b --- /dev/null +++ b/src/components/MemberSelector/role.vue @@ -0,0 +1,266 @@ + + + diff --git a/src/components/MemberSelector/type/selector.ts b/src/components/MemberSelector/type/selector.ts new file mode 100644 index 0000000..32b5c1e --- /dev/null +++ b/src/components/MemberSelector/type/selector.ts @@ -0,0 +1,45 @@ +import type { IPage, IPageQuery } from '@/api/types'; + +export type UserItem = { + id: number; + username: string; + name: string; + phone: string; +}; + +export type DepartmentItem = { + id: number; + pid: number; + name: string; + deep: number; + sort: number; + children?: DepartmentItem[]; +}; + +export type RoleItem = { + id: number; + name: string; + permissions: string; +}; + +export type SelectorType = 'user' | 'department' | 'role'; + +export type SelectorResult = + | { + type: SelectorType; + data: IPage; + } + | { + type: SelectorType; + data: DepartmentItem[]; + } + | { + type: SelectorType; + data: IPage; + }; + +export type SelectorQuery = IPageQuery & { + type: SelectorType; + keyword?: string; + parentId?: any; +}; diff --git a/src/components/MemberSelector/user.vue b/src/components/MemberSelector/user.vue new file mode 100644 index 0000000..71c429d --- /dev/null +++ b/src/components/MemberSelector/user.vue @@ -0,0 +1,324 @@ + + + diff --git a/src/components/ProTable/components/ColSetting.vue b/src/components/ProTable/components/ColSetting.vue new file mode 100644 index 0000000..25040ee --- /dev/null +++ b/src/components/ProTable/components/ColSetting.vue @@ -0,0 +1,49 @@ + + + + + diff --git a/src/components/ProTable/components/Pagination.vue b/src/components/ProTable/components/Pagination.vue new file mode 100644 index 0000000..7932050 --- /dev/null +++ b/src/components/ProTable/components/Pagination.vue @@ -0,0 +1,29 @@ + + + diff --git a/src/components/ProTable/components/TableColumn.vue b/src/components/ProTable/components/TableColumn.vue new file mode 100644 index 0000000..9f8e228 --- /dev/null +++ b/src/components/ProTable/components/TableColumn.vue @@ -0,0 +1,180 @@ + + + + + diff --git a/src/components/ProTable/index.vue b/src/components/ProTable/index.vue new file mode 100644 index 0000000..7afeb54 --- /dev/null +++ b/src/components/ProTable/index.vue @@ -0,0 +1,313 @@ + + + diff --git a/src/components/ProTable/interface/index.ts b/src/components/ProTable/interface/index.ts new file mode 100644 index 0000000..2de0f12 --- /dev/null +++ b/src/components/ProTable/interface/index.ts @@ -0,0 +1,109 @@ +import type { VNode, ComponentPublicInstance, Ref } from 'vue'; +import type { BreakPoint, Responsive } from '@/components/Grid/interface'; +import type { TableColumnCtx } from 'element-plus/es/components/table/src/table-column/defaults'; +import ProTable from '@/components/ProTable/index.vue'; +import type { DefaultRow } from 'element-plus/es/components/table/src/table/defaults'; + +export interface ProTableProps { + columns: ColumnProps[]; // 列配置项 ==> 必传 + searchColumns?: SearchProps[]; // 搜索列配置项 ==> 必传 + data?: any[]; // 静态 table data 数据,若存在则不会使用 requestApi 返回的 data ==> 非必传 + requestApi?: (params: any) => Promise; // 请求表格数据的 api ==> 非必传 + requestAuto?: boolean; // 是否自动执行请求 api ==> 非必传(默认为true) + requestError?: (params: any) => void; // 表格 api 请求错误监听 ==> 非必传 + dataCallback?: (data: any) => any; // 返回数据的回调函数,可以对数据进行处理 ==> 非必传 + title?: string; // 表格标题 ==> 非必传 + pagination?: boolean; // 是否需要分页组件 ==> 非必传(默认为true) + initParam?: any; // 初始化请求参数 ==> 非必传(默认为{}) + border?: boolean; // 是否带有纵向边框 ==> 非必传(默认为true) + toolButton?: ('refresh' | 'setting' | 'search')[] | boolean; // 是否显示表格功能按钮 ==> 非必传(默认为true) + rowKey?: string; // 行数据的 Key,用来优化 Table 的渲染,当表格数据多选时,所指定的 id ==> 非必传(默认为 id) + searchCol?: number | Record<'xs' | 'sm' | 'md' | 'lg' | 'xl', number>; // 表格搜索项 每列占比配置 ==> 非必传 { xs: 1, sm: 2, md: 2, lg: 3, xl: 4 } + loadingTime?: number; // 表格数据加载时间 ==> 非必传(默认为200) +} + +export interface EnumProps { + label?: string; // 选项框显示的文字 + value?: string | number | boolean | any[]; // 选项框值 + disabled?: boolean; // 是否禁用此选项 + tagType?: string; // 当 tag 为 true 时,此选择会指定 tag 显示类型 + children?: EnumProps[]; // 为树形选择时,可以通过 children 属性指定子选项 + [key: string]: any; +} + +export type TypeProps = 'index' | 'selection' | 'radio' | 'expand' | 'sort'; + +export type SearchType = + | 'input' + | 'input-number' + | 'select' + | 'select-v2' + | 'tree-select' + | 'cascader' + | 'date-picker' + | 'time-picker' + | 'time-select' + | 'switch' + | 'slider' + | 'checkbox'; + +export type SearchRenderScope = { + searchParam: { [key: string]: any }; + placeholder: string; + clearable: boolean; + options: EnumProps[]; + data: EnumProps[]; +}; + +export interface SearchProps extends Partial> { + el?: SearchType; // 当前项搜索框的类型 + label?: string; // 当前项搜索框的 label + props?: any; // 搜索项参数,根据 element plus 官方文档来传递,该属性所有值会透传到组件 + key?: string; // 当搜索项 key 不为 prop 属性时,可通过 key 指定 + tooltip?: string; // 搜索提示 + order?: number; // 搜索项排序(从大到小) + span?: number; // 搜索项所占用的列数,默认为 1 列 + offset?: number; // 搜索字段左侧偏移列数 + defaultValue?: string | number | boolean | any[] | Ref; // 搜索项默认值 + render?: (scope: SearchRenderScope) => VNode; // 自定义搜索内容渲染(tsx语法) + prop?: string; + fieldNames?: FieldNamesProps; // 指定 label && value && children 的 key 值 + enum?: EnumProps[] | Ref | ((params?: any) => Promise); // 枚举字典 +} + +export type FieldNamesProps = { + label: string; + value: string; + tagType?: string; + children?: string; +}; + +export type RenderScope = { + row: T; + $index: number; + column: TableColumnCtx; + [key: string]: any; +}; + +export type HeaderRenderScope = { + $index: number; + column: TableColumnCtx; + [key: string]: any; +}; + +export interface ColumnProps extends Partial< + Omit, 'type' | 'children' | 'renderCell' | 'renderHeader'> +> { + type?: TypeProps; // 列类型 + tag?: boolean | Ref; // 是否是标签展示 + tagLimit?: number; // 标签展示时,最多显示多少个标签,超过的会被隐藏, -1 为不限制 + isShow?: boolean | Ref; // 是否显示在表格当中 + enum?: EnumProps[] | Ref | ((params?: any) => Promise); // 枚举字典 + isFilterEnum?: boolean | Ref; // 当前单元格值是否根据 enum 格式化(示例:enum 只作为搜索项数据) + fieldNames?: FieldNamesProps; // 指定 label && value && children 的 key 值 + headerRender?: (scope: HeaderRenderScope) => VNode; // 自定义表头内容渲染(tsx语法) + render?: (scope: RenderScope) => VNode | string; // 自定义单元格内容渲染(tsx语法) + _children?: ColumnProps[]; // 多级表头 +} + +export type ProTableInstance = Omit, keyof ComponentPublicInstance | keyof ProTableProps>; diff --git a/src/components/RemoteSearchSelect/index.vue b/src/components/RemoteSearchSelect/index.vue new file mode 100644 index 0000000..d0224b4 --- /dev/null +++ b/src/components/RemoteSearchSelect/index.vue @@ -0,0 +1,81 @@ + + + diff --git a/src/components/SearchForm/components/SearchFormItem.vue b/src/components/SearchForm/components/SearchFormItem.vue new file mode 100644 index 0000000..ed16f98 --- /dev/null +++ b/src/components/SearchForm/components/SearchFormItem.vue @@ -0,0 +1,161 @@ + + + diff --git a/src/components/SearchForm/index.vue b/src/components/SearchForm/index.vue new file mode 100644 index 0000000..34401ff --- /dev/null +++ b/src/components/SearchForm/index.vue @@ -0,0 +1,96 @@ + + diff --git a/src/components/SelectFilter/index.scss b/src/components/SelectFilter/index.scss new file mode 100644 index 0000000..69eac8b --- /dev/null +++ b/src/components/SelectFilter/index.scss @@ -0,0 +1,74 @@ +.select-filter { + width: 100%; + + .select-filter-item { + display: flex; + align-items: center; + border-bottom: 1px dashed var(--el-border-color-light); + + &:last-child { + border-bottom: none; + } + + .select-filter-item-title { + margin-top: -2px; + + span { + font-size: 14px; + color: var(--el-text-color-regular); + white-space: nowrap; + } + } + + .select-filter-notData { + margin: 18px 0; + font-size: 14px; + color: var(--el-text-color-regular); + } + + .select-filter-list { + display: flex; + flex: 1; + padding: 0; + margin: 13px 0; + + li { + display: flex; + align-items: center; + padding: 5px 15px; + margin-right: 16px; + font-size: 13px; + color: var(--el-color-primary); + list-style: none; + cursor: pointer; + background: var(--el-color-primary-light-9); + border: 1px solid var(--el-color-primary-light-5); + border-radius: 32px; + + &:hover { + color: #ffffff; + background: var(--el-color-primary); + border-color: var(--el-color-primary); + transition: 0.1s; + } + + &.active { + font-weight: bold; + color: #ffffff; + background: var(--el-color-primary); + border-color: var(--el-color-primary); + } + + .el-icon { + margin-right: 4px; + font-size: 16px; + font-weight: bold; + } + + span { + white-space: nowrap; + } + } + } + } +} diff --git a/src/components/SelectFilter/index.vue b/src/components/SelectFilter/index.vue new file mode 100644 index 0000000..6886b86 --- /dev/null +++ b/src/components/SelectFilter/index.vue @@ -0,0 +1,114 @@ + + + + + diff --git a/src/components/SimplifyUpload/index.vue b/src/components/SimplifyUpload/index.vue new file mode 100644 index 0000000..7274dcb --- /dev/null +++ b/src/components/SimplifyUpload/index.vue @@ -0,0 +1,179 @@ + + + + + diff --git a/src/components/SvgIcon/index.vue b/src/components/SvgIcon/index.vue new file mode 100644 index 0000000..0e3f8b9 --- /dev/null +++ b/src/components/SvgIcon/index.vue @@ -0,0 +1,35 @@ + + + diff --git a/src/components/SwitchDark/index.vue b/src/components/SwitchDark/index.vue new file mode 100644 index 0000000..f8e0ecb --- /dev/null +++ b/src/components/SwitchDark/index.vue @@ -0,0 +1,12 @@ + + + diff --git a/src/components/Upload/FileDownloadList.vue b/src/components/Upload/FileDownloadList.vue new file mode 100644 index 0000000..1841c65 --- /dev/null +++ b/src/components/Upload/FileDownloadList.vue @@ -0,0 +1,404 @@ + + + + + diff --git a/src/components/Upload/Img.vue b/src/components/Upload/Img.vue new file mode 100644 index 0000000..e1d437f --- /dev/null +++ b/src/components/Upload/Img.vue @@ -0,0 +1,329 @@ + + + + + diff --git a/src/components/Upload/Imgs.vue b/src/components/Upload/Imgs.vue new file mode 100644 index 0000000..28ca8b1 --- /dev/null +++ b/src/components/Upload/Imgs.vue @@ -0,0 +1,345 @@ + + + + + diff --git a/src/components/Upload/UploadFiles.vue b/src/components/Upload/UploadFiles.vue new file mode 100644 index 0000000..b06bb68 --- /dev/null +++ b/src/components/Upload/UploadFiles.vue @@ -0,0 +1,727 @@ + + + + + diff --git a/src/config/consts.ts b/src/config/consts.ts new file mode 100644 index 0000000..e9d73bf --- /dev/null +++ b/src/config/consts.ts @@ -0,0 +1,112 @@ +import type { Options } from '@/config/typings'; + +/** + * 目录 + * @type {string} + */ +export const MENU_DIR: string = '1002001'; +/** + * 菜单 + * @type {string} + */ +export const MENU_PAGE: string = '1002002'; +/** + * 按钮 + * @type {string} + */ +export const MENU_BTN: string = '1002003'; + +export const CHANNEL_DEFAULT: string = 'DEFAULTS'; + +export const CHANNEL_KICK_OFF: string = 'KICK_OFF'; + +export const UPGRADE_CHANNEL: string = 'UPGRADE_CHANNEL'; + +export const SYNC_FRONTEND_CONF: string = 'SYNC_FRONTEND_CONF'; + +export const SYNC_DICT: string = 'SYNC_DICT'; + +export const SYNC_PERMISSIONS: string = 'SYNC_PERMISSIONS'; + +/** + * 是否选项 + * @type {[Options,Options]} + */ +export const yesNoOptions: Options[] = [ + { + label: '是', + value: 'T' + }, + { + label: '否', + value: 'F' + } +]; + +export const dictBusinessType: Options[] = [ + { + label: '业务字典', + value: 'business' + }, + { + label: '系统字典', + value: 'system' + } +]; + +export const dictBusinessTypeLabel = (value: string): string => { + const item = dictBusinessType.find(item => item.value === value); + return item?.label ?? ''; +}; + +/** + * 是否选项label显示 + * @param value + * @returns {string} + */ +export const yesNoOptionsLabel = (value: string): string => { + const item = yesNoOptions.find(item => item.value === value); + return item?.label ?? ''; +}; + +/** + * 标签类型 + * @type {[Options,Options]} + */ +export const tagsTypeOptions: Options[] = [ + { + id: 1, + label: 'Default', + value: 'primary' + }, + { + id: 2, + label: 'Success', + value: 'success' + }, + { + id: 3, + label: 'Info', + value: 'info' + }, + { + id: 4, + label: 'Warning', + value: 'warning' + }, + { + id: 5, + label: 'Danger', + value: 'danger' + } +]; + +/** + * 标签类型 显示文本 + * @param value + * @returns {string|string} + */ +export const tagsTypeOptionsLabel = (value: string): string => { + const item = tagsTypeOptions.find(item => item.value === value); + return item?.label ?? ''; +}; diff --git a/src/config/fullScreen.ts b/src/config/fullScreen.ts new file mode 100644 index 0000000..7eab3b0 --- /dev/null +++ b/src/config/fullScreen.ts @@ -0,0 +1,45 @@ +/* 全局请求 loading */ +import { ElLoading } from 'element-plus'; + +let loadingInstance: ReturnType; + +/** + * @description 开启 Loading + * */ +const startLoading = () => { + loadingInstance = ElLoading.service({ + fullscreen: true, + lock: true, + text: 'Loading', + background: 'rgba(0, 0, 0, 0.7)' + }); +}; + +/** + * @description 结束 Loading + * */ +const endLoading = () => { + loadingInstance.close(); +}; + +/** + * @description 显示全屏加载 + * */ +let needLoadingRequestCount = 0; +export const showFullScreenLoading = () => { + if (needLoadingRequestCount === 0) { + startLoading(); + } + needLoadingRequestCount++; +}; + +/** + * @description 隐藏全屏加载 + * */ +export const tryHideFullScreenLoading = () => { + if (needLoadingRequestCount <= 0) return; + needLoadingRequestCount--; + if (needLoadingRequestCount === 0) { + endLoading(); + } +}; diff --git a/src/config/index.ts b/src/config/index.ts new file mode 100644 index 0000000..4319136 --- /dev/null +++ b/src/config/index.ts @@ -0,0 +1,21 @@ +// 全局默认配置项 + +// 首页地址(默认) +export const HOME_URL: string = '/home/index'; + +// 登录页地址(默认) +export const LOGIN_URL: string = '/login'; + +// 默认主题颜色 +export const DEFAULT_PRIMARY: string = '#009688'; + +// 路由白名单地址(必须是本地存在的路由 staticRouter.ts 中) +export const ROUTER_WHITE_LIST: string[] = ['/500']; + +// 高德地图 key +export const AMAP_MAP_KEY: string = ''; + +// 百度地图 key +export const BAIDU_MAP_KEY: string = ''; +// 是否是预览环境 +export const IS_PREVIEW: boolean = import.meta.env.VITE_PREVIEW === 'true'; diff --git a/src/config/nprogress.ts b/src/config/nprogress.ts new file mode 100644 index 0000000..b1ef90f --- /dev/null +++ b/src/config/nprogress.ts @@ -0,0 +1,12 @@ +import NProgress from 'nprogress'; +import 'nprogress/nprogress.css'; + +NProgress.configure({ + easing: 'ease', // 动画方式 + speed: 500, // 递增进度条的速度 + showSpinner: false, // 是否显示加载ico + trickleSpeed: 200, // 自动递增间隔 + minimum: 0.3 // 初始化时的最小百分比 +}); + +export default NProgress; diff --git a/src/config/typings.ts b/src/config/typings.ts new file mode 100644 index 0000000..d3fee3c --- /dev/null +++ b/src/config/typings.ts @@ -0,0 +1,5 @@ +export interface Options { + id?: number; + label: string; + value: string; +} diff --git a/src/config/validator.ts b/src/config/validator.ts new file mode 100644 index 0000000..dcc3899 --- /dev/null +++ b/src/config/validator.ts @@ -0,0 +1,20 @@ +/** + * 验证密码格式 + * @param rule + * @param value + * @param callback + */ +export const validatePasswordFormat = (rule: any, value: any, callback: (error?: string | Error) => void) => { + // 验证密码格式 + const reg = /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)[^]{8,16}$/; + // 密码要求: + // 1、长度为8-16位 + // 2、必须包含大小写字母及数字 + if (!reg.test(value)) { + // 密码不符合要求 + callback(new Error('必须包含大小写字母及数字且长度为8-16位')); + return; + } + // 密码符合要求 + callback(); +}; diff --git a/src/directives/index.ts b/src/directives/index.ts new file mode 100644 index 0000000..e66bec9 --- /dev/null +++ b/src/directives/index.ts @@ -0,0 +1,18 @@ +import type { App, Directive } from 'vue'; +import auth from '@/directives/modules/auth'; +import copy from '@/directives/modules/copy'; + +const directivesList: { [key: string]: Directive } = { + auth, + copy +}; + +const directives = { + install: function (app: App) { + Object.keys(directivesList).forEach(key => { + app.directive(key, directivesList[key]); + }); + } +}; + +export default directives; diff --git a/src/directives/modules/auth.ts b/src/directives/modules/auth.ts new file mode 100644 index 0000000..9cb2fdf --- /dev/null +++ b/src/directives/modules/auth.ts @@ -0,0 +1,58 @@ +/** + * v-auth + * 按钮权限指令 + * + * 使用方式:分为三种:1. 单一权限;2. 多权限and;3. 多权限or + * + * 1. v-auth="'sys.menu.create_btn'" 具有指定字符串''内的权限 + * 2. v-auth="[{ type: 'and', conditions: ['sys.role.setting_btn', 'sys.role.update_btn'] }]" 必须同时具有conditions数组包含的权限 + * 3. v-auth="[{ type: 'or', conditions: ['sys.user.unlock_btn','sys.user.role_set_btn','sys.user.delete_btn' ] }]" 具有conditions数组内的任一权限 + * + * + */ +import { useAuthStore } from '@/stores/modules/auth'; +import type { Directive, DirectiveBinding } from 'vue'; + +const auth: Directive = { + mounted(el: HTMLElement, binding: DirectiveBinding) { + const { value } = binding; + const authStore = useAuthStore(); + const currentBtnPermissions = authStore.authButtonListGet ?? []; + const currentPageRoles: string[] = authStore.authRoleListGet ?? []; + + const ADMIN_ROLE = 'admin'; + const ADMIN_BYPASS = import.meta.env.VITE_ADMIN_BYPASS_PERMISSION || 'true'; + + // 如果配置允许对admin用户放行,并且当前用户角色包含admin,则放行 + if (ADMIN_BYPASS === 'true' && currentPageRoles.includes(ADMIN_ROLE)) { + return; + } + + // 处理基础的单条件认证 + if (typeof value === 'string') { + if (!currentBtnPermissions.includes(value)) { + el.remove(); + } + return; + } + // 处理 AND 条件的权限认证 + if (Array.isArray(value) && value.length === 1 && value[0].type === 'and' && Array.isArray(value[0].conditions)) { + if (!value[0].conditions.every((item: string) => currentBtnPermissions.includes(item))) { + el.remove(); + } + return; + } + + // 处理 OR 条件的权限认证 + if (Array.isArray(value) && value.length === 1 && value[0].type === 'or' && Array.isArray(value[0].conditions)) { + if (!value[0].conditions.some((item: string) => currentBtnPermissions.includes(item))) { + el.remove(); + } + return; + } + // 如果传入的条件不符合以上任何一种格式,则移除元素 + el.remove(); + } +}; + +export default auth; diff --git a/src/directives/modules/copy.ts b/src/directives/modules/copy.ts new file mode 100644 index 0000000..db5975b --- /dev/null +++ b/src/directives/modules/copy.ts @@ -0,0 +1,53 @@ +/** + * v-copy + * 复制某个值至剪贴板 + * 接收参数:string类型/Ref类型/Reactive类型 + */ +import type { Directive, DirectiveBinding } from 'vue'; +import { ElMessage } from 'element-plus'; +interface ElType extends HTMLElement { + copyData: string | number; + __handleClick__: any; +} +const copy: Directive = { + mounted(el: ElType, binding: DirectiveBinding) { + el.copyData = binding.value; + el.addEventListener('click', handleClick); + }, + updated(el: ElType, binding: DirectiveBinding) { + el.copyData = binding.value; + }, + beforeUnmount(el: ElType) { + el.removeEventListener('click', el.__handleClick__); + } +}; +async function handleClick(this: any) { + try { + if (navigator.clipboard) { + // 安全域 + await navigator.clipboard.writeText(this.copyData); + } else { + // 非安全域,回退到 document.execCommand + const tempTextarea = document.createElement('textarea'); + tempTextarea.value = this.copyData; + + document.body.appendChild(tempTextarea); + tempTextarea.select(); + document.execCommand('copy'); + document.body.removeChild(tempTextarea); + } + + ElMessage({ + type: 'success', + message: '复制成功' + }); + } catch (err) { + console.error('复制操作不被支持或失败: ', err); + ElMessage({ + type: 'error', + message: '复制操作不被支持或失败' + }); + } +} + +export default copy; diff --git a/src/enums/CameraControlCommand.ts b/src/enums/CameraControlCommand.ts new file mode 100644 index 0000000..d9d3f10 --- /dev/null +++ b/src/enums/CameraControlCommand.ts @@ -0,0 +1,19 @@ +export enum CameraControlCommand { + ZOOM_IN = 11, // 焦距以速度SS变大(倍率变大) 调焦 + ZOOM_OUT = 12, // 焦距以速度SS变小(倍率变小) + FOCUS_NEAR = 13, // 焦点以速度SS前调 + FOCUS_FAR = 14, // 焦点以速度SS后调 + IRIS_OPEN = 15, // 光圈以速度SS扩大 + IRIS_CLOSE = 16 // 光圈以速度SS缩小 +} +export enum StartCommand +{ + startUp=0, // 启动 + startDown=1 // 停止 +} +export enum PTZPreset +{ + SET_PRESET=8, // 设置预置点 + CLE_PRESET, // 清楚预置点 + GOTO_PRESET=39 // 转到预置点 +} \ No newline at end of file diff --git a/src/hooks/types/index.ts b/src/hooks/types/index.ts new file mode 100644 index 0000000..6cdc23e --- /dev/null +++ b/src/hooks/types/index.ts @@ -0,0 +1,27 @@ +export type Pageable = { + pageNum: number; + pageSize: number; + total: number; +}; +export type StateProps = { + tableData: any[]; + pageable: Pageable; + searchParam: { + [key: string]: any; + }; + searchInitParam: { + [key: string]: any; + }; + totalParam: { + [key: string]: any; + }; + icon?: { + [key: string]: any; + }; + loading?: boolean; +}; + +export type HandleDataMessageType = '' | 'success' | 'warning' | 'info' | 'error'; + +export type ThemeType = 'light' | 'inverted' | 'dark'; +export type GreyOrWeakType = 'grey' | 'weak'; diff --git a/src/hooks/useDialogWidth.ts b/src/hooks/useDialogWidth.ts new file mode 100644 index 0000000..6d9b797 --- /dev/null +++ b/src/hooks/useDialogWidth.ts @@ -0,0 +1,30 @@ +import { ref, onMounted, onUnmounted, type Ref } from 'vue'; + +export function useDialogWidth(width?: string): Ref { + // const MAX_WIDTH = 800; + const dialogWidth = ref('800px'); + function updateDialogWidth() { + if (width) { + dialogWidth.value = width; + return; + } + const winW = window.innerWidth; + if (winW < 500) { + dialogWidth.value = '95vw'; + } else if (winW < 1000) { + dialogWidth.value = '75vw'; + } else { + dialogWidth.value = '55vw'; + } + } + + onMounted(() => { + updateDialogWidth(); + window.addEventListener('resize', updateDialogWidth); + }); + onUnmounted(() => { + window.removeEventListener('resize', updateDialogWidth); + }); + + return dialogWidth; +} diff --git a/src/hooks/useDict.ts b/src/hooks/useDict.ts new file mode 100644 index 0000000..fe5f683 --- /dev/null +++ b/src/hooks/useDict.ts @@ -0,0 +1,13 @@ +import { onMounted } from 'vue'; +import { useOptionsStore } from '@/stores/modules/options'; + +/** + * 用于主动触发接口来获取并更新(缓存)指定类型的字典信息。 + * @param typeCode 字典类型数组 + */ +export function useDict(typeCode: string[]) { + const optionsStore = useOptionsStore(); + onMounted(async () => { + await optionsStore.getDictByCodes(typeCode); + }); +} diff --git a/src/hooks/useDictOptions.ts b/src/hooks/useDictOptions.ts new file mode 100644 index 0000000..384679c --- /dev/null +++ b/src/hooks/useDictOptions.ts @@ -0,0 +1,13 @@ +import { computed } from 'vue'; +import { useOptionsStore } from '@/stores/modules/options'; +import type { DictCustom } from '@/api/types/system/dict'; + +/** + * 自定义 Hook,用于从 store 中获取字典选项 + * @param dictName 字典名称 + * @returns 返回字典选项 + */ +export const useDictOptions = (dictName: string) => { + const optionsStore = useOptionsStore(); + return computed(() => optionsStore.getDictOptions(dictName) || []); +}; diff --git a/src/hooks/useDownload.ts b/src/hooks/useDownload.ts new file mode 100644 index 0000000..b75c62e --- /dev/null +++ b/src/hooks/useDownload.ts @@ -0,0 +1,58 @@ +import { ElNotification } from 'element-plus'; + +/** + * @description 接收数据流生成 blob,创建链接,下载文件 + * @param {Function} api 导出表格的api方法 (必传) + * @param {String} tempName 导出的文件名 (非必填,优先使用) + * @param {Object} params 导出的参数 (默认{}) + * @param {Boolean} isNotify 是否有导出消息提示 (默认为 true) + * @param {String} fileName 下载文件名 (非必填,优先级高于 tempName) + * */ +export const useDownload = async ( + api: (param: any) => Promise, + tempName?: string, + params: any = {}, + isNotify: boolean = true, + fileName?: string +) => { + if (isNotify) { + ElNotification({ + title: '温馨提示', + message: '如果数据庞大会导致下载缓慢哦,请您耐心等待!', + type: 'info', + duration: 3000 + }); + } + try { + if (!params) params = {}; + const res = await api(params); + // 优先从 content-disposition 获取文件名 + let downloadName: string | undefined; + const contentDisposition = res.headers['content-disposition']; + if (contentDisposition) { + const match = contentDisposition.match(/filename\*?=(?:UTF-8'')?([^;]+)?/); + if (match && match[1]) { + downloadName = decodeURIComponent(match[1].replace(/['"]/g, '')); + } + } + // 如果 content-disposition 没有文件名,再用 fileName 或 tempName + if (!downloadName) { + downloadName = fileName || tempName || '下载文件'; + } + // 下载文件 + const blob = new Blob([res.data], { type: res.headers['content-type'] }); + const blobUrl = window.URL.createObjectURL(blob); + + if ('msSaveOrOpenBlob' in navigator) return window.navigator.msSaveOrOpenBlob(blob, downloadName); + const exportFile = document.createElement('a'); + exportFile.style.display = 'none'; + exportFile.download = downloadName; + exportFile.href = blobUrl; + document.body.appendChild(exportFile); + exportFile.click(); + document.body.removeChild(exportFile); + window.URL.revokeObjectURL(blobUrl); + } catch (error) { + console.log(error); + } +}; diff --git a/src/hooks/useFileUpload.ts b/src/hooks/useFileUpload.ts new file mode 100644 index 0000000..7242686 --- /dev/null +++ b/src/hooks/useFileUpload.ts @@ -0,0 +1,26 @@ +import http from '@/api'; +import {ElMessage, type UploadRequestOptions} from "element-plus"; +import {ADMIN_MODULE} from "@/api/helper/prefix"; +export default function(){ + // 文件上传 + const handleHttpUpload=async (options: UploadRequestOptions) => { + let formData = new FormData(); + formData.append("file", options.file); + try { + const res=await http.post(ADMIN_MODULE+'/ry-face-image/upload',formData,{headers:{ + 'Content-Type': 'multipart/form-data' + }}); + if(res.code=="0000") + { + ElMessage.success('上传成功'); + return res.data; + } + } catch (error) { + options.onError(error as any); + } + }; + //向外部暴露数据 + return {handleHttpUpload} +} + + diff --git a/src/hooks/useHandleData.ts b/src/hooks/useHandleData.ts new file mode 100644 index 0000000..ae97fa7 --- /dev/null +++ b/src/hooks/useHandleData.ts @@ -0,0 +1,34 @@ +import type { HandleDataMessageType } from '@/hooks/types'; +import { ElMessage, ElMessageBox } from 'element-plus'; + +/** + * @description 操作单条数据信息 (二次确认【删除、禁用、启用、重置密码】) + * @param {Function} api 操作数据接口的api方法 (必传) + * @param {Object} params 携带的操作数据参数 {id,params} (必传) + * @param {String} message 提示信息 (必传) + * @param {String} confirmType icon类型 (不必传,默认为 warning) + * @returns {Promise} + */ +export const useHandleData = ( + api: (params: any) => Promise, + params: any = {}, + message: string, + confirmType: HandleDataMessageType = 'warning' +) => { + return new Promise((resolve, reject) => { + ElMessageBox.confirm(`是否${message}?`, '温馨提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: confirmType, + draggable: true + }).then(async () => { + const res = await api(params); + if (!res) return reject(false); + ElMessage({ + type: 'success', + message: `${message}成功!` + }); + resolve(true); + }); + }); +}; diff --git a/src/hooks/useSelection.ts b/src/hooks/useSelection.ts new file mode 100644 index 0000000..d3df4ed --- /dev/null +++ b/src/hooks/useSelection.ts @@ -0,0 +1,34 @@ +import { ref, computed } from 'vue'; + +/** + * @description 表格多选数据操作 + * @param {String} rowKey 当表格可以多选时,所指定的 id + * */ +export const useSelection = (rowKey: string = 'id') => { + const isSelected = ref(false); + const selectedList = ref<{ [key: string | number]: any }[]>([]); + + // 当前选中的所有 ids 数组 + const selectedListIds = computed(() => { + const ids: (string | number)[] = []; + selectedList.value.forEach(item => ids.push(item[rowKey])); + return ids; + }); + + /** + * @description 多选操作 + * @param {Array} rowArr 当前选择的所有数据 + * @return void + */ + const selectionChange = (rowArr: { [key: string]: any }[]) => { + isSelected.value = !!rowArr.length; + selectedList.value = rowArr; + }; + + return { + isSelected, + selectedList, + selectedListIds, + selectionChange + }; +}; diff --git a/src/hooks/useTable.ts b/src/hooks/useTable.ts new file mode 100644 index 0000000..5e09017 --- /dev/null +++ b/src/hooks/useTable.ts @@ -0,0 +1,178 @@ +import { reactive, computed, toRefs } from 'vue'; +import type { Pageable, StateProps } from '@/hooks/types'; + +/** + * @description table 页面操作方法封装 + * @param {Function} api 获取表格数据 api 方法 (必传) + * @param {Object} initParam 获取数据初始化参数 (非必传,默认为{}) + * @param {Boolean} isPageable 是否有分页 (非必传,默认为true) + * @param {Function} dataCallBack 对后台返回的数据进行处理的方法 (非必传) + * @param {Function} requestError 对请求数据错误处理的方法 (非必传) + * @param loadingTime loading 延迟时间 (非必传,默认为 0 ms) + * */ +export const useTable = ( + api?: (params: any) => Promise, + initParam: object = {}, + isPageable: boolean = true, + dataCallBack?: (data: any) => any, + requestError?: (params: any) => void, + loadingTime?: number +) => { + const state = reactive({ + // 表格数据 + tableData: [], + // 分页数据 + pageable: { + // 当前页数 + pageNum: 1, + // 每页显示条数 + pageSize: 10, + // 总条数 + total: 0 + }, + // 查询参数(只包括查询) + searchParam: {}, + // 初始化默认的查询参数 + searchInitParam: {}, + // 总参数(包含分页和查询参数) + totalParam: {}, + loading: false + }); + + /** + * @description 分页查询参数(只包括分页和表格字段排序,其他排序方式可自行配置) + * */ + const pageParam = computed({ + get: () => { + return { + page: state.pageable.pageNum, + limit: state.pageable.pageSize + }; + }, + set: newVal => { + console.log('我是分页更新之后的值', newVal); + } + }); + + /** + * @description 获取表格数据 + * @return void + * */ + const getTableList = async () => { + if (!api) return; + state.loading = true; + try { + await delayLoading(loadingTime); + // 先把初始化参数和分页参数放到总参数里面 + Object.assign(state.totalParam, initParam, isPageable ? pageParam.value : {}); + let { data } = await api({ ...state.searchInitParam, ...state.totalParam }); + if (dataCallBack) data = dataCallBack(data); + if (typeof data === 'object' && Object.keys(data).length === 0) { + state.tableData = isPageable ? data.rows : []; + } else { + state.tableData = isPageable ? data.rows : data; + } + state.loading = false; + // 解构后台返回的分页数据 (如果有分页更新分页信息) + if (isPageable) { + const { current: pageNum, limit: pageSize, total } = data; + updatePageable({ pageNum, pageSize, total }); + } + } catch (error) { + state.loading = false; + if (requestError) requestError(error); + } + }; + + /** + * @description 更新查询参数 + * @return void + * */ + const updatedTotalParam = () => { + state.totalParam = {}; + // 处理查询参数,可以给查询参数加自定义前缀操作 + const nowSearchParam: StateProps['searchParam'] = {}; + // 防止手动清空输入框携带参数(这里可以自定义查询参数前缀) + for (const key in state.searchParam) { + // * 某些情况下参数为 false/0 也应该携带参数 + if (state.searchParam[key] || state.searchParam[key] === false || state.searchParam[key] === 0) { + nowSearchParam[key] = state.searchParam[key]; + } + } + Object.assign(state.totalParam, nowSearchParam, isPageable ? pageParam.value : {}); + }; + + /** + * @description 更新分页信息 + * @param {Object} pageable 后台返回的分页数据 + * @return void + * */ + const updatePageable = (pageable: Pageable) => { + Object.assign(state.pageable, pageable); + }; + + /** + * @description 表格数据查询 + * @return void + * */ + const search = () => { + state.pageable.pageNum = 1; + updatedTotalParam(); + getTableList(); + }; + + /** + * @description 表格数据重置 + * @return void + * */ + const reset = () => { + state.pageable.pageNum = 1; + state.searchParam = {}; + // 重置搜索表单的时,如果有默认搜索参数,则重置默认的搜索参数 + state.searchParam = { ...state.searchInitParam }; + updatedTotalParam(); + getTableList(); + }; + + /** + * @description 每页条数改变 + * @param {Number} val 当前条数 + * @return void + * */ + const handleSizeChange = (val: number) => { + state.pageable.pageNum = 1; + state.pageable.pageSize = val; + getTableList(); + }; + + /** + * @description 当前页改变 + * @param {Number} val 当前页 + * @return void + * */ + const handleCurrentChange = (val: number) => { + state.pageable.pageNum = val; + getTableList(); + }; + + const delayLoading = async (loadingTime: number | undefined) => { + const defaultLoadingTime = 0; // 默认的 loading 延迟时间为0秒 + let actualLoadingTime = loadingTime; + // 判断 loadingTime 是否为特殊参数 + if (typeof loadingTime === 'undefined' || loadingTime === null || loadingTime === -1) { + actualLoadingTime = defaultLoadingTime; + } + // 等待 loading 延迟时间 + await new Promise(resolve => setTimeout(resolve, actualLoadingTime)); + }; + + return { + ...toRefs(state), + getTableList, + search, + reset, + handleSizeChange, + handleCurrentChange, + updatedTotalParam + }; +}; diff --git a/src/hooks/useTheme.ts b/src/hooks/useTheme.ts new file mode 100644 index 0000000..9ade4ba --- /dev/null +++ b/src/hooks/useTheme.ts @@ -0,0 +1,115 @@ +import { storeToRefs } from 'pinia'; +import { DEFAULT_PRIMARY } from '@/config'; +import { useAppStore } from '@/stores/modules/app'; +import { getLightColor, getDarkColor } from '@/utils/color'; +import { menuTheme } from '@/styles/theme/menu'; +import { asideTheme } from '@/styles/theme/aside'; +import { headerTheme } from '@/styles/theme/header'; +import type { GreyOrWeakType, ThemeType } from '@/hooks/types'; +import { ElMessage } from 'element-plus'; + +/** + * @description 全局主题 hooks + * */ +export const useTheme = () => { + const appStore = useAppStore(); + const { primary, isDark, isGrey, isWeak, layout, asideInverted, headerInverted } = storeToRefs(appStore); + + // 切换暗黑模式 ==> 并带修改主题颜色、侧边栏、头部颜色 + const switchDark = () => { + const html = document.documentElement; + html.setAttribute('class', isDark.value ? 'dark' : ''); + changePrimary(primary.value); + setAsideTheme(); + setHeaderTheme(); + }; + + // 修改主题颜色 + const changePrimary = (val: string | null) => { + if (!val) { + val = DEFAULT_PRIMARY; + ElMessage({ type: 'success', message: `主题颜色已重置为 ${DEFAULT_PRIMARY}` }); + } + // 计算主题颜色变化 + document.documentElement.style.setProperty('--el-color-primary', val); + document.documentElement.style.setProperty( + '--el-color-primary-dark-2', + isDark.value ? `${getLightColor(val, 0.2)}` : `${getDarkColor(val, 0.3)}` + ); + for (let i = 1; i <= 9; i++) { + const primaryColor = isDark.value ? `${getDarkColor(val, i / 10)}` : `${getLightColor(val, i / 10)}`; + document.documentElement.style.setProperty(`--el-color-primary-light-${i}`, primaryColor); + } + appStore.changePrimary(val); + }; + + // 灰色和弱色切换 + const changeGreyOrWeak = (type: GreyOrWeakType, value: boolean) => { + const body = document.body; + if (!value) { + return body.removeAttribute('style'); + } + const styles: Record = { + grey: 'filter: grayscale(1)', + weak: 'filter: invert(80%)' + }; + body.setAttribute('style', styles[type]); + if (type === 'grey') { + appStore.changeIsWeak(false); + } else { + appStore.changeIsGrey(false); + } + }; + + // 设置菜单样式 + const setMenuTheme = () => { + let type: ThemeType = 'light'; + if (layout.value === 'transverse' && headerInverted.value) type = 'inverted'; + if (layout.value !== 'transverse' && asideInverted.value) type = 'inverted'; + if (isDark.value) type = 'dark'; + const theme = menuTheme[type]; + for (const [key, value] of Object.entries(theme)) { + document.documentElement.style.setProperty(key, value); + } + }; + + // 设置侧边栏样式 + const setAsideTheme = () => { + let type: ThemeType = 'light'; + if (asideInverted.value) type = 'inverted'; + if (isDark.value) type = 'dark'; + const theme = asideTheme[type]; + for (const [key, value] of Object.entries(theme)) { + document.documentElement.style.setProperty(key, value); + } + setMenuTheme(); + }; + + // 设置头部样式 + const setHeaderTheme = () => { + let type: ThemeType = 'light'; + if (headerInverted.value) type = 'inverted'; + if (isDark.value) type = 'dark'; + const theme = headerTheme[type]; + for (const [key, value] of Object.entries(theme)) { + document.documentElement.style.setProperty(key, value); + } + setMenuTheme(); + }; + + // init theme + const initTheme = () => { + switchDark(); + if (isGrey.value) changeGreyOrWeak('grey', true); + if (isWeak.value) changeGreyOrWeak('weak', true); + }; + + return { + initTheme, + switchDark, + changePrimary, + changeGreyOrWeak, + setAsideTheme, + setHeaderTheme + }; +}; diff --git a/src/hooks/useUrlDownload.ts b/src/hooks/useUrlDownload.ts new file mode 100644 index 0000000..b133541 --- /dev/null +++ b/src/hooks/useUrlDownload.ts @@ -0,0 +1,74 @@ +import { fileDownload } from '@/api/modules/system/common'; + +export function useUrlDownload(file: { url: string; filename?: string }) { + /** 从 URL 截取兜底文件名 */ + function getFileNameFromUrl(url: string) { + return url.split('/').pop() || url; + } + + /** 从 Content-Disposition 中解析文件名(支持 filename* 与 filename) */ + function extractFileNameFromCD(cd?: string | null): string | undefined { + if (!cd) return; + + // 1) 先处理 RFC5987 的 filename* + const starMatch = /filename\*\s*=\s*([^;]+)/i.exec(cd); + if (starMatch) { + const value = starMatch[1].trim().replace(/^"(.*)"$/, '$1'); // 去掉首尾引号 + const rfc5987 = /^([^']*)'[^']*'(.*)$/.exec(value); + if (rfc5987) { + const encodedPart = rfc5987[2]; + try { + return decodeURIComponent(encodedPart); + } catch (e) { + console.log('无法解码 RFC5987 编码的文件名:', e); + } + } else { + try { + return decodeURIComponent(value); + } catch (e) { + console.log('无法解码 URL 编码的文件名:', e); + } + return value; + } + } + + // 2) 再处理普通 filename= + const normalMatch = /filename\s*=\s*([^;]+)/i.exec(cd); + if (normalMatch) { + return normalMatch[1].trim().replace(/^"(.*)"$/, '$1'); + } + } + + async function proxyDownload(url: string, filename?: string) { + // 1. 通过代理接口拿到 AxiosResponse + const res = await fileDownload({ url }); + + // 2. 从响应头中取 Content-Disposition + const cd = + (res.headers['content-disposition'] as string | undefined) ?? (res.headers['Content-Disposition'] as string | undefined); + + // 3. 计算最终文件名:前端传入 > 响应头 > URL > 'download' + let finalName = filename; + const cdName = extractFileNameFromCD(cd); + if (!finalName && cdName) finalName = cdName; + if (!finalName) finalName = getFileNameFromUrl(url) || 'download'; + + // 4. 触发浏览器下载 + const blob = res.data as Blob; + const objectUrl = URL.createObjectURL(blob); + const a = document.createElement('a'); + a.style.display = 'none'; + a.href = objectUrl; + a.download = finalName; + document.body.appendChild(a); + a.click(); + a.remove(); + setTimeout(() => URL.revokeObjectURL(objectUrl), 1000); + } + + const { url, filename } = file; + const name = filename || getFileNameFromUrl(url); + + // 统一走后端代理,解决跨域 + return proxyDownload(url, name); +} diff --git a/src/languages/index.ts b/src/languages/index.ts new file mode 100644 index 0000000..a90b95e --- /dev/null +++ b/src/languages/index.ts @@ -0,0 +1,17 @@ +import { createI18n } from 'vue-i18n'; +import zh from './modules/zh'; +import en from './modules/en'; +import { getBrowserLang } from '@/utils'; + +const i18n = createI18n({ + // Use Composition API, Set to false + allowComposition: true, + legacy: false, + locale: getBrowserLang(), + messages: { + zh, + en + } +}); + +export default i18n; diff --git a/src/languages/modules/en.ts b/src/languages/modules/en.ts new file mode 100644 index 0000000..25ec7fa --- /dev/null +++ b/src/languages/modules/en.ts @@ -0,0 +1,29 @@ +export default { + home: { + welcome: 'Welcome' + }, + tabs: { + refresh: 'Refresh', + maximize: 'Maximize', + closeCurrent: 'Close current', + closeLeft: 'Close Left', + closeRight: 'Close Right', + closeOther: 'Close other', + closeAll: 'Close All' + }, + header: { + componentSize: 'Component size', + language: 'Language', + theme: 'theme', + layoutConfig: 'Layout config', + primary: 'primary', + darkMode: 'Dark Mode', + greyMode: 'Grey mode', + weakMode: 'Weak mode', + fullScreen: 'Full Screen', + exitFullScreen: 'Exit Full Screen', + personalData: 'Personal Data', + changePassword: 'Change Password', + logout: 'Logout' + } +}; diff --git a/src/languages/modules/zh.ts b/src/languages/modules/zh.ts new file mode 100644 index 0000000..9aa6a05 --- /dev/null +++ b/src/languages/modules/zh.ts @@ -0,0 +1,29 @@ +export default { + home: { + welcome: '欢迎使用' + }, + tabs: { + refresh: '刷新', + maximize: '最大化', + closeCurrent: '关闭当前', + closeLeft: '关闭左侧', + closeRight: '关闭右侧', + closeOther: '关闭其它', + closeAll: '关闭所有' + }, + header: { + componentSize: '组件大小', + language: '国际化', + theme: '全局主题', + layoutConfig: '布局设置', + primary: 'primary', + darkMode: '暗黑模式', + greyMode: '灰色模式', + weakMode: '色弱模式', + fullScreen: '全屏', + exitFullScreen: '退出全屏', + personalData: '个人信息', + changePassword: '修改密码', + logout: '退出登录' + } +}; diff --git a/src/layouts/LayoutClassic/index.scss b/src/layouts/LayoutClassic/index.scss new file mode 100644 index 0000000..2207999 --- /dev/null +++ b/src/layouts/LayoutClassic/index.scss @@ -0,0 +1,60 @@ +.el-container { + width: 100%; + height: 100%; + :deep(.el-header) { + box-sizing: border-box; + display: flex; + align-items: center; + justify-content: space-between; + height: 55px; + padding: 0 15px 0 0; + background-color: var(--el-header-bg-color); + border-bottom: 1px solid var(--el-header-border-color); + .header-lf { + display: flex; + align-items: center; + overflow: hidden; + white-space: nowrap; + .logo { + flex-shrink: 0; + width: 210px; + margin-right: 16px; + .logo-img { + width: 28px; + object-fit: contain; + margin-right: 6px; + } + .logo-text { + font-size: 21.5px; + font-weight: bold; + color: var(--el-header-logo-text-color); + white-space: nowrap; + } + } + } + } + .classic-content { + display: flex; + height: calc(100% - 55px); + :deep(.el-aside) { + width: auto; + background-color: var(--el-menu-bg-color); + border-right: 1px solid var(--el-aside-border-color); + .aside-box { + display: flex; + flex-direction: column; + height: 100%; + transition: width 0.3s ease; + .el-menu { + width: 100%; + overflow-x: hidden; + border-right: none; + } + } + } + .classic-main { + display: flex; + flex-direction: column; + } + } +} diff --git a/src/layouts/LayoutClassic/index.vue b/src/layouts/LayoutClassic/index.vue new file mode 100644 index 0000000..80aea7f --- /dev/null +++ b/src/layouts/LayoutClassic/index.vue @@ -0,0 +1,66 @@ + + + + + + diff --git a/src/layouts/LayoutColumns/index.scss b/src/layouts/LayoutColumns/index.scss new file mode 100644 index 0000000..9175538 --- /dev/null +++ b/src/layouts/LayoutColumns/index.scss @@ -0,0 +1,95 @@ +.el-container { + width: 100%; + height: 100%; + .aside-split { + display: flex; + flex-direction: column; + flex-shrink: 0; + width: 70px; + height: 100%; + background-color: var(--el-menu-bg-color); + border-right: 1px solid var(--el-aside-border-color); + .logo { + box-sizing: border-box; + height: 55px; + .logo-img { + width: 32px; + object-fit: contain; + } + } + .el-scrollbar { + height: calc(100% - 55px); + .split-list { + flex: 1; + .split-item { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + height: 70px; + cursor: pointer; + transition: all 0.3s ease; + .el-icon { + font-size: 20px; + } + .title { + margin-top: 6px; + font-size: 12px; + } + .el-icon, + .title { + color: var(--el-menu-text-color); + } + } + .split-active { + background-color: var(--el-color-primary) !important; + .el-icon, + .title { + color: #ffffff !important; + } + } + } + } + } + .not-aside { + width: 0 !important; + border-right: none !important; + } + .el-aside { + display: flex; + flex-direction: column; + height: 100%; + overflow: hidden; + background-color: var(--el-menu-bg-color); + border-right: 1px solid var(--el-aside-border-color); + transition: width 0.3s ease; + .el-scrollbar { + height: calc(100% - 55px); + .el-menu { + width: 100%; + overflow-x: hidden; + border-right: none; + } + } + .logo { + box-sizing: border-box; + height: 55px; + .logo-text { + font-size: 24px; + font-weight: bold; + color: var(--el-aside-logo-text-color); + white-space: nowrap; + } + } + } + .el-header { + box-sizing: border-box; + display: flex; + align-items: center; + justify-content: space-between; + height: 55px; + padding: 0 15px; + background-color: var(--el-header-bg-color); + border-bottom: 1px solid var(--el-border-color-light); + } +} diff --git a/src/layouts/LayoutColumns/index.vue b/src/layouts/LayoutColumns/index.vue new file mode 100644 index 0000000..05ca094 --- /dev/null +++ b/src/layouts/LayoutColumns/index.vue @@ -0,0 +1,116 @@ + + + + + + diff --git a/src/layouts/LayoutTransverse/index.scss b/src/layouts/LayoutTransverse/index.scss new file mode 100644 index 0000000..0b3a9ee --- /dev/null +++ b/src/layouts/LayoutTransverse/index.scss @@ -0,0 +1,60 @@ +.el-container { + width: 100%; + height: 100%; + :deep(.el-header) { + box-sizing: border-box; + display: flex; + align-items: center; + justify-content: space-between; + height: 55px; + padding: 0 15px 0 0; + background-color: var(--el-header-bg-color); + border-bottom: 1px solid var(--el-header-border-color); + .logo { + width: 210px; + margin-right: 30px; + .logo-img { + width: 28px; + object-fit: contain; + margin-right: 6px; + } + .logo-text { + font-size: 21.5px; + font-weight: bold; + color: var(--el-header-logo-text-color); + white-space: nowrap; + } + } + .el-menu { + flex: 1; + height: 100%; + overflow: hidden; + border-bottom: none; + .el-sub-menu__hide-arrow { + width: 65px; + height: 55px; + } + .el-menu-item.is-active { + color: #ffffff !important; + } + .is-active { + background-color: var(--el-color-primary) !important; + border-bottom-color: var(--el-color-primary) !important; + &::before { + width: 0; + } + .el-sub-menu__title { + color: #ffffff !important; + background-color: var(--el-color-primary) !important; + border-bottom-color: var(--el-color-primary) !important; + } + } + } + } + + @media screen and (width <= 730px) { + .logo { + display: none !important; + } + } +} diff --git a/src/layouts/LayoutTransverse/index.vue b/src/layouts/LayoutTransverse/index.vue new file mode 100644 index 0000000..3ba86d2 --- /dev/null +++ b/src/layouts/LayoutTransverse/index.vue @@ -0,0 +1,67 @@ + + + + + + diff --git a/src/layouts/LayoutVertical/index.scss b/src/layouts/LayoutVertical/index.scss new file mode 100644 index 0000000..33a9b42 --- /dev/null +++ b/src/layouts/LayoutVertical/index.scss @@ -0,0 +1,48 @@ +.el-container { + width: 100%; + height: 100%; + :deep(.el-aside) { + width: auto; + background-color: var(--el-menu-bg-color); + border-right: 1px solid var(--el-aside-border-color); + .aside-box { + display: flex; + flex-direction: column; + height: 100%; + transition: width 0.3s ease; + .el-scrollbar { + height: calc(100% - 55px); + .el-menu { + width: 100%; + overflow-x: hidden; + border-right: none; + } + } + .logo { + box-sizing: border-box; + height: 55px; + .logo-img { + width: 28px; + object-fit: contain; + margin-right: 6px; + } + .logo-text { + font-size: 21.5px; + font-weight: bold; + color: var(--el-aside-logo-text-color); + white-space: nowrap; + } + } + } + } + .el-header { + box-sizing: border-box; + display: flex; + align-items: center; + justify-content: space-between; + height: 55px; + padding: 0 15px; + background-color: var(--el-header-bg-color); + border-bottom: 1px solid var(--el-header-border-color); + } +} diff --git a/src/layouts/LayoutVertical/index.vue b/src/layouts/LayoutVertical/index.vue new file mode 100644 index 0000000..ca96654 --- /dev/null +++ b/src/layouts/LayoutVertical/index.vue @@ -0,0 +1,78 @@ + + + + + + diff --git a/src/layouts/components/Footer/index.scss b/src/layouts/components/Footer/index.scss new file mode 100644 index 0000000..704b521 --- /dev/null +++ b/src/layouts/components/Footer/index.scss @@ -0,0 +1,12 @@ +.footer { + height: 30px; + background-color: var(--el-bg-color); + border-top: 1px solid var(--el-border-color-light); + + a { + font-size: 14px; + color: var(--el-text-color-secondary); + text-decoration: none; + letter-spacing: 0.5px; + } +} diff --git a/src/layouts/components/Footer/index.vue b/src/layouts/components/Footer/index.vue new file mode 100644 index 0000000..38b264a --- /dev/null +++ b/src/layouts/components/Footer/index.vue @@ -0,0 +1,13 @@ + + + diff --git a/src/layouts/components/Header/ToolBarLeft.vue b/src/layouts/components/Header/ToolBarLeft.vue new file mode 100644 index 0000000..9b124e8 --- /dev/null +++ b/src/layouts/components/Header/ToolBarLeft.vue @@ -0,0 +1,24 @@ + + + + + diff --git a/src/layouts/components/Header/ToolBarRight.vue b/src/layouts/components/Header/ToolBarRight.vue new file mode 100644 index 0000000..2b1931f --- /dev/null +++ b/src/layouts/components/Header/ToolBarRight.vue @@ -0,0 +1,54 @@ + + + + + diff --git a/src/layouts/components/Header/components/AssemblySize.vue b/src/layouts/components/Header/components/AssemblySize.vue new file mode 100644 index 0000000..f002689 --- /dev/null +++ b/src/layouts/components/Header/components/AssemblySize.vue @@ -0,0 +1,37 @@ + + + diff --git a/src/layouts/components/Header/components/Avatar.vue b/src/layouts/components/Header/components/Avatar.vue new file mode 100644 index 0000000..214cf0d --- /dev/null +++ b/src/layouts/components/Header/components/Avatar.vue @@ -0,0 +1,149 @@ + + + + + diff --git a/src/layouts/components/Header/components/Breadcrumb.vue b/src/layouts/components/Header/components/Breadcrumb.vue new file mode 100644 index 0000000..02d62ce --- /dev/null +++ b/src/layouts/components/Header/components/Breadcrumb.vue @@ -0,0 +1,112 @@ + + + + + diff --git a/src/layouts/components/Header/components/CollapseIcon.vue b/src/layouts/components/Header/components/CollapseIcon.vue new file mode 100644 index 0000000..232efe6 --- /dev/null +++ b/src/layouts/components/Header/components/CollapseIcon.vue @@ -0,0 +1,21 @@ + + + + + diff --git a/src/layouts/components/Header/components/Fullscreen.vue b/src/layouts/components/Header/components/Fullscreen.vue new file mode 100644 index 0000000..3a402b4 --- /dev/null +++ b/src/layouts/components/Header/components/Fullscreen.vue @@ -0,0 +1,24 @@ + + + diff --git a/src/layouts/components/Header/components/InfoDialog.vue b/src/layouts/components/Header/components/InfoDialog.vue new file mode 100644 index 0000000..90ec083 --- /dev/null +++ b/src/layouts/components/Header/components/InfoDialog.vue @@ -0,0 +1,68 @@ + + + diff --git a/src/layouts/components/Header/components/Language.vue b/src/layouts/components/Header/components/Language.vue new file mode 100644 index 0000000..15fa5d8 --- /dev/null +++ b/src/layouts/components/Header/components/Language.vue @@ -0,0 +1,38 @@ + + + diff --git a/src/layouts/components/Header/components/Message.vue b/src/layouts/components/Header/components/Message.vue new file mode 100644 index 0000000..a95501d --- /dev/null +++ b/src/layouts/components/Header/components/Message.vue @@ -0,0 +1,169 @@ + + + + + diff --git a/src/layouts/components/Header/components/PasswordDialog.vue b/src/layouts/components/Header/components/PasswordDialog.vue new file mode 100644 index 0000000..707ea25 --- /dev/null +++ b/src/layouts/components/Header/components/PasswordDialog.vue @@ -0,0 +1,100 @@ + + + diff --git a/src/layouts/components/Header/components/SearchMenu.vue b/src/layouts/components/Header/components/SearchMenu.vue new file mode 100644 index 0000000..bb05733 --- /dev/null +++ b/src/layouts/components/Header/components/SearchMenu.vue @@ -0,0 +1,119 @@ + + + + + diff --git a/src/layouts/components/Header/components/ThemeSetting.vue b/src/layouts/components/Header/components/ThemeSetting.vue new file mode 100644 index 0000000..7b32c1d --- /dev/null +++ b/src/layouts/components/Header/components/ThemeSetting.vue @@ -0,0 +1,13 @@ + + + diff --git a/src/layouts/components/Main/components/Maximize.vue b/src/layouts/components/Main/components/Maximize.vue new file mode 100644 index 0000000..a94a018 --- /dev/null +++ b/src/layouts/components/Main/components/Maximize.vue @@ -0,0 +1,41 @@ + + + + + diff --git a/src/layouts/components/Main/index.scss b/src/layouts/components/Main/index.scss new file mode 100644 index 0000000..fd4f175 --- /dev/null +++ b/src/layouts/components/Main/index.scss @@ -0,0 +1,10 @@ +.el-main { + box-sizing: border-box; + padding: 10px 12px; + overflow-x: hidden; + background-color: var(--el-bg-color-page); +} +.el-footer { + height: auto; + padding: 0; +} diff --git a/src/layouts/components/Main/index.vue b/src/layouts/components/Main/index.vue new file mode 100644 index 0000000..d3d7d1c --- /dev/null +++ b/src/layouts/components/Main/index.vue @@ -0,0 +1,75 @@ + + + + + diff --git a/src/layouts/components/Menu/SubMenu.vue b/src/layouts/components/Menu/SubMenu.vue new file mode 100644 index 0000000..22c9871 --- /dev/null +++ b/src/layouts/components/Menu/SubMenu.vue @@ -0,0 +1,105 @@ + + + + + diff --git a/src/layouts/components/Tabs/components/MoreButton.vue b/src/layouts/components/Tabs/components/MoreButton.vue new file mode 100644 index 0000000..78eac17 --- /dev/null +++ b/src/layouts/components/Tabs/components/MoreButton.vue @@ -0,0 +1,109 @@ + + + + + diff --git a/src/layouts/components/Tabs/index.scss b/src/layouts/components/Tabs/index.scss new file mode 100644 index 0000000..974e160 --- /dev/null +++ b/src/layouts/components/Tabs/index.scss @@ -0,0 +1,69 @@ +.tabs-box { + background-color: var(--el-bg-color); + .tabs-menu { + position: relative; + width: 100%; + .el-dropdown { + position: absolute; + top: 0; + right: 0; + bottom: 0; + .more-button { + display: flex; + align-items: center; + justify-content: center; + width: 43px; + cursor: pointer; + border-left: 1px solid var(--el-border-color-light); + transition: all 0.3s; + &:hover { + background-color: var(--el-color-info-light-9); + } + .iconfont { + font-size: 12.5px; + } + } + } + :deep(.el-tabs) { + .el-tabs__header { + box-sizing: border-box; + height: 40px; + padding: 0 10px; + margin: 0; + .el-tabs__nav-wrap { + position: absolute; + width: calc(100% - 70px); + .el-tabs__nav { + display: flex; + border: none; + .el-tabs__item { + display: flex; + align-items: center; + justify-content: center; + color: #afafaf; + border: none; + .tabs-icon { + margin: 1.5px 4px 0 0; + font-size: 15px; + } + .is-icon-close { + margin-top: 1px; + } + &.is-active { + color: var(--el-color-primary); + &::before { + position: absolute; + bottom: 0; + width: 100%; + height: 0; + content: ''; + border-bottom: 2px solid var(--el-color-primary) !important; + } + } + } + } + } + } + } + } +} diff --git a/src/layouts/components/Tabs/index.vue b/src/layouts/components/Tabs/index.vue new file mode 100644 index 0000000..102a6b1 --- /dev/null +++ b/src/layouts/components/Tabs/index.vue @@ -0,0 +1,118 @@ + + + + + diff --git a/src/layouts/components/ThemeDrawer/index.scss b/src/layouts/components/ThemeDrawer/index.scss new file mode 100644 index 0000000..c82209c --- /dev/null +++ b/src/layouts/components/ThemeDrawer/index.scss @@ -0,0 +1,137 @@ +.divider { + margin-top: 15px; + .el-icon { + position: relative; + top: 2px; + right: 5px; + font-size: 15px; + } +} +.theme-item { + display: flex; + align-items: center; + justify-content: space-between; + padding: 0 5px; + margin: 14px 0; + span { + display: flex; + align-items: center; + font-size: 14px; + .el-icon { + margin-left: 3px; + font-size: 15px; + color: var(--el-text-color-regular); + cursor: pointer; + } + } +} +.layout-box { + position: relative; + display: flex; + flex-wrap: wrap; + justify-content: space-between; + padding: 15px 7px 0; + .layout-item { + position: relative; + box-sizing: border-box; + width: 100px; + height: 70px; + padding: 6px; + cursor: pointer; + border-radius: 5px; + box-shadow: 0 0 5px 1px var(--el-border-color-dark); + transition: all 0.2s; + .layout-dark { + background-color: var(--el-color-primary); + border-radius: 3px; + } + .layout-light { + background-color: var(--el-color-primary-light-5); + border-radius: 3px; + } + .layout-content { + background-color: var(--el-color-primary-light-8); + border: 1px dashed var(--el-color-primary); + border-radius: 3px; + } + .el-icon { + position: absolute; + right: 10px; + bottom: 10px; + color: var(--el-color-primary); + transition: all 0.2s; + } + &:hover { + box-shadow: 0 0 5px 1px var(--el-text-color-secondary); + } + } + .is-active { + box-shadow: 0 0 0 2px var(--el-color-primary) !important; + } + .layout-vertical { + display: flex; + justify-content: space-between; + margin-bottom: 20px; + .layout-dark { + width: 20%; + } + .layout-container { + display: flex; + flex-direction: column; + justify-content: space-between; + width: 72%; + .layout-light { + height: 20%; + } + .layout-content { + height: 67%; + } + } + } + .layout-classic { + display: flex; + flex-direction: column; + justify-content: space-between; + margin-bottom: 20px; + .layout-dark { + height: 22%; + } + .layout-container { + display: flex; + justify-content: space-between; + height: 70%; + .layout-light { + width: 20%; + } + .layout-content { + width: 70%; + } + } + } + .layout-transverse { + display: flex; + flex-direction: column; + justify-content: space-between; + margin-bottom: 15px; + .layout-dark { + height: 20%; + } + .layout-content { + height: 67%; + } + } + .layout-columns { + display: flex; + justify-content: space-between; + margin-bottom: 15px; + .layout-dark { + width: 14%; + } + .layout-light { + width: 17%; + } + .layout-content { + width: 55%; + } + } +} diff --git a/src/layouts/components/ThemeDrawer/index.vue b/src/layouts/components/ThemeDrawer/index.vue new file mode 100644 index 0000000..470cbb2 --- /dev/null +++ b/src/layouts/components/ThemeDrawer/index.vue @@ -0,0 +1,200 @@ + + + + + diff --git a/src/layouts/index.vue b/src/layouts/index.vue new file mode 100644 index 0000000..f8c3cb9 --- /dev/null +++ b/src/layouts/index.vue @@ -0,0 +1,40 @@ + + + + + + diff --git a/src/layouts/indexAsync.vue b/src/layouts/indexAsync.vue new file mode 100644 index 0000000..3f6c3a2 --- /dev/null +++ b/src/layouts/indexAsync.vue @@ -0,0 +1,44 @@ + + + + + + diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..3b4582c --- /dev/null +++ b/src/main.ts @@ -0,0 +1,56 @@ +import { createApp } from 'vue'; +import pinia from '@/stores'; + +import '@/styles/index.scss'; + +// element plus +import ElementPlus from 'element-plus'; +// element css +import 'element-plus/dist/index.css'; +// element dark css +import 'element-plus/theme-chalk/dark/css-vars.css'; + +// element icons +import * as Icons from '@element-plus/icons-vue'; + +// vue i18n +import I18n from '@/languages'; + +import App from '@/App.vue'; +import router from '@/router'; + +// custom directives +import directives from '@/directives/index'; + +// errorHandler +import errorHandler from '@/utils/errorHandler'; +// svg icons +import 'virtual:svg-icons-register'; + +// highlight 高亮 +import 'highlight.js/styles/atom-one-dark.css'; +import 'highlight.js/lib/common'; +import hljsVuePlugin from '@highlightjs/vue-plugin'; +import { isLocalEnv } from '@/utils'; + +const app = createApp(App); + +if (!isLocalEnv()) { + app.config.errorHandler = errorHandler; +} + +// register the element Icons component +Object.keys(Icons).forEach(key => { + app.component(key, Icons[key as keyof typeof Icons]); +}); + +app.use(ElementPlus); +app.use(pinia); +app.use(router); +app.use(directives); +app.use(I18n); + +// app.use(router) +app.use(hljsVuePlugin); + +app.mount('#app'); diff --git a/src/router/index.ts b/src/router/index.ts new file mode 100644 index 0000000..75106c3 --- /dev/null +++ b/src/router/index.ts @@ -0,0 +1,109 @@ +import { createRouter, createWebHistory } from 'vue-router'; +import { errorRouter, staticRouter } from '@/router/modules/staticRouter'; +import NProgress from '@/config/nprogress'; +import { LOGIN_URL, ROUTER_WHITE_LIST } from '@/config'; +import { useUserStore } from '@/stores/modules/user'; +import { useAuthStore } from '@/stores/modules/auth'; +import { initDynamicRouter } from '@/router/modules/dynamicRouter'; +import { useOptionsStore } from '@/stores/modules/options'; + +/** + * @description 📚 路由参数配置简介 + * @param path ==> 路由菜单访问路径 + * @param name ==> 路由 name (对应页面组件 name, 可用作 KeepAlive 缓存标识 && 按钮权限筛选) + * @param redirect ==> 路由重定向地址 + * @param component ==> 视图文件路径 + * @param meta ==> 路由菜单元信息 + * @param meta.icon ==> 菜单和面包屑对应的图标 + * @param meta.title ==> 路由标题 (用作 document.title || 菜单的名称) + * @param meta.activeMenu ==> 当前路由为详情页时,需要高亮的菜单 + * @param meta.isLink ==> 路由外链时填写的访问地址 + * @param meta.isHidden ==> 是否在菜单中隐藏 (通常列表详情页需要隐藏) + * @param meta.isFull ==> 菜单是否全屏 (示例:数据大屏页面) + * @param meta.isAffix ==> 菜单是否固定在标签页中 (首页通常是固定项) + * @param meta.isKeepAlive ==> 当前路由是否缓存 + */ +const router = createRouter({ + history: createWebHistory(import.meta.env.BASE_URL), + routes: [...staticRouter, ...errorRouter], + strict: false, + scrollBehavior: () => ({ left: 0, top: 0 }) +}); + +/** + * @description 路由拦截 beforeEach + * */ +router.beforeEach(async (to, from, next) => { + const userStore = useUserStore(); + const authStore = useAuthStore(); + const optionsStore = useOptionsStore(); + + // 1.NProgress 开始 + NProgress.start(); + + // 2.动态设置标题 + const title = import.meta.env.VITE_APP_TITLE; + document.title = to.meta.title ? `${to.meta.title} - ${title}` : title; + + // 3.判断是访问登陆页,有 Token 就在当前页面,没有 Token 重置路由到登陆页 + if (to.path.toLocaleLowerCase() === LOGIN_URL) { + if (userStore.token) { + return next(from.fullPath); + } + resetRouter(); + return next(); + } + + // 4.判断访问页面是否在路由白名单地址(静态路由)中,如果存在直接放行 + if (ROUTER_WHITE_LIST.includes(to.path)) { + return next(); + } + + // 5.判断是否有 Token,没有重定向到 login 页面 + if (!userStore.token) { + return next({ path: LOGIN_URL, replace: true }); + } + + // 6.如果没有菜单列表,就重新请求菜单列表并添加动态路由 + if (!authStore.isLoaded) { + await initDynamicRouter(); + return next({ ...to, replace: true }); + } + + // 7.存储 routerName 做按钮权限筛选 + authStore.setRouteName(to.name as string); + + // 加载所有字典信息 + optionsStore.getAllDictList(); + + // 8.正常访问页面 + next(); +}); + +/** + * @description 重置路由 + * */ +export const resetRouter = () => { + const authStore = useAuthStore(); + authStore.flatMenuListGet.forEach(route => { + const { name } = route; + if (name && router.hasRoute(name)) router.removeRoute(name); + }); +}; + +/** + * @description 路由跳转错误 + * */ +router.onError(error => { + NProgress.done(); + console.warn('路由错误', error.message); +}); + +/** + * @description 路由跳转结束 + * */ +router.afterEach(() => { + NProgress.done(); +}); + +export default router; diff --git a/src/router/modules/dynamicRouter.ts b/src/router/modules/dynamicRouter.ts new file mode 100644 index 0000000..a9d041d --- /dev/null +++ b/src/router/modules/dynamicRouter.ts @@ -0,0 +1,64 @@ +import { useUserStore } from '@/stores/modules/user'; +import { useAuthStore } from '@/stores/modules/auth'; +import { useOptionsStore } from '@/stores/modules/options'; +import { LOGIN_URL } from '@/config'; +import router from '@/router'; +import type { RouteRecordRaw } from 'vue-router'; +import { useConfigStore } from '@/stores/modules/config'; + +// 引入 views 文件夹下所有 vue 文件 +const modules = import.meta.glob('@/views/**/*.vue'); + +/** + * @description 初始化动态路由 + */ +export const initDynamicRouter = async () => { + const userStore = useUserStore(); + const authStore = useAuthStore(); + const optionsStore = useOptionsStore(); + const configStore = useConfigStore(); + + try { + if (authStore.isLoaded) return; + // 1.获取菜单列表 && 按钮权限列表 && 字典列表 + await authStore.getAuthMenuList(); + await authStore.getAuthButtonList(); + await authStore.getAuthRoleList(); + optionsStore.setReloadOptions(); + await optionsStore.getAllDictList(); + await authStore.setLoaded(); + configStore.setReload(); + await configStore.getConfig(); + + // 2.判断当前用户有没有菜单权限 + // if (!authStore.authMenuListGet.length) { + // ElNotification({ + // title: '无权限访问', + // message: '当前账号无任何菜单权限,请联系系统管理员!', + // type: 'warning', + // duration: 3000 + // }) + // userStore.setToken('') + // router.replace(LOGIN_URL) + // return Promise.reject('No permission') + // } + + // 3.添加动态路由 + authStore.flatMenuListGet.forEach(item => { + if (item.children) delete item.children; + if (item.component && typeof item.component == 'string') { + item.component = modules['/src/views' + item.component + '.vue']; + } + if (item.meta.isFull === 'T') { + router.addRoute(item as unknown as RouteRecordRaw); + } else { + router.addRoute('layout', item as unknown as RouteRecordRaw); + } + }); + } catch (error) { + // 当按钮 || 菜单请求出错时,重定向到登陆页 + userStore.setToken(''); + router.replace(LOGIN_URL); + return Promise.reject(error); + } +}; diff --git a/src/router/modules/staticRouter.ts b/src/router/modules/staticRouter.ts new file mode 100644 index 0000000..73a4e9b --- /dev/null +++ b/src/router/modules/staticRouter.ts @@ -0,0 +1,74 @@ +import { HOME_URL, LOGIN_URL } from '@/config'; +import type { RouteRecordRaw } from 'vue-router'; + +export const staticRouter: RouteRecordRaw[] = [ + { + path: '/', + redirect: HOME_URL + }, + { + path: LOGIN_URL, + name: 'login', + component: () => import('@/views/login/index.vue'), + meta: { + title: '登录' + } + }, + { + path: '/layout', + name: 'layout', + component: () => import('@/layouts/index.vue'), + redirect: HOME_URL, + children: [ + { + path: HOME_URL, + name: 'home', + component: () => import('@/views/home/index.vue'), + meta: { + title: '首页', + icon: 'HomeFilled', + isAffix: 'T', + isFull: 'F', + isHidden: 'F', + isKeepAlive: 'T', + isLink: '' + } + } + ] + } +]; + +/** + * errorRouter (错误页面路由) + */ +export const errorRouter: RouteRecordRaw[] = [ + { + path: '/403', + name: '403', + component: () => import('@/components/ErrorMessage/403.vue'), + meta: { + title: '403页面' + } + }, + { + path: '/404', + name: '404', + component: () => import('@/components/ErrorMessage/404.vue'), + meta: { + title: '404页面' + } + }, + { + path: '/500', + name: '500', + component: () => import('@/components/ErrorMessage/500.vue'), + meta: { + title: '500页面' + } + }, + // Resolve refresh page, route warnings + { + path: '/:pathMatch(.*)*', + component: () => import('@/components/ErrorMessage/404.vue') + } +]; diff --git a/src/stores/helper/persist.ts b/src/stores/helper/persist.ts new file mode 100644 index 0000000..f2d3daf --- /dev/null +++ b/src/stores/helper/persist.ts @@ -0,0 +1,19 @@ +import type { PersistedStateOptions } from 'pinia-plugin-persistedstate'; + +/** + * @description pinia 持久化参数配置 + * @param {String} key 存储到持久化的 name + * @param {Array} paths 需要持久化的 state name + * @return persist + * */ +const piniaPersistConfig = (key: string, paths?: string[]) => { + const persist: PersistedStateOptions = { + key, + storage: localStorage, + // storage: sessionStorage, + paths + }; + return persist; +}; + +export default piniaPersistConfig; diff --git a/src/stores/index.ts b/src/stores/index.ts new file mode 100644 index 0000000..1e6ed37 --- /dev/null +++ b/src/stores/index.ts @@ -0,0 +1,8 @@ +import { createPinia } from 'pinia'; +import piniaPluginPersistedState from 'pinia-plugin-persistedstate'; + +// pinia persist +const pinia = createPinia(); +pinia.use(piniaPluginPersistedState); + +export default pinia; diff --git a/src/stores/interface/app.ts b/src/stores/interface/app.ts new file mode 100644 index 0000000..2ca9dec --- /dev/null +++ b/src/stores/interface/app.ts @@ -0,0 +1,5 @@ +export type LayoutType = 'vertical' | 'classic' | 'transverse' | 'columns'; + +export type AssemblySizeType = 'large' | 'default' | 'small'; + +export type LanguageType = 'zh' | 'en' | null; diff --git a/src/stores/interface/tabs.ts b/src/stores/interface/tabs.ts new file mode 100644 index 0000000..44f8a55 --- /dev/null +++ b/src/stores/interface/tabs.ts @@ -0,0 +1,9 @@ +/* tabsMenuProps */ +export interface TabsMenuProps { + icon: string; + title: string; + path: string; + name: string; + close: boolean; + isKeepAlive: boolean; +} diff --git a/src/stores/interface/user.ts b/src/stores/interface/user.ts new file mode 100644 index 0000000..59ce7cd --- /dev/null +++ b/src/stores/interface/user.ts @@ -0,0 +1,3 @@ +export interface UserInfo { + name: string; +} diff --git a/src/stores/modules/app.ts b/src/stores/modules/app.ts new file mode 100644 index 0000000..c695114 --- /dev/null +++ b/src/stores/modules/app.ts @@ -0,0 +1,103 @@ +import { defineStore } from 'pinia'; +import { DEFAULT_PRIMARY } from '@/config'; +import type { AssemblySizeType, LanguageType, LayoutType } from '@/stores/interface/app'; +import piniaPersistConfig from '@/stores/helper/persist'; +import { ref } from 'vue'; + +export const useAppStore = defineStore( + 'app', + () => { + // 布局模式 (纵向:vertical | 经典:classic | 横向:transverse | 分栏:columns) + const layout = ref('vertical'); + // element 组件大小 + const assemblySize = ref('default'); + // 当前系统语言 + const language = ref(null); + // 当前页面是否全屏 + const maximize = ref(false); + // 主题颜色 + const primary = ref(DEFAULT_PRIMARY); + // 深色模式 + const isDark = ref(false); + // 灰色模式 + const isGrey = ref(false); + // 色弱模式 + const isWeak = ref(false); + // 侧边栏反转 + const asideInverted = ref(false); + // 头部反转 + const headerInverted = ref(false); + // 折叠菜单 + const isCollapse = ref(false); + // 菜单手风琴 + const accordion = ref(false); + // 面包屑导航 + const breadcrumb = ref(true); + // 面包屑导航图标 + const breadcrumbIcon = ref(true); + // 标签页 + const tabs = ref(true); + // 标签页图标 + const tabsIcon = ref(true); + // 页脚 + const footer = ref(true); + + const changeLayout = (val: LayoutType) => (layout.value = val); + const changeAssemblySize = (val: AssemblySizeType) => (assemblySize.value = val); + const changeLanguage = (val: LanguageType) => (language.value = val); + const changeMaximize = (val: boolean) => (maximize.value = val); + const changePrimary = (val: string) => (primary.value = val); + const changeIsDark = (val: boolean) => (isDark.value = val); + const changeIsGrey = (val: boolean) => (isGrey.value = val); + const changeIsWeak = (val: boolean) => (isWeak.value = val); + const changeAsideInverted = (val: boolean) => (asideInverted.value = val); + const changeHeaderInverted = (val: boolean) => (headerInverted.value = val); + const changeIsCollapse = (val: boolean) => (isCollapse.value = val); + const changeAccordion = (val: boolean) => (accordion.value = val); + const changeBreadcrumb = (val: boolean) => (breadcrumb.value = val); + const changeBreadcrumbIcon = (val: boolean) => (breadcrumbIcon.value = val); + const changeTabs = (val: boolean) => (tabs.value = val); + const changeTabsIcon = (val: boolean) => (tabsIcon.value = val); + const changeFooter = (val: boolean) => (footer.value = val); + + return { + layout, + assemblySize, + language, + maximize, + primary, + isDark, + isGrey, + isWeak, + asideInverted, + headerInverted, + isCollapse, + accordion, + breadcrumb, + breadcrumbIcon, + tabs, + tabsIcon, + footer, + changeLayout, + changeAssemblySize, + changeLanguage, + changeMaximize, + changePrimary, + changeIsDark, + changeIsGrey, + changeIsWeak, + changeAsideInverted, + changeHeaderInverted, + changeIsCollapse, + changeAccordion, + changeBreadcrumb, + changeBreadcrumbIcon, + changeTabs, + changeTabsIcon, + changeFooter + }; + }, + { + persist: piniaPersistConfig('app') + } +); diff --git a/src/stores/modules/auth.ts b/src/stores/modules/auth.ts new file mode 100644 index 0000000..0e39035 --- /dev/null +++ b/src/stores/modules/auth.ts @@ -0,0 +1,172 @@ +import { defineStore } from 'pinia'; +import { getAuthButtonListApi, getAuthMenuListApi, getAuthRoleListApi } from '@/api/modules/system/login'; +import { getAllBreadcrumbList, getFlatMenuList, getShowMenuList } from '@/utils'; +import { computed, ref } from 'vue'; + +export const useAuthStore = defineStore('auth', () => { + const isLoaded = ref(false); + // 按钮权限列表 + const authButtonList = ref([]); + // 菜单权限列表 + const authMenuList = ref([]); + // 用户角色列表. 以后如有业务需要可结合此属性灵活处理 + const authRoleList = ref([]); + // 当前页面的 router name,用来做按钮权限筛选 + const routeName = ref(''); + + // 按钮权限列表 + const authButtonListGet = computed(() => authButtonList.value); + // 菜单权限列表 ==> 这里的菜单没有经过任何处理 + const authMenuListGet = computed(() => authMenuList.value); + // 用户角色列表 + const authRoleListGet = computed(() => authRoleList.value); + // 菜单权限列表 ==> 左侧菜单栏渲染,需要剔除 isHidden == true + const showMenuListGet = computed(() => getShowMenuList(authMenuList.value)); + // 菜单权限列表 ==> 扁平化之后的一维数组菜单,主要用来添加动态路由 + const flatMenuListGet = computed(() => getFlatMenuList(authMenuList.value)); + // 递归处理后的所有面包屑导航列表 + const breadcrumbListGet = computed(() => getAllBreadcrumbList(authMenuList.value)); + + // Get AuthButtonList + async function getAuthButtonList() { + const { data } = await getAuthButtonListApi(); + authButtonList.value = data; + } + + // Get AuthMenuList + async function getAuthMenuList() { + const { data } = await getAuthMenuListApi(); + authMenuList.value = data; + + const beforeMenuList: Menu.MenuOptions[] = [ + { + id: 'b6c6433509ab405f94796cc93752d417', + pid: '0', + path: '/system/message', + name: 'Message', + sort: 1, + component: '/system/message/index', + meta: { + icon: 'Bell', + title: '消息', + isLink: '', + isHidden: 'F', + isFull: 'F', + isAffix: 'F', + isKeepAlive: 'F', + useDataScope: 'F' + }, + children: [], + permissions: '', + menuTypeCd: '1002002' + }, + { + id: '6abae64123b746808837ae61bf8d08fb', + pid: '0', + path: '/system/message/:id', + name: 'MessagePopup', + sort: 2, + component: '/system/message/index', + meta: { + icon: 'Bell', + title: '消息详情', + isLink: '', + isHidden: 'T', + isFull: 'F', + isAffix: 'F', + isKeepAlive: 'F', + useDataScope: 'F' + }, + children: [], + permissions: '', + menuTypeCd: '1002002' + } + ]; + authMenuList.value.unshift(...beforeMenuList); + + const afterMenuList: Menu.MenuOptions[] = [ + { + id: 'c6328b228c2c4e6bb5b1beb83110dcfa', + pid: '0', + path: '/demo', + name: 'demo', + sort: 500, + component: '/demo/index', + meta: { + icon: 'Flag', + title: '功能演示', + isLink: '', + isHidden: 'F', + isFull: 'F', + isAffix: 'F', + isKeepAlive: 'F', + useDataScope: 'F' + }, + children: [], + permissions: '', + menuTypeCd: '1002002' + }, + { + id: 'c0a0eba2922346b0b8ae9d4dd951498e', + pid: '0', + path: '/about/index', + name: 'about', + sort: 600, + component: '/about/index', + meta: { + icon: 'InfoFilled', + title: '关于项目', + isLink: '', + isHidden: 'F', + isFull: 'F', + isAffix: 'F', + isKeepAlive: 'F', + useDataScope: 'F' + }, + children: [], + permissions: '', + menuTypeCd: '1002002' + } + ]; + authMenuList.value.push(...afterMenuList); + } + + // Get AuthRoleList + async function getAuthRoleList() { + const { data } = await getAuthRoleListApi(); + authRoleList.value = data; + } + + function clear() { + isLoaded.value = false; + authMenuList.value = []; + authButtonList.value = []; + authRoleList.value = []; + } + + // Set RouteName + async function setRouteName(name: string) { + routeName.value = name; + } + + async function setLoaded() { + isLoaded.value = true; + } + + return { + isLoaded, + setLoaded, + routeName, + authButtonListGet, + authMenuListGet, + authRoleListGet, + showMenuListGet, + flatMenuListGet, + breadcrumbListGet, + getAuthButtonList, + getAuthMenuList, + getAuthRoleList, + setRouteName, + clear + }; +}); diff --git a/src/stores/modules/config.ts b/src/stores/modules/config.ts new file mode 100644 index 0000000..ed765fb --- /dev/null +++ b/src/stores/modules/config.ts @@ -0,0 +1,38 @@ +import { defineStore } from 'pinia'; +import piniaPersistConfig from '@/stores/helper/persist'; +import { ref } from 'vue'; +import { getFrontendConfig } from '@/api/modules/system/config'; + +export const useConfigStore = defineStore( + 'config', + () => { + const isLoaded = ref(false); + const configOptions = ref>({}); + + async function getConfig() { + if (isLoaded.value) return; + const { data } = await getFrontendConfig(); + configOptions.value = data; + isLoaded.value = true; + } + + function getConfigOption(key: string): string { + return configOptions.value[key]; + } + + function setReload() { + isLoaded.value = false; + } + + return { + isLoaded, + configOptions, + getConfigOption, + getConfig, + setReload: setReload + }; + }, + { + persist: piniaPersistConfig('config') + } +); diff --git a/src/stores/modules/keepAlive.ts b/src/stores/modules/keepAlive.ts new file mode 100644 index 0000000..329bc08 --- /dev/null +++ b/src/stores/modules/keepAlive.ts @@ -0,0 +1,30 @@ +import { defineStore } from 'pinia'; +import { ref } from 'vue'; + +export const useKeepAliveStore = defineStore('keep-alive', () => { + const keepAliveName = ref([]); + + // Add KeepAliveName + async function addKeepAliveName(name: string) { + if (!keepAliveName.value.includes(name)) { + keepAliveName.value.push(name); + } + } + + // Remove KeepAliveName + async function removeKeepAliveName(name: string) { + keepAliveName.value = keepAliveName.value.filter(item => item !== name); + } + + // Set KeepAliveName + async function setKeepAliveName(keepAliveNames: string[] = []) { + keepAliveName.value = keepAliveNames; + } + + return { + keepAliveName, + addKeepAliveName, + removeKeepAliveName, + setKeepAliveName + }; +}); diff --git a/src/stores/modules/options.ts b/src/stores/modules/options.ts new file mode 100644 index 0000000..5f878b2 --- /dev/null +++ b/src/stores/modules/options.ts @@ -0,0 +1,47 @@ +import { defineStore } from 'pinia'; +import { getAllDict, getDictByCode } from '@/api/modules/system/dict'; +import piniaPersistConfig from '@/stores/helper/persist'; +import type { DictCustom } from '@/api/types/system/dict'; +import { ref } from 'vue'; + +export const useOptionsStore = defineStore( + 'options', + () => { + const isLoaded = ref(false); + const dictOptions = ref>({}); + + async function getAllDictList() { + if (isLoaded.value) return; + const { data } = await getAllDict(); + dictOptions.value = data; + isLoaded.value = true; + } + + function getDictOptions(type: string): DictCustom[] { + return dictOptions.value[type] || []; + } + + function setReloadOptions() { + isLoaded.value = false; + } + + async function getDictByCodes(typeCodes: string[]) { + const { data } = await getDictByCode({ typeCode: typeCodes }); + typeCodes.forEach(code => { + dictOptions.value[code] = data[code]; + }); + } + + return { + isLoaded, + dictOptions, + getAllDictList, + getDictOptions, + setReloadOptions, + getDictByCodes + }; + }, + { + persist: piniaPersistConfig('options') + } +); diff --git a/src/stores/modules/socket/channelHandlers.ts b/src/stores/modules/socket/channelHandlers.ts new file mode 100644 index 0000000..1972c53 --- /dev/null +++ b/src/stores/modules/socket/channelHandlers.ts @@ -0,0 +1,129 @@ +import mittBus from '@/utils/mittBus'; +import { + CHANNEL_DEFAULT, + CHANNEL_KICK_OFF, + SYNC_DICT, + SYNC_FRONTEND_CONF, + SYNC_PERMISSIONS, + UPGRADE_CHANNEL +} from '@/config/consts'; +import { LOGIN_URL } from '@/config'; +import router from '@/router'; +import { ElMessageBox } from 'element-plus'; +import { useUserStore } from '@/stores/modules/user'; +import { useAuthStore } from '@/stores/modules/auth'; +import { useConfigStore } from '@/stores/modules/config'; +import type { SocketMessage } from './messageParser'; +import { useOptionsStore } from '@/stores/modules/options'; + +/** + * createChannelHandlers 只从外部接收最小控制依赖:close + * 所有业务 store 自行在本文件内 useXxxStore 引入 + */ +export const createChannelHandlers = (options: { close: () => void }) => { + const { close } = options; + + const userStore = useUserStore(); + const authStore = useAuthStore(); + const configStore = useConfigStore(); + const optionStore = useOptionsStore(); + + const handleKickOff = () => { + close(); + userStore.clear(); + authStore.clear(); + ElMessageBox.alert('您已经被强制踢下线了!', '温馨提示', { + confirmButtonText: '确定', + type: 'warning', + callback: () => { + router.replace(LOGIN_URL); + } + }); + }; + + const handleSyncFrontendConf = async () => { + configStore.setReload(); + try { + console.log('[SOCKET] 同步前端配置...'); + await configStore.getConfig(); + } catch (err) { + console.error('配置更新失败:', err); + } + }; + + const handleSyncDictOptions = async () => { + console.log('[SOCKET] 同步字典...'); + optionStore.setReloadOptions(); + try { + await optionStore.getAllDictList(); + } catch (err) { + console.error('字典更新失败:', err); + } + }; + + const handleSyncPermissions = async () => { + console.log('[SOCKET] 同步权限...'); + try { + await authStore.getAuthButtonList(); + } catch (err) { + console.error('字典更新失败:', err); + } + }; + + /** + * 频道处理器映射: + * 后面业务增长时,只需要在这里增加 case 即可 + */ + const channelHandlers: Record void> = { + [CHANNEL_DEFAULT]: msg => { + // 默认频道简单广播,如果你不需要也可以改成空 + mittBus.emit(`socket.${CHANNEL_DEFAULT}`, msg.data); + }, + + [CHANNEL_KICK_OFF]: () => { + handleKickOff(); + }, + + [SYNC_FRONTEND_CONF]: () => { + void handleSyncFrontendConf(); + }, + + [SYNC_DICT]: () => { + void handleSyncDictOptions(); + }, + + [SYNC_PERMISSIONS]: () => { + void handleSyncPermissions(); + }, + [UPGRADE_CHANNEL]: msg => { + // 预留升级逻辑;同时广播事件,方便业务自行接管 + /* + close(); + userStore.clear(); + authStore.clear(); + ElMessageBox.alert(String(msg.data) + '!', '温馨提示', { + confirmButtonText: '确定', + type: 'warning', + callback: () => { + router.replace(LOGIN_URL); + } + }); + */ + mittBus.emit(`socket.${UPGRADE_CHANNEL}`, msg.data); + } + }; + + const handleUnknownChannel = (msg: SocketMessage) => { + // 未注册的频道统一走兜底广播 + mittBus.emit(`socket.${msg.channel}`, msg.data); + }; + + const dispatchChannel = (msg: SocketMessage) => { + const handler = channelHandlers[msg.channel] ?? handleUnknownChannel; + handler(msg); + }; + + return { + dispatchChannel + }; +}; diff --git a/src/stores/modules/socket/messageParser.ts b/src/stores/modules/socket/messageParser.ts new file mode 100644 index 0000000..0a0bab8 --- /dev/null +++ b/src/stores/modules/socket/messageParser.ts @@ -0,0 +1,37 @@ +import { CHANNEL_DEFAULT } from '@/config/consts'; + +export interface SocketMessage { + channel: string; + data?: T; +} + +/** + * 消息解析:兼容字符串 / 对象 / 非 JSON 格式 + */ +export const parseSocketMessage = (raw: unknown): SocketMessage | null => { + // 1. 若是字符串,尝试 JSON.parse + if (typeof raw === 'string') { + try { + const obj = JSON.parse(raw); + return parseSocketMessage(obj); + } catch (_err) { + console.warn('WebSocket 收到非 JSON 字符串消息:', _err); + // 兜底:以默认频道转发出去 + return { channel: CHANNEL_DEFAULT, data: raw }; + } + } + + // 2. 若已经是对象 + if (raw && typeof raw === 'object') { + const maybeMsg = raw as { channel?: unknown; data?: unknown }; + + const channel = typeof maybeMsg.channel === 'string' ? maybeMsg.channel : CHANNEL_DEFAULT; + const data = 'data' in maybeMsg ? maybeMsg.data : undefined; + + return { channel, data }; + } + + // 3. 其他类型(number、boolean、null、undefined) + console.warn('WebSocket 收到非对象类型消息:', raw); + return { channel: CHANNEL_DEFAULT, data: raw }; +}; diff --git a/src/stores/modules/socket/socket.ts b/src/stores/modules/socket/socket.ts new file mode 100644 index 0000000..d0779a7 --- /dev/null +++ b/src/stores/modules/socket/socket.ts @@ -0,0 +1,172 @@ +import { ref } from 'vue'; +import { defineStore } from 'pinia'; +// 用户获取Token等认证信息 +import { useUserStore } from '@/stores/modules/user'; +// 默认通道 +import { CHANNEL_DEFAULT } from '@/config/consts'; +//用于将字符串转换为规范的 SocketMessage 类型对象 +import { parseSocketMessage, type SocketMessage } from './messageParser'; +// 引入频道分发处理器,用于按频道派发消息 +import { createChannelHandlers } from './channelHandlers'; + +// 是否使用 socket:当环境变量存在且非空时启用 +const SOCKET_ENV_KEY = 'VITE_SOCKET_URL'; +// 检测环境变量中是否配置了url,依次决定是否启用Socket功能 +const useSocket = Object.prototype.hasOwnProperty.call(import.meta.env, SOCKET_ENV_KEY) && !!import.meta.env[SOCKET_ENV_KEY]; +// 如果启动了Socket功能,则动态构建完整的WebSocket的url实例 +const socketUrl = useSocket + ? (() => { + const url = new URL(import.meta.env[SOCKET_ENV_KEY] as string, window.location.origin); + url.protocol = url.protocol === 'https:' ? 'wss:' : 'ws:'; + return url; + })() + : null; + +const MAX_RECONNECT_COUNT = 10; +const BASE_RECONNECT_DELAY = 10_000; // 10s +const MAX_RECONNECT_DELAY = 30_000; // 30s +const FIXED_RECONNECT_DELAY = 60_000; // 60s + +export const useSocketStore = defineStore('socket', () => { + const socket = ref(null); + // 是否可以重连标志位 + const canReconnect = ref(true); + // 重连次数 + const reconnectCount = ref(0); + + const userStore = useUserStore(); + // 重置重连状态 + const resetReconnect = () => { + canReconnect.value = true; + reconnectCount.value = 0; + }; + // 计算下次重连需要等待的延迟时间 + const getReconnectDelay = () => { + if (reconnectCount.value < MAX_RECONNECT_COUNT) { + return Math.min(BASE_RECONNECT_DELAY * 2 ** reconnectCount.value, MAX_RECONNECT_DELAY); + } + return FIXED_RECONNECT_DELAY; + }; + // 建立连接时,触发的回调 + const _onOpen = () => { + // 重置重连状态 + resetReconnect(); + }; + // 处理断线自动重连的逻辑 + const handleReconnect = () => { + if (!useSocket || !socketUrl) return; + // 计算下次重连的延迟时间 + const delay = getReconnectDelay(); + // + setTimeout(() => { + reconnectCount.value++; + open(); + }, delay); + }; + // webSocket 连接关闭时,触发的回调 + const _onClose = () => { + socket.value = null; + if (canReconnect.value) { + // 尝试重连 + handleReconnect(); + } + }; + // 提供给外部调用的关闭方法 + const close = () => { + if (!useSocket) return; + + canReconnect.value = false; + reconnectCount.value = 0; + + if (!socket.value) return; + + try { + socket.value.close(); + } catch (err) { + console.warn('主动关闭 WebSocket 连接失败:', err); + } finally { + socket.value = null; + } + }; + + // 创建按频道分发消息的处理器,只需要把 close 传进去 + const { dispatchChannel } = createChannelHandlers({ close }); + // 接收服务端发来的消息时的回调 + const _onMessage = (event: MessageEvent) => { + const msg = parseSocketMessage(event.data); + + if (!msg) { + console.error('WebSocket 消息解析失败,忽略本次消息:', event.data); + return; + } + + try { + // 将解析后的规范消息派发给对应的频道处理器执行具体业务逻辑 + dispatchChannel(msg); + } catch (err) { + console.error('WebSocket 消息处理出错:', err, '消息内容:', msg); + } + + console.log('接收到的消息:', msg); + }; + + const _onError = (event: Event) => { + console.error('WebSocket 发生错误:', event); + // 如果需要全局通知,这里可以 mittBus.emit('socket.error', event); + }; + + const open = () => { + if (!useSocket || !socketUrl) return; + + // 已有 OPEN 连接则不重复创建 + if (socket.value && socket.value.readyState === WebSocket.OPEN) return; + + // 有旧连接但状态不是 CLOSED,先尝试关闭 + if (socket.value && socket.value.readyState !== WebSocket.CLOSED) { + try { + socket.value.close(); + } catch (err) { + console.warn('关闭旧 WebSocket 连接失败:', err); + } finally { + socket.value = null; + } + } + + if (!userStore.token) { + console.warn('当前没有 token,跳过 WebSocket 连接'); + return; + } + + const ws = new WebSocket(socketUrl, [userStore.token]); + ws.onopen = _onOpen; + ws.onmessage = _onMessage; + ws.onerror = _onError; + ws.onclose = _onClose; + + socket.value = ws; + }; + // 提供给外部的发送消息方法 + const send = (data: unknown, channel: string = CHANNEL_DEFAULT) => { + if (!socket.value || socket.value.readyState !== WebSocket.OPEN) { + console.warn('WebSocket 未连接或未就绪,发送失败'); + return; + } + + const payload = typeof data === 'object' && data !== null ? data : { data }; + + const msg: SocketMessage = { channel, data: payload }; + + try { + // 把对象序列化为 JSON 字符串,调用原生 send 发送 + socket.value.send(JSON.stringify(msg)); + } catch (err) { + console.error('WebSocket 发送消息失败:', err, msg); + } + }; + + return { + open, + send, + close + }; +}); diff --git a/src/stores/modules/tabs.ts b/src/stores/modules/tabs.ts new file mode 100644 index 0000000..1a17f05 --- /dev/null +++ b/src/stores/modules/tabs.ts @@ -0,0 +1,88 @@ +import router from '@/router'; +import { defineStore } from 'pinia'; +import { useKeepAliveStore } from '@/stores/modules/keepAlive'; +import piniaPersistConfig from '@/stores/helper/persist'; +import type { TabsMenuProps } from '@/stores/interface/tabs'; +import { ref } from 'vue'; + +const keepAliveStore = useKeepAliveStore(); + +export const useTabsStore = defineStore( + 'tabs', + () => { + const tabsMenuList = ref([]); + + // Add Tabs + async function addTabs(tabItem: TabsMenuProps) { + const index = tabsMenuList.value.findIndex(item => item.path === tabItem.path); + if (index === -1) { + tabsMenuList.value.push(tabItem); + } else { + tabsMenuList.value.splice(index, 1, tabItem); + } + if (!keepAliveStore.keepAliveName.includes(tabItem.name) && tabItem.isKeepAlive) { + keepAliveStore.addKeepAliveName(tabItem.name); + } + } + + // Remove Tabs + async function removeTabs(tabPath: string, isCurrent = true) { + const tabsMenus = tabsMenuList.value; + if (isCurrent) { + tabsMenus.forEach((item, index) => { + if (item.path !== tabPath) return; + const nextTab = tabsMenus[index + 1] || tabsMenus[index - 1]; + if (!nextTab) return; + router.push(nextTab.path); + }); + } + tabsMenuList.value = tabsMenus.filter(item => item.path !== tabPath); + } + + // Close Tabs On Side + async function closeTabsOnSide(path: string, type: string) { + const currentIndex = tabsMenuList.value.findIndex(item => item.path === path); + if (currentIndex !== -1) { + const range = type === 'left' ? [0, currentIndex] : [currentIndex + 1, tabsMenuList.value.length]; + tabsMenuList.value = tabsMenuList.value.filter((item, index) => { + return index < range[0] || index >= range[1] || !item.close; + }); + } + keepAliveStore.setKeepAliveName(tabsMenuList.value.map(item => item.name)); + } + + // Close MultipleTab + async function closeMultipleTab(tabsMenuValue?: string) { + tabsMenuList.value = tabsMenuList.value.filter(item => { + return item.path === tabsMenuValue || !item.close; + }); + keepAliveStore.setKeepAliveName(tabsMenuList.value.map(item => item.name)); + } + + // Set Tabs + async function setTabs(menus: TabsMenuProps[]) { + tabsMenuList.value = menus; + } + + // Set Tabs Title + async function setTabsTitle(title: string) { + const nowFullPath = location.hash.substring(1); + tabsMenuList.value.forEach(item => { + if (item.path === nowFullPath) item.title = title; + }); + } + + return { + tabsMenuList, + addTabs, + removeTabs, + closeTabsOnSide, + closeMultipleTab, + setTabs, + setTabsTitle + }; + }, + { + persist: piniaPersistConfig('tabs') + } +); diff --git a/src/stores/modules/user.ts b/src/stores/modules/user.ts new file mode 100644 index 0000000..e5b15a4 --- /dev/null +++ b/src/stores/modules/user.ts @@ -0,0 +1,40 @@ +import { defineStore } from 'pinia'; +import { ref } from 'vue'; +import piniaPersistConfig from '@/stores/helper/persist'; +import type { UserInfo } from '@/api/types/system/login'; + +export const useUserStore = defineStore( + 'user', + () => { + const token = ref(''); + const userInfo = ref({ + username: '' + }); + function setToken(tokenStr: string) { + token.value = tokenStr; + } + + // Set setUserInfo + function setUserInfo(info: UserInfo) { + userInfo.value = info; + } + + function clear() { + token.value = ''; + userInfo.value = { + username: '' + }; + } + + return { + token, + userInfo, + setToken, + setUserInfo, + clear + }; + }, + { + persist: piniaPersistConfig('user') + } +); diff --git a/src/stores/modules/video.ts b/src/stores/modules/video.ts new file mode 100644 index 0000000..c5e9d4b --- /dev/null +++ b/src/stores/modules/video.ts @@ -0,0 +1,50 @@ +import { defineStore } from 'pinia'; +import { ref } from 'vue'; + +export const useVideoStore = defineStore('video', () => { + const currentGrid = ref<1 | 4 | 9 | 16>(4); + const windowState = ref>({}); + const findFirstEmptyGridId = () => { + const size = Math.sqrt(currentGrid.value); + for (let r = 0; r < size; r++) { + for (let c = 0; c < size; c++) { + const gridId = `${r}-${c}`; + if (!windowState.value[gridId]) { + return gridId; + } + } + } + return null; // 全满了 + }; + // 判断某个摄像头是否在播放 + const isCameraPlaying=(cameraId: string | number)=>{ + return Object.values(windowState.value).some((camera:any)=>camera.id===cameraId) + } + // 清空所有播放状态 + const clearAllVideos=()=>{ + for (const key in windowState.value) { + delete windowState.value[key]; + } + } + const assignVideoToEmptyGrid = (cameraData: any) => { + // 如果已经在播放了,直接返回 'duplicate' + if (isCameraPlaying(cameraData.id)) { + return 'duplicate'; + } + const emptyId = findFirstEmptyGridId(); + if (emptyId) { + windowState.value[emptyId] = cameraData; + console.log('当前选中的状态列表',windowState.value) + return 'success'; + } + return 'full'; + }; + + return { + currentGrid, + windowState, + clearAllVideos, + isCameraPlaying, + assignVideoToEmptyGrid + }; +}); \ No newline at end of file diff --git a/src/styles/color.scss b/src/styles/color.scss new file mode 100644 index 0000000..928c98c --- /dev/null +++ b/src/styles/color.scss @@ -0,0 +1,3 @@ +body { + --div-bg-box: #f5f7fa; +} diff --git a/src/styles/common.scss b/src/styles/common.scss new file mode 100644 index 0000000..0091b9a --- /dev/null +++ b/src/styles/common.scss @@ -0,0 +1,131 @@ +/* flex */ +.flx-center { + display: flex; + align-items: center; + justify-content: center; +} + +.flx-justify-between { + display: flex; + align-items: center; + justify-content: space-between; +} + +.flx-align-center { + display: flex; + align-items: center; +} + +/* clearfix */ +.clearfix::after { + display: block; + height: 0; + overflow: hidden; + clear: both; + content: ''; +} + +/* 文字单行省略号 */ +.sle { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +/* 文字多行省略号 */ +.mle { + display: -webkit-box; + overflow: hidden; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; +} + +/* 文字多了自动換行 */ +.break-word { + word-break: break-all; + word-wrap: break-word; +} + +/* fade-transform */ +.fade-transform-leave-active, +.fade-transform-enter-active { + transition: all 0.2s; +} + +.fade-transform-enter-from { + opacity: 0; + transition: all 0.2s; + transform: translateX(-30px); +} + +.fade-transform-leave-to { + opacity: 0; + transition: all 0.2s; + transform: translateX(30px); +} + +/* breadcrumb-transform */ +.breadcrumb-enter-active { + transition: all 0.2s; +} + +.breadcrumb-enter-from, +.breadcrumb-leave-active { + opacity: 0; + transform: translateX(10px); +} + +/* scroll bar */ +::-webkit-scrollbar { + width: 6px; + height: 6px; +} + +::-webkit-scrollbar-thumb { + background-color: var(--el-border-color-darker); + border-radius: 20px; +} + +/* nprogress */ +#nprogress .bar { + background: var(--el-color-primary) !important; +} + +#nprogress .spinner-icon { + border-top-color: var(--el-color-primary) !important; + border-left-color: var(--el-color-primary) !important; +} + +#nprogress .peg { + box-shadow: + 0 0 10px var(--el-color-primary), + 0 0 5px var(--el-color-primary) !important; +} + +/* 外边距、内边距全局样式 */ +@for $i from 0 through 100 { + .mt#{$i} { + margin-top: #{$i}px !important; + } + .mr#{$i} { + margin-right: #{$i}px !important; + } + .mb#{$i} { + margin-bottom: #{$i}px !important; + } + .ml#{$i} { + margin-left: #{$i}px !important; + } + .pt#{$i} { + padding-top: #{$i}px !important; + } + .pr#{$i} { + padding-right: #{$i}px !important; + } + .pb#{$i} { + padding-bottom: #{$i}px !important; + } + .pl#{$i} { + padding-left: #{$i}px !important; + } +} diff --git a/src/styles/element-dark.scss b/src/styles/element-dark.scss new file mode 100644 index 0000000..5b373d0 --- /dev/null +++ b/src/styles/element-dark.scss @@ -0,0 +1,32 @@ +/* 自定义 element 暗黑模式 */ +html.dark { + /* wangEditor */ + --w-e-toolbar-color: #eeeeee; + --w-e-toolbar-bg-color: #141414; + --w-e-textarea-bg-color: #141414; + --w-e-textarea-color: #eeeeee; + --w-e-toolbar-active-bg-color: #464646; + --w-e-toolbar-border-color: var(--el-border-color-darker); + + .w-e-bar-item button:hover, + .w-e-menu-tooltip-v5::before { + color: #eeeeee; + } + + /* login */ + .login-container { + background-color: #191919 !important; + + .login-box { + background-color: rgb(0 0 0 / 80%) !important; + + .login-form { + box-shadow: rgb(255 255 255 / 12%) 0 2px 10px 2px !important; + + .logo-text { + color: var(--el-text-color-primary) !important; + } + } + } + } +} diff --git a/src/styles/element.scss b/src/styles/element.scss new file mode 100644 index 0000000..4bd02b3 --- /dev/null +++ b/src/styles/element.scss @@ -0,0 +1,311 @@ +/* 设置 notification、message 层级在 loading 之上 */ +.el-message, +.el-notification { + z-index: 4000 !important; +} + +/* el-alert */ +.el-alert { + border: 1px solid; +} + +/* 当前页面最大化 css */ +.main-maximize { + .aside-split, + .el-aside, + .el-header, + .el-footer, + .tabs-box { + display: none !important; + } +} + +/* mask image */ +.mask-image { + padding-right: 50px; + mask-image: linear-gradient(90deg, #000000 0%, #000000 calc(100% - 50px), transparent); +} + +/* custom card */ +.card { + box-sizing: border-box; + padding: 20px; + overflow-x: hidden; + background-color: var(--el-bg-color); + border: 1px solid var(--el-border-color-light); + border-radius: 6px; + box-shadow: 0 0 12px rgb(0 0 0 / 5%); +} + +/* ProTable 不需要 card 样式(在组件内使用 ProTable 会使用到) */ +.no-card { + .card { + padding: 0; + background-color: transparent; + border: none; + border-radius: 0; + box-shadow: none; + } + + .table-search { + padding: 18px 0 0 !important; + margin-bottom: 0 !important; + } +} + +/* content-box (常用内容盒子) */ +.content-box { + display: flex; + flex-direction: column; + align-items: center; + height: 100%; + + .text { + margin: 20px 0 30px; + font-size: 23px; + font-weight: bold; + color: var(--el-text-color-regular); + } + + .el-descriptions { + width: 100%; + padding: 40px 0 0; + + .el-descriptions__title { + font-size: 18px; + } + + .el-descriptions__label { + width: 200px; + } + } +} + +/* main-box (树形表格 DeptTree 页面会使用,左右布局 flex) */ +.main-box { + display: flex; + width: 100%; + height: 100%; + + .table-box { + // 这里减去的是 DeptTree 组件宽度 + width: calc(100% - 230px); + } +} + +/* proTable */ +.table-box, +.table-main { + display: flex; + flex: 1; + flex-direction: column; + width: 100%; + height: 100%; + + // table-search 表格搜索样式 + .table-search { + padding: 18px 18px 0; + margin-bottom: 10px; + + .el-form { + .el-form-item__content > * { + width: 100%; + } + + // 去除时间选择器上下 padding + .el-range-editor.el-input__wrapper { + padding: 0 10px; + } + } + + .operation { + display: flex; + align-items: center; + justify-content: flex-end; + margin-bottom: 18px; + } + } + + // 表格 header 样式 + .table-header { + .header-button-lf { + float: left; + } + + .header-button-ri { + float: right; + } + + .el-button { + margin-bottom: 15px; + } + } + + // el-table 表格样式 + .el-table { + flex: 1; + + // 修复 safari 浏览器表格错位 https://github.com/HalseySpicy/Geeker-Admin/issues/83 + table { + width: 100%; + } + + .el-table__header th { + height: 45px; + font-size: 15px; + font-weight: bold; + color: var(--el-text-color-primary); + background: var(--el-fill-color-light); + } + + .el-table__row { + height: 45px; + font-size: 14px; + + .move { + cursor: move; + + .el-icon { + cursor: move; + } + } + } + + // 设置 el-table 中 header 文字不换行,并省略 + .el-table__header .el-table__cell > .cell { + white-space: nowrap; + } + + // 解决表格数据为空时样式不居中问题(仅在element-plus中) + .el-table__empty-block { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + + .table-empty { + line-height: 30px; + } + } + + &.is-scrolling-none { + th.el-table-fixed-column--left, + th.el-table-fixed-column--right { + background-color: var(--el-fill-color-light); + } + } + + // table 中 image 图片样式 + .table-image { + width: 50px; + height: 50px; + border-radius: 50%; + } + } + + // 表格 pagination 样式 + .el-pagination { + display: flex; + justify-content: flex-end; + margin-top: 20px; + } +} + +.el-dialog { + .table-box, + .table-main { + .el-table { + .el-table__empty-block { + position: relative; + transform: translateX(-50%); + margin: 40px 0; + } + } + } +} + +/* el-table 组件大小 */ +.el-table--small { + .el-table__header th { + height: 40px !important; + font-size: 14px !important; + } + + .el-table__row { + height: 40px !important; + font-size: 13px !important; + } +} + +.el-table--large { + .el-table__header th { + height: 50px !important; + font-size: 16px !important; + } + + .el-table__row { + height: 50px !important; + font-size: 15px !important; + } +} + +/* el-drawer */ +.el-drawer { + .el-drawer__header { + padding: 16px 20px; + margin-bottom: 0; + border-bottom: 1px solid var(--el-border-color-lighter); + + span { + font-size: 17px; + line-height: 17px; + color: var(--el-text-color-primary) !important; + } + } + + .el-drawer__footer { + border-top: 1px solid var(--el-border-color-lighter); + } + + // select 样式 + .el-select { + width: 100%; + } + + // drawer-form 中存在两列 form-item 样式 + .drawer-multiColumn-form { + display: flex; + flex-wrap: wrap; + + .el-form-item { + width: 47%; + + &:nth-child(2n-1) { + margin-right: 5%; + } + } + } +} + +/* el-dialog */ +.el-dialog { + .el-dialog__header { + padding: 15px 20px; + margin-bottom: 20px; + border-bottom: 1px solid var(--el-border-color-lighter); + + .el-dialog__title { + font-size: 17px; + } + } +} + +.el-upload-list.is-disabled { + .el-upload { + display: none; + } +} + +.form__label { + font-weight: 700; +} diff --git a/src/styles/element/index.scss b/src/styles/element/index.scss new file mode 100644 index 0000000..96d9d17 --- /dev/null +++ b/src/styles/element/index.scss @@ -0,0 +1,22 @@ +@forward 'element-plus/theme-chalk/src/common/var.scss' with ( + $colors: ( + 'primary': ( + 'base': #009688 + ), + 'success': ( + 'base': #52c41a + ), + 'warning': ( + 'base': #faad14 + ), + 'danger': ( + 'base': #ff4d4f + ), + 'error': ( + 'base': #ff4d4f + ) + ) +); + +// 引入暗黑模式 +@use 'element-plus/theme-chalk/src/dark/css-vars.scss'; diff --git a/src/styles/fonts/DIN.otf b/src/styles/fonts/DIN.otf new file mode 100644 index 0000000..3296d1e Binary files /dev/null and b/src/styles/fonts/DIN.otf differ diff --git a/src/styles/fonts/MetroDF.ttf b/src/styles/fonts/MetroDF.ttf new file mode 100644 index 0000000..9d31af4 Binary files /dev/null and b/src/styles/fonts/MetroDF.ttf differ diff --git a/src/styles/fonts/YouSheBiaoTiHei.ttf b/src/styles/fonts/YouSheBiaoTiHei.ttf new file mode 100644 index 0000000..3729151 Binary files /dev/null and b/src/styles/fonts/YouSheBiaoTiHei.ttf differ diff --git a/src/styles/fonts/font.scss b/src/styles/fonts/font.scss new file mode 100644 index 0000000..c5d17e5 --- /dev/null +++ b/src/styles/fonts/font.scss @@ -0,0 +1,14 @@ +@font-face { + font-family: YouSheBiaoTiHei; + src: url('./YouSheBiaoTiHei.ttf'); +} + +@font-face { + font-family: MetroDF; + src: url('./MetroDF.ttf'); +} + +@font-face { + font-family: DIN; + src: url('./DIN.otf'); +} diff --git a/src/styles/iconfont/iconfont.scss b/src/styles/iconfont/iconfont.scss new file mode 100644 index 0000000..44d4066 --- /dev/null +++ b/src/styles/iconfont/iconfont.scss @@ -0,0 +1,60 @@ +@font-face { + font-family: iconfont; /* Project id 2667653 */ + src: url('iconfont.ttf?t=1691032190261') format('truetype'); +} + +.iconfont { + font-family: iconfont !important; + font-size: 20px; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + cursor: pointer; +} + +.icon-yiwen::before { + font-size: 15px; + content: '\e693'; +} + +.icon-xiala::before { + content: '\e62b'; +} + +.icon-tuichu::before { + content: '\e645'; +} + +.icon-xiaoxi::before { + font-size: 21.2px; + content: '\e61f'; +} + +.icon-zhuti::before { + font-size: 22.4px; + content: '\e638'; +} + +.icon-sousuo::before { + content: '\e611'; +} + +.icon-contentright::before { + content: '\e8c9'; +} + +.icon-contentleft::before { + content: '\e8ca'; +} + +.icon-fangda::before { + content: '\e826'; +} + +.icon-suoxiao::before { + content: '\e641'; +} + +.icon-zhongyingwen::before { + content: '\e8cb'; +} diff --git a/src/styles/iconfont/iconfont.ttf b/src/styles/iconfont/iconfont.ttf new file mode 100644 index 0000000..99e4571 Binary files /dev/null and b/src/styles/iconfont/iconfont.ttf differ diff --git a/src/styles/index.scss b/src/styles/index.scss new file mode 100644 index 0000000..5b8a4b3 --- /dev/null +++ b/src/styles/index.scss @@ -0,0 +1,15 @@ +// reset style sheet +// color css +@use '@/styles/color'; +@use '@/styles/reset'; +// CSS common style sheet +@use '@/styles/common'; +// iconfont css +@use '@/styles/iconfont/iconfont'; +// font css +@use '@/styles/fonts/font'; +// custom element dark css +@use '@/styles/element-dark'; +// custom element css +@use '@/styles/element'; +@use '@/styles/jodit-format'; diff --git a/src/styles/jodit-format.scss b/src/styles/jodit-format.scss new file mode 100644 index 0000000..e4e083c --- /dev/null +++ b/src/styles/jodit-format.scss @@ -0,0 +1,16 @@ +/* Jodit 富文本编辑器内容格式化样式,处理v-html回显时的内容溢出问题 */ +.rich-content, +.jodit-wysiwyg, +.jodit-wysiwyg pre, +.jodit-wysiwyg code, +.jodit-wysiwyg table { + max-width: 100%; + box-sizing: border-box; + word-break: break-all; /* 英文与长单词强制断行 */ + overflow-wrap: break-word; /* 超长内容自动断行 */ +} +.rich-content pre, +.rich-content code { + white-space: pre-wrap; /* 保持格式又可以多行显示 */ + overflow-x: auto; /* 超长内容出现滚动条 */ +} diff --git a/src/styles/reset.scss b/src/styles/reset.scss new file mode 100644 index 0000000..637ae35 --- /dev/null +++ b/src/styles/reset.scss @@ -0,0 +1,19 @@ +/* Reset style sheet */ +html, +body, +#app { + width: 100%; + height: 100%; + padding: 0; + margin: 0; +} + +/* 解决 h1 标签在 webkit 内核浏览器中文字大小失效问题 */ +:-webkit-any(article, aside, nav, section) h1 { + font-size: 2em; +} + +/* 解决图片超出容器问题 */ +img { + max-width: 100%; +} diff --git a/src/styles/theme/aside.ts b/src/styles/theme/aside.ts new file mode 100644 index 0000000..a573875 --- /dev/null +++ b/src/styles/theme/aside.ts @@ -0,0 +1,16 @@ +import type { ThemeType } from '@/hooks/types'; + +export const asideTheme: Record = { + light: { + '--el-aside-logo-text-color': '#303133', + '--el-aside-border-color': '#e4e7ed' + }, + inverted: { + '--el-aside-logo-text-color': '#dadada', + '--el-aside-border-color': '#414243' + }, + dark: { + '--el-aside-logo-text-color': '#dadada', + '--el-aside-border-color': '#414243' + } +}; diff --git a/src/styles/theme/header.ts b/src/styles/theme/header.ts new file mode 100644 index 0000000..68a1479 --- /dev/null +++ b/src/styles/theme/header.ts @@ -0,0 +1,25 @@ +import type { ThemeType } from '@/hooks/types'; + +export const headerTheme: Record = { + light: { + '--el-header-logo-text-color': '#303133', + '--el-header-bg-color': '#ffffff', + '--el-header-text-color': '#303133', + '--el-header-text-color-regular': '#606266', + '--el-header-border-color': '#e4e7ed' + }, + inverted: { + '--el-header-logo-text-color': '#dadada', + '--el-header-bg-color': '#191a20', + '--el-header-text-color': '#e5eaf3', + '--el-header-text-color-regular': '#cfd3dc', + '--el-header-border-color': '#414243' + }, + dark: { + '--el-header-logo-text-color': '#dadada', + '--el-header-bg-color': '#141414', + '--el-header-text-color': '#e5eaf3', + '--el-header-text-color-regular': '#cfd3dc', + '--el-header-border-color': '#414243' + } +}; diff --git a/src/styles/theme/menu.ts b/src/styles/theme/menu.ts new file mode 100644 index 0000000..efa9101 --- /dev/null +++ b/src/styles/theme/menu.ts @@ -0,0 +1,31 @@ +import type { ThemeType } from '@/hooks/types'; + +export const menuTheme: Record = { + light: { + '--el-menu-bg-color': '#ffffff', + '--el-menu-hover-bg-color': '#cccccc', + '--el-menu-active-bg-color': 'var(--el-color-primary-light-9)', + '--el-menu-text-color': '#333333', + '--el-menu-active-color': 'var(--el-color-primary)', + '--el-menu-hover-text-color': '#333333', + '--el-menu-horizontal-sub-item-height': '50px' + }, + inverted: { + '--el-menu-bg-color': '#191a20', + '--el-menu-hover-bg-color': '#000000', + '--el-menu-active-bg-color': '#000000', + '--el-menu-text-color': '#bdbdc0', + '--el-menu-active-color': '#ffffff', + '--el-menu-hover-text-color': '#ffffff', + '--el-menu-horizontal-sub-item-height': '50px' + }, + dark: { + '--el-menu-bg-color': '#141414', + '--el-menu-hover-bg-color': '#000000', + '--el-menu-active-bg-color': '#000000', + '--el-menu-text-color': '#bdbdc0', + '--el-menu-active-color': '#ffffff', + '--el-menu-hover-text-color': '#ffffff', + '--el-menu-horizontal-sub-item-height': '50px' + } +}; diff --git a/src/styles/var.scss b/src/styles/var.scss new file mode 100644 index 0000000..bdc1cb2 --- /dev/null +++ b/src/styles/var.scss @@ -0,0 +1,2 @@ +/* global css variable */ +$primary-color: var(--el-color-primary); diff --git a/src/typings/global.d.ts b/src/typings/global.d.ts new file mode 100644 index 0000000..822d98c --- /dev/null +++ b/src/typings/global.d.ts @@ -0,0 +1,61 @@ +declare namespace Menu { + interface MenuOptions { + id: string; + pid: string; + path: string; + name: string; + sort: number; + menuTypeCd: string; + component?: string | (() => Promise); + redirect?: string; + permissions?: string; + meta: MetaProps; + children?: MenuOptions[]; + } + + interface MetaProps { + icon: string; + title: string; + isLink?: string; + isHidden: string; + isFull: string; + isAffix: string; + isKeepAlive: string; + useDataScope: string; + } +} + +declare namespace View { + interface DefaultParams { + // Dialog Title + title: string; + // Dialog 中数据信息 + row: { [key: string]: any }; + // Dialog中调用接口API + api: ((params: any) => Promise) | undefined; + // 刷新列表数据使用 + getTableList?: (() => Promise) | undefined; + // 是否是新增 + isAdd?: boolean; + // 其他附加信息 + [key: string]: any; + } +} + +declare namespace File { + type ImageMimeType = + | 'image/apng' + | 'image/bmp' + | 'image/gif' + | 'image/jpeg' + | 'image/pjpeg' + | 'image/png' + | 'image/svg+xml' + | 'image/tiff' + | 'image/webp' + | 'image/x-icon'; + + type ExcelMimeType = 'application/vnd.ms-excel' | 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'; + + type ExcelFileType = '.xlsx' | '.xls'; +} diff --git a/src/typings/window.d.ts b/src/typings/window.d.ts new file mode 100644 index 0000000..1582726 --- /dev/null +++ b/src/typings/window.d.ts @@ -0,0 +1,8 @@ +declare global { + interface Navigator { + msSaveOrOpenBlob: (blob: Blob, fileName: string) => void; + browserLanguage: string; + } +} + +export {}; diff --git a/src/utils/ZLMRTCClient.ts b/src/utils/ZLMRTCClient.ts new file mode 100644 index 0000000..26674c4 --- /dev/null +++ b/src/utils/ZLMRTCClient.ts @@ -0,0 +1,9473 @@ +var ZLMRTCClient = (function (exports) { + 'use strict'; + + const Events$1 = { + WEBRTC_NOT_SUPPORT: 'WEBRTC_NOT_SUPPORT', + WEBRTC_ICE_CANDIDATE_ERROR: 'WEBRTC_ICE_CANDIDATE_ERROR', + WEBRTC_OFFER_ANWSER_EXCHANGE_FAILED: 'WEBRTC_OFFER_ANWSER_EXCHANGE_FAILED', + WEBRTC_ON_REMOTE_STREAMS: 'WEBRTC_ON_REMOTE_STREAMS', + WEBRTC_ON_LOCAL_STREAM: 'WEBRTC_ON_LOCAL_STREAM', + WEBRTC_ON_CONNECTION_STATE_CHANGE: 'WEBRTC_ON_CONNECTION_STATE_CHANGE', + WEBRTC_ON_DATA_CHANNEL_OPEN: 'WEBRTC_ON_DATA_CHANNEL_OPEN', + WEBRTC_ON_DATA_CHANNEL_CLOSE: 'WEBRTC_ON_DATA_CHANNEL_CLOSE', + WEBRTC_ON_DATA_CHANNEL_ERR: 'WEBRTC_ON_DATA_CHANNEL_ERR', + WEBRTC_ON_DATA_CHANNEL_MSG: 'WEBRTC_ON_DATA_CHANNEL_MSG', + CAPTURE_STREAM_FAILED: 'CAPTURE_STREAM_FAILED' + }; + + const VERSION$1 = '1.1.2'; + const BUILD_DATE = 'Fri Dec 20 2024 19:12:10 GMT+0800 (China Standard Time)'; + + // Copyright (C) <2018> Intel Corporation + // + // SPDX-License-Identifier: Apache-2.0 + + // eslint-disable-next-line require-jsdoc + function isFirefox() { + return window.navigator.userAgent.match('Firefox') !== null; + } + // eslint-disable-next-line require-jsdoc + function isChrome() { + return window.navigator.userAgent.match('Chrome') !== null; + } + // eslint-disable-next-line require-jsdoc + function isEdge() { + return window.navigator.userAgent.match(/Edge\/(\d+).(\d+)$/) !== null; + } + + // Copyright (C) <2018> Intel Corporation + + /** + * @class AudioSourceInfo + * @classDesc Source info about an audio track. Values: 'mic', 'screen-cast', 'file', 'mixed'. + * @memberOf Owt.Base + * @readonly + * @enum {string} + */ + const AudioSourceInfo = { + MIC: 'mic', + SCREENCAST: 'screen-cast', + FILE: 'file', + MIXED: 'mixed' + }; + + /** + * @class VideoSourceInfo + * @classDesc Source info about a video track. Values: 'camera', 'screen-cast', 'file', 'mixed'. + * @memberOf Owt.Base + * @readonly + * @enum {string} + */ + const VideoSourceInfo = { + CAMERA: 'camera', + SCREENCAST: 'screen-cast', + FILE: 'file', + MIXED: 'mixed' + }; + + /** + * @class TrackKind + * @classDesc Kind of a track. Values: 'audio' for audio track, 'video' for video track, 'av' for both audio and video tracks. + * @memberOf Owt.Base + * @readonly + * @enum {string} + */ + const TrackKind = { + /** + * Audio tracks. + * @type string + */ + AUDIO: 'audio', + /** + * Video tracks. + * @type string + */ + VIDEO: 'video', + /** + * Both audio and video tracks. + * @type string + */ + AUDIO_AND_VIDEO: 'av' + }; + /** + * @class Resolution + * @memberOf Owt.Base + * @classDesc The Resolution defines the size of a rectangle. + * @constructor + * @param {number} width + * @param {number} height + */ + class Resolution { + // eslint-disable-next-line require-jsdoc + constructor(width, height) { + /** + * @member {number} width + * @instance + * @memberof Owt.Base.Resolution + */ + this.width = width; + /** + * @member {number} height + * @instance + * @memberof Owt.Base.Resolution + */ + this.height = height; + } + } + + /* + * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. + */ + + let logDisabled_ = true; + let deprecationWarnings_ = true; + + /** + * Extract browser version out of the provided user agent string. + * + * @param {!string} uastring userAgent string. + * @param {!string} expr Regular expression used as match criteria. + * @param {!number} pos position in the version string to be returned. + * @return {!number} browser version. + */ + function extractVersion(uastring, expr, pos) { + const match = uastring.match(expr); + return match && match.length >= pos && parseInt(match[pos], 10); + } + + // Wraps the peerconnection event eventNameToWrap in a function + // which returns the modified event object (or false to prevent + // the event). + function wrapPeerConnectionEvent(window, eventNameToWrap, wrapper) { + if (!window.RTCPeerConnection) { + return; + } + const proto = window.RTCPeerConnection.prototype; + const nativeAddEventListener = proto.addEventListener; + proto.addEventListener = function(nativeEventName, cb) { + if (nativeEventName !== eventNameToWrap) { + return nativeAddEventListener.apply(this, arguments); + } + const wrappedCallback = (e) => { + const modifiedEvent = wrapper(e); + if (modifiedEvent) { + if (cb.handleEvent) { + cb.handleEvent(modifiedEvent); + } else { + cb(modifiedEvent); + } + } + }; + this._eventMap = this._eventMap || {}; + if (!this._eventMap[eventNameToWrap]) { + this._eventMap[eventNameToWrap] = new Map(); + } + this._eventMap[eventNameToWrap].set(cb, wrappedCallback); + return nativeAddEventListener.apply(this, [nativeEventName, + wrappedCallback]); + }; + + const nativeRemoveEventListener = proto.removeEventListener; + proto.removeEventListener = function(nativeEventName, cb) { + if (nativeEventName !== eventNameToWrap || !this._eventMap + || !this._eventMap[eventNameToWrap]) { + return nativeRemoveEventListener.apply(this, arguments); + } + if (!this._eventMap[eventNameToWrap].has(cb)) { + return nativeRemoveEventListener.apply(this, arguments); + } + const unwrappedCb = this._eventMap[eventNameToWrap].get(cb); + this._eventMap[eventNameToWrap].delete(cb); + if (this._eventMap[eventNameToWrap].size === 0) { + delete this._eventMap[eventNameToWrap]; + } + if (Object.keys(this._eventMap).length === 0) { + delete this._eventMap; + } + return nativeRemoveEventListener.apply(this, [nativeEventName, + unwrappedCb]); + }; + + Object.defineProperty(proto, 'on' + eventNameToWrap, { + get() { + return this['_on' + eventNameToWrap]; + }, + set(cb) { + if (this['_on' + eventNameToWrap]) { + this.removeEventListener(eventNameToWrap, + this['_on' + eventNameToWrap]); + delete this['_on' + eventNameToWrap]; + } + if (cb) { + this.addEventListener(eventNameToWrap, + this['_on' + eventNameToWrap] = cb); + } + }, + enumerable: true, + configurable: true + }); + } + + function disableLog(bool) { + if (typeof bool !== 'boolean') { + return new Error('Argument type: ' + typeof bool + + '. Please use a boolean.'); + } + logDisabled_ = bool; + return (bool) ? 'adapter.js logging disabled' : + 'adapter.js logging enabled'; + } + + /** + * Disable or enable deprecation warnings + * @param {!boolean} bool set to true to disable warnings. + */ + function disableWarnings(bool) { + if (typeof bool !== 'boolean') { + return new Error('Argument type: ' + typeof bool + + '. Please use a boolean.'); + } + deprecationWarnings_ = !bool; + return 'adapter.js deprecation warnings ' + (bool ? 'disabled' : 'enabled'); + } + + function log$1() { + if (typeof window === 'object') { + if (logDisabled_) { + return; + } + if (typeof console !== 'undefined' && typeof console.log === 'function') { + console.log.apply(console, arguments); + } + } + } + + /** + * Shows a deprecation warning suggesting the modern and spec-compatible API. + */ + function deprecated(oldMethod, newMethod) { + if (!deprecationWarnings_) { + return; + } + console.warn(oldMethod + ' is deprecated, please use ' + newMethod + + ' instead.'); + } + + /** + * Browser detector. + * + * @return {object} result containing browser and version + * properties. + */ + function detectBrowser(window) { + // Returned result object. + const result = {browser: null, version: null}; + + // Fail early if it's not a browser + if (typeof window === 'undefined' || !window.navigator) { + result.browser = 'Not a browser.'; + return result; + } + + const {navigator} = window; + + if (navigator.mozGetUserMedia) { // Firefox. + result.browser = 'firefox'; + result.version = extractVersion(navigator.userAgent, + /Firefox\/(\d+)\./, 1); + } else if (navigator.webkitGetUserMedia || + (window.isSecureContext === false && window.webkitRTCPeerConnection && + !window.RTCIceGatherer)) { + // Chrome, Chromium, Webview, Opera. + // Version matches Chrome/WebRTC version. + // Chrome 74 removed webkitGetUserMedia on http as well so we need the + // more complicated fallback to webkitRTCPeerConnection. + result.browser = 'chrome'; + result.version = extractVersion(navigator.userAgent, + /Chrom(e|ium)\/(\d+)\./, 2); + } else if (navigator.mediaDevices && + navigator.userAgent.match(/Edge\/(\d+).(\d+)$/)) { // Edge. + result.browser = 'edge'; + result.version = extractVersion(navigator.userAgent, + /Edge\/(\d+).(\d+)$/, 2); + } else if (window.RTCPeerConnection && + navigator.userAgent.match(/AppleWebKit\/(\d+)\./)) { // Safari. + result.browser = 'safari'; + result.version = extractVersion(navigator.userAgent, + /AppleWebKit\/(\d+)\./, 1); + result.supportsUnifiedPlan = window.RTCRtpTransceiver && + 'currentDirection' in window.RTCRtpTransceiver.prototype; + } else { // Default fallthrough: not supported. + result.browser = 'Not a supported browser.'; + return result; + } + + return result; + } + + /** + * Checks if something is an object. + * + * @param {*} val The something you want to check. + * @return true if val is an object, false otherwise. + */ + function isObject$1(val) { + return Object.prototype.toString.call(val) === '[object Object]'; + } + + /** + * Remove all empty objects and undefined values + * from a nested object -- an enhanced and vanilla version + * of Lodash's `compact`. + */ + function compactObject(data) { + if (!isObject$1(data)) { + return data; + } + + return Object.keys(data).reduce(function(accumulator, key) { + const isObj = isObject$1(data[key]); + const value = isObj ? compactObject(data[key]) : data[key]; + const isEmptyObject = isObj && !Object.keys(value).length; + if (value === undefined || isEmptyObject) { + return accumulator; + } + return Object.assign(accumulator, {[key]: value}); + }, {}); + } + + /* iterates the stats graph recursively. */ + function walkStats(stats, base, resultSet) { + if (!base || resultSet.has(base.id)) { + return; + } + resultSet.set(base.id, base); + Object.keys(base).forEach(name => { + if (name.endsWith('Id')) { + walkStats(stats, stats.get(base[name]), resultSet); + } else if (name.endsWith('Ids')) { + base[name].forEach(id => { + walkStats(stats, stats.get(id), resultSet); + }); + } + }); + } + + /* filter getStats for a sender/receiver track. */ + function filterStats(result, track, outbound) { + const streamStatsType = outbound ? 'outbound-rtp' : 'inbound-rtp'; + const filteredResult = new Map(); + if (track === null) { + return filteredResult; + } + const trackStats = []; + result.forEach(value => { + if (value.type === 'track' && + value.trackIdentifier === track.id) { + trackStats.push(value); + } + }); + trackStats.forEach(trackStat => { + result.forEach(stats => { + if (stats.type === streamStatsType && stats.trackId === trackStat.id) { + walkStats(result, stats, filteredResult); + } + }); + }); + return filteredResult; + } + + /* + * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. + */ + const logging = log$1; + + function shimGetUserMedia$3(window, browserDetails) { + const navigator = window && window.navigator; + + if (!navigator.mediaDevices) { + return; + } + + const constraintsToChrome_ = function(c) { + if (typeof c !== 'object' || c.mandatory || c.optional) { + return c; + } + const cc = {}; + Object.keys(c).forEach(key => { + if (key === 'require' || key === 'advanced' || key === 'mediaSource') { + return; + } + const r = (typeof c[key] === 'object') ? c[key] : {ideal: c[key]}; + if (r.exact !== undefined && typeof r.exact === 'number') { + r.min = r.max = r.exact; + } + const oldname_ = function(prefix, name) { + if (prefix) { + return prefix + name.charAt(0).toUpperCase() + name.slice(1); + } + return (name === 'deviceId') ? 'sourceId' : name; + }; + if (r.ideal !== undefined) { + cc.optional = cc.optional || []; + let oc = {}; + if (typeof r.ideal === 'number') { + oc[oldname_('min', key)] = r.ideal; + cc.optional.push(oc); + oc = {}; + oc[oldname_('max', key)] = r.ideal; + cc.optional.push(oc); + } else { + oc[oldname_('', key)] = r.ideal; + cc.optional.push(oc); + } + } + if (r.exact !== undefined && typeof r.exact !== 'number') { + cc.mandatory = cc.mandatory || {}; + cc.mandatory[oldname_('', key)] = r.exact; + } else { + ['min', 'max'].forEach(mix => { + if (r[mix] !== undefined) { + cc.mandatory = cc.mandatory || {}; + cc.mandatory[oldname_(mix, key)] = r[mix]; + } + }); + } + }); + if (c.advanced) { + cc.optional = (cc.optional || []).concat(c.advanced); + } + return cc; + }; + + const shimConstraints_ = function(constraints, func) { + if (browserDetails.version >= 61) { + return func(constraints); + } + constraints = JSON.parse(JSON.stringify(constraints)); + if (constraints && typeof constraints.audio === 'object') { + const remap = function(obj, a, b) { + if (a in obj && !(b in obj)) { + obj[b] = obj[a]; + delete obj[a]; + } + }; + constraints = JSON.parse(JSON.stringify(constraints)); + remap(constraints.audio, 'autoGainControl', 'googAutoGainControl'); + remap(constraints.audio, 'noiseSuppression', 'googNoiseSuppression'); + constraints.audio = constraintsToChrome_(constraints.audio); + } + if (constraints && typeof constraints.video === 'object') { + // Shim facingMode for mobile & surface pro. + let face = constraints.video.facingMode; + face = face && ((typeof face === 'object') ? face : {ideal: face}); + const getSupportedFacingModeLies = browserDetails.version < 66; + + if ((face && (face.exact === 'user' || face.exact === 'environment' || + face.ideal === 'user' || face.ideal === 'environment')) && + !(navigator.mediaDevices.getSupportedConstraints && + navigator.mediaDevices.getSupportedConstraints().facingMode && + !getSupportedFacingModeLies)) { + delete constraints.video.facingMode; + let matches; + if (face.exact === 'environment' || face.ideal === 'environment') { + matches = ['back', 'rear']; + } else if (face.exact === 'user' || face.ideal === 'user') { + matches = ['front']; + } + if (matches) { + // Look for matches in label, or use last cam for back (typical). + return navigator.mediaDevices.enumerateDevices() + .then(devices => { + devices = devices.filter(d => d.kind === 'videoinput'); + let dev = devices.find(d => matches.some(match => + d.label.toLowerCase().includes(match))); + if (!dev && devices.length && matches.includes('back')) { + dev = devices[devices.length - 1]; // more likely the back cam + } + if (dev) { + constraints.video.deviceId = face.exact ? {exact: dev.deviceId} : + {ideal: dev.deviceId}; + } + constraints.video = constraintsToChrome_(constraints.video); + logging('chrome: ' + JSON.stringify(constraints)); + return func(constraints); + }); + } + } + constraints.video = constraintsToChrome_(constraints.video); + } + logging('chrome: ' + JSON.stringify(constraints)); + return func(constraints); + }; + + const shimError_ = function(e) { + if (browserDetails.version >= 64) { + return e; + } + return { + name: { + PermissionDeniedError: 'NotAllowedError', + PermissionDismissedError: 'NotAllowedError', + InvalidStateError: 'NotAllowedError', + DevicesNotFoundError: 'NotFoundError', + ConstraintNotSatisfiedError: 'OverconstrainedError', + TrackStartError: 'NotReadableError', + MediaDeviceFailedDueToShutdown: 'NotAllowedError', + MediaDeviceKillSwitchOn: 'NotAllowedError', + TabCaptureError: 'AbortError', + ScreenCaptureError: 'AbortError', + DeviceCaptureError: 'AbortError' + }[e.name] || e.name, + message: e.message, + constraint: e.constraint || e.constraintName, + toString() { + return this.name + (this.message && ': ') + this.message; + } + }; + }; + + const getUserMedia_ = function(constraints, onSuccess, onError) { + shimConstraints_(constraints, c => { + navigator.webkitGetUserMedia(c, onSuccess, e => { + if (onError) { + onError(shimError_(e)); + } + }); + }); + }; + navigator.getUserMedia = getUserMedia_.bind(navigator); + + // Even though Chrome 45 has navigator.mediaDevices and a getUserMedia + // function which returns a Promise, it does not accept spec-style + // constraints. + if (navigator.mediaDevices.getUserMedia) { + const origGetUserMedia = navigator.mediaDevices.getUserMedia. + bind(navigator.mediaDevices); + navigator.mediaDevices.getUserMedia = function(cs) { + return shimConstraints_(cs, c => origGetUserMedia(c).then(stream => { + if (c.audio && !stream.getAudioTracks().length || + c.video && !stream.getVideoTracks().length) { + stream.getTracks().forEach(track => { + track.stop(); + }); + throw new DOMException('', 'NotFoundError'); + } + return stream; + }, e => Promise.reject(shimError_(e)))); + }; + } + } + + /* + * Copyright (c) 2018 The adapter.js project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. + */ + function shimGetDisplayMedia$2(window, getSourceId) { + if (window.navigator.mediaDevices && + 'getDisplayMedia' in window.navigator.mediaDevices) { + return; + } + if (!(window.navigator.mediaDevices)) { + return; + } + // getSourceId is a function that returns a promise resolving with + // the sourceId of the screen/window/tab to be shared. + if (typeof getSourceId !== 'function') { + console.error('shimGetDisplayMedia: getSourceId argument is not ' + + 'a function'); + return; + } + window.navigator.mediaDevices.getDisplayMedia = + function getDisplayMedia(constraints) { + return getSourceId(constraints) + .then(sourceId => { + const widthSpecified = constraints.video && constraints.video.width; + const heightSpecified = constraints.video && + constraints.video.height; + const frameRateSpecified = constraints.video && + constraints.video.frameRate; + constraints.video = { + mandatory: { + chromeMediaSource: 'desktop', + chromeMediaSourceId: sourceId, + maxFrameRate: frameRateSpecified || 3 + } + }; + if (widthSpecified) { + constraints.video.mandatory.maxWidth = widthSpecified; + } + if (heightSpecified) { + constraints.video.mandatory.maxHeight = heightSpecified; + } + return window.navigator.mediaDevices.getUserMedia(constraints); + }); + }; + } + + /* + * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. + */ + + function shimMediaStream(window) { + window.MediaStream = window.MediaStream || window.webkitMediaStream; + } + + function shimOnTrack$1(window) { + if (typeof window === 'object' && window.RTCPeerConnection && !('ontrack' in + window.RTCPeerConnection.prototype)) { + Object.defineProperty(window.RTCPeerConnection.prototype, 'ontrack', { + get() { + return this._ontrack; + }, + set(f) { + if (this._ontrack) { + this.removeEventListener('track', this._ontrack); + } + this.addEventListener('track', this._ontrack = f); + }, + enumerable: true, + configurable: true + }); + const origSetRemoteDescription = + window.RTCPeerConnection.prototype.setRemoteDescription; + window.RTCPeerConnection.prototype.setRemoteDescription = + function setRemoteDescription() { + if (!this._ontrackpoly) { + this._ontrackpoly = (e) => { + // onaddstream does not fire when a track is added to an existing + // stream. But stream.onaddtrack is implemented so we use that. + e.stream.addEventListener('addtrack', te => { + let receiver; + if (window.RTCPeerConnection.prototype.getReceivers) { + receiver = this.getReceivers() + .find(r => r.track && r.track.id === te.track.id); + } else { + receiver = {track: te.track}; + } + + const event = new Event('track'); + event.track = te.track; + event.receiver = receiver; + event.transceiver = {receiver}; + event.streams = [e.stream]; + this.dispatchEvent(event); + }); + e.stream.getTracks().forEach(track => { + let receiver; + if (window.RTCPeerConnection.prototype.getReceivers) { + receiver = this.getReceivers() + .find(r => r.track && r.track.id === track.id); + } else { + receiver = {track}; + } + const event = new Event('track'); + event.track = track; + event.receiver = receiver; + event.transceiver = {receiver}; + event.streams = [e.stream]; + this.dispatchEvent(event); + }); + }; + this.addEventListener('addstream', this._ontrackpoly); + } + return origSetRemoteDescription.apply(this, arguments); + }; + } else { + // even if RTCRtpTransceiver is in window, it is only used and + // emitted in unified-plan. Unfortunately this means we need + // to unconditionally wrap the event. + wrapPeerConnectionEvent(window, 'track', e => { + if (!e.transceiver) { + Object.defineProperty(e, 'transceiver', + {value: {receiver: e.receiver}}); + } + return e; + }); + } + } + + function shimGetSendersWithDtmf(window) { + // Overrides addTrack/removeTrack, depends on shimAddTrackRemoveTrack. + if (typeof window === 'object' && window.RTCPeerConnection && + !('getSenders' in window.RTCPeerConnection.prototype) && + 'createDTMFSender' in window.RTCPeerConnection.prototype) { + const shimSenderWithDtmf = function(pc, track) { + return { + track, + get dtmf() { + if (this._dtmf === undefined) { + if (track.kind === 'audio') { + this._dtmf = pc.createDTMFSender(track); + } else { + this._dtmf = null; + } + } + return this._dtmf; + }, + _pc: pc + }; + }; + + // augment addTrack when getSenders is not available. + if (!window.RTCPeerConnection.prototype.getSenders) { + window.RTCPeerConnection.prototype.getSenders = function getSenders() { + this._senders = this._senders || []; + return this._senders.slice(); // return a copy of the internal state. + }; + const origAddTrack = window.RTCPeerConnection.prototype.addTrack; + window.RTCPeerConnection.prototype.addTrack = + function addTrack(track, stream) { + let sender = origAddTrack.apply(this, arguments); + if (!sender) { + sender = shimSenderWithDtmf(this, track); + this._senders.push(sender); + } + return sender; + }; + + const origRemoveTrack = window.RTCPeerConnection.prototype.removeTrack; + window.RTCPeerConnection.prototype.removeTrack = + function removeTrack(sender) { + origRemoveTrack.apply(this, arguments); + const idx = this._senders.indexOf(sender); + if (idx !== -1) { + this._senders.splice(idx, 1); + } + }; + } + const origAddStream = window.RTCPeerConnection.prototype.addStream; + window.RTCPeerConnection.prototype.addStream = function addStream(stream) { + this._senders = this._senders || []; + origAddStream.apply(this, [stream]); + stream.getTracks().forEach(track => { + this._senders.push(shimSenderWithDtmf(this, track)); + }); + }; + + const origRemoveStream = window.RTCPeerConnection.prototype.removeStream; + window.RTCPeerConnection.prototype.removeStream = + function removeStream(stream) { + this._senders = this._senders || []; + origRemoveStream.apply(this, [stream]); + + stream.getTracks().forEach(track => { + const sender = this._senders.find(s => s.track === track); + if (sender) { // remove sender + this._senders.splice(this._senders.indexOf(sender), 1); + } + }); + }; + } else if (typeof window === 'object' && window.RTCPeerConnection && + 'getSenders' in window.RTCPeerConnection.prototype && + 'createDTMFSender' in window.RTCPeerConnection.prototype && + window.RTCRtpSender && + !('dtmf' in window.RTCRtpSender.prototype)) { + const origGetSenders = window.RTCPeerConnection.prototype.getSenders; + window.RTCPeerConnection.prototype.getSenders = function getSenders() { + const senders = origGetSenders.apply(this, []); + senders.forEach(sender => sender._pc = this); + return senders; + }; + + Object.defineProperty(window.RTCRtpSender.prototype, 'dtmf', { + get() { + if (this._dtmf === undefined) { + if (this.track.kind === 'audio') { + this._dtmf = this._pc.createDTMFSender(this.track); + } else { + this._dtmf = null; + } + } + return this._dtmf; + } + }); + } + } + + function shimGetStats(window) { + if (!window.RTCPeerConnection) { + return; + } + + const origGetStats = window.RTCPeerConnection.prototype.getStats; + window.RTCPeerConnection.prototype.getStats = function getStats() { + const [selector, onSucc, onErr] = arguments; + + // If selector is a function then we are in the old style stats so just + // pass back the original getStats format to avoid breaking old users. + if (arguments.length > 0 && typeof selector === 'function') { + return origGetStats.apply(this, arguments); + } + + // When spec-style getStats is supported, return those when called with + // either no arguments or the selector argument is null. + if (origGetStats.length === 0 && (arguments.length === 0 || + typeof selector !== 'function')) { + return origGetStats.apply(this, []); + } + + const fixChromeStats_ = function(response) { + const standardReport = {}; + const reports = response.result(); + reports.forEach(report => { + const standardStats = { + id: report.id, + timestamp: report.timestamp, + type: { + localcandidate: 'local-candidate', + remotecandidate: 'remote-candidate' + }[report.type] || report.type + }; + report.names().forEach(name => { + standardStats[name] = report.stat(name); + }); + standardReport[standardStats.id] = standardStats; + }); + + return standardReport; + }; + + // shim getStats with maplike support + const makeMapStats = function(stats) { + return new Map(Object.keys(stats).map(key => [key, stats[key]])); + }; + + if (arguments.length >= 2) { + const successCallbackWrapper_ = function(response) { + onSucc(makeMapStats(fixChromeStats_(response))); + }; + + return origGetStats.apply(this, [successCallbackWrapper_, + selector]); + } + + // promise-support + return new Promise((resolve, reject) => { + origGetStats.apply(this, [ + function(response) { + resolve(makeMapStats(fixChromeStats_(response))); + }, reject]); + }).then(onSucc, onErr); + }; + } + + function shimSenderReceiverGetStats(window) { + if (!(typeof window === 'object' && window.RTCPeerConnection && + window.RTCRtpSender && window.RTCRtpReceiver)) { + return; + } + + // shim sender stats. + if (!('getStats' in window.RTCRtpSender.prototype)) { + const origGetSenders = window.RTCPeerConnection.prototype.getSenders; + if (origGetSenders) { + window.RTCPeerConnection.prototype.getSenders = function getSenders() { + const senders = origGetSenders.apply(this, []); + senders.forEach(sender => sender._pc = this); + return senders; + }; + } + + const origAddTrack = window.RTCPeerConnection.prototype.addTrack; + if (origAddTrack) { + window.RTCPeerConnection.prototype.addTrack = function addTrack() { + const sender = origAddTrack.apply(this, arguments); + sender._pc = this; + return sender; + }; + } + window.RTCRtpSender.prototype.getStats = function getStats() { + const sender = this; + return this._pc.getStats().then(result => + /* Note: this will include stats of all senders that + * send a track with the same id as sender.track as + * it is not possible to identify the RTCRtpSender. + */ + filterStats(result, sender.track, true)); + }; + } + + // shim receiver stats. + if (!('getStats' in window.RTCRtpReceiver.prototype)) { + const origGetReceivers = window.RTCPeerConnection.prototype.getReceivers; + if (origGetReceivers) { + window.RTCPeerConnection.prototype.getReceivers = + function getReceivers() { + const receivers = origGetReceivers.apply(this, []); + receivers.forEach(receiver => receiver._pc = this); + return receivers; + }; + } + wrapPeerConnectionEvent(window, 'track', e => { + e.receiver._pc = e.srcElement; + return e; + }); + window.RTCRtpReceiver.prototype.getStats = function getStats() { + const receiver = this; + return this._pc.getStats().then(result => + filterStats(result, receiver.track, false)); + }; + } + + if (!('getStats' in window.RTCRtpSender.prototype && + 'getStats' in window.RTCRtpReceiver.prototype)) { + return; + } + + // shim RTCPeerConnection.getStats(track). + const origGetStats = window.RTCPeerConnection.prototype.getStats; + window.RTCPeerConnection.prototype.getStats = function getStats() { + if (arguments.length > 0 && + arguments[0] instanceof window.MediaStreamTrack) { + const track = arguments[0]; + let sender; + let receiver; + let err; + this.getSenders().forEach(s => { + if (s.track === track) { + if (sender) { + err = true; + } else { + sender = s; + } + } + }); + this.getReceivers().forEach(r => { + if (r.track === track) { + if (receiver) { + err = true; + } else { + receiver = r; + } + } + return r.track === track; + }); + if (err || (sender && receiver)) { + return Promise.reject(new DOMException( + 'There are more than one sender or receiver for the track.', + 'InvalidAccessError')); + } else if (sender) { + return sender.getStats(); + } else if (receiver) { + return receiver.getStats(); + } + return Promise.reject(new DOMException( + 'There is no sender or receiver for the track.', + 'InvalidAccessError')); + } + return origGetStats.apply(this, arguments); + }; + } + + function shimAddTrackRemoveTrackWithNative(window) { + // shim addTrack/removeTrack with native variants in order to make + // the interactions with legacy getLocalStreams behave as in other browsers. + // Keeps a mapping stream.id => [stream, rtpsenders...] + window.RTCPeerConnection.prototype.getLocalStreams = + function getLocalStreams() { + this._shimmedLocalStreams = this._shimmedLocalStreams || {}; + return Object.keys(this._shimmedLocalStreams) + .map(streamId => this._shimmedLocalStreams[streamId][0]); + }; + + const origAddTrack = window.RTCPeerConnection.prototype.addTrack; + window.RTCPeerConnection.prototype.addTrack = + function addTrack(track, stream) { + if (!stream) { + return origAddTrack.apply(this, arguments); + } + this._shimmedLocalStreams = this._shimmedLocalStreams || {}; + + const sender = origAddTrack.apply(this, arguments); + if (!this._shimmedLocalStreams[stream.id]) { + this._shimmedLocalStreams[stream.id] = [stream, sender]; + } else if (this._shimmedLocalStreams[stream.id].indexOf(sender) === -1) { + this._shimmedLocalStreams[stream.id].push(sender); + } + return sender; + }; + + const origAddStream = window.RTCPeerConnection.prototype.addStream; + window.RTCPeerConnection.prototype.addStream = function addStream(stream) { + this._shimmedLocalStreams = this._shimmedLocalStreams || {}; + + stream.getTracks().forEach(track => { + const alreadyExists = this.getSenders().find(s => s.track === track); + if (alreadyExists) { + throw new DOMException('Track already exists.', + 'InvalidAccessError'); + } + }); + const existingSenders = this.getSenders(); + origAddStream.apply(this, arguments); + const newSenders = this.getSenders() + .filter(newSender => existingSenders.indexOf(newSender) === -1); + this._shimmedLocalStreams[stream.id] = [stream].concat(newSenders); + }; + + const origRemoveStream = window.RTCPeerConnection.prototype.removeStream; + window.RTCPeerConnection.prototype.removeStream = + function removeStream(stream) { + this._shimmedLocalStreams = this._shimmedLocalStreams || {}; + delete this._shimmedLocalStreams[stream.id]; + return origRemoveStream.apply(this, arguments); + }; + + const origRemoveTrack = window.RTCPeerConnection.prototype.removeTrack; + window.RTCPeerConnection.prototype.removeTrack = + function removeTrack(sender) { + this._shimmedLocalStreams = this._shimmedLocalStreams || {}; + if (sender) { + Object.keys(this._shimmedLocalStreams).forEach(streamId => { + const idx = this._shimmedLocalStreams[streamId].indexOf(sender); + if (idx !== -1) { + this._shimmedLocalStreams[streamId].splice(idx, 1); + } + if (this._shimmedLocalStreams[streamId].length === 1) { + delete this._shimmedLocalStreams[streamId]; + } + }); + } + return origRemoveTrack.apply(this, arguments); + }; + } + + function shimAddTrackRemoveTrack(window, browserDetails) { + if (!window.RTCPeerConnection) { + return; + } + // shim addTrack and removeTrack. + if (window.RTCPeerConnection.prototype.addTrack && + browserDetails.version >= 65) { + return shimAddTrackRemoveTrackWithNative(window); + } + + // also shim pc.getLocalStreams when addTrack is shimmed + // to return the original streams. + const origGetLocalStreams = window.RTCPeerConnection.prototype + .getLocalStreams; + window.RTCPeerConnection.prototype.getLocalStreams = + function getLocalStreams() { + const nativeStreams = origGetLocalStreams.apply(this); + this._reverseStreams = this._reverseStreams || {}; + return nativeStreams.map(stream => this._reverseStreams[stream.id]); + }; + + const origAddStream = window.RTCPeerConnection.prototype.addStream; + window.RTCPeerConnection.prototype.addStream = function addStream(stream) { + this._streams = this._streams || {}; + this._reverseStreams = this._reverseStreams || {}; + + stream.getTracks().forEach(track => { + const alreadyExists = this.getSenders().find(s => s.track === track); + if (alreadyExists) { + throw new DOMException('Track already exists.', + 'InvalidAccessError'); + } + }); + // Add identity mapping for consistency with addTrack. + // Unless this is being used with a stream from addTrack. + if (!this._reverseStreams[stream.id]) { + const newStream = new window.MediaStream(stream.getTracks()); + this._streams[stream.id] = newStream; + this._reverseStreams[newStream.id] = stream; + stream = newStream; + } + origAddStream.apply(this, [stream]); + }; + + const origRemoveStream = window.RTCPeerConnection.prototype.removeStream; + window.RTCPeerConnection.prototype.removeStream = + function removeStream(stream) { + this._streams = this._streams || {}; + this._reverseStreams = this._reverseStreams || {}; + + origRemoveStream.apply(this, [(this._streams[stream.id] || stream)]); + delete this._reverseStreams[(this._streams[stream.id] ? + this._streams[stream.id].id : stream.id)]; + delete this._streams[stream.id]; + }; + + window.RTCPeerConnection.prototype.addTrack = + function addTrack(track, stream) { + if (this.signalingState === 'closed') { + throw new DOMException( + 'The RTCPeerConnection\'s signalingState is \'closed\'.', + 'InvalidStateError'); + } + const streams = [].slice.call(arguments, 1); + if (streams.length !== 1 || + !streams[0].getTracks().find(t => t === track)) { + // this is not fully correct but all we can manage without + // [[associated MediaStreams]] internal slot. + throw new DOMException( + 'The adapter.js addTrack polyfill only supports a single ' + + ' stream which is associated with the specified track.', + 'NotSupportedError'); + } + + const alreadyExists = this.getSenders().find(s => s.track === track); + if (alreadyExists) { + throw new DOMException('Track already exists.', + 'InvalidAccessError'); + } + + this._streams = this._streams || {}; + this._reverseStreams = this._reverseStreams || {}; + const oldStream = this._streams[stream.id]; + if (oldStream) { + // this is using odd Chrome behaviour, use with caution: + // https://bugs.chromium.org/p/webrtc/issues/detail?id=7815 + // Note: we rely on the high-level addTrack/dtmf shim to + // create the sender with a dtmf sender. + oldStream.addTrack(track); + + // Trigger ONN async. + Promise.resolve().then(() => { + this.dispatchEvent(new Event('negotiationneeded')); + }); + } else { + const newStream = new window.MediaStream([track]); + this._streams[stream.id] = newStream; + this._reverseStreams[newStream.id] = stream; + this.addStream(newStream); + } + return this.getSenders().find(s => s.track === track); + }; + + // replace the internal stream id with the external one and + // vice versa. + function replaceInternalStreamId(pc, description) { + let sdp = description.sdp; + Object.keys(pc._reverseStreams || []).forEach(internalId => { + const externalStream = pc._reverseStreams[internalId]; + const internalStream = pc._streams[externalStream.id]; + sdp = sdp.replace(new RegExp(internalStream.id, 'g'), + externalStream.id); + }); + return new RTCSessionDescription({ + type: description.type, + sdp + }); + } + function replaceExternalStreamId(pc, description) { + let sdp = description.sdp; + Object.keys(pc._reverseStreams || []).forEach(internalId => { + const externalStream = pc._reverseStreams[internalId]; + const internalStream = pc._streams[externalStream.id]; + sdp = sdp.replace(new RegExp(externalStream.id, 'g'), + internalStream.id); + }); + return new RTCSessionDescription({ + type: description.type, + sdp + }); + } + ['createOffer', 'createAnswer'].forEach(function(method) { + const nativeMethod = window.RTCPeerConnection.prototype[method]; + const methodObj = {[method]() { + const args = arguments; + const isLegacyCall = arguments.length && + typeof arguments[0] === 'function'; + if (isLegacyCall) { + return nativeMethod.apply(this, [ + (description) => { + const desc = replaceInternalStreamId(this, description); + args[0].apply(null, [desc]); + }, + (err) => { + if (args[1]) { + args[1].apply(null, err); + } + }, arguments[2] + ]); + } + return nativeMethod.apply(this, arguments) + .then(description => replaceInternalStreamId(this, description)); + }}; + window.RTCPeerConnection.prototype[method] = methodObj[method]; + }); + + const origSetLocalDescription = + window.RTCPeerConnection.prototype.setLocalDescription; + window.RTCPeerConnection.prototype.setLocalDescription = + function setLocalDescription() { + if (!arguments.length || !arguments[0].type) { + return origSetLocalDescription.apply(this, arguments); + } + arguments[0] = replaceExternalStreamId(this, arguments[0]); + return origSetLocalDescription.apply(this, arguments); + }; + + // TODO: mangle getStats: https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamstats-streamidentifier + + const origLocalDescription = Object.getOwnPropertyDescriptor( + window.RTCPeerConnection.prototype, 'localDescription'); + Object.defineProperty(window.RTCPeerConnection.prototype, + 'localDescription', { + get() { + const description = origLocalDescription.get.apply(this); + if (description.type === '') { + return description; + } + return replaceInternalStreamId(this, description); + } + }); + + window.RTCPeerConnection.prototype.removeTrack = + function removeTrack(sender) { + if (this.signalingState === 'closed') { + throw new DOMException( + 'The RTCPeerConnection\'s signalingState is \'closed\'.', + 'InvalidStateError'); + } + // We can not yet check for sender instanceof RTCRtpSender + // since we shim RTPSender. So we check if sender._pc is set. + if (!sender._pc) { + throw new DOMException('Argument 1 of RTCPeerConnection.removeTrack ' + + 'does not implement interface RTCRtpSender.', 'TypeError'); + } + const isLocal = sender._pc === this; + if (!isLocal) { + throw new DOMException('Sender was not created by this connection.', + 'InvalidAccessError'); + } + + // Search for the native stream the senders track belongs to. + this._streams = this._streams || {}; + let stream; + Object.keys(this._streams).forEach(streamid => { + const hasTrack = this._streams[streamid].getTracks() + .find(track => sender.track === track); + if (hasTrack) { + stream = this._streams[streamid]; + } + }); + + if (stream) { + if (stream.getTracks().length === 1) { + // if this is the last track of the stream, remove the stream. This + // takes care of any shimmed _senders. + this.removeStream(this._reverseStreams[stream.id]); + } else { + // relying on the same odd chrome behaviour as above. + stream.removeTrack(sender.track); + } + this.dispatchEvent(new Event('negotiationneeded')); + } + }; + } + + function shimPeerConnection$2(window, browserDetails) { + if (!window.RTCPeerConnection && window.webkitRTCPeerConnection) { + // very basic support for old versions. + window.RTCPeerConnection = window.webkitRTCPeerConnection; + } + if (!window.RTCPeerConnection) { + return; + } + + // shim implicit creation of RTCSessionDescription/RTCIceCandidate + if (browserDetails.version < 53) { + ['setLocalDescription', 'setRemoteDescription', 'addIceCandidate'] + .forEach(function(method) { + const nativeMethod = window.RTCPeerConnection.prototype[method]; + const methodObj = {[method]() { + arguments[0] = new ((method === 'addIceCandidate') ? + window.RTCIceCandidate : + window.RTCSessionDescription)(arguments[0]); + return nativeMethod.apply(this, arguments); + }}; + window.RTCPeerConnection.prototype[method] = methodObj[method]; + }); + } + } + + // Attempt to fix ONN in plan-b mode. + function fixNegotiationNeeded(window, browserDetails) { + wrapPeerConnectionEvent(window, 'negotiationneeded', e => { + const pc = e.target; + if (browserDetails.version < 72 || (pc.getConfiguration && + pc.getConfiguration().sdpSemantics === 'plan-b')) { + if (pc.signalingState !== 'stable') { + return; + } + } + return e; + }); + } + + var chromeShim = /*#__PURE__*/Object.freeze({ + __proto__: null, + shimMediaStream: shimMediaStream, + shimOnTrack: shimOnTrack$1, + shimGetSendersWithDtmf: shimGetSendersWithDtmf, + shimGetStats: shimGetStats, + shimSenderReceiverGetStats: shimSenderReceiverGetStats, + shimAddTrackRemoveTrackWithNative: shimAddTrackRemoveTrackWithNative, + shimAddTrackRemoveTrack: shimAddTrackRemoveTrack, + shimPeerConnection: shimPeerConnection$2, + fixNegotiationNeeded: fixNegotiationNeeded, + shimGetUserMedia: shimGetUserMedia$3, + shimGetDisplayMedia: shimGetDisplayMedia$2 + }); + + /* + * Copyright (c) 2018 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. + */ + // Edge does not like + // 1) stun: filtered after 14393 unless ?transport=udp is present + // 2) turn: that does not have all of turn:host:port?transport=udp + // 3) turn: with ipv6 addresses + // 4) turn: occurring muliple times + function filterIceServers$1(iceServers, edgeVersion) { + let hasTurn = false; + iceServers = JSON.parse(JSON.stringify(iceServers)); + return iceServers.filter(server => { + if (server && (server.urls || server.url)) { + let urls = server.urls || server.url; + if (server.url && !server.urls) { + deprecated('RTCIceServer.url', 'RTCIceServer.urls'); + } + const isString = typeof urls === 'string'; + if (isString) { + urls = [urls]; + } + urls = urls.filter(url => { + // filter STUN unconditionally. + if (url.indexOf('stun:') === 0) { + return false; + } + + const validTurn = url.startsWith('turn') && + !url.startsWith('turn:[') && + url.includes('transport=udp'); + if (validTurn && !hasTurn) { + hasTurn = true; + return true; + } + return validTurn && !hasTurn; + }); + + delete server.url; + server.urls = isString ? urls[0] : urls; + return !!urls.length; + } + }); + } + + var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + + function createCommonjsModule(fn) { + var module = { exports: {} }; + return fn(module, module.exports), module.exports; + } + + function commonjsRequire (path) { + throw new Error('Could not dynamically require "' + path + '". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.'); + } + + /* eslint-env node */ + + var sdp = createCommonjsModule(function (module) { + + // SDP helpers. + var SDPUtils = {}; + + // Generate an alphanumeric identifier for cname or mids. + // TODO: use UUIDs instead? https://gist.github.com/jed/982883 + SDPUtils.generateIdentifier = function() { + return Math.random().toString(36).substr(2, 10); + }; + + // The RTCP CNAME used by all peerconnections from the same JS. + SDPUtils.localCName = SDPUtils.generateIdentifier(); + + // Splits SDP into lines, dealing with both CRLF and LF. + SDPUtils.splitLines = function(blob) { + return blob.trim().split('\n').map(function(line) { + return line.trim(); + }); + }; + // Splits SDP into sessionpart and mediasections. Ensures CRLF. + SDPUtils.splitSections = function(blob) { + var parts = blob.split('\nm='); + return parts.map(function(part, index) { + return (index > 0 ? 'm=' + part : part).trim() + '\r\n'; + }); + }; + + // returns the session description. + SDPUtils.getDescription = function(blob) { + var sections = SDPUtils.splitSections(blob); + return sections && sections[0]; + }; + + // returns the individual media sections. + SDPUtils.getMediaSections = function(blob) { + var sections = SDPUtils.splitSections(blob); + sections.shift(); + return sections; + }; + + // Returns lines that start with a certain prefix. + SDPUtils.matchPrefix = function(blob, prefix) { + return SDPUtils.splitLines(blob).filter(function(line) { + return line.indexOf(prefix) === 0; + }); + }; + + // Parses an ICE candidate line. Sample input: + // candidate:702786350 2 udp 41819902 8.8.8.8 60769 typ relay raddr 8.8.8.8 + // rport 55996" + SDPUtils.parseCandidate = function(line) { + var parts; + // Parse both variants. + if (line.indexOf('a=candidate:') === 0) { + parts = line.substring(12).split(' '); + } else { + parts = line.substring(10).split(' '); + } + + var candidate = { + foundation: parts[0], + component: parseInt(parts[1], 10), + protocol: parts[2].toLowerCase(), + priority: parseInt(parts[3], 10), + ip: parts[4], + address: parts[4], // address is an alias for ip. + port: parseInt(parts[5], 10), + // skip parts[6] == 'typ' + type: parts[7] + }; + + for (var i = 8; i < parts.length; i += 2) { + switch (parts[i]) { + case 'raddr': + candidate.relatedAddress = parts[i + 1]; + break; + case 'rport': + candidate.relatedPort = parseInt(parts[i + 1], 10); + break; + case 'tcptype': + candidate.tcpType = parts[i + 1]; + break; + case 'ufrag': + candidate.ufrag = parts[i + 1]; // for backward compability. + candidate.usernameFragment = parts[i + 1]; + break; + default: // extension handling, in particular ufrag + candidate[parts[i]] = parts[i + 1]; + break; + } + } + return candidate; + }; + + // Translates a candidate object into SDP candidate attribute. + SDPUtils.writeCandidate = function(candidate) { + var sdp = []; + sdp.push(candidate.foundation); + sdp.push(candidate.component); + sdp.push(candidate.protocol.toUpperCase()); + sdp.push(candidate.priority); + sdp.push(candidate.address || candidate.ip); + sdp.push(candidate.port); + + var type = candidate.type; + sdp.push('typ'); + sdp.push(type); + if (type !== 'host' && candidate.relatedAddress && + candidate.relatedPort) { + sdp.push('raddr'); + sdp.push(candidate.relatedAddress); + sdp.push('rport'); + sdp.push(candidate.relatedPort); + } + if (candidate.tcpType && candidate.protocol.toLowerCase() === 'tcp') { + sdp.push('tcptype'); + sdp.push(candidate.tcpType); + } + if (candidate.usernameFragment || candidate.ufrag) { + sdp.push('ufrag'); + sdp.push(candidate.usernameFragment || candidate.ufrag); + } + return 'candidate:' + sdp.join(' '); + }; + + // Parses an ice-options line, returns an array of option tags. + // a=ice-options:foo bar + SDPUtils.parseIceOptions = function(line) { + return line.substr(14).split(' '); + }; + + // Parses an rtpmap line, returns RTCRtpCoddecParameters. Sample input: + // a=rtpmap:111 opus/48000/2 + SDPUtils.parseRtpMap = function(line) { + var parts = line.substr(9).split(' '); + var parsed = { + payloadType: parseInt(parts.shift(), 10) // was: id + }; + + parts = parts[0].split('/'); + + parsed.name = parts[0]; + parsed.clockRate = parseInt(parts[1], 10); // was: clockrate + parsed.channels = parts.length === 3 ? parseInt(parts[2], 10) : 1; + // legacy alias, got renamed back to channels in ORTC. + parsed.numChannels = parsed.channels; + return parsed; + }; + + // Generate an a=rtpmap line from RTCRtpCodecCapability or + // RTCRtpCodecParameters. + SDPUtils.writeRtpMap = function(codec) { + var pt = codec.payloadType; + if (codec.preferredPayloadType !== undefined) { + pt = codec.preferredPayloadType; + } + var channels = codec.channels || codec.numChannels || 1; + return 'a=rtpmap:' + pt + ' ' + codec.name + '/' + codec.clockRate + + (channels !== 1 ? '/' + channels : '') + '\r\n'; + }; + + // Parses an a=extmap line (headerextension from RFC 5285). Sample input: + // a=extmap:2 urn:ietf:params:rtp-hdrext:toffset + // a=extmap:2/sendonly urn:ietf:params:rtp-hdrext:toffset + SDPUtils.parseExtmap = function(line) { + var parts = line.substr(9).split(' '); + return { + id: parseInt(parts[0], 10), + direction: parts[0].indexOf('/') > 0 ? parts[0].split('/')[1] : 'sendrecv', + uri: parts[1] + }; + }; + + // Generates a=extmap line from RTCRtpHeaderExtensionParameters or + // RTCRtpHeaderExtension. + SDPUtils.writeExtmap = function(headerExtension) { + return 'a=extmap:' + (headerExtension.id || headerExtension.preferredId) + + (headerExtension.direction && headerExtension.direction !== 'sendrecv' + ? '/' + headerExtension.direction + : '') + + ' ' + headerExtension.uri + '\r\n'; + }; + + // Parses an ftmp line, returns dictionary. Sample input: + // a=fmtp:96 vbr=on;cng=on + // Also deals with vbr=on; cng=on + SDPUtils.parseFmtp = function(line) { + var parsed = {}; + var kv; + var parts = line.substr(line.indexOf(' ') + 1).split(';'); + for (var j = 0; j < parts.length; j++) { + kv = parts[j].trim().split('='); + parsed[kv[0].trim()] = kv[1]; + } + return parsed; + }; + + // Generates an a=ftmp line from RTCRtpCodecCapability or RTCRtpCodecParameters. + SDPUtils.writeFmtp = function(codec) { + var line = ''; + var pt = codec.payloadType; + if (codec.preferredPayloadType !== undefined) { + pt = codec.preferredPayloadType; + } + if (codec.parameters && Object.keys(codec.parameters).length) { + var params = []; + Object.keys(codec.parameters).forEach(function(param) { + if (codec.parameters[param]) { + params.push(param + '=' + codec.parameters[param]); + } else { + params.push(param); + } + }); + line += 'a=fmtp:' + pt + ' ' + params.join(';') + '\r\n'; + } + return line; + }; + + // Parses an rtcp-fb line, returns RTCPRtcpFeedback object. Sample input: + // a=rtcp-fb:98 nack rpsi + SDPUtils.parseRtcpFb = function(line) { + var parts = line.substr(line.indexOf(' ') + 1).split(' '); + return { + type: parts.shift(), + parameter: parts.join(' ') + }; + }; + // Generate a=rtcp-fb lines from RTCRtpCodecCapability or RTCRtpCodecParameters. + SDPUtils.writeRtcpFb = function(codec) { + var lines = ''; + var pt = codec.payloadType; + if (codec.preferredPayloadType !== undefined) { + pt = codec.preferredPayloadType; + } + if (codec.rtcpFeedback && codec.rtcpFeedback.length) { + // FIXME: special handling for trr-int? + codec.rtcpFeedback.forEach(function(fb) { + lines += 'a=rtcp-fb:' + pt + ' ' + fb.type + + (fb.parameter && fb.parameter.length ? ' ' + fb.parameter : '') + + '\r\n'; + }); + } + return lines; + }; + + // Parses an RFC 5576 ssrc media attribute. Sample input: + // a=ssrc:3735928559 cname:something + SDPUtils.parseSsrcMedia = function(line) { + var sp = line.indexOf(' '); + var parts = { + ssrc: parseInt(line.substr(7, sp - 7), 10) + }; + var colon = line.indexOf(':', sp); + if (colon > -1) { + parts.attribute = line.substr(sp + 1, colon - sp - 1); + parts.value = line.substr(colon + 1); + } else { + parts.attribute = line.substr(sp + 1); + } + return parts; + }; + + SDPUtils.parseSsrcGroup = function(line) { + var parts = line.substr(13).split(' '); + return { + semantics: parts.shift(), + ssrcs: parts.map(function(ssrc) { + return parseInt(ssrc, 10); + }) + }; + }; + + // Extracts the MID (RFC 5888) from a media section. + // returns the MID or undefined if no mid line was found. + SDPUtils.getMid = function(mediaSection) { + var mid = SDPUtils.matchPrefix(mediaSection, 'a=mid:')[0]; + if (mid) { + return mid.substr(6); + } + }; + + SDPUtils.parseFingerprint = function(line) { + var parts = line.substr(14).split(' '); + return { + algorithm: parts[0].toLowerCase(), // algorithm is case-sensitive in Edge. + value: parts[1] + }; + }; + + // Extracts DTLS parameters from SDP media section or sessionpart. + // FIXME: for consistency with other functions this should only + // get the fingerprint line as input. See also getIceParameters. + SDPUtils.getDtlsParameters = function(mediaSection, sessionpart) { + var lines = SDPUtils.matchPrefix(mediaSection + sessionpart, + 'a=fingerprint:'); + // Note: a=setup line is ignored since we use the 'auto' role. + // Note2: 'algorithm' is not case sensitive except in Edge. + return { + role: 'auto', + fingerprints: lines.map(SDPUtils.parseFingerprint) + }; + }; + + // Serializes DTLS parameters to SDP. + SDPUtils.writeDtlsParameters = function(params, setupType) { + var sdp = 'a=setup:' + setupType + '\r\n'; + params.fingerprints.forEach(function(fp) { + sdp += 'a=fingerprint:' + fp.algorithm + ' ' + fp.value + '\r\n'; + }); + return sdp; + }; + + // Parses a=crypto lines into + // https://rawgit.com/aboba/edgertc/master/msortc-rs4.html#dictionary-rtcsrtpsdesparameters-members + SDPUtils.parseCryptoLine = function(line) { + var parts = line.substr(9).split(' '); + return { + tag: parseInt(parts[0], 10), + cryptoSuite: parts[1], + keyParams: parts[2], + sessionParams: parts.slice(3), + }; + }; + + SDPUtils.writeCryptoLine = function(parameters) { + return 'a=crypto:' + parameters.tag + ' ' + + parameters.cryptoSuite + ' ' + + (typeof parameters.keyParams === 'object' + ? SDPUtils.writeCryptoKeyParams(parameters.keyParams) + : parameters.keyParams) + + (parameters.sessionParams ? ' ' + parameters.sessionParams.join(' ') : '') + + '\r\n'; + }; + + // Parses the crypto key parameters into + // https://rawgit.com/aboba/edgertc/master/msortc-rs4.html#rtcsrtpkeyparam* + SDPUtils.parseCryptoKeyParams = function(keyParams) { + if (keyParams.indexOf('inline:') !== 0) { + return null; + } + var parts = keyParams.substr(7).split('|'); + return { + keyMethod: 'inline', + keySalt: parts[0], + lifeTime: parts[1], + mkiValue: parts[2] ? parts[2].split(':')[0] : undefined, + mkiLength: parts[2] ? parts[2].split(':')[1] : undefined, + }; + }; + + SDPUtils.writeCryptoKeyParams = function(keyParams) { + return keyParams.keyMethod + ':' + + keyParams.keySalt + + (keyParams.lifeTime ? '|' + keyParams.lifeTime : '') + + (keyParams.mkiValue && keyParams.mkiLength + ? '|' + keyParams.mkiValue + ':' + keyParams.mkiLength + : ''); + }; + + // Extracts all SDES paramters. + SDPUtils.getCryptoParameters = function(mediaSection, sessionpart) { + var lines = SDPUtils.matchPrefix(mediaSection + sessionpart, + 'a=crypto:'); + return lines.map(SDPUtils.parseCryptoLine); + }; + + // Parses ICE information from SDP media section or sessionpart. + // FIXME: for consistency with other functions this should only + // get the ice-ufrag and ice-pwd lines as input. + SDPUtils.getIceParameters = function(mediaSection, sessionpart) { + var ufrag = SDPUtils.matchPrefix(mediaSection + sessionpart, + 'a=ice-ufrag:')[0]; + var pwd = SDPUtils.matchPrefix(mediaSection + sessionpart, + 'a=ice-pwd:')[0]; + if (!(ufrag && pwd)) { + return null; + } + return { + usernameFragment: ufrag.substr(12), + password: pwd.substr(10), + }; + }; + + // Serializes ICE parameters to SDP. + SDPUtils.writeIceParameters = function(params) { + return 'a=ice-ufrag:' + params.usernameFragment + '\r\n' + + 'a=ice-pwd:' + params.password + '\r\n'; + }; + + // Parses the SDP media section and returns RTCRtpParameters. + SDPUtils.parseRtpParameters = function(mediaSection) { + var description = { + codecs: [], + headerExtensions: [], + fecMechanisms: [], + rtcp: [] + }; + var lines = SDPUtils.splitLines(mediaSection); + var mline = lines[0].split(' '); + for (var i = 3; i < mline.length; i++) { // find all codecs from mline[3..] + var pt = mline[i]; + var rtpmapline = SDPUtils.matchPrefix( + mediaSection, 'a=rtpmap:' + pt + ' ')[0]; + if (rtpmapline) { + var codec = SDPUtils.parseRtpMap(rtpmapline); + var fmtps = SDPUtils.matchPrefix( + mediaSection, 'a=fmtp:' + pt + ' '); + // Only the first a=fmtp: is considered. + codec.parameters = fmtps.length ? SDPUtils.parseFmtp(fmtps[0]) : {}; + codec.rtcpFeedback = SDPUtils.matchPrefix( + mediaSection, 'a=rtcp-fb:' + pt + ' ') + .map(SDPUtils.parseRtcpFb); + description.codecs.push(codec); + // parse FEC mechanisms from rtpmap lines. + switch (codec.name.toUpperCase()) { + case 'RED': + case 'ULPFEC': + description.fecMechanisms.push(codec.name.toUpperCase()); + break; + } + } + } + SDPUtils.matchPrefix(mediaSection, 'a=extmap:').forEach(function(line) { + description.headerExtensions.push(SDPUtils.parseExtmap(line)); + }); + // FIXME: parse rtcp. + return description; + }; + + // Generates parts of the SDP media section describing the capabilities / + // parameters. + SDPUtils.writeRtpDescription = function(kind, caps) { + var sdp = ''; + + // Build the mline. + sdp += 'm=' + kind + ' '; + sdp += caps.codecs.length > 0 ? '9' : '0'; // reject if no codecs. + sdp += ' UDP/TLS/RTP/SAVPF '; + sdp += caps.codecs.map(function(codec) { + if (codec.preferredPayloadType !== undefined) { + return codec.preferredPayloadType; + } + return codec.payloadType; + }).join(' ') + '\r\n'; + + sdp += 'c=IN IP4 0.0.0.0\r\n'; + sdp += 'a=rtcp:9 IN IP4 0.0.0.0\r\n'; + + // Add a=rtpmap lines for each codec. Also fmtp and rtcp-fb. + caps.codecs.forEach(function(codec) { + sdp += SDPUtils.writeRtpMap(codec); + sdp += SDPUtils.writeFmtp(codec); + sdp += SDPUtils.writeRtcpFb(codec); + }); + var maxptime = 0; + caps.codecs.forEach(function(codec) { + if (codec.maxptime > maxptime) { + maxptime = codec.maxptime; + } + }); + if (maxptime > 0) { + sdp += 'a=maxptime:' + maxptime + '\r\n'; + } + sdp += 'a=rtcp-mux\r\n'; + + if (caps.headerExtensions) { + caps.headerExtensions.forEach(function(extension) { + sdp += SDPUtils.writeExtmap(extension); + }); + } + // FIXME: write fecMechanisms. + return sdp; + }; + + // Parses the SDP media section and returns an array of + // RTCRtpEncodingParameters. + SDPUtils.parseRtpEncodingParameters = function(mediaSection) { + var encodingParameters = []; + var description = SDPUtils.parseRtpParameters(mediaSection); + var hasRed = description.fecMechanisms.indexOf('RED') !== -1; + var hasUlpfec = description.fecMechanisms.indexOf('ULPFEC') !== -1; + + // filter a=ssrc:... cname:, ignore PlanB-msid + var ssrcs = SDPUtils.matchPrefix(mediaSection, 'a=ssrc:') + .map(function(line) { + return SDPUtils.parseSsrcMedia(line); + }) + .filter(function(parts) { + return parts.attribute === 'cname'; + }); + var primarySsrc = ssrcs.length > 0 && ssrcs[0].ssrc; + var secondarySsrc; + + var flows = SDPUtils.matchPrefix(mediaSection, 'a=ssrc-group:FID') + .map(function(line) { + var parts = line.substr(17).split(' '); + return parts.map(function(part) { + return parseInt(part, 10); + }); + }); + if (flows.length > 0 && flows[0].length > 1 && flows[0][0] === primarySsrc) { + secondarySsrc = flows[0][1]; + } + + description.codecs.forEach(function(codec) { + if (codec.name.toUpperCase() === 'RTX' && codec.parameters.apt) { + var encParam = { + ssrc: primarySsrc, + codecPayloadType: parseInt(codec.parameters.apt, 10) + }; + if (primarySsrc && secondarySsrc) { + encParam.rtx = {ssrc: secondarySsrc}; + } + encodingParameters.push(encParam); + if (hasRed) { + encParam = JSON.parse(JSON.stringify(encParam)); + encParam.fec = { + ssrc: primarySsrc, + mechanism: hasUlpfec ? 'red+ulpfec' : 'red' + }; + encodingParameters.push(encParam); + } + } + }); + if (encodingParameters.length === 0 && primarySsrc) { + encodingParameters.push({ + ssrc: primarySsrc + }); + } + + // we support both b=AS and b=TIAS but interpret AS as TIAS. + var bandwidth = SDPUtils.matchPrefix(mediaSection, 'b='); + if (bandwidth.length) { + if (bandwidth[0].indexOf('b=TIAS:') === 0) { + bandwidth = parseInt(bandwidth[0].substr(7), 10); + } else if (bandwidth[0].indexOf('b=AS:') === 0) { + // use formula from JSEP to convert b=AS to TIAS value. + bandwidth = parseInt(bandwidth[0].substr(5), 10) * 1000 * 0.95 + - (50 * 40 * 8); + } else { + bandwidth = undefined; + } + encodingParameters.forEach(function(params) { + params.maxBitrate = bandwidth; + }); + } + return encodingParameters; + }; + + // parses http://draft.ortc.org/#rtcrtcpparameters* + SDPUtils.parseRtcpParameters = function(mediaSection) { + var rtcpParameters = {}; + + // Gets the first SSRC. Note tha with RTX there might be multiple + // SSRCs. + var remoteSsrc = SDPUtils.matchPrefix(mediaSection, 'a=ssrc:') + .map(function(line) { + return SDPUtils.parseSsrcMedia(line); + }) + .filter(function(obj) { + return obj.attribute === 'cname'; + })[0]; + if (remoteSsrc) { + rtcpParameters.cname = remoteSsrc.value; + rtcpParameters.ssrc = remoteSsrc.ssrc; + } + + // Edge uses the compound attribute instead of reducedSize + // compound is !reducedSize + var rsize = SDPUtils.matchPrefix(mediaSection, 'a=rtcp-rsize'); + rtcpParameters.reducedSize = rsize.length > 0; + rtcpParameters.compound = rsize.length === 0; + + // parses the rtcp-mux attrіbute. + // Note that Edge does not support unmuxed RTCP. + var mux = SDPUtils.matchPrefix(mediaSection, 'a=rtcp-mux'); + rtcpParameters.mux = mux.length > 0; + + return rtcpParameters; + }; + + // parses either a=msid: or a=ssrc:... msid lines and returns + // the id of the MediaStream and MediaStreamTrack. + SDPUtils.parseMsid = function(mediaSection) { + var parts; + var spec = SDPUtils.matchPrefix(mediaSection, 'a=msid:'); + if (spec.length === 1) { + parts = spec[0].substr(7).split(' '); + return {stream: parts[0], track: parts[1]}; + } + var planB = SDPUtils.matchPrefix(mediaSection, 'a=ssrc:') + .map(function(line) { + return SDPUtils.parseSsrcMedia(line); + }) + .filter(function(msidParts) { + return msidParts.attribute === 'msid'; + }); + if (planB.length > 0) { + parts = planB[0].value.split(' '); + return {stream: parts[0], track: parts[1]}; + } + }; + + // SCTP + // parses draft-ietf-mmusic-sctp-sdp-26 first and falls back + // to draft-ietf-mmusic-sctp-sdp-05 + SDPUtils.parseSctpDescription = function(mediaSection) { + var mline = SDPUtils.parseMLine(mediaSection); + var maxSizeLine = SDPUtils.matchPrefix(mediaSection, 'a=max-message-size:'); + var maxMessageSize; + if (maxSizeLine.length > 0) { + maxMessageSize = parseInt(maxSizeLine[0].substr(19), 10); + } + if (isNaN(maxMessageSize)) { + maxMessageSize = 65536; + } + var sctpPort = SDPUtils.matchPrefix(mediaSection, 'a=sctp-port:'); + if (sctpPort.length > 0) { + return { + port: parseInt(sctpPort[0].substr(12), 10), + protocol: mline.fmt, + maxMessageSize: maxMessageSize + }; + } + var sctpMapLines = SDPUtils.matchPrefix(mediaSection, 'a=sctpmap:'); + if (sctpMapLines.length > 0) { + var parts = SDPUtils.matchPrefix(mediaSection, 'a=sctpmap:')[0] + .substr(10) + .split(' '); + return { + port: parseInt(parts[0], 10), + protocol: parts[1], + maxMessageSize: maxMessageSize + }; + } + }; + + // SCTP + // outputs the draft-ietf-mmusic-sctp-sdp-26 version that all browsers + // support by now receiving in this format, unless we originally parsed + // as the draft-ietf-mmusic-sctp-sdp-05 format (indicated by the m-line + // protocol of DTLS/SCTP -- without UDP/ or TCP/) + SDPUtils.writeSctpDescription = function(media, sctp) { + var output = []; + if (media.protocol !== 'DTLS/SCTP') { + output = [ + 'm=' + media.kind + ' 9 ' + media.protocol + ' ' + sctp.protocol + '\r\n', + 'c=IN IP4 0.0.0.0\r\n', + 'a=sctp-port:' + sctp.port + '\r\n' + ]; + } else { + output = [ + 'm=' + media.kind + ' 9 ' + media.protocol + ' ' + sctp.port + '\r\n', + 'c=IN IP4 0.0.0.0\r\n', + 'a=sctpmap:' + sctp.port + ' ' + sctp.protocol + ' 65535\r\n' + ]; + } + if (sctp.maxMessageSize !== undefined) { + output.push('a=max-message-size:' + sctp.maxMessageSize + '\r\n'); + } + return output.join(''); + }; + + // Generate a session ID for SDP. + // https://tools.ietf.org/html/draft-ietf-rtcweb-jsep-20#section-5.2.1 + // recommends using a cryptographically random +ve 64-bit value + // but right now this should be acceptable and within the right range + SDPUtils.generateSessionId = function() { + return Math.random().toString().substr(2, 21); + }; + + // Write boilder plate for start of SDP + // sessId argument is optional - if not supplied it will + // be generated randomly + // sessVersion is optional and defaults to 2 + // sessUser is optional and defaults to 'thisisadapterortc' + SDPUtils.writeSessionBoilerplate = function(sessId, sessVer, sessUser) { + var sessionId; + var version = sessVer !== undefined ? sessVer : 2; + if (sessId) { + sessionId = sessId; + } else { + sessionId = SDPUtils.generateSessionId(); + } + var user = sessUser || 'thisisadapterortc'; + // FIXME: sess-id should be an NTP timestamp. + return 'v=0\r\n' + + 'o=' + user + ' ' + sessionId + ' ' + version + + ' IN IP4 127.0.0.1\r\n' + + 's=-\r\n' + + 't=0 0\r\n'; + }; + + SDPUtils.writeMediaSection = function(transceiver, caps, type, stream) { + var sdp = SDPUtils.writeRtpDescription(transceiver.kind, caps); + + // Map ICE parameters (ufrag, pwd) to SDP. + sdp += SDPUtils.writeIceParameters( + transceiver.iceGatherer.getLocalParameters()); + + // Map DTLS parameters to SDP. + sdp += SDPUtils.writeDtlsParameters( + transceiver.dtlsTransport.getLocalParameters(), + type === 'offer' ? 'actpass' : 'active'); + + sdp += 'a=mid:' + transceiver.mid + '\r\n'; + + if (transceiver.direction) { + sdp += 'a=' + transceiver.direction + '\r\n'; + } else if (transceiver.rtpSender && transceiver.rtpReceiver) { + sdp += 'a=sendrecv\r\n'; + } else if (transceiver.rtpSender) { + sdp += 'a=sendonly\r\n'; + } else if (transceiver.rtpReceiver) { + sdp += 'a=recvonly\r\n'; + } else { + sdp += 'a=inactive\r\n'; + } + + if (transceiver.rtpSender) { + // spec. + var msid = 'msid:' + stream.id + ' ' + + transceiver.rtpSender.track.id + '\r\n'; + sdp += 'a=' + msid; + + // for Chrome. + sdp += 'a=ssrc:' + transceiver.sendEncodingParameters[0].ssrc + + ' ' + msid; + if (transceiver.sendEncodingParameters[0].rtx) { + sdp += 'a=ssrc:' + transceiver.sendEncodingParameters[0].rtx.ssrc + + ' ' + msid; + sdp += 'a=ssrc-group:FID ' + + transceiver.sendEncodingParameters[0].ssrc + ' ' + + transceiver.sendEncodingParameters[0].rtx.ssrc + + '\r\n'; + } + } + // FIXME: this should be written by writeRtpDescription. + sdp += 'a=ssrc:' + transceiver.sendEncodingParameters[0].ssrc + + ' cname:' + SDPUtils.localCName + '\r\n'; + if (transceiver.rtpSender && transceiver.sendEncodingParameters[0].rtx) { + sdp += 'a=ssrc:' + transceiver.sendEncodingParameters[0].rtx.ssrc + + ' cname:' + SDPUtils.localCName + '\r\n'; + } + return sdp; + }; + + // Gets the direction from the mediaSection or the sessionpart. + SDPUtils.getDirection = function(mediaSection, sessionpart) { + // Look for sendrecv, sendonly, recvonly, inactive, default to sendrecv. + var lines = SDPUtils.splitLines(mediaSection); + for (var i = 0; i < lines.length; i++) { + switch (lines[i]) { + case 'a=sendrecv': + case 'a=sendonly': + case 'a=recvonly': + case 'a=inactive': + return lines[i].substr(2); + // FIXME: What should happen here? + } + } + if (sessionpart) { + return SDPUtils.getDirection(sessionpart); + } + return 'sendrecv'; + }; + + SDPUtils.getKind = function(mediaSection) { + var lines = SDPUtils.splitLines(mediaSection); + var mline = lines[0].split(' '); + return mline[0].substr(2); + }; + + SDPUtils.isRejected = function(mediaSection) { + return mediaSection.split(' ', 2)[1] === '0'; + }; + + SDPUtils.parseMLine = function(mediaSection) { + var lines = SDPUtils.splitLines(mediaSection); + var parts = lines[0].substr(2).split(' '); + return { + kind: parts[0], + port: parseInt(parts[1], 10), + protocol: parts[2], + fmt: parts.slice(3).join(' ') + }; + }; + + SDPUtils.parseOLine = function(mediaSection) { + var line = SDPUtils.matchPrefix(mediaSection, 'o=')[0]; + var parts = line.substr(2).split(' '); + return { + username: parts[0], + sessionId: parts[1], + sessionVersion: parseInt(parts[2], 10), + netType: parts[3], + addressType: parts[4], + address: parts[5] + }; + }; + + // a very naive interpretation of a valid SDP. + SDPUtils.isValidSDP = function(blob) { + if (typeof blob !== 'string' || blob.length === 0) { + return false; + } + var lines = SDPUtils.splitLines(blob); + for (var i = 0; i < lines.length; i++) { + if (lines[i].length < 2 || lines[i].charAt(1) !== '=') { + return false; + } + // TODO: check the modifier a bit more. + } + return true; + }; + + // Expose public methods. + { + module.exports = SDPUtils; + } + }); + + /* + * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. + */ + + + + function fixStatsType(stat) { + return { + inboundrtp: 'inbound-rtp', + outboundrtp: 'outbound-rtp', + candidatepair: 'candidate-pair', + localcandidate: 'local-candidate', + remotecandidate: 'remote-candidate' + }[stat.type] || stat.type; + } + + function writeMediaSection(transceiver, caps, type, stream, dtlsRole) { + var sdp$1 = sdp.writeRtpDescription(transceiver.kind, caps); + + // Map ICE parameters (ufrag, pwd) to SDP. + sdp$1 += sdp.writeIceParameters( + transceiver.iceGatherer.getLocalParameters()); + + // Map DTLS parameters to SDP. + sdp$1 += sdp.writeDtlsParameters( + transceiver.dtlsTransport.getLocalParameters(), + type === 'offer' ? 'actpass' : dtlsRole || 'active'); + + sdp$1 += 'a=mid:' + transceiver.mid + '\r\n'; + + if (transceiver.rtpSender && transceiver.rtpReceiver) { + sdp$1 += 'a=sendrecv\r\n'; + } else if (transceiver.rtpSender) { + sdp$1 += 'a=sendonly\r\n'; + } else if (transceiver.rtpReceiver) { + sdp$1 += 'a=recvonly\r\n'; + } else { + sdp$1 += 'a=inactive\r\n'; + } + + if (transceiver.rtpSender) { + var trackId = transceiver.rtpSender._initialTrackId || + transceiver.rtpSender.track.id; + transceiver.rtpSender._initialTrackId = trackId; + // spec. + var msid = 'msid:' + (stream ? stream.id : '-') + ' ' + + trackId + '\r\n'; + sdp$1 += 'a=' + msid; + // for Chrome. Legacy should no longer be required. + sdp$1 += 'a=ssrc:' + transceiver.sendEncodingParameters[0].ssrc + + ' ' + msid; + + // RTX + if (transceiver.sendEncodingParameters[0].rtx) { + sdp$1 += 'a=ssrc:' + transceiver.sendEncodingParameters[0].rtx.ssrc + + ' ' + msid; + sdp$1 += 'a=ssrc-group:FID ' + + transceiver.sendEncodingParameters[0].ssrc + ' ' + + transceiver.sendEncodingParameters[0].rtx.ssrc + + '\r\n'; + } + } + // FIXME: this should be written by writeRtpDescription. + sdp$1 += 'a=ssrc:' + transceiver.sendEncodingParameters[0].ssrc + + ' cname:' + sdp.localCName + '\r\n'; + if (transceiver.rtpSender && transceiver.sendEncodingParameters[0].rtx) { + sdp$1 += 'a=ssrc:' + transceiver.sendEncodingParameters[0].rtx.ssrc + + ' cname:' + sdp.localCName + '\r\n'; + } + return sdp$1; + } + + // Edge does not like + // 1) stun: filtered after 14393 unless ?transport=udp is present + // 2) turn: that does not have all of turn:host:port?transport=udp + // 3) turn: with ipv6 addresses + // 4) turn: occurring muliple times + function filterIceServers(iceServers, edgeVersion) { + var hasTurn = false; + iceServers = JSON.parse(JSON.stringify(iceServers)); + return iceServers.filter(function(server) { + if (server && (server.urls || server.url)) { + var urls = server.urls || server.url; + if (server.url && !server.urls) { + console.warn('RTCIceServer.url is deprecated! Use urls instead.'); + } + var isString = typeof urls === 'string'; + if (isString) { + urls = [urls]; + } + urls = urls.filter(function(url) { + var validTurn = url.indexOf('turn:') === 0 && + url.indexOf('transport=udp') !== -1 && + url.indexOf('turn:[') === -1 && + !hasTurn; + + if (validTurn) { + hasTurn = true; + return true; + } + return url.indexOf('stun:') === 0 && edgeVersion >= 14393 && + url.indexOf('?transport=udp') === -1; + }); + + delete server.url; + server.urls = isString ? urls[0] : urls; + return !!urls.length; + } + }); + } + + // Determines the intersection of local and remote capabilities. + function getCommonCapabilities(localCapabilities, remoteCapabilities) { + var commonCapabilities = { + codecs: [], + headerExtensions: [], + fecMechanisms: [] + }; + + var findCodecByPayloadType = function(pt, codecs) { + pt = parseInt(pt, 10); + for (var i = 0; i < codecs.length; i++) { + if (codecs[i].payloadType === pt || + codecs[i].preferredPayloadType === pt) { + return codecs[i]; + } + } + }; + + var rtxCapabilityMatches = function(lRtx, rRtx, lCodecs, rCodecs) { + var lCodec = findCodecByPayloadType(lRtx.parameters.apt, lCodecs); + var rCodec = findCodecByPayloadType(rRtx.parameters.apt, rCodecs); + return lCodec && rCodec && + lCodec.name.toLowerCase() === rCodec.name.toLowerCase(); + }; + + localCapabilities.codecs.forEach(function(lCodec) { + for (var i = 0; i < remoteCapabilities.codecs.length; i++) { + var rCodec = remoteCapabilities.codecs[i]; + if (lCodec.name.toLowerCase() === rCodec.name.toLowerCase() && + lCodec.clockRate === rCodec.clockRate) { + if (lCodec.name.toLowerCase() === 'rtx' && + lCodec.parameters && rCodec.parameters.apt) { + // for RTX we need to find the local rtx that has a apt + // which points to the same local codec as the remote one. + if (!rtxCapabilityMatches(lCodec, rCodec, + localCapabilities.codecs, remoteCapabilities.codecs)) { + continue; + } + } + rCodec = JSON.parse(JSON.stringify(rCodec)); // deepcopy + // number of channels is the highest common number of channels + rCodec.numChannels = Math.min(lCodec.numChannels, + rCodec.numChannels); + // push rCodec so we reply with offerer payload type + commonCapabilities.codecs.push(rCodec); + + // determine common feedback mechanisms + rCodec.rtcpFeedback = rCodec.rtcpFeedback.filter(function(fb) { + for (var j = 0; j < lCodec.rtcpFeedback.length; j++) { + if (lCodec.rtcpFeedback[j].type === fb.type && + lCodec.rtcpFeedback[j].parameter === fb.parameter) { + return true; + } + } + return false; + }); + // FIXME: also need to determine .parameters + // see https://github.com/openpeer/ortc/issues/569 + break; + } + } + }); + + localCapabilities.headerExtensions.forEach(function(lHeaderExtension) { + for (var i = 0; i < remoteCapabilities.headerExtensions.length; + i++) { + var rHeaderExtension = remoteCapabilities.headerExtensions[i]; + if (lHeaderExtension.uri === rHeaderExtension.uri) { + commonCapabilities.headerExtensions.push(rHeaderExtension); + break; + } + } + }); + + // FIXME: fecMechanisms + return commonCapabilities; + } + + // is action=setLocalDescription with type allowed in signalingState + function isActionAllowedInSignalingState(action, type, signalingState) { + return { + offer: { + setLocalDescription: ['stable', 'have-local-offer'], + setRemoteDescription: ['stable', 'have-remote-offer'] + }, + answer: { + setLocalDescription: ['have-remote-offer', 'have-local-pranswer'], + setRemoteDescription: ['have-local-offer', 'have-remote-pranswer'] + } + }[type][action].indexOf(signalingState) !== -1; + } + + function maybeAddCandidate(iceTransport, candidate) { + // Edge's internal representation adds some fields therefore + // not all fieldѕ are taken into account. + var alreadyAdded = iceTransport.getRemoteCandidates() + .find(function(remoteCandidate) { + return candidate.foundation === remoteCandidate.foundation && + candidate.ip === remoteCandidate.ip && + candidate.port === remoteCandidate.port && + candidate.priority === remoteCandidate.priority && + candidate.protocol === remoteCandidate.protocol && + candidate.type === remoteCandidate.type; + }); + if (!alreadyAdded) { + iceTransport.addRemoteCandidate(candidate); + } + return !alreadyAdded; + } + + + function makeError(name, description) { + var e = new Error(description); + e.name = name; + // legacy error codes from https://heycam.github.io/webidl/#idl-DOMException-error-names + e.code = { + NotSupportedError: 9, + InvalidStateError: 11, + InvalidAccessError: 15, + TypeError: undefined, + OperationError: undefined + }[name]; + return e; + } + + var rtcpeerconnection = function(window, edgeVersion) { + // https://w3c.github.io/mediacapture-main/#mediastream + // Helper function to add the track to the stream and + // dispatch the event ourselves. + function addTrackToStreamAndFireEvent(track, stream) { + stream.addTrack(track); + stream.dispatchEvent(new window.MediaStreamTrackEvent('addtrack', + {track: track})); + } + + function removeTrackFromStreamAndFireEvent(track, stream) { + stream.removeTrack(track); + stream.dispatchEvent(new window.MediaStreamTrackEvent('removetrack', + {track: track})); + } + + function fireAddTrack(pc, track, receiver, streams) { + var trackEvent = new Event('track'); + trackEvent.track = track; + trackEvent.receiver = receiver; + trackEvent.transceiver = {receiver: receiver}; + trackEvent.streams = streams; + window.setTimeout(function() { + pc._dispatchEvent('track', trackEvent); + }); + } + + var RTCPeerConnection = function(config) { + var pc = this; + + var _eventTarget = document.createDocumentFragment(); + ['addEventListener', 'removeEventListener', 'dispatchEvent'] + .forEach(function(method) { + pc[method] = _eventTarget[method].bind(_eventTarget); + }); + + this.canTrickleIceCandidates = null; + + this.needNegotiation = false; + + this.localStreams = []; + this.remoteStreams = []; + + this._localDescription = null; + this._remoteDescription = null; + + this.signalingState = 'stable'; + this.iceConnectionState = 'new'; + this.connectionState = 'new'; + this.iceGatheringState = 'new'; + + config = JSON.parse(JSON.stringify(config || {})); + + this.usingBundle = config.bundlePolicy === 'max-bundle'; + if (config.rtcpMuxPolicy === 'negotiate') { + throw(makeError('NotSupportedError', + 'rtcpMuxPolicy \'negotiate\' is not supported')); + } else if (!config.rtcpMuxPolicy) { + config.rtcpMuxPolicy = 'require'; + } + + switch (config.iceTransportPolicy) { + case 'all': + case 'relay': + break; + default: + config.iceTransportPolicy = 'all'; + break; + } + + switch (config.bundlePolicy) { + case 'balanced': + case 'max-compat': + case 'max-bundle': + break; + default: + config.bundlePolicy = 'balanced'; + break; + } + + config.iceServers = filterIceServers(config.iceServers || [], edgeVersion); + + this._iceGatherers = []; + if (config.iceCandidatePoolSize) { + for (var i = config.iceCandidatePoolSize; i > 0; i--) { + this._iceGatherers.push(new window.RTCIceGatherer({ + iceServers: config.iceServers, + gatherPolicy: config.iceTransportPolicy + })); + } + } else { + config.iceCandidatePoolSize = 0; + } + + this._config = config; + + // per-track iceGathers, iceTransports, dtlsTransports, rtpSenders, ... + // everything that is needed to describe a SDP m-line. + this.transceivers = []; + + this._sdpSessionId = sdp.generateSessionId(); + this._sdpSessionVersion = 0; + + this._dtlsRole = undefined; // role for a=setup to use in answers. + + this._isClosed = false; + }; + + Object.defineProperty(RTCPeerConnection.prototype, 'localDescription', { + configurable: true, + get: function() { + return this._localDescription; + } + }); + Object.defineProperty(RTCPeerConnection.prototype, 'remoteDescription', { + configurable: true, + get: function() { + return this._remoteDescription; + } + }); + + // set up event handlers on prototype + RTCPeerConnection.prototype.onicecandidate = null; + RTCPeerConnection.prototype.onaddstream = null; + RTCPeerConnection.prototype.ontrack = null; + RTCPeerConnection.prototype.onremovestream = null; + RTCPeerConnection.prototype.onsignalingstatechange = null; + RTCPeerConnection.prototype.oniceconnectionstatechange = null; + RTCPeerConnection.prototype.onconnectionstatechange = null; + RTCPeerConnection.prototype.onicegatheringstatechange = null; + RTCPeerConnection.prototype.onnegotiationneeded = null; + RTCPeerConnection.prototype.ondatachannel = null; + + RTCPeerConnection.prototype._dispatchEvent = function(name, event) { + if (this._isClosed) { + return; + } + this.dispatchEvent(event); + if (typeof this['on' + name] === 'function') { + this['on' + name](event); + } + }; + + RTCPeerConnection.prototype._emitGatheringStateChange = function() { + var event = new Event('icegatheringstatechange'); + this._dispatchEvent('icegatheringstatechange', event); + }; + + RTCPeerConnection.prototype.getConfiguration = function() { + return this._config; + }; + + RTCPeerConnection.prototype.getLocalStreams = function() { + return this.localStreams; + }; + + RTCPeerConnection.prototype.getRemoteStreams = function() { + return this.remoteStreams; + }; + + // internal helper to create a transceiver object. + // (which is not yet the same as the WebRTC 1.0 transceiver) + RTCPeerConnection.prototype._createTransceiver = function(kind, doNotAdd) { + var hasBundleTransport = this.transceivers.length > 0; + var transceiver = { + track: null, + iceGatherer: null, + iceTransport: null, + dtlsTransport: null, + localCapabilities: null, + remoteCapabilities: null, + rtpSender: null, + rtpReceiver: null, + kind: kind, + mid: null, + sendEncodingParameters: null, + recvEncodingParameters: null, + stream: null, + associatedRemoteMediaStreams: [], + wantReceive: true + }; + if (this.usingBundle && hasBundleTransport) { + transceiver.iceTransport = this.transceivers[0].iceTransport; + transceiver.dtlsTransport = this.transceivers[0].dtlsTransport; + } else { + var transports = this._createIceAndDtlsTransports(); + transceiver.iceTransport = transports.iceTransport; + transceiver.dtlsTransport = transports.dtlsTransport; + } + if (!doNotAdd) { + this.transceivers.push(transceiver); + } + return transceiver; + }; + + RTCPeerConnection.prototype.addTrack = function(track, stream) { + if (this._isClosed) { + throw makeError('InvalidStateError', + 'Attempted to call addTrack on a closed peerconnection.'); + } + + var alreadyExists = this.transceivers.find(function(s) { + return s.track === track; + }); + + if (alreadyExists) { + throw makeError('InvalidAccessError', 'Track already exists.'); + } + + var transceiver; + for (var i = 0; i < this.transceivers.length; i++) { + if (!this.transceivers[i].track && + this.transceivers[i].kind === track.kind) { + transceiver = this.transceivers[i]; + } + } + if (!transceiver) { + transceiver = this._createTransceiver(track.kind); + } + + this._maybeFireNegotiationNeeded(); + + if (this.localStreams.indexOf(stream) === -1) { + this.localStreams.push(stream); + } + + transceiver.track = track; + transceiver.stream = stream; + transceiver.rtpSender = new window.RTCRtpSender(track, + transceiver.dtlsTransport); + return transceiver.rtpSender; + }; + + RTCPeerConnection.prototype.addStream = function(stream) { + var pc = this; + if (edgeVersion >= 15025) { + stream.getTracks().forEach(function(track) { + pc.addTrack(track, stream); + }); + } else { + // Clone is necessary for local demos mostly, attaching directly + // to two different senders does not work (build 10547). + // Fixed in 15025 (or earlier) + var clonedStream = stream.clone(); + stream.getTracks().forEach(function(track, idx) { + var clonedTrack = clonedStream.getTracks()[idx]; + track.addEventListener('enabled', function(event) { + clonedTrack.enabled = event.enabled; + }); + }); + clonedStream.getTracks().forEach(function(track) { + pc.addTrack(track, clonedStream); + }); + } + }; + + RTCPeerConnection.prototype.removeTrack = function(sender) { + if (this._isClosed) { + throw makeError('InvalidStateError', + 'Attempted to call removeTrack on a closed peerconnection.'); + } + + if (!(sender instanceof window.RTCRtpSender)) { + throw new TypeError('Argument 1 of RTCPeerConnection.removeTrack ' + + 'does not implement interface RTCRtpSender.'); + } + + var transceiver = this.transceivers.find(function(t) { + return t.rtpSender === sender; + }); + + if (!transceiver) { + throw makeError('InvalidAccessError', + 'Sender was not created by this connection.'); + } + var stream = transceiver.stream; + + transceiver.rtpSender.stop(); + transceiver.rtpSender = null; + transceiver.track = null; + transceiver.stream = null; + + // remove the stream from the set of local streams + var localStreams = this.transceivers.map(function(t) { + return t.stream; + }); + if (localStreams.indexOf(stream) === -1 && + this.localStreams.indexOf(stream) > -1) { + this.localStreams.splice(this.localStreams.indexOf(stream), 1); + } + + this._maybeFireNegotiationNeeded(); + }; + + RTCPeerConnection.prototype.removeStream = function(stream) { + var pc = this; + stream.getTracks().forEach(function(track) { + var sender = pc.getSenders().find(function(s) { + return s.track === track; + }); + if (sender) { + pc.removeTrack(sender); + } + }); + }; + + RTCPeerConnection.prototype.getSenders = function() { + return this.transceivers.filter(function(transceiver) { + return !!transceiver.rtpSender; + }) + .map(function(transceiver) { + return transceiver.rtpSender; + }); + }; + + RTCPeerConnection.prototype.getReceivers = function() { + return this.transceivers.filter(function(transceiver) { + return !!transceiver.rtpReceiver; + }) + .map(function(transceiver) { + return transceiver.rtpReceiver; + }); + }; + + + RTCPeerConnection.prototype._createIceGatherer = function(sdpMLineIndex, + usingBundle) { + var pc = this; + if (usingBundle && sdpMLineIndex > 0) { + return this.transceivers[0].iceGatherer; + } else if (this._iceGatherers.length) { + return this._iceGatherers.shift(); + } + var iceGatherer = new window.RTCIceGatherer({ + iceServers: this._config.iceServers, + gatherPolicy: this._config.iceTransportPolicy + }); + Object.defineProperty(iceGatherer, 'state', + {value: 'new', writable: true} + ); + + this.transceivers[sdpMLineIndex].bufferedCandidateEvents = []; + this.transceivers[sdpMLineIndex].bufferCandidates = function(event) { + var end = !event.candidate || Object.keys(event.candidate).length === 0; + // polyfill since RTCIceGatherer.state is not implemented in + // Edge 10547 yet. + iceGatherer.state = end ? 'completed' : 'gathering'; + if (pc.transceivers[sdpMLineIndex].bufferedCandidateEvents !== null) { + pc.transceivers[sdpMLineIndex].bufferedCandidateEvents.push(event); + } + }; + iceGatherer.addEventListener('localcandidate', + this.transceivers[sdpMLineIndex].bufferCandidates); + return iceGatherer; + }; + + // start gathering from an RTCIceGatherer. + RTCPeerConnection.prototype._gather = function(mid, sdpMLineIndex) { + var pc = this; + var iceGatherer = this.transceivers[sdpMLineIndex].iceGatherer; + if (iceGatherer.onlocalcandidate) { + return; + } + var bufferedCandidateEvents = + this.transceivers[sdpMLineIndex].bufferedCandidateEvents; + this.transceivers[sdpMLineIndex].bufferedCandidateEvents = null; + iceGatherer.removeEventListener('localcandidate', + this.transceivers[sdpMLineIndex].bufferCandidates); + iceGatherer.onlocalcandidate = function(evt) { + if (pc.usingBundle && sdpMLineIndex > 0) { + // if we know that we use bundle we can drop candidates with + // ѕdpMLineIndex > 0. If we don't do this then our state gets + // confused since we dispose the extra ice gatherer. + return; + } + var event = new Event('icecandidate'); + event.candidate = {sdpMid: mid, sdpMLineIndex: sdpMLineIndex}; + + var cand = evt.candidate; + // Edge emits an empty object for RTCIceCandidateComplete‥ + var end = !cand || Object.keys(cand).length === 0; + if (end) { + // polyfill since RTCIceGatherer.state is not implemented in + // Edge 10547 yet. + if (iceGatherer.state === 'new' || iceGatherer.state === 'gathering') { + iceGatherer.state = 'completed'; + } + } else { + if (iceGatherer.state === 'new') { + iceGatherer.state = 'gathering'; + } + // RTCIceCandidate doesn't have a component, needs to be added + cand.component = 1; + // also the usernameFragment. TODO: update SDP to take both variants. + cand.ufrag = iceGatherer.getLocalParameters().usernameFragment; + + var serializedCandidate = sdp.writeCandidate(cand); + event.candidate = Object.assign(event.candidate, + sdp.parseCandidate(serializedCandidate)); + + event.candidate.candidate = serializedCandidate; + event.candidate.toJSON = function() { + return { + candidate: event.candidate.candidate, + sdpMid: event.candidate.sdpMid, + sdpMLineIndex: event.candidate.sdpMLineIndex, + usernameFragment: event.candidate.usernameFragment + }; + }; + } + + // update local description. + var sections = sdp.getMediaSections(pc._localDescription.sdp); + if (!end) { + sections[event.candidate.sdpMLineIndex] += + 'a=' + event.candidate.candidate + '\r\n'; + } else { + sections[event.candidate.sdpMLineIndex] += + 'a=end-of-candidates\r\n'; + } + pc._localDescription.sdp = + sdp.getDescription(pc._localDescription.sdp) + + sections.join(''); + var complete = pc.transceivers.every(function(transceiver) { + return transceiver.iceGatherer && + transceiver.iceGatherer.state === 'completed'; + }); + + if (pc.iceGatheringState !== 'gathering') { + pc.iceGatheringState = 'gathering'; + pc._emitGatheringStateChange(); + } + + // Emit candidate. Also emit null candidate when all gatherers are + // complete. + if (!end) { + pc._dispatchEvent('icecandidate', event); + } + if (complete) { + pc._dispatchEvent('icecandidate', new Event('icecandidate')); + pc.iceGatheringState = 'complete'; + pc._emitGatheringStateChange(); + } + }; + + // emit already gathered candidates. + window.setTimeout(function() { + bufferedCandidateEvents.forEach(function(e) { + iceGatherer.onlocalcandidate(e); + }); + }, 0); + }; + + // Create ICE transport and DTLS transport. + RTCPeerConnection.prototype._createIceAndDtlsTransports = function() { + var pc = this; + var iceTransport = new window.RTCIceTransport(null); + iceTransport.onicestatechange = function() { + pc._updateIceConnectionState(); + pc._updateConnectionState(); + }; + + var dtlsTransport = new window.RTCDtlsTransport(iceTransport); + dtlsTransport.ondtlsstatechange = function() { + pc._updateConnectionState(); + }; + dtlsTransport.onerror = function() { + // onerror does not set state to failed by itself. + Object.defineProperty(dtlsTransport, 'state', + {value: 'failed', writable: true}); + pc._updateConnectionState(); + }; + + return { + iceTransport: iceTransport, + dtlsTransport: dtlsTransport + }; + }; + + // Destroy ICE gatherer, ICE transport and DTLS transport. + // Without triggering the callbacks. + RTCPeerConnection.prototype._disposeIceAndDtlsTransports = function( + sdpMLineIndex) { + var iceGatherer = this.transceivers[sdpMLineIndex].iceGatherer; + if (iceGatherer) { + delete iceGatherer.onlocalcandidate; + delete this.transceivers[sdpMLineIndex].iceGatherer; + } + var iceTransport = this.transceivers[sdpMLineIndex].iceTransport; + if (iceTransport) { + delete iceTransport.onicestatechange; + delete this.transceivers[sdpMLineIndex].iceTransport; + } + var dtlsTransport = this.transceivers[sdpMLineIndex].dtlsTransport; + if (dtlsTransport) { + delete dtlsTransport.ondtlsstatechange; + delete dtlsTransport.onerror; + delete this.transceivers[sdpMLineIndex].dtlsTransport; + } + }; + + // Start the RTP Sender and Receiver for a transceiver. + RTCPeerConnection.prototype._transceive = function(transceiver, + send, recv) { + var params = getCommonCapabilities(transceiver.localCapabilities, + transceiver.remoteCapabilities); + if (send && transceiver.rtpSender) { + params.encodings = transceiver.sendEncodingParameters; + params.rtcp = { + cname: sdp.localCName, + compound: transceiver.rtcpParameters.compound + }; + if (transceiver.recvEncodingParameters.length) { + params.rtcp.ssrc = transceiver.recvEncodingParameters[0].ssrc; + } + transceiver.rtpSender.send(params); + } + if (recv && transceiver.rtpReceiver && params.codecs.length > 0) { + // remove RTX field in Edge 14942 + if (transceiver.kind === 'video' + && transceiver.recvEncodingParameters + && edgeVersion < 15019) { + transceiver.recvEncodingParameters.forEach(function(p) { + delete p.rtx; + }); + } + if (transceiver.recvEncodingParameters.length) { + params.encodings = transceiver.recvEncodingParameters; + } else { + params.encodings = [{}]; + } + params.rtcp = { + compound: transceiver.rtcpParameters.compound + }; + if (transceiver.rtcpParameters.cname) { + params.rtcp.cname = transceiver.rtcpParameters.cname; + } + if (transceiver.sendEncodingParameters.length) { + params.rtcp.ssrc = transceiver.sendEncodingParameters[0].ssrc; + } + transceiver.rtpReceiver.receive(params); + } + }; + + RTCPeerConnection.prototype.setLocalDescription = function(description) { + var pc = this; + + // Note: pranswer is not supported. + if (['offer', 'answer'].indexOf(description.type) === -1) { + return Promise.reject(makeError('TypeError', + 'Unsupported type "' + description.type + '"')); + } + + if (!isActionAllowedInSignalingState('setLocalDescription', + description.type, pc.signalingState) || pc._isClosed) { + return Promise.reject(makeError('InvalidStateError', + 'Can not set local ' + description.type + + ' in state ' + pc.signalingState)); + } + + var sections; + var sessionpart; + if (description.type === 'offer') { + // VERY limited support for SDP munging. Limited to: + // * changing the order of codecs + sections = sdp.splitSections(description.sdp); + sessionpart = sections.shift(); + sections.forEach(function(mediaSection, sdpMLineIndex) { + var caps = sdp.parseRtpParameters(mediaSection); + pc.transceivers[sdpMLineIndex].localCapabilities = caps; + }); + + pc.transceivers.forEach(function(transceiver, sdpMLineIndex) { + pc._gather(transceiver.mid, sdpMLineIndex); + }); + } else if (description.type === 'answer') { + sections = sdp.splitSections(pc._remoteDescription.sdp); + sessionpart = sections.shift(); + var isIceLite = sdp.matchPrefix(sessionpart, + 'a=ice-lite').length > 0; + sections.forEach(function(mediaSection, sdpMLineIndex) { + var transceiver = pc.transceivers[sdpMLineIndex]; + var iceGatherer = transceiver.iceGatherer; + var iceTransport = transceiver.iceTransport; + var dtlsTransport = transceiver.dtlsTransport; + var localCapabilities = transceiver.localCapabilities; + var remoteCapabilities = transceiver.remoteCapabilities; + + // treat bundle-only as not-rejected. + var rejected = sdp.isRejected(mediaSection) && + sdp.matchPrefix(mediaSection, 'a=bundle-only').length === 0; + + if (!rejected && !transceiver.rejected) { + var remoteIceParameters = sdp.getIceParameters( + mediaSection, sessionpart); + var remoteDtlsParameters = sdp.getDtlsParameters( + mediaSection, sessionpart); + if (isIceLite) { + remoteDtlsParameters.role = 'server'; + } + + if (!pc.usingBundle || sdpMLineIndex === 0) { + pc._gather(transceiver.mid, sdpMLineIndex); + if (iceTransport.state === 'new') { + iceTransport.start(iceGatherer, remoteIceParameters, + isIceLite ? 'controlling' : 'controlled'); + } + if (dtlsTransport.state === 'new') { + dtlsTransport.start(remoteDtlsParameters); + } + } + + // Calculate intersection of capabilities. + var params = getCommonCapabilities(localCapabilities, + remoteCapabilities); + + // Start the RTCRtpSender. The RTCRtpReceiver for this + // transceiver has already been started in setRemoteDescription. + pc._transceive(transceiver, + params.codecs.length > 0, + false); + } + }); + } + + pc._localDescription = { + type: description.type, + sdp: description.sdp + }; + if (description.type === 'offer') { + pc._updateSignalingState('have-local-offer'); + } else { + pc._updateSignalingState('stable'); + } + + return Promise.resolve(); + }; + + RTCPeerConnection.prototype.setRemoteDescription = function(description) { + var pc = this; + + // Note: pranswer is not supported. + if (['offer', 'answer'].indexOf(description.type) === -1) { + return Promise.reject(makeError('TypeError', + 'Unsupported type "' + description.type + '"')); + } + + if (!isActionAllowedInSignalingState('setRemoteDescription', + description.type, pc.signalingState) || pc._isClosed) { + return Promise.reject(makeError('InvalidStateError', + 'Can not set remote ' + description.type + + ' in state ' + pc.signalingState)); + } + + var streams = {}; + pc.remoteStreams.forEach(function(stream) { + streams[stream.id] = stream; + }); + var receiverList = []; + var sections = sdp.splitSections(description.sdp); + var sessionpart = sections.shift(); + var isIceLite = sdp.matchPrefix(sessionpart, + 'a=ice-lite').length > 0; + var usingBundle = sdp.matchPrefix(sessionpart, + 'a=group:BUNDLE ').length > 0; + pc.usingBundle = usingBundle; + var iceOptions = sdp.matchPrefix(sessionpart, + 'a=ice-options:')[0]; + if (iceOptions) { + pc.canTrickleIceCandidates = iceOptions.substr(14).split(' ') + .indexOf('trickle') >= 0; + } else { + pc.canTrickleIceCandidates = false; + } + + sections.forEach(function(mediaSection, sdpMLineIndex) { + var lines = sdp.splitLines(mediaSection); + var kind = sdp.getKind(mediaSection); + // treat bundle-only as not-rejected. + var rejected = sdp.isRejected(mediaSection) && + sdp.matchPrefix(mediaSection, 'a=bundle-only').length === 0; + var protocol = lines[0].substr(2).split(' ')[2]; + + var direction = sdp.getDirection(mediaSection, sessionpart); + var remoteMsid = sdp.parseMsid(mediaSection); + + var mid = sdp.getMid(mediaSection) || sdp.generateIdentifier(); + + // Reject datachannels which are not implemented yet. + if (rejected || (kind === 'application' && (protocol === 'DTLS/SCTP' || + protocol === 'UDP/DTLS/SCTP'))) { + // TODO: this is dangerous in the case where a non-rejected m-line + // becomes rejected. + pc.transceivers[sdpMLineIndex] = { + mid: mid, + kind: kind, + protocol: protocol, + rejected: true + }; + return; + } + + if (!rejected && pc.transceivers[sdpMLineIndex] && + pc.transceivers[sdpMLineIndex].rejected) { + // recycle a rejected transceiver. + pc.transceivers[sdpMLineIndex] = pc._createTransceiver(kind, true); + } + + var transceiver; + var iceGatherer; + var iceTransport; + var dtlsTransport; + var rtpReceiver; + var sendEncodingParameters; + var recvEncodingParameters; + var localCapabilities; + + var track; + // FIXME: ensure the mediaSection has rtcp-mux set. + var remoteCapabilities = sdp.parseRtpParameters(mediaSection); + var remoteIceParameters; + var remoteDtlsParameters; + if (!rejected) { + remoteIceParameters = sdp.getIceParameters(mediaSection, + sessionpart); + remoteDtlsParameters = sdp.getDtlsParameters(mediaSection, + sessionpart); + remoteDtlsParameters.role = 'client'; + } + recvEncodingParameters = + sdp.parseRtpEncodingParameters(mediaSection); + + var rtcpParameters = sdp.parseRtcpParameters(mediaSection); + + var isComplete = sdp.matchPrefix(mediaSection, + 'a=end-of-candidates', sessionpart).length > 0; + var cands = sdp.matchPrefix(mediaSection, 'a=candidate:') + .map(function(cand) { + return sdp.parseCandidate(cand); + }) + .filter(function(cand) { + return cand.component === 1; + }); + + // Check if we can use BUNDLE and dispose transports. + if ((description.type === 'offer' || description.type === 'answer') && + !rejected && usingBundle && sdpMLineIndex > 0 && + pc.transceivers[sdpMLineIndex]) { + pc._disposeIceAndDtlsTransports(sdpMLineIndex); + pc.transceivers[sdpMLineIndex].iceGatherer = + pc.transceivers[0].iceGatherer; + pc.transceivers[sdpMLineIndex].iceTransport = + pc.transceivers[0].iceTransport; + pc.transceivers[sdpMLineIndex].dtlsTransport = + pc.transceivers[0].dtlsTransport; + if (pc.transceivers[sdpMLineIndex].rtpSender) { + pc.transceivers[sdpMLineIndex].rtpSender.setTransport( + pc.transceivers[0].dtlsTransport); + } + if (pc.transceivers[sdpMLineIndex].rtpReceiver) { + pc.transceivers[sdpMLineIndex].rtpReceiver.setTransport( + pc.transceivers[0].dtlsTransport); + } + } + if (description.type === 'offer' && !rejected) { + transceiver = pc.transceivers[sdpMLineIndex] || + pc._createTransceiver(kind); + transceiver.mid = mid; + + if (!transceiver.iceGatherer) { + transceiver.iceGatherer = pc._createIceGatherer(sdpMLineIndex, + usingBundle); + } + + if (cands.length && transceiver.iceTransport.state === 'new') { + if (isComplete && (!usingBundle || sdpMLineIndex === 0)) { + transceiver.iceTransport.setRemoteCandidates(cands); + } else { + cands.forEach(function(candidate) { + maybeAddCandidate(transceiver.iceTransport, candidate); + }); + } + } + + localCapabilities = window.RTCRtpReceiver.getCapabilities(kind); + + // filter RTX until additional stuff needed for RTX is implemented + // in adapter.js + if (edgeVersion < 15019) { + localCapabilities.codecs = localCapabilities.codecs.filter( + function(codec) { + return codec.name !== 'rtx'; + }); + } + + sendEncodingParameters = transceiver.sendEncodingParameters || [{ + ssrc: (2 * sdpMLineIndex + 2) * 1001 + }]; + + // TODO: rewrite to use http://w3c.github.io/webrtc-pc/#set-associated-remote-streams + var isNewTrack = false; + if (direction === 'sendrecv' || direction === 'sendonly') { + isNewTrack = !transceiver.rtpReceiver; + rtpReceiver = transceiver.rtpReceiver || + new window.RTCRtpReceiver(transceiver.dtlsTransport, kind); + + if (isNewTrack) { + var stream; + track = rtpReceiver.track; + // FIXME: does not work with Plan B. + if (remoteMsid && remoteMsid.stream === '-') ; else if (remoteMsid) { + if (!streams[remoteMsid.stream]) { + streams[remoteMsid.stream] = new window.MediaStream(); + Object.defineProperty(streams[remoteMsid.stream], 'id', { + get: function() { + return remoteMsid.stream; + } + }); + } + Object.defineProperty(track, 'id', { + get: function() { + return remoteMsid.track; + } + }); + stream = streams[remoteMsid.stream]; + } else { + if (!streams.default) { + streams.default = new window.MediaStream(); + } + stream = streams.default; + } + if (stream) { + addTrackToStreamAndFireEvent(track, stream); + transceiver.associatedRemoteMediaStreams.push(stream); + } + receiverList.push([track, rtpReceiver, stream]); + } + } else if (transceiver.rtpReceiver && transceiver.rtpReceiver.track) { + transceiver.associatedRemoteMediaStreams.forEach(function(s) { + var nativeTrack = s.getTracks().find(function(t) { + return t.id === transceiver.rtpReceiver.track.id; + }); + if (nativeTrack) { + removeTrackFromStreamAndFireEvent(nativeTrack, s); + } + }); + transceiver.associatedRemoteMediaStreams = []; + } + + transceiver.localCapabilities = localCapabilities; + transceiver.remoteCapabilities = remoteCapabilities; + transceiver.rtpReceiver = rtpReceiver; + transceiver.rtcpParameters = rtcpParameters; + transceiver.sendEncodingParameters = sendEncodingParameters; + transceiver.recvEncodingParameters = recvEncodingParameters; + + // Start the RTCRtpReceiver now. The RTPSender is started in + // setLocalDescription. + pc._transceive(pc.transceivers[sdpMLineIndex], + false, + isNewTrack); + } else if (description.type === 'answer' && !rejected) { + transceiver = pc.transceivers[sdpMLineIndex]; + iceGatherer = transceiver.iceGatherer; + iceTransport = transceiver.iceTransport; + dtlsTransport = transceiver.dtlsTransport; + rtpReceiver = transceiver.rtpReceiver; + sendEncodingParameters = transceiver.sendEncodingParameters; + localCapabilities = transceiver.localCapabilities; + + pc.transceivers[sdpMLineIndex].recvEncodingParameters = + recvEncodingParameters; + pc.transceivers[sdpMLineIndex].remoteCapabilities = + remoteCapabilities; + pc.transceivers[sdpMLineIndex].rtcpParameters = rtcpParameters; + + if (cands.length && iceTransport.state === 'new') { + if ((isIceLite || isComplete) && + (!usingBundle || sdpMLineIndex === 0)) { + iceTransport.setRemoteCandidates(cands); + } else { + cands.forEach(function(candidate) { + maybeAddCandidate(transceiver.iceTransport, candidate); + }); + } + } + + if (!usingBundle || sdpMLineIndex === 0) { + if (iceTransport.state === 'new') { + iceTransport.start(iceGatherer, remoteIceParameters, + 'controlling'); + } + if (dtlsTransport.state === 'new') { + dtlsTransport.start(remoteDtlsParameters); + } + } + + // If the offer contained RTX but the answer did not, + // remove RTX from sendEncodingParameters. + var commonCapabilities = getCommonCapabilities( + transceiver.localCapabilities, + transceiver.remoteCapabilities); + + var hasRtx = commonCapabilities.codecs.filter(function(c) { + return c.name.toLowerCase() === 'rtx'; + }).length; + if (!hasRtx && transceiver.sendEncodingParameters[0].rtx) { + delete transceiver.sendEncodingParameters[0].rtx; + } + + pc._transceive(transceiver, + direction === 'sendrecv' || direction === 'recvonly', + direction === 'sendrecv' || direction === 'sendonly'); + + // TODO: rewrite to use http://w3c.github.io/webrtc-pc/#set-associated-remote-streams + if (rtpReceiver && + (direction === 'sendrecv' || direction === 'sendonly')) { + track = rtpReceiver.track; + if (remoteMsid) { + if (!streams[remoteMsid.stream]) { + streams[remoteMsid.stream] = new window.MediaStream(); + } + addTrackToStreamAndFireEvent(track, streams[remoteMsid.stream]); + receiverList.push([track, rtpReceiver, streams[remoteMsid.stream]]); + } else { + if (!streams.default) { + streams.default = new window.MediaStream(); + } + addTrackToStreamAndFireEvent(track, streams.default); + receiverList.push([track, rtpReceiver, streams.default]); + } + } else { + // FIXME: actually the receiver should be created later. + delete transceiver.rtpReceiver; + } + } + }); + + if (pc._dtlsRole === undefined) { + pc._dtlsRole = description.type === 'offer' ? 'active' : 'passive'; + } + + pc._remoteDescription = { + type: description.type, + sdp: description.sdp + }; + if (description.type === 'offer') { + pc._updateSignalingState('have-remote-offer'); + } else { + pc._updateSignalingState('stable'); + } + Object.keys(streams).forEach(function(sid) { + var stream = streams[sid]; + if (stream.getTracks().length) { + if (pc.remoteStreams.indexOf(stream) === -1) { + pc.remoteStreams.push(stream); + var event = new Event('addstream'); + event.stream = stream; + window.setTimeout(function() { + pc._dispatchEvent('addstream', event); + }); + } + + receiverList.forEach(function(item) { + var track = item[0]; + var receiver = item[1]; + if (stream.id !== item[2].id) { + return; + } + fireAddTrack(pc, track, receiver, [stream]); + }); + } + }); + receiverList.forEach(function(item) { + if (item[2]) { + return; + } + fireAddTrack(pc, item[0], item[1], []); + }); + + // check whether addIceCandidate({}) was called within four seconds after + // setRemoteDescription. + window.setTimeout(function() { + if (!(pc && pc.transceivers)) { + return; + } + pc.transceivers.forEach(function(transceiver) { + if (transceiver.iceTransport && + transceiver.iceTransport.state === 'new' && + transceiver.iceTransport.getRemoteCandidates().length > 0) { + console.warn('Timeout for addRemoteCandidate. Consider sending ' + + 'an end-of-candidates notification'); + transceiver.iceTransport.addRemoteCandidate({}); + } + }); + }, 4000); + + return Promise.resolve(); + }; + + RTCPeerConnection.prototype.close = function() { + this.transceivers.forEach(function(transceiver) { + /* not yet + if (transceiver.iceGatherer) { + transceiver.iceGatherer.close(); + } + */ + if (transceiver.iceTransport) { + transceiver.iceTransport.stop(); + } + if (transceiver.dtlsTransport) { + transceiver.dtlsTransport.stop(); + } + if (transceiver.rtpSender) { + transceiver.rtpSender.stop(); + } + if (transceiver.rtpReceiver) { + transceiver.rtpReceiver.stop(); + } + }); + // FIXME: clean up tracks, local streams, remote streams, etc + this._isClosed = true; + this._updateSignalingState('closed'); + }; + + // Update the signaling state. + RTCPeerConnection.prototype._updateSignalingState = function(newState) { + this.signalingState = newState; + var event = new Event('signalingstatechange'); + this._dispatchEvent('signalingstatechange', event); + }; + + // Determine whether to fire the negotiationneeded event. + RTCPeerConnection.prototype._maybeFireNegotiationNeeded = function() { + var pc = this; + if (this.signalingState !== 'stable' || this.needNegotiation === true) { + return; + } + this.needNegotiation = true; + window.setTimeout(function() { + if (pc.needNegotiation) { + pc.needNegotiation = false; + var event = new Event('negotiationneeded'); + pc._dispatchEvent('negotiationneeded', event); + } + }, 0); + }; + + // Update the ice connection state. + RTCPeerConnection.prototype._updateIceConnectionState = function() { + var newState; + var states = { + 'new': 0, + closed: 0, + checking: 0, + connected: 0, + completed: 0, + disconnected: 0, + failed: 0 + }; + this.transceivers.forEach(function(transceiver) { + if (transceiver.iceTransport && !transceiver.rejected) { + states[transceiver.iceTransport.state]++; + } + }); + + newState = 'new'; + if (states.failed > 0) { + newState = 'failed'; + } else if (states.checking > 0) { + newState = 'checking'; + } else if (states.disconnected > 0) { + newState = 'disconnected'; + } else if (states.new > 0) { + newState = 'new'; + } else if (states.connected > 0) { + newState = 'connected'; + } else if (states.completed > 0) { + newState = 'completed'; + } + + if (newState !== this.iceConnectionState) { + this.iceConnectionState = newState; + var event = new Event('iceconnectionstatechange'); + this._dispatchEvent('iceconnectionstatechange', event); + } + }; + + // Update the connection state. + RTCPeerConnection.prototype._updateConnectionState = function() { + var newState; + var states = { + 'new': 0, + closed: 0, + connecting: 0, + connected: 0, + completed: 0, + disconnected: 0, + failed: 0 + }; + this.transceivers.forEach(function(transceiver) { + if (transceiver.iceTransport && transceiver.dtlsTransport && + !transceiver.rejected) { + states[transceiver.iceTransport.state]++; + states[transceiver.dtlsTransport.state]++; + } + }); + // ICETransport.completed and connected are the same for this purpose. + states.connected += states.completed; + + newState = 'new'; + if (states.failed > 0) { + newState = 'failed'; + } else if (states.connecting > 0) { + newState = 'connecting'; + } else if (states.disconnected > 0) { + newState = 'disconnected'; + } else if (states.new > 0) { + newState = 'new'; + } else if (states.connected > 0) { + newState = 'connected'; + } + + if (newState !== this.connectionState) { + this.connectionState = newState; + var event = new Event('connectionstatechange'); + this._dispatchEvent('connectionstatechange', event); + } + }; + + RTCPeerConnection.prototype.createOffer = function() { + var pc = this; + + if (pc._isClosed) { + return Promise.reject(makeError('InvalidStateError', + 'Can not call createOffer after close')); + } + + var numAudioTracks = pc.transceivers.filter(function(t) { + return t.kind === 'audio'; + }).length; + var numVideoTracks = pc.transceivers.filter(function(t) { + return t.kind === 'video'; + }).length; + + // Determine number of audio and video tracks we need to send/recv. + var offerOptions = arguments[0]; + if (offerOptions) { + // Reject Chrome legacy constraints. + if (offerOptions.mandatory || offerOptions.optional) { + throw new TypeError( + 'Legacy mandatory/optional constraints not supported.'); + } + if (offerOptions.offerToReceiveAudio !== undefined) { + if (offerOptions.offerToReceiveAudio === true) { + numAudioTracks = 1; + } else if (offerOptions.offerToReceiveAudio === false) { + numAudioTracks = 0; + } else { + numAudioTracks = offerOptions.offerToReceiveAudio; + } + } + if (offerOptions.offerToReceiveVideo !== undefined) { + if (offerOptions.offerToReceiveVideo === true) { + numVideoTracks = 1; + } else if (offerOptions.offerToReceiveVideo === false) { + numVideoTracks = 0; + } else { + numVideoTracks = offerOptions.offerToReceiveVideo; + } + } + } + + pc.transceivers.forEach(function(transceiver) { + if (transceiver.kind === 'audio') { + numAudioTracks--; + if (numAudioTracks < 0) { + transceiver.wantReceive = false; + } + } else if (transceiver.kind === 'video') { + numVideoTracks--; + if (numVideoTracks < 0) { + transceiver.wantReceive = false; + } + } + }); + + // Create M-lines for recvonly streams. + while (numAudioTracks > 0 || numVideoTracks > 0) { + if (numAudioTracks > 0) { + pc._createTransceiver('audio'); + numAudioTracks--; + } + if (numVideoTracks > 0) { + pc._createTransceiver('video'); + numVideoTracks--; + } + } + + var sdp$1 = sdp.writeSessionBoilerplate(pc._sdpSessionId, + pc._sdpSessionVersion++); + pc.transceivers.forEach(function(transceiver, sdpMLineIndex) { + // For each track, create an ice gatherer, ice transport, + // dtls transport, potentially rtpsender and rtpreceiver. + var track = transceiver.track; + var kind = transceiver.kind; + var mid = transceiver.mid || sdp.generateIdentifier(); + transceiver.mid = mid; + + if (!transceiver.iceGatherer) { + transceiver.iceGatherer = pc._createIceGatherer(sdpMLineIndex, + pc.usingBundle); + } + + var localCapabilities = window.RTCRtpSender.getCapabilities(kind); + // filter RTX until additional stuff needed for RTX is implemented + // in adapter.js + if (edgeVersion < 15019) { + localCapabilities.codecs = localCapabilities.codecs.filter( + function(codec) { + return codec.name !== 'rtx'; + }); + } + localCapabilities.codecs.forEach(function(codec) { + // work around https://bugs.chromium.org/p/webrtc/issues/detail?id=6552 + // by adding level-asymmetry-allowed=1 + if (codec.name === 'H264' && + codec.parameters['level-asymmetry-allowed'] === undefined) { + codec.parameters['level-asymmetry-allowed'] = '1'; + } + + // for subsequent offers, we might have to re-use the payload + // type of the last offer. + if (transceiver.remoteCapabilities && + transceiver.remoteCapabilities.codecs) { + transceiver.remoteCapabilities.codecs.forEach(function(remoteCodec) { + if (codec.name.toLowerCase() === remoteCodec.name.toLowerCase() && + codec.clockRate === remoteCodec.clockRate) { + codec.preferredPayloadType = remoteCodec.payloadType; + } + }); + } + }); + localCapabilities.headerExtensions.forEach(function(hdrExt) { + var remoteExtensions = transceiver.remoteCapabilities && + transceiver.remoteCapabilities.headerExtensions || []; + remoteExtensions.forEach(function(rHdrExt) { + if (hdrExt.uri === rHdrExt.uri) { + hdrExt.id = rHdrExt.id; + } + }); + }); + + // generate an ssrc now, to be used later in rtpSender.send + var sendEncodingParameters = transceiver.sendEncodingParameters || [{ + ssrc: (2 * sdpMLineIndex + 1) * 1001 + }]; + if (track) { + // add RTX + if (edgeVersion >= 15019 && kind === 'video' && + !sendEncodingParameters[0].rtx) { + sendEncodingParameters[0].rtx = { + ssrc: sendEncodingParameters[0].ssrc + 1 + }; + } + } + + if (transceiver.wantReceive) { + transceiver.rtpReceiver = new window.RTCRtpReceiver( + transceiver.dtlsTransport, kind); + } + + transceiver.localCapabilities = localCapabilities; + transceiver.sendEncodingParameters = sendEncodingParameters; + }); + + // always offer BUNDLE and dispose on return if not supported. + if (pc._config.bundlePolicy !== 'max-compat') { + sdp$1 += 'a=group:BUNDLE ' + pc.transceivers.map(function(t) { + return t.mid; + }).join(' ') + '\r\n'; + } + sdp$1 += 'a=ice-options:trickle\r\n'; + + pc.transceivers.forEach(function(transceiver, sdpMLineIndex) { + sdp$1 += writeMediaSection(transceiver, transceiver.localCapabilities, + 'offer', transceiver.stream, pc._dtlsRole); + sdp$1 += 'a=rtcp-rsize\r\n'; + + if (transceiver.iceGatherer && pc.iceGatheringState !== 'new' && + (sdpMLineIndex === 0 || !pc.usingBundle)) { + transceiver.iceGatherer.getLocalCandidates().forEach(function(cand) { + cand.component = 1; + sdp$1 += 'a=' + sdp.writeCandidate(cand) + '\r\n'; + }); + + if (transceiver.iceGatherer.state === 'completed') { + sdp$1 += 'a=end-of-candidates\r\n'; + } + } + }); + + var desc = new window.RTCSessionDescription({ + type: 'offer', + sdp: sdp$1 + }); + return Promise.resolve(desc); + }; + + RTCPeerConnection.prototype.createAnswer = function() { + var pc = this; + + if (pc._isClosed) { + return Promise.reject(makeError('InvalidStateError', + 'Can not call createAnswer after close')); + } + + if (!(pc.signalingState === 'have-remote-offer' || + pc.signalingState === 'have-local-pranswer')) { + return Promise.reject(makeError('InvalidStateError', + 'Can not call createAnswer in signalingState ' + pc.signalingState)); + } + + var sdp$1 = sdp.writeSessionBoilerplate(pc._sdpSessionId, + pc._sdpSessionVersion++); + if (pc.usingBundle) { + sdp$1 += 'a=group:BUNDLE ' + pc.transceivers.map(function(t) { + return t.mid; + }).join(' ') + '\r\n'; + } + sdp$1 += 'a=ice-options:trickle\r\n'; + + var mediaSectionsInOffer = sdp.getMediaSections( + pc._remoteDescription.sdp).length; + pc.transceivers.forEach(function(transceiver, sdpMLineIndex) { + if (sdpMLineIndex + 1 > mediaSectionsInOffer) { + return; + } + if (transceiver.rejected) { + if (transceiver.kind === 'application') { + if (transceiver.protocol === 'DTLS/SCTP') { // legacy fmt + sdp$1 += 'm=application 0 DTLS/SCTP 5000\r\n'; + } else { + sdp$1 += 'm=application 0 ' + transceiver.protocol + + ' webrtc-datachannel\r\n'; + } + } else if (transceiver.kind === 'audio') { + sdp$1 += 'm=audio 0 UDP/TLS/RTP/SAVPF 0\r\n' + + 'a=rtpmap:0 PCMU/8000\r\n'; + } else if (transceiver.kind === 'video') { + sdp$1 += 'm=video 0 UDP/TLS/RTP/SAVPF 120\r\n' + + 'a=rtpmap:120 VP8/90000\r\n'; + } + sdp$1 += 'c=IN IP4 0.0.0.0\r\n' + + 'a=inactive\r\n' + + 'a=mid:' + transceiver.mid + '\r\n'; + return; + } + + // FIXME: look at direction. + if (transceiver.stream) { + var localTrack; + if (transceiver.kind === 'audio') { + localTrack = transceiver.stream.getAudioTracks()[0]; + } else if (transceiver.kind === 'video') { + localTrack = transceiver.stream.getVideoTracks()[0]; + } + if (localTrack) { + // add RTX + if (edgeVersion >= 15019 && transceiver.kind === 'video' && + !transceiver.sendEncodingParameters[0].rtx) { + transceiver.sendEncodingParameters[0].rtx = { + ssrc: transceiver.sendEncodingParameters[0].ssrc + 1 + }; + } + } + } + + // Calculate intersection of capabilities. + var commonCapabilities = getCommonCapabilities( + transceiver.localCapabilities, + transceiver.remoteCapabilities); + + var hasRtx = commonCapabilities.codecs.filter(function(c) { + return c.name.toLowerCase() === 'rtx'; + }).length; + if (!hasRtx && transceiver.sendEncodingParameters[0].rtx) { + delete transceiver.sendEncodingParameters[0].rtx; + } + + sdp$1 += writeMediaSection(transceiver, commonCapabilities, + 'answer', transceiver.stream, pc._dtlsRole); + if (transceiver.rtcpParameters && + transceiver.rtcpParameters.reducedSize) { + sdp$1 += 'a=rtcp-rsize\r\n'; + } + }); + + var desc = new window.RTCSessionDescription({ + type: 'answer', + sdp: sdp$1 + }); + return Promise.resolve(desc); + }; + + RTCPeerConnection.prototype.addIceCandidate = function(candidate) { + var pc = this; + var sections; + if (candidate && !(candidate.sdpMLineIndex !== undefined || + candidate.sdpMid)) { + return Promise.reject(new TypeError('sdpMLineIndex or sdpMid required')); + } + + // TODO: needs to go into ops queue. + return new Promise(function(resolve, reject) { + if (!pc._remoteDescription) { + return reject(makeError('InvalidStateError', + 'Can not add ICE candidate without a remote description')); + } else if (!candidate || candidate.candidate === '') { + for (var j = 0; j < pc.transceivers.length; j++) { + if (pc.transceivers[j].rejected) { + continue; + } + pc.transceivers[j].iceTransport.addRemoteCandidate({}); + sections = sdp.getMediaSections(pc._remoteDescription.sdp); + sections[j] += 'a=end-of-candidates\r\n'; + pc._remoteDescription.sdp = + sdp.getDescription(pc._remoteDescription.sdp) + + sections.join(''); + if (pc.usingBundle) { + break; + } + } + } else { + var sdpMLineIndex = candidate.sdpMLineIndex; + if (candidate.sdpMid) { + for (var i = 0; i < pc.transceivers.length; i++) { + if (pc.transceivers[i].mid === candidate.sdpMid) { + sdpMLineIndex = i; + break; + } + } + } + var transceiver = pc.transceivers[sdpMLineIndex]; + if (transceiver) { + if (transceiver.rejected) { + return resolve(); + } + var cand = Object.keys(candidate.candidate).length > 0 ? + sdp.parseCandidate(candidate.candidate) : {}; + // Ignore Chrome's invalid candidates since Edge does not like them. + if (cand.protocol === 'tcp' && (cand.port === 0 || cand.port === 9)) { + return resolve(); + } + // Ignore RTCP candidates, we assume RTCP-MUX. + if (cand.component && cand.component !== 1) { + return resolve(); + } + // when using bundle, avoid adding candidates to the wrong + // ice transport. And avoid adding candidates added in the SDP. + if (sdpMLineIndex === 0 || (sdpMLineIndex > 0 && + transceiver.iceTransport !== pc.transceivers[0].iceTransport)) { + if (!maybeAddCandidate(transceiver.iceTransport, cand)) { + return reject(makeError('OperationError', + 'Can not add ICE candidate')); + } + } + + // update the remoteDescription. + var candidateString = candidate.candidate.trim(); + if (candidateString.indexOf('a=') === 0) { + candidateString = candidateString.substr(2); + } + sections = sdp.getMediaSections(pc._remoteDescription.sdp); + sections[sdpMLineIndex] += 'a=' + + (cand.type ? candidateString : 'end-of-candidates') + + '\r\n'; + pc._remoteDescription.sdp = + sdp.getDescription(pc._remoteDescription.sdp) + + sections.join(''); + } else { + return reject(makeError('OperationError', + 'Can not add ICE candidate')); + } + } + resolve(); + }); + }; + + RTCPeerConnection.prototype.getStats = function(selector) { + if (selector && selector instanceof window.MediaStreamTrack) { + var senderOrReceiver = null; + this.transceivers.forEach(function(transceiver) { + if (transceiver.rtpSender && + transceiver.rtpSender.track === selector) { + senderOrReceiver = transceiver.rtpSender; + } else if (transceiver.rtpReceiver && + transceiver.rtpReceiver.track === selector) { + senderOrReceiver = transceiver.rtpReceiver; + } + }); + if (!senderOrReceiver) { + throw makeError('InvalidAccessError', 'Invalid selector.'); + } + return senderOrReceiver.getStats(); + } + + var promises = []; + this.transceivers.forEach(function(transceiver) { + ['rtpSender', 'rtpReceiver', 'iceGatherer', 'iceTransport', + 'dtlsTransport'].forEach(function(method) { + if (transceiver[method]) { + promises.push(transceiver[method].getStats()); + } + }); + }); + return Promise.all(promises).then(function(allStats) { + var results = new Map(); + allStats.forEach(function(stats) { + stats.forEach(function(stat) { + results.set(stat.id, stat); + }); + }); + return results; + }); + }; + + // fix low-level stat names and return Map instead of object. + var ortcObjects = ['RTCRtpSender', 'RTCRtpReceiver', 'RTCIceGatherer', + 'RTCIceTransport', 'RTCDtlsTransport']; + ortcObjects.forEach(function(ortcObjectName) { + var obj = window[ortcObjectName]; + if (obj && obj.prototype && obj.prototype.getStats) { + var nativeGetstats = obj.prototype.getStats; + obj.prototype.getStats = function() { + return nativeGetstats.apply(this) + .then(function(nativeStats) { + var mapStats = new Map(); + Object.keys(nativeStats).forEach(function(id) { + nativeStats[id].type = fixStatsType(nativeStats[id]); + mapStats.set(id, nativeStats[id]); + }); + return mapStats; + }); + }; + } + }); + + // legacy callback shims. Should be moved to adapter.js some days. + var methods = ['createOffer', 'createAnswer']; + methods.forEach(function(method) { + var nativeMethod = RTCPeerConnection.prototype[method]; + RTCPeerConnection.prototype[method] = function() { + var args = arguments; + if (typeof args[0] === 'function' || + typeof args[1] === 'function') { // legacy + return nativeMethod.apply(this, [arguments[2]]) + .then(function(description) { + if (typeof args[0] === 'function') { + args[0].apply(null, [description]); + } + }, function(error) { + if (typeof args[1] === 'function') { + args[1].apply(null, [error]); + } + }); + } + return nativeMethod.apply(this, arguments); + }; + }); + + methods = ['setLocalDescription', 'setRemoteDescription', 'addIceCandidate']; + methods.forEach(function(method) { + var nativeMethod = RTCPeerConnection.prototype[method]; + RTCPeerConnection.prototype[method] = function() { + var args = arguments; + if (typeof args[1] === 'function' || + typeof args[2] === 'function') { // legacy + return nativeMethod.apply(this, arguments) + .then(function() { + if (typeof args[1] === 'function') { + args[1].apply(null); + } + }, function(error) { + if (typeof args[2] === 'function') { + args[2].apply(null, [error]); + } + }); + } + return nativeMethod.apply(this, arguments); + }; + }); + + // getStats is special. It doesn't have a spec legacy method yet we support + // getStats(something, cb) without error callbacks. + ['getStats'].forEach(function(method) { + var nativeMethod = RTCPeerConnection.prototype[method]; + RTCPeerConnection.prototype[method] = function() { + var args = arguments; + if (typeof args[1] === 'function') { + return nativeMethod.apply(this, arguments) + .then(function() { + if (typeof args[1] === 'function') { + args[1].apply(null); + } + }); + } + return nativeMethod.apply(this, arguments); + }; + }); + + return RTCPeerConnection; + }; + + /* + * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. + */ + + function shimGetUserMedia$2(window) { + const navigator = window && window.navigator; + + const shimError_ = function(e) { + return { + name: {PermissionDeniedError: 'NotAllowedError'}[e.name] || e.name, + message: e.message, + constraint: e.constraint, + toString() { + return this.name; + } + }; + }; + + // getUserMedia error shim. + const origGetUserMedia = navigator.mediaDevices.getUserMedia. + bind(navigator.mediaDevices); + navigator.mediaDevices.getUserMedia = function(c) { + return origGetUserMedia(c).catch(e => Promise.reject(shimError_(e))); + }; + } + + /* + * Copyright (c) 2018 The adapter.js project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. + */ + + function shimGetDisplayMedia$1(window) { + if (!('getDisplayMedia' in window.navigator)) { + return; + } + if (!(window.navigator.mediaDevices)) { + return; + } + if (window.navigator.mediaDevices && + 'getDisplayMedia' in window.navigator.mediaDevices) { + return; + } + window.navigator.mediaDevices.getDisplayMedia = + window.navigator.getDisplayMedia.bind(window.navigator); + } + + /* + * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. + */ + + function shimPeerConnection$1(window, browserDetails) { + if (window.RTCIceGatherer) { + if (!window.RTCIceCandidate) { + window.RTCIceCandidate = function RTCIceCandidate(args) { + return args; + }; + } + if (!window.RTCSessionDescription) { + window.RTCSessionDescription = function RTCSessionDescription(args) { + return args; + }; + } + // this adds an additional event listener to MediaStrackTrack that signals + // when a tracks enabled property was changed. Workaround for a bug in + // addStream, see below. No longer required in 15025+ + if (browserDetails.version < 15025) { + const origMSTEnabled = Object.getOwnPropertyDescriptor( + window.MediaStreamTrack.prototype, 'enabled'); + Object.defineProperty(window.MediaStreamTrack.prototype, 'enabled', { + set(value) { + origMSTEnabled.set.call(this, value); + const ev = new Event('enabled'); + ev.enabled = value; + this.dispatchEvent(ev); + } + }); + } + } + + // ORTC defines the DTMF sender a bit different. + // https://github.com/w3c/ortc/issues/714 + if (window.RTCRtpSender && !('dtmf' in window.RTCRtpSender.prototype)) { + Object.defineProperty(window.RTCRtpSender.prototype, 'dtmf', { + get() { + if (this._dtmf === undefined) { + if (this.track.kind === 'audio') { + this._dtmf = new window.RTCDtmfSender(this); + } else if (this.track.kind === 'video') { + this._dtmf = null; + } + } + return this._dtmf; + } + }); + } + // Edge currently only implements the RTCDtmfSender, not the + // RTCDTMFSender alias. See http://draft.ortc.org/#rtcdtmfsender2* + if (window.RTCDtmfSender && !window.RTCDTMFSender) { + window.RTCDTMFSender = window.RTCDtmfSender; + } + + const RTCPeerConnectionShim = rtcpeerconnection(window, + browserDetails.version); + window.RTCPeerConnection = function RTCPeerConnection(config) { + if (config && config.iceServers) { + config.iceServers = filterIceServers$1(config.iceServers, + browserDetails.version); + log$1('ICE servers after filtering:', config.iceServers); + } + return new RTCPeerConnectionShim(config); + }; + window.RTCPeerConnection.prototype = RTCPeerConnectionShim.prototype; + } + + function shimReplaceTrack(window) { + // ORTC has replaceTrack -- https://github.com/w3c/ortc/issues/614 + if (window.RTCRtpSender && + !('replaceTrack' in window.RTCRtpSender.prototype)) { + window.RTCRtpSender.prototype.replaceTrack = + window.RTCRtpSender.prototype.setTrack; + } + } + + var edgeShim = /*#__PURE__*/Object.freeze({ + __proto__: null, + shimPeerConnection: shimPeerConnection$1, + shimReplaceTrack: shimReplaceTrack, + shimGetUserMedia: shimGetUserMedia$2, + shimGetDisplayMedia: shimGetDisplayMedia$1 + }); + + /* + * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. + */ + + function shimGetUserMedia$1(window, browserDetails) { + const navigator = window && window.navigator; + const MediaStreamTrack = window && window.MediaStreamTrack; + + navigator.getUserMedia = function(constraints, onSuccess, onError) { + // Replace Firefox 44+'s deprecation warning with unprefixed version. + deprecated('navigator.getUserMedia', + 'navigator.mediaDevices.getUserMedia'); + navigator.mediaDevices.getUserMedia(constraints).then(onSuccess, onError); + }; + + if (!(browserDetails.version > 55 && + 'autoGainControl' in navigator.mediaDevices.getSupportedConstraints())) { + const remap = function(obj, a, b) { + if (a in obj && !(b in obj)) { + obj[b] = obj[a]; + delete obj[a]; + } + }; + + const nativeGetUserMedia = navigator.mediaDevices.getUserMedia. + bind(navigator.mediaDevices); + navigator.mediaDevices.getUserMedia = function(c) { + if (typeof c === 'object' && typeof c.audio === 'object') { + c = JSON.parse(JSON.stringify(c)); + remap(c.audio, 'autoGainControl', 'mozAutoGainControl'); + remap(c.audio, 'noiseSuppression', 'mozNoiseSuppression'); + } + return nativeGetUserMedia(c); + }; + + if (MediaStreamTrack && MediaStreamTrack.prototype.getSettings) { + const nativeGetSettings = MediaStreamTrack.prototype.getSettings; + MediaStreamTrack.prototype.getSettings = function() { + const obj = nativeGetSettings.apply(this, arguments); + remap(obj, 'mozAutoGainControl', 'autoGainControl'); + remap(obj, 'mozNoiseSuppression', 'noiseSuppression'); + return obj; + }; + } + + if (MediaStreamTrack && MediaStreamTrack.prototype.applyConstraints) { + const nativeApplyConstraints = + MediaStreamTrack.prototype.applyConstraints; + MediaStreamTrack.prototype.applyConstraints = function(c) { + if (this.kind === 'audio' && typeof c === 'object') { + c = JSON.parse(JSON.stringify(c)); + remap(c, 'autoGainControl', 'mozAutoGainControl'); + remap(c, 'noiseSuppression', 'mozNoiseSuppression'); + } + return nativeApplyConstraints.apply(this, [c]); + }; + } + } + } + + /* + * Copyright (c) 2018 The adapter.js project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. + */ + + function shimGetDisplayMedia(window, preferredMediaSource) { + if (window.navigator.mediaDevices && + 'getDisplayMedia' in window.navigator.mediaDevices) { + return; + } + if (!(window.navigator.mediaDevices)) { + return; + } + window.navigator.mediaDevices.getDisplayMedia = + function getDisplayMedia(constraints) { + if (!(constraints && constraints.video)) { + const err = new DOMException('getDisplayMedia without video ' + + 'constraints is undefined'); + err.name = 'NotFoundError'; + // from https://heycam.github.io/webidl/#idl-DOMException-error-names + err.code = 8; + return Promise.reject(err); + } + if (constraints.video === true) { + constraints.video = {mediaSource: preferredMediaSource}; + } else { + constraints.video.mediaSource = preferredMediaSource; + } + return window.navigator.mediaDevices.getUserMedia(constraints); + }; + } + + /* + * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. + */ + + function shimOnTrack(window) { + if (typeof window === 'object' && window.RTCTrackEvent && + ('receiver' in window.RTCTrackEvent.prototype) && + !('transceiver' in window.RTCTrackEvent.prototype)) { + Object.defineProperty(window.RTCTrackEvent.prototype, 'transceiver', { + get() { + return {receiver: this.receiver}; + } + }); + } + } + + function shimPeerConnection(window, browserDetails) { + if (typeof window !== 'object' || + !(window.RTCPeerConnection || window.mozRTCPeerConnection)) { + return; // probably media.peerconnection.enabled=false in about:config + } + if (!window.RTCPeerConnection && window.mozRTCPeerConnection) { + // very basic support for old versions. + window.RTCPeerConnection = window.mozRTCPeerConnection; + } + + if (browserDetails.version < 53) { + // shim away need for obsolete RTCIceCandidate/RTCSessionDescription. + ['setLocalDescription', 'setRemoteDescription', 'addIceCandidate'] + .forEach(function(method) { + const nativeMethod = window.RTCPeerConnection.prototype[method]; + const methodObj = {[method]() { + arguments[0] = new ((method === 'addIceCandidate') ? + window.RTCIceCandidate : + window.RTCSessionDescription)(arguments[0]); + return nativeMethod.apply(this, arguments); + }}; + window.RTCPeerConnection.prototype[method] = methodObj[method]; + }); + } + + const modernStatsTypes = { + inboundrtp: 'inbound-rtp', + outboundrtp: 'outbound-rtp', + candidatepair: 'candidate-pair', + localcandidate: 'local-candidate', + remotecandidate: 'remote-candidate' + }; + + const nativeGetStats = window.RTCPeerConnection.prototype.getStats; + window.RTCPeerConnection.prototype.getStats = function getStats() { + const [selector, onSucc, onErr] = arguments; + return nativeGetStats.apply(this, [selector || null]) + .then(stats => { + if (browserDetails.version < 53 && !onSucc) { + // Shim only promise getStats with spec-hyphens in type names + // Leave callback version alone; misc old uses of forEach before Map + try { + stats.forEach(stat => { + stat.type = modernStatsTypes[stat.type] || stat.type; + }); + } catch (e) { + if (e.name !== 'TypeError') { + throw e; + } + // Avoid TypeError: "type" is read-only, in old versions. 34-43ish + stats.forEach((stat, i) => { + stats.set(i, Object.assign({}, stat, { + type: modernStatsTypes[stat.type] || stat.type + })); + }); + } + } + return stats; + }) + .then(onSucc, onErr); + }; + } + + function shimSenderGetStats(window) { + if (!(typeof window === 'object' && window.RTCPeerConnection && + window.RTCRtpSender)) { + return; + } + if (window.RTCRtpSender && 'getStats' in window.RTCRtpSender.prototype) { + return; + } + const origGetSenders = window.RTCPeerConnection.prototype.getSenders; + if (origGetSenders) { + window.RTCPeerConnection.prototype.getSenders = function getSenders() { + const senders = origGetSenders.apply(this, []); + senders.forEach(sender => sender._pc = this); + return senders; + }; + } + + const origAddTrack = window.RTCPeerConnection.prototype.addTrack; + if (origAddTrack) { + window.RTCPeerConnection.prototype.addTrack = function addTrack() { + const sender = origAddTrack.apply(this, arguments); + sender._pc = this; + return sender; + }; + } + window.RTCRtpSender.prototype.getStats = function getStats() { + return this.track ? this._pc.getStats(this.track) : + Promise.resolve(new Map()); + }; + } + + function shimReceiverGetStats(window) { + if (!(typeof window === 'object' && window.RTCPeerConnection && + window.RTCRtpSender)) { + return; + } + if (window.RTCRtpSender && 'getStats' in window.RTCRtpReceiver.prototype) { + return; + } + const origGetReceivers = window.RTCPeerConnection.prototype.getReceivers; + if (origGetReceivers) { + window.RTCPeerConnection.prototype.getReceivers = function getReceivers() { + const receivers = origGetReceivers.apply(this, []); + receivers.forEach(receiver => receiver._pc = this); + return receivers; + }; + } + wrapPeerConnectionEvent(window, 'track', e => { + e.receiver._pc = e.srcElement; + return e; + }); + window.RTCRtpReceiver.prototype.getStats = function getStats() { + return this._pc.getStats(this.track); + }; + } + + function shimRemoveStream(window) { + if (!window.RTCPeerConnection || + 'removeStream' in window.RTCPeerConnection.prototype) { + return; + } + window.RTCPeerConnection.prototype.removeStream = + function removeStream(stream) { + deprecated('removeStream', 'removeTrack'); + this.getSenders().forEach(sender => { + if (sender.track && stream.getTracks().includes(sender.track)) { + this.removeTrack(sender); + } + }); + }; + } + + function shimRTCDataChannel(window) { + // rename DataChannel to RTCDataChannel (native fix in FF60): + // https://bugzilla.mozilla.org/show_bug.cgi?id=1173851 + if (window.DataChannel && !window.RTCDataChannel) { + window.RTCDataChannel = window.DataChannel; + } + } + + function shimAddTransceiver(window) { + // https://github.com/webrtcHacks/adapter/issues/998#issuecomment-516921647 + // Firefox ignores the init sendEncodings options passed to addTransceiver + // https://bugzilla.mozilla.org/show_bug.cgi?id=1396918 + if (!(typeof window === 'object' && window.RTCPeerConnection)) { + return; + } + const origAddTransceiver = window.RTCPeerConnection.prototype.addTransceiver; + if (origAddTransceiver) { + window.RTCPeerConnection.prototype.addTransceiver = + function addTransceiver() { + this.setParametersPromises = []; + const initParameters = arguments[1]; + const shouldPerformCheck = initParameters && + 'sendEncodings' in initParameters; + if (shouldPerformCheck) { + // If sendEncodings params are provided, validate grammar + initParameters.sendEncodings.forEach((encodingParam) => { + if ('rid' in encodingParam) { + const ridRegex = /^[a-z0-9]{0,16}$/i; + if (!ridRegex.test(encodingParam.rid)) { + throw new TypeError('Invalid RID value provided.'); + } + } + if ('scaleResolutionDownBy' in encodingParam) { + if (!(parseFloat(encodingParam.scaleResolutionDownBy) >= 1.0)) { + throw new RangeError('scale_resolution_down_by must be >= 1.0'); + } + } + if ('maxFramerate' in encodingParam) { + if (!(parseFloat(encodingParam.maxFramerate) >= 0)) { + throw new RangeError('max_framerate must be >= 0.0'); + } + } + }); + } + const transceiver = origAddTransceiver.apply(this, arguments); + if (shouldPerformCheck) { + // Check if the init options were applied. If not we do this in an + // asynchronous way and save the promise reference in a global object. + // This is an ugly hack, but at the same time is way more robust than + // checking the sender parameters before and after the createOffer + // Also note that after the createoffer we are not 100% sure that + // the params were asynchronously applied so we might miss the + // opportunity to recreate offer. + const {sender} = transceiver; + const params = sender.getParameters(); + if (!('encodings' in params) || + // Avoid being fooled by patched getParameters() below. + (params.encodings.length === 1 && + Object.keys(params.encodings[0]).length === 0)) { + params.encodings = initParameters.sendEncodings; + sender.sendEncodings = initParameters.sendEncodings; + this.setParametersPromises.push(sender.setParameters(params) + .then(() => { + delete sender.sendEncodings; + }).catch(() => { + delete sender.sendEncodings; + }) + ); + } + } + return transceiver; + }; + } + } + + function shimGetParameters(window) { + if (!(typeof window === 'object' && window.RTCRtpSender)) { + return; + } + const origGetParameters = window.RTCRtpSender.prototype.getParameters; + if (origGetParameters) { + window.RTCRtpSender.prototype.getParameters = + function getParameters() { + const params = origGetParameters.apply(this, arguments); + if (!('encodings' in params)) { + params.encodings = [].concat(this.sendEncodings || [{}]); + } + return params; + }; + } + } + + function shimCreateOffer(window) { + // https://github.com/webrtcHacks/adapter/issues/998#issuecomment-516921647 + // Firefox ignores the init sendEncodings options passed to addTransceiver + // https://bugzilla.mozilla.org/show_bug.cgi?id=1396918 + if (!(typeof window === 'object' && window.RTCPeerConnection)) { + return; + } + const origCreateOffer = window.RTCPeerConnection.prototype.createOffer; + window.RTCPeerConnection.prototype.createOffer = function createOffer() { + if (this.setParametersPromises && this.setParametersPromises.length) { + return Promise.all(this.setParametersPromises) + .then(() => { + return origCreateOffer.apply(this, arguments); + }) + .finally(() => { + this.setParametersPromises = []; + }); + } + return origCreateOffer.apply(this, arguments); + }; + } + + function shimCreateAnswer(window) { + // https://github.com/webrtcHacks/adapter/issues/998#issuecomment-516921647 + // Firefox ignores the init sendEncodings options passed to addTransceiver + // https://bugzilla.mozilla.org/show_bug.cgi?id=1396918 + if (!(typeof window === 'object' && window.RTCPeerConnection)) { + return; + } + const origCreateAnswer = window.RTCPeerConnection.prototype.createAnswer; + window.RTCPeerConnection.prototype.createAnswer = function createAnswer() { + if (this.setParametersPromises && this.setParametersPromises.length) { + return Promise.all(this.setParametersPromises) + .then(() => { + return origCreateAnswer.apply(this, arguments); + }) + .finally(() => { + this.setParametersPromises = []; + }); + } + return origCreateAnswer.apply(this, arguments); + }; + } + + var firefoxShim = /*#__PURE__*/Object.freeze({ + __proto__: null, + shimOnTrack: shimOnTrack, + shimPeerConnection: shimPeerConnection, + shimSenderGetStats: shimSenderGetStats, + shimReceiverGetStats: shimReceiverGetStats, + shimRemoveStream: shimRemoveStream, + shimRTCDataChannel: shimRTCDataChannel, + shimAddTransceiver: shimAddTransceiver, + shimGetParameters: shimGetParameters, + shimCreateOffer: shimCreateOffer, + shimCreateAnswer: shimCreateAnswer, + shimGetUserMedia: shimGetUserMedia$1, + shimGetDisplayMedia: shimGetDisplayMedia + }); + + /* + * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. + */ + + function shimLocalStreamsAPI(window) { + if (typeof window !== 'object' || !window.RTCPeerConnection) { + return; + } + if (!('getLocalStreams' in window.RTCPeerConnection.prototype)) { + window.RTCPeerConnection.prototype.getLocalStreams = + function getLocalStreams() { + if (!this._localStreams) { + this._localStreams = []; + } + return this._localStreams; + }; + } + if (!('addStream' in window.RTCPeerConnection.prototype)) { + const _addTrack = window.RTCPeerConnection.prototype.addTrack; + window.RTCPeerConnection.prototype.addStream = function addStream(stream) { + if (!this._localStreams) { + this._localStreams = []; + } + if (!this._localStreams.includes(stream)) { + this._localStreams.push(stream); + } + // Try to emulate Chrome's behaviour of adding in audio-video order. + // Safari orders by track id. + stream.getAudioTracks().forEach(track => _addTrack.call(this, track, + stream)); + stream.getVideoTracks().forEach(track => _addTrack.call(this, track, + stream)); + }; + + window.RTCPeerConnection.prototype.addTrack = + function addTrack(track, ...streams) { + if (streams) { + streams.forEach((stream) => { + if (!this._localStreams) { + this._localStreams = [stream]; + } else if (!this._localStreams.includes(stream)) { + this._localStreams.push(stream); + } + }); + } + return _addTrack.apply(this, arguments); + }; + } + if (!('removeStream' in window.RTCPeerConnection.prototype)) { + window.RTCPeerConnection.prototype.removeStream = + function removeStream(stream) { + if (!this._localStreams) { + this._localStreams = []; + } + const index = this._localStreams.indexOf(stream); + if (index === -1) { + return; + } + this._localStreams.splice(index, 1); + const tracks = stream.getTracks(); + this.getSenders().forEach(sender => { + if (tracks.includes(sender.track)) { + this.removeTrack(sender); + } + }); + }; + } + } + + function shimRemoteStreamsAPI(window) { + if (typeof window !== 'object' || !window.RTCPeerConnection) { + return; + } + if (!('getRemoteStreams' in window.RTCPeerConnection.prototype)) { + window.RTCPeerConnection.prototype.getRemoteStreams = + function getRemoteStreams() { + return this._remoteStreams ? this._remoteStreams : []; + }; + } + if (!('onaddstream' in window.RTCPeerConnection.prototype)) { + Object.defineProperty(window.RTCPeerConnection.prototype, 'onaddstream', { + get() { + return this._onaddstream; + }, + set(f) { + if (this._onaddstream) { + this.removeEventListener('addstream', this._onaddstream); + this.removeEventListener('track', this._onaddstreampoly); + } + this.addEventListener('addstream', this._onaddstream = f); + this.addEventListener('track', this._onaddstreampoly = (e) => { + e.streams.forEach(stream => { + if (!this._remoteStreams) { + this._remoteStreams = []; + } + if (this._remoteStreams.includes(stream)) { + return; + } + this._remoteStreams.push(stream); + const event = new Event('addstream'); + event.stream = stream; + this.dispatchEvent(event); + }); + }); + } + }); + const origSetRemoteDescription = + window.RTCPeerConnection.prototype.setRemoteDescription; + window.RTCPeerConnection.prototype.setRemoteDescription = + function setRemoteDescription() { + const pc = this; + if (!this._onaddstreampoly) { + this.addEventListener('track', this._onaddstreampoly = function(e) { + e.streams.forEach(stream => { + if (!pc._remoteStreams) { + pc._remoteStreams = []; + } + if (pc._remoteStreams.indexOf(stream) >= 0) { + return; + } + pc._remoteStreams.push(stream); + const event = new Event('addstream'); + event.stream = stream; + pc.dispatchEvent(event); + }); + }); + } + return origSetRemoteDescription.apply(pc, arguments); + }; + } + } + + function shimCallbacksAPI(window) { + if (typeof window !== 'object' || !window.RTCPeerConnection) { + return; + } + const prototype = window.RTCPeerConnection.prototype; + const origCreateOffer = prototype.createOffer; + const origCreateAnswer = prototype.createAnswer; + const setLocalDescription = prototype.setLocalDescription; + const setRemoteDescription = prototype.setRemoteDescription; + const addIceCandidate = prototype.addIceCandidate; + + prototype.createOffer = + function createOffer(successCallback, failureCallback) { + const options = (arguments.length >= 2) ? arguments[2] : arguments[0]; + const promise = origCreateOffer.apply(this, [options]); + if (!failureCallback) { + return promise; + } + promise.then(successCallback, failureCallback); + return Promise.resolve(); + }; + + prototype.createAnswer = + function createAnswer(successCallback, failureCallback) { + const options = (arguments.length >= 2) ? arguments[2] : arguments[0]; + const promise = origCreateAnswer.apply(this, [options]); + if (!failureCallback) { + return promise; + } + promise.then(successCallback, failureCallback); + return Promise.resolve(); + }; + + let withCallback = function(description, successCallback, failureCallback) { + const promise = setLocalDescription.apply(this, [description]); + if (!failureCallback) { + return promise; + } + promise.then(successCallback, failureCallback); + return Promise.resolve(); + }; + prototype.setLocalDescription = withCallback; + + withCallback = function(description, successCallback, failureCallback) { + const promise = setRemoteDescription.apply(this, [description]); + if (!failureCallback) { + return promise; + } + promise.then(successCallback, failureCallback); + return Promise.resolve(); + }; + prototype.setRemoteDescription = withCallback; + + withCallback = function(candidate, successCallback, failureCallback) { + const promise = addIceCandidate.apply(this, [candidate]); + if (!failureCallback) { + return promise; + } + promise.then(successCallback, failureCallback); + return Promise.resolve(); + }; + prototype.addIceCandidate = withCallback; + } + + function shimGetUserMedia(window) { + const navigator = window && window.navigator; + + if (navigator.mediaDevices && navigator.mediaDevices.getUserMedia) { + // shim not needed in Safari 12.1 + const mediaDevices = navigator.mediaDevices; + const _getUserMedia = mediaDevices.getUserMedia.bind(mediaDevices); + navigator.mediaDevices.getUserMedia = (constraints) => { + return _getUserMedia(shimConstraints(constraints)); + }; + } + + if (!navigator.getUserMedia && navigator.mediaDevices && + navigator.mediaDevices.getUserMedia) { + navigator.getUserMedia = function getUserMedia(constraints, cb, errcb) { + navigator.mediaDevices.getUserMedia(constraints) + .then(cb, errcb); + }.bind(navigator); + } + } + + function shimConstraints(constraints) { + if (constraints && constraints.video !== undefined) { + return Object.assign({}, + constraints, + {video: compactObject(constraints.video)} + ); + } + + return constraints; + } + + function shimRTCIceServerUrls(window) { + if (!window.RTCPeerConnection) { + return; + } + // migrate from non-spec RTCIceServer.url to RTCIceServer.urls + const OrigPeerConnection = window.RTCPeerConnection; + window.RTCPeerConnection = + function RTCPeerConnection(pcConfig, pcConstraints) { + if (pcConfig && pcConfig.iceServers) { + const newIceServers = []; + for (let i = 0; i < pcConfig.iceServers.length; i++) { + let server = pcConfig.iceServers[i]; + if (!server.hasOwnProperty('urls') && + server.hasOwnProperty('url')) { + deprecated('RTCIceServer.url', 'RTCIceServer.urls'); + server = JSON.parse(JSON.stringify(server)); + server.urls = server.url; + delete server.url; + newIceServers.push(server); + } else { + newIceServers.push(pcConfig.iceServers[i]); + } + } + pcConfig.iceServers = newIceServers; + } + return new OrigPeerConnection(pcConfig, pcConstraints); + }; + window.RTCPeerConnection.prototype = OrigPeerConnection.prototype; + // wrap static methods. Currently just generateCertificate. + if ('generateCertificate' in OrigPeerConnection) { + Object.defineProperty(window.RTCPeerConnection, 'generateCertificate', { + get() { + return OrigPeerConnection.generateCertificate; + } + }); + } + } + + function shimTrackEventTransceiver(window) { + // Add event.transceiver member over deprecated event.receiver + if (typeof window === 'object' && window.RTCTrackEvent && + 'receiver' in window.RTCTrackEvent.prototype && + !('transceiver' in window.RTCTrackEvent.prototype)) { + Object.defineProperty(window.RTCTrackEvent.prototype, 'transceiver', { + get() { + return {receiver: this.receiver}; + } + }); + } + } + + function shimCreateOfferLegacy(window) { + const origCreateOffer = window.RTCPeerConnection.prototype.createOffer; + window.RTCPeerConnection.prototype.createOffer = + function createOffer(offerOptions) { + if (offerOptions) { + if (typeof offerOptions.offerToReceiveAudio !== 'undefined') { + // support bit values + offerOptions.offerToReceiveAudio = + !!offerOptions.offerToReceiveAudio; + } + const audioTransceiver = this.getTransceivers().find(transceiver => + transceiver.receiver.track.kind === 'audio'); + if (offerOptions.offerToReceiveAudio === false && audioTransceiver) { + if (audioTransceiver.direction === 'sendrecv') { + if (audioTransceiver.setDirection) { + audioTransceiver.setDirection('sendonly'); + } else { + audioTransceiver.direction = 'sendonly'; + } + } else if (audioTransceiver.direction === 'recvonly') { + if (audioTransceiver.setDirection) { + audioTransceiver.setDirection('inactive'); + } else { + audioTransceiver.direction = 'inactive'; + } + } + } else if (offerOptions.offerToReceiveAudio === true && + !audioTransceiver) { + this.addTransceiver('audio'); + } + + if (typeof offerOptions.offerToReceiveVideo !== 'undefined') { + // support bit values + offerOptions.offerToReceiveVideo = + !!offerOptions.offerToReceiveVideo; + } + const videoTransceiver = this.getTransceivers().find(transceiver => + transceiver.receiver.track.kind === 'video'); + if (offerOptions.offerToReceiveVideo === false && videoTransceiver) { + if (videoTransceiver.direction === 'sendrecv') { + if (videoTransceiver.setDirection) { + videoTransceiver.setDirection('sendonly'); + } else { + videoTransceiver.direction = 'sendonly'; + } + } else if (videoTransceiver.direction === 'recvonly') { + if (videoTransceiver.setDirection) { + videoTransceiver.setDirection('inactive'); + } else { + videoTransceiver.direction = 'inactive'; + } + } + } else if (offerOptions.offerToReceiveVideo === true && + !videoTransceiver) { + this.addTransceiver('video'); + } + } + return origCreateOffer.apply(this, arguments); + }; + } + + function shimAudioContext(window) { + if (typeof window !== 'object' || window.AudioContext) { + return; + } + window.AudioContext = window.webkitAudioContext; + } + + var safariShim = /*#__PURE__*/Object.freeze({ + __proto__: null, + shimLocalStreamsAPI: shimLocalStreamsAPI, + shimRemoteStreamsAPI: shimRemoteStreamsAPI, + shimCallbacksAPI: shimCallbacksAPI, + shimGetUserMedia: shimGetUserMedia, + shimConstraints: shimConstraints, + shimRTCIceServerUrls: shimRTCIceServerUrls, + shimTrackEventTransceiver: shimTrackEventTransceiver, + shimCreateOfferLegacy: shimCreateOfferLegacy, + shimAudioContext: shimAudioContext + }); + + /* + * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. + */ + + function shimRTCIceCandidate(window) { + // foundation is arbitrarily chosen as an indicator for full support for + // https://w3c.github.io/webrtc-pc/#rtcicecandidate-interface + if (!window.RTCIceCandidate || (window.RTCIceCandidate && 'foundation' in + window.RTCIceCandidate.prototype)) { + return; + } + + const NativeRTCIceCandidate = window.RTCIceCandidate; + window.RTCIceCandidate = function RTCIceCandidate(args) { + // Remove the a= which shouldn't be part of the candidate string. + if (typeof args === 'object' && args.candidate && + args.candidate.indexOf('a=') === 0) { + args = JSON.parse(JSON.stringify(args)); + args.candidate = args.candidate.substr(2); + } + + if (args.candidate && args.candidate.length) { + // Augment the native candidate with the parsed fields. + const nativeCandidate = new NativeRTCIceCandidate(args); + const parsedCandidate = sdp.parseCandidate(args.candidate); + const augmentedCandidate = Object.assign(nativeCandidate, + parsedCandidate); + + // Add a serializer that does not serialize the extra attributes. + augmentedCandidate.toJSON = function toJSON() { + return { + candidate: augmentedCandidate.candidate, + sdpMid: augmentedCandidate.sdpMid, + sdpMLineIndex: augmentedCandidate.sdpMLineIndex, + usernameFragment: augmentedCandidate.usernameFragment, + }; + }; + return augmentedCandidate; + } + return new NativeRTCIceCandidate(args); + }; + window.RTCIceCandidate.prototype = NativeRTCIceCandidate.prototype; + + // Hook up the augmented candidate in onicecandidate and + // addEventListener('icecandidate', ...) + wrapPeerConnectionEvent(window, 'icecandidate', e => { + if (e.candidate) { + Object.defineProperty(e, 'candidate', { + value: new window.RTCIceCandidate(e.candidate), + writable: 'false' + }); + } + return e; + }); + } + + function shimMaxMessageSize(window, browserDetails) { + if (!window.RTCPeerConnection) { + return; + } + + if (!('sctp' in window.RTCPeerConnection.prototype)) { + Object.defineProperty(window.RTCPeerConnection.prototype, 'sctp', { + get() { + return typeof this._sctp === 'undefined' ? null : this._sctp; + } + }); + } + + const sctpInDescription = function(description) { + if (!description || !description.sdp) { + return false; + } + const sections = sdp.splitSections(description.sdp); + sections.shift(); + return sections.some(mediaSection => { + const mLine = sdp.parseMLine(mediaSection); + return mLine && mLine.kind === 'application' + && mLine.protocol.indexOf('SCTP') !== -1; + }); + }; + + const getRemoteFirefoxVersion = function(description) { + // TODO: Is there a better solution for detecting Firefox? + const match = description.sdp.match(/mozilla...THIS_IS_SDPARTA-(\d+)/); + if (match === null || match.length < 2) { + return -1; + } + const version = parseInt(match[1], 10); + // Test for NaN (yes, this is ugly) + return version !== version ? -1 : version; + }; + + const getCanSendMaxMessageSize = function(remoteIsFirefox) { + // Every implementation we know can send at least 64 KiB. + // Note: Although Chrome is technically able to send up to 256 KiB, the + // data does not reach the other peer reliably. + // See: https://bugs.chromium.org/p/webrtc/issues/detail?id=8419 + let canSendMaxMessageSize = 65536; + if (browserDetails.browser === 'firefox') { + if (browserDetails.version < 57) { + if (remoteIsFirefox === -1) { + // FF < 57 will send in 16 KiB chunks using the deprecated PPID + // fragmentation. + canSendMaxMessageSize = 16384; + } else { + // However, other FF (and RAWRTC) can reassemble PPID-fragmented + // messages. Thus, supporting ~2 GiB when sending. + canSendMaxMessageSize = 2147483637; + } + } else if (browserDetails.version < 60) { + // Currently, all FF >= 57 will reset the remote maximum message size + // to the default value when a data channel is created at a later + // stage. :( + // See: https://bugzilla.mozilla.org/show_bug.cgi?id=1426831 + canSendMaxMessageSize = + browserDetails.version === 57 ? 65535 : 65536; + } else { + // FF >= 60 supports sending ~2 GiB + canSendMaxMessageSize = 2147483637; + } + } + return canSendMaxMessageSize; + }; + + const getMaxMessageSize = function(description, remoteIsFirefox) { + // Note: 65536 bytes is the default value from the SDP spec. Also, + // every implementation we know supports receiving 65536 bytes. + let maxMessageSize = 65536; + + // FF 57 has a slightly incorrect default remote max message size, so + // we need to adjust it here to avoid a failure when sending. + // See: https://bugzilla.mozilla.org/show_bug.cgi?id=1425697 + if (browserDetails.browser === 'firefox' + && browserDetails.version === 57) { + maxMessageSize = 65535; + } + + const match = sdp.matchPrefix(description.sdp, + 'a=max-message-size:'); + if (match.length > 0) { + maxMessageSize = parseInt(match[0].substr(19), 10); + } else if (browserDetails.browser === 'firefox' && + remoteIsFirefox !== -1) { + // If the maximum message size is not present in the remote SDP and + // both local and remote are Firefox, the remote peer can receive + // ~2 GiB. + maxMessageSize = 2147483637; + } + return maxMessageSize; + }; + + const origSetRemoteDescription = + window.RTCPeerConnection.prototype.setRemoteDescription; + window.RTCPeerConnection.prototype.setRemoteDescription = + function setRemoteDescription() { + this._sctp = null; + // Chrome decided to not expose .sctp in plan-b mode. + // As usual, adapter.js has to do an 'ugly worakaround' + // to cover up the mess. + if (browserDetails.browser === 'chrome' && browserDetails.version >= 76) { + const {sdpSemantics} = this.getConfiguration(); + if (sdpSemantics === 'plan-b') { + Object.defineProperty(this, 'sctp', { + get() { + return typeof this._sctp === 'undefined' ? null : this._sctp; + }, + enumerable: true, + configurable: true, + }); + } + } + + if (sctpInDescription(arguments[0])) { + // Check if the remote is FF. + const isFirefox = getRemoteFirefoxVersion(arguments[0]); + + // Get the maximum message size the local peer is capable of sending + const canSendMMS = getCanSendMaxMessageSize(isFirefox); + + // Get the maximum message size of the remote peer. + const remoteMMS = getMaxMessageSize(arguments[0], isFirefox); + + // Determine final maximum message size + let maxMessageSize; + if (canSendMMS === 0 && remoteMMS === 0) { + maxMessageSize = Number.POSITIVE_INFINITY; + } else if (canSendMMS === 0 || remoteMMS === 0) { + maxMessageSize = Math.max(canSendMMS, remoteMMS); + } else { + maxMessageSize = Math.min(canSendMMS, remoteMMS); + } + + // Create a dummy RTCSctpTransport object and the 'maxMessageSize' + // attribute. + const sctp = {}; + Object.defineProperty(sctp, 'maxMessageSize', { + get() { + return maxMessageSize; + } + }); + this._sctp = sctp; + } + + return origSetRemoteDescription.apply(this, arguments); + }; + } + + function shimSendThrowTypeError(window) { + if (!(window.RTCPeerConnection && + 'createDataChannel' in window.RTCPeerConnection.prototype)) { + return; + } + + // Note: Although Firefox >= 57 has a native implementation, the maximum + // message size can be reset for all data channels at a later stage. + // See: https://bugzilla.mozilla.org/show_bug.cgi?id=1426831 + + function wrapDcSend(dc, pc) { + const origDataChannelSend = dc.send; + dc.send = function send() { + const data = arguments[0]; + const length = data.length || data.size || data.byteLength; + if (dc.readyState === 'open' && + pc.sctp && length > pc.sctp.maxMessageSize) { + throw new TypeError('Message too large (can send a maximum of ' + + pc.sctp.maxMessageSize + ' bytes)'); + } + return origDataChannelSend.apply(dc, arguments); + }; + } + const origCreateDataChannel = + window.RTCPeerConnection.prototype.createDataChannel; + window.RTCPeerConnection.prototype.createDataChannel = + function createDataChannel() { + const dataChannel = origCreateDataChannel.apply(this, arguments); + wrapDcSend(dataChannel, this); + return dataChannel; + }; + wrapPeerConnectionEvent(window, 'datachannel', e => { + wrapDcSend(e.channel, e.target); + return e; + }); + } + + + /* shims RTCConnectionState by pretending it is the same as iceConnectionState. + * See https://bugs.chromium.org/p/webrtc/issues/detail?id=6145#c12 + * for why this is a valid hack in Chrome. In Firefox it is slightly incorrect + * since DTLS failures would be hidden. See + * https://bugzilla.mozilla.org/show_bug.cgi?id=1265827 + * for the Firefox tracking bug. + */ + function shimConnectionState(window) { + if (!window.RTCPeerConnection || + 'connectionState' in window.RTCPeerConnection.prototype) { + return; + } + const proto = window.RTCPeerConnection.prototype; + Object.defineProperty(proto, 'connectionState', { + get() { + return { + completed: 'connected', + checking: 'connecting' + }[this.iceConnectionState] || this.iceConnectionState; + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(proto, 'onconnectionstatechange', { + get() { + return this._onconnectionstatechange || null; + }, + set(cb) { + if (this._onconnectionstatechange) { + this.removeEventListener('connectionstatechange', + this._onconnectionstatechange); + delete this._onconnectionstatechange; + } + if (cb) { + this.addEventListener('connectionstatechange', + this._onconnectionstatechange = cb); + } + }, + enumerable: true, + configurable: true + }); + + ['setLocalDescription', 'setRemoteDescription'].forEach((method) => { + const origMethod = proto[method]; + proto[method] = function() { + if (!this._connectionstatechangepoly) { + this._connectionstatechangepoly = e => { + const pc = e.target; + if (pc._lastConnectionState !== pc.connectionState) { + pc._lastConnectionState = pc.connectionState; + const newEvent = new Event('connectionstatechange', e); + pc.dispatchEvent(newEvent); + } + return e; + }; + this.addEventListener('iceconnectionstatechange', + this._connectionstatechangepoly); + } + return origMethod.apply(this, arguments); + }; + }); + } + + function removeExtmapAllowMixed(window, browserDetails) { + /* remove a=extmap-allow-mixed for webrtc.org < M71 */ + if (!window.RTCPeerConnection) { + return; + } + if (browserDetails.browser === 'chrome' && browserDetails.version >= 71) { + return; + } + if (browserDetails.browser === 'safari' && browserDetails.version >= 605) { + return; + } + const nativeSRD = window.RTCPeerConnection.prototype.setRemoteDescription; + window.RTCPeerConnection.prototype.setRemoteDescription = + function setRemoteDescription(desc) { + if (desc && desc.sdp && desc.sdp.indexOf('\na=extmap-allow-mixed') !== -1) { + const sdp = desc.sdp.split('\n').filter((line) => { + return line.trim() !== 'a=extmap-allow-mixed'; + }).join('\n'); + // Safari enforces read-only-ness of RTCSessionDescription fields. + if (window.RTCSessionDescription && + desc instanceof window.RTCSessionDescription) { + arguments[0] = new window.RTCSessionDescription({ + type: desc.type, + sdp, + }); + } else { + desc.sdp = sdp; + } + } + return nativeSRD.apply(this, arguments); + }; + } + + function shimAddIceCandidateNullOrEmpty(window, browserDetails) { + // Support for addIceCandidate(null or undefined) + // as well as addIceCandidate({candidate: "", ...}) + // https://bugs.chromium.org/p/chromium/issues/detail?id=978582 + // Note: must be called before other polyfills which change the signature. + if (!(window.RTCPeerConnection && window.RTCPeerConnection.prototype)) { + return; + } + const nativeAddIceCandidate = + window.RTCPeerConnection.prototype.addIceCandidate; + if (!nativeAddIceCandidate || nativeAddIceCandidate.length === 0) { + return; + } + window.RTCPeerConnection.prototype.addIceCandidate = + function addIceCandidate() { + if (!arguments[0]) { + if (arguments[1]) { + arguments[1].apply(null); + } + return Promise.resolve(); + } + // Firefox 68+ emits and processes {candidate: "", ...}, ignore + // in older versions. + // Native support for ignoring exists for Chrome M77+. + // Safari ignores as well, exact version unknown but works in the same + // version that also ignores addIceCandidate(null). + if (((browserDetails.browser === 'chrome' && browserDetails.version < 78) + || (browserDetails.browser === 'firefox' + && browserDetails.version < 68) + || (browserDetails.browser === 'safari')) + && arguments[0] && arguments[0].candidate === '') { + return Promise.resolve(); + } + return nativeAddIceCandidate.apply(this, arguments); + }; + } + + var commonShim = /*#__PURE__*/Object.freeze({ + __proto__: null, + shimRTCIceCandidate: shimRTCIceCandidate, + shimMaxMessageSize: shimMaxMessageSize, + shimSendThrowTypeError: shimSendThrowTypeError, + shimConnectionState: shimConnectionState, + removeExtmapAllowMixed: removeExtmapAllowMixed, + shimAddIceCandidateNullOrEmpty: shimAddIceCandidateNullOrEmpty + }); + + /* + * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. + */ + + // Shimming starts here. + function adapterFactory({window} = {}, options = { + shimChrome: true, + shimFirefox: true, + shimEdge: true, + shimSafari: true, + }) { + // Utils. + const logging = log$1; + const browserDetails = detectBrowser(window); + + const adapter = { + browserDetails, + commonShim, + extractVersion: extractVersion, + disableLog: disableLog, + disableWarnings: disableWarnings + }; + + // Shim browser if found. + switch (browserDetails.browser) { + case 'chrome': + if (!chromeShim || !shimPeerConnection$2 || + !options.shimChrome) { + logging('Chrome shim is not included in this adapter release.'); + return adapter; + } + if (browserDetails.version === null) { + logging('Chrome shim can not determine version, not shimming.'); + return adapter; + } + logging('adapter.js shimming chrome.'); + // Export to the adapter global object visible in the browser. + adapter.browserShim = chromeShim; + + // Must be called before shimPeerConnection. + shimAddIceCandidateNullOrEmpty(window, browserDetails); + + shimGetUserMedia$3(window, browserDetails); + shimMediaStream(window); + shimPeerConnection$2(window, browserDetails); + shimOnTrack$1(window); + shimAddTrackRemoveTrack(window, browserDetails); + shimGetSendersWithDtmf(window); + shimGetStats(window); + shimSenderReceiverGetStats(window); + fixNegotiationNeeded(window, browserDetails); + + shimRTCIceCandidate(window); + shimConnectionState(window); + shimMaxMessageSize(window, browserDetails); + shimSendThrowTypeError(window); + removeExtmapAllowMixed(window, browserDetails); + break; + case 'firefox': + if (!firefoxShim || !shimPeerConnection || + !options.shimFirefox) { + logging('Firefox shim is not included in this adapter release.'); + return adapter; + } + logging('adapter.js shimming firefox.'); + // Export to the adapter global object visible in the browser. + adapter.browserShim = firefoxShim; + + // Must be called before shimPeerConnection. + shimAddIceCandidateNullOrEmpty(window, browserDetails); + + shimGetUserMedia$1(window, browserDetails); + shimPeerConnection(window, browserDetails); + shimOnTrack(window); + shimRemoveStream(window); + shimSenderGetStats(window); + shimReceiverGetStats(window); + shimRTCDataChannel(window); + shimAddTransceiver(window); + shimGetParameters(window); + shimCreateOffer(window); + shimCreateAnswer(window); + + shimRTCIceCandidate(window); + shimConnectionState(window); + shimMaxMessageSize(window, browserDetails); + shimSendThrowTypeError(window); + break; + case 'edge': + if (!edgeShim || !shimPeerConnection$1 || !options.shimEdge) { + logging('MS edge shim is not included in this adapter release.'); + return adapter; + } + logging('adapter.js shimming edge.'); + // Export to the adapter global object visible in the browser. + adapter.browserShim = edgeShim; + + shimGetUserMedia$2(window); + shimGetDisplayMedia$1(window); + shimPeerConnection$1(window, browserDetails); + shimReplaceTrack(window); + + // the edge shim implements the full RTCIceCandidate object. + + shimMaxMessageSize(window, browserDetails); + shimSendThrowTypeError(window); + break; + case 'safari': + if (!safariShim || !options.shimSafari) { + logging('Safari shim is not included in this adapter release.'); + return adapter; + } + logging('adapter.js shimming safari.'); + // Export to the adapter global object visible in the browser. + adapter.browserShim = safariShim; + + // Must be called before shimCallbackAPI. + shimAddIceCandidateNullOrEmpty(window, browserDetails); + + shimRTCIceServerUrls(window); + shimCreateOfferLegacy(window); + shimCallbacksAPI(window); + shimLocalStreamsAPI(window); + shimRemoteStreamsAPI(window); + shimTrackEventTransceiver(window); + shimGetUserMedia(window); + shimAudioContext(window); + + shimRTCIceCandidate(window); + shimMaxMessageSize(window, browserDetails); + shimSendThrowTypeError(window); + removeExtmapAllowMixed(window, browserDetails); + break; + default: + logging('Unsupported browser!'); + break; + } + + return adapter; + } + + /* + * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. + */ + + adapterFactory({window: typeof window === 'undefined' ? undefined : window}); + + /** + * @class AudioTrackConstraints + * @classDesc Constraints for creating an audio MediaStreamTrack. + * @memberof Owt.Base + * @constructor + * @param {Owt.Base.AudioSourceInfo} source Source info of this audio track. + */ + class AudioTrackConstraints { + // eslint-disable-next-line require-jsdoc + constructor(source) { + if (!Object.values(AudioSourceInfo).some(v => v === source)) { + throw new TypeError('Invalid source.'); + } + /** + * @member {string} source + * @memberof Owt.Base.AudioTrackConstraints + * @desc Values could be "mic", "screen-cast", "file" or "mixed". + * @instance + */ + this.source = source; + /** + * @member {string} deviceId + * @memberof Owt.Base.AudioTrackConstraints + * @desc Do not provide deviceId if source is not "mic". + * @instance + * @see https://w3c.github.io/mediacapture-main/#def-constraint-deviceId + */ + this.deviceId = undefined; + } + } + + /** + * @class VideoTrackConstraints + * @classDesc Constraints for creating a video MediaStreamTrack. + * @memberof Owt.Base + * @constructor + * @param {Owt.Base.VideoSourceInfo} source Source info of this video track. + */ + class VideoTrackConstraints { + // eslint-disable-next-line require-jsdoc + constructor(source) { + if (!Object.values(VideoSourceInfo).some(v => v === source)) { + throw new TypeError('Invalid source.'); + } + /** + * @member {string} source + * @memberof Owt.Base.VideoTrackConstraints + * @desc Values could be "camera", "screen-cast", "file" or "mixed". + * @instance + */ + this.source = source; + /** + * @member {string} deviceId + * @memberof Owt.Base.VideoTrackConstraints + * @desc Do not provide deviceId if source is not "camera". + * @instance + * @see https://w3c.github.io/mediacapture-main/#def-constraint-deviceId + */ + + this.deviceId = undefined; + + /** + * @member {Owt.Base.Resolution} resolution + * @memberof Owt.Base.VideoTrackConstraints + * @instance + */ + this.resolution = undefined; + + /** + * @member {number} frameRate + * @memberof Owt.Base.VideoTrackConstraints + * @instance + */ + this.frameRate = undefined; + } + } + /** + * @class StreamConstraints + * @classDesc Constraints for creating a MediaStream from screen mic and camera. + * @memberof Owt.Base + * @constructor + * @param {?Owt.Base.AudioTrackConstraints} audioConstraints + * @param {?Owt.Base.VideoTrackConstraints} videoConstraints + */ + class StreamConstraints { + // eslint-disable-next-line require-jsdoc + constructor(audioConstraints = false, videoConstraints = false) { + /** + * @member {Owt.Base.MediaStreamTrackDeviceConstraintsForAudio} audio + * @memberof Owt.Base.MediaStreamDeviceConstraints + * @instance + */ + this.audio = audioConstraints; + /** + * @member {Owt.Base.MediaStreamTrackDeviceConstraintsForVideo} Video + * @memberof Owt.Base.MediaStreamDeviceConstraints + * @instance + */ + this.video = videoConstraints; + } + } + + // eslint-disable-next-line require-jsdoc + function isVideoConstrainsForScreenCast(constraints) { + return typeof constraints.video === 'object' && constraints.video.source === VideoSourceInfo.SCREENCAST; + } + + /** + * @class MediaStreamFactory + * @classDesc A factory to create MediaStream. You can also create MediaStream by yourself. + * @memberof Owt.Base + */ + class MediaStreamFactory { + /** + * @function createMediaStream + * @static + * @desc Create a MediaStream with given constraints. If you want to create a MediaStream for screen cast, please make sure both audio and video's source are "screen-cast". + * @memberof Owt.Base.MediaStreamFactory + * @return {Promise} Return a promise that is resolved when stream is successfully created, or rejected if one of the following error happened: + * - One or more parameters cannot be satisfied. + * - Specified device is busy. + * - Cannot obtain necessary permission or operation is canceled by user. + * - Video source is screen cast, while audio source is not. + * - Audio source is screen cast, while video source is disabled. + * @param {Owt.Base.StreamConstraints} constraints + */ + static createMediaStream(constraints) { + if (typeof constraints !== 'object' || !constraints.audio && !constraints.video) { + return Promise.reject(new TypeError('Invalid constrains')); + } + if (!isVideoConstrainsForScreenCast(constraints) && typeof constraints.audio === 'object' && constraints.audio.source === AudioSourceInfo.SCREENCAST) { + return Promise.reject(new TypeError('Cannot share screen without video.')); + } + if (isVideoConstrainsForScreenCast(constraints) && !isChrome() && !isFirefox()) { + return Promise.reject(new TypeError('Screen sharing only supports Chrome and Firefox.')); + } + if (isVideoConstrainsForScreenCast(constraints) && typeof constraints.audio === 'object' && constraints.audio.source !== AudioSourceInfo.SCREENCAST) { + return Promise.reject(new TypeError('Cannot capture video from screen cast while capture audio from' + ' other source.')); + } + + // Check and convert constraints. + if (!constraints.audio && !constraints.video) { + return Promise.reject(new TypeError('At least one of audio and video must be requested.')); + } + const mediaConstraints = Object.create({}); + if (typeof constraints.audio === 'object' && constraints.audio.source === AudioSourceInfo.MIC) { + mediaConstraints.audio = Object.create({}); + if (isEdge()) { + mediaConstraints.audio.deviceId = constraints.audio.deviceId; + } else { + mediaConstraints.audio.deviceId = { + exact: constraints.audio.deviceId + }; + } + } else { + if (constraints.audio.source === AudioSourceInfo.SCREENCAST) { + mediaConstraints.audio = true; + } else { + mediaConstraints.audio = constraints.audio; + } + } + if (typeof constraints.video === 'object') { + mediaConstraints.video = Object.create({}); + if (typeof constraints.video.frameRate === 'number') { + mediaConstraints.video.frameRate = constraints.video.frameRate; + } + if (constraints.video.resolution && constraints.video.resolution.width && constraints.video.resolution.height) { + if (constraints.video.source === VideoSourceInfo.SCREENCAST) { + mediaConstraints.video.width = constraints.video.resolution.width; + mediaConstraints.video.height = constraints.video.resolution.height; + } else { + mediaConstraints.video.width = Object.create({}); + mediaConstraints.video.width.exact = constraints.video.resolution.width; + mediaConstraints.video.height = Object.create({}); + mediaConstraints.video.height.exact = constraints.video.resolution.height; + } + } + if (typeof constraints.video.deviceId === 'string') { + mediaConstraints.video.deviceId = { + exact: constraints.video.deviceId + }; + } + if (isFirefox() && constraints.video.source === VideoSourceInfo.SCREENCAST) { + mediaConstraints.video.mediaSource = 'screen'; + } + } else { + mediaConstraints.video = constraints.video; + } + if (isVideoConstrainsForScreenCast(constraints)) { + return navigator.mediaDevices.getDisplayMedia(mediaConstraints); + } else { + return navigator.mediaDevices.getUserMedia(mediaConstraints); + } + } + } + + // Copyright (C) <2018> Intel Corporation + + var media = /*#__PURE__*/Object.freeze({ + __proto__: null, + AudioTrackConstraints: AudioTrackConstraints, + VideoTrackConstraints: VideoTrackConstraints, + StreamConstraints: StreamConstraints, + MediaStreamFactory: MediaStreamFactory, + AudioSourceInfo: AudioSourceInfo, + VideoSourceInfo: VideoSourceInfo, + TrackKind: TrackKind, + Resolution: Resolution + }); + + let logger; + let errorLogger; + function setLogger() { + /*eslint-disable */ + logger = console.log; + errorLogger = console.error; + /*eslint-enable */ + } + function log(message, ...optionalParams) { + if (logger) { + logger(message, ...optionalParams); + } + } + function error(message, ...optionalParams) { + if (errorLogger) { + errorLogger(message, ...optionalParams); + } + } + + class Event$1 { + constructor(type) { + this.listener = {}; + this.type = type | ''; + } + on(event, fn) { + if (!this.listener[event]) { + this.listener[event] = []; + } + this.listener[event].push(fn); + return true; + } + off(event, fn) { + if (this.listener[event]) { + var index = this.listener[event].indexOf(fn); + if (index > -1) { + this.listener[event].splice(index, 1); + } + return true; + } + return false; + } + offAll() { + this.listener = {}; + } + dispatch(event, data) { + if (this.listener[event]) { + this.listener[event].map(each => { + each.apply(null, [data]); + }); + return true; + } + return false; + } + } + + var bind = function bind(fn, thisArg) { + return function wrap() { + var args = new Array(arguments.length); + for (var i = 0; i < args.length; i++) { + args[i] = arguments[i]; + } + return fn.apply(thisArg, args); + }; + }; + + // utils is a library of generic helper functions non-specific to axios + + var toString = Object.prototype.toString; + + // eslint-disable-next-line func-names + var kindOf = (function(cache) { + // eslint-disable-next-line func-names + return function(thing) { + var str = toString.call(thing); + return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase()); + }; + })(Object.create(null)); + + function kindOfTest(type) { + type = type.toLowerCase(); + return function isKindOf(thing) { + return kindOf(thing) === type; + }; + } + + /** + * Determine if a value is an Array + * + * @param {Object} val The value to test + * @returns {boolean} True if value is an Array, otherwise false + */ + function isArray(val) { + return Array.isArray(val); + } + + /** + * Determine if a value is undefined + * + * @param {Object} val The value to test + * @returns {boolean} True if the value is undefined, otherwise false + */ + function isUndefined(val) { + return typeof val === 'undefined'; + } + + /** + * Determine if a value is a Buffer + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a Buffer, otherwise false + */ + function isBuffer(val) { + return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor) + && typeof val.constructor.isBuffer === 'function' && val.constructor.isBuffer(val); + } + + /** + * Determine if a value is an ArrayBuffer + * + * @function + * @param {Object} val The value to test + * @returns {boolean} True if value is an ArrayBuffer, otherwise false + */ + var isArrayBuffer = kindOfTest('ArrayBuffer'); + + + /** + * Determine if a value is a view on an ArrayBuffer + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false + */ + function isArrayBufferView(val) { + var result; + if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) { + result = ArrayBuffer.isView(val); + } else { + result = (val) && (val.buffer) && (isArrayBuffer(val.buffer)); + } + return result; + } + + /** + * Determine if a value is a String + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a String, otherwise false + */ + function isString(val) { + return typeof val === 'string'; + } + + /** + * Determine if a value is a Number + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a Number, otherwise false + */ + function isNumber(val) { + return typeof val === 'number'; + } + + /** + * Determine if a value is an Object + * + * @param {Object} val The value to test + * @returns {boolean} True if value is an Object, otherwise false + */ + function isObject(val) { + return val !== null && typeof val === 'object'; + } + + /** + * Determine if a value is a plain Object + * + * @param {Object} val The value to test + * @return {boolean} True if value is a plain Object, otherwise false + */ + function isPlainObject(val) { + if (kindOf(val) !== 'object') { + return false; + } + + var prototype = Object.getPrototypeOf(val); + return prototype === null || prototype === Object.prototype; + } + + /** + * Determine if a value is a Date + * + * @function + * @param {Object} val The value to test + * @returns {boolean} True if value is a Date, otherwise false + */ + var isDate = kindOfTest('Date'); + + /** + * Determine if a value is a File + * + * @function + * @param {Object} val The value to test + * @returns {boolean} True if value is a File, otherwise false + */ + var isFile = kindOfTest('File'); + + /** + * Determine if a value is a Blob + * + * @function + * @param {Object} val The value to test + * @returns {boolean} True if value is a Blob, otherwise false + */ + var isBlob = kindOfTest('Blob'); + + /** + * Determine if a value is a FileList + * + * @function + * @param {Object} val The value to test + * @returns {boolean} True if value is a File, otherwise false + */ + var isFileList = kindOfTest('FileList'); + + /** + * Determine if a value is a Function + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a Function, otherwise false + */ + function isFunction(val) { + return toString.call(val) === '[object Function]'; + } + + /** + * Determine if a value is a Stream + * + * @param {Object} val The value to test + * @returns {boolean} True if value is a Stream, otherwise false + */ + function isStream(val) { + return isObject(val) && isFunction(val.pipe); + } + + /** + * Determine if a value is a FormData + * + * @param {Object} thing The value to test + * @returns {boolean} True if value is an FormData, otherwise false + */ + function isFormData(thing) { + var pattern = '[object FormData]'; + return thing && ( + (typeof FormData === 'function' && thing instanceof FormData) || + toString.call(thing) === pattern || + (isFunction(thing.toString) && thing.toString() === pattern) + ); + } + + /** + * Determine if a value is a URLSearchParams object + * @function + * @param {Object} val The value to test + * @returns {boolean} True if value is a URLSearchParams object, otherwise false + */ + var isURLSearchParams = kindOfTest('URLSearchParams'); + + /** + * Trim excess whitespace off the beginning and end of a string + * + * @param {String} str The String to trim + * @returns {String} The String freed of excess whitespace + */ + function trim(str) { + return str.trim ? str.trim() : str.replace(/^\s+|\s+$/g, ''); + } + + /** + * Determine if we're running in a standard browser environment + * + * This allows axios to run in a web worker, and react-native. + * Both environments support XMLHttpRequest, but not fully standard globals. + * + * web workers: + * typeof window -> undefined + * typeof document -> undefined + * + * react-native: + * navigator.product -> 'ReactNative' + * nativescript + * navigator.product -> 'NativeScript' or 'NS' + */ + function isStandardBrowserEnv() { + if (typeof navigator !== 'undefined' && (navigator.product === 'ReactNative' || + navigator.product === 'NativeScript' || + navigator.product === 'NS')) { + return false; + } + return ( + typeof window !== 'undefined' && + typeof document !== 'undefined' + ); + } + + /** + * Iterate over an Array or an Object invoking a function for each item. + * + * If `obj` is an Array callback will be called passing + * the value, index, and complete array for each item. + * + * If 'obj' is an Object callback will be called passing + * the value, key, and complete object for each property. + * + * @param {Object|Array} obj The object to iterate + * @param {Function} fn The callback to invoke for each item + */ + function forEach(obj, fn) { + // Don't bother if no value provided + if (obj === null || typeof obj === 'undefined') { + return; + } + + // Force an array if not already something iterable + if (typeof obj !== 'object') { + /*eslint no-param-reassign:0*/ + obj = [obj]; + } + + if (isArray(obj)) { + // Iterate over array values + for (var i = 0, l = obj.length; i < l; i++) { + fn.call(null, obj[i], i, obj); + } + } else { + // Iterate over object keys + for (var key in obj) { + if (Object.prototype.hasOwnProperty.call(obj, key)) { + fn.call(null, obj[key], key, obj); + } + } + } + } + + /** + * Accepts varargs expecting each argument to be an object, then + * immutably merges the properties of each object and returns result. + * + * When multiple objects contain the same key the later object in + * the arguments list will take precedence. + * + * Example: + * + * ```js + * var result = merge({foo: 123}, {foo: 456}); + * console.log(result.foo); // outputs 456 + * ``` + * + * @param {Object} obj1 Object to merge + * @returns {Object} Result of all merge properties + */ + function merge(/* obj1, obj2, obj3, ... */) { + var result = {}; + function assignValue(val, key) { + if (isPlainObject(result[key]) && isPlainObject(val)) { + result[key] = merge(result[key], val); + } else if (isPlainObject(val)) { + result[key] = merge({}, val); + } else if (isArray(val)) { + result[key] = val.slice(); + } else { + result[key] = val; + } + } + + for (var i = 0, l = arguments.length; i < l; i++) { + forEach(arguments[i], assignValue); + } + return result; + } + + /** + * Extends object a by mutably adding to it the properties of object b. + * + * @param {Object} a The object to be extended + * @param {Object} b The object to copy properties from + * @param {Object} thisArg The object to bind function to + * @return {Object} The resulting value of object a + */ + function extend(a, b, thisArg) { + forEach(b, function assignValue(val, key) { + if (thisArg && typeof val === 'function') { + a[key] = bind(val, thisArg); + } else { + a[key] = val; + } + }); + return a; + } + + /** + * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM) + * + * @param {string} content with BOM + * @return {string} content value without BOM + */ + function stripBOM(content) { + if (content.charCodeAt(0) === 0xFEFF) { + content = content.slice(1); + } + return content; + } + + /** + * Inherit the prototype methods from one constructor into another + * @param {function} constructor + * @param {function} superConstructor + * @param {object} [props] + * @param {object} [descriptors] + */ + + function inherits(constructor, superConstructor, props, descriptors) { + constructor.prototype = Object.create(superConstructor.prototype, descriptors); + constructor.prototype.constructor = constructor; + props && Object.assign(constructor.prototype, props); + } + + /** + * Resolve object with deep prototype chain to a flat object + * @param {Object} sourceObj source object + * @param {Object} [destObj] + * @param {Function} [filter] + * @returns {Object} + */ + + function toFlatObject(sourceObj, destObj, filter) { + var props; + var i; + var prop; + var merged = {}; + + destObj = destObj || {}; + + do { + props = Object.getOwnPropertyNames(sourceObj); + i = props.length; + while (i-- > 0) { + prop = props[i]; + if (!merged[prop]) { + destObj[prop] = sourceObj[prop]; + merged[prop] = true; + } + } + sourceObj = Object.getPrototypeOf(sourceObj); + } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype); + + return destObj; + } + + /* + * determines whether a string ends with the characters of a specified string + * @param {String} str + * @param {String} searchString + * @param {Number} [position= 0] + * @returns {boolean} + */ + function endsWith(str, searchString, position) { + str = String(str); + if (position === undefined || position > str.length) { + position = str.length; + } + position -= searchString.length; + var lastIndex = str.indexOf(searchString, position); + return lastIndex !== -1 && lastIndex === position; + } + + + /** + * Returns new array from array like object + * @param {*} [thing] + * @returns {Array} + */ + function toArray(thing) { + if (!thing) return null; + var i = thing.length; + if (isUndefined(i)) return null; + var arr = new Array(i); + while (i-- > 0) { + arr[i] = thing[i]; + } + return arr; + } + + // eslint-disable-next-line func-names + var isTypedArray = (function(TypedArray) { + // eslint-disable-next-line func-names + return function(thing) { + return TypedArray && thing instanceof TypedArray; + }; + })(typeof Uint8Array !== 'undefined' && Object.getPrototypeOf(Uint8Array)); + + var utils = { + isArray: isArray, + isArrayBuffer: isArrayBuffer, + isBuffer: isBuffer, + isFormData: isFormData, + isArrayBufferView: isArrayBufferView, + isString: isString, + isNumber: isNumber, + isObject: isObject, + isPlainObject: isPlainObject, + isUndefined: isUndefined, + isDate: isDate, + isFile: isFile, + isBlob: isBlob, + isFunction: isFunction, + isStream: isStream, + isURLSearchParams: isURLSearchParams, + isStandardBrowserEnv: isStandardBrowserEnv, + forEach: forEach, + merge: merge, + extend: extend, + trim: trim, + stripBOM: stripBOM, + inherits: inherits, + toFlatObject: toFlatObject, + kindOf: kindOf, + kindOfTest: kindOfTest, + endsWith: endsWith, + toArray: toArray, + isTypedArray: isTypedArray, + isFileList: isFileList + }; + + function encode(val) { + return encodeURIComponent(val). + replace(/%3A/gi, ':'). + replace(/%24/g, '$'). + replace(/%2C/gi, ','). + replace(/%20/g, '+'). + replace(/%5B/gi, '['). + replace(/%5D/gi, ']'); + } + + /** + * Build a URL by appending params to the end + * + * @param {string} url The base of the url (e.g., http://www.google.com) + * @param {object} [params] The params to be appended + * @returns {string} The formatted url + */ + var buildURL = function buildURL(url, params, paramsSerializer) { + /*eslint no-param-reassign:0*/ + if (!params) { + return url; + } + + var serializedParams; + if (paramsSerializer) { + serializedParams = paramsSerializer(params); + } else if (utils.isURLSearchParams(params)) { + serializedParams = params.toString(); + } else { + var parts = []; + + utils.forEach(params, function serialize(val, key) { + if (val === null || typeof val === 'undefined') { + return; + } + + if (utils.isArray(val)) { + key = key + '[]'; + } else { + val = [val]; + } + + utils.forEach(val, function parseValue(v) { + if (utils.isDate(v)) { + v = v.toISOString(); + } else if (utils.isObject(v)) { + v = JSON.stringify(v); + } + parts.push(encode(key) + '=' + encode(v)); + }); + }); + + serializedParams = parts.join('&'); + } + + if (serializedParams) { + var hashmarkIndex = url.indexOf('#'); + if (hashmarkIndex !== -1) { + url = url.slice(0, hashmarkIndex); + } + + url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams; + } + + return url; + }; + + function InterceptorManager() { + this.handlers = []; + } + + /** + * Add a new interceptor to the stack + * + * @param {Function} fulfilled The function to handle `then` for a `Promise` + * @param {Function} rejected The function to handle `reject` for a `Promise` + * + * @return {Number} An ID used to remove interceptor later + */ + InterceptorManager.prototype.use = function use(fulfilled, rejected, options) { + this.handlers.push({ + fulfilled: fulfilled, + rejected: rejected, + synchronous: options ? options.synchronous : false, + runWhen: options ? options.runWhen : null + }); + return this.handlers.length - 1; + }; + + /** + * Remove an interceptor from the stack + * + * @param {Number} id The ID that was returned by `use` + */ + InterceptorManager.prototype.eject = function eject(id) { + if (this.handlers[id]) { + this.handlers[id] = null; + } + }; + + /** + * Iterate over all the registered interceptors + * + * This method is particularly useful for skipping over any + * interceptors that may have become `null` calling `eject`. + * + * @param {Function} fn The function to call for each interceptor + */ + InterceptorManager.prototype.forEach = function forEach(fn) { + utils.forEach(this.handlers, function forEachHandler(h) { + if (h !== null) { + fn(h); + } + }); + }; + + var InterceptorManager_1 = InterceptorManager; + + var normalizeHeaderName = function normalizeHeaderName(headers, normalizedName) { + utils.forEach(headers, function processHeader(value, name) { + if (name !== normalizedName && name.toUpperCase() === normalizedName.toUpperCase()) { + headers[normalizedName] = value; + delete headers[name]; + } + }); + }; + + /** + * Create an Error with the specified message, config, error code, request and response. + * + * @param {string} message The error message. + * @param {string} [code] The error code (for example, 'ECONNABORTED'). + * @param {Object} [config] The config. + * @param {Object} [request] The request. + * @param {Object} [response] The response. + * @returns {Error} The created error. + */ + function AxiosError(message, code, config, request, response) { + Error.call(this); + this.message = message; + this.name = 'AxiosError'; + code && (this.code = code); + config && (this.config = config); + request && (this.request = request); + response && (this.response = response); + } + + utils.inherits(AxiosError, Error, { + toJSON: function toJSON() { + return { + // Standard + message: this.message, + name: this.name, + // Microsoft + description: this.description, + number: this.number, + // Mozilla + fileName: this.fileName, + lineNumber: this.lineNumber, + columnNumber: this.columnNumber, + stack: this.stack, + // Axios + config: this.config, + code: this.code, + status: this.response && this.response.status ? this.response.status : null + }; + } + }); + + var prototype = AxiosError.prototype; + var descriptors = {}; + + [ + 'ERR_BAD_OPTION_VALUE', + 'ERR_BAD_OPTION', + 'ECONNABORTED', + 'ETIMEDOUT', + 'ERR_NETWORK', + 'ERR_FR_TOO_MANY_REDIRECTS', + 'ERR_DEPRECATED', + 'ERR_BAD_RESPONSE', + 'ERR_BAD_REQUEST', + 'ERR_CANCELED' + // eslint-disable-next-line func-names + ].forEach(function(code) { + descriptors[code] = {value: code}; + }); + + Object.defineProperties(AxiosError, descriptors); + Object.defineProperty(prototype, 'isAxiosError', {value: true}); + + // eslint-disable-next-line func-names + AxiosError.from = function(error, code, config, request, response, customProps) { + var axiosError = Object.create(prototype); + + utils.toFlatObject(error, axiosError, function filter(obj) { + return obj !== Error.prototype; + }); + + AxiosError.call(axiosError, error.message, code, config, request, response); + + axiosError.name = error.name; + + customProps && Object.assign(axiosError, customProps); + + return axiosError; + }; + + var AxiosError_1 = AxiosError; + + var transitional = { + silentJSONParsing: true, + forcedJSONParsing: true, + clarifyTimeoutError: false + }; + + /** + * Convert a data object to FormData + * @param {Object} obj + * @param {?Object} [formData] + * @returns {Object} + **/ + + function toFormData(obj, formData) { + // eslint-disable-next-line no-param-reassign + formData = formData || new FormData(); + + var stack = []; + + function convertValue(value) { + if (value === null) return ''; + + if (utils.isDate(value)) { + return value.toISOString(); + } + + if (utils.isArrayBuffer(value) || utils.isTypedArray(value)) { + return typeof Blob === 'function' ? new Blob([value]) : Buffer.from(value); + } + + return value; + } + + function build(data, parentKey) { + if (utils.isPlainObject(data) || utils.isArray(data)) { + if (stack.indexOf(data) !== -1) { + throw Error('Circular reference detected in ' + parentKey); + } + + stack.push(data); + + utils.forEach(data, function each(value, key) { + if (utils.isUndefined(value)) return; + var fullKey = parentKey ? parentKey + '.' + key : key; + var arr; + + if (value && !parentKey && typeof value === 'object') { + if (utils.endsWith(key, '{}')) { + // eslint-disable-next-line no-param-reassign + value = JSON.stringify(value); + } else if (utils.endsWith(key, '[]') && (arr = utils.toArray(value))) { + // eslint-disable-next-line func-names + arr.forEach(function(el) { + !utils.isUndefined(el) && formData.append(fullKey, convertValue(el)); + }); + return; + } + } + + build(value, fullKey); + }); + + stack.pop(); + } else { + formData.append(parentKey, convertValue(data)); + } + } + + build(obj); + + return formData; + } + + var toFormData_1 = toFormData; + + /** + * Resolve or reject a Promise based on response status. + * + * @param {Function} resolve A function that resolves the promise. + * @param {Function} reject A function that rejects the promise. + * @param {object} response The response. + */ + var settle = function settle(resolve, reject, response) { + var validateStatus = response.config.validateStatus; + if (!response.status || !validateStatus || validateStatus(response.status)) { + resolve(response); + } else { + reject(new AxiosError_1( + 'Request failed with status code ' + response.status, + [AxiosError_1.ERR_BAD_REQUEST, AxiosError_1.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4], + response.config, + response.request, + response + )); + } + }; + + var cookies = ( + utils.isStandardBrowserEnv() ? + + // Standard browser envs support document.cookie + (function standardBrowserEnv() { + return { + write: function write(name, value, expires, path, domain, secure) { + var cookie = []; + cookie.push(name + '=' + encodeURIComponent(value)); + + if (utils.isNumber(expires)) { + cookie.push('expires=' + new Date(expires).toGMTString()); + } + + if (utils.isString(path)) { + cookie.push('path=' + path); + } + + if (utils.isString(domain)) { + cookie.push('domain=' + domain); + } + + if (secure === true) { + cookie.push('secure'); + } + + document.cookie = cookie.join('; '); + }, + + read: function read(name) { + var match = document.cookie.match(new RegExp('(^|;\\s*)(' + name + ')=([^;]*)')); + return (match ? decodeURIComponent(match[3]) : null); + }, + + remove: function remove(name) { + this.write(name, '', Date.now() - 86400000); + } + }; + })() : + + // Non standard browser env (web workers, react-native) lack needed support. + (function nonStandardBrowserEnv() { + return { + write: function write() {}, + read: function read() { return null; }, + remove: function remove() {} + }; + })() + ); + + /** + * Determines whether the specified URL is absolute + * + * @param {string} url The URL to test + * @returns {boolean} True if the specified URL is absolute, otherwise false + */ + var isAbsoluteURL = function isAbsoluteURL(url) { + // A URL is considered absolute if it begins with "://" or "//" (protocol-relative URL). + // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed + // by any combination of letters, digits, plus, period, or hyphen. + return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url); + }; + + /** + * Creates a new URL by combining the specified URLs + * + * @param {string} baseURL The base URL + * @param {string} relativeURL The relative URL + * @returns {string} The combined URL + */ + var combineURLs = function combineURLs(baseURL, relativeURL) { + return relativeURL + ? baseURL.replace(/\/+$/, '') + '/' + relativeURL.replace(/^\/+/, '') + : baseURL; + }; + + /** + * Creates a new URL by combining the baseURL with the requestedURL, + * only when the requestedURL is not already an absolute URL. + * If the requestURL is absolute, this function returns the requestedURL untouched. + * + * @param {string} baseURL The base URL + * @param {string} requestedURL Absolute or relative URL to combine + * @returns {string} The combined full path + */ + var buildFullPath = function buildFullPath(baseURL, requestedURL) { + if (baseURL && !isAbsoluteURL(requestedURL)) { + return combineURLs(baseURL, requestedURL); + } + return requestedURL; + }; + + // Headers whose duplicates are ignored by node + // c.f. https://nodejs.org/api/http.html#http_message_headers + var ignoreDuplicateOf = [ + 'age', 'authorization', 'content-length', 'content-type', 'etag', + 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since', + 'last-modified', 'location', 'max-forwards', 'proxy-authorization', + 'referer', 'retry-after', 'user-agent' + ]; + + /** + * Parse headers into an object + * + * ``` + * Date: Wed, 27 Aug 2014 08:58:49 GMT + * Content-Type: application/json + * Connection: keep-alive + * Transfer-Encoding: chunked + * ``` + * + * @param {String} headers Headers needing to be parsed + * @returns {Object} Headers parsed into an object + */ + var parseHeaders = function parseHeaders(headers) { + var parsed = {}; + var key; + var val; + var i; + + if (!headers) { return parsed; } + + utils.forEach(headers.split('\n'), function parser(line) { + i = line.indexOf(':'); + key = utils.trim(line.substr(0, i)).toLowerCase(); + val = utils.trim(line.substr(i + 1)); + + if (key) { + if (parsed[key] && ignoreDuplicateOf.indexOf(key) >= 0) { + return; + } + if (key === 'set-cookie') { + parsed[key] = (parsed[key] ? parsed[key] : []).concat([val]); + } else { + parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val; + } + } + }); + + return parsed; + }; + + var isURLSameOrigin = ( + utils.isStandardBrowserEnv() ? + + // Standard browser envs have full support of the APIs needed to test + // whether the request URL is of the same origin as current location. + (function standardBrowserEnv() { + var msie = /(msie|trident)/i.test(navigator.userAgent); + var urlParsingNode = document.createElement('a'); + var originURL; + + /** + * Parse a URL to discover it's components + * + * @param {String} url The URL to be parsed + * @returns {Object} + */ + function resolveURL(url) { + var href = url; + + if (msie) { + // IE needs attribute set twice to normalize properties + urlParsingNode.setAttribute('href', href); + href = urlParsingNode.href; + } + + urlParsingNode.setAttribute('href', href); + + // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils + return { + href: urlParsingNode.href, + protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '', + host: urlParsingNode.host, + search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, '') : '', + hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '', + hostname: urlParsingNode.hostname, + port: urlParsingNode.port, + pathname: (urlParsingNode.pathname.charAt(0) === '/') ? + urlParsingNode.pathname : + '/' + urlParsingNode.pathname + }; + } + + originURL = resolveURL(window.location.href); + + /** + * Determine if a URL shares the same origin as the current location + * + * @param {String} requestURL The URL to test + * @returns {boolean} True if URL shares the same origin, otherwise false + */ + return function isURLSameOrigin(requestURL) { + var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL; + return (parsed.protocol === originURL.protocol && + parsed.host === originURL.host); + }; + })() : + + // Non standard browser envs (web workers, react-native) lack needed support. + (function nonStandardBrowserEnv() { + return function isURLSameOrigin() { + return true; + }; + })() + ); + + /** + * A `CanceledError` is an object that is thrown when an operation is canceled. + * + * @class + * @param {string=} message The message. + */ + function CanceledError(message) { + // eslint-disable-next-line no-eq-null,eqeqeq + AxiosError_1.call(this, message == null ? 'canceled' : message, AxiosError_1.ERR_CANCELED); + this.name = 'CanceledError'; + } + + utils.inherits(CanceledError, AxiosError_1, { + __CANCEL__: true + }); + + var CanceledError_1 = CanceledError; + + var parseProtocol = function parseProtocol(url) { + var match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url); + return match && match[1] || ''; + }; + + var xhr = function xhrAdapter(config) { + return new Promise(function dispatchXhrRequest(resolve, reject) { + var requestData = config.data; + var requestHeaders = config.headers; + var responseType = config.responseType; + var onCanceled; + function done() { + if (config.cancelToken) { + config.cancelToken.unsubscribe(onCanceled); + } + + if (config.signal) { + config.signal.removeEventListener('abort', onCanceled); + } + } + + if (utils.isFormData(requestData) && utils.isStandardBrowserEnv()) { + delete requestHeaders['Content-Type']; // Let the browser set it + } + + var request = new XMLHttpRequest(); + + // HTTP basic authentication + if (config.auth) { + var username = config.auth.username || ''; + var password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : ''; + requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password); + } + + var fullPath = buildFullPath(config.baseURL, config.url); + + request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true); + + // Set the request timeout in MS + request.timeout = config.timeout; + + function onloadend() { + if (!request) { + return; + } + // Prepare the response + var responseHeaders = 'getAllResponseHeaders' in request ? parseHeaders(request.getAllResponseHeaders()) : null; + var responseData = !responseType || responseType === 'text' || responseType === 'json' ? + request.responseText : request.response; + var response = { + data: responseData, + status: request.status, + statusText: request.statusText, + headers: responseHeaders, + config: config, + request: request + }; + + settle(function _resolve(value) { + resolve(value); + done(); + }, function _reject(err) { + reject(err); + done(); + }, response); + + // Clean up request + request = null; + } + + if ('onloadend' in request) { + // Use onloadend if available + request.onloadend = onloadend; + } else { + // Listen for ready state to emulate onloadend + request.onreadystatechange = function handleLoad() { + if (!request || request.readyState !== 4) { + return; + } + + // The request errored out and we didn't get a response, this will be + // handled by onerror instead + // With one exception: request that using file: protocol, most browsers + // will return status as 0 even though it's a successful request + if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) { + return; + } + // readystate handler is calling before onerror or ontimeout handlers, + // so we should call onloadend on the next 'tick' + setTimeout(onloadend); + }; + } + + // Handle browser request cancellation (as opposed to a manual cancellation) + request.onabort = function handleAbort() { + if (!request) { + return; + } + + reject(new AxiosError_1('Request aborted', AxiosError_1.ECONNABORTED, config, request)); + + // Clean up request + request = null; + }; + + // Handle low level network errors + request.onerror = function handleError() { + // Real errors are hidden from us by the browser + // onerror should only fire if it's a network error + reject(new AxiosError_1('Network Error', AxiosError_1.ERR_NETWORK, config, request, request)); + + // Clean up request + request = null; + }; + + // Handle timeout + request.ontimeout = function handleTimeout() { + var timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded'; + var transitional$1 = config.transitional || transitional; + if (config.timeoutErrorMessage) { + timeoutErrorMessage = config.timeoutErrorMessage; + } + reject(new AxiosError_1( + timeoutErrorMessage, + transitional$1.clarifyTimeoutError ? AxiosError_1.ETIMEDOUT : AxiosError_1.ECONNABORTED, + config, + request)); + + // Clean up request + request = null; + }; + + // Add xsrf header + // This is only done if running in a standard browser environment. + // Specifically not if we're in a web worker, or react-native. + if (utils.isStandardBrowserEnv()) { + // Add xsrf header + var xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName ? + cookies.read(config.xsrfCookieName) : + undefined; + + if (xsrfValue) { + requestHeaders[config.xsrfHeaderName] = xsrfValue; + } + } + + // Add headers to the request + if ('setRequestHeader' in request) { + utils.forEach(requestHeaders, function setRequestHeader(val, key) { + if (typeof requestData === 'undefined' && key.toLowerCase() === 'content-type') { + // Remove Content-Type if data is undefined + delete requestHeaders[key]; + } else { + // Otherwise add header to the request + request.setRequestHeader(key, val); + } + }); + } + + // Add withCredentials to request if needed + if (!utils.isUndefined(config.withCredentials)) { + request.withCredentials = !!config.withCredentials; + } + + // Add responseType to request if needed + if (responseType && responseType !== 'json') { + request.responseType = config.responseType; + } + + // Handle progress if needed + if (typeof config.onDownloadProgress === 'function') { + request.addEventListener('progress', config.onDownloadProgress); + } + + // Not all browsers support upload events + if (typeof config.onUploadProgress === 'function' && request.upload) { + request.upload.addEventListener('progress', config.onUploadProgress); + } + + if (config.cancelToken || config.signal) { + // Handle cancellation + // eslint-disable-next-line func-names + onCanceled = function(cancel) { + if (!request) { + return; + } + reject(!cancel || (cancel && cancel.type) ? new CanceledError_1() : cancel); + request.abort(); + request = null; + }; + + config.cancelToken && config.cancelToken.subscribe(onCanceled); + if (config.signal) { + config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled); + } + } + + if (!requestData) { + requestData = null; + } + + var protocol = parseProtocol(fullPath); + + if (protocol && [ 'http', 'https', 'file' ].indexOf(protocol) === -1) { + reject(new AxiosError_1('Unsupported protocol ' + protocol + ':', AxiosError_1.ERR_BAD_REQUEST, config)); + return; + } + + + // Send the request + request.send(requestData); + }); + }; + + // eslint-disable-next-line strict + var _null = null; + + var DEFAULT_CONTENT_TYPE = { + 'Content-Type': 'application/x-www-form-urlencoded' + }; + + function setContentTypeIfUnset(headers, value) { + if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) { + headers['Content-Type'] = value; + } + } + + function getDefaultAdapter() { + var adapter; + if (typeof XMLHttpRequest !== 'undefined') { + // For browsers use XHR adapter + adapter = xhr; + } else if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') { + // For node use HTTP adapter + adapter = xhr; + } + return adapter; + } + + function stringifySafely(rawValue, parser, encoder) { + if (utils.isString(rawValue)) { + try { + (parser || JSON.parse)(rawValue); + return utils.trim(rawValue); + } catch (e) { + if (e.name !== 'SyntaxError') { + throw e; + } + } + } + + return (encoder || JSON.stringify)(rawValue); + } + + var defaults = { + + transitional: transitional, + + adapter: getDefaultAdapter(), + + transformRequest: [function transformRequest(data, headers) { + normalizeHeaderName(headers, 'Accept'); + normalizeHeaderName(headers, 'Content-Type'); + + if (utils.isFormData(data) || + utils.isArrayBuffer(data) || + utils.isBuffer(data) || + utils.isStream(data) || + utils.isFile(data) || + utils.isBlob(data) + ) { + return data; + } + if (utils.isArrayBufferView(data)) { + return data.buffer; + } + if (utils.isURLSearchParams(data)) { + setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8'); + return data.toString(); + } + + var isObjectPayload = utils.isObject(data); + var contentType = headers && headers['Content-Type']; + + var isFileList; + + if ((isFileList = utils.isFileList(data)) || (isObjectPayload && contentType === 'multipart/form-data')) { + var _FormData = this.env && this.env.FormData; + return toFormData_1(isFileList ? {'files[]': data} : data, _FormData && new _FormData()); + } else if (isObjectPayload || contentType === 'application/json') { + setContentTypeIfUnset(headers, 'application/json'); + return stringifySafely(data); + } + + return data; + }], + + transformResponse: [function transformResponse(data) { + var transitional = this.transitional || defaults.transitional; + var silentJSONParsing = transitional && transitional.silentJSONParsing; + var forcedJSONParsing = transitional && transitional.forcedJSONParsing; + var strictJSONParsing = !silentJSONParsing && this.responseType === 'json'; + + if (strictJSONParsing || (forcedJSONParsing && utils.isString(data) && data.length)) { + try { + return JSON.parse(data); + } catch (e) { + if (strictJSONParsing) { + if (e.name === 'SyntaxError') { + throw AxiosError_1.from(e, AxiosError_1.ERR_BAD_RESPONSE, this, null, this.response); + } + throw e; + } + } + } + + return data; + }], + + /** + * A timeout in milliseconds to abort a request. If set to 0 (default) a + * timeout is not created. + */ + timeout: 0, + + xsrfCookieName: 'XSRF-TOKEN', + xsrfHeaderName: 'X-XSRF-TOKEN', + + maxContentLength: -1, + maxBodyLength: -1, + + env: { + FormData: _null + }, + + validateStatus: function validateStatus(status) { + return status >= 200 && status < 300; + }, + + headers: { + common: { + 'Accept': 'application/json, text/plain, */*' + } + } + }; + + utils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) { + defaults.headers[method] = {}; + }); + + utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) { + defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE); + }); + + var defaults_1 = defaults; + + /** + * Transform the data for a request or a response + * + * @param {Object|String} data The data to be transformed + * @param {Array} headers The headers for the request or response + * @param {Array|Function} fns A single function or Array of functions + * @returns {*} The resulting transformed data + */ + var transformData = function transformData(data, headers, fns) { + var context = this || defaults_1; + /*eslint no-param-reassign:0*/ + utils.forEach(fns, function transform(fn) { + data = fn.call(context, data, headers); + }); + + return data; + }; + + var isCancel = function isCancel(value) { + return !!(value && value.__CANCEL__); + }; + + /** + * Throws a `CanceledError` if cancellation has been requested. + */ + function throwIfCancellationRequested(config) { + if (config.cancelToken) { + config.cancelToken.throwIfRequested(); + } + + if (config.signal && config.signal.aborted) { + throw new CanceledError_1(); + } + } + + /** + * Dispatch a request to the server using the configured adapter. + * + * @param {object} config The config that is to be used for the request + * @returns {Promise} The Promise to be fulfilled + */ + var dispatchRequest = function dispatchRequest(config) { + throwIfCancellationRequested(config); + + // Ensure headers exist + config.headers = config.headers || {}; + + // Transform request data + config.data = transformData.call( + config, + config.data, + config.headers, + config.transformRequest + ); + + // Flatten headers + config.headers = utils.merge( + config.headers.common || {}, + config.headers[config.method] || {}, + config.headers + ); + + utils.forEach( + ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'], + function cleanHeaderConfig(method) { + delete config.headers[method]; + } + ); + + var adapter = config.adapter || defaults_1.adapter; + + return adapter(config).then(function onAdapterResolution(response) { + throwIfCancellationRequested(config); + + // Transform response data + response.data = transformData.call( + config, + response.data, + response.headers, + config.transformResponse + ); + + return response; + }, function onAdapterRejection(reason) { + if (!isCancel(reason)) { + throwIfCancellationRequested(config); + + // Transform response data + if (reason && reason.response) { + reason.response.data = transformData.call( + config, + reason.response.data, + reason.response.headers, + config.transformResponse + ); + } + } + + return Promise.reject(reason); + }); + }; + + /** + * Config-specific merge-function which creates a new config-object + * by merging two configuration objects together. + * + * @param {Object} config1 + * @param {Object} config2 + * @returns {Object} New object resulting from merging config2 to config1 + */ + var mergeConfig = function mergeConfig(config1, config2) { + // eslint-disable-next-line no-param-reassign + config2 = config2 || {}; + var config = {}; + + function getMergedValue(target, source) { + if (utils.isPlainObject(target) && utils.isPlainObject(source)) { + return utils.merge(target, source); + } else if (utils.isPlainObject(source)) { + return utils.merge({}, source); + } else if (utils.isArray(source)) { + return source.slice(); + } + return source; + } + + // eslint-disable-next-line consistent-return + function mergeDeepProperties(prop) { + if (!utils.isUndefined(config2[prop])) { + return getMergedValue(config1[prop], config2[prop]); + } else if (!utils.isUndefined(config1[prop])) { + return getMergedValue(undefined, config1[prop]); + } + } + + // eslint-disable-next-line consistent-return + function valueFromConfig2(prop) { + if (!utils.isUndefined(config2[prop])) { + return getMergedValue(undefined, config2[prop]); + } + } + + // eslint-disable-next-line consistent-return + function defaultToConfig2(prop) { + if (!utils.isUndefined(config2[prop])) { + return getMergedValue(undefined, config2[prop]); + } else if (!utils.isUndefined(config1[prop])) { + return getMergedValue(undefined, config1[prop]); + } + } + + // eslint-disable-next-line consistent-return + function mergeDirectKeys(prop) { + if (prop in config2) { + return getMergedValue(config1[prop], config2[prop]); + } else if (prop in config1) { + return getMergedValue(undefined, config1[prop]); + } + } + + var mergeMap = { + 'url': valueFromConfig2, + 'method': valueFromConfig2, + 'data': valueFromConfig2, + 'baseURL': defaultToConfig2, + 'transformRequest': defaultToConfig2, + 'transformResponse': defaultToConfig2, + 'paramsSerializer': defaultToConfig2, + 'timeout': defaultToConfig2, + 'timeoutMessage': defaultToConfig2, + 'withCredentials': defaultToConfig2, + 'adapter': defaultToConfig2, + 'responseType': defaultToConfig2, + 'xsrfCookieName': defaultToConfig2, + 'xsrfHeaderName': defaultToConfig2, + 'onUploadProgress': defaultToConfig2, + 'onDownloadProgress': defaultToConfig2, + 'decompress': defaultToConfig2, + 'maxContentLength': defaultToConfig2, + 'maxBodyLength': defaultToConfig2, + 'beforeRedirect': defaultToConfig2, + 'transport': defaultToConfig2, + 'httpAgent': defaultToConfig2, + 'httpsAgent': defaultToConfig2, + 'cancelToken': defaultToConfig2, + 'socketPath': defaultToConfig2, + 'responseEncoding': defaultToConfig2, + 'validateStatus': mergeDirectKeys + }; + + utils.forEach(Object.keys(config1).concat(Object.keys(config2)), function computeConfigValue(prop) { + var merge = mergeMap[prop] || mergeDeepProperties; + var configValue = merge(prop); + (utils.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue); + }); + + return config; + }; + + var data = { + "version": "0.27.2" + }; + + var VERSION = data.version; + + + var validators$1 = {}; + + // eslint-disable-next-line func-names + ['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach(function(type, i) { + validators$1[type] = function validator(thing) { + return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type; + }; + }); + + var deprecatedWarnings = {}; + + /** + * Transitional option validator + * @param {function|boolean?} validator - set to false if the transitional option has been removed + * @param {string?} version - deprecated version / removed since version + * @param {string?} message - some message with additional info + * @returns {function} + */ + validators$1.transitional = function transitional(validator, version, message) { + function formatMessage(opt, desc) { + return '[Axios v' + VERSION + '] Transitional option \'' + opt + '\'' + desc + (message ? '. ' + message : ''); + } + + // eslint-disable-next-line func-names + return function(value, opt, opts) { + if (validator === false) { + throw new AxiosError_1( + formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')), + AxiosError_1.ERR_DEPRECATED + ); + } + + if (version && !deprecatedWarnings[opt]) { + deprecatedWarnings[opt] = true; + // eslint-disable-next-line no-console + console.warn( + formatMessage( + opt, + ' has been deprecated since v' + version + ' and will be removed in the near future' + ) + ); + } + + return validator ? validator(value, opt, opts) : true; + }; + }; + + /** + * Assert object's properties type + * @param {object} options + * @param {object} schema + * @param {boolean?} allowUnknown + */ + + function assertOptions(options, schema, allowUnknown) { + if (typeof options !== 'object') { + throw new AxiosError_1('options must be an object', AxiosError_1.ERR_BAD_OPTION_VALUE); + } + var keys = Object.keys(options); + var i = keys.length; + while (i-- > 0) { + var opt = keys[i]; + var validator = schema[opt]; + if (validator) { + var value = options[opt]; + var result = value === undefined || validator(value, opt, options); + if (result !== true) { + throw new AxiosError_1('option ' + opt + ' must be ' + result, AxiosError_1.ERR_BAD_OPTION_VALUE); + } + continue; + } + if (allowUnknown !== true) { + throw new AxiosError_1('Unknown option ' + opt, AxiosError_1.ERR_BAD_OPTION); + } + } + } + + var validator = { + assertOptions: assertOptions, + validators: validators$1 + }; + + var validators = validator.validators; + /** + * Create a new instance of Axios + * + * @param {Object} instanceConfig The default config for the instance + */ + function Axios(instanceConfig) { + this.defaults = instanceConfig; + this.interceptors = { + request: new InterceptorManager_1(), + response: new InterceptorManager_1() + }; + } + + /** + * Dispatch a request + * + * @param {Object} config The config specific for this request (merged with this.defaults) + */ + Axios.prototype.request = function request(configOrUrl, config) { + /*eslint no-param-reassign:0*/ + // Allow for axios('example/url'[, config]) a la fetch API + if (typeof configOrUrl === 'string') { + config = config || {}; + config.url = configOrUrl; + } else { + config = configOrUrl || {}; + } + + config = mergeConfig(this.defaults, config); + + // Set config.method + if (config.method) { + config.method = config.method.toLowerCase(); + } else if (this.defaults.method) { + config.method = this.defaults.method.toLowerCase(); + } else { + config.method = 'get'; + } + + var transitional = config.transitional; + + if (transitional !== undefined) { + validator.assertOptions(transitional, { + silentJSONParsing: validators.transitional(validators.boolean), + forcedJSONParsing: validators.transitional(validators.boolean), + clarifyTimeoutError: validators.transitional(validators.boolean) + }, false); + } + + // filter out skipped interceptors + var requestInterceptorChain = []; + var synchronousRequestInterceptors = true; + this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) { + if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) { + return; + } + + synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous; + + requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected); + }); + + var responseInterceptorChain = []; + this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) { + responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected); + }); + + var promise; + + if (!synchronousRequestInterceptors) { + var chain = [dispatchRequest, undefined]; + + Array.prototype.unshift.apply(chain, requestInterceptorChain); + chain = chain.concat(responseInterceptorChain); + + promise = Promise.resolve(config); + while (chain.length) { + promise = promise.then(chain.shift(), chain.shift()); + } + + return promise; + } + + + var newConfig = config; + while (requestInterceptorChain.length) { + var onFulfilled = requestInterceptorChain.shift(); + var onRejected = requestInterceptorChain.shift(); + try { + newConfig = onFulfilled(newConfig); + } catch (error) { + onRejected(error); + break; + } + } + + try { + promise = dispatchRequest(newConfig); + } catch (error) { + return Promise.reject(error); + } + + while (responseInterceptorChain.length) { + promise = promise.then(responseInterceptorChain.shift(), responseInterceptorChain.shift()); + } + + return promise; + }; + + Axios.prototype.getUri = function getUri(config) { + config = mergeConfig(this.defaults, config); + var fullPath = buildFullPath(config.baseURL, config.url); + return buildURL(fullPath, config.params, config.paramsSerializer); + }; + + // Provide aliases for supported request methods + utils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) { + /*eslint func-names:0*/ + Axios.prototype[method] = function(url, config) { + return this.request(mergeConfig(config || {}, { + method: method, + url: url, + data: (config || {}).data + })); + }; + }); + + utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) { + /*eslint func-names:0*/ + + function generateHTTPMethod(isForm) { + return function httpMethod(url, data, config) { + return this.request(mergeConfig(config || {}, { + method: method, + headers: isForm ? { + 'Content-Type': 'multipart/form-data' + } : {}, + url: url, + data: data + })); + }; + } + + Axios.prototype[method] = generateHTTPMethod(); + + Axios.prototype[method + 'Form'] = generateHTTPMethod(true); + }); + + var Axios_1 = Axios; + + /** + * A `CancelToken` is an object that can be used to request cancellation of an operation. + * + * @class + * @param {Function} executor The executor function. + */ + function CancelToken(executor) { + if (typeof executor !== 'function') { + throw new TypeError('executor must be a function.'); + } + + var resolvePromise; + + this.promise = new Promise(function promiseExecutor(resolve) { + resolvePromise = resolve; + }); + + var token = this; + + // eslint-disable-next-line func-names + this.promise.then(function(cancel) { + if (!token._listeners) return; + + var i; + var l = token._listeners.length; + + for (i = 0; i < l; i++) { + token._listeners[i](cancel); + } + token._listeners = null; + }); + + // eslint-disable-next-line func-names + this.promise.then = function(onfulfilled) { + var _resolve; + // eslint-disable-next-line func-names + var promise = new Promise(function(resolve) { + token.subscribe(resolve); + _resolve = resolve; + }).then(onfulfilled); + + promise.cancel = function reject() { + token.unsubscribe(_resolve); + }; + + return promise; + }; + + executor(function cancel(message) { + if (token.reason) { + // Cancellation has already been requested + return; + } + + token.reason = new CanceledError_1(message); + resolvePromise(token.reason); + }); + } + + /** + * Throws a `CanceledError` if cancellation has been requested. + */ + CancelToken.prototype.throwIfRequested = function throwIfRequested() { + if (this.reason) { + throw this.reason; + } + }; + + /** + * Subscribe to the cancel signal + */ + + CancelToken.prototype.subscribe = function subscribe(listener) { + if (this.reason) { + listener(this.reason); + return; + } + + if (this._listeners) { + this._listeners.push(listener); + } else { + this._listeners = [listener]; + } + }; + + /** + * Unsubscribe from the cancel signal + */ + + CancelToken.prototype.unsubscribe = function unsubscribe(listener) { + if (!this._listeners) { + return; + } + var index = this._listeners.indexOf(listener); + if (index !== -1) { + this._listeners.splice(index, 1); + } + }; + + /** + * Returns an object that contains a new `CancelToken` and a function that, when called, + * cancels the `CancelToken`. + */ + CancelToken.source = function source() { + var cancel; + var token = new CancelToken(function executor(c) { + cancel = c; + }); + return { + token: token, + cancel: cancel + }; + }; + + var CancelToken_1 = CancelToken; + + /** + * Syntactic sugar for invoking a function and expanding an array for arguments. + * + * Common use case would be to use `Function.prototype.apply`. + * + * ```js + * function f(x, y, z) {} + * var args = [1, 2, 3]; + * f.apply(null, args); + * ``` + * + * With `spread` this example can be re-written. + * + * ```js + * spread(function(x, y, z) {})([1, 2, 3]); + * ``` + * + * @param {Function} callback + * @returns {Function} + */ + var spread = function spread(callback) { + return function wrap(arr) { + return callback.apply(null, arr); + }; + }; + + /** + * Determines whether the payload is an error thrown by Axios + * + * @param {*} payload The value to test + * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false + */ + var isAxiosError = function isAxiosError(payload) { + return utils.isObject(payload) && (payload.isAxiosError === true); + }; + + /** + * Create an instance of Axios + * + * @param {Object} defaultConfig The default config for the instance + * @return {Axios} A new instance of Axios + */ + function createInstance(defaultConfig) { + var context = new Axios_1(defaultConfig); + var instance = bind(Axios_1.prototype.request, context); + + // Copy axios.prototype to instance + utils.extend(instance, Axios_1.prototype, context); + + // Copy context to instance + utils.extend(instance, context); + + // Factory for creating new instances + instance.create = function create(instanceConfig) { + return createInstance(mergeConfig(defaultConfig, instanceConfig)); + }; + + return instance; + } + + // Create the default instance to be exported + var axios$1 = createInstance(defaults_1); + + // Expose Axios class to allow class inheritance + axios$1.Axios = Axios_1; + + // Expose Cancel & CancelToken + axios$1.CanceledError = CanceledError_1; + axios$1.CancelToken = CancelToken_1; + axios$1.isCancel = isCancel; + axios$1.VERSION = data.version; + axios$1.toFormData = toFormData_1; + + // Expose AxiosError class + axios$1.AxiosError = AxiosError_1; + + // alias for CanceledError for backward compatibility + axios$1.Cancel = axios$1.CanceledError; + + // Expose all/spread + axios$1.all = function all(promises) { + return Promise.all(promises); + }; + axios$1.spread = spread; + + // Expose isAxiosError + axios$1.isAxiosError = isAxiosError; + + var axios_1 = axios$1; + + // Allow use of default import syntax in TypeScript + var _default = axios$1; + axios_1.default = _default; + + var axios = axios_1; + + /*! + * @overview es6-promise - a tiny implementation of Promises/A+. + * @copyright Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors (Conversion to ES6 API by Jake Archibald) + * @license Licensed under MIT license + * See https://raw.githubusercontent.com/stefanpenner/es6-promise/master/LICENSE + * @version v4.2.8+1e68dce6 + */ + + var es6Promise = createCommonjsModule(function (module, exports) { + (function (global, factory) { + module.exports = factory() ; + }(commonjsGlobal, (function () { + function objectOrFunction(x) { + var type = typeof x; + return x !== null && (type === 'object' || type === 'function'); + } + + function isFunction(x) { + return typeof x === 'function'; + } + + + + var _isArray = void 0; + if (Array.isArray) { + _isArray = Array.isArray; + } else { + _isArray = function (x) { + return Object.prototype.toString.call(x) === '[object Array]'; + }; + } + + var isArray = _isArray; + + var len = 0; + var vertxNext = void 0; + var customSchedulerFn = void 0; + + var asap = function asap(callback, arg) { + queue[len] = callback; + queue[len + 1] = arg; + len += 2; + if (len === 2) { + // If len is 2, that means that we need to schedule an async flush. + // If additional callbacks are queued before the queue is flushed, they + // will be processed by this flush that we are scheduling. + if (customSchedulerFn) { + customSchedulerFn(flush); + } else { + scheduleFlush(); + } + } + }; + + function setScheduler(scheduleFn) { + customSchedulerFn = scheduleFn; + } + + function setAsap(asapFn) { + asap = asapFn; + } + + var browserWindow = typeof window !== 'undefined' ? window : undefined; + var browserGlobal = browserWindow || {}; + var BrowserMutationObserver = browserGlobal.MutationObserver || browserGlobal.WebKitMutationObserver; + var isNode = typeof self === 'undefined' && typeof process !== 'undefined' && {}.toString.call(process) === '[object process]'; + + // test for web worker but not in IE10 + var isWorker = typeof Uint8ClampedArray !== 'undefined' && typeof importScripts !== 'undefined' && typeof MessageChannel !== 'undefined'; + + // node + function useNextTick() { + // node version 0.10.x displays a deprecation warning when nextTick is used recursively + // see https://github.com/cujojs/when/issues/410 for details + return function () { + return process.nextTick(flush); + }; + } + + // vertx + function useVertxTimer() { + if (typeof vertxNext !== 'undefined') { + return function () { + vertxNext(flush); + }; + } + + return useSetTimeout(); + } + + function useMutationObserver() { + var iterations = 0; + var observer = new BrowserMutationObserver(flush); + var node = document.createTextNode(''); + observer.observe(node, { characterData: true }); + + return function () { + node.data = iterations = ++iterations % 2; + }; + } + + // web worker + function useMessageChannel() { + var channel = new MessageChannel(); + channel.port1.onmessage = flush; + return function () { + return channel.port2.postMessage(0); + }; + } + + function useSetTimeout() { + // Store setTimeout reference so es6-promise will be unaffected by + // other code modifying setTimeout (like sinon.useFakeTimers()) + var globalSetTimeout = setTimeout; + return function () { + return globalSetTimeout(flush, 1); + }; + } + + var queue = new Array(1000); + function flush() { + for (var i = 0; i < len; i += 2) { + var callback = queue[i]; + var arg = queue[i + 1]; + + callback(arg); + + queue[i] = undefined; + queue[i + 1] = undefined; + } + + len = 0; + } + + function attemptVertx() { + try { + var vertx = Function('return this')().require('vertx'); + vertxNext = vertx.runOnLoop || vertx.runOnContext; + return useVertxTimer(); + } catch (e) { + return useSetTimeout(); + } + } + + var scheduleFlush = void 0; + // Decide what async method to use to triggering processing of queued callbacks: + if (isNode) { + scheduleFlush = useNextTick(); + } else if (BrowserMutationObserver) { + scheduleFlush = useMutationObserver(); + } else if (isWorker) { + scheduleFlush = useMessageChannel(); + } else if (browserWindow === undefined && typeof commonjsRequire === 'function') { + scheduleFlush = attemptVertx(); + } else { + scheduleFlush = useSetTimeout(); + } + + function then(onFulfillment, onRejection) { + var parent = this; + + var child = new this.constructor(noop); + + if (child[PROMISE_ID] === undefined) { + makePromise(child); + } + + var _state = parent._state; + + + if (_state) { + var callback = arguments[_state - 1]; + asap(function () { + return invokeCallback(_state, child, callback, parent._result); + }); + } else { + subscribe(parent, child, onFulfillment, onRejection); + } + + return child; + } + + /** + `Promise.resolve` returns a promise that will become resolved with the + passed `value`. It is shorthand for the following: + + ```javascript + let promise = new Promise(function(resolve, reject){ + resolve(1); + }); + + promise.then(function(value){ + // value === 1 + }); + ``` + + Instead of writing the above, your code now simply becomes the following: + + ```javascript + let promise = Promise.resolve(1); + + promise.then(function(value){ + // value === 1 + }); + ``` + + @method resolve + @static + @param {Any} value value that the returned promise will be resolved with + Useful for tooling. + @return {Promise} a promise that will become fulfilled with the given + `value` + */ + function resolve$1(object) { + /*jshint validthis:true */ + var Constructor = this; + + if (object && typeof object === 'object' && object.constructor === Constructor) { + return object; + } + + var promise = new Constructor(noop); + resolve(promise, object); + return promise; + } + + var PROMISE_ID = Math.random().toString(36).substring(2); + + function noop() {} + + var PENDING = void 0; + var FULFILLED = 1; + var REJECTED = 2; + + function selfFulfillment() { + return new TypeError("You cannot resolve a promise with itself"); + } + + function cannotReturnOwn() { + return new TypeError('A promises callback cannot return that same promise.'); + } + + function tryThen(then$$1, value, fulfillmentHandler, rejectionHandler) { + try { + then$$1.call(value, fulfillmentHandler, rejectionHandler); + } catch (e) { + return e; + } + } + + function handleForeignThenable(promise, thenable, then$$1) { + asap(function (promise) { + var sealed = false; + var error = tryThen(then$$1, thenable, function (value) { + if (sealed) { + return; + } + sealed = true; + if (thenable !== value) { + resolve(promise, value); + } else { + fulfill(promise, value); + } + }, function (reason) { + if (sealed) { + return; + } + sealed = true; + + reject(promise, reason); + }, 'Settle: ' + (promise._label || ' unknown promise')); + + if (!sealed && error) { + sealed = true; + reject(promise, error); + } + }, promise); + } + + function handleOwnThenable(promise, thenable) { + if (thenable._state === FULFILLED) { + fulfill(promise, thenable._result); + } else if (thenable._state === REJECTED) { + reject(promise, thenable._result); + } else { + subscribe(thenable, undefined, function (value) { + return resolve(promise, value); + }, function (reason) { + return reject(promise, reason); + }); + } + } + + function handleMaybeThenable(promise, maybeThenable, then$$1) { + if (maybeThenable.constructor === promise.constructor && then$$1 === then && maybeThenable.constructor.resolve === resolve$1) { + handleOwnThenable(promise, maybeThenable); + } else { + if (then$$1 === undefined) { + fulfill(promise, maybeThenable); + } else if (isFunction(then$$1)) { + handleForeignThenable(promise, maybeThenable, then$$1); + } else { + fulfill(promise, maybeThenable); + } + } + } + + function resolve(promise, value) { + if (promise === value) { + reject(promise, selfFulfillment()); + } else if (objectOrFunction(value)) { + var then$$1 = void 0; + try { + then$$1 = value.then; + } catch (error) { + reject(promise, error); + return; + } + handleMaybeThenable(promise, value, then$$1); + } else { + fulfill(promise, value); + } + } + + function publishRejection(promise) { + if (promise._onerror) { + promise._onerror(promise._result); + } + + publish(promise); + } + + function fulfill(promise, value) { + if (promise._state !== PENDING) { + return; + } + + promise._result = value; + promise._state = FULFILLED; + + if (promise._subscribers.length !== 0) { + asap(publish, promise); + } + } + + function reject(promise, reason) { + if (promise._state !== PENDING) { + return; + } + promise._state = REJECTED; + promise._result = reason; + + asap(publishRejection, promise); + } + + function subscribe(parent, child, onFulfillment, onRejection) { + var _subscribers = parent._subscribers; + var length = _subscribers.length; + + + parent._onerror = null; + + _subscribers[length] = child; + _subscribers[length + FULFILLED] = onFulfillment; + _subscribers[length + REJECTED] = onRejection; + + if (length === 0 && parent._state) { + asap(publish, parent); + } + } + + function publish(promise) { + var subscribers = promise._subscribers; + var settled = promise._state; + + if (subscribers.length === 0) { + return; + } + + var child = void 0, + callback = void 0, + detail = promise._result; + + for (var i = 0; i < subscribers.length; i += 3) { + child = subscribers[i]; + callback = subscribers[i + settled]; + + if (child) { + invokeCallback(settled, child, callback, detail); + } else { + callback(detail); + } + } + + promise._subscribers.length = 0; + } + + function invokeCallback(settled, promise, callback, detail) { + var hasCallback = isFunction(callback), + value = void 0, + error = void 0, + succeeded = true; + + if (hasCallback) { + try { + value = callback(detail); + } catch (e) { + succeeded = false; + error = e; + } + + if (promise === value) { + reject(promise, cannotReturnOwn()); + return; + } + } else { + value = detail; + } + + if (promise._state !== PENDING) ; else if (hasCallback && succeeded) { + resolve(promise, value); + } else if (succeeded === false) { + reject(promise, error); + } else if (settled === FULFILLED) { + fulfill(promise, value); + } else if (settled === REJECTED) { + reject(promise, value); + } + } + + function initializePromise(promise, resolver) { + try { + resolver(function resolvePromise(value) { + resolve(promise, value); + }, function rejectPromise(reason) { + reject(promise, reason); + }); + } catch (e) { + reject(promise, e); + } + } + + var id = 0; + function nextId() { + return id++; + } + + function makePromise(promise) { + promise[PROMISE_ID] = id++; + promise._state = undefined; + promise._result = undefined; + promise._subscribers = []; + } + + function validationError() { + return new Error('Array Methods must be provided an Array'); + } + + var Enumerator = function () { + function Enumerator(Constructor, input) { + this._instanceConstructor = Constructor; + this.promise = new Constructor(noop); + + if (!this.promise[PROMISE_ID]) { + makePromise(this.promise); + } + + if (isArray(input)) { + this.length = input.length; + this._remaining = input.length; + + this._result = new Array(this.length); + + if (this.length === 0) { + fulfill(this.promise, this._result); + } else { + this.length = this.length || 0; + this._enumerate(input); + if (this._remaining === 0) { + fulfill(this.promise, this._result); + } + } + } else { + reject(this.promise, validationError()); + } + } + + Enumerator.prototype._enumerate = function _enumerate(input) { + for (var i = 0; this._state === PENDING && i < input.length; i++) { + this._eachEntry(input[i], i); + } + }; + + Enumerator.prototype._eachEntry = function _eachEntry(entry, i) { + var c = this._instanceConstructor; + var resolve$$1 = c.resolve; + + + if (resolve$$1 === resolve$1) { + var _then = void 0; + var error = void 0; + var didError = false; + try { + _then = entry.then; + } catch (e) { + didError = true; + error = e; + } + + if (_then === then && entry._state !== PENDING) { + this._settledAt(entry._state, i, entry._result); + } else if (typeof _then !== 'function') { + this._remaining--; + this._result[i] = entry; + } else if (c === Promise$1) { + var promise = new c(noop); + if (didError) { + reject(promise, error); + } else { + handleMaybeThenable(promise, entry, _then); + } + this._willSettleAt(promise, i); + } else { + this._willSettleAt(new c(function (resolve$$1) { + return resolve$$1(entry); + }), i); + } + } else { + this._willSettleAt(resolve$$1(entry), i); + } + }; + + Enumerator.prototype._settledAt = function _settledAt(state, i, value) { + var promise = this.promise; + + + if (promise._state === PENDING) { + this._remaining--; + + if (state === REJECTED) { + reject(promise, value); + } else { + this._result[i] = value; + } + } + + if (this._remaining === 0) { + fulfill(promise, this._result); + } + }; + + Enumerator.prototype._willSettleAt = function _willSettleAt(promise, i) { + var enumerator = this; + + subscribe(promise, undefined, function (value) { + return enumerator._settledAt(FULFILLED, i, value); + }, function (reason) { + return enumerator._settledAt(REJECTED, i, reason); + }); + }; + + return Enumerator; + }(); + + /** + `Promise.all` accepts an array of promises, and returns a new promise which + is fulfilled with an array of fulfillment values for the passed promises, or + rejected with the reason of the first passed promise to be rejected. It casts all + elements of the passed iterable to promises as it runs this algorithm. + + Example: + + ```javascript + let promise1 = resolve(1); + let promise2 = resolve(2); + let promise3 = resolve(3); + let promises = [ promise1, promise2, promise3 ]; + + Promise.all(promises).then(function(array){ + // The array here would be [ 1, 2, 3 ]; + }); + ``` + + If any of the `promises` given to `all` are rejected, the first promise + that is rejected will be given as an argument to the returned promises's + rejection handler. For example: + + Example: + + ```javascript + let promise1 = resolve(1); + let promise2 = reject(new Error("2")); + let promise3 = reject(new Error("3")); + let promises = [ promise1, promise2, promise3 ]; + + Promise.all(promises).then(function(array){ + // Code here never runs because there are rejected promises! + }, function(error) { + // error.message === "2" + }); + ``` + + @method all + @static + @param {Array} entries array of promises + @param {String} label optional string for labeling the promise. + Useful for tooling. + @return {Promise} promise that is fulfilled when all `promises` have been + fulfilled, or rejected if any of them become rejected. + @static + */ + function all(entries) { + return new Enumerator(this, entries).promise; + } + + /** + `Promise.race` returns a new promise which is settled in the same way as the + first passed promise to settle. + + Example: + + ```javascript + let promise1 = new Promise(function(resolve, reject){ + setTimeout(function(){ + resolve('promise 1'); + }, 200); + }); + + let promise2 = new Promise(function(resolve, reject){ + setTimeout(function(){ + resolve('promise 2'); + }, 100); + }); + + Promise.race([promise1, promise2]).then(function(result){ + // result === 'promise 2' because it was resolved before promise1 + // was resolved. + }); + ``` + + `Promise.race` is deterministic in that only the state of the first + settled promise matters. For example, even if other promises given to the + `promises` array argument are resolved, but the first settled promise has + become rejected before the other promises became fulfilled, the returned + promise will become rejected: + + ```javascript + let promise1 = new Promise(function(resolve, reject){ + setTimeout(function(){ + resolve('promise 1'); + }, 200); + }); + + let promise2 = new Promise(function(resolve, reject){ + setTimeout(function(){ + reject(new Error('promise 2')); + }, 100); + }); + + Promise.race([promise1, promise2]).then(function(result){ + // Code here never runs + }, function(reason){ + // reason.message === 'promise 2' because promise 2 became rejected before + // promise 1 became fulfilled + }); + ``` + + An example real-world use case is implementing timeouts: + + ```javascript + Promise.race([ajax('foo.json'), timeout(5000)]) + ``` + + @method race + @static + @param {Array} promises array of promises to observe + Useful for tooling. + @return {Promise} a promise which settles in the same way as the first passed + promise to settle. + */ + function race(entries) { + /*jshint validthis:true */ + var Constructor = this; + + if (!isArray(entries)) { + return new Constructor(function (_, reject) { + return reject(new TypeError('You must pass an array to race.')); + }); + } else { + return new Constructor(function (resolve, reject) { + var length = entries.length; + for (var i = 0; i < length; i++) { + Constructor.resolve(entries[i]).then(resolve, reject); + } + }); + } + } + + /** + `Promise.reject` returns a promise rejected with the passed `reason`. + It is shorthand for the following: + + ```javascript + let promise = new Promise(function(resolve, reject){ + reject(new Error('WHOOPS')); + }); + + promise.then(function(value){ + // Code here doesn't run because the promise is rejected! + }, function(reason){ + // reason.message === 'WHOOPS' + }); + ``` + + Instead of writing the above, your code now simply becomes the following: + + ```javascript + let promise = Promise.reject(new Error('WHOOPS')); + + promise.then(function(value){ + // Code here doesn't run because the promise is rejected! + }, function(reason){ + // reason.message === 'WHOOPS' + }); + ``` + + @method reject + @static + @param {Any} reason value that the returned promise will be rejected with. + Useful for tooling. + @return {Promise} a promise rejected with the given `reason`. + */ + function reject$1(reason) { + /*jshint validthis:true */ + var Constructor = this; + var promise = new Constructor(noop); + reject(promise, reason); + return promise; + } + + function needsResolver() { + throw new TypeError('You must pass a resolver function as the first argument to the promise constructor'); + } + + function needsNew() { + throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function."); + } + + /** + Promise objects represent the eventual result of an asynchronous operation. The + primary way of interacting with a promise is through its `then` method, which + registers callbacks to receive either a promise's eventual value or the reason + why the promise cannot be fulfilled. + + Terminology + ----------- + + - `promise` is an object or function with a `then` method whose behavior conforms to this specification. + - `thenable` is an object or function that defines a `then` method. + - `value` is any legal JavaScript value (including undefined, a thenable, or a promise). + - `exception` is a value that is thrown using the throw statement. + - `reason` is a value that indicates why a promise was rejected. + - `settled` the final resting state of a promise, fulfilled or rejected. + + A promise can be in one of three states: pending, fulfilled, or rejected. + + Promises that are fulfilled have a fulfillment value and are in the fulfilled + state. Promises that are rejected have a rejection reason and are in the + rejected state. A fulfillment value is never a thenable. + + Promises can also be said to *resolve* a value. If this value is also a + promise, then the original promise's settled state will match the value's + settled state. So a promise that *resolves* a promise that rejects will + itself reject, and a promise that *resolves* a promise that fulfills will + itself fulfill. + + + Basic Usage: + ------------ + + ```js + let promise = new Promise(function(resolve, reject) { + // on success + resolve(value); + + // on failure + reject(reason); + }); + + promise.then(function(value) { + // on fulfillment + }, function(reason) { + // on rejection + }); + ``` + + Advanced Usage: + --------------- + + Promises shine when abstracting away asynchronous interactions such as + `XMLHttpRequest`s. + + ```js + function getJSON(url) { + return new Promise(function(resolve, reject){ + let xhr = new XMLHttpRequest(); + + xhr.open('GET', url); + xhr.onreadystatechange = handler; + xhr.responseType = 'json'; + xhr.setRequestHeader('Accept', 'application/json'); + xhr.send(); + + function handler() { + if (this.readyState === this.DONE) { + if (this.status === 200) { + resolve(this.response); + } else { + reject(new Error('getJSON: `' + url + '` failed with status: [' + this.status + ']')); + } + } + }; + }); + } + + getJSON('/posts.json').then(function(json) { + // on fulfillment + }, function(reason) { + // on rejection + }); + ``` + + Unlike callbacks, promises are great composable primitives. + + ```js + Promise.all([ + getJSON('/posts'), + getJSON('/comments') + ]).then(function(values){ + values[0] // => postsJSON + values[1] // => commentsJSON + + return values; + }); + ``` + + @class Promise + @param {Function} resolver + Useful for tooling. + @constructor + */ + + var Promise$1 = function () { + function Promise(resolver) { + this[PROMISE_ID] = nextId(); + this._result = this._state = undefined; + this._subscribers = []; + + if (noop !== resolver) { + typeof resolver !== 'function' && needsResolver(); + this instanceof Promise ? initializePromise(this, resolver) : needsNew(); + } + } + + /** + The primary way of interacting with a promise is through its `then` method, + which registers callbacks to receive either a promise's eventual value or the + reason why the promise cannot be fulfilled. + ```js + findUser().then(function(user){ + // user is available + }, function(reason){ + // user is unavailable, and you are given the reason why + }); + ``` + Chaining + -------- + The return value of `then` is itself a promise. This second, 'downstream' + promise is resolved with the return value of the first promise's fulfillment + or rejection handler, or rejected if the handler throws an exception. + ```js + findUser().then(function (user) { + return user.name; + }, function (reason) { + return 'default name'; + }).then(function (userName) { + // If `findUser` fulfilled, `userName` will be the user's name, otherwise it + // will be `'default name'` + }); + findUser().then(function (user) { + throw new Error('Found user, but still unhappy'); + }, function (reason) { + throw new Error('`findUser` rejected and we're unhappy'); + }).then(function (value) { + // never reached + }, function (reason) { + // if `findUser` fulfilled, `reason` will be 'Found user, but still unhappy'. + // If `findUser` rejected, `reason` will be '`findUser` rejected and we're unhappy'. + }); + ``` + If the downstream promise does not specify a rejection handler, rejection reasons will be propagated further downstream. + ```js + findUser().then(function (user) { + throw new PedagogicalException('Upstream error'); + }).then(function (value) { + // never reached + }).then(function (value) { + // never reached + }, function (reason) { + // The `PedgagocialException` is propagated all the way down to here + }); + ``` + Assimilation + ------------ + Sometimes the value you want to propagate to a downstream promise can only be + retrieved asynchronously. This can be achieved by returning a promise in the + fulfillment or rejection handler. The downstream promise will then be pending + until the returned promise is settled. This is called *assimilation*. + ```js + findUser().then(function (user) { + return findCommentsByAuthor(user); + }).then(function (comments) { + // The user's comments are now available + }); + ``` + If the assimliated promise rejects, then the downstream promise will also reject. + ```js + findUser().then(function (user) { + return findCommentsByAuthor(user); + }).then(function (comments) { + // If `findCommentsByAuthor` fulfills, we'll have the value here + }, function (reason) { + // If `findCommentsByAuthor` rejects, we'll have the reason here + }); + ``` + Simple Example + -------------- + Synchronous Example + ```javascript + let result; + try { + result = findResult(); + // success + } catch(reason) { + // failure + } + ``` + Errback Example + ```js + findResult(function(result, err){ + if (err) { + // failure + } else { + // success + } + }); + ``` + Promise Example; + ```javascript + findResult().then(function(result){ + // success + }, function(reason){ + // failure + }); + ``` + Advanced Example + -------------- + Synchronous Example + ```javascript + let author, books; + try { + author = findAuthor(); + books = findBooksByAuthor(author); + // success + } catch(reason) { + // failure + } + ``` + Errback Example + ```js + function foundBooks(books) { + } + function failure(reason) { + } + findAuthor(function(author, err){ + if (err) { + failure(err); + // failure + } else { + try { + findBoooksByAuthor(author, function(books, err) { + if (err) { + failure(err); + } else { + try { + foundBooks(books); + } catch(reason) { + failure(reason); + } + } + }); + } catch(error) { + failure(err); + } + // success + } + }); + ``` + Promise Example; + ```javascript + findAuthor(). + then(findBooksByAuthor). + then(function(books){ + // found books + }).catch(function(reason){ + // something went wrong + }); + ``` + @method then + @param {Function} onFulfilled + @param {Function} onRejected + Useful for tooling. + @return {Promise} + */ + + /** + `catch` is simply sugar for `then(undefined, onRejection)` which makes it the same + as the catch block of a try/catch statement. + ```js + function findAuthor(){ + throw new Error('couldn't find that author'); + } + // synchronous + try { + findAuthor(); + } catch(reason) { + // something went wrong + } + // async with promises + findAuthor().catch(function(reason){ + // something went wrong + }); + ``` + @method catch + @param {Function} onRejection + Useful for tooling. + @return {Promise} + */ + + + Promise.prototype.catch = function _catch(onRejection) { + return this.then(null, onRejection); + }; + + /** + `finally` will be invoked regardless of the promise's fate just as native + try/catch/finally behaves + + Synchronous example: + + ```js + findAuthor() { + if (Math.random() > 0.5) { + throw new Error(); + } + return new Author(); + } + + try { + return findAuthor(); // succeed or fail + } catch(error) { + return findOtherAuther(); + } finally { + // always runs + // doesn't affect the return value + } + ``` + + Asynchronous example: + + ```js + findAuthor().catch(function(reason){ + return findOtherAuther(); + }).finally(function(){ + // author was either found, or not + }); + ``` + + @method finally + @param {Function} callback + @return {Promise} + */ + + + Promise.prototype.finally = function _finally(callback) { + var promise = this; + var constructor = promise.constructor; + + if (isFunction(callback)) { + return promise.then(function (value) { + return constructor.resolve(callback()).then(function () { + return value; + }); + }, function (reason) { + return constructor.resolve(callback()).then(function () { + throw reason; + }); + }); + } + + return promise.then(callback, callback); + }; + + return Promise; + }(); + + Promise$1.prototype.then = then; + Promise$1.all = all; + Promise$1.race = race; + Promise$1.resolve = resolve$1; + Promise$1.reject = reject$1; + Promise$1._setScheduler = setScheduler; + Promise$1._setAsap = setAsap; + Promise$1._asap = asap; + + /*global self*/ + function polyfill() { + var local = void 0; + + if (typeof commonjsGlobal !== 'undefined') { + local = commonjsGlobal; + } else if (typeof self !== 'undefined') { + local = self; + } else { + try { + local = Function('return this')(); + } catch (e) { + throw new Error('polyfill failed because global object is unavailable in this environment'); + } + } + + var P = local.Promise; + + if (P) { + var promiseToString = null; + try { + promiseToString = Object.prototype.toString.call(P.resolve()); + } catch (e) { + // silently ignored + } + + if (promiseToString === '[object Promise]' && !P.cast) { + return; + } + } + + local.Promise = Promise$1; + } + + // Strange compat.. + Promise$1.polyfill = polyfill; + Promise$1.Promise = Promise$1; + + return Promise$1; + + }))); + + + + + }); + + class RTCEndpoint extends Event$1 { + constructor(options) { + super('RTCPusherPlayer'); + this.TAG = '[RTCPusherPlayer]'; + let defaults = { + element: null, + // html video element + debug: false, + // if output debug log + zlmsdpUrl: '', + simulcast: false, + useCamera: true, + audioEnable: true, + videoEnable: true, + recvOnly: false, + resolution: { + w: 0, + h: 0 + }, + usedatachannel: false, + videoId: '', + audioId: '' + }; + this.options = Object.assign({}, defaults, options); + if (this.options.debug) { + setLogger(); + } + this.e = { + onicecandidate: this._onIceCandidate.bind(this), + ontrack: this._onTrack.bind(this), + onicecandidateerror: this._onIceCandidateError.bind(this), + onconnectionstatechange: this._onconnectionstatechange.bind(this), + ondatachannelopen: this._onDataChannelOpen.bind(this), + ondatachannelmsg: this._onDataChannelMsg.bind(this), + ondatachannelerr: this._onDataChannelErr.bind(this), + ondatachannelclose: this._onDataChannelClose.bind(this) + }; + this._remoteStream = null; + this._localStream = null; + this._tracks = []; + this.pc = new RTCPeerConnection(null); + this.pc.onicecandidate = this.e.onicecandidate; + this.pc.onicecandidateerror = this.e.onicecandidateerror; + this.pc.ontrack = this.e.ontrack; + this.pc.onconnectionstatechange = this.e.onconnectionstatechange; + this.datachannel = null; + if (this.options.usedatachannel) { + this.datachannel = this.pc.createDataChannel('chat'); + this.datachannel.onclose = this.e.ondatachannelclose; + this.datachannel.onerror = this.e.ondatachannelerr; + this.datachannel.onmessage = this.e.ondatachannelmsg; + this.datachannel.onopen = this.e.ondatachannelopen; + } + if (!this.options.recvOnly && (this.options.audioEnable || this.options.videoEnable)) this.start();else this.receive(); + } + receive() { + + //debug.error(this.TAG,'this not implement'); + const AudioTransceiverInit = { + direction: 'recvonly', + sendEncodings: [] + }; + const VideoTransceiverInit = { + direction: 'recvonly', + sendEncodings: [] + }; + if (this.options.videoEnable) { + this.pc.addTransceiver('video', VideoTransceiverInit); + } + if (this.options.audioEnable) { + this.pc.addTransceiver('audio', AudioTransceiverInit); + } + this.pc.createOffer().then(desc => { + log(this.TAG, 'offer:', desc.sdp); + this.pc.setLocalDescription(desc).then(() => { + axios({ + method: 'post', + url: this.options.zlmsdpUrl, + responseType: 'json', + data: desc.sdp, + headers: { + 'Content-Type': 'text/plain;charset=utf-8' + } + }).then(response => { + let ret = response.data; //JSON.parse(response.data); + if (ret.code != 0) { + // mean failed for offer/anwser exchange + this.dispatch(Events$1.WEBRTC_OFFER_ANWSER_EXCHANGE_FAILED, ret); + return; + } + let anwser = {}; + anwser.sdp = ret.sdp; + anwser.type = 'answer'; + log(this.TAG, 'answer:', ret.sdp); + this.pc.setRemoteDescription(anwser).then(() => { + log(this.TAG, 'set remote sucess'); + }).catch(e => { + error(this.TAG, e); + }); + }); + }); + }).catch(e => { + error(this.TAG, e); + }); + } + start() { + let videoConstraints = false; + let audioConstraints = false; + if (this.options.useCamera) { + if (this.options.videoEnable) videoConstraints = new VideoTrackConstraints(VideoSourceInfo.CAMERA); + if (this.options.audioEnable) audioConstraints = new AudioTrackConstraints(AudioSourceInfo.MIC); + if (typeof videoConstraints == 'object' && this.options.videoId != '') { + videoConstraints.deviceId = this.options.videoId; + } + if (typeof audioConstraints == 'object' && this.options.audioId != '') { + audioConstraints.deviceId = this.options.audioId; + } + } else { + if (this.options.videoEnable) { + videoConstraints = new VideoTrackConstraints(VideoSourceInfo.SCREENCAST); + if (this.options.audioEnable) audioConstraints = new AudioTrackConstraints(AudioSourceInfo.SCREENCAST); + } else { + if (this.options.audioEnable) audioConstraints = new AudioTrackConstraints(AudioSourceInfo.MIC);else { + // error shared display media not only audio + error(this.TAG, 'error paramter'); + } + if (typeof audioConstraints == 'object' && this.options.audioId != '') { + audioConstraints.deviceId = this.options.audioId; + } + } + } + if (this.options.resolution.w != 0 && this.options.resolution.h != 0 && typeof videoConstraints == 'object') { + videoConstraints.resolution = new Resolution(this.options.resolution.w, this.options.resolution.h); + } + MediaStreamFactory.createMediaStream(new StreamConstraints(audioConstraints, videoConstraints)).then(stream => { + this._localStream = stream; + this.dispatch(Events$1.WEBRTC_ON_LOCAL_STREAM, stream); + const AudioTransceiverInit = { + direction: 'sendrecv', + sendEncodings: [] + }; + const VideoTransceiverInit = { + direction: 'sendrecv', + sendEncodings: [] + }; + if (this.options.simulcast && stream.getVideoTracks().length > 0) { + VideoTransceiverInit.sendEncodings = [{ + rid: 'h', + active: true, + maxBitrate: 1000000 + }, { + rid: 'm', + active: true, + maxBitrate: 500000, + scaleResolutionDownBy: 2 + }, { + rid: 'l', + active: true, + maxBitrate: 200000, + scaleResolutionDownBy: 4 + }]; + } + if (this.options.audioEnable) { + if (stream.getAudioTracks().length > 0) { + this.pc.addTransceiver(stream.getAudioTracks()[0], AudioTransceiverInit); + } else { + AudioTransceiverInit.direction = 'recvonly'; + this.pc.addTransceiver('audio', AudioTransceiverInit); + } + } + if (this.options.videoEnable) { + if (stream.getVideoTracks().length > 0) { + this.pc.addTransceiver(stream.getVideoTracks()[0], VideoTransceiverInit); + } else { + VideoTransceiverInit.direction = 'recvonly'; + this.pc.addTransceiver('video', VideoTransceiverInit); + } + } + + /* + stream.getTracks().forEach((track,idx)=>{ + debug.log(this.TAG,track); + this.pc.addTrack(track); + }); + */ + this.pc.createOffer().then(desc => { + log(this.TAG, 'offer:', desc.sdp); + this.pc.setLocalDescription(desc).then(() => { + axios({ + method: 'post', + url: this.options.zlmsdpUrl, + responseType: 'json', + data: desc.sdp, + headers: { + 'Content-Type': 'text/plain;charset=utf-8' + } + }).then(response => { + let ret = response.data; //JSON.parse(response.data); + if (ret.code != 0) { + // mean failed for offer/anwser exchange + this.dispatch(Events$1.WEBRTC_OFFER_ANWSER_EXCHANGE_FAILED, ret); + return; + } + let anwser = {}; + anwser.sdp = ret.sdp; + anwser.type = 'answer'; + log(this.TAG, 'answer:', ret.sdp); + this.pc.setRemoteDescription(anwser).then(() => { + log(this.TAG, 'set remote sucess'); + }).catch(e => { + error(this.TAG, e); + }); + }); + }); + }).catch(e => { + error(this.TAG, e); + }); + }).catch(e => { + this.dispatch(Events$1.CAPTURE_STREAM_FAILED); + error(this.TAG, e); + }); + + //const offerOptions = {}; + /* + if (typeof this.pc.addTransceiver === 'function') { + // |direction| seems not working on Safari. + this.pc.addTransceiver('audio', { direction: 'recvonly' }); + this.pc.addTransceiver('video', { direction: 'recvonly' }); + } else { + offerOptions.offerToReceiveAudio = true; + offerOptions.offerToReceiveVideo = true; + } + */ + } + _onIceCandidate(event) { + if (event.candidate) { + log(this.TAG, 'Remote ICE candidate: \n ' + event.candidate.candidate); + // Send the candidate to the remote peer + } + } + _onTrack(event) { + this._tracks.push(event.track); + if (this.options.element && event.streams && event.streams.length > 0) { + this.options.element.srcObject = event.streams[0]; + this._remoteStream = event.streams[0]; + this.dispatch(Events$1.WEBRTC_ON_REMOTE_STREAMS, this._remoteStream); + } else { + if (this.pc.getReceivers().length == this._tracks.length) { + log(this.TAG, 'play remote stream '); + this._remoteStream = new MediaStream(this._tracks); + if (this.options.element) { + this.options.element.srcObject = this._remoteStream; + } + this.dispatch(Events$1.WEBRTC_ON_REMOTE_STREAMS, this._remoteStream); + } else { + error(this.TAG, 'wait stream track finish'); + } + } + } + _onIceCandidateError(event) { + this.dispatch(Events$1.WEBRTC_ICE_CANDIDATE_ERROR, event); + } + _onconnectionstatechange(event) { + this.dispatch(Events$1.WEBRTC_ON_CONNECTION_STATE_CHANGE, this.pc.connectionState); + } + _onDataChannelOpen(event) { + log(this.TAG, 'ondatachannel open:', event); + this.dispatch(Events$1.WEBRTC_ON_DATA_CHANNEL_OPEN, event); + } + _onDataChannelMsg(event) { + log(this.TAG, 'ondatachannel msg:', event); + this.dispatch(Events$1.WEBRTC_ON_DATA_CHANNEL_MSG, event); + } + _onDataChannelErr(event) { + log(this.TAG, 'ondatachannel err:', event); + this.dispatch(Events$1.WEBRTC_ON_DATA_CHANNEL_ERR, event); + } + _onDataChannelClose(event) { + log(this.TAG, 'ondatachannel close:', event); + this.dispatch(Events$1.WEBRTC_ON_DATA_CHANNEL_CLOSE, event); + } + sendMsg(data) { + if (this.datachannel != null) { + this.datachannel.send(data); + } else { + error(this.TAG, 'data channel is null'); + } + } + switchVideo(useCamera, deviceId) { + let videoConstraints = false; + if (useCamera) { + videoConstraints = new VideoTrackConstraints(VideoSourceInfo.CAMERA); + videoConstraints.deviceId = deviceId; + } else { + videoConstraints = new VideoTrackConstraints(VideoSourceInfo.SCREENCAST); + } + return MediaStreamFactory.createMediaStream(new StreamConstraints(false, videoConstraints)).then(stream => { + const videosender = this.pc.getSenders().find(e => e.track.kind === 'video'); + if (videosender != null && stream.getVideoTracks().length > 0) { + this._localStream.removeTrack(videosender.track); + this._localStream.addTrack(stream.getVideoTracks()[0]); + // stream change + this.dispatch(Events$1.WEBRTC_ON_LOCAL_STREAM, this._localStream); + return videosender.replaceTrack(stream.getVideoTracks()[0]); + } + return es6Promise.Promise.reject('video not exist or deviceid not vaild'); + }); + } + switcAudio(useMic, deviceId) { + let audioConstraints = false; + if (useMic) { + audioConstraints = new AudioTrackConstraints(AudioSourceInfo.MIC); + audioConstraints.deviceId = deviceId; + } else { + audioConstraints = new AudioTrackConstraints(AudioSourceInfo.SCREENCAST); + } + return MediaStreamFactory.createMediaStream(new StreamConstraints(audioConstraints, false)).then(stream => { + const audiosender = this.pc.getSenders().find(e => e.track.kind === 'audio'); + if (audiosender != null && stream.getAudioTracks().length > 0) { + this._localStream.removeTrack(audiosender.track); + this._localStream.addTrack(stream.getAudioTracks()[0]); + // stream change + this.dispatch(Events$1.WEBRTC_ON_LOCAL_STREAM, this._localStream); + return audiosender.replaceTrack(stream.getAudioTracks()[0]); + } + return es6Promise.Promise.reject('audio not exist or deviceid not vaild'); + }); + } + closeDataChannel() { + if (this.datachannel) { + this.datachannel.close(); + this.datachannel = null; + } + } + close() { + this.closeDataChannel(); + if (this.pc) { + this.pc.close(); + this.pc = null; + } + if (this.options) { + this.options = null; + } + if (this._localStream) { + this._localStream.getTracks().forEach((track, idx) => { + track.stop(); + }); + } + if (this._remoteStream) { + this._remoteStream.getTracks().forEach((track, idx) => { + track.stop(); + }); + } + this._tracks.forEach((track, idx) => { + track.stop(); + }); + this._tracks = []; + } + get remoteStream() { + return this._remoteStream; + } + get localStream() { + return this._localStream; + } + } + + const quickScan = [{ + 'label': '4K(UHD)', + 'width': 3840, + 'height': 2160 + }, { + 'label': '1080p(FHD)', + 'width': 1920, + 'height': 1080 + }, { + 'label': 'UXGA', + 'width': 1600, + 'height': 1200, + 'ratio': '4:3' + }, { + 'label': '720p(HD)', + 'width': 1280, + 'height': 720 + }, { + 'label': 'SVGA', + 'width': 800, + 'height': 600 + }, { + 'label': 'VGA', + 'width': 640, + 'height': 480 + }, { + 'label': '360p(nHD)', + 'width': 640, + 'height': 360 + }, { + 'label': 'CIF', + 'width': 352, + 'height': 288 + }, { + 'label': 'QVGA', + 'width': 320, + 'height': 240 + }, { + 'label': 'QCIF', + 'width': 176, + 'height': 144 + }, { + 'label': 'QQVGA', + 'width': 160, + 'height': 120 + }]; + function GetSupportCameraResolutions$1() { + return new Promise(function (resolve, reject) { + let resolutions = []; + let ok = 0; + let err = 0; + for (let i = 0; i < quickScan.length; ++i) { + let videoConstraints = new VideoTrackConstraints(VideoSourceInfo.CAMERA); + videoConstraints.resolution = new Resolution(quickScan[i].width, quickScan[i].height); + MediaStreamFactory.createMediaStream(new StreamConstraints(false, videoConstraints)).then(stream => { + stream.getVideoTracks().forEach(track => track.stop()); + resolutions.push(quickScan[i]); + ok++; + if (ok + err == quickScan.length) { + resolve(resolutions); + } + }).catch(e => { + err++; + if (ok + err == quickScan.length) { + resolve(resolutions); + } + }); + } + }); + } + function GetAllScanResolution$1() { + return quickScan; + } + function isSupportResolution$1(w, h) { + return new Promise(function (resolve, reject) { + let videoConstraints = new VideoTrackConstraints(VideoSourceInfo.CAMERA); + videoConstraints.resolution = new Resolution(w, h); + MediaStreamFactory.createMediaStream(new StreamConstraints(false, videoConstraints)).then(stream => { + stream.getVideoTracks().forEach(track => track.stop()); + resolve(); + }).catch(e => { + reject(e); + }); + }); + } + + function GetAllMediaDevice$1() { + return new Promise(function (resolve, reject) { + if (typeof navigator.mediaDevices != 'object' || typeof navigator.mediaDevices.enumerateDevices != 'function') { + reject('enumerateDevices() not supported.'); + } else { + // List cameras and microphones. + navigator.mediaDevices.enumerateDevices().then(devices => { + resolve(devices); + }).catch(err => { + reject(`${err.name}: ${err.message}`); + }); + } + }); + } + + console.log('build date:', BUILD_DATE); + console.log('version:', VERSION$1); + const Events = Events$1; + const Media = media; + const Endpoint = RTCEndpoint; + const GetSupportCameraResolutions = GetSupportCameraResolutions$1; + const GetAllScanResolution = GetAllScanResolution$1; + const isSupportResolution = isSupportResolution$1; + const GetAllMediaDevice = GetAllMediaDevice$1; + + exports.Endpoint = Endpoint; + exports.Events = Events; + exports.GetAllMediaDevice = GetAllMediaDevice; + exports.GetAllScanResolution = GetAllScanResolution; + exports.GetSupportCameraResolutions = GetSupportCameraResolutions; + exports.Media = Media; + exports.isSupportResolution = isSupportResolution; + + Object.defineProperty(exports, '__esModule', { value: true }); + + return exports; + +})({}); +export {ZLMRTCClient}; +//# sourceMappingURL=ZLMRTCClient.js.map \ No newline at end of file diff --git a/src/utils/clone.ts b/src/utils/clone.ts new file mode 100644 index 0000000..5c70b14 --- /dev/null +++ b/src/utils/clone.ts @@ -0,0 +1,18 @@ +export function deepClone(obj: T): T { + if (obj === null || typeof obj !== 'object') { + return obj; + } + + if (Array.isArray(obj)) { + return obj.map(item => deepClone(item)) as unknown as T; + } + + const clonedObj = {} as T; + for (const key in obj) { + if (Object.prototype.hasOwnProperty.call(obj, key)) { + (clonedObj as any)[key] = deepClone((obj as any)[key]); + } + } + + return clonedObj; +} \ No newline at end of file diff --git a/src/utils/color.ts b/src/utils/color.ts new file mode 100644 index 0000000..512e282 --- /dev/null +++ b/src/utils/color.ts @@ -0,0 +1,77 @@ +import { ElMessage } from 'element-plus'; + +/** + * @description hex颜色转rgb颜色 + * @param {String} str 颜色值字符串 + * @returns {String} 返回处理后的颜色值 + */ +export function hexToRgb(str: any) { + let hexs: any = ''; + const reg = /^#?[0-9A-Fa-f]{6}$/; + if (!reg.test(str)) { + return ElMessage.warning('输入错误的hex'); + } + str = str.replace('#', ''); + hexs = str.match(/../g); + for (let i = 0; i < 3; i++) { + hexs[i] = parseInt(hexs[i], 16); + } + return hexs; +} + +/** + * @description rgb颜色转Hex颜色 + * @param {*} r 代表红色 + * @param {*} g 代表绿色 + * @param {*} b 代表蓝色 + * @returns {String} 返回处理后的颜色值 + */ +export function rgbToHex(r: any, g: any, b: any) { + const reg = /^\d{1,3}$/; + if (!reg.test(r) || !reg.test(g) || !reg.test(b)) { + return ElMessage.warning('输入错误的rgb颜色值'); + } + const hexs = [r.toString(16), g.toString(16), b.toString(16)]; + for (let i = 0; i < 3; i++) { + if (hexs[i].length === 1) { + hexs[i] = `0${hexs[i]}`; + } + } + return `#${hexs.join('')}`; +} + +/** + * @description 加深颜色值 + * @param {String} color 颜色值字符串 + * @param {Number} level 加深的程度,限0-1之间 + * @returns {String} 返回处理后的颜色值 + */ +export function getDarkColor(color: string, level: number) { + const reg = /^#?[0-9A-Fa-f]{6}$/; + if (!reg.test(color)) { + return ElMessage.warning('输入错误的hex颜色值'); + } + const rgb = hexToRgb(color); + for (let i = 0; i < 3; i++) { + rgb[i] = Math.round(20.5 * level + rgb[i] * (1 - level)); + } + return rgbToHex(rgb[0], rgb[1], rgb[2]); +} + +/** + * @description 变浅颜色值 + * @param {String} color 颜色值字符串 + * @param {Number} level 加深的程度,限0-1之间 + * @returns {String} 返回处理后的颜色值 + */ +export function getLightColor(color: string, level: number) { + const reg = /^#?[0-9A-Fa-f]{6}$/; + if (!reg.test(color)) { + return ElMessage.warning('输入错误的hex颜色值'); + } + const rgb = hexToRgb(color); + for (let i = 0; i < 3; i++) { + rgb[i] = Math.round(255 * level + rgb[i] * (1 - level)); + } + return rgbToHex(rgb[0], rgb[1], rgb[2]); +} diff --git a/src/utils/errorHandler.ts b/src/utils/errorHandler.ts new file mode 100644 index 0000000..1576130 --- /dev/null +++ b/src/utils/errorHandler.ts @@ -0,0 +1,26 @@ +import { ElNotification } from 'element-plus'; + +/** + * @description 全局代码错误捕捉 + * */ +const errorHandler = (error: any): void => { + // 过滤 HTTP 请求错误 + if (!error || error.status || error.status === 0) return; + const errorMap: { [key: string]: string } = { + InternalError: 'Javascript引擎内部错误', + ReferenceError: '未找到对象', + TypeError: '使用了错误的类型或对象', + RangeError: '使用内置对象时,参数超范围', + SyntaxError: '语法错误', + EvalError: '错误的使用了Eval', + URIError: 'URI错误' + }; + const errorName = errorMap[error.name] || '未知错误'; + ElNotification({ + title: errorName, + message: error, + type: 'error', + duration: 3000 + }); +}; +export default errorHandler; diff --git a/src/utils/index.ts b/src/utils/index.ts new file mode 100644 index 0000000..a6edc4b --- /dev/null +++ b/src/utils/index.ts @@ -0,0 +1,365 @@ +import { isArray } from '@/utils/is'; +import forge from 'node-forge'; +/** + * @description 获取localStorage + * @param {String} key Storage名称 + * @returns {String} + */ +export function localGet(key: string) { + const value = window.localStorage.getItem(key); + try { + return JSON.parse(window.localStorage.getItem(key) as string); + } catch (error) { + console.log('localGet', error); + return value; + } +} + +/** + * @description 存储localStorage + * @param {String} key Storage名称 + * @param {*} value Storage值 + * @returns {void} + */ +export function localSet(key: string, value: any) { + window.localStorage.setItem(key, JSON.stringify(value)); +} + +/** + * @description 清除localStorage + * @param {String} key Storage名称 + * @returns {void} + */ +export function localRemove(key: string) { + window.localStorage.removeItem(key); +} + +/** + * @description 清除所有localStorage + * @returns {void} + */ +export function localClear() { + window.localStorage.clear(); +} + +/** + * @description 判断数据类型 + * @param {*} val 需要判断类型的数据 + * @returns {String} + */ +export function isType(val: any) { + if (val === null) { + return 'null'; + } + if (typeof val !== 'object') { + return typeof val; + } + return Object.prototype.toString.call(val).slice(8, -1).toLocaleLowerCase(); +} + +/** + * @description 生成唯一 uuid + * @returns {String} + */ +export function generateUUID() { + let uuid = ''; + for (let i = 0; i < 32; i++) { + const random = (Math.random() * 16) | 0; + if (i === 8 || i === 12 || i === 16 || i === 20) { + uuid += '-'; + } + uuid += (i === 12 ? 4 : i === 16 ? (random & 3) | 8 : random).toString(16); + } + return uuid; +} + +/** + * 判断两个对象是否相同 + * @param {Object} a 要比较的对象一 + * @param {Object} b 要比较的对象二 + * @returns {Boolean} 相同返回 true,反之 false + */ +export function isObjectValueEqual(a: { [key: string]: any }, b: { [key: string]: any }) { + if (!a || !b) { + return false; + } + const aProps = Object.getOwnPropertyNames(a); + const bProps = Object.getOwnPropertyNames(b); + if (aProps.length !== bProps.length) { + return false; + } + for (let i = 0; i < aProps.length; i++) { + const propName = aProps[i]; + const propA = a[propName]; + const propB = b[propName]; + if (!Object.prototype.hasOwnProperty.call(b, propName)) { + return false; + } + if (propA instanceof Object) { + if (!isObjectValueEqual(propA, propB)) { + return false; + } + } else if (propA !== propB) { + return false; + } + } + return true; +} + +/** + * @description 生成随机数 + * @param {Number} min 最小值 + * @param {Number} max 最大值 + * @returns {Number} + */ +export function randomNum(min: number, max: number): number { + return Math.floor(Math.random() * (min - max) + max); +} + +/** + * @description 获取当前时间对应的提示语 + * @returns {String} + */ +export function getTimeState() { + const timeNow = new Date(); + const hours = timeNow.getHours(); + if (hours >= 6 && hours <= 10) { + return `早上好 ⛅`; + } + if (hours >= 10 && hours <= 14) { + return `中午好 🌞`; + } + if (hours >= 14 && hours <= 18) { + return `下午好 🌞`; + } + if (hours >= 18 && hours <= 24) { + return `晚上好 🌛`; + } + if (hours >= 0 && hours <= 6) { + return `凌晨好 🌛`; + } +} + +/** + * @description 获取浏览器默认语言 + * @returns {String} + */ +export function getBrowserLang(): string { + const browserLang = navigator.language ? navigator.language : navigator.browserLanguage; + let defaultBrowserLang; + if (['cn', 'zh', 'zh-cn'].includes(browserLang.toLowerCase())) { + defaultBrowserLang = 'zh'; + } else { + defaultBrowserLang = 'en'; + } + return defaultBrowserLang; +} + +/** + * @description 使用递归扁平化菜单,方便添加动态路由 + * @param {Array} menuList 菜单列表 + * @returns {Array} + */ +export function getFlatMenuList(menuList: Menu.MenuOptions[]): Menu.MenuOptions[] { + const newMenuList: Menu.MenuOptions[] = JSON.parse(JSON.stringify(menuList)); + return newMenuList.flatMap(item => [item, ...(item.children ? getFlatMenuList(item.children) : [])]); +} + +export function getShowMenuList(menuList: Menu.MenuOptions[]): Menu.MenuOptions[] { + const newMenuList: Menu.MenuOptions[] = JSON.parse(JSON.stringify(menuList)); + return newMenuList.filter(item => { + if (item.children?.length) item.children = getShowMenuList(item.children); + return item.meta?.isHidden === 'F'; + }); +} + +/** + * @description 使用递归找出所有面包屑存储到 pinia/vuex 中 + * @param {Array} menuList 菜单列表 + * @param {Array} parent 父级菜单 + * @param {Object} result 处理后的结果 + * @returns {Object} + */ +export const getAllBreadcrumbList = ( + menuList: Menu.MenuOptions[], + parent: any[] = [], + result: { + [key: string]: any; + } = {} +) => { + for (const item of menuList) { + result[item.path] = [...parent, item]; + if (item.children) { + getAllBreadcrumbList(item.children, result[item.path], result); + } + } + return result; +}; + +/** + * @description 使用递归处理路由菜单 path,生成一维数组 (第一版本地路由鉴权会用到,该函数暂未使用) + * @param {Array} menuList 所有菜单列表 + * @param {Array} menuPathArr 菜单地址的一维数组 ['**','**'] + * @returns {Array} + */ +export function getMenuListPath(menuList: Menu.MenuOptions[], menuPathArr: string[] = []): string[] { + for (const item of menuList) { + if (typeof item === 'object' && item.path) { + menuPathArr.push(item.path); + } + if (item.children?.length) { + getMenuListPath(item.children, menuPathArr); + } + } + return menuPathArr; +} + +/** + * @description 递归查询当前 path 所对应的菜单对象 (该函数暂未使用) + * @param {Array} menuList 菜单列表 + * @param {String} path 当前访问地址 + * @returns {Object | null} + */ +export function findMenuByPath(menuList: Menu.MenuOptions[], path: string): Menu.MenuOptions | null { + for (const item of menuList) { + if (item.path === path) return item; + if (item.children) { + const res = findMenuByPath(item.children, path); + if (res) return res; + } + } + return null; +} + +/** + * @description 使用递归过滤需要缓存的菜单 name (该函数暂未使用) + * @param {Array} menuList 所有菜单列表 + * @param {Array} keepAliveNameArr 缓存的菜单 name ['**','**'] + * @returns {Array} + * */ +export function getKeepAliveRouterName(menuList: Menu.MenuOptions[], keepAliveNameArr: string[] = []): string[] { + menuList.forEach(item => { + if (item.meta.isKeepAlive === 'T' && item.name) keepAliveNameArr.push(item.name); + if (item.children?.length) getKeepAliveRouterName(item.children, keepAliveNameArr); + }); + return keepAliveNameArr; +} + +/** + * @description 格式化表格单元格默认值 (el-table-column) + * @param {Number} row 行 + * @param {Number} col 列 + * @param {*} callValue 当前单元格值 + * @returns {String} + * */ +export function formatTableColumn(row: number, col: number, callValue: any) { + // 如果当前值为数组,使用 / 拼接(根据需求自定义) + if (isArray(callValue)) { + return callValue.length ? callValue.join(' / ') : '--'; + } + return callValue ?? '--'; +} + +/** + * @description 处理值无数据情况 + * @param {*} callValue 需要处理的值 + * @returns {String} + * */ +export function formatValue(callValue: any) { + // 如果当前值为数组,使用 / 拼接(根据需求自定义) + if (isArray(callValue)) return callValue.length ? callValue.join(' / ') : '--'; + return callValue ?? '--'; +} + +/** + * @description 处理 prop 为多级嵌套的情况,返回的数据 (列如: prop: user.name) + * @param {Object} row 当前行数据 + * @param {String} prop 当前 prop + * @returns {*} + * */ +export function handleRowAccordingToProp(row: { [key: string]: any }, prop: string) { + if (!prop.includes('.')) { + return row[prop] ?? '--'; + } + prop.split('.').forEach(item => (row = row[item] ?? '--')); + return row; +} + +/** + * @description 处理 prop,当 prop 为多级嵌套时 ==> 返回最后一级 prop + * @param {String} prop 当前 prop + * @returns {String} + * */ +export function handleProp(prop: string) { + const propArr = prop.toString().split('.'); + if (propArr.length === 1) { + return prop; + } + return propArr[propArr.length - 1]; +} + +/** + * @description 根据枚举列表查询当需要的数据(如果指定了 label 和 value 的 key值,会自动识别格式化) + * @param {String} callValue 当前单元格值 + * @param {Array} enumData 字典列表 + * @param {Array} fieldNames label && value && children 的 key 值 + * @param {String} type 过滤类型(目前只有 tag) + * @returns {String} + * */ +export function filterEnum(callValue: any, enumData?: any, fieldNames?: any, type?: 'tag') { + const value = fieldNames?.value ?? 'value'; + const label = fieldNames?.label ?? 'label'; + const children = fieldNames?.children ?? 'children'; + const tagType = fieldNames?.tagType ?? 'tagType'; + let filterData: { [key: string]: any } = {}; + // 判断 enumData 是否为数组 + if (Array.isArray(enumData)) filterData = findItemNested(enumData, callValue, value, children); + // 判断是否输出的结果为 tag 类型 + if (type === 'tag') { + return filterData ? filterData[tagType] || '' : ''; + } else { + return filterData ? filterData[label] : '--'; + } +} + +/** + * @description 递归查找 callValue 对应的 enum 值 + * */ +export function findItemNested(enumData: any, callValue: any, value: string, children: string) { + return enumData.reduce((accumulator: any, current: any) => { + if (accumulator) return accumulator; + if (current[value]?.toString() === callValue?.toString()) return current; + if (current[children]) return findItemNested(current[children], callValue, value, children); + }, null); +} + +/** + * 是否是local env + */ +export function isLocalEnv() { + return import.meta.env.MODE === 'development' || import.meta.env.MODE === 'local' || import.meta.env.MODE === 'dev'; +} + +/** + * 使用 AES-GCM 模式加密消息 + * @param {string} message - 待加密的消息 + * @param {string} secretKey - 加密密钥(16 字节) + * @returns {{ iv: string, encryptedData: string }} - 返回加密后的数据和 IV + */ +export function aesEncrypt(message: string, secretKey: string) { + const iv = forge.random.getBytesSync(12); // 生成随机 IV (12 字节) + const key = forge.util.createBuffer(secretKey, 'utf8').bytes(); + + const cipher = forge.cipher.createCipher('AES-GCM', key); + cipher.start({ iv: iv }); + cipher.update(forge.util.createBuffer(message, 'utf8')); + cipher.finish(); + + const encrypted = cipher.output.getBytes(); + const tag = cipher.mode.tag.getBytes(); + + return { + iv: forge.util.encode64(iv), + encryptedData: forge.util.encode64(encrypted + tag) + }; +} diff --git a/src/utils/is.ts b/src/utils/is.ts new file mode 100644 index 0000000..cab5762 --- /dev/null +++ b/src/utils/is.ts @@ -0,0 +1,125 @@ +/** + * @description: 判断值是否未某个类型 + */ +export function is(val: unknown, type: string) { + return Object.prototype.toString.call(val) === `[object ${type}]`; +} + +/** + * @description: 是否为函数 + */ +export function isFunction any>(val: unknown): val is T { + return is(val, 'Function'); +} + +/** + * @description: 是否已定义 + */ +export const isDef = (val?: T): val is T => { + return typeof val !== 'undefined'; +}; + +/** + * @description: 是否未定义 + */ +export const isUnDef = (val?: T): val is T => { + return !isDef(val); +}; + +/** + * @description: 是否为对象 + */ +export const isObject = (val: any): val is Record => { + return val !== null && is(val, 'Object'); +}; + +/** + * @description: 是否为时间 + */ +export function isDate(val: unknown): val is Date { + return is(val, 'Date'); +} + +/** + * @description: 是否为数值 + */ +export function isNumber(val: unknown): val is number { + return is(val, 'Number'); +} + +/** + * @description: 是否为AsyncFunction + */ +export function isAsyncFunction(val: unknown): val is Promise { + return is(val, 'AsyncFunction'); +} + +/** + * @description: 是否为promise + */ +export function isPromise(val: unknown): val is Promise { + return is(val, 'Promise') && isObject(val) && isFunction(val.then) && isFunction(val.catch); +} + +/** + * @description: 是否为字符串 + */ +export function isString(val: unknown): val is string { + return is(val, 'String'); +} + +/** + * @description: 是否为boolean类型 + */ +export function isBoolean(val: unknown): val is boolean { + return is(val, 'Boolean'); +} + +/** + * @description: 是否为数组 + */ +export function isArray(val: any): val is Array { + return val && Array.isArray(val); +} + +/** + * @description: 是否客户端 + */ +export const isClient = () => { + return typeof window !== 'undefined'; +}; + +/** + * @description: 是否为浏览器 + */ +export const isWindow = (val: any): val is Window => { + return typeof window !== 'undefined' && is(val, 'Window'); +}; + +/** + * @description: 是否为 element 元素 + */ +export const isElement = (val: unknown): val is Element => { + return isObject(val) && !!val.tagName; +}; + +/** + * @description: 是否为 null + */ +export function isNull(val: unknown): val is null { + return val === null; +} + +/** + * @description: 是否为 null || undefined + */ +export function isNullOrUnDef(val: unknown): val is null | undefined { + return isUnDef(val) || isNull(val); +} + +/** + * @description: 是否为 16 进制颜色 + */ +export const isHexColor = (str: string) => { + return /^#?([0-9A-Fa-f]{3}|[0-9A-Fa-f]{6})$/.test(str); +}; diff --git a/src/utils/mittBus.ts b/src/utils/mittBus.ts new file mode 100644 index 0000000..c5a98aa --- /dev/null +++ b/src/utils/mittBus.ts @@ -0,0 +1,5 @@ +import mitt from 'mitt'; + +const mittBus = mitt(); + +export default mittBus; diff --git a/src/utils/oss.ts b/src/utils/oss.ts new file mode 100644 index 0000000..48cc1e4 --- /dev/null +++ b/src/utils/oss.ts @@ -0,0 +1,64 @@ +import type { OssTransform } from '@/api/types/system/common'; +import { getPrivateUrl } from '@/api/modules/system/common'; +import { useConfigStore } from '@/stores/modules/config'; + +/** + * 是否使用 private 模式: + * - 仅当 accessMode === 'private' 时返回 true + * - 其他任何值都当作 public(false) + */ +const isPrivateMode = (accessMode?: string): boolean => { + return accessMode === 'private'; +}; + +/** + * 计算 OSS 文件的实际展示地址 + * - 支持全局 private/public 开关(configStore.configOptions['oss.accessMode']) + * - 支持局部覆盖 usePrivate + * + * @param rawUrl 数据库中存储的原始 URL(或对象路径) + * @param options 可选参数:局部是否启用 private、bucket 等 + * @returns 最终用于 img/src 等展示的 URL(可能是原始/也可能是 privateUrl) + */ +export const getOssPreviewUrl = async ( + rawUrl: string, + options?: { + usePrivate?: boolean; // 单次调用是否启用 private,不传则走全局配置 + bucket?: string; + } +): Promise => { + // 1. 没有值,直接返回空 + if (!rawUrl) return ''; + + const configStore = useConfigStore(); + + // 2. 计算是否启用 private: + // - 优先使用 options.usePrivate(调用处强制指定) + // - 否则读取全局配置 oss.accessMode,并转换成布尔值 + let enablePrivate: boolean; + if (options?.usePrivate !== undefined) { + enablePrivate = options.usePrivate; + } else { + const accessMode = configStore.getConfigOption('oss.accessMode'); + enablePrivate = isPrivateMode(accessMode); + } + + // 3. public 模式:不做任何转换,直接返回原始地址 + if (!enablePrivate) return rawUrl; + + // 4. private 模式:调用后端接口获取签名地址 + try { + const params: OssTransform = { + url: rawUrl, + bucket: options?.bucket + }; + + const { data: presignedUrl } = await getPrivateUrl(params); + + return presignedUrl || rawUrl; + } catch (error) { + console.error('获取私有访问地址失败', error); + // 失败时回退到原始地址,至少保证能展示 + return rawUrl; + } +}; diff --git a/src/views/about/index.vue b/src/views/about/index.vue new file mode 100644 index 0000000..7794fee --- /dev/null +++ b/src/views/about/index.vue @@ -0,0 +1,108 @@ + + + + + diff --git a/src/views/camera/camera/components/CameraForm.vue b/src/views/camera/camera/components/CameraForm.vue new file mode 100644 index 0000000..73d8846 --- /dev/null +++ b/src/views/camera/camera/components/CameraForm.vue @@ -0,0 +1,130 @@ + + + + + \ No newline at end of file diff --git a/src/views/camera/camera/index.vue b/src/views/camera/camera/index.vue new file mode 100644 index 0000000..a466429 --- /dev/null +++ b/src/views/camera/camera/index.vue @@ -0,0 +1,249 @@ + + + \ No newline at end of file diff --git a/src/views/cameraalarm/Cameraalarm/components/AlarmDetailDrawer.vue b/src/views/cameraalarm/Cameraalarm/components/AlarmDetailDrawer.vue new file mode 100644 index 0000000..ffb25ef --- /dev/null +++ b/src/views/cameraalarm/Cameraalarm/components/AlarmDetailDrawer.vue @@ -0,0 +1,274 @@ + + + + + \ No newline at end of file diff --git a/src/views/cameraalarm/Cameraalarm/components/CameraAlarmForm.vue b/src/views/cameraalarm/Cameraalarm/components/CameraAlarmForm.vue new file mode 100644 index 0000000..1204f15 --- /dev/null +++ b/src/views/cameraalarm/Cameraalarm/components/CameraAlarmForm.vue @@ -0,0 +1,127 @@ + + + + + \ No newline at end of file diff --git a/src/views/cameraalarm/Cameraalarm/index.vue b/src/views/cameraalarm/Cameraalarm/index.vue new file mode 100644 index 0000000..031197f --- /dev/null +++ b/src/views/cameraalarm/Cameraalarm/index.vue @@ -0,0 +1,360 @@ + + + \ No newline at end of file diff --git a/src/views/demo/components/SendMessageForm.vue b/src/views/demo/components/SendMessageForm.vue new file mode 100644 index 0000000..5383dc3 --- /dev/null +++ b/src/views/demo/components/SendMessageForm.vue @@ -0,0 +1,98 @@ + + + + + diff --git a/src/views/demo/index.scss b/src/views/demo/index.scss new file mode 100644 index 0000000..67a7ab0 --- /dev/null +++ b/src/views/demo/index.scss @@ -0,0 +1,7 @@ +.content-box { + align-items: flex-start; + span { + width: 100%; + text-align: center; + } +} diff --git a/src/views/demo/index.vue b/src/views/demo/index.vue new file mode 100644 index 0000000..31df513 --- /dev/null +++ b/src/views/demo/index.vue @@ -0,0 +1,102 @@ + + + + + diff --git a/src/views/edgebox/EdgeBox/components/EdgeBoxForm.vue b/src/views/edgebox/EdgeBox/components/EdgeBoxForm.vue new file mode 100644 index 0000000..dded811 --- /dev/null +++ b/src/views/edgebox/EdgeBox/components/EdgeBoxForm.vue @@ -0,0 +1,90 @@ + + + + + \ No newline at end of file diff --git a/src/views/edgebox/EdgeBox/components/EdgeBoxTransferPro.vue b/src/views/edgebox/EdgeBox/components/EdgeBoxTransferPro.vue new file mode 100644 index 0000000..2faa65a --- /dev/null +++ b/src/views/edgebox/EdgeBox/components/EdgeBoxTransferPro.vue @@ -0,0 +1,341 @@ + + + + + \ No newline at end of file diff --git a/src/views/edgebox/EdgeBox/index.vue b/src/views/edgebox/EdgeBox/index.vue new file mode 100644 index 0000000..33df8b2 --- /dev/null +++ b/src/views/edgebox/EdgeBox/index.vue @@ -0,0 +1,211 @@ + + + \ No newline at end of file diff --git a/src/views/faceinfo/FaceInfo/components/FaceInfoForm.vue b/src/views/faceinfo/FaceInfo/components/FaceInfoForm.vue new file mode 100644 index 0000000..b5a347e --- /dev/null +++ b/src/views/faceinfo/FaceInfo/components/FaceInfoForm.vue @@ -0,0 +1,83 @@ + + + + + \ No newline at end of file diff --git a/src/views/faceinfo/FaceInfo/index.vue b/src/views/faceinfo/FaceInfo/index.vue new file mode 100644 index 0000000..2484710 --- /dev/null +++ b/src/views/faceinfo/FaceInfo/index.vue @@ -0,0 +1,690 @@ + + + + + diff --git a/src/views/home/components/DeviceTree.vue b/src/views/home/components/DeviceTree.vue new file mode 100644 index 0000000..4d3e4f4 --- /dev/null +++ b/src/views/home/components/DeviceTree.vue @@ -0,0 +1,245 @@ + + + + + \ No newline at end of file diff --git a/src/views/home/components/SurVeillanceView.vue b/src/views/home/components/SurVeillanceView.vue new file mode 100644 index 0000000..15a5533 --- /dev/null +++ b/src/views/home/components/SurVeillanceView.vue @@ -0,0 +1,32 @@ + + + + + \ No newline at end of file diff --git a/src/views/home/components/VideoGrid.vue b/src/views/home/components/VideoGrid.vue new file mode 100644 index 0000000..325a07c --- /dev/null +++ b/src/views/home/components/VideoGrid.vue @@ -0,0 +1,266 @@ + + + + + \ No newline at end of file diff --git a/src/views/home/index.scss b/src/views/home/index.scss new file mode 100644 index 0000000..c845eb6 --- /dev/null +++ b/src/views/home/index.scss @@ -0,0 +1,13 @@ +.home { + display: flex; + align-items: center; + justify-content: center; + width: 100%; + height: 100%; + + .home-bg { + width: 70%; + max-width: 1200px; + margin-bottom: 20px; + } +} diff --git a/src/views/home/index.vue b/src/views/home/index.vue new file mode 100644 index 0000000..3fe52cf --- /dev/null +++ b/src/views/home/index.vue @@ -0,0 +1,16 @@ + + + + + diff --git a/src/views/login/components/LoginForm.vue b/src/views/login/components/LoginForm.vue new file mode 100644 index 0000000..462e8cd --- /dev/null +++ b/src/views/login/components/LoginForm.vue @@ -0,0 +1,173 @@ + + + + + diff --git a/src/views/login/index.scss b/src/views/login/index.scss new file mode 100644 index 0000000..a2c637a --- /dev/null +++ b/src/views/login/index.scss @@ -0,0 +1,93 @@ +.login-container { + height: 100%; + min-height: 550px; + background-color: #eeeeee; + background-image: url('@/assets/images/login_bg.svg'); + background-size: cover; + + .login-box { + position: relative; + box-sizing: border-box; + display: flex; + align-items: center; + justify-content: space-around; + width: 96.5%; + height: 94%; + padding: 0 50px; + background-color: rgb(255 255 255 / 80%); + border-radius: 10px; + + .dark { + position: absolute; + top: 13px; + right: 18px; + } + + .login-left { + width: 800px; + margin-right: 10px; + + .login-left-img { + width: 100%; + height: 100%; + } + } + + .login-form { + width: 420px; + padding: 50px 40px 45px; + background-color: var(--el-bg-color); + border-radius: 10px; + box-shadow: rgb(0 0 0 / 10%) 0 2px 10px 2px; + + .login-logo { + display: flex; + align-items: center; + justify-content: center; + margin-bottom: 45px; + + .login-icon { + width: 60px; + height: 52px; + } + + .logo-text { + padding: 0 0 0 25px; + margin: 0; + font-size: 42px; + font-weight: bold; + color: #34495e; + white-space: nowrap; + } + } + + .el-form-item { + margin-bottom: 40px; + } + + .login-btn { + display: flex; + justify-content: space-between; + width: 100%; + margin-top: 40px; + white-space: nowrap; + + .el-button { + width: 185px; + } + } + } + } +} + +@media screen and (width <= 1250px) { + .login-left { + display: none; + } +} + +@media screen and (width <= 600px) { + .login-form { + width: 97% !important; + } +} diff --git a/src/views/login/index.vue b/src/views/login/index.vue new file mode 100644 index 0000000..79d575b --- /dev/null +++ b/src/views/login/index.vue @@ -0,0 +1,26 @@ + + + + + diff --git a/src/views/substation/Substation/components/SubstationForm.vue b/src/views/substation/Substation/components/SubstationForm.vue new file mode 100644 index 0000000..6c86444 --- /dev/null +++ b/src/views/substation/Substation/components/SubstationForm.vue @@ -0,0 +1,90 @@ + + + + + \ No newline at end of file diff --git a/src/views/substation/Substation/index.vue b/src/views/substation/Substation/index.vue new file mode 100644 index 0000000..790d29b --- /dev/null +++ b/src/views/substation/Substation/index.vue @@ -0,0 +1,183 @@ + + + \ No newline at end of file diff --git a/src/views/sysmonitortree/sysMonitorTree/components/AlgConfigForm.vue b/src/views/sysmonitortree/sysMonitorTree/components/AlgConfigForm.vue new file mode 100644 index 0000000..c819ce2 --- /dev/null +++ b/src/views/sysmonitortree/sysMonitorTree/components/AlgConfigForm.vue @@ -0,0 +1,333 @@ + + + + + \ No newline at end of file diff --git a/src/views/sysmonitortree/sysMonitorTree/components/CameraControl.vue b/src/views/sysmonitortree/sysMonitorTree/components/CameraControl.vue new file mode 100644 index 0000000..929ea4f --- /dev/null +++ b/src/views/sysmonitortree/sysMonitorTree/components/CameraControl.vue @@ -0,0 +1,708 @@ + + + + + \ No newline at end of file diff --git a/src/views/sysmonitortree/sysMonitorTree/components/DataSync.vue b/src/views/sysmonitortree/sysMonitorTree/components/DataSync.vue new file mode 100644 index 0000000..4003d95 --- /dev/null +++ b/src/views/sysmonitortree/sysMonitorTree/components/DataSync.vue @@ -0,0 +1,115 @@ + + + + + \ No newline at end of file diff --git a/src/views/sysmonitortree/sysMonitorTree/components/Direction.vue b/src/views/sysmonitortree/sysMonitorTree/components/Direction.vue new file mode 100644 index 0000000..548f31a --- /dev/null +++ b/src/views/sysmonitortree/sysMonitorTree/components/Direction.vue @@ -0,0 +1,179 @@ + + + + + \ No newline at end of file diff --git a/src/views/sysmonitortree/sysMonitorTree/components/VideoPlayer.vue b/src/views/sysmonitortree/sysMonitorTree/components/VideoPlayer.vue new file mode 100644 index 0000000..80fee8b --- /dev/null +++ b/src/views/sysmonitortree/sysMonitorTree/components/VideoPlayer.vue @@ -0,0 +1,186 @@ + + + + + diff --git a/src/views/sysmonitortree/sysMonitorTree/index.vue b/src/views/sysmonitortree/sysMonitorTree/index.vue new file mode 100644 index 0000000..303cfe8 --- /dev/null +++ b/src/views/sysmonitortree/sysMonitorTree/index.vue @@ -0,0 +1,1180 @@ + + + + + diff --git a/src/views/system/Product/components/ProductForm.vue b/src/views/system/Product/components/ProductForm.vue new file mode 100644 index 0000000..2c3d2ba --- /dev/null +++ b/src/views/system/Product/components/ProductForm.vue @@ -0,0 +1,85 @@ + + + + + \ No newline at end of file diff --git a/src/views/system/Product/index.vue b/src/views/system/Product/index.vue new file mode 100644 index 0000000..dff270c --- /dev/null +++ b/src/views/system/Product/index.vue @@ -0,0 +1,181 @@ + + + \ No newline at end of file diff --git a/src/views/system/accountManage/components/DeptTree.vue b/src/views/system/accountManage/components/DeptTree.vue new file mode 100644 index 0000000..b9f2472 --- /dev/null +++ b/src/views/system/accountManage/components/DeptTree.vue @@ -0,0 +1,223 @@ + + + + + diff --git a/src/views/system/accountManage/components/UserAdd.vue b/src/views/system/accountManage/components/UserAdd.vue new file mode 100644 index 0000000..faa5380 --- /dev/null +++ b/src/views/system/accountManage/components/UserAdd.vue @@ -0,0 +1,154 @@ + + + + + diff --git a/src/views/system/accountManage/components/UserDataPermissions.vue b/src/views/system/accountManage/components/UserDataPermissions.vue new file mode 100644 index 0000000..f2cae9a --- /dev/null +++ b/src/views/system/accountManage/components/UserDataPermissions.vue @@ -0,0 +1,102 @@ + + + + + diff --git a/src/views/system/accountManage/components/UserDeptForm.vue b/src/views/system/accountManage/components/UserDeptForm.vue new file mode 100644 index 0000000..2a1f3c7 --- /dev/null +++ b/src/views/system/accountManage/components/UserDeptForm.vue @@ -0,0 +1,141 @@ + + + + + diff --git a/src/views/system/accountManage/components/UserEdit.vue b/src/views/system/accountManage/components/UserEdit.vue new file mode 100644 index 0000000..0c63570 --- /dev/null +++ b/src/views/system/accountManage/components/UserEdit.vue @@ -0,0 +1,149 @@ + + + + + diff --git a/src/views/system/accountManage/components/UserPermissions.vue b/src/views/system/accountManage/components/UserPermissions.vue new file mode 100644 index 0000000..4e4a239 --- /dev/null +++ b/src/views/system/accountManage/components/UserPermissions.vue @@ -0,0 +1,103 @@ + + + + + diff --git a/src/views/system/accountManage/components/UserTagForm.vue b/src/views/system/accountManage/components/UserTagForm.vue new file mode 100644 index 0000000..3441bd9 --- /dev/null +++ b/src/views/system/accountManage/components/UserTagForm.vue @@ -0,0 +1,103 @@ + + + + + diff --git a/src/views/system/accountManage/index.vue b/src/views/system/accountManage/index.vue new file mode 100644 index 0000000..784c1f9 --- /dev/null +++ b/src/views/system/accountManage/index.vue @@ -0,0 +1,398 @@ + + + + + diff --git a/src/views/system/clientManage/components/SysClientForm.vue b/src/views/system/clientManage/components/SysClientForm.vue new file mode 100644 index 0000000..427fe4b --- /dev/null +++ b/src/views/system/clientManage/components/SysClientForm.vue @@ -0,0 +1,162 @@ + + + + + diff --git a/src/views/system/clientManage/index.vue b/src/views/system/clientManage/index.vue new file mode 100644 index 0000000..6e3cdd4 --- /dev/null +++ b/src/views/system/clientManage/index.vue @@ -0,0 +1,200 @@ + + + diff --git a/src/views/system/configManage/components/ConfigEditForm.vue b/src/views/system/configManage/components/ConfigEditForm.vue new file mode 100644 index 0000000..0069535 --- /dev/null +++ b/src/views/system/configManage/components/ConfigEditForm.vue @@ -0,0 +1,106 @@ + + + + + diff --git a/src/views/system/configManage/index.vue b/src/views/system/configManage/index.vue new file mode 100644 index 0000000..020c0c1 --- /dev/null +++ b/src/views/system/configManage/index.vue @@ -0,0 +1,92 @@ + + + diff --git a/src/views/system/dataRoleManage/components/DataRoleForm.vue b/src/views/system/dataRoleManage/components/DataRoleForm.vue new file mode 100644 index 0000000..17a05bc --- /dev/null +++ b/src/views/system/dataRoleManage/components/DataRoleForm.vue @@ -0,0 +1,288 @@ + + + + + diff --git a/src/views/system/dataRoleManage/index.vue b/src/views/system/dataRoleManage/index.vue new file mode 100644 index 0000000..8f483b4 --- /dev/null +++ b/src/views/system/dataRoleManage/index.vue @@ -0,0 +1,122 @@ + + + diff --git a/src/views/system/deptManage/components/DeptLeaderTransfer.vue b/src/views/system/deptManage/components/DeptLeaderTransfer.vue new file mode 100644 index 0000000..25356f2 --- /dev/null +++ b/src/views/system/deptManage/components/DeptLeaderTransfer.vue @@ -0,0 +1,92 @@ + + + + + diff --git a/src/views/system/deptManage/components/DeptPermissions.vue b/src/views/system/deptManage/components/DeptPermissions.vue new file mode 100644 index 0000000..fe5394f --- /dev/null +++ b/src/views/system/deptManage/components/DeptPermissions.vue @@ -0,0 +1,112 @@ + + + + + diff --git a/src/views/system/deptManage/components/SysDeptForm.vue b/src/views/system/deptManage/components/SysDeptForm.vue new file mode 100644 index 0000000..5ec0498 --- /dev/null +++ b/src/views/system/deptManage/components/SysDeptForm.vue @@ -0,0 +1,148 @@ + + + + + diff --git a/src/views/system/deptManage/index.vue b/src/views/system/deptManage/index.vue new file mode 100644 index 0000000..88c891f --- /dev/null +++ b/src/views/system/deptManage/index.vue @@ -0,0 +1,188 @@ + + + + diff --git a/src/views/system/dictManage/components/DictData.vue b/src/views/system/dictManage/components/DictData.vue new file mode 100644 index 0000000..8c86a1b --- /dev/null +++ b/src/views/system/dictManage/components/DictData.vue @@ -0,0 +1,153 @@ + + + + + diff --git a/src/views/system/dictManage/components/DictDataForm.vue b/src/views/system/dictManage/components/DictDataForm.vue new file mode 100644 index 0000000..6e7eeea --- /dev/null +++ b/src/views/system/dictManage/components/DictDataForm.vue @@ -0,0 +1,121 @@ + + + + + diff --git a/src/views/system/dictManage/components/DictTypeForm.vue b/src/views/system/dictManage/components/DictTypeForm.vue new file mode 100644 index 0000000..3750d15 --- /dev/null +++ b/src/views/system/dictManage/components/DictTypeForm.vue @@ -0,0 +1,84 @@ + + + + + diff --git a/src/views/system/dictManage/index.vue b/src/views/system/dictManage/index.vue new file mode 100644 index 0000000..3e047ac --- /dev/null +++ b/src/views/system/dictManage/index.vue @@ -0,0 +1,146 @@ + + + + diff --git a/src/views/system/fileManage/index.vue b/src/views/system/fileManage/index.vue new file mode 100644 index 0000000..b33ca06 --- /dev/null +++ b/src/views/system/fileManage/index.vue @@ -0,0 +1,80 @@ + + + diff --git a/src/views/system/menuManage/components/MenuForm.vue b/src/views/system/menuManage/components/MenuForm.vue new file mode 100644 index 0000000..a81e3dd --- /dev/null +++ b/src/views/system/menuManage/components/MenuForm.vue @@ -0,0 +1,310 @@ + + + + + diff --git a/src/views/system/menuManage/index.vue b/src/views/system/menuManage/index.vue new file mode 100644 index 0000000..420295f --- /dev/null +++ b/src/views/system/menuManage/index.vue @@ -0,0 +1,247 @@ + + + + diff --git a/src/views/system/message/detail.vue b/src/views/system/message/detail.vue new file mode 100644 index 0000000..01c05ac --- /dev/null +++ b/src/views/system/message/detail.vue @@ -0,0 +1,90 @@ + + + diff --git a/src/views/system/message/index.vue b/src/views/system/message/index.vue new file mode 100644 index 0000000..5d91695 --- /dev/null +++ b/src/views/system/message/index.vue @@ -0,0 +1,129 @@ + + + diff --git a/src/views/system/roleManage/components/RoleDataPermission.vue b/src/views/system/roleManage/components/RoleDataPermission.vue new file mode 100644 index 0000000..cc3ec07 --- /dev/null +++ b/src/views/system/roleManage/components/RoleDataPermission.vue @@ -0,0 +1,388 @@ + + + + + diff --git a/src/views/system/roleManage/components/RoleForm.vue b/src/views/system/roleManage/components/RoleForm.vue new file mode 100644 index 0000000..1db41a0 --- /dev/null +++ b/src/views/system/roleManage/components/RoleForm.vue @@ -0,0 +1,85 @@ + + + + + diff --git a/src/views/system/roleManage/components/RolePermissions.vue b/src/views/system/roleManage/components/RolePermissions.vue new file mode 100644 index 0000000..f4222b8 --- /dev/null +++ b/src/views/system/roleManage/components/RolePermissions.vue @@ -0,0 +1,157 @@ + + + + + diff --git a/src/views/system/roleManage/components/RoleSimpleDialog.vue b/src/views/system/roleManage/components/RoleSimpleDialog.vue new file mode 100644 index 0000000..4aa3031 --- /dev/null +++ b/src/views/system/roleManage/components/RoleSimpleDialog.vue @@ -0,0 +1,933 @@ + + + + + diff --git a/src/views/system/roleManage/index.vue b/src/views/system/roleManage/index.vue new file mode 100644 index 0000000..8278d0b --- /dev/null +++ b/src/views/system/roleManage/index.vue @@ -0,0 +1,133 @@ + + + diff --git a/src/views/system/sysLoginLog/index.vue b/src/views/system/sysLoginLog/index.vue new file mode 100644 index 0000000..dd51354 --- /dev/null +++ b/src/views/system/sysLoginLog/index.vue @@ -0,0 +1,105 @@ + + + diff --git a/src/views/system/sysTempFile/components/HistoryList.vue b/src/views/system/sysTempFile/components/HistoryList.vue new file mode 100644 index 0000000..7ff80e4 --- /dev/null +++ b/src/views/system/sysTempFile/components/HistoryList.vue @@ -0,0 +1,85 @@ + + + + + diff --git a/src/views/system/sysTempFile/components/SysTempFileForm.vue b/src/views/system/sysTempFile/components/SysTempFileForm.vue new file mode 100644 index 0000000..7d6509c --- /dev/null +++ b/src/views/system/sysTempFile/components/SysTempFileForm.vue @@ -0,0 +1,94 @@ + + + + + diff --git a/src/views/system/sysTempFile/index.vue b/src/views/system/sysTempFile/index.vue new file mode 100644 index 0000000..36f8099 --- /dev/null +++ b/src/views/system/sysTempFile/index.vue @@ -0,0 +1,169 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/custom-components/card-vue/index.vue b/src/views/teacher/teacherStatistics/components/custom-components/card-vue/index.vue new file mode 100644 index 0000000..e6cc9ec --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/custom-components/card-vue/index.vue @@ -0,0 +1,39 @@ + + + + diff --git a/src/views/teacher/teacherStatistics/components/custom-components/kv-vue/index.vue b/src/views/teacher/teacherStatistics/components/custom-components/kv-vue/index.vue new file mode 100644 index 0000000..66fa425 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/custom-components/kv-vue/index.vue @@ -0,0 +1,71 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/custom-components/now-time-vue/index.vue b/src/views/teacher/teacherStatistics/components/custom-components/now-time-vue/index.vue new file mode 100644 index 0000000..74a6710 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/custom-components/now-time-vue/index.vue @@ -0,0 +1,78 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/custom-components/sys-button-vue/index.vue b/src/views/teacher/teacherStatistics/components/custom-components/sys-button-vue/index.vue new file mode 100644 index 0000000..4279025 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/custom-components/sys-button-vue/index.vue @@ -0,0 +1,48 @@ + + diff --git a/src/views/teacher/teacherStatistics/components/custom-components/text-vue/index.vue b/src/views/teacher/teacherStatistics/components/custom-components/text-vue/index.vue new file mode 100644 index 0000000..937cd39 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/custom-components/text-vue/index.vue @@ -0,0 +1,39 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/custom-componet/myEditor.vue b/src/views/teacher/teacherStatistics/components/custom-componet/myEditor.vue new file mode 100644 index 0000000..445f732 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/custom-componet/myEditor.vue @@ -0,0 +1,198 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/globalFunctions.ts b/src/views/teacher/teacherStatistics/components/globalFunctions.ts new file mode 100644 index 0000000..0dde6b4 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/globalFunctions.ts @@ -0,0 +1,18 @@ +// src/composables/globalFunctions.ts +import { provide, inject, ref } from 'vue'; + +// 定义全局函数 +export function useMyGlobalFunction(param: any) { + console.log('全局函数被调用:', param); + // 实现您的功能 +} + +// 创建全局函数提供者 +export function provideGlobalFunctions() { + provide('myGlobalFunction', useMyGlobalFunction); +} + +// 在任何地方注入使用 +export function useGlobalFunction() { + return inject<(param: any) => void>('myGlobalFunction'); +} diff --git a/src/views/teacher/teacherStatistics/components/index.ts b/src/views/teacher/teacherStatistics/components/index.ts new file mode 100644 index 0000000..2508f96 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/index.ts @@ -0,0 +1,27 @@ +// 统一导出所有 xq 组件 +export { default as VueMyTest } from './my-test.vue'; +export { default as VueMyButton } from './my-button.vue'; +export { default as vueInstrument } from './vue-xq-test/vue-instrument.vue'; +export { default as VueTableOnly } from './vue-xq-test/vue-table-only.vue'; +export { default as VueTableComplex } from './vue-xq-test/vue-table-complex.vue'; +export { default as VueImg } from './vue-xq-test/vue-img.vue'; +export { default as VueRunInfo } from './vue-xq-test/vue-run-info.vue'; +export { default as VueMultiTypeInfo } from './vue-xq-test/vue-multi-type-info.vue'; +export { default as VueSignalInfo } from './vue-xq-test/vue-signal-info.vue'; +export { default as vueSignalGaudy } from './vue-xq-test/vue-signal-gaudy.vue'; +export { default as VueSwitchInfo } from './vue-xq-test/vue-switch-info.vue'; +export { default as VueNumInfo } from './vue-xq-test/vue-num-info.vue'; +export { default as VueRegulator } from './vue-xq-test/vue-regulator.vue'; +export { default as VueBaseTable } from './vue-xq-test/vue-base-table.vue'; +export { default as VueThreeMachine } from './vue-xq-test/vue-three-machine.vue'; +export { default as VueThreePipeline } from './vue-xq-test/vue-three-pipeline.vue'; +export { default as VueBaseCardInfo } from './vue-xq-test/vue-base-card-info.vue'; +export { default as VuePhotonCard } from './vue-xq-test/vue-photon-card.vue'; +export { default as VueEssentialInformation } from './vue-xq-test/vue-essential-information.vue'; +export { default as VueAssembleTable } from './vue-xq-test/vue-assemble-table.vue'; +export { default as VueSynthesizeTable } from './vue-xq-test/vue-synthesize-table.vue'; +export { default as VueThreeSmokeSiren } from './vue-xq-test/vue-three-smokeSiren.vue'; +export { default as VueThreeScene } from './vue-xq-test/vue-three-scene.vue'; +export { default as VueHostMachine } from './vue-xq-test/vue-host-machine.vue'; +export { default as VueThreeTest } from './vue-xq-test/vue-three-test.vue'; +export { default as VueThreeGroundFloor } from './vue-xq-test/vue-three-groundFloor.vue'; diff --git a/src/views/teacher/teacherStatistics/components/menu/bottomMenuIndex.vue b/src/views/teacher/teacherStatistics/components/menu/bottomMenuIndex.vue new file mode 100644 index 0000000..7581413 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/menu/bottomMenuIndex.vue @@ -0,0 +1,7 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/menu/doBottomMenuIndex.vue b/src/views/teacher/teacherStatistics/components/menu/doBottomMenuIndex.vue new file mode 100644 index 0000000..7b3507e --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/menu/doBottomMenuIndex.vue @@ -0,0 +1,3 @@ + diff --git a/src/views/teacher/teacherStatistics/components/menu/doCreateMenu.vue b/src/views/teacher/teacherStatistics/components/menu/doCreateMenu.vue new file mode 100644 index 0000000..f37730e --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/menu/doCreateMenu.vue @@ -0,0 +1,75 @@ + + + + + + + diff --git a/src/views/teacher/teacherStatistics/components/menu/index.vue b/src/views/teacher/teacherStatistics/components/menu/index.vue new file mode 100644 index 0000000..99300fc --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/menu/index.vue @@ -0,0 +1,18 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/menu/menuDoCreateMenu.vue b/src/views/teacher/teacherStatistics/components/menu/menuDoCreateMenu.vue new file mode 100644 index 0000000..e9c3431 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/menu/menuDoCreateMenu.vue @@ -0,0 +1,169 @@ + + + + + + + diff --git a/src/views/teacher/teacherStatistics/components/menu/menuIndex.vue b/src/views/teacher/teacherStatistics/components/menu/menuIndex.vue new file mode 100644 index 0000000..e401b29 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/menu/menuIndex.vue @@ -0,0 +1,76 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-dzr.zip b/src/views/teacher/teacherStatistics/components/mt-dzr.zip new file mode 100644 index 0000000..0550240 Binary files /dev/null and b/src/views/teacher/teacherStatistics/components/mt-dzr.zip differ diff --git a/src/views/teacher/teacherStatistics/components/mt-dzr/__tests__/mt-dzr.spec.ts b/src/views/teacher/teacherStatistics/components/mt-dzr/__tests__/mt-dzr.spec.ts new file mode 100644 index 0000000..d772c64 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-dzr/__tests__/mt-dzr.spec.ts @@ -0,0 +1,11 @@ +import { describe, it, expect } from 'vitest'; + +import { mount } from '@vue/test-utils'; +import HelloWorld from '../index.vue'; + +describe('HelloWorld', () => { + it('renders properly', () => { + const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }); + expect(wrapper.text()).toContain('Hello Vitest'); + }); +}); diff --git a/src/views/teacher/teacherStatistics/components/mt-dzr/components/render-item.vue b/src/views/teacher/teacherStatistics/components/mt-dzr/components/render-item.vue new file mode 100644 index 0000000..aab7e74 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-dzr/components/render-item.vue @@ -0,0 +1,5 @@ + diff --git a/src/views/teacher/teacherStatistics/components/mt-dzr/components/resize-handle.vue b/src/views/teacher/teacherStatistics/components/mt-dzr/components/resize-handle.vue new file mode 100644 index 0000000..cdecea1 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-dzr/components/resize-handle.vue @@ -0,0 +1,196 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-dzr/components/rotate-handle.vue b/src/views/teacher/teacherStatistics/components/mt-dzr/components/rotate-handle.vue new file mode 100644 index 0000000..3532fbb --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-dzr/components/rotate-handle.vue @@ -0,0 +1,88 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-dzr/composables/mouse.ts b/src/views/teacher/teacherStatistics/components/mt-dzr/composables/mouse.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/views/teacher/teacherStatistics/components/mt-dzr/index.ts b/src/views/teacher/teacherStatistics/components/mt-dzr/index.ts new file mode 100644 index 0000000..6957053 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-dzr/index.ts @@ -0,0 +1,3 @@ +import MtDzr from './index.vue'; + +export default MtDzr; diff --git a/src/views/teacher/teacherStatistics/components/mt-dzr/index.vue b/src/views/teacher/teacherStatistics/components/mt-dzr/index.vue new file mode 100644 index 0000000..45bb882 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-dzr/index.vue @@ -0,0 +1,286 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-dzr/store/index.ts b/src/views/teacher/teacherStatistics/components/mt-dzr/store/index.ts new file mode 100644 index 0000000..d1eee2c --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-dzr/store/index.ts @@ -0,0 +1,34 @@ +import { reactive } from 'vue'; +import type { IDzrCopyInfo, IDzrStore } from './types'; +import type { IDzrPropsModelValue } from '../types'; + +export const dzrStore: IDzrStore = reactive({ + dzr_copy_info: { + gen_id: '', + show: false, + value: { + left: 0, + top: 0, + width: 0, + height: 0, + angle: 0 + } + }, + setDzrCopyInfo: (value: IDzrCopyInfo) => { + dzrStore.dzr_copy_info = value; + }, + showDzrCopy: (value: IDzrPropsModelValue, gen_id: string) => { + dzrStore.setDzrCopyInfo({ + ...dzrStore.dzr_copy_info, + show: true, + value, + gen_id + }); + }, + hideDzrCopy: () => { + dzrStore.setDzrCopyInfo({ + ...dzrStore.dzr_copy_info, + show: false + }); + } +}); diff --git a/src/views/teacher/teacherStatistics/components/mt-dzr/store/types.ts b/src/views/teacher/teacherStatistics/components/mt-dzr/store/types.ts new file mode 100644 index 0000000..f3af2a3 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-dzr/store/types.ts @@ -0,0 +1,13 @@ +import type { IDzrPropsModelValue } from '../types'; + +export interface IDzrStore { + dzr_copy_info: IDzrCopyInfo; + setDzrCopyInfo: (value: IDzrCopyInfo) => void; + showDzrCopy: (value: IDzrPropsModelValue, gen_id: string) => void; + hideDzrCopy: () => void; +} +export interface IDzrCopyInfo { + gen_id: string; + show: boolean; + value: IDzrPropsModelValue; +} diff --git a/src/views/teacher/teacherStatistics/components/mt-dzr/types.ts b/src/views/teacher/teacherStatistics/components/mt-dzr/types.ts new file mode 100644 index 0000000..6fc0672 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-dzr/types.ts @@ -0,0 +1,31 @@ +export interface IDzrProps { + id: string; + modelValue: IDzrPropsModelValue; //位置和大小 + scaleRatio?: number; //画布缩放倍数 + hide: boolean; //隐藏 + grid?: IDzrPropsGrid; //网格配置 + resize?: boolean; //开启缩放 + rotate?: boolean; //开启旋转 + lock?: boolean; //锁定 + active?: boolean; //激活 + useProportionalScaling?: boolean; //开启等比例缩放 + showGhostDom?: boolean; //是否显示幽灵dom + class?: string; // + disabled: boolean; //是否禁用 + adsorp_diff?: { + x: number; + y: number; + }; +} +export interface IDzrPropsModelValue { + left: number; + top: number; + width: number; + height: number; + angle: number; +} +export interface IDzrPropsGrid { + enabled: boolean; //开启网格 + align: boolean; //对齐到网格 + size: number; //网格大小 +} diff --git a/src/views/teacher/teacherStatistics/components/mt-dzr/utils/index.ts b/src/views/teacher/teacherStatistics/components/mt-dzr/utils/index.ts new file mode 100644 index 0000000..bca1697 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-dzr/utils/index.ts @@ -0,0 +1,358 @@ +import type { IDzrPropsModelValue } from '../types'; +import type { MouseTouchEvent } from './types'; + +/** + * 会自动销毁的鼠标移动事件 + * @param onMousemove + */ +export const autoDestroyMouseMove = ( + onMousemove: (e: MouseTouchEvent) => void, + mouseUpCallBack?: () => void +) => { + const onMouseup = () => { + document.removeEventListener('mousemove', onMousemove); + document.removeEventListener('touchmove', onMousemove); + document.removeEventListener('mouseup', onMouseup); + document.removeEventListener('touchend', onMouseup); + document.removeEventListener('mouseleave', onMouseup); + if (mouseUpCallBack) { + mouseUpCallBack(); + } + }; + document.addEventListener('mousemove', onMousemove); + document.addEventListener('touchmove', onMousemove); + document.addEventListener('mouseup', onMouseup); + document.addEventListener('touchend', onMouseup); + document.addEventListener('mouseleave', onMouseup); +}; +/** + * 根据坐标对齐到网格 + * @param position 当前坐标 + * @param grid 网格大小 + * @returns 对应网格的坐标 + */ +export const alignToGrid = (position: number, grid = 1) => { + const integerPart = Math.floor(position / grid); + const fractionalPart = position % grid; + + if (fractionalPart >= grid / 2) { + return (integerPart + 1) * grid; + } else { + return integerPart * grid; + } +}; +/** 根据移动的距离对齐到网格 + * @param diff 移动的距离 + * @param grid 网格大小 + */ +export const calcGrid = (diff: number, grid = 1) => { + // 得到每次缩放的余数 + const r = Math.abs(diff) % grid; + + // 正负grid + const mulGrid = diff > 0 ? grid : -grid; + let result = 0; + // 余数大于grid的1/2 + if (r > grid / 2) { + result = mulGrid * Math.ceil(Math.abs(diff) / grid); + } else { + result = mulGrid * Math.floor(Math.abs(diff) / grid); + } + + return result; +}; +/** + * 获取当前点击坐标 根据pc端和移动端获取 + * @param e + * @returns + */ +export function getXY(e: MouseTouchEvent) { + let clientX = 0, + clientY = 0; + if (isTouchEvent(e)) { + const touch = e.targetTouches[0]; + clientX = touch.pageX; + clientY = touch.pageY; + } else { + clientX = e.clientX; + clientY = e.clientY; + } + + return { clientX, clientY }; +} + +function isTouchEvent(val: unknown): val is TouchEvent { + const typeStr = Object.prototype.toString.call(val); + return typeStr.substring(8, typeStr.length - 1) === 'TouchEvent'; +} + +export const getLength = (x: number, y: number) => Math.sqrt(x * x + y * y); + +export const degToRadian = (deg: number) => (deg * Math.PI) / 180; +const cos = (deg: number) => Math.cos(degToRadian(deg)); +const sin = (deg: number) => Math.sin(degToRadian(deg)); +/** + * 计算并返回给定类型变换的新样式。 + * + * @param {string} type - 变换的类型。 + * @param {any} rect - 矩形对象。 + * @param {number} deltaW - 宽度变化。 + * @param {number} deltaH - 高度变化。 + * @param {number | undefined} ratio - 比例。 + * @param {number} minWidth - 最小宽度。 + * @param {number} minHeight - 最小高度。 + * @returns {Object} 矩形的新位置和大小。 + */ +export const getNewStyle = ( + type: string, + rect: any, + deltaW: number, + deltaH: number, + ratio: number | undefined, + minWidth: number, + minHeight: number +) => { + // eslint-disable-next-line prefer-const + let { width, height, centerX, centerY, rotateAngle } = rect; + const widthFlag = width < 0 ? -1 : 1; + const heightFlag = height < 0 ? -1 : 1; + width = Math.abs(width); + height = Math.abs(height); + switch (type) { + case 'r': { + const widthAndDeltaW = setWidthAndDeltaW(width, deltaW, minWidth); + width = widthAndDeltaW.width; + deltaW = widthAndDeltaW.deltaW; + if (ratio) { + deltaH = deltaW / ratio; + height = width / ratio; + // 左上角固定 + centerX += (deltaW / 2) * cos(rotateAngle) - (deltaH / 2) * sin(rotateAngle); + centerY += (deltaW / 2) * sin(rotateAngle) + (deltaH / 2) * cos(rotateAngle); + } else { + // 左边固定 + centerX += (deltaW / 2) * cos(rotateAngle); + centerY += (deltaW / 2) * sin(rotateAngle); + } + break; + } + case 'tr': { + deltaH = -deltaH; + const widthAndDeltaW = setWidthAndDeltaW(width, deltaW, minWidth); + width = widthAndDeltaW.width; + deltaW = widthAndDeltaW.deltaW; + const heightAndDeltaH = setHeightAndDeltaH(height, deltaH, minHeight); + height = heightAndDeltaH.height; + deltaH = heightAndDeltaH.deltaH; + if (ratio) { + deltaW = deltaH * ratio; + width = height * ratio; + } + centerX += (deltaW / 2) * cos(rotateAngle) + (deltaH / 2) * sin(rotateAngle); + centerY += (deltaW / 2) * sin(rotateAngle) - (deltaH / 2) * cos(rotateAngle); + break; + } + case 'br': { + const widthAndDeltaW = setWidthAndDeltaW(width, deltaW, minWidth); + width = widthAndDeltaW.width; + deltaW = widthAndDeltaW.deltaW; + const heightAndDeltaH = setHeightAndDeltaH(height, deltaH, minHeight); + height = heightAndDeltaH.height; + deltaH = heightAndDeltaH.deltaH; + if (ratio) { + deltaW = deltaH * ratio; + width = height * ratio; + } + centerX += (deltaW / 2) * cos(rotateAngle) - (deltaH / 2) * sin(rotateAngle); + centerY += (deltaW / 2) * sin(rotateAngle) + (deltaH / 2) * cos(rotateAngle); + break; + } + case 'bc': { + const heightAndDeltaH = setHeightAndDeltaH(height, deltaH, minHeight); + height = heightAndDeltaH.height; + deltaH = heightAndDeltaH.deltaH; + if (ratio) { + deltaW = deltaH * ratio; + width = height * ratio; + // 左上角固定 + centerX += (deltaW / 2) * cos(rotateAngle) - (deltaH / 2) * sin(rotateAngle); + centerY += (deltaW / 2) * sin(rotateAngle) + (deltaH / 2) * cos(rotateAngle); + } else { + // 上边固定 + centerX -= (deltaH / 2) * sin(rotateAngle); + centerY += (deltaH / 2) * cos(rotateAngle); + } + break; + } + case 'bl': { + deltaW = -deltaW; + const widthAndDeltaW = setWidthAndDeltaW(width, deltaW, minWidth); + width = widthAndDeltaW.width; + deltaW = widthAndDeltaW.deltaW; + const heightAndDeltaH = setHeightAndDeltaH(height, deltaH, minHeight); + height = heightAndDeltaH.height; + deltaH = heightAndDeltaH.deltaH; + if (ratio) { + height = width / ratio; + deltaH = deltaW / ratio; + } + centerX -= (deltaW / 2) * cos(rotateAngle) + (deltaH / 2) * sin(rotateAngle); + centerY -= (deltaW / 2) * sin(rotateAngle) - (deltaH / 2) * cos(rotateAngle); + break; + } + case 'l': { + deltaW = -deltaW; + const widthAndDeltaW = setWidthAndDeltaW(width, deltaW, minWidth); + width = widthAndDeltaW.width; + deltaW = widthAndDeltaW.deltaW; + if (ratio) { + height = width / ratio; + deltaH = deltaW / ratio; + // 右上角固定 + centerX -= (deltaW / 2) * cos(rotateAngle) + (deltaH / 2) * sin(rotateAngle); + centerY -= (deltaW / 2) * sin(rotateAngle) - (deltaH / 2) * cos(rotateAngle); + } else { + // 右边固定 + centerX -= (deltaW / 2) * cos(rotateAngle); + centerY -= (deltaW / 2) * sin(rotateAngle); + } + break; + } + case 'tl': { + deltaW = -deltaW; + deltaH = -deltaH; + const widthAndDeltaW = setWidthAndDeltaW(width, deltaW, minWidth); + width = widthAndDeltaW.width; + deltaW = widthAndDeltaW.deltaW; + const heightAndDeltaH = setHeightAndDeltaH(height, deltaH, minHeight); + height = heightAndDeltaH.height; + deltaH = heightAndDeltaH.deltaH; + if (ratio) { + width = height * ratio; + deltaW = deltaH * ratio; + } + centerX -= (deltaW / 2) * cos(rotateAngle) - (deltaH / 2) * sin(rotateAngle); + centerY -= (deltaW / 2) * sin(rotateAngle) + (deltaH / 2) * cos(rotateAngle); + break; + } + case 'tc': { + deltaH = -deltaH; + const heightAndDeltaH = setHeightAndDeltaH(height, deltaH, minHeight); + height = heightAndDeltaH.height; + deltaH = heightAndDeltaH.deltaH; + if (ratio) { + width = height * ratio; + deltaW = deltaH * ratio; + // 左下角固定 + centerX += (deltaW / 2) * cos(rotateAngle) + (deltaH / 2) * sin(rotateAngle); + centerY += (deltaW / 2) * sin(rotateAngle) - (deltaH / 2) * cos(rotateAngle); + } else { + centerX += (deltaH / 2) * sin(rotateAngle); + centerY -= (deltaH / 2) * cos(rotateAngle); + } + break; + } + } + + return { + position: { + centerX, + centerY + }, + size: { + width: width * widthFlag, + height: height * heightFlag + } + }; +}; +/** + * 根据给定的参数设置高度和 deltaH 值。 + * + * @param {number} height - 当前的高度值。 + * @param {number} deltaH - 高度变化值。 + * @param {number} minHeight - 最小高度值。 + * @return {object} - 包含更新后的高度和 deltaH 值的对象。 + */ +const setHeightAndDeltaH = (height: number, deltaH: number, minHeight: number) => { + const expectedHeight = height + deltaH; + if (expectedHeight > minHeight) { + height = expectedHeight; + } else { + deltaH = minHeight - height; + height = minHeight; + } + return { height, deltaH }; +}; +/** + * 设置元素的宽度和deltaW值。 + * + * @param {number} width - 元素的当前宽度。 + * @param {number} deltaW - 元素宽度的变化量。 + * @param {number} minWidth - 元素的最小宽度。 + * @return {Object} - 包含更新后的宽度和deltaW值的对象。 + */ +const setWidthAndDeltaW = (width: number, deltaW: number, minWidth: number) => { + const expectedWidth = width + deltaW; + if (expectedWidth > minWidth) { + width = expectedWidth; + } else { + deltaW = minWidth - width; + width = minWidth; + } + return { width, deltaW }; +}; +/** + * 根据矩形的中心坐标、尺寸和角度计算左上角的位置。 + * + * @param {object} params - 计算的参数。 + * @param {number} params.centerX - 矩形的中心点的 x 坐标。 + * @param {number} params.centerY - 矩形的中心点的 y 坐标。 + * @param {number} params.width - 矩形的宽度。 + * @param {number} params.height - 矩形的高度。 + * @param {number} params.angle - 矩形的旋转角度。 + * @return {object} - 矩形的左上角位置。 + */ +export const centerToTL = ({ + centerX, + centerY, + width, + height, + angle +}: any): IDzrPropsModelValue => ({ + top: centerY - height / 2, + left: centerX - width / 2, + width, + height, + angle +}); +/** + * 格式化数据并返回一个包含更新后尺寸和位置的对象。 + * + * @param {IDzrPropsModelValue} data - 包含宽度和高度的数据。 + * @param {number} centerX - 中心点的x坐标。 + * @param {number} centerY - 中心点的y坐标。 + * @return {object} - 一个包含更新后尺寸和位置的对象。 + */ +export const formatData = (data: IDzrPropsModelValue, centerX: number, centerY: number) => { + const { width, height } = data; + return { + width: Math.abs(width), + height: Math.abs(height), + left: centerX - Math.abs(width) / 2, + top: centerY - Math.abs(height) / 2 + }; +}; +/** + * 生成随机字符串 + * @param len 生成个数 + */ +export const randomString = (len?: number) => { + len = len || 10; + const str = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; + const maxPos = str.length; + let random_str = ''; + for (let i = 0; i < len; i++) { + random_str += str.charAt(Math.floor(Math.random() * maxPos)); + } + return random_str; +}; diff --git a/src/views/teacher/teacherStatistics/components/mt-dzr/utils/types.ts b/src/views/teacher/teacherStatistics/components/mt-dzr/utils/types.ts new file mode 100644 index 0000000..c5e344a --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-dzr/utils/types.ts @@ -0,0 +1 @@ +export type MouseTouchEvent = MouseEvent | TouchEvent; diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/ace-edit.ts b/src/views/teacher/teacherStatistics/components/mt-edit/ace-edit.ts new file mode 100644 index 0000000..27213d8 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/ace-edit.ts @@ -0,0 +1,78 @@ +import ace from 'ace-builds'; + +import themeMonokaiUrl from 'ace-builds/src-noconflict/theme-monokai?url'; +ace.config.setModuleUrl('ace/theme/monokai', themeMonokaiUrl); + +import workerBaseUrl from 'ace-builds/src-noconflict/worker-base?url'; +ace.config.setModuleUrl('ace/mode/base', workerBaseUrl); + +import modeJsonUrl from 'ace-builds/src-noconflict/mode-json?url'; +ace.config.setModuleUrl('ace/mode/json', modeJsonUrl); +import workerJsonUrl from 'ace-builds/src-noconflict/worker-json?url'; +ace.config.setModuleUrl('ace/mode/json_worker', workerJsonUrl); +import snippetsJsonUrl from 'ace-builds/src-noconflict/snippets/json?url'; +ace.config.setModuleUrl('ace/snippets/json', snippetsJsonUrl); + +import modeJavascriptUrl from 'ace-builds/src-noconflict/mode-javascript?url'; +ace.config.setModuleUrl('ace/mode/javascript', modeJavascriptUrl); +import workerJavascriptUrl from 'ace-builds/src-noconflict/worker-javascript?url'; +ace.config.setModuleUrl('ace/mode/javascript_worker', workerJavascriptUrl); +import snippetsJavascriptUrl from 'ace-builds/src-noconflict/snippets/javascript?url'; +ace.config.setModuleUrl('ace/snippets/javascript', snippetsJavascriptUrl); + +import 'ace-builds/src-noconflict/ext-language_tools'; +// ace.require('ace/ext/language_tools'); +const langTools = ace.require('ace/ext/language_tools'); +langTools.addCompleter({ + getCompletions: function ( + _editor: any, + _session: any, + _pos: any, + prefix: string | any[], + callback: ( + arg0: null, + arg1: { + name: string; //显示的名称 + value: string; //插入的值, + score: number; //分数 + meta: string; //描述 + }[] + ) => void + ) { + if (prefix.length === 0) { + callback(null, []); + return; + } + callback(null, [ + { + name: '$mtEventCallBack', + value: '$mtEventCallBack(type,$item_info.id)', + score: 1000, + meta: '执行订阅回调函数' + }, + { + name: '$mtElMessage', + value: '$mtElMessage.success("成功")', + score: 1000, + meta: '消息提示' + }, + { + name: '$mtElMessageBox', + value: `$mtElMessageBox.alert('This is a message', 'Title', { + confirmButtonText: 'OK', + callback: (action) => { + console.log(action) + }, + })`, + score: 1000, + meta: '消息弹出框' + }, + { + name: '$item_info', + value: '$item_info', + score: 1000, + meta: '回调函数中获取当前触发事件图形的信息' + } + ]); + } +}); diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/assets/css/custom_ani.css b/src/views/teacher/teacherStatistics/components/mt-edit/assets/css/custom_ani.css new file mode 100644 index 0000000..97017d8 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/assets/css/custom_ani.css @@ -0,0 +1,37 @@ +@-webkit-keyframes rotate360 { + 0% { + -webkit-transform: rotate3d(0, 0, 1, 0deg); + transform: rotate3d(0, 0, 1, 0deg); + } + 50% { + -webkit-transform: rotate3d(0, 0, 1, 180deg); + transform: rotate3d(0, 0, 1, 180deg); + } + to { + -webkit-transform: rotate3d(0, 0, 1, 360deg); + transform: rotate3d(0, 0, 1, 360deg); + } +} + +@keyframes rotate360 { + 0% { + -webkit-transform: rotate3d(0, 0, 1, 0deg); + transform: rotate3d(0, 0, 1, 0deg); + } + 50% { + -webkit-transform: rotate3d(0, 0, 1, 180deg); + transform: rotate3d(0, 0, 1, 180deg); + } + to { + -webkit-transform: rotate3d(0, 0, 1, 360deg); + transform: rotate3d(0, 0, 1, 360deg); + } +} + +.animate__rotate360 { + -webkit-animation-name: rotate360; + animation-name: rotate360; + animation-timing-function: linear; + -webkit-transform-origin: center; + transform-origin: center; +} diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/context-menu/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/context-menu/index.vue new file mode 100644 index 0000000..1b28ef4 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/context-menu/index.vue @@ -0,0 +1,86 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/custom-svg-render/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/custom-svg-render/index.vue new file mode 100644 index 0000000..87ad777 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/custom-svg-render/index.vue @@ -0,0 +1,26 @@ + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/done-tree/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/done-tree/index.vue new file mode 100644 index 0000000..a77039c --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/done-tree/index.vue @@ -0,0 +1,51 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/drag-canvas/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/drag-canvas/index.vue new file mode 100644 index 0000000..4a884ee --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/drag-canvas/index.vue @@ -0,0 +1,49 @@ + + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/draw-line-render/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/draw-line-render/index.vue new file mode 100644 index 0000000..78cb764 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/draw-line-render/index.vue @@ -0,0 +1,204 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/export-json/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/export-json/index.vue new file mode 100644 index 0000000..0c803d2 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/export-json/index.vue @@ -0,0 +1,40 @@ + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/group-render/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/group-render/index.vue new file mode 100644 index 0000000..6834620 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/group-render/index.vue @@ -0,0 +1,48 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/import-json/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/import-json/index.vue new file mode 100644 index 0000000..3f52548 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/import-json/index.vue @@ -0,0 +1,42 @@ + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/base-panel/imageModel.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/base-panel/imageModel.vue new file mode 100644 index 0000000..6464f1c --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/base-panel/imageModel.vue @@ -0,0 +1,335 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/footer-panel/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/footer-panel/index.vue new file mode 100644 index 0000000..a0ae5f0 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/footer-panel/index.vue @@ -0,0 +1,10 @@ + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/header-panel/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/header-panel/index.vue new file mode 100644 index 0000000..eaaf939 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/header-panel/index.vue @@ -0,0 +1,407 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/left-aside/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/left-aside/index.vue new file mode 100644 index 0000000..21f6947 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/left-aside/index.vue @@ -0,0 +1,410 @@ + + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/main-panel/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/main-panel/index.vue new file mode 100644 index 0000000..3165dc9 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/main-panel/index.vue @@ -0,0 +1,1310 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/index.vue new file mode 100644 index 0000000..5ea2f2f --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/index.vue @@ -0,0 +1,45 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/json-edit.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/json-edit.vue new file mode 100644 index 0000000..cb0b555 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/json-edit.vue @@ -0,0 +1,43 @@ + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/page-setting.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/page-setting.vue new file mode 100644 index 0000000..043f2da --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/page-setting.vue @@ -0,0 +1,418 @@ + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-animate-setting/common-animate.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-animate-setting/common-animate.vue new file mode 100644 index 0000000..2d80ada --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-animate-setting/common-animate.vue @@ -0,0 +1,192 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-animate-setting/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-animate-setting/index.vue new file mode 100644 index 0000000..de06f45 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-animate-setting/index.vue @@ -0,0 +1,91 @@ + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-event-setting/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-event-setting/index.vue new file mode 100644 index 0000000..e7b3996 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-event-setting/index.vue @@ -0,0 +1,495 @@ + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-event-setting/input-target-value.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-event-setting/input-target-value.vue new file mode 100644 index 0000000..f395d58 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-event-setting/input-target-value.vue @@ -0,0 +1,31 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-props-setting.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-props-setting.vue new file mode 100644 index 0000000..0e378d7 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-props-setting.vue @@ -0,0 +1,392 @@ + + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-setting.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-setting.vue new file mode 100644 index 0000000..85fe11f --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/layout/right-aside/select-item-setting.vue @@ -0,0 +1,388 @@ + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/line-render/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/line-render/index.vue new file mode 100644 index 0000000..5a5099e --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/line-render/index.vue @@ -0,0 +1,540 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/pattern-grid/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/pattern-grid/index.vue new file mode 100644 index 0000000..2728f7a --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/pattern-grid/index.vue @@ -0,0 +1,86 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/render-core/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/render-core/index.vue new file mode 100644 index 0000000..e80f9af --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/render-core/index.vue @@ -0,0 +1,289 @@ + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/render-core/types.ts b/src/views/teacher/teacherStatistics/components/mt-edit/components/render-core/types.ts new file mode 100644 index 0000000..8c5edc4 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/render-core/types.ts @@ -0,0 +1,7 @@ +import type { CacheBoundingBox, IDoneJsonBinfo } from '../../store/types'; + +export interface onItemMoveParams { + move_item_bounding_info: MoveItemBoundingInfo[]; + move_binfo: IDoneJsonBinfo & { id: string }; +} +export type MoveItemBoundingInfo = CacheBoundingBox; diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/render-item/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/render-item/index.vue new file mode 100644 index 0000000..06df5ce --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/render-item/index.vue @@ -0,0 +1,134 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/selected-area/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/selected-area/index.vue new file mode 100644 index 0000000..fb4657a --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/selected-area/index.vue @@ -0,0 +1,94 @@ + + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/selected-area/types.ts b/src/views/teacher/teacherStatistics/components/mt-edit/components/selected-area/types.ts new file mode 100644 index 0000000..51c5166 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/selected-area/types.ts @@ -0,0 +1,6 @@ +export interface IAreaBinfo { + width: number; + height: number; + top: number; + left: number; +} diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/svg-analysis/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/svg-analysis/index.vue new file mode 100644 index 0000000..e07032e --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/svg-analysis/index.vue @@ -0,0 +1,19 @@ + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/svg-render/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/components/svg-render/index.vue new file mode 100644 index 0000000..c3d0d70 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/svg-render/index.vue @@ -0,0 +1,30 @@ + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/components/types.ts b/src/views/teacher/teacherStatistics/components/mt-edit/components/types.ts new file mode 100644 index 0000000..3468e31 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/components/types.ts @@ -0,0 +1,13 @@ +import type { IDoneJson, IGlobalStoreCanvasCfg, IGlobalStoreGridCfg } from '../store/types'; + +export type MouseTouchEvent = MouseEvent | TouchEvent; +export interface IExportDoneJson extends Omit { + props: { + [key: string]: any; + }; +} +export interface IExportJson { + canvasCfg: IGlobalStoreCanvasCfg; + gridCfg: IGlobalStoreGridCfg; + json: IExportDoneJson[]; +} diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/composables/index.ts b/src/views/teacher/teacherStatistics/components/mt-edit/composables/index.ts new file mode 100644 index 0000000..4e0a4f6 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/composables/index.ts @@ -0,0 +1,73 @@ +import type { IExportDoneJson, IExportJson } from '../components/types'; +import { leftAsideStore } from '../store/left-aside'; +import type { + IDoneJson, + IGlobalStoreCanvasCfg, + IGlobalStoreGridCfg, + ILeftAsideConfigItem, + ILeftAsideConfigItemPublicProps +} from '../store/types'; +import { objectDeepClone } from '../utils'; + +export const genExportJson = ( + canvasCfg: IGlobalStoreCanvasCfg, + gridCfg: IGlobalStoreGridCfg, + doneJson: IDoneJson[] +) => { + let export_done_json: IExportDoneJson[] = []; + export_done_json = objectDeepClone(doneJson).map((m) => { + if (m.symbol) { + delete m.symbol; + } + let new_props = {}; + for (const key in m.props) { + new_props = { ...new_props, ...{ [key]: m.props[key].val } }; + } + return { + ...m, + props: new_props, + active: false + }; + }); + const exportJson: IExportJson = { + canvasCfg, + gridCfg, + json: export_done_json + }; + return { exportJson }; +}; +export const useExportJsonToDoneJson = (json: IExportJson) => { + // 取出所有图形的初始配置 + let init_configs: ILeftAsideConfigItem[] = []; + for (const iterator of leftAsideStore.config.values()) { + if (iterator.length > 0) { + init_configs = [...init_configs, ...iterator]; + } + } + const importDoneJson: IDoneJson[] = json.json.map((m) => { + let props: ILeftAsideConfigItemPublicProps = {}; + let symbol = undefined; + // 找到原始的props + const find_item = init_configs.find((f) => f?.id == m.tag); + const find_props = find_item?.props; + if (find_props) { + props = { ...props, ...objectDeepClone(find_props) }; + } + for (const key in m.props) { + if (props[key]) props[key].val = m.props[key]; + } + if (find_item?.symbol) { + symbol = find_item.symbol; + } + return { + ...m, + props, + symbol + }; + }); + return { + canvasCfg: json.canvasCfg, + gridCfg: json.gridCfg, + importDoneJson + }; +}; diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/composables/sys-line.ts b/src/views/teacher/teacherStatistics/components/mt-edit/composables/sys-line.ts new file mode 100644 index 0000000..f599cdf --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/composables/sys-line.ts @@ -0,0 +1,204 @@ +import { nextTick } from 'vue'; +import type { IDoneJson, IDoneJsonBinfo } from '../store/types'; +import { getRectCenterCoordinate, getRectCoordinate, rotatePoint } from '../utils'; + +/** + * 更新系统连线实际宽高 + * @param sys_lines + * @param scale + */ +export const useUpdateSysLineRect = ( + sys_lines: IDoneJson[], + canvasDom: HTMLElement, + scale: number +) => { + sys_lines.forEach((f) => { + const itemRect = document.querySelector(`#${f.id} g .real`)!.getBoundingClientRect(); + const canvas_area_bounding_info = canvasDom!.getBoundingClientRect(); + const new_left = (itemRect?.left - canvas_area_bounding_info?.left) / scale; + const new_top = (itemRect?.top - canvas_area_bounding_info?.top) / scale; + const move_x = new_left - f.binfo.left; + const move_y = new_top - f.binfo.top; + f.binfo.left = new_left; + f.binfo.top = new_top; + f.binfo.width = itemRect?.width / scale; + f.binfo.height = itemRect?.height / scale; + f.props.point_position = { + ...f.props.point_position, + val: f.props.point_position.val.map((m: { x: number; y: number }) => { + return { + x: m.x - move_x, + y: m.y - move_y + }; + }) + }; + }); +}; +/** + * 更新系统连线 + * @param sys_lines 要更新的连线列表 + * @param done_json 所有组件信息 + * @param canvasDom 画布dom + * @param scale 画布缩放 + */ +export const useUpdateSysLine = ( + sys_lines: IDoneJson[], + done_json: IDoneJson[], + canvasDom: HTMLElement, + scale: number, + move_binfo?: IDoneJsonBinfo & { id: string } +) => { + const temp_done_json = [...done_json]; + sys_lines.forEach((f) => { + if (!f.props.bind_anchors.val.start && !f.props.bind_anchors.val.end) { + return; + } + const itemRect = document.querySelector(`#${f.id} g .real`)!.getBoundingClientRect(); + const canvas_area_bounding_info = canvasDom!.getBoundingClientRect(); + const new_left = (itemRect?.left - canvas_area_bounding_info?.left) / scale; + const new_top = (itemRect?.top - canvas_area_bounding_info?.top) / scale; + + // 处理起点绑定 + if (f.props.bind_anchors.val.start) { + // 根据id和类型找到锚点坐标 + const find_item = temp_done_json.find((m) => m.id === f.props.bind_anchors.val.start.id); + if (find_item) { + const b_info = find_item.id === move_binfo?.id ? move_binfo : find_item.binfo; + // 四个角原始坐标 + const { topLeft, topRight, bottomLeft, bottomRight } = getRectCoordinate(b_info); + // 四条边中点坐标 + const { topCenter, bottomCenter, leftCenter, rightCenter } = getRectCenterCoordinate( + topLeft, + topRight, + bottomLeft, + bottomRight + ); + // 旋转中心 + const centerX = topCenter.x; + const centerY = leftCenter.y; + + // 旋转角度(弧度) + const angleRad = (Math.PI / 180) * find_item.binfo.angle; + + if (f.props.bind_anchors.val.start.type === 'tc') { + const new_tc = rotatePoint(topCenter.x, topCenter.y, centerX, centerY, angleRad); + f.props.point_position.val[0] = { + x: new_tc.x - f.binfo.left, + y: new_tc.y - f.binfo.top + }; + } else if (f.props.bind_anchors.val.start.type === 'bc') { + const new_bc = rotatePoint(bottomCenter.x, bottomCenter.y, centerX, centerY, angleRad); + f.props.point_position.val[0] = { + x: new_bc.x - f.binfo.left, + y: new_bc.y - f.binfo.top + }; + } else if (f.props.bind_anchors.val.start.type === 'lc') { + const new_lc = rotatePoint(leftCenter.x, leftCenter.y, centerX, centerY, angleRad); + f.props.point_position.val[0] = { + x: new_lc.x - f.binfo.left, + y: new_lc.y - f.binfo.top + }; + } else if (f.props.bind_anchors.val.start.type === 'rc') { + const new_rc = rotatePoint(rightCenter.x, rightCenter.y, centerX, centerY, angleRad); + f.props.point_position.val[0] = { + x: new_rc.x - f.binfo.left, + y: new_rc.y - f.binfo.top + }; + } + const move_x = new_left - f.binfo.left; + const move_y = new_top - f.binfo.top; + f.binfo = { + ...f.binfo, + left: new_left, + top: new_top, + width: itemRect?.width / scale, + height: itemRect?.height / scale + }; + f.props.point_position = { + ...f.props.point_position, + val: f.props.point_position.val.map((m: { x: number; y: number }) => { + return { + x: m.x - move_x, + y: m.y - move_y + }; + }) + }; + } else { + f.props.bind_anchors.val.start = null; + } + } + // 处理终点绑定 + if (f.props.bind_anchors.val.end) { + // 根据id和类型找到锚点坐标 + const find_item = temp_done_json.find((m) => m.id === f.props.bind_anchors.val.end.id); + if (find_item) { + const b_info = find_item.id === move_binfo?.id ? move_binfo : find_item.binfo; + // 四个角原始坐标 + const { topLeft, topRight, bottomLeft, bottomRight } = getRectCoordinate(b_info); + // 四条边中点坐标 + const { topCenter, bottomCenter, leftCenter, rightCenter } = getRectCenterCoordinate( + topLeft, + topRight, + bottomLeft, + bottomRight + ); + // 旋转中心 + const centerX = topCenter.x; + const centerY = leftCenter.y; + + // 旋转角度(弧度) + const angleRad = (Math.PI / 180) * find_item.binfo.angle; + + if (f.props.bind_anchors.val.end.type === 'tc') { + const new_tc = rotatePoint(topCenter.x, topCenter.y, centerX, centerY, angleRad); + f.props.point_position.val[f.props.point_position.val.length - 1] = { + x: new_tc.x - f.binfo.left, + y: new_tc.y - f.binfo.top + }; + } else if (f.props.bind_anchors.val.end.type === 'bc') { + const new_bc = rotatePoint(bottomCenter.x, bottomCenter.y, centerX, centerY, angleRad); + f.props.point_position.val[f.props.point_position.val.length - 1] = { + x: new_bc.x - f.binfo.left, + y: new_bc.y - f.binfo.top + }; + } else if (f.props.bind_anchors.val.end.type === 'lc') { + const new_lc = rotatePoint(leftCenter.x, leftCenter.y, centerX, centerY, angleRad); + f.props.point_position.val[f.props.point_position.val.length - 1] = { + x: new_lc.x - f.binfo.left, + y: new_lc.y - f.binfo.top + }; + } else if (f.props.bind_anchors.val.end.type === 'rc') { + const new_rc = rotatePoint(rightCenter.x, rightCenter.y, centerX, centerY, angleRad); + f.props.point_position.val[f.props.point_position.val.length - 1] = { + x: new_rc.x - f.binfo.left, + y: new_rc.y - f.binfo.top + }; + } + const move_x = new_left - f.binfo.left; + const move_y = new_top - f.binfo.top; + f.binfo = { + ...f.binfo, + left: new_left, + top: new_top, + width: itemRect?.width / scale, + height: itemRect?.height / scale + }; + f.props.point_position = { + ...f.props.point_position, + val: f.props.point_position.val.map((m: { x: number; y: number }) => { + return { + x: m.x - move_x, + y: m.y - move_y + }; + }) + }; + } else { + f.props.bind_anchors.val.end = null; + } + } + }); + // 直接写在这里会损失一部分性能 也可以注释掉下面的 然后根据需求在useUpdateSysLine之后手动调用useUpdateSysLineRect + nextTick(() => { + useUpdateSysLineRect(sys_lines, canvasDom, scale); + }); +}; diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/composables/thumbnail.ts b/src/views/teacher/teacherStatistics/components/mt-edit/composables/thumbnail.ts new file mode 100644 index 0000000..5c753db --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/composables/thumbnail.ts @@ -0,0 +1,72 @@ +import { Canvg } from 'canvg'; +import html2canvas from 'html2canvas'; +import { ElMessage } from 'element-plus'; +export const useGenThumbnail = async (canvas_id: string = 'mtCanvasArea') => { + const el = document.querySelector(`#${canvas_id}`); + if (!el) { + ElMessage.error('没有找到canvas元素,请检查!'); + return; + } + //记录要移除的svg元素 + const shouldRemoveSvgNodes = []; + // 获取到所有的SVG 得到一个数组 目前只有自定义连线需要特殊处理 别的元素直接使用html2canvas就可以 + const svgElements: NodeListOf = document.body.querySelectorAll( + `#${canvas_id} .mt-line-render` + ); + // 遍历这个数组 + for (const item of svgElements) { + //去除空白字符 + const svg = item.outerHTML.trim(); + // 创建一个 canvas DOM元素 + const canvas = document.createElement('canvas'); + //设置 canvas 元素的宽高 + canvas.width = item.getBoundingClientRect().width; + canvas.height = item.getBoundingClientRect().height; + const ctx = canvas.getContext('2d'); + // 将 SVG转化 成 canvas + const v = Canvg.fromString(ctx!, svg); + await v.render(); + + //设置生成 canvas 元素的坐标 保证与原SVG坐标保持一致 + if (item.style.position) { + canvas.style.position += item.style.position; + canvas.style.left += item.style.left; + canvas.style.top += item.style.top; + } + + //添加到需要截图的DOM节点中 + item.parentNode!.appendChild(canvas); + // 删除这个元素 + shouldRemoveSvgNodes.push(canvas); + } + + const width = el.offsetWidth; + const height = el.offsetHeight; + const canvas = await html2canvas(el, { + useCORS: true, + scale: 2, + width, + height, + allowTaint: true, + windowHeight: height, + logging: false, + ignoreElements: (element) => { + if (element.classList.contains('mt-line-render')) { + return true; + } + return false; + } + }); + const img_link = document.createElement('a'); + img_link.href = canvas.toDataURL('image/png'); // 转换后的图片地址 + img_link.download = Date.now().toString(); + document.body.appendChild(img_link); + // 触发点击 + img_link.click(); + // 然后移除 + document.body.removeChild(img_link); + // 移除需要移除掉的svg节点 + shouldRemoveSvgNodes.forEach((item) => { + item.remove(); + }); +}; diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/index.ts b/src/views/teacher/teacherStatistics/components/mt-edit/index.ts new file mode 100644 index 0000000..4565091 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/index.ts @@ -0,0 +1,3 @@ +import MtEdit from './index.vue'; + +export default MtEdit; diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/index.vue b/src/views/teacher/teacherStatistics/components/mt-edit/index.vue new file mode 100644 index 0000000..6872c7a --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/index.vue @@ -0,0 +1,455 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/store/cache.ts b/src/views/teacher/teacherStatistics/components/mt-edit/store/cache.ts new file mode 100644 index 0000000..ffae428 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/store/cache.ts @@ -0,0 +1,33 @@ +import { nextTick, reactive } from 'vue'; +import type { CacheBoundingBox, ICache, IDoneJson } from './types'; +import { objectDeepClone } from '../utils'; + +export const cacheStore: ICache = reactive({ + boundingBox: [], + setBoundingBox: (val: CacheBoundingBox[]) => { + cacheStore.boundingBox = val; + }, + adsorbPoint: [], + setAdsorbPoint(val) { + cacheStore.adsorbPoint = val; + }, + copy: [], + setCopy(val) { + cacheStore.copy = val; + }, + history: [[]], + historyIndex: 0, + addHistory(val: IDoneJson[]) { + nextTick(() => { + if (cacheStore.historyIndex + 1 < cacheStore.history.length) { + cacheStore.history.splice(cacheStore.historyIndex + 1); + } + cacheStore.history.push(objectDeepClone(val)); + cacheStore.historyIndex = cacheStore.history.length - 1; + if (cacheStore.history.length > 20) { + cacheStore.history.shift(); + cacheStore.historyIndex = cacheStore.history.length - 1; + } + }); + } +}); diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/store/config.ts b/src/views/teacher/teacherStatistics/components/mt-edit/store/config.ts new file mode 100644 index 0000000..4d89488 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/store/config.ts @@ -0,0 +1,415 @@ +import { reactive } from 'vue'; +import type { IConfig, ILeftAsideConfigItem } from './types'; +const sysComponentItems: ILeftAsideConfigItem[] = [ + { + id: 'sys-line', + title: '自由连线', + type: 'sys-line', + thumbnail: `data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgZD0iTTQgMThhMiAyIDAgMSAwIDQgMGEyIDIgMCAxIDAtNCAwTTE2IDZhMiAyIDAgMSAwIDQgMGEyIDIgMCAxIDAtNCAwTTcuNSAxNi41bDktOSIvPjwvc3ZnPg==`, + props: { + stroke: { + title: '线条颜色', + type: 'color', + val: '#ff0000' + }, + 'stroke-width': { + title: '线条宽度', + type: 'number', + val: 2 + }, + 'marker-start': { + title: '起点箭头', + type: 'switch', + val: false + }, + 'marker-end': { + title: '终点箭头', + type: 'switch', + val: true + }, + point_position: { + title: '点坐标', + type: 'jsonEdit', + val: [ + { + x: 0, + y: 0 + }, + { + x: 100, + y: 0 + } + ], + disabled: true + }, + ani_type: { + title: '动画类型', + type: 'select', + val: 'none', + options: [ + { + label: '无', + value: 'none' + }, + { + label: '电流', + value: 'electricity' + }, + { + label: '轨迹', + value: 'track' + }, + { + label: '水珠', + value: 'waterdrop' + } + ] + }, + ani_dur: { title: '持续时间', type: 'number', val: 20 }, + ani_color: { title: '动画颜色', type: 'color', val: '#0a7ae2' }, + ani_reverse: { title: '动画反转', type: 'switch', val: false }, + ani_play: { title: '动画播放', type: 'switch', val: true }, + bind_anchors: { + title: '锚点绑定', + type: 'jsonEdit', + val: { + start: null, + end: null + }, + disabled: true + } + }, + common_animations: { + val: '', + delay: 'delay-0s', + speed: 'slow', + repeat: 'infinite' + } + }, + { + id: 'sys-line-vertical', + title: '自由连线-竖线', + type: 'sys-line', + thumbnail: `data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgZD0iTTQgMThhMiAyIDAgMSAwIDQgMGEyIDIgMCAxIDAtNCAwTTE2IDZhMiAyIDAgMSAwIDQgMGEyIDIgMCAxIDAtNCAwTTcuNSAxNi41bDktOSIvPjwvc3ZnPg==`, + props: { + stroke: { + title: '线条颜色', + type: 'color', + val: '#ff0000' + }, + 'stroke-width': { + title: '线条宽度', + type: 'number', + val: 2 + }, + 'marker-start': { + title: '起点箭头', + type: 'switch', + val: false + }, + 'marker-end': { + title: '终点箭头', + type: 'switch', + val: true + }, + point_position: { + title: '点坐标', + type: 'jsonEdit', + val: [ + { + x: 0, + y: 0 + }, + { + x: 0, + y: 100 + } + ], + disabled: true + }, + ani_type: { + title: '动画类型', + type: 'select', + val: 'none', + options: [ + { + label: '无', + value: 'none' + }, + { + label: '电流', + value: 'electricity' + }, + { + label: '轨迹', + value: 'track' + }, + { + label: '水珠', + value: 'waterdrop' + } + ] + }, + ani_dur: { title: '持续时间', type: 'number', val: 20 }, + ani_color: { title: '动画颜色', type: 'color', val: '#0a7ae2' }, + ani_reverse: { title: '动画反转', type: 'switch', val: false }, + ani_play: { title: '动画播放', type: 'switch', val: true }, + bind_anchors: { + title: '锚点绑定', + type: 'jsonEdit', + val: { + start: null, + end: null + }, + disabled: true + } + }, + common_animations: { + val: '', + delay: 'delay-0s', + speed: 'slow', + repeat: 'infinite' + } + }, + { + id: 'text-vue', + title: '文字', + type: 'vue', + thumbnail: `data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIzMiIgZD0ibTMyIDQxNS41bDEyMC0zMjBsMTIwIDMyMG0tNDItMTEySDc0bTI1Mi02NGMxMi4xOS0yOC42OSA0MS00OCA3NC00OGgwYzQ2IDAgODAgMzIgODAgODB2MTQ0Ii8+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIzMiIgZD0iTTMyMCAzNTguNWMwIDM2IDI2Ljg2IDU4IDYwIDU4YzU0IDAgMTAwLTI3IDEwMC0xMDZ2LTE1Yy0yMCAwLTU4IDEtOTIgNWMtMzIuNzcgMy44Ni02OCAxOS02OCA1OCIvPjwvc3ZnPg==`, + props: { + text: { + title: '文字内容', + type: 'input', + val: '文字' + }, + fontFamily: { + title: '字体', + type: 'select', + val: '黑体', + options: [ + { + value: '黑体', + label: '黑体' + }, + { + value: '宋体', + label: '宋体' + } + ] + }, + fontSize: { + title: '文字大小', + type: 'number', + val: 18 + }, + fill: { + title: '文字颜色', + type: 'color', + val: '#FFF700' + }, + vertical: { + title: '竖排展示', + type: 'switch', + val: false + } + }, + common_animations: { + val: '', + delay: 'delay-0s', + speed: 'slow', + repeat: 'infinite' + } + }, + { + id: 'card-vue', + title: '卡片', + type: 'vue', + thumbnail: `data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMTYgMTYiPjxnIGZpbGw9ImN1cnJlbnRDb2xvciI+PHBhdGggZD0iTTE0LjUgM2EuNS41IDAgMCAxIC41LjV2OWEuNS41IDAgMCAxLS41LjVoLTEzYS41LjUgMCAwIDEtLjUtLjV2LTlhLjUuNSAwIDAgMSAuNS0uNXptLTEzLTFBMS41IDEuNSAwIDAgMCAwIDMuNXY5QTEuNSAxLjUgMCAwIDAgMS41IDE0aDEzYTEuNSAxLjUgMCAwIDAgMS41LTEuNXYtOUExLjUgMS41IDAgMCAwIDE0LjUgMnoiLz48cGF0aCBkPSJNMyA1LjVhLjUuNSAwIDAgMSAuNS0uNWg5YS41LjUgMCAwIDEgMCAxaC05YS41LjUgMCAwIDEtLjUtLjVNMyA4YS41LjUgMCAwIDEgLjUtLjVoOWEuNS41IDAgMCAxIDAgMWgtOUEuNS41IDAgMCAxIDMgOG0wIDIuNWEuNS41IDAgMCAxIC41LS41aDZhLjUuNSAwIDAgMSAwIDFoLTZhLjUuNSAwIDAgMS0uNS0uNSIvPjwvZz48L3N2Zz4=`, + props: { + shadow: { + title: '阴影显示时机', + type: 'select', + val: 'always', + options: [ + { label: '总是显示', value: 'always' }, + { label: '鼠标悬浮', value: 'hover' }, + { label: '不显示', value: 'never' } + ] + }, + backGroundColor: { + title: '背景颜色', + type: 'color', + val: '#ffffff' + }, + boxShadow: { + title: '阴影颜色', + type: 'color', + val: '#ffffff' + } + }, + common_animations: { + val: '', + delay: 'delay-0s', + speed: 'slow', + repeat: 'infinite' + } + }, + { + id: 'now-time-vue', + title: '当前时间', + type: 'vue', + thumbnail: `data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLXdpZHRoPSIzMiIgZD0iTTI1NiA2NEMxNTAgNjQgNjQgMTUwIDY0IDI1NnM4NiAxOTIgMTkyIDE5MnMxOTItODYgMTkyLTE5MlMzNjIgNjQgMjU2IDY0WiIvPjxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMzIiIGQ9Ik0yNTYgMTI4djE0NGg5NiIvPjwvc3ZnPg==`, + props: { + fontColor: { + title: '文字颜色', + type: 'color', + val: '#000000' + }, + dateSize: { + title: '日期文字大小', + type: 'number', + val: 12 + }, + weekSize: { + title: '星期文字大小', + type: 'number', + val: 12 + }, + timeSize: { + title: '时间文字大小', + type: 'number', + val: 24 + } + }, + common_animations: { + val: '', + delay: 'delay-0s', + speed: 'slow', + repeat: 'infinite' + } + }, + { + id: 'kv-vue', + title: '键值对', + type: 'vue', + thumbnail: `data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjAgMjAiPjxwYXRoIGZpbGw9ImN1cnJlbnRDb2xvciIgZD0iTTMgNmEzIDMgMCAwIDEgMy0zaDhhMyAzIDAgMCAxIDMgM3Y4YTMgMyAwIDAgMS0zIDNINmEzIDMgMCAwIDEtMy0zem0zLTJhMiAyIDAgMCAwLTIgMnYzLjVoNS41VjR6bTMuNSA2LjVINFYxNGEyIDIgMCAwIDAgMiAyaDMuNXptMSAwVjE2SDE0YTIgMiAwIDAgMCAyLTJ2LTMuNXptNS41LTFWNmEyIDIgMCAwIDAtMi0yaC0zLjV2NS41eiIvPjwvc3ZnPg==`, + props: { + border: { + title: '边框', + type: 'switch', + val: true + }, + fontFamily: { + title: '字体', + type: 'select', + val: '黑体', + options: [ + { + value: '黑体', + label: '黑体' + }, + { + value: '宋体', + label: '宋体' + } + ] + }, + fontSize: { + title: '文字大小', + type: 'number', + val: 18 + }, + label: { + title: '键名', + type: 'input', + val: '键名' + }, + labelWidth: { + title: '键名宽度', + type: 'number', + val: 50 + }, + value: { + title: '键值', + type: 'input', + val: '键值' + }, + valueWidth: { + title: '键值宽度', + type: 'number', + val: 50 + }, + color: { + title: '文字颜色', + type: 'color', + val: '#FFF700' + }, + borderColor: { + title: '边框颜色', + type: 'color', + val: '#000000' + } + }, + common_animations: { + val: '', + delay: 'delay-0s', + speed: 'slow', + repeat: 'infinite' + } + }, + { + id: 'sys-button-vue', + title: '按钮', + type: 'vue', + thumbnail: `data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0yIDhhMyAzIDAgMCAxIDMtM2gxMGEzIDMgMCAwIDEgMyAzdjNhMyAzIDAgMCAxLTMgM0g1YTMgMyAwIDAgMS0zLTNWOFptNyAxLjVhLjUuNSAwIDAgMCAuNS41SDE0YS41LjUgMCAwIDAgMC0xSDkuNWEuNS41IDAgMCAwLS41LjVabS0xIDBhMS41IDEuNSAwIDEgMC0zIDBhMS41IDEuNSAwIDAgMCAzIDBaIi8+PC9zdmc+`, + props: { + text: { + title: '按钮文本', + type: 'input', + val: '按钮文本' + }, + type: { + title: '按钮类型', + type: 'select', + val: '', + options: [ + { + value: '', + label: '默认' + }, + { + value: 'primary', + label: '主要' + }, + { + value: 'success', + label: '成功' + }, + { + value: 'warning', + label: '警告' + }, + { + value: 'danger', + label: '危险' + } + ] + }, + round: { + title: '圆角', + type: 'switch', + val: false + } + }, + common_animations: { + val: '', + delay: 'delay-0s', + speed: 'slow', + repeat: 'infinite' + } + } +]; +export const configStore: IConfig = reactive({ + sysComponent: sysComponentItems, + lineRenderOffset: 10 +}); diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/store/context-menu.ts b/src/views/teacher/teacherStatistics/components/mt-edit/store/context-menu.ts new file mode 100644 index 0000000..9139ed3 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/store/context-menu.ts @@ -0,0 +1,73 @@ +import { reactive } from 'vue'; +import type { ContextMenuInfoType, IContextMenu } from './types'; + +export const contextMenuStore: IContextMenu = reactive({ + menuInfo: { + display: false, + left: 0, + top: 0, + info: { + selectAll: { + title: '全选', + hot_key: 'Ctrl + A', + enable: false + }, + copy: { + title: '复制', + hot_key: 'Ctrl + C', + enable: false + }, + paste: { + title: '粘贴', + hot_key: 'Ctrl + V', + enable: false + }, + delete: { + title: '删除', + hot_key: 'Delete', + enable: false + }, + group: { + title: '组合', + hot_key: 'Ctrl + G', + enable: false + }, + ungroup: { + title: '取消组合', + hot_key: 'Ctrl + U', + enable: false + }, + moveTop: { + title: '置顶', + hot_key: 'Ctrl + Right', + enable: false + }, + moveUp: { + title: '上移', + hot_key: 'Ctrl + Up', + enable: false + }, + moveDown: { + title: '下移', + hot_key: 'Ctrl + Down', + enable: false + }, + moveBottom: { + title: '置底', + hot_key: 'Ctrl + Left', + enable: false + } + } + }, + setMenuInfo: (val: IContextMenu['menuInfo']) => { + contextMenuStore.menuInfo = val; + }, + setDisplayItem: (val: ContextMenuInfoType[]) => { + for (const key in contextMenuStore.menuInfo.info) { + contextMenuStore.menuInfo.info[key as ContextMenuInfoType].enable = false; + } + val.forEach((f) => { + contextMenuStore.menuInfo.info[f].enable = true; + }); + } +}); diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/store/global.ts b/src/views/teacher/teacherStatistics/components/mt-edit/store/global.ts new file mode 100644 index 0000000..f544da7 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/store/global.ts @@ -0,0 +1,161 @@ +import { reactive } from 'vue'; +import type { + GlobalStoreIntention, + IDoneJson, + IGlobalStore, + IGlobalStoreCreateItemInfo, + IRealTimeData +} from './types'; +export const globalStore: IGlobalStore = reactive({ + intention: 'none', + create_item_info: null, + selected_items_id: [], + done_json: [], + group_ids: new Map(), + canvasCfg: { + width: 1920, + height: 1080, + scale: 1, + color: '', + img: '', + guide: true, + adsorp: true, + adsorp_diff: 5, + transform_origin: { + x: 0, + y: 0 + }, + drag_offset: { + x: 0, + y: 0 + } + }, + gridCfg: { + enabled: true, + align: true, + size: 15 + }, + guideCfg: { + x: { + display: false, + top: 0 + }, + y: { + display: false, + left: 0 + } + }, + lock: false, + real_time_data: { + show: false, + text: '' + }, + adsorp_diff: { + x: 0, + y: 0 + }, + /** + * 刷新组数据 + * @param newGroupName 新组名 + * @param oldGroupName 旧组名 + * @param moduleId 组件ID + * @returns + */ + refreshGroupForId: (newGroupName: string, oldGroupName: string, moduleId: string): boolean => { + //校验容器是否存在该id + const isExist = globalStore.done_json.some((item) => item.id === moduleId); + if (!isExist) return false; + //校验globalStore.group_ids 是否存在key + if (globalStore.group_ids.size === 0) { + globalStore.group_ids.set(newGroupName, [moduleId]); + return true; + } + if (globalStore.group_ids.has(oldGroupName)) { + const arr: string[] = globalStore.group_ids.get(oldGroupName) || []; + const isExist = arr.some((item) => item === moduleId); + if (isExist) { + //如果存在 移除 + arr.splice(arr.indexOf(moduleId), 1); + } + if (globalStore.group_ids.get(oldGroupName)?.length === 0) { + globalStore.group_ids.delete(oldGroupName); + } + } + + if (!globalStore.group_ids.has(newGroupName)) { + globalStore.group_ids.set(newGroupName, [moduleId]); + } else { + const arr: string[] = globalStore.group_ids.get(newGroupName) || []; + const isExist = arr.some((item) => item === moduleId); + if (!isExist) { + arr.push(moduleId); + } + return true; + } + + return true; + }, + refreshGroupForIds: (moduleIs: string, groupId: string) => { + const doJson: IDoneJson[] = globalStore.done_json; + console.log(doJson); + }, + setIntention: (val: GlobalStoreIntention) => { + globalStore.intention = val; + }, + setCreateItemInfo: (val: IGlobalStoreCreateItemInfo | null) => { + globalStore.create_item_info = val; + }, + setGlobalStoreDoneJson: (val: IDoneJson[]) => { + globalStore.done_json = val; + }, + //取消所有组件选中 + cancelAllSelect: () => { + const done_json_temp = [...globalStore.done_json].map((m) => { + if (m.active) { + m.active = false; + } + return m; + }); + globalStore.setGlobalStoreDoneJson(done_json_temp); + globalStore.selected_items_id = []; + }, + //刷新选中的id + refreshSelectedItemsId: () => { + globalStore.selected_items_id = globalStore.done_json.filter((m) => m.active).map((m) => m.id); + }, + //删除选中的组件 + deleteSelectedItems: () => { + const done_json_temp = [...globalStore.done_json].filter( + (m) => !globalStore.selected_items_id.includes(m.id) + ); + globalStore.setGlobalStoreDoneJson(done_json_temp); + globalStore.selected_items_id = []; + }, + // 设置单个选中 + setSingleSelect: (id: string) => { + globalStore.done_json.forEach((m) => { + if (m.id === id) { + m.active = true; + } else { + m.active = false; + } + }); + globalStore.selected_items_id = [id]; + }, + setSelectItems: (ids: string[]) => { + globalStore.done_json.forEach((m) => { + if (ids.includes(m.id)) { + m.active = true; + } else { + m.active = false; + } + }); + globalStore.selected_items_id = ids; + }, + setRealTimeData: (val: IRealTimeData) => { + globalStore.real_time_data = val; + }, + setCustomMap: (val: Map) => { + globalStore.group_ids = val; + } +}); diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/store/imgStore.ts b/src/views/teacher/teacherStatistics/components/mt-edit/store/imgStore.ts new file mode 100644 index 0000000..ff7f620 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/store/imgStore.ts @@ -0,0 +1,38 @@ +import { defineStore } from 'pinia'; + +export interface ImageState { + id: string; + uploadedImage: string; + imageType: string; + imageName: string; +} + +export interface ImgState { + imgList: Array; +} + +export const useImgStore = defineStore('img', { + // 状态 + state(): ImgState { + return { + imgList: [] + }; + }, + // 动作 + actions: { + saveOrUpdateImage(image: ImageState): boolean { + const index = this.imgList.findIndex((item) => item.id === image.id); + if (index !== -1) { + // 更新现有图片 + this.imgList[index] = image; + } else { + // 添加新图片 + this.imgList.push(image); + } + return true; + }, + getImageData(id: string): string { + return this.imgList.find((item) => item.id === id)?.uploadedImage || ''; + } + } +}); diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/store/left-aside.ts b/src/views/teacher/teacherStatistics/components/mt-edit/store/left-aside.ts new file mode 100644 index 0000000..db35943 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/store/left-aside.ts @@ -0,0 +1,52 @@ +import { getCurrentInstance, reactive } from 'vue'; +import type { ILeftAside, ILeftAsideConfigItemPublic, ILeftAsideConfigItem } from './types'; +import { ElMessage } from 'element-plus'; +import { svgToSymbol } from '../utils'; +import { configStore } from './config'; + +export const leftAsideStore: ILeftAside = reactive({ + config: new Map([ + ['本地文件', []], + ['系统组件', configStore.sysComponent] + ]), + registerConfig: (title: string, config: ILeftAsideConfigItemPublic[]) => { + if (title == '本地文件' || title == '系统组件') { + ElMessage.info(`title:${title}已被系统占用,请更换名称!`); + return; + } + + if (leftAsideStore.config.has(title)) { + ElMessage.info(`title:${title}已存在,已经将其配置覆盖`); + } + const cfg: ILeftAsideConfigItem[] = config.map((m) => { + if (m.type == 'svg') { + const { symbol_str, width, height } = svgToSymbol(m.svg!, m.id); + return { + ...m, + symbol: { + symbol_id: m.id, + symbol_str, + width, + height + }, + common_animations: { + val: '', + delay: 'delay-0s', + speed: 'slow', + repeat: 'infinite' + } + }; + } + return { + ...m, + common_animations: { + val: '', + delay: 'delay-0s', + speed: 'slow', + repeat: 'infinite' + } + }; + }); + leftAsideStore.config.set(title, cfg); + } +}); diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/store/nodeByModels.ts b/src/views/teacher/teacherStatistics/components/mt-edit/store/nodeByModels.ts new file mode 100644 index 0000000..c67da91 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/store/nodeByModels.ts @@ -0,0 +1,58 @@ +import { defineStore } from 'pinia'; + +export interface nodeModelsMap { + nodeMap: Map>; +} +export const useNodeByModelsStore = defineStore('nodeByModels', { + // 状态 + state(): nodeModelsMap { + return { + nodeMap: new Map>() + }; + }, + // 方法 + actions: { + /** + * 保存,更新 节点——组件的映射关系 + * @param nodeId 4遥节点id + * @param modelId vue组件id + */ + saveOrUpdate(nodeId: string, modelId: string) { + // console.log('nodeId:', nodeId); + // console.log('modelId:', modelId); + if (this.nodeMap.has(nodeId)) { + const modelIds = this.nodeMap.get(nodeId)!; + if (!modelIds.includes(modelId)) { + modelIds.push(modelId); + } + } else { + this.nodeMap.set(nodeId, [modelId]); + } + }, + /** + * 修改 节点——组件的映射关系 + * @param newNodeId 新节点id + * @param oldNodeId 旧节点id + * @param modelId vue组件id + */ + change(newNodeId: string, oldNodeId: string, modelId: string) { + this.delete(oldNodeId, modelId); + this.saveOrUpdate(newNodeId, modelId); + }, + /** + * 删除 节点——组件的映射关系 + * @param nodeId 4遥节点id + * @param modelId vue组件id + */ + delete(nodeId: string, modelId: string) { + if (!this.nodeMap.has(nodeId)) return; + const modelIds = this.nodeMap.get(nodeId); + if (modelIds && modelIds.includes(modelId)) { + modelIds.splice(modelIds.indexOf(modelId), 1); + } + if ((modelIds && modelIds.length === 0) || !modelIds) { + this.nodeMap.delete(nodeId); + } + } + } +}); diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/store/types.ts b/src/views/teacher/teacherStatistics/components/mt-edit/store/types.ts new file mode 100644 index 0000000..ad0a7d4 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/store/types.ts @@ -0,0 +1,341 @@ +export type ILeftAsideConfig = Map; +export type ILeftAsideConfigItemPublicPropsType = + | 'input' + | 'color' + | 'select' + | 'switch' + | 'number' + | 'jsonEdit' + | 'textArea' + | 'upload' + | 'inputSelectId' + | 'inputTypeTag' //inputTypeTag 必须和 inputSelectId 一起使用 + | 'inputSelectImgId'; +// 开放注册配置 +export type ILeftAsideConfigItemPublicProps = Record< + string, + { + title: string; //显示在属性面板的标题 + type: ILeftAsideConfigItemPublicPropsType; //属性的类型决定了修改属性的方式 + val: any; + options?: any; //比如说修改属性的时候用到了下拉框,这里面就可以放下拉框的选项 + disabled?: boolean; //如果禁用了将不会显示到右侧属性面板里,但是仍然可以通过代码修改属性 + } +>; +export type ILeftAsideConfigItemPublicType = 'svg' | 'vue' | 'img' | 'custom-svg'; +export type ILeftAsideConfigItemPrivateType = 'group' | 'sys-line'; +export interface ILeftAsideConfigItemPublic { + id: string; //图形的标识 值必须唯一 + title: string; //要显示的标题,一般用中文表示 + type: ILeftAsideConfigItemPublicType | ILeftAsideConfigItemPrivateType; //图形的类型 + thumbnail: string; //显示到左侧时候的缩略图 + svg?: string; //图形的svg代码 + props: ILeftAsideConfigItemPublicProps; +} +export interface ILeftAsideConfigItemPrivateSymbol { + symbol_id: string; + symbol_str: string; + width: string; + height: string; +} +export interface ICommonAnimations { + val: string; + delay: string; + speed: string; + repeat: string; +} +export interface ILeftAsideConfigItemPrivate { + symbol?: ILeftAsideConfigItemPrivateSymbol; + common_animations: ICommonAnimations; +} +export type ILeftAsideConfigItem = ILeftAsideConfigItemPublic & ILeftAsideConfigItemPrivate; + +export type GlobalStoreIntention = + | 'none' + | 'create' + | 'beginMulSelect' + | 'adsorbStart' + | 'adsorbEnd' + | 'beginDragCanvas' + | 'runDragCanvas' + | 'endDragCanvas' + | 'showContextMenu' + | 'drawSysLineStart'; +export interface IGlobalStoreCreateItemInfo { + config_key: string; //也就是折叠面板的值 + item_id: string; //要创建组件的id +} + +export interface IGlobalStoreCanvasCfg { + width: number; + height: number; + scale: number; + color: string; + img: string; + guide: boolean; //参考线 + adsorp: boolean; //吸附 + adsorp_diff: number; + // 缩放中心 + transform_origin: { + x: number; + y: number; + }; + // 拖动偏移量 + drag_offset: { + x: number; + y: number; + }; +} +export interface IGlobalStoreGridCfg { + enabled: boolean; + align: boolean; + size: number; +} +export type DoneJsonEventListType = 'click' | 'dblclick' | 'mouseover' | 'mouseout'; +export type DoneJsonEventListAction = 'changeAttr' | 'customCode'; +export interface IDoneJsonActionChangeAttr { + id: string; + target_id: string; + target_attr: string | undefined; + target_value: any; +} +export interface IDoneJsonEventList { + id: string; + type: DoneJsonEventListType; // 事件类型 + action: DoneJsonEventListAction; // 事件行为 + change_attr: IDoneJsonActionChangeAttr[]; //属性更改 + custom_code: string; + trigger_rule: { + trigger_id?: string; //触发图形的id + trigger_attr?: string; //触发图形的属性 + operator?: string; //运算符 + value?: any; //期望值 + }; +} +export interface IDoneJson { + id: string; //必须唯一 + title: string; //标题 + type: ILeftAsideConfigItemPublicType | ILeftAsideConfigItemPrivateType; //类型 由配置文件决定 + symbol?: ILeftAsideConfigItemPrivateSymbol; //类型是svg的时候需要用这个将svg转换成symbol + binfo: IDoneJsonBinfo; + props: ILeftAsideConfigItemPublicProps; + resize: boolean; //开启缩放 + rotate: boolean; //开启旋转 + lock: boolean; //锁定 + active: boolean; //激活 + hide: boolean; //隐藏 + common_animations: ICommonAnimations; //通用动画 + use_proportional_scaling?: boolean; //使用等比缩放 + children?: IDoneJson[]; + tag?: string; + thumbnail?: string; + events: IDoneJsonEventList[]; +} +//图形边界信息 +export interface IDoneJsonBinfo { + left: number; + top: number; + width: number; + height: number; + angle: number; +} +export interface CacheBoundingBox { + id: string; + type: ILeftAsideConfigItemPublicType | ILeftAsideConfigItemPrivateType; + left: number; + top: number; + width: number; + height: number; + bottom: number; + right: number; +} +export type AdsorbPointType = 'tc' | 'bc' | 'lc' | 'rc'; +export interface IContextMenuInfo { + title: string; + hot_key: string; + enable: boolean; +} +export type ContextMenuInfoType = + | 'copy' + | 'paste' + | 'delete' + | 'group' + | 'ungroup' + | 'selectAll' + | 'moveTop' + | 'moveUp' + | 'moveDown' + | 'moveBottom'; +export interface IContextMenuDetail { + left: number; + top: number; + info: { + [key in ContextMenuInfoType]: IContextMenuInfo; + }; +} +export interface IRealTimeData { + show: boolean; + text: string; +} +// 全局状态 +export interface IGlobalStore { + intention: GlobalStoreIntention; + create_item_info: IGlobalStoreCreateItemInfo | null; + done_json: IDoneJson[]; + selected_items_id: string[]; + group_ids: Map; + canvasCfg: IGlobalStoreCanvasCfg; + gridCfg: IGlobalStoreGridCfg; + guideCfg: { + x: { + display: boolean; + top: number; + }; + y: { + display: boolean; + left: number; + }; + }; + lock: boolean; + real_time_data: IRealTimeData; + adsorp_diff: { + x: number; + y: number; + }; + setIntention: (val: GlobalStoreIntention) => void; + setCreateItemInfo: (val: IGlobalStoreCreateItemInfo | null) => void; + setGlobalStoreDoneJson: (val: IDoneJson[]) => void; + cancelAllSelect: () => void; + refreshSelectedItemsId: () => void; + deleteSelectedItems: () => void; + setSingleSelect: (id: string) => void; + setSelectItems: (ids: string[]) => void; + setRealTimeData: (val: IRealTimeData) => void; + setCustomMap: (val: Map) => void; + refreshGroupForIds: (moduleIs: string, groupId: string) => void; + refreshGroupForId: (newGroupName: string, oldGroupName: string, moduleId: string) => boolean; +} +// 左侧配置 +export interface ILeftAside { + config: ILeftAsideConfig; + registerConfig: (title: string, config: ILeftAsideConfigItemPublic[]) => void; +} +// 缓存配置 +export interface ICache { + boundingBox: CacheBoundingBox[]; + setBoundingBox: (val: CacheBoundingBox[]) => void; + adsorbPoint: { type: AdsorbPointType; x: number; y: number; id: string }[]; + setAdsorbPoint: (val: { type: AdsorbPointType; x: number; y: number; id: string }[]) => void; + copy: IDoneJson[]; + setCopy: (val: IDoneJson[]) => void; + history: IDoneJson[][]; + historyIndex: number; + addHistory: (done_json: IDoneJson[]) => void; +} +// 杂项配置 +export interface IConfig { + sysComponent: ILeftAsideConfigItem[]; + lineRenderOffset: number; //因为连线是使用svg进行渲染的,所以需要一个偏移量和div的画布进行重叠 +} +/** + * 右键菜单 + */ +export interface IContextMenu { + menuInfo: IContextMenuDetail; + setMenuInfo: (val: IContextMenuDetail) => void; + setDisplayItem: (val: ContextMenuInfoType[]) => void; +} + +export interface NodeInfo { + id: number; + cid: number; + name: string; + pinyin: string; + type: number; + btype: number; + unit: string; + proc: number; + cfg1: string; + cfg2: string; + cfg3: string | null; + cfg4: string | null; + cfg5: string | null; + cfg6: string | null; + cfg7: string | null; + cfg8: string | null; + cfg9: string | null; + cfg10: string | null; + cfg11: string | null; + cfg12: string | null; + cfg13: string | null; + cfg14: string | null; + cfg15: string | null; + etype: number; + json: string | null; + fault: number; + internal: number; + alarmable: number; + enable: number; + addr104: number; +} + +export interface NodeConfig { + sensitive: number; + pA: number; + pB: number; + pC: number; + positive: boolean; + highAlm: number; + highAct: number; + highNormal: number; + lowNormal: number; + lowAct: number; + lowAlm: number; +} + +export interface DataItem { + node: NodeInfo; + id: number; + nodeCfg: NodeConfig; + isReplace: boolean; + replaceValue: number; + value: any; // 或者更具体的类型 + sig: number; + time: number; + runState: number; + alarm: boolean; + lockedBy: number; + bType: number; + type: number; + internal: boolean; + alarmable: boolean; + boolean: boolean; + float: number; + double: number; + val: number; + valStr: string; +} + +export interface ResponseVue { + config: any; + data: Record; + headers: any; + request: any; + status: number; + statusText: string; +} + +export interface GroupData { + groupName: string; + temperatureId: number; + humidityId: number; +} + +export interface ResponseMultipleValued { + config: any; + data: GroupData[]; + headers: any; + request: any; + status: number; + statusText: string; +} diff --git a/src/views/teacher/teacherStatistics/components/mt-edit/utils/index.ts b/src/views/teacher/teacherStatistics/components/mt-edit/utils/index.ts new file mode 100644 index 0000000..4beafd8 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-edit/utils/index.ts @@ -0,0 +1,903 @@ +import type { MoveItemBoundingInfo } from '../components/render-core/types'; +import type { + CacheBoundingBox, + IDoneJson, + IDoneJsonBinfo, + ILeftAsideConfigItemPublicProps +} from '../store/types'; +import {useUpdateSysLine} from "@/views/teacher/teacherStatistics/components/mt-edit/composables/sys-line"; + +export const createGroupInfo = ( + selected_items: IDoneJson[], + canvas_dom: HTMLElement, + scale_ratio: number +): IDoneJson => { + //定义组合后的组件信息 + let min_left = Infinity; + let min_top = Infinity; + let max_left = -Infinity; + let max_top = -Infinity; + //获取画布的信息 + const canvas_dom_rect = canvas_dom.getBoundingClientRect(); + selected_items.forEach((item) => { + // 获取旋转后left和top + const itemRect = document.getElementById(item.id!)!.getBoundingClientRect(); + // 最小left + min_left = Math.min(min_left, (itemRect.left - canvas_dom_rect.left) / scale_ratio); + // 最大left + max_left = Math.max(max_left, (itemRect.right - canvas_dom_rect.left) / scale_ratio); + // 最小top + min_top = Math.min(min_top, (itemRect.top - canvas_dom_rect.top) / scale_ratio); + // 最大top + max_top = Math.max(max_top, (itemRect.bottom - canvas_dom_rect.top) / scale_ratio); + }); + //定义组合元素的边界信息 + const group_binfo = { + left: min_left, + top: min_top, + width: max_left - min_left, + height: max_top - min_top, + angle: 0 + }; + // 计算子元素相对父元素的位置 + selected_items.forEach((item) => { + item.binfo.left = item.binfo.left! - min_left; + item.binfo.top = item.binfo.top! - min_top; + item.binfo = { + width: 100 * (item.binfo.width / group_binfo.width), + height: 100 * (item.binfo.height / group_binfo.height), + left: 100 * (item.binfo.left / group_binfo.width), + top: 100 * (item.binfo.top / group_binfo.height), + angle: item.binfo.angle || 0 + }; + item.active = false; + }); + + // 组合组件信息 + return { + id: 'group-' + randomString(), + title: '组合', + type: 'group', + binfo: group_binfo, + resize: true, + rotate: true, + lock: false, + active: true, + hide: false, + use_proportional_scaling: true, + props: {}, + common_animations: { + val: '', + delay: 'delay-0s', + speed: 'slow', + repeat: 'infinite' + }, + children: [...selected_items], + events: [], + tag: 'group' + }; +}; +/** + * 取消组合 + * @param elements 元素列表 + * @param editorRect 画布react信息 + * @returns 拆分后的列表 + */ +export const cancelGroup = ( + selected_item: IDoneJson, + canvas_dom: HTMLElement, + scale_ratio: number, + grid_align_size: number +) => { + //获取画布的信息 + const canvas_dom_rect = canvas_dom.getBoundingClientRect(); + // 获取组合元素的子元素列表 + const split_items = selected_item.children!.map((item) => { + // 子组件相对于浏览器视口位置大小 + const itemRect = document.getElementById(item.id!)!.getBoundingClientRect(); + // 获取元素的中心点坐标 + const center = { + x: itemRect.left - canvas_dom_rect.left + itemRect.width / 2, + y: itemRect.top - canvas_dom_rect.top + itemRect.height / 2 + }; + // 拆分后的宽高 + const width = alignToGrid( + selected_item.binfo.width * (item.binfo.width / 100), + grid_align_size + ); + const height = alignToGrid( + selected_item.binfo.height * (item.binfo.height / 100), + grid_align_size + ); + // 根据拆分后的宽高计算边界信息 + const binfo = { + width, + height, + left: center.x / scale_ratio - width / 2, + top: center.y / scale_ratio - height / 2, + angle: (item.binfo.angle || 0) + (selected_item.binfo.angle || 0) + }; + //让拆分后的图形处于选中状态 + return { + ...item, + active: true, + binfo + }; + }); + return split_items; +}; +export const svgToSymbol = (svgStr: string, id: string) => { + const svgDocument = new DOMParser().parseFromString(svgStr, 'image/svg+xml').children[0]; + let width = '0'; + let height = '0'; + const viewBox = svgDocument.getAttribute('viewBox'); + const symbol = document.createElementNS('http://www.w3.org/2000/svg', 'symbol'); + if (viewBox) { + const [, , w, h] = viewBox.split(' '); + symbol.setAttributeNS(null, 'viewBox', viewBox); + width = w; + height = h; + } else { + width = svgDocument.getAttribute('width') || '0'; + height = svgDocument.getAttribute('height') || '0'; + symbol.setAttributeNS(null, 'viewBox', '0 0 ' + width + ' ' + height); + } + symbol.setAttributeNS(null, 'id', id); + symbol.innerHTML = svgDocument.innerHTML + .replace('stroke:currentColor', '') + .replace('stroke: currentColor', '') + .replace('stroke="currentColor"', ''); + // .replaceAll('stroke:currentColor', '') + // .replaceAll('stroke: currentColor', '') + // .replaceAll('stroke="currentColor"', ''); + return { symbol_str: symbol.outerHTML, width, height }; +}; +export const symbolGenSvg = ( + symbol_id: string, + symbol_str: string, + width: string, + height: string, + props_str: string +) => { + return ` + ${symbol_str} + + +`; +}; +export const svgToImgSrc = (svgStr: string) => { + return 'data:image/svg+xml;utf8,' + encodeURIComponent(svgStr); +}; +/** + * 生成dom可用的属性字符串 + * @param props + * @returns + */ +export const genDomPropstr = (props: ILeftAsideConfigItemPublicProps) => { + let res = ''; + for (const key in props) { + res += ` ${key}="${props[key].val}"`; + } + return res; +}; +/** + * 生成随机字符串 + * @param len 生成个数 + */ +export const randomString = (len?: number) => { + len = len || 10; + const str = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; + const maxPos = str.length; + let random_str = ''; + for (let i = 0; i < len; i++) { + random_str += str.charAt(Math.floor(Math.random() * maxPos)); + } + return random_str; +}; +function isTouchEvent(val: unknown): val is TouchEvent { + const typeStr = Object.prototype.toString.call(val); + return typeStr.substring(8, typeStr.length - 1) === 'TouchEvent'; +} +/** + * 获取当前点击坐标 根据pc端和移动端获取 + * @param e + * @returns + */ +export function getRealityXY( + e: DragEvent | TouchEvent | MouseEvent, + canvas_dom_rect: DOMRect | undefined +) { + let realityX = 0, + realityY = 0; + if (isTouchEvent(e)) { + const touch = e.targetTouches[0]; + realityX = canvas_dom_rect ? touch.pageX - canvas_dom_rect.x : 0; + realityY = canvas_dom_rect ? touch.pageY - canvas_dom_rect.y : 0; + } else { + realityX = canvas_dom_rect ? e.clientX - canvas_dom_rect.x : e.clientX; + realityY = canvas_dom_rect ? e.clientY - canvas_dom_rect.y : e.clientY; + } + + return { realityX, realityY }; +} +export const blobToBase64 = (file: Blob) => { + return new Promise(function (resolve, reject) { + const reader = new FileReader(); + let img_src: string | ArrayBuffer = ''; + reader.readAsDataURL(file); + reader.onload = function () { + img_src = reader.result ?? ''; + }; + reader.onerror = function (error) { + reject(error); + }; + reader.onloadend = function () { + resolve(img_src); + }; + }); +}; +/** + * 根据坐标对齐到网格 + * @param position 当前坐标 + * @param grid 网格大小 + * @returns 对应网格的坐标 + */ +export const alignToGrid = (position: number, grid = 1) => { + const integerPart = Math.floor(position / grid); + const fractionalPart = position % grid; + + if (fractionalPart >= grid / 2) { + return (integerPart + 1) * grid; + } else { + return integerPart * grid; + } +}; +/** + * json对象深拷贝 + * @param object + * @param default_val + * @returns + */ +export const objectDeepClone = (object: object, default_val: any = {}) => { + if (!object) { + return default_val as T; + } + return JSON.parse(JSON.stringify(object)) as T; +}; + +export const prosToVBind = (item: ILeftAsideConfigItemPublicProps) => { + let temp = {}; + for (const key in item) { + temp = { ...temp, ...{ [key]: item[key].val } }; + } + return temp; +}; +/** + * 计算y轴参考线属性和需要吸附的偏移距离 + * @param cacheStore_boundingBox + * @param adsorp_diff + * @param move_item_bounding_info + */ +export const calculateGuideY = ( + cacheStore_boundingBox: CacheBoundingBox[], + adsorp_diff: number, + move_item_bounding_info: MoveItemBoundingInfo[], + canvas_bounding_info: DOMRect, + scale: number +) => { + for (let index = 0; index < move_item_bounding_info.length; index++) { + // 拿到移动时的边界信息 + const { left, right, width } = move_item_bounding_info[index]; + // 左左 左中 左右 + const ll = cacheStore_boundingBox.find((f) => Math.abs(f.left - left) < adsorp_diff); + const lc = cacheStore_boundingBox.find( + (f) => Math.abs(f.left - (left + width / 2)) < adsorp_diff + ); + const lr = cacheStore_boundingBox.find((f) => Math.abs(f.left - right) < adsorp_diff); + // 中左 中中 中右 + const cl = cacheStore_boundingBox.find( + (f) => Math.abs(f.left + f.width / 2 - left) < adsorp_diff + ); + const cc = cacheStore_boundingBox.find( + (f) => Math.abs(f.left + f.width / 2 - (left + width / 2)) < adsorp_diff + ); + const cr = cacheStore_boundingBox.find( + (f) => Math.abs(f.left + f.width / 2 - right) < adsorp_diff + ); + // 右左 右中 右右 + const rr = cacheStore_boundingBox.find((f) => Math.abs(f.right - right) < adsorp_diff); + const rc = cacheStore_boundingBox.find( + (f) => Math.abs(f.right - (left + width / 2)) < adsorp_diff + ); + const rl = cacheStore_boundingBox.find((f) => Math.abs(f.right - left) < adsorp_diff); + if (ll) { + return { + y_info: { + display: true, + left: (ll.left - canvas_bounding_info.left) / scale + }, + move_x: ll.left - left + }; + } else if (lc) { + return { + y_info: { + display: true, + left: (lc.left - canvas_bounding_info.left) / scale + }, + move_x: lc.left - (left + width / 2) + }; + } else if (lr) { + return { + y_info: { + display: true, + left: (lr.left - canvas_bounding_info.left) / scale + }, + move_x: lr.left - right + }; + } else if (cl) { + return { + y_info: { + display: true, + left: (cl.left + cl.width / 2 - canvas_bounding_info.left) / scale + }, + move_x: cl.left + cl.width / 2 - left + }; + } else if (cc) { + return { + y_info: { + display: true, + left: (cc.left + cc.width / 2 - canvas_bounding_info.left) / scale + }, + move_x: cc.left + cc.width / 2 - (left + width / 2) + }; + } else if (cr) { + return { + y_info: { + display: true, + left: (cr.left + cr.width / 2 - canvas_bounding_info.left) / scale + }, + move_x: cr.left + cr.width / 2 - right + }; + } else if (rl) { + return { + y_info: { + display: true, + left: (rl.right - canvas_bounding_info.left) / scale + }, + move_x: rl.right - left + }; + } else if (rc) { + return { + y_info: { + display: true, + left: (rc.right - canvas_bounding_info.left) / scale + }, + move_x: rc.right - (left + width / 2) + }; + } else if (rr) { + return { + y_info: { + display: true, + left: (rr.right - canvas_bounding_info.left) / scale + }, + move_x: rr.right - right + }; + } + } + return { + y_info: { + display: false, + left: 0 + }, + move_x: 0 + }; +}; +/** + * 计算x轴参考线属性和需要吸附的偏移距离 + * @param cacheStore_boundingBox + * @param adsorp_diff + * @param move_item_bounding_info + */ +export const calculateGuideX = ( + cacheStore_boundingBox: CacheBoundingBox[], + adsorp_diff: number, + move_item_bounding_info: MoveItemBoundingInfo[], + canvas_bounding_info: DOMRect, + scale: number +) => { + for (let index = 0; index < move_item_bounding_info.length; index++) { + // 拿到移动时的边界信息 + const { top, bottom, height } = move_item_bounding_info[index]; + // 上上 上中 上下 + const tt = cacheStore_boundingBox.find((f) => Math.abs(f.top - top) < adsorp_diff); + const tc = cacheStore_boundingBox.find( + (f) => Math.abs(f.top - (top + height / 2)) < adsorp_diff + ); + const tb = cacheStore_boundingBox.find((f) => Math.abs(f.top - bottom) < adsorp_diff); + // 中上 中中 中下 + const ct = cacheStore_boundingBox.find( + (f) => Math.abs(f.top + f.height / 2 - top) < adsorp_diff + ); + const cc = cacheStore_boundingBox.find( + (f) => Math.abs(f.top + f.height / 2 - (top + height / 2)) < adsorp_diff + ); + const cb = cacheStore_boundingBox.find( + (f) => Math.abs(f.top + f.height / 2 - bottom) < adsorp_diff + ); + // 下上 下中 下右 + const bt = cacheStore_boundingBox.find((f) => Math.abs(f.bottom - bottom) < adsorp_diff); + const bc = cacheStore_boundingBox.find( + (f) => Math.abs(f.bottom - (top + height / 2)) < adsorp_diff + ); + const br = cacheStore_boundingBox.find((f) => Math.abs(f.bottom - top) < adsorp_diff); + if (tt) { + return { + x_info: { + display: true, + top: (tt.top - canvas_bounding_info.top) / scale + }, + move_y: tt.top - top + }; + } else if (tc) { + return { + x_info: { + display: true, + top: (tc.top - canvas_bounding_info.top) / scale + }, + move_y: tc.top - (top + height / 2) + }; + } else if (tb) { + return { + x_info: { + display: true, + top: (tb.top - canvas_bounding_info.top) / scale + }, + move_y: tb.top - bottom + }; + } else if (ct) { + return { + x_info: { + display: true, + top: (ct.top + ct.height / 2 - canvas_bounding_info.top) / scale + }, + move_y: ct.top + ct.height / 2 - top + }; + } else if (cc) { + return { + x_info: { + display: true, + top: (cc.top + cc.height / 2 - canvas_bounding_info.top) / scale + }, + move_y: cc.top + cc.height / 2 - (top + height / 2) + }; + } else if (cb) { + return { + x_info: { + display: true, + top: (cb.top + cb.height / 2 - canvas_bounding_info.top) / scale + }, + move_y: cb.top + cb.height / 2 - bottom + }; + } else if (br) { + return { + x_info: { + display: true, + top: (br.bottom - canvas_bounding_info.top) / scale + }, + move_y: br.bottom - top + }; + } else if (bc) { + return { + x_info: { + display: true, + top: (bc.bottom - canvas_bounding_info.top) / scale + }, + move_y: bc.bottom - (top + height / 2) + }; + } else if (bt) { + return { + x_info: { + display: true, + top: (bt.bottom - canvas_bounding_info.top) / scale + }, + move_y: bt.bottom - bottom + }; + } + } + return { + x_info: { + display: false, + top: 0 + }, + move_y: 0 + }; +}; +/** + * 坐标数组转换成path路径 + * @param position_arr + * @returns + */ +export const positionArrarToPath = ( + position_arr: { x: number; y: number }[], + offset_x = 0, + offset_y = 0 +) => { + let path_str = ''; + for (let index = 0; index < position_arr.length; index++) { + if (index === 0) { + path_str += `M ${position_arr[index].x + offset_x} ${position_arr[index].y + offset_y}`; + } else { + path_str += ` L ${position_arr[index].x + offset_x} ${position_arr[index].y + offset_y}`; + } + } + return path_str; +}; +/** + * 取两点之间坐标 + * @param x1 + * @param y1 + * @param x2 + * @param y2 + * @returns + */ +export const getCenterXY = (x1: number, y1: number, x2: number, y2: number) => { + return { + x: (x1 + x2) / 2, + y: (y1 + y2) / 2 + }; +}; +/** + * 计算旋转之后的坐标 + * @param x 旋转之前x坐标 + * @param y 旋转之前y坐标 + * @param centerX 旋转中心x坐标 + * @param centerY 旋转中心y坐标 + * @param angleRad 旋转角度 + * @returns 旋转之后的xy坐标 + */ +export const rotatePoint = ( + x: number, + y: number, + centerX: number, + centerY: number, + angleRad: number +) => { + const newX = centerX + (x - centerX) * Math.cos(angleRad) - (y - centerY) * Math.sin(angleRad); + const newY = centerY + (x - centerX) * Math.sin(angleRad) + (y - centerY) * Math.cos(angleRad); + return { x: newX, y: newY }; +}; +// 获取四角坐标 +export const getRectCoordinate = (item: IDoneJsonBinfo) => { + const topLeft = { x: item.left, y: item.top }; + const topRight = { x: item.left + item.width, y: item.top }; + const bottomLeft = { x: item.left, y: item.top + item.height }; + const bottomRight = { + x: item.left + item.width, + y: item.top + item.height + }; + return { + topLeft, + topRight, + bottomLeft, + bottomRight + }; +}; +//获取四条边中点坐标 +export const getRectCenterCoordinate = ( + topLeft: { x: any; y: any }, + topRight: { x: any; y: any }, + bottomLeft: { x: any; y: any }, + bottomRight: { x: any; y: any } +) => { + const topCenter = { + x: (topLeft.x + topRight.x) / 2, + y: (topLeft.y + topRight.y) / 2 + }; + const bottomCenter = { + x: (bottomLeft.x + bottomRight.x) / 2, + y: (bottomLeft.y + bottomRight.y) / 2 + }; + const leftCenter = { + x: (topLeft.x + bottomLeft.x) / 2, + y: (topLeft.y + bottomLeft.y) / 2 + }; + const rightCenter = { + x: (topRight.x + bottomRight.x) / 2, + y: (topRight.y + bottomRight.y) / 2 + }; + return { + topCenter, + bottomCenter, + leftCenter, + rightCenter + }; +}; + +export const handleAlign = ( + type: + | 'left' + | 'horizontally' + | 'right' + | 'top' + | 'vertically' + | 'bottom' + | 'horizontal-distribution' + | 'vertical-distribution', + selected_done_json: IDoneJson[], + canvasDom: HTMLElement, + scale: number, + global_done_json: IDoneJson[] +) => { + switch (type) { + case 'left': { + // 取出最左边的元素 记录最左边的坐标 + const left_x = Math.min( + ...selected_done_json.filter((f) => f.type !== 'sys-line').map((m) => m.binfo.left) + ); + // 将所有元素的坐标都设置成最左边 + selected_done_json + .filter((f) => f.type !== 'sys-line') + .forEach((m) => { + m.binfo.left = left_x; + }); + break; + } + case 'horizontally': { + // 取出第一个元素的中点坐标 将其余元素的中点坐标都设置成这个 + const center_x = + selected_done_json.filter((f) => f.type !== 'sys-line')[0].binfo.left + + selected_done_json[0].binfo.width / 2; + selected_done_json + .filter((f) => f.type !== 'sys-line') + .forEach((m) => { + m.binfo.left = center_x - m.binfo.width / 2; + }); + break; + } + + case 'right': { + // 取出最右边的元素 记录最右边的坐标 + const right_x = Math.max( + ...selected_done_json + .filter((f) => f.type !== 'sys-line') + .map((m) => m.binfo.left + m.binfo.width) + ); + // 将所有元素的坐标都设置成最右边 + selected_done_json + .filter((f) => f.type !== 'sys-line') + .forEach((m) => { + m.binfo.left = right_x - m.binfo.width; + }); + break; + } + + case 'top': { + // 取出最上边的元素 记录最上边的坐标 + const top_y = Math.min( + ...selected_done_json.filter((f) => f.type !== 'sys-line').map((m) => m.binfo.top) + ); + // 将所有元素的坐标都设置成最上边 + selected_done_json + .filter((f) => f.type !== 'sys-line') + .forEach((m) => { + m.binfo.top = top_y; + }); + break; + } + + case 'vertically': { + // 取出第一个元素的中点坐标 将其余元素的中点坐标都设置成这个 + const center_y = + selected_done_json.filter((f) => f.type !== 'sys-line')[0].binfo.top + + selected_done_json[0].binfo.height / 2; + selected_done_json + .filter((f) => f.type !== 'sys-line') + .forEach((m) => { + m.binfo.top = center_y - m.binfo.height / 2; + }); + break; + } + + case 'bottom': { + // 取出最下边的元素 记录最下边的坐标 + const bottom_y = Math.max( + ...selected_done_json + .filter((f) => f.type !== 'sys-line') + .map((m) => m.binfo.top + m.binfo.height) + ); + // 将所有元素的坐标都设置成最下边 + selected_done_json + .filter((f) => f.type !== 'sys-line') + .forEach((m) => { + m.binfo.top = bottom_y - m.binfo.height; + }); + break; + } + case 'horizontal-distribution': { + // 将选中的元素按照水平方向中点坐标从小到大排序 + selected_done_json.sort( + (a, b) => a.binfo.left + a.binfo.width / 2 - b.binfo.left + b.binfo.width / 2 + ); + const max_info = selected_done_json[selected_done_json.length - 1]; + const min_info = selected_done_json[0]; + const point_interval_x = + (max_info.binfo.left + + max_info.binfo.width / 2 - + (min_info.binfo.left + min_info.binfo.width / 2)) / + (selected_done_json.length - 1); + selected_done_json.forEach((f, index) => { + if (index == 0 || index == selected_done_json.length - 1) { + return; + } + const new_x = min_info.binfo.left + min_info.binfo.width / 2 + point_interval_x * index; + f.binfo = { + ...f.binfo, + left: new_x - f.binfo.width / 2 + }; + }); + break; + } + case 'vertical-distribution': { + // 将选中的元素按照垂直方向中点坐标从小到大排序 + selected_done_json.sort( + (a, b) => a.binfo.top + a.binfo.height / 2 - b.binfo.top + b.binfo.height / 2 + ); + const max_info = selected_done_json[selected_done_json.length - 1]; + const min_info = selected_done_json[0]; + const point_interval_y = + (max_info.binfo.top + + max_info.binfo.height / 2 - + (min_info.binfo.top + min_info.binfo.height / 2)) / + (selected_done_json.length - 1); + selected_done_json.forEach((f, index) => { + if (index == 0 || index == selected_done_json.length - 1) { + return; + } + const new_y = min_info.binfo.top + min_info.binfo.height / 2 + point_interval_y * index; + f.binfo = { + ...f.binfo, + top: new_y - f.binfo.height / 2 + }; + }); + break; + } + } + // 更新绑定连线 + const sys_lines = global_done_json.filter((f) => f.type === 'sys-line'); + useUpdateSysLine(sys_lines, selected_done_json, canvasDom, scale); + return selected_done_json; +}; +/** + * 设置图形属性 + * @param id + * @param key + * @param val + * @param json_arr + * @returns + */ +export const setItemAttr = (id: string, key: string, val: any, json_arr: IDoneJson[]) => { + return new Promise((res) => { + const find_item = json_arr.find((f) => f.id === id); + if (!find_item) { + res({ + status: false, + msg: '要设置的id不存在' + }); + } + eval(`find_item.${key} = val;`); + res({ + status: true, + msg: '操作成功' + }); + }); +}; +export const getItemAttr = (id: string, key: string, json_arr: IDoneJson[]) => { + const find_item = json_arr.find((f) => f.id === id); + if (!find_item) { + return null; + } + return eval(`find_item.${key}`); +}; +export const previewCompareVal = (val1: any, operator: '>' | '<' | '=' | '!=', val2: any) => { + if (operator === '=') { + return String(val1) == String(val2); + } else if (operator === '>') { + return Number(val1) > Number(val2); + } else if (operator === '<') { + return Number(val1) < Number(val2); + } else if (operator === '!=') { + return String(val1) != String(val2); + } + return false; +}; +/** + * 将事件转换成v-on + * @param item + * @returns + */ +export const eventToVOn = (item: IDoneJson) => { + const event_obj: Record = {}; + item.events.forEach((event) => { + let code_str = ''; + if (event.action === 'changeAttr') { + if (event.change_attr.length < 1) { + return; + } + event.change_attr.forEach((attr) => { + if (!attr.target_id || !attr.target_attr || attr.target_value === undefined) { + return; + } + if ( + !event.trigger_rule || + !event.trigger_rule.trigger_id || + !event.trigger_rule.trigger_attr || + event.trigger_rule.value === undefined || + !event.trigger_rule.operator + ) { + if (typeof attr.target_value == 'boolean') { + code_str += `$setItemAttrByID('${attr.target_id}', '${attr.target_attr}', ${attr.target_value});`; + } else { + code_str += `$setItemAttrByID('${attr.target_id}', '${attr.target_attr}', '${attr.target_value}');`; + } + } else { + if (typeof attr.target_value == 'boolean') { + code_str += `if($previewCompareVal($getItemAttrByID('${event.trigger_rule.trigger_id}', '${event.trigger_rule.trigger_attr}'), '${event.trigger_rule.operator}', '${event.trigger_rule.value}')){$setItemAttrByID('${attr.target_id}', '${attr.target_attr}', ${attr.target_value})};`; + } else { + code_str += `if($previewCompareVal($getItemAttrByID('${event.trigger_rule.trigger_id}', '${event.trigger_rule.trigger_attr}'), '${event.trigger_rule.operator}', '${event.trigger_rule.value}')){$setItemAttrByID('${attr.target_id}', '${attr.target_attr}', '${attr.target_value}')};`; + } + } + }); + } else if (event.action === 'customCode') { + if ( + !event.trigger_rule || + !event.trigger_rule.trigger_id || + !event.trigger_rule.trigger_attr || + event.trigger_rule.value === undefined || + !event.trigger_rule.operator + ) { + code_str += event.custom_code + ';'; + } else { + code_str += `if($previewCompareVal($getItemAttrByID('${event.trigger_rule.trigger_id}', '${event.trigger_rule.trigger_attr}'), '${event.trigger_rule.operator}', '${event.trigger_rule.value}')){${event.custom_code}};`; + } + } + if (!Object.prototype.hasOwnProperty.call(event_obj, event.type)) { + event_obj[event.type] = code_str; + } else { + event_obj[event.type] += code_str; + } + }); + let on_event = {}; + for (const event_key in event_obj) { + on_event = { + ...on_event, + ...{ + [event_key]: () => dynamicEvent(event_obj[event_key])(item) + } + }; + } + return on_event; +}; +/** + * 创建动态事件,可以根据$item_info获取当前图形信息 + * @param code_str + * @returns + */ +const dynamicEvent = (code_str: string) => { + try { + return new Function('$item_info', code_str); + } catch (error) { + console.error(error); + return new Function('$item_info', `console.error('${error}')`); + } +}; diff --git a/src/views/teacher/teacherStatistics/components/mt-preview/index.ts b/src/views/teacher/teacherStatistics/components/mt-preview/index.ts new file mode 100644 index 0000000..f04a2d9 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-preview/index.ts @@ -0,0 +1,3 @@ +import MtPreview from './index.vue'; + +export default MtPreview; diff --git a/src/views/teacher/teacherStatistics/components/mt-preview/index.vue b/src/views/teacher/teacherStatistics/components/mt-preview/index.vue new file mode 100644 index 0000000..e426f71 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/mt-preview/index.vue @@ -0,0 +1,212 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/my-button.vue b/src/views/teacher/teacherStatistics/components/my-button.vue new file mode 100644 index 0000000..b9f77d1 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/my-button.vue @@ -0,0 +1,21 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/my-test.vue b/src/views/teacher/teacherStatistics/components/my-test.vue new file mode 100644 index 0000000..5233603 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/my-test.vue @@ -0,0 +1,20 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/test/custom-demo/index.vue b/src/views/teacher/teacherStatistics/components/test/custom-demo/index.vue new file mode 100644 index 0000000..cebf00b --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/test/custom-demo/index.vue @@ -0,0 +1,43 @@ + + diff --git a/src/views/teacher/teacherStatistics/components/test/my-button/index.vue b/src/views/teacher/teacherStatistics/components/test/my-button/index.vue new file mode 100644 index 0000000..09d8358 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/test/my-button/index.vue @@ -0,0 +1,18 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/test/my-input/index.vue b/src/views/teacher/teacherStatistics/components/test/my-input/index.vue new file mode 100644 index 0000000..13f8f76 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/test/my-input/index.vue @@ -0,0 +1,18 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/test/pie-charts/index.vue b/src/views/teacher/teacherStatistics/components/test/pie-charts/index.vue new file mode 100644 index 0000000..bdd988d --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/test/pie-charts/index.vue @@ -0,0 +1,71 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/three-components/vue-three-equipment.vue b/src/views/teacher/teacherStatistics/components/three-components/vue-three-equipment.vue new file mode 100644 index 0000000..15bd5fc --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/three-components/vue-three-equipment.vue @@ -0,0 +1,187 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/three-components/vue-three-fire-control.vue b/src/views/teacher/teacherStatistics/components/three-components/vue-three-fire-control.vue new file mode 100644 index 0000000..b7ceb09 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/three-components/vue-three-fire-control.vue @@ -0,0 +1,140 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/three-components/vue-three-substation.vue b/src/views/teacher/teacherStatistics/components/three-components/vue-three-substation.vue new file mode 100644 index 0000000..0452c79 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/three-components/vue-three-substation.vue @@ -0,0 +1,223 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/three-components/vue-three-substation_edit.vue b/src/views/teacher/teacherStatistics/components/three-components/vue-three-substation_edit.vue new file mode 100644 index 0000000..fe92559 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/three-components/vue-three-substation_edit.vue @@ -0,0 +1,341 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-components/echarts-bar-chart.vue b/src/views/teacher/teacherStatistics/components/vue-components/echarts-bar-chart.vue new file mode 100644 index 0000000..1f152cf --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-components/echarts-bar-chart.vue @@ -0,0 +1,197 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-components/echarts-grade-gauge.vue b/src/views/teacher/teacherStatistics/components/vue-components/echarts-grade-gauge.vue new file mode 100644 index 0000000..538d95f --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-components/echarts-grade-gauge.vue @@ -0,0 +1,406 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-components/echarts-line-chart.vue b/src/views/teacher/teacherStatistics/components/vue-components/echarts-line-chart.vue new file mode 100644 index 0000000..f863d64 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-components/echarts-line-chart.vue @@ -0,0 +1,198 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-components/echarts-pie-chart.vue b/src/views/teacher/teacherStatistics/components/vue-components/echarts-pie-chart.vue new file mode 100644 index 0000000..57b84b4 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-components/echarts-pie-chart.vue @@ -0,0 +1,153 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-components/vue-img-immobilization.vue b/src/views/teacher/teacherStatistics/components/vue-components/vue-img-immobilization.vue new file mode 100644 index 0000000..7592773 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-components/vue-img-immobilization.vue @@ -0,0 +1,82 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-components/vue-signal-monitoring.vue b/src/views/teacher/teacherStatistics/components/vue-components/vue-signal-monitoring.vue new file mode 100644 index 0000000..43c836a --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-components/vue-signal-monitoring.vue @@ -0,0 +1,303 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-assemble-table.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-assemble-table.vue new file mode 100644 index 0000000..f14fb43 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-assemble-table.vue @@ -0,0 +1,170 @@ + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-base-card-info.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-base-card-info.vue new file mode 100644 index 0000000..9f68485 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-base-card-info.vue @@ -0,0 +1,234 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-base-table.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-base-table.vue new file mode 100644 index 0000000..c25fb2c --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-base-table.vue @@ -0,0 +1,501 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-el-table.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-el-table.vue new file mode 100644 index 0000000..f9fcbdf --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-el-table.vue @@ -0,0 +1,77 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-essential-information.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-essential-information.vue new file mode 100644 index 0000000..acf2864 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-essential-information.vue @@ -0,0 +1,311 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-host-machine.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-host-machine.vue new file mode 100644 index 0000000..c54d607 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-host-machine.vue @@ -0,0 +1,93 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-img-test.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-img-test.vue new file mode 100644 index 0000000..68bc726 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-img-test.vue @@ -0,0 +1,70 @@ + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-img.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-img.vue new file mode 100644 index 0000000..0818d82 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-img.vue @@ -0,0 +1,112 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-instrument.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-instrument.vue new file mode 100644 index 0000000..5f41b8e --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-instrument.vue @@ -0,0 +1,117 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-multi-type-info.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-multi-type-info.vue new file mode 100644 index 0000000..8990ed3 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-multi-type-info.vue @@ -0,0 +1,98 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-num-info.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-num-info.vue new file mode 100644 index 0000000..0e0e28d --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-num-info.vue @@ -0,0 +1,336 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-oil-extraction.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-oil-extraction.vue new file mode 100644 index 0000000..1a5de4d --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-oil-extraction.vue @@ -0,0 +1,93 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-photon-card.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-photon-card.vue new file mode 100644 index 0000000..097fe4a --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-photon-card.vue @@ -0,0 +1,150 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-regulator.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-regulator.vue new file mode 100644 index 0000000..aae08af --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-regulator.vue @@ -0,0 +1,112 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-run-info.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-run-info.vue new file mode 100644 index 0000000..cbde4e8 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-run-info.vue @@ -0,0 +1,375 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-signal-gaudy.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-signal-gaudy.vue new file mode 100644 index 0000000..5dc1961 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-signal-gaudy.vue @@ -0,0 +1,385 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-signal-info.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-signal-info.vue new file mode 100644 index 0000000..9223b84 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-signal-info.vue @@ -0,0 +1,93 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-switch-info.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-switch-info.vue new file mode 100644 index 0000000..517ca61 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-switch-info.vue @@ -0,0 +1,55 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-synthesize-table.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-synthesize-table.vue new file mode 100644 index 0000000..ecb1a35 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-synthesize-table.vue @@ -0,0 +1,635 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-table-complex.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-table-complex.vue new file mode 100644 index 0000000..6776303 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-table-complex.vue @@ -0,0 +1,200 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-table-only.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-table-only.vue new file mode 100644 index 0000000..19a6a75 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-table-only.vue @@ -0,0 +1,270 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-groundFloor.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-groundFloor.vue new file mode 100644 index 0000000..86433fb --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-groundFloor.vue @@ -0,0 +1,1522 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-machine.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-machine.vue new file mode 100644 index 0000000..ea8975a --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-machine.vue @@ -0,0 +1,312 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-pipeline.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-pipeline.vue new file mode 100644 index 0000000..e19fc0f --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-pipeline.vue @@ -0,0 +1,243 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-scene.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-scene.vue new file mode 100644 index 0000000..8f0a4d8 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-scene.vue @@ -0,0 +1,473 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-smokeSiren.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-smokeSiren.vue new file mode 100644 index 0000000..b0a8929 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-smokeSiren.vue @@ -0,0 +1,388 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-test.vue b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-test.vue new file mode 100644 index 0000000..50a2f37 --- /dev/null +++ b/src/views/teacher/teacherStatistics/components/vue-xq-test/vue-three-test.vue @@ -0,0 +1,323 @@ + + + + + diff --git a/src/views/teacher/teacherStatistics/index.vue b/src/views/teacher/teacherStatistics/index.vue new file mode 100644 index 0000000..83f88a6 --- /dev/null +++ b/src/views/teacher/teacherStatistics/index.vue @@ -0,0 +1,11 @@ + + + diff --git a/src/views/teacher/teacherStatistics/utils/dataFormatter.ts b/src/views/teacher/teacherStatistics/utils/dataFormatter.ts new file mode 100644 index 0000000..2189e74 --- /dev/null +++ b/src/views/teacher/teacherStatistics/utils/dataFormatter.ts @@ -0,0 +1,54 @@ +/** + * 数据格式化工具函数 + */ + +/** + * 将时间戳转换为 YYYY-MM-DD HH:mm:ss 格式 + * @param timestamp 时间戳(毫秒) + * @returns 格式化后的时间字符串 + */ +export function formatTimestamp(timestamp: number): string { + const date = new Date(timestamp); + const year = date.getFullYear(); + const month = String(date.getMonth() + 1).padStart(2, '0'); + const day = String(date.getDate()).padStart(2, '0'); + const hours = String(date.getHours()).padStart(2, '0'); + const minutes = String(date.getMinutes()).padStart(2, '0'); + const seconds = String(date.getSeconds()).padStart(2, '0'); + + return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`; +} + +/** + * 为文件路径添加基础URL前缀 + * @param filePath 文件路径 + * @param baseUrl 基础URL,默认为 http://localhost:8080 + * @returns 完整的文件URL + */ +export function formatFilePath(baseUrl: string, filePath: string): string { + // 如果路径已经包含http,则直接返回 + if (filePath.startsWith('http')) { + return filePath; + } + + // 确保基础URL末尾没有斜杠,路径开头有斜杠 + const cleanBaseUrl = baseUrl.endsWith('/') ? baseUrl.slice(0, -1) : baseUrl; + const cleanFilePath = filePath.startsWith('/') ? filePath : '/' + filePath; + + return cleanBaseUrl + cleanFilePath; +} + +/** + * 处理文件列表数据,格式化时间戳和文件路径 + * @param dataList 原始文件列表数据 + * @param baseUrl 基础URL + * @returns 处理后的文件列表数据 + */ +export function processFileList(dataList: any[], baseUrl?: string): any[] { + return dataList.map((item) => ({ + ...item, + addTime: formatTimestamp(item.addTime), + filePath: formatFilePath(baseUrl || '', item.filePath || '') + // 可以添加其他需要的字段处理 + })); +} diff --git a/src/views/teacher/teacherStatistics/utils/dataMapStore.ts b/src/views/teacher/teacherStatistics/utils/dataMapStore.ts new file mode 100644 index 0000000..efd78a4 --- /dev/null +++ b/src/views/teacher/teacherStatistics/utils/dataMapStore.ts @@ -0,0 +1,42 @@ +import { defineStore } from 'pinia'; +import { type ResponseVue, type DataItem } from '@/components/mt-edit/store/types'; + +export interface DataMapState { + dataMap: Record; + isLoading: boolean; + lastUpdate: Date | null; +} + +export const useDataMapStore = defineStore('dataMap', { + state: (): DataMapState => ({ + dataMap: {}, + isLoading: false, + lastUpdate: null + }), + + getters: { + getDataMap: (state) => state.dataMap, + isDataLoaded: (state) => Object.keys(state.dataMap).length > 0, + getDataMapById: (state) => (id: string) => state.dataMap[id] + }, + + actions: { + setDataMap(data: Record) { + this.dataMap = data; + this.lastUpdate = new Date(); + }, + + updateDataMapEntry(id: string, dataItem: DataItem) { + this.dataMap[id] = dataItem; + }, + + clearDataMap() { + this.dataMap = {}; + this.lastUpdate = null; + }, + + setLoading(loading: boolean) { + this.isLoading = loading; + } + } +}); diff --git a/src/views/teacher/teacherStatistics/utils/emitter.d.ts b/src/views/teacher/teacherStatistics/utils/emitter.d.ts new file mode 100644 index 0000000..a3c2fdf --- /dev/null +++ b/src/views/teacher/teacherStatistics/utils/emitter.d.ts @@ -0,0 +1,4 @@ +import type mitt from 'mitt'; + +declare const emitter: ReturnType; +export default emitter; diff --git a/src/views/teacher/teacherStatistics/utils/emitter.ts b/src/views/teacher/teacherStatistics/utils/emitter.ts new file mode 100644 index 0000000..dc4a5d1 --- /dev/null +++ b/src/views/teacher/teacherStatistics/utils/emitter.ts @@ -0,0 +1,6 @@ +// 引入mitt +import mitt from 'mitt'; + +// 创建emitter +const emitter = mitt(); +export default emitter; diff --git a/src/views/teacher/teacherStatistics/utils/globalUtils.ts b/src/views/teacher/teacherStatistics/utils/globalUtils.ts new file mode 100644 index 0000000..8949be1 --- /dev/null +++ b/src/views/teacher/teacherStatistics/utils/globalUtils.ts @@ -0,0 +1,140 @@ +import { modelApi } from '@/utils/request'; +import { type DataItem } from '@/components/mt-edit/store/types'; +import emitter from '@/utils/emitter'; +import { useNodeByModelsStore } from '@/components/mt-edit/store/nodeByModels'; + +// 扩展 Window 接口 +declare global { + interface Window { + vueGlobalFunction: (param: any) => void; + // 添加其他全局函数 + anotherGlobalFunction: (param: string) => string; + globalData: Map | Record; + globalNodeIdForModeId: Map>; + } +} + +function setModuleById(param: DataItem) { + if (!globalData) { + console.warn('globalData 未初始化'); + return null; + } + + // 根据实际类型使用相应语法 + if (globalData instanceof Map) { + (globalData as Map).set(param.id + '', param); + } else { + (globalData as Record)[param.id + ''] = param; + } +} + +// 定义全局函数 +function vueGlobalFunction(param: DataItem) { + console.log('全局函数被调用:', param); + debugger; + + // 安全访问 globalData + const globalData = window.globalData; + if (globalData instanceof Map) { + (globalData as Map).set(param.id.toString(), param); + } else { + (globalData as Record)[param.id.toString()] = param; + } + + // 延迟访问 store + try { + const nodeByModelsStore = useNodeByModelsStore(); + // 去关系集合查看 + if (nodeByModelsStore.nodeMap.has(param.id.toString())) { + const arr = nodeByModelsStore.nodeMap.get(param.id.toString()); + arr?.forEach((nodeId) => { + console.log('节点ID:', nodeId); + emitter.emit(nodeId, param.id); + }); + } + } catch (error) { + console.warn('无法访问 Pinia store'); + // 可以选择稍后重试或使用备用逻辑 + } +} + +function anotherGlobalFunction(param: string) { + return param.toUpperCase(); +} + +const globalData: Map = new Map(); +const globalNodeIdForModeId: Map> = new Map(); + +// 将函数附加到 window 对象 +if (typeof window !== 'undefined') { + window.vueGlobalFunction = vueGlobalFunction; + window.anotherGlobalFunction = anotherGlobalFunction; + window.globalData = globalData; + window.globalNodeIdForModeId = globalNodeIdForModeId; +} + +// 获取所有节点 +async function getData() { + try { + const response = await modelApi.node_nrt_get(); + if (!response.ok) { + throw new Error(`HTTP error! status: ${response.status}`); + } + const data = await response.json(); + // 安全更新全局数据 + if (data && typeof data === 'object') { + // 判断当前 globalData 类型并相应处理 + const currentGlobalData = window.globalData; + if (currentGlobalData instanceof Map) { + // 如果当前是 Map,清空并重新设置 + currentGlobalData.clear(); + Object.entries(data).forEach(([key, value]) => { + currentGlobalData.set(key, value as DataItem); + }); + } else { + // 如果当前是对象,直接赋值 + window.globalData = data as Record; + } + } + + console.log('全局数据已更新:', window.globalData); + } catch (error) { + console.error('获取数据失败:', error); + } +} + +// 页面加载时立即获取数据 +if (typeof window !== 'undefined') { + // 立即获取数据 + getData(); +} + +// 监听页面刷新/加载事件 +// window.addEventListener('load', () => { +// getData(); +// }); + +// 也可以直接挂载到全局对象 +// (window as any).myGlobalFunction = myGlobalFunction; +// (window as any).anotherGlobalFunction = anotherGlobalFunction; + +// 接收父页面消息 +window.addEventListener('message', function (event) { + if (event.data.type === 'SET_GLOBAL_DATA') { + // 接收父页面发送的数据 + window.globalData = event.data.payload; + console.log('接收到父页面数据:', window.globalData); + } +}); + +// 通知父页面 Vue 已准备就绪 +window.addEventListener('load', () => { + if (window.parent !== window) { + window.parent.postMessage( + { + type: 'VUE_APP_READY' + }, + '*' + ); + } +}); diff --git a/src/views/teacher/teacherStatistics/utils/request.ts b/src/views/teacher/teacherStatistics/utils/request.ts new file mode 100644 index 0000000..007c9be --- /dev/null +++ b/src/views/teacher/teacherStatistics/utils/request.ts @@ -0,0 +1,175 @@ +// API 基础配置 +export const API_CONFIG = { + // nginx + NGINX: 'http://localhost:8099', + // 测试环境 + LOCAL: 'http://localhost:8080' +}; + +interface ApiResponse { + code: number; + message: string; + data: any; +} + +// 当前环境的基础URL +export const BASE_URL = API_CONFIG.LOCAL; + +// 导出便捷的 URL 构建函数 +export const buildApiUrl = (path: string) => { + return `${BASE_URL}${path}`; +}; + +export const modelApi = { + // http://localhost:8080/monitor/info + monitor_info_get(): Promise { + return fetch(buildApiUrl('/monitor/info'), { + method: 'GET', + headers: { + 'Content-Type': 'application/json', + Accept: '*/*' + } + }).then((response) => { + if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`); + return response.json(); + }); + }, + getListBinding_get(): Promise { + return fetch(buildApiUrl('/data/stairs/getListBinding'), { + method: 'GET', + headers: { + 'Content-Type': 'application/json', + Accept: '*/*' + } + }).then((response) => { + if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`); + return response.json(); + }); + }, + getBinding_post(endJson: any): Promise { + return fetch(buildApiUrl('/data/stairs/getBinding'), { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Accept: '*/*' + }, + body: JSON.stringify(endJson) + }).then((response) => { + if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`); + return response.json(); + }); + }, + binding_post(endJson: any): Promise { + return fetch(buildApiUrl('/data/stairs/binding'), { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Accept: '*/*' + }, + body: JSON.stringify(endJson) + }).then((response) => { + if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`); + return response.json(); + }); + }, + oneRoomFor_Equipment_get(): Promise { + return fetch(buildApiUrl('/data/stairs/oneRoomForEquipment'), { + method: 'GET', + headers: { + 'Content-Type': 'application/json', + Accept: '*/*' + } + }).then((response) => { + if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`); + return response.json(); + }); + }, + fileStorage_deleteFileById_get(endJson: any): Promise { + return fetch( + buildApiUrl('/fileStorage/deleteFileById') + + '?' + + Object.keys(endJson) + .map((key) => key + '=' + endJson[key]) + .join('&'), + { + method: 'GET', + headers: { + 'Content-Type': 'application/json', + Accept: '*/*' + } + } + ).then((response) => { + if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`); + return response.json(); + }); + }, + + fileStorage_editFileNameById_post(endJson: any): Promise { + return fetch(buildApiUrl('/fileStorage/editFileNameById'), { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Accept: '*/*' + }, + body: JSON.stringify(endJson) + }).then((response) => { + if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`); + return response.json(); + }); + }, + + fileStorage_file_list_post(endJson: any): Promise { + return fetch(buildApiUrl('/fileStorage/file/list'), { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Accept: '*/*' + }, + body: JSON.stringify(endJson) + }).then((response) => { + if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`); + return response.json(); + }); + }, + + // 获取节点信息 + node_nrt_get() { + return fetch(buildApiUrl('/node/nrt'), { + method: 'GET', + headers: { + 'Content-Type': 'application/json', + Accept: '*/*' + } + }); + }, + + // 加载模型数据 + model_getModelData_post(endJson: any): Promise { + return fetch(buildApiUrl('/data/model/getModelData'), { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Accept: '*/*' + }, + body: JSON.stringify(endJson) + }).then((response) => { + if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`); + return response.json(); + }); + }, + + // 加载模型数据 + saveOrUpdate_modelData_post(endJson: any): Promise { + return fetch(buildApiUrl('/data/model/saveOrUpdate/modelData'), { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Accept: '*/*' + }, + body: JSON.stringify(endJson) + }).then((response) => { + if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`); + return response.json(); + }); + } +}; diff --git a/src/views/toolbox/generator/common/Options.ts b/src/views/toolbox/generator/common/Options.ts new file mode 100644 index 0000000..2bec843 --- /dev/null +++ b/src/views/toolbox/generator/common/Options.ts @@ -0,0 +1,137 @@ +import type { Options } from '@/config/typings'; + +export const javaTypeOptions: Options[] = [ + { + label: 'String', + value: 'String' + }, + { + label: 'Integer', + value: 'Integer' + }, + { + label: 'Long', + value: 'Long' + }, + { + label: 'Double', + value: 'Double' + }, + { + label: 'BigDecimal', + value: 'BigDecimal' + }, + { + label: 'LocalDateTime', + value: 'LocalDateTime' + }, + { + label: 'LocalDate', + value: 'LocalDate' + }, + { + label: 'LocalTime', + value: 'LocalTime' + }, + { + label: 'List', + value: 'List' + } +]; + +export const queryTypeOptions: Options[] = [ + { + label: '等于', + value: 'EQ' + }, + { + label: '不等于', + value: 'NEQ' + }, + { + label: '大于', + value: 'GT' + }, + { + label: '小于', + value: 'LT' + }, + { + label: '范围', + value: 'BETWEEN' + }, + { + label: '大于等于', + value: 'GTE' + }, + { + label: '小于等于', + value: 'LTE' + }, + { + label: '模糊', + value: 'LIKE' + } +]; + +export const htmlTypeOptions: Options[] = [ + { + label: 'input', + value: 'input' + }, + { + label: 'input-number', + value: 'input-number' + }, + { + label: 'textarea', + value: 'textarea' + }, + { + label: 'select', + value: 'select' + }, + { + label: 'datetime ', + value: 'datetime' + }, + { + label: 'fileUpload', + value: 'fileUpload' + }, + { + label: 'jodit-editor', + value: 'jodit-editor' + }, + { + label: 'radio-group [未完待续]', + value: 'radio-group' + }, + { + label: 'checkbox [未完待续]', + value: 'checkbox' + }, + { + label: 'date [未完待续]', + value: 'date' + }, + { + label: 'time [未完待续]', + value: 'time' + }, + { + label: 'imageUpload [未完待续]', + value: 'imageUpload' + } +]; + +export const dictShowWayOptions: Options[] = [ + { + label: '唯一标识', + value: '0' + }, + { + label: '别名', + value: '1' + } +]; diff --git a/src/views/toolbox/generator/components/EditForm.vue b/src/views/toolbox/generator/components/EditForm.vue new file mode 100644 index 0000000..a84c68d --- /dev/null +++ b/src/views/toolbox/generator/components/EditForm.vue @@ -0,0 +1,848 @@ + + + + diff --git a/src/views/toolbox/generator/components/Import.vue b/src/views/toolbox/generator/components/Import.vue new file mode 100644 index 0000000..e96aef1 --- /dev/null +++ b/src/views/toolbox/generator/components/Import.vue @@ -0,0 +1,78 @@ + + + + + diff --git a/src/views/toolbox/generator/components/Preview.vue b/src/views/toolbox/generator/components/Preview.vue new file mode 100644 index 0000000..566068e --- /dev/null +++ b/src/views/toolbox/generator/components/Preview.vue @@ -0,0 +1,70 @@ + + + + + diff --git a/src/views/toolbox/generator/index.vue b/src/views/toolbox/generator/index.vue new file mode 100644 index 0000000..a2c7a54 --- /dev/null +++ b/src/views/toolbox/generator/index.vue @@ -0,0 +1,222 @@ + + + + + diff --git a/tsconfig.app.json b/tsconfig.app.json new file mode 100644 index 0000000..746191f --- /dev/null +++ b/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "@vue/tsconfig/tsconfig.dom.json", + "include": ["env.d.ts", "src/**/*", "src/**/*.vue", "src/**/*.ts", "package.json"], + "exclude": ["src/**/__tests__/*"], + "compilerOptions": { + "composite": true, + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"] + } + } +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..66b5e57 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,11 @@ +{ + "files": [], + "references": [ + { + "path": "./tsconfig.node.json" + }, + { + "path": "./tsconfig.app.json" + } + ] +} diff --git a/tsconfig.node.json b/tsconfig.node.json new file mode 100644 index 0000000..7dcd184 --- /dev/null +++ b/tsconfig.node.json @@ -0,0 +1,10 @@ +{ + "extends": "@tsconfig/node18/tsconfig.json", + "include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "nightwatch.conf.*", "playwright.config.*"], + "compilerOptions": { + "composite": true, + "module": "ESNext", + "moduleResolution": "Bundler", + "types": ["node", "vite/client"] + } +} diff --git a/uno.config.ts b/uno.config.ts new file mode 100644 index 0000000..bcd3bd0 --- /dev/null +++ b/uno.config.ts @@ -0,0 +1,24 @@ +// uno.config.ts +import { defineConfig, presetAttributify, presetUno } from 'unocss'; + +export default defineConfig({ + theme: { + colors: { + // ... + myDarkBgColor: '#141414', + myMainDarkBgColor: '#1c1c1c' + } + }, + presets: [ + presetAttributify({ + /* preset options */ + }), + presetUno() + ], + shortcuts: { + 'ct-border': 'border-t-1px border-t-solid border-t-gray-500', + 'cr-border': 'border-r-1px border-r-solid border-r-gray-500', + 'cl-border': 'border-l-1px border-l-solid border-l-gray-500', + 'cb-border': 'border-b-1px border-b-solid border-b-gray-500' + } +}); diff --git a/vite.config.mts b/vite.config.mts new file mode 100644 index 0000000..74ccdff --- /dev/null +++ b/vite.config.mts @@ -0,0 +1,88 @@ +// vite.config.mts +import { resolve } from 'path'; +import { fileURLToPath, URL } from 'node:url'; +import { defineConfig, ConfigEnv, UserConfig, loadEnv } from 'vite'; +import vue from '@vitejs/plugin-vue'; +import vueJsx from '@vitejs/plugin-vue-jsx'; +import vueDevTools from 'vite-plugin-vue-devtools'; +import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'; +import viteCompression from 'vite-plugin-compression'; +import pkg from './package.json'; +import dts from 'vite-plugin-dts'; +import UnoCSS from 'unocss/vite'; +// 由于我们使用的是 ESM,不再需要 const path = require('node:path'); +// 直接使用 import { resolve } from 'path'; 即可 + +export default defineConfig(({ mode }: ConfigEnv): UserConfig => { + const root = process.cwd(); + const env = loadEnv(mode, root); + + return { + base: env.VITE_PUBLIC_PATH, + root, + plugins: [ + vue(), + vueJsx(), + vueDevTools(), + // 使用 svg 图标 + // createSvgIconsPlugin({ + // iconDirs: [resolve(process.cwd(), 'src/assets/icons')], + // symbolId: 'icon-[dir]-[name]' + // }), + UnoCSS({ + // 在低版本浏览器上开发时会报错 Unexpected reserved word + // 如果在开发环境需要兼容不支持顶级await的低版本浏览器例如Chrome(v87),就将下面的配置打开 + // hmrTopLevelAwait: false + }), + createSvgIconsPlugin({ + // 指定需要缓存的图标文件夹 + iconDirs: [resolve(process.cwd(), 'src/assets/icons')], + // 指定symbolId格式 + symbolId: 'mt-edit-[name]', + // 禁用压缩 否则想要修改无状态组件的stroke或者fill会影响到预设样式 例如stroke-width + svgoOptions: false, + customDomId: '___mt__edit__icons__dom__' + }), + // 配置 gzip 压缩插件 + viteCompression({ + algorithm: 'gzip', // 使用 gzip 压缩 + ext: '.gz', // 压缩文件扩展名 + threshold: 10240, // 只有大于 10 KB 的文件才会被压缩 + deleteOriginFile: false // 不删除源文件 + }) + ], + define: { + __APP_VERSION__: JSON.stringify(pkg.version) + }, + resolve: { + alias: { + '@': fileURLToPath(new URL('./src', import.meta.url)), + 'package.json': new URL('package.json', import.meta.url).pathname + } + }, + css: { + preprocessorOptions: { + scss: { + api: 'modern-compiler', // https://github.com/sass/dart-sass/issues/2395#issuecomment-988870897 + additionalData: `@use "@/styles/element/index.scss" as *;` + } + } + }, + server: { + host: '0.0.0.0', + port: Number(env.VITE_PORT), + open: env.VITE_OPEN === 'true', + proxy: { + '/api': { + target: env.VITE_API_URL, + changeOrigin: true, + ws: true, + rewrite: path => path.replace(new RegExp(`^/api`), ''), + // https is require secure=false + ...(/^https:\/\//.test(env.VITE_API_URL) ? { secure: false } : {}) + } + } + }, + + }; +});